@charset "UTF-8";
/*******************************************************************************
 * Copyright(C) 2020, 2021 Miha Kitič<miha.kitic@mksp.si> All rights reserved! *
 ******************************************************************************/
/*
 * Base styles on original BASE scss file
 */
/*******************************************************************************
 *Copyright(C) 2020, 2021 Miha Kitič<miha.kitic@mksp.si> - All rights reserved!*
 ******************************************************************************/
/*
 * Load essential SCSS variables
 */
/*******************************************************************************
 *  Copyright (C) 2020 Miha Kitič<miha.kitic@mksp.si> - All rights reserved!   *
 ******************************************************************************/
/*
 * Essential SASS variables
 */
/* White edge sections */
div#search-section,
div#promotion-section,
div#footer-section-container {
  margin: 0 auto;
  width: calc(100% - 20px);
}

div#search-section {
  width: calc(100% - 50px);
}

/* Full width sections*/
div#intro-section {
  width: 100%;
}

/*
 * The following chapter will define other properties of each block
 * (e.g. height). */
/* Intro section */
div#intro-section {
  min-height: 100px;
  height: 600px;
  background-position: center;
  background-size: cover;
  background-image: url("/static/img/assets/intro-background.jpg");
}

#intro-section-container {
  height: 600px;
}

#intro-section-title {
  float: left;
  padding: 5vw;
}

#intro-section-title h1 {
  color: #333;
  font-weight: bold;
}

#intro-section-white-logo {
  float: right;
  padding: 5vw;
}

/* Search bar section */
div#search-section {
  height: 0px;
  position: relative;
  bottom: 190px;
  z-index: 5;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  div#search-section,
div#promotion-section,
div#footer-section-container {
    margin: 0 auto;
    width: calc(100% - 210px);
  }
  div#search-section {
    bottom: 140px;
  }
}

@media (min-width: 992px) {
  div#search-section {
    bottom: 105px;
  }
}

/* Content section */
div#content-section {
  min-height: calc(100vh - 90px - 120px);
}

/* Promo section */
#promotion-section-container {
  margin-bottom: 40px;
}

.highlight-card-container {
  padding: 7px !important;
}

.highlight-card {
  background-position: center;
  background-size: cover;
  height: 235px;
  width: 100%;
  opacity: 0.9;
  box-shadow: 0px 2px 10px #d8d5d5;
  transition: all, 0.15s;
}

.highlight-card > .gradient-overlay {
  position: relative;
  top: 25%;
  width: 100%;
  height: 75%;
  background-image: linear-gradient(#3a3a3a00, #3a3a3a00, #000000bf);
  z-index: 1;
}

.highlight-card > .description {
  color: var(--font-dark-bg);
  position: relative;
  z-index: 2;
  font-family: 'fontFooterTitle';
  padding: 10px;
  transition: all, 0.15s;
}

.highlight-card:hover {
  box-shadow: 0px 2px 10px #737373;
  opacity: 1.0;
}

.highlight-card:hover > .description {
  font-size: 1.03em;
}

/******************************************************************************
 **                             REGIONS TABLE                                **
 ******************************************************************************/
table.regions {
  width: 100%;
  max-width: 1110px;
  margin: 40px auto;
}

table.regions td {
  width: 33.33%;
  height: 100px;
  padding: 7px;
}

table.regions td > a > div {
  width: 100%;
  height: calc(100px - 7px);
}

table.regions td[rowspan="2"] > a > div {
  height: 200px;
}

.region-card-container {
  padding: 6px !important;
}

.region-card {
  background-position: center;
  background-size: cover;
  width: 100%;
  display: table;
  box-shadow: 0px 2px 10px #d8d5d5;
  opacity: 0.9;
  transition: all, 0.15s;
}

.region-card > .description {
  color: var(--font-dark-bg);
  z-index: 2;
  font-family: 'fontFooterTitle';
  font-size: 1.1rem;
  padding: 8px 10px;
  display: table-cell;
  vertical-align: bottom;
  text-shadow: 0px 0 6px black, 0px 0 6px black;
  transition: all, 0.15s;
}

.region-card:hover {
  box-shadow: 0px 2px 10px #737373;
  opacity: 1.0;
}

.region-card:hover > .description {
  font-size: 1.2rem;
}

/******************************************************************************
 **                         RECOMMENDED TABLE                                **
 ******************************************************************************/
.recommended-container {
  padding: 6px !important;
}

.recommended-frame {
  /* border: 1px solid var(--primary_1) */
}

.recommended-image {
  background-position: center;
  background-size: cover;
  height: 180px;
  width: 100%;
}

.recommended-description {
  height: 150px;
  border-left: 1px solid lightgrey;
  border-right: 1px solid lightgray;
  background-color: #f7f7f7;
  padding: 10px;
  font-size: 88%;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}

.recommended-description > div {
  height: 128px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}

.recommended-button {
  color: var(--font-dark-bg);
  background-color: var(--primary_2);
  text-align: center;
  padding: 7px;
  cursor: pointer;
  transition: background-color 0.35s;
}

.recommended-button:hover {
  background-color: var(--primary_1);
}

/*# sourceMappingURL=../../dist/app_main/main.css.map */
/*******************************************************************************
 *                     FROM Here WE ADD EXTRA STYLES                           *
 ******************************************************************************/
/* Positioning of main image & search bar */
div#intro-section {
  height: calc(100vh - 90px - 120px - 0px);
}

