html {
  max-width: 100vw;
  min-height: 100vh;
  overflow-x: hidden; }

* {
  outline: none; }

.box {
  padding: 2rem 0; }
  .box h2 {
    margin-bottom: 2rem; }
    .box h2:not(:first-child) {
      margin-top: 3rem; }
  .box--dark {
    background-color: #222327;
    color: #FFFFFF; }

.container--text {
  max-width: 700px; }
  .container--text img {
    max-width: 100%;
    height: auto;
    margin: 10px; }

.cover {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%; }

.cs-hidden {
  height: 1px;
  opacity: 0;
  filter: alpha(opacity=0);
  overflow: hidden; }

sub {
  vertical-align: super; }

table .thead-light, .table .thead-light {
  background: rgba(255, 255, 255, 0.2); }

table .hoverable.selected, .table .hoverable.selected {
  background-color: rgba(4, 49, 252, 0.5); }

table .hoverable:hover, .table .hoverable:hover {
  background-color: rgba(4, 49, 252, 0.7); }

table th, .table th {
  padding: 2px;
  border-bottom-width: 1px !important; }

table tr:nth-of-type(even), .table tr:nth-of-type(even) {
  background-color: rgba(255, 255, 255, 0.05); }

.disabled {
  opacity: 0.5; }

.absolute {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0; }

#result {
  transition: 0.2s; }

.form-heading {
  color: #fff;
  font-size: 23px; }

.panel h2 {
  color: #444444;
  font-size: 18px;
  margin: 0 0 8px 0; }

.panel p {
  color: #777777;
  font-size: 14px;
  margin-bottom: 30px;
  line-height: 24px; }

.login-form .form-control {
  background: #f7f7f7 none repeat scroll 0 0;
  border: 1px solid #d4d4d4;
  border-radius: 4px;
  font-size: 14px;
  height: 50px;
  line-height: 50px; }

.main-div {
  background: #ffffff none repeat scroll 0 0;
  border-radius: 2px;
  margin: 10px auto 30px;
  max-width: 38%;
  padding: 50px 70px 70px 71px; }

.login-form .form-group {
  margin-bottom: 10px; }

.login-form {
  text-align: center; }

.forgot a {
  color: #777777;
  font-size: 14px;
  text-decoration: underline; }

.login-form .btn.btn-primary {
  background: #f0ad4e none repeat scroll 0 0;
  border-color: #f0ad4e;
  color: #ffffff;
  font-size: 14px;
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0; }

.forgot {
  text-align: left;
  margin-bottom: 30px; }

.botto-text {
  color: #ffffff;
  font-size: 14px;
  margin: auto; }