div#intro-section.experiences {
  background-image: url(/static/img/assets/intro-background-experiences.jpg);
}

div#search-section {
  bottom: 248px;
}

@media (min-width: 768px) {
  div#search-section {
    bottom: 200px;
  }
}

@media (min-width: 992px) {
  div#search-section {
    bottom: 200px;
  }
}

/* Promo section */
#promotion-section-container {
  margin-top: 50px;
}

#promotion-section-container .container {
  max-width: 1112px;
  width: calc(100% + 12px);
}

/* Promotions - highlights */
.highlight-container {
  z-index: 1;
  padding: 6px !important;
}

.highlight-container:hover {
  z-index: 10;
}

.highlight-frame:hover > .highlight-image {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}

.highlight-image {
  background-position: center;
  background-size: cover;
  height: 180px;
  width: 100%;
  -webkit-transition: all 0.2s cubic-bezier(0.42, 0, 0.4, 1.34);
  -moz-transition: all 0.2s cubic-bezier(0.42, 0, 0.4, 1.34);
  -o-transition: all 0.2s cubic-bezier(0.42, 0, 0.4, 1.34);
  transition: all 0.2s cubic-bezier(0.42, 0, 0.4, 1.34);
}

.highlight-text {
  background-color: transparent;
  padding: 15px 10px 20px;
  color: var(--font-light-bg);
  -webkit-transition: all 0.2s cubic-bezier(0.42, 0, 0.4, 1.34);
  -moz-transition: all 0.2s cubic-bezier(0.42, 0, 0.4, 1.34);
  -o-transition: all 0.2s cubic-bezier(0.42, 0, 0.4, 1.34);
  transition: all 0.2s cubic-bezier(0.42, 0, 0.4, 1.34);
}

.highlight-frame:hover > .highlight-text {
  background-color: var(--secondary_1);
  color: var(--font-dark-bg);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.highlight-title {
  font-family: fontTextBook;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}

.highlight-descript {
  font-family: fontTextBookCondensed;
  font-size: 15px;
  margin: 6px auto 14px;
  text-align: center;
}

.highlight-button {
  font-family: fontTextBook;
  font-size: 14px;
  border-radius: 20px;
  width: 150px;
  margin: 0 auto;
  text-align: center;
  padding: 7px;
  cursor: pointer;
  background-color: var(--primary_2);
  opacity: 0;
}

.highlight-button:hover {
  background-color: var(--primary_2) !important;
}

.highlight-frame:hover .highlight-button {
  opacity: 1.0;
}

/* Promotions - recommended */
.recommended-container {
  padding: 6px !important;
  left: -6px;
}

.recommended-frame {
  /* border: 1px solid var(--primary_1) */
}

.recommended-image {
  background-position: center;
  background-size: cover;
  height: 160px;
  /* width               : 100%; */
  float: left;
  display: inline-block;
  width: 160px;
  -webkit-transition: all 0.2s cubic-bezier(0.42, 0, 0.4, 1.34);
  -moz-transition: all 0.2s cubic-bezier(0.42, 0, 0.4, 1.34);
  -o-transition: all 0.2s cubic-bezier(0.42, 0, 0.4, 1.34);
  transition: all 0.2s cubic-bezier(0.42, 0, 0.4, 1.34);
}

.recommended-frame:hover .recommended-image {
  width: 180px;
  height: 180px;
}

.recommended-description {
  height: 150px;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  background-color: transparent;
  padding: 0 0 15px 15px;
  font-size: 90%;
}

.recommended-description > .recommended-title {
  font-weight: bold;
  font-size: 120%;
  height: 30px;
  top: -4px;
  position: relative;
  text-transform: uppercase;
  font-family: fontTextBook;
}

.recommended-description > .recommended-text {
  height: 105px;
  -webkit-line-clamp: 4;
  font-family: fontTextBookCondensed;
  font-size: 1.1rem;
}

.recommended-button-container {
  height: 25px;
  padding-right: 20px;
}

.recommended-button {
  color: var(--font-dark-bg);
  font-family: fontTextBook;
  width: 150px;
  float: right;
  display: inline-block;
  border-radius: 20px;
  opacity: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.42, 0, 0.4, 1.34);
  -moz-transition: all 0.2s cubic-bezier(0.42, 0, 0.4, 1.34);
  -o-transition: all 0.2s cubic-bezier(0.42, 0, 0.4, 1.34);
  transition: all 0.2s cubic-bezier(0.42, 0, 0.4, 1.34);
}

.recommended-button:hover {
  background-color: var(--primary_2);
}

.recommended-frame:hover .recommended-button {
  opacity: 1;
}

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