.login-form .btn.btn-primary.reset {
  background: #ff9900 none repeat scroll 0 0; }

.back {
  text-align: left;
  margin-top: 10px; }

.back a {
  color: #444444;
  font-size: 13px;
  text-decoration: none; }

.btn {
  text-decoration: none;
  color: #FFFFFF;
  border-radius: 999px;
  transform: translate3d(0, 0, 0);
  cursor: pointer;
  transition: all .3s; }
  .btn--ghost {
    border: 1px solid #FFFFFF;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 8px -4px #000;
    padding: 10px 30px;
    transition: all .3s; }
    .btn--ghost:hover {
      background: #3b4371;
      border-color: #3b4371;
      color: #FFFFFF;
      box-shadow: 0 12px 12px -8px rgba(0, 0, 0, 0.5);
      transform: translate3d(0, -4px, 0); }
  .btn--blue {
    background: #3b4371;
    color: #FFFFFF;
    box-shadow: 0 4px 8px -4px #000;
    padding: 10px 30px;
    transition: all .3s; }
    .btn--blue:hover {
      box-shadow: 0 12px 12px -8px rgba(0, 0, 0, 0.5);
      transform: translate3d(0, -4px, 0); }
  .btn--full {
    width: 100%; }

.card {
  background: #FFFFFF;
  box-shadow: 0 4px 8px -4px #000;
  border-radius: 6px;
  overflow: hidden;
  transition: all .3s; }
  .card--hover {
    transform: translate3d(0, 0, 0); }
    .card--hover:hover {
      box-shadow: 0 12px 12px -8px rgba(0, 0, 0, 0.5);
      transform: translate3d(0, -4px, 0); }
  .card__img {
    min-height: 200px; }
  .card__body {
    padding: 1rem; }

a.card {
  text-decoration: none;
  color: unset; }
  a.card:hover {
    color: unset; }

@media (min-width: 576px) {
  .card__img {
    height: 200px; } }

.carousel {
  height: 600px; }
  .carousel .carousel-inner, .carousel .carousel-item {
    height: 100%; }

.form {
  display: grid;
  grid-template-columns: 65% auto;
  grid-template-rows: auto auto auto;
  grid-auto-rows: 1fr;
  grid-gap: 1.5rem; }
  .form__text {
    min-height: 200px; }
  @media (min-width: 768px) {
    .form .form__text {
      grid-column: 1 / span 1;
      grid-row: 1 / span 3;
      overflow-y: auto; } }
  @media (max-width: 1199px) {
    .form {
      grid-template-columns: 1fr;
      grid-template-rows: minmax(200px, auto) auto auto auto; } }
  .form textarea, .form input {
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 6px;
    color: #FFFFFF;
    padding: 12px; }
  .form textarea {
    height: 100%; }

.search {
  margin-bottom: 1.75rem; }
  @media (min-width: 768px) {
    .search {
      display: flex;
      align-items: flex-end; } }
  .search__component {
    margin-bottom: 1rem; }
    @media (min-width: 768px) {
      .search__component {
        flex: 1 0 auto;
        margin-bottom: 0; }
        .search__component:not(:last-child) {
          margin-right: 18px; } }
    .search__component label {
      display: block;
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 4px; }
    .search__component select, .search__component input:not(.btn) {
      width: 100%;
      border: 1px solid #D8D9DD;
      border-radius: 3px;
      font-size: 16px;
      line-height: 1;
      padding: 0.5rem 0.75rem;
      transition: all .3s; }
      .search__component select:hover, .search__component select:focus, .search__component input:not(.btn):hover, .search__component input:not(.btn):focus {
        border-color: #3b4371; }
    .search__component input.btn {
      margin-top: 1.2rem; }
      @media (min-width: 768px) {
        .search__component input.btn {
          margin-top: 0; } }

.footer {
  position: relative;
  background: linear-gradient(to right, #f3904f, #3b4371);
  overflow: hidden;
  padding: 7rem 0; }
  .footer__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url(../assets/img/footer.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    opacity: .6;
    -webkit-filter: blur(2px);
            filter: blur(2px);
    margin: -3px;
    transition: all .6s; }
  .footer:hover .footer__bg {
    -webkit-filter: blur(4px);
            filter: blur(4px); }
  .footer > *:not(.footer__bg) {
    position: relative;
    z-index: 2; }
  .footer__menu {
    list-style: none;
    text-align: center;
    border-bottom: 1px solid #FFFFFF;
    padding: 0 0 4rem;
    margin: 0; }
    .footer__menu > li {
      display: inline;
      margin: 0 12px; }
      @media (max-width: 991px) {
        .footer__menu > li {
          display: block;
          margin: 0 0 18px; } }
      .footer__menu > li a {
        text-decoration: none;
        text-transform: uppercase;
        font-weight: 500;
        color: #FFFFFF;
        opacity: 0.75;
        padding: 6px 12px;
        transition: all .3s; }
        .footer__menu > li a:hover {
          opacity: 1; }
  .footer .hugostay {
    border-bottom: 1px solid #FFFFFF; }

.copyright {
  text-align: center;
  color: #FFFFFF; }
  .copyright__top {
    font-size: 14px;
    opacity: 0.75; }
  .copyright__bottom {
    text-transform: uppercase;
    font-weight: 500; }

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  grid-gap: 2rem; }
  @media (max-width: 1199px) {
    .grid {
      grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 767px) {
    .grid {
      grid-template-columns: 1fr; } }

header {
  position: fixed;
  z-index: 5;
  top: 0;
  right: 0;
  left: 0;
  height: 56px; }
  header + * {
    padding-top: 56px; }
  header .language-picker {
    color: rgba(0, 0, 0, 0.5); }
    header .language-picker a {
      color: inherit; }

.navbar {
  background: #FFFFFF;
  box-shadow: 0 -3px 10px #000000;
  transition: all .3s; }
  .navbar .navbar-brand {
    font-weight: 500; }
    .navbar .navbar-brand img {
      width: 150px; }
    @media only screen and (max-width: 600px) {
      .navbar .navbar-brand img {
        width: 75px; } }
  .navbar .nav-item {
    font-weight: 400; }
    .navbar .nav-item.active .nav-link {
      color: #3b4371 !important; }
    .navbar .nav-item .nav-link:hover {
      color: #3b4371 !important; }

.hero__bg {
  background-image: url("../assets/img/hero.jpg");
  opacity: 0.6; }

.hero {
  position: relative;
  min-height: 80vh;
  background: linear-gradient(to right, #f3904f, #3b4371);
  display: flex;
  align-items: center;
  justify-content: center; }
  .hero--small {
    min-height: 40vh; }
  .hero__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat; }
  .hero__content {
    position: relative;
    text-align: center; }
    .hero__content h1 {
      font-family: Roboto-thin;
      color: #FFFFFF;
      font-size: 4rem;
      margin: 5rem 0; }
    @media only screen and (max-width: 600px) {
      .hero__content h1 {
        font-size: 3rem; } }

.list {
  list-style: none;
  padding: 0;
  margin: 0; }
  .list > li {
    position: relative;
    padding-left: 18px; }
    .list > li:before {
      content: '';
      position: absolute;
      top: calc(50% - 4px);
      left: 0;
      height: 8px;
      width: 8px;
      border: 2px solid #3b4371;
      border-radius: 50%; }

.meta__line > i {
  font-size: 20px;
  color: #3b4371;
  margin-right: 0.4rem; }

.meta--boxed {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  border: 1px solid #B1B3BC;
  border-radius: 6px;
  box-shadow: 0 4px 8px -4px #000; }
  @media (min-width: 768px) {
    .meta--boxed {
      grid-template-columns: repeat(3, 1fr); } }

.meta__box {
  padding: 1rem; }
  .meta__box > h6 {
    display: flex;
    align-items: center;
    color: #3b4371;
    text-transform: uppercase; }
    .meta__box > h6 > i {
      font-size: 24px;
      margin-right: 0.4rem; }
  @media (min-width: 992px) {
    .meta__box {
      text-align: center; }
      .meta__box > h6 {
        justify-content: center; } }
  @media (min-width: 576px) and (max-width: 767px) {
    .meta__box {
      text-align: center; }
      .meta__box > h6 {
        justify-content: center; } }
  @media (min-width: 768px) {
    .meta__box:not(:last-child) {
      border-bottom: none !important;
      border-right: 1px solid #B1B3BC; } }
  .meta__box:not(:last-child) {
    border-bottom: 1px solid #B1B3BC; }

.people__img {
  height: 200px;
  width: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem; }
  .people__img > img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover; }

.people__heading {
  text-align: center;
  margin-bottom: 0.95rem; }

.people__meta .meta {
  display: flex;
  align-items: center; }
  .people__meta .meta--small {
    font-size: 0.95rem; }
  .people__meta .meta .mdi {
    font-size: 1.2rem;
    color: #3b4371;
    margin-right: 6px; }

.slider {
  display: none;
  cursor: -webkit-grab;
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  white-space: nowrap;
  width: 12000px; }
  .slider img {
    overflow: hidden;
    height: 700px;
    float: left;
    z-index: -1;
    pointer-events: none; }
  @media screen and (max-width: 1200px) {
    .slider img {
      height: 500px; } }
  @media screen and (max-width: 892px) {
    .slider img {
      height: 400px; } }
  @media screen and (max-width: 480px) {
    .slider img {
      height: 300px; } }

.loader {
  border: 6px solid #f3f3f3;
  /* Light grey */
  border-top: 6px solid #3498db;
  /* Blue */
  border-radius: 50%;
  margin: 30px auto 0px;
  text-align: center;
  width: 35px;
  height: 35px;
  -webkit-animation: spin 2s linear infinite;
          animation: spin 2s linear infinite; }

@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.searchform {
  padding: 15px;
  padding-top: 71px; }

.polyBox {
  position: relative;
  display: inline-block;
  width: 100%; }
  .polyBox svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0; }
  .polyBox polyline {
    fill: none;
    stroke: white;
    stroke-width: 3;
    cursor: pointer; }
  .polyBox circle {
    cursor: pointer; }
  .polyBox circle:hover {
    fill: red; }
  .polyBox .done {
    fill: white;
    fill-opacity: 0.7; }
  .polyBox .done:hover {
    fill: black; }

.hoverable {
  cursor: pointer; }

.offerImages .imagerow {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px; }

.offerImages .imagecolumn {
  flex: 16.6%;
  max-width: 16.6%;
  max-height: 100px;
  padding: 0 4px; }

.offerImages .imagecolumn img {
  padding-top: 8px;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer; }

.offerImages .bigimage {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer; }

.offerImages .btn {
  background: rgba(0, 0, 0, 0.5); }

@media screen and (max-width: 800px) {
  .offerImages .bigimage {
    height: 500px; }
  .offerImages .btn {
    font-size: 12px; } }

@media screen and (max-width: 600px) {
  .offerImages .bigimage {
    height: 300px; }
  .offerImages .btn {
    font-size: 10px;
    padding: 5px 10px; } }

@font-face {
  font-family: Handlee;
  src: url("../assets/fnt/Handlee-Regular.ttf"); }

@font-face {
  font-family: Roboto-thin;
  src: url("../assets/fnt/Roboto-Thin.ttf"); }

.home .offer-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  grid-auto-rows: 1fr;
  grid-gap: 2rem; }
  .home .offer-wrap .card {
    display: grid;
    grid-template-rows: 240px auto; }
  @media (max-width: 1199px) {
    .home .offer-wrap {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: 2fr 3fr; }
      .home .offer-wrap .card:first-child {
        grid-column: 1 / 3;
        grid-template-rows: 300px;
        grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 767px) {
    .home .offer-wrap {
      grid-template-columns: 1fr;
      grid-template-rows: auto; }
      .home .offer-wrap .card:first-child {
        grid-column: 1;
        grid-template-rows: 240px auto;
        grid-template-columns: auto; } }

.alertB0x {
  border: 0;
  transform: rotate(10deg);
  border-radius: 10px;
  max-height: 0;
  max-width: 0;
  padding: 0;
  transition: max-height 0.2s, padding 0.2s, max-width 0.2s, transform 0.5s, bottom 0.2s;
  overflow: hidden;
  bottom: 0;
  margin: auto;
  position: fixed;
  left: 0;
  right: 0;
  bottom: -50px;
  z-index: 1; }

.shows {
  bottom: 20px;
  max-height: 100%;
  transform: rotate(0deg);
  max-width: 50%;
  border: 1px solid transparent;
  padding: 10px;
  margin-bottom: 15px; }
