@charset "UTF-8";
/*
 * Theme Name:Basic HTML5/CSS3 responsive layout 
 * Date:February 2023
 * Version:2.1
 * Author: PBK
 * Author URL [en]:http://www.goldenwebdesign.co.uk
 * Author URL [cz]:http://www.goldendesign.cz
*/
/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Palanquin+Dark:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,700;1,200;1,300;1,700&display=swap");
/* @media  screen */
/* Color set #1 */
.white {
  color: #f5f8fb;
}

/* gray light */
.gray_light {
  color: #e5eaf0;
}

/* gray */
.gray {
  color: #e0e3f1;
}

/* gray dark */
.gray_dark {
  color: #c3cbce;
}

.black_light {
  color: #737B7E;
}

.black {
  color: #24303D;
}

.black_dark {
  color: #19222c;
}

/* blue light*/
/* blue light*/
.blue_light {
  color: #95c7d7;
}

/* blue */
.blue {
  color: #2c87a4;
}

/* blue dark*/
.blue_dark {
  color: #106B88;
}

/* orange */
.orange {
  color: #ce5647;
}

/* red */
.red {
  color: #9e3528;
}

/* success */
.green {
  color: #1C8125;
}

#paragliding::before, #head::after {
  content: '';
  background: transparent url("../imgs/bg/pattern.png") repeat top left;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  -khtml-opacity: 0.4;
  /* Safari 1.x */
  -moz-opacity: 0.4;
  /* Netscape */
  opacity: 0.4;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  /* IE 8 */
  filter: alpha(opacity=40);
  /* IE 5-7 */
}

#paragliding .paragliding_wrap a .play_button, #head .topic_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

body {
  background-image: url("../imgs/bg/bg_topographic_map.jpg");
  background-repeat: repeat;
  background-position: 0;
}

.wrapper {
  max-width: 85rem;
  clear: both;
  margin: 0 auto;
  position: relative;
}

@media only screen and (max-width: 1366px) {
  .wrapper {
    width: 85%;
  }
}

@media only screen and (max-width: 920px) {
  .wrapper {
    width: 90%;
  }
}

@media only screen and (max-width: 620px) {
  .wrapper {
    width: 95%;
  }
}

/*
  ===========================
  ======= Body style ======== 
  =========================== 
*/
body {
  background-color: #f5f8fb;
  color: #3c3b51;
  font-size: 1.15em;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
}

body,
button,
input {
  font-family: 'Nunito', sans-serif;
  font-weight: 200;
}

section {
  flex: 1 0 auto;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

sup {
  font-size: 70%;
  padding-right: 3px;
  margin-top: 2px;
}

@media only screen and (max-width: 920px) {
  body {
    font-size: 1em;
  }
}

/* 
	 ===========================
   ========= Headings ======== 
   =========================== 
*/
h1, h2, h3, h4 {
  font-family: 'Palanquin Dark', sans-serif;
  font-weight: 700;
  line-height: 1.25em;
  margin-bottom: 0.5em;
}

h1, h2 {
  font-size: 2.5em;
  text-align: center;
}

h3, h4 {
  font-size: 1.5em;
  margin-bottom: 1em;
  text-align: left;
}

h4 {
  font-size: 1.15em;
}

h5, h6 {
  font-family: 'Palanquin Dark', sans-serif;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: .8em;
}

p {
  font-weight: 300;
  margin: 2% 0 4% 0;
  text-align: left;
}

a, button {
  outline: none;
}

.lead_title {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
  /* font-size: 120%;*/
  text-align: center;
}

@media only screen and (max-width: 620px) {
  h1, h2 {
    font-size: 2.2em;
  }
  h3, h4 {
    font-size: 1.25em;
    margin-bottom: .8em;
  }
  p {
    margin: 1% 0 3% 0;
  }
  p, p.lead_title, li {
    text-align: justify;
  }
  p.lead_title {
    width: 100%;
  }
}

/* 
  ===========================
  ====== Backgrounds  ======= 
  =========================== 
*/
.bg_white {
  background-color: #f5f8fb;
}

.bg_leaves {
  background-color: #e0e3f1;
  background-image: url(../imgs/bg/bg_wood.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.bg_darker {
  position: relative;
}

.bg_darker:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #24303D;
  -khtml-opacity: 0.1;
  /* Safari 1.x */
  -moz-opacity: 0.1;
  /* Netscape */
  opacity: 0.1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
  /* IE 8 */
  filter: alpha(opacity=10);
  /* IE 5-7 */
}

/* 
  ===========================
  ======= UL design  ======== 
  =========================== 
*/
ul.designed li span.bp_arrow_red, ul.designed li span.bp_arrow {
  display: inline-block;
  position: absolute;
  width: 1.3em;
  height: 1.3em;
  border-radius: 50%;
  left: 0;
}

ul.designed li span.bp_arrow_red::after, ul.designed li span.bp_arrow::after {
  content: '';
  display: inline-block;
  margin-top: 0.25em;
  margin-left: 0.14em;
  width: 0.5em;
  height: 0.5em;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
}

ul.designed {
  /*
  span.bottom {
    display: inline-block;
    width: 4em;
    height: 4em;
    border: 0.5em solid #333;
    border-radius: 50%;
    margin-left: 0.75em;
  
    &::after {
      content: '';
      display: inline-block;
      margin-top: 0.6em;
      width: 1.4em;
      height: 1.4em;
      border-top: 0.5em solid #333;
      border-right: 0.5em solid #333;
      -moz-transform: rotate(135deg);
      -webkit-transform: rotate(135deg);
      transform: rotate(135deg);
    }
  }
  */
}

ul.designed.ul_50pc li {
  width: 50% !important;
  float: left !important;
  display: block !important;
}

ul.designed li {
  line-height: 1.4em;
  height: 1.4em;
  padding-left: 2em;
  padding-bottom: 0.6em;
  position: relative;
  display: inline-block;
  width: 100%;
  height: auto;
}

ul.designed li span.bp_arrow {
  border: 0.2em solid #2c87a4;
}

ul.designed li span.bp_arrow::after {
  border-top: 0.2em solid #2c87a4;
  border-right: 0.2em solid #2c87a4;
}

ul.designed li span.bp_arrow_red {
  border: 0.2em solid #9e3528;
}

ul.designed li span.bp_arrow_red::after {
  border-top: 0.2em solid #9e3528;
  border-right: 0.2em solid #9e3528;
}

ul.designed li span.bp_done {
  display: inline-block;
  position: absolute;
  width: 1.3em;
  height: 1.3em;
  border: 0.2em solid #1C8125;
  border-radius: 50%;
  left: 0;
}

ul.designed li span.bp_done::after {
  content: '';
  margin-top: 0.25em;
  margin-left: 0.14em;
  width: 0.6em;
  height: 0.4em;
  border-top: 0.2em solid #1C8125;
  border-right: 0.2em solid #1C8125;
  -moz-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
}

ul.designed li span.bp_no {
  display: inline-block;
  position: absolute;
  width: 1.3em;
  height: 1.3em;
  border: 0.2em solid #9e3528;
  border-radius: 50%;
  left: 0;
}

ul.designed li span.bp_no::before, ul.designed li span.bp_no::after {
  content: '';
  margin-top: 0.35em;
  margin-left: 0.09em;
  position: absolute;
  width: 0.75em;
  height: 0.2em;
  /* cross thickness */
  background-color: #9e3528;
}

ul.designed li span.bp_no::before {
  transform: rotate(45deg);
}

ul.designed li span.bp_no::after {
  transform: rotate(-45deg);
}

/* 
  ===========================
  ===== Mobile prefix ======= 
  =========================== 
*/
.top_margin_w_no_mobile {
  margin-top: 3.4em;
}

/* 
  ===========================
  ======= Pictograms ======== 
  =========================== 
*/
ul.pictograms li {
  width: 5em;
  height: 5em;
  border: 0.2em solid #2c87a4;
  display: inline-block;
  margin: 0.5em;
  overflow: hidden;
  border-radius: 50%;
}

ul.pictograms li img {
  width: 100%;
  padding: 15%;
}

@media only screen and (max-width: 620px) {
  ul.pictograms li {
    width: 4em;
    height: 4em;
    border: 0.15em solid #2c87a4;
  }
}

/* 
  ===========================
  ========= Partners ======== 
  =========================== 
*/
#partners {
  background-color: #ebf2f8;
}

#partners ul.logos li {
  width: 8em;
  height: 8em;
  display: inline-block;
  margin: 0.5em 1em;
  overflow: hidden;
}

#partners ul.logos li img {
  width: 100%;
  padding: 15%;
}

#partners ul.logos li:hover img {
  width: 100%;
  padding: 15%;
}

@media only screen and (max-width: 620px) {
  #partners ul.pictograms li {
    width: 6em;
    height: 6em;
  }
}

/* 
  ===========================
  ====== Website head ======= 
  =========================== 
*/
#head {
  height: 100vh;
  background-image: url(../imgs/slideshow/slide-04.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
}

#head .topic_wrap {
  z-index: 99;
}

#head .topic_wrap.adjusted_shift {
  top: 58% !important;
}

#head nav {
  position: absolute;
  top: 50px;
  height: 4em;
  width: 100%;
  z-index: 9;
  background-color: #e5eaf0;
  transition: all .7s, top 0s;
  z-index: 999;
  overflow: hidden;
}

#head nav.anchored {
  top: 0;
  position: fixed;
  border-bottom: 2px solid #106B88;
}

#head nav #navigation {
  line-height: 4em;
  padding: 0 1em;
  cursor: pointer;
}

#head nav ul#navigation_toggle {
  width: 90%;
  margin: 0 auto;
  background-color: #e5eaf0;
  transition: all .7s;
}

#head nav ul#navigation_toggle li {
  display: inline-block;
}

#head nav ul#navigation_toggle li a {
  display: inline-block;
  line-height: 4em;
  padding: 0 1.5em;
  text-decoration: none;
  color: #3c3b51;
  white-space: nowrap;
}

#head nav ul#navigation_toggle li a:hover {
  background-color: #c3cbce;
}

#head nav ul#navigation_toggle li .active {
  background-color: #106B88;
  color: #e5eaf0;
}

#head nav ul#navigation_toggle li .active:hover {
  background-color: #737B7E;
}

#head nav ul#navigation_toggle .booking {
  background-color: #ce5647;
  color: #e5eaf0;
}

#head nav ul#navigation_toggle .booking:hover {
  background-color: #9e3528;
}

#head nav ul#navigation_toggle .on_the_right {
  float: right;
}

#head nav ul#navigation_toggle .on_the_right .language {
  cursor: pointer;
}

#head nav ul#navigation_toggle .on_the_right .language:first-of-type {
  padding-right: 0.2em;
}

#head nav ul#navigation_toggle .on_the_right .language:first-of-type::after {
  content: 'CZ';
  display: inline-block;
}

#head nav ul#navigation_toggle .on_the_right .language:first-of-type::after:hover {
  color: #106B88;
  font-weight: 600 !important;
}

#head nav ul#navigation_toggle .on_the_right .language:last-of-type {
  padding-left: 0.2em;
}

#head nav ul#navigation_toggle .on_the_right .language:last-of-type::before {
  content: '/';
  display: inline-block;
  color: #737B7E;
  left: -3px;
  position: relative;
  font-weight: 300 !important;
}

#head nav ul#navigation_toggle .on_the_right .language:last-of-type::after {
  content: 'DE';
  display: inline-block;
}

#head nav ul#navigation_toggle .on_the_right .language:last-of-type::after:hover {
  font-weight: 600 !important;
  color: #106B88;
}

#head nav ul#navigation_toggle .on_the_right .language:hover {
  background-color: #e5eaf0;
}

#head nav ul#navigation_toggle .on_the_right .active {
  background-color: #e5eaf0;
  color: #737B7E;
}

#head nav ul#navigation_toggle .on_the_right .active::after {
  color: #106B88;
  font-weight: 600 !important;
}

#head nav ul#navigation_toggle .on_the_right .active:hover {
  background-color: #e5eaf0;
  cursor: default;
}

@media only screen and (max-width: 920px) {
  #head nav ul#navigation_toggle {
    width: 100%;
  }
  #head nav ul#navigation_toggle li a {
    display: inline-block;
  }
}

@media only screen and (max-width: 620px) {
  #head .topic_wrap {
    top: 44%;
  }
  #head .topic_wrap.adjusted_shift {
    top: 50% !important;
  }
  #head nav {
    position: fixed;
    top: 0;
    z-index: 999;
    overflow: visible;
  }
  #head nav.anchored {
    border-bottom: 1px solid #f5f8fb;
  }
  #head nav ul#navigation_toggle {
    height: 100vh;
    left: -550px;
    width: 0;
    overflow: hidden;
    border-bottom: 1px solid #CACACA;
    border-top: 1px solid #F4F4F4;
  }
  #head nav ul#navigation_toggle.active {
    left: 0;
    width: 100%;
    overflow: visible;
  }
  #head nav ul#navigation_toggle li {
    display: block;
    width: 100%;
    border-bottom: 1px solid #CACACA;
    border-top: 1px solid #F4F4F4;
  }
  #head nav ul#navigation_toggle li a {
    display: block;
    width: 100%;
    text-align: center;
  }
  #head nav ul#navigation_toggle .on_the_right {
    float: unset;
    text-align: center;
  }
  #head nav ul#navigation_toggle .on_the_right .language {
    display: initial;
  }
  #head nav ul#navigation_toggle .on_the_right .language:first-of-type::after {
    content: 'Čeština';
    margin-right: 3px;
  }
  #head nav ul#navigation_toggle .on_the_right .language:last-of-type::after {
    content: 'Deutsch';
  }
}

/* 
  ===========================
  ====== Intro 3-ways ======= 
  =========================== 
*/
/* Vila Alena */
/* Aparmany Klarka */
#intro_3_ways {
  /* Prefix */
  /* Unique parts */
}

#intro_3_ways .body_wrapper {
  overflow: visible;
}

#intro_3_ways .table {
  margin-top: -140px;
}

#intro_3_ways .intro_way_block {
  background-color: #f5f8fb;
  border-top: 5px solid #f5f8fb;
  text-align: center;
  -webkit-box-shadow: 0px 11px 34px -20px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 11px 34px -20px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 11px 34px -20px rgba(0, 0, 0, 0.75);
}

#intro_3_ways .intro_way_block .img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#intro_3_ways .intro_way_block .img.img_upa {
  background-image: url(../imgs/intro-horni-mala-upa.jpg);
}

#intro_3_ways .intro_way_block .img.img_alena {
  background-image: url(../imgs/intro-vila-alena.jpg);
}

#intro_3_ways .intro_way_block .img.img_klarka {
  background-image: url(../imgs/intro-apartmany-klarka.jpg);
}

#intro_3_ways .intro_way_block h2 {
  text-transform: uppercase;
  line-height: 38px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 2em;
}

#intro_3_ways .intro_way_block h2 span {
  text-transform: none;
  font-size: 0.8em;
  font-weight: 300;
  display: block;
  color: #24303D;
}

#intro_3_ways .intro_way_block p {
  margin: 2em;
  text-align: center;
}

#intro_3_ways .cell {
  /* Mala Upa */
  /* Vila Alena */
  /* Aparmany Klarka */
}

#intro_3_ways .cell:first-of-type .intro_way_block {
  border-radius: 2px;
  margin-top: 25px;
  border-bottom: 5px solid #106B88;
}

#intro_3_ways .cell:first-of-type .intro_way_block h2 {
  color: #106B88;
}

#intro_3_ways .cell:first-of-type .intro_way_block p {
  min-height: 100px;
}

#intro_3_ways .cell:nth-child(2) .intro_way_block {
  position: relative;
  border-radius: 2px;
  border-bottom: 5px solid #ce5647;
  z-index: 9;
  -webkit-box-shadow: 0px 11px 49px -10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 11px 49px -10px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 11px 49px -10px rgba(0, 0, 0, 0.75);
}

#intro_3_ways .cell:nth-child(2) .intro_way_block .img {
  height: 250px;
}

#intro_3_ways .cell:nth-child(2) .intro_way_block h2 {
  color: #ce5647;
}

#intro_3_ways .cell:nth-child(2) .intro_way_block p {
  min-height: 110px;
}

#intro_3_ways .cell:nth-child(2) .intro_way_block::before {
  content: '';
  position: absolute;
  top: 29px;
  left: 0;
  height: 100%;
  width: 50.2%;
  background-color: #f5f8fb;
  border-bottom: 5px solid #ce5647;
  z-index: -1;
  -webkit-transform: skew(0deg, 15deg);
  -moz-transform: skew(0deg, 15deg);
  -ms-transform: skew(0deg, 15deg);
  -o-transform: skew(0deg, 15deg);
  transform: skew(0deg, 15deg);
}

#intro_3_ways .cell:nth-child(2) .intro_way_block::after {
  content: '';
  position: absolute;
  top: 29px;
  right: 0;
  height: 100%;
  width: 50%;
  background-color: #f5f8fb;
  border-bottom: 5px solid #ce5647;
  z-index: -1;
  -webkit-transform: skew(0deg, -15deg);
  -moz-transform: skew(0deg, -15deg);
  -ms-transform: skew(0deg, -15deg);
  -o-transform: skew(0deg, -15deg);
  transform: skew(0deg, -15deg);
}

#intro_3_ways .cell:last-of-type .intro_way_block {
  border-radius: 2px;
  margin-top: 25px;
  border-bottom: 5px solid #106B88;
}

#intro_3_ways .cell:last-of-type .intro_way_block h2 {
  color: #106B88;
}

#intro_3_ways .cell:last-of-type .intro_way_block p {
  min-height: 100px;
}

@media only screen and (max-width: 620px) {
  #intro .section_padding {
    padding-top: 1em;
  }
  #intro_3_ways .table {
    margin-top: -225px;
  }
  #intro_3_ways .cell {
    /* Vila Alena */
  }
  #intro_3_ways .cell:nth-child(2) .intro_way_block {
    border-bottom: 5px solid #2c87a4;
  }
  #intro_3_ways .cell:nth-child(2) .intro_way_block h2 {
    color: #2c87a4;
  }
  #intro_3_ways .cell:nth-child(2) .intro_way_block p {
    min-height: 110px;
  }
  #intro_3_ways .cell:nth-child(2) .intro_way_block::before {
    border-bottom: 5px solid #2c87a4;
    height: 103%;
    display: none;
  }
  #intro_3_ways .cell:nth-child(2) .intro_way_block::after {
    border-bottom: 5px solid #2c87a4;
    height: 103%;
    display: none;
  }
}

@media only screen and (max-width: 920px) {
  #intro_3_ways .body_wrapper {
    width: 100%;
  }
  #intro_3_ways .table {
    width: 100%;
  }
  #intro_3_ways .intro_way_block p {
    margin: 1em;
  }
  #intro_3_ways .intro_way_block h2 {
    font-size: 150%;
    line-height: unset;
  }
}

/* 
  ===========================
  ========= Buttons ========= 
  =========================== 
*/
.btn {
  padding: 0.5em 4em;
  border-radius: 5px;
  margin: 3em auto;
  text-align: center;
  cursor: pointer;
  display: table;
  transition: background-color 0.9s ease-in-out;
}

.btn:hover {
  transition: background-color 0.5s ease-in-out;
}

@media only screen and (max-width: 620px) {
  .btn {
    margin: 0 auto;
  }
}

.btn_blue {
  background-color: #2c87a4;
  color: #e0e3f1;
}

.btn_blue:hover {
  background-color: #19222c;
}

.btn_red {
  background-color: #ce5647;
  color: #e0e3f1;
}

.btn_red:hover {
  background-color: #9e3528;
}

.btn_gray {
  background-color: #e0e3f1;
  color: #f5f8fb;
}

.btn_gray:hover {
  background-color: #c3cbce;
}

/* 
  ===========================
  ===== Toggle elements ===== 
  =========================== 
*/
.toggle {
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  max-height: 0;
}

.toggle.active {
  margin-bottom: 1em;
  height: auto;
  transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
  max-height: 9999px;
}

/* 
  ===========================
  ===== Scroll elements ===== 
  =========================== 
*/
.btn_target {
  color: #2c87a4;
  text-decoration: 1px dotted underline;
  cursor: pointer;
  transition: 1s;
}

.btn_target:hover {
  color: #106B88;
  text-decoration: 1px solid underline;
}

/* 
  ===========================
  ==== Decorated topic ====== 
  =========================== 
*/
.h_decoration {
  margin-bottom: 0;
}

.h_decoration span:first-of-type, .h_decoration span:last-of-type {
  display: inline-block;
  white-space: nowrap;
  padding: .9em;
  color: #106B88;
  background-image: linear-gradient(177deg, transparent 25%, #e5eaf0 25.5%, #e5eaf0 75%, transparent 75.5%), linear-gradient(177deg, transparent 25%, #24303D 25.5%, #24303D 75%, transparent 75.5%), linear-gradient(-179deg, transparent 25%, #95c7d7 25.5%, #95c7d7 75%, transparent 75.5%);
  background-size: auto 94%, auto 95%;
  background-position: center center, right -10px bottom -5px, top -5px left;
  background-repeat: no-repeat;
  margin: -7px;
}

@media only screen and (max-width: 620px) {
  .h_decoration span:first-of-type, .h_decoration span:last-of-type {
    font-size: 70%;
  }
}

/* 
  ===========================
  ====== Paragliding ======== 
  =========================== 
*/
#paragliding {
  background-image: url("../imgs/bg/bg_paragliding_1280.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

#paragliding p.text_bg_decoration {
  font-size: 1.2em;
  display: none;
}

#paragliding p.text_bg_decoration span {
  background-color: #e5eaf0;
  margin-bottom: 5px;
  padding: 3px 6px;
  display: inline-table;
}

#paragliding .paragliding_wrap {
  width: 420px;
  height: 254px;
  background-image: url("../imgs/bg/bg_paragliding.jpg");
  background-position: center;
  border: 4px solid #c3cbce;
  cursor: pointer;
  position: relative;
}

#paragliding .paragliding_wrap a {
  display: block;
  width: 100%;
  height: 100%;
}

#paragliding .paragliding_wrap a .play_button {
  -khtml-opacity: 0.4;
  /* Safari 1.x */
  -moz-opacity: 0.4;
  /* Netscape */
  opacity: 0.4;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  /* IE 8 */
  filter: alpha(opacity=40);
  /* IE 5-7 */
  border: 0;
  background: transparent;
  box-sizing: border-box;
  width: 0;
  height: 32px;
  transition: all .4s ease-in-out;
  border-color: transparent transparent transparent #c3cbce;
  cursor: pointer;
  border-style: solid;
  border-width: 16px 0 16px 36px;
}

#paragliding .paragliding_wrap a .play_button::after {
  content: "";
  border: 8px solid #c3cbce;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: block;
  position: absolute;
  top: -35px;
  left: -57px;
}

#paragliding .paragliding_wrap a:hover .play_button {
  -khtml-opacity: 0.9;
  /* Safari 1.x */
  -moz-opacity: 0.9;
  /* Netscape */
  opacity: 0.9;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  /* IE 8 */
  filter: alpha(opacity=90);
  /* IE 5-7 */
}

#paragliding .paragliding_wrap a:hover .play_button::after {
  -khtml-opacity: 0.9;
  /* Safari 1.x */
  -moz-opacity: 0.9;
  /* Netscape */
  opacity: 0.9;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  /* IE 8 */
  filter: alpha(opacity=90);
  /* IE 5-7 */
}

@media only screen and (max-width: 920px) {
  #paragliding .h_decoration {
    font-size: 2.4em;
  }
  #paragliding .paragliding_wrap {
    width: 100%;
  }
}

@media only screen and (max-width: 620px) {
  #paragliding .h_decoration {
    font-size: 2.5em;
  }
  #paragliding .paragliding_wrap {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
  }
}

/* 
  ===========================
  ===== Special offers ====== 
  =========================== 
*/
.deal_wrap {
  position: relative;
  border-top: 2px solid #19222c;
  border-right: 2px solid #19222c;
  padding: 40px 10px 20px 10px;
}

.deal_wrap .ribbon_wrap {
  position: absolute;
  color: #f5f8fb;
  right: 0;
  top: -2px;
}

.deal_wrap p {
  margin-top: 16px;
}

.deal_wrap .ribbon {
  position: absolute;
  top: -6.1px;
  right: 10px;
}

.deal_wrap .ribbon:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-left: 81px solid transparent;
  border-right: 81px solid transparent;
  border-top: 11px solid #ce5647;
  bottom: -10px;
}

.deal_wrap .ribbon span {
  position: relative;
  display: block;
  text-align: center;
  background: #ce5647;
  font-weight: 600;
  line-height: 1;
  padding: 12px 8px 10px;
  border-top-right-radius: 8px;
  width: 160px;
}

.deal_wrap .ribbon span:before {
  position: absolute;
  content: "";
  height: 6px;
  width: 6px;
  left: -6px;
  top: 0;
  background: #ce5647;
}

.deal_wrap .ribbon span:after {
  position: absolute;
  content: "";
  height: 6px;
  width: 8px;
  left: -8px;
  top: 0;
  border-radius: 8px 8px 0 0;
  background: #9e3528;
}

@media only screen and (max-width: 620px) {
  .deal_wrap .ribbon_wrap {
    right: unset;
    left: 28px;
    margin-bottom: 25px;
  }
  .deal_wrap .ribbon {
    width: 100%;
  }
}

/* 
  ===========================
  ======== Contacts ========= 
  =========================== 
*/
#booking {
  background-color: #24303D;
}

#booking h2 {
  color: #2c87a4;
}

#booking .table {
  padding: 15px;
  width: 80%;
  margin: 0 auto;
  border-radius: 8px;
  background-color: #e0e3f1;
  overflow: hidden;
  position: relative;
}

#booking .table .airmail {
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 100%;
  border-left: 16px solid transparent;
  border-image: 16 repeating-linear-gradient(-45deg, #ce5647 0, #ce5647 1em, transparent 0, transparent 2em, #2c87a4 0, #2c87a4 3em, transparent 0, transparent 4em);
}

#booking .table h3 {
  text-align: center;
  margin-top: 2em;
  margin-bottom: 0em !important;
}

#booking .table p {
  margin-top: 40px;
  font-style: italic;
  font-weight: lighter;
}

#booking .table p.no_margin {
  margin: 0px !important;
}

#booking .table label,
#booking .table textarea,
#booking .table input {
  width: 100%;
  display: block;
  margin: 5px 0;
  padding: 5px;
  border-radius: 3px;
  font-size: 110%;
  border: 0;
}

#booking .table label {
  cursor: pointer;
}

#booking .table .in_one_row {
  position: relative;
  width: 100%;
  height: 2.2em;
  display: block;
}

#booking .table .in_one_row label {
  width: 100%;
  display: block;
  margin: 5px;
  padding: 5px;
  border-radius: 3px;
  font-size: 110%;
  border: 0;
  padding-left: 20px;
}

#booking .table .in_one_row input {
  position: absolute;
  width: auto;
  left: 0;
  top: 7px;
}

#booking .table textarea {
  padding: 10px;
}

#booking button {
  margin: 20px auto 20px auto;
  display: block;
}

@media only screen and (max-width: 620px) {
  #booking .table p {
    margin-top: 0;
  }
}

#msg.bg_error {
  background-color: #ce5647;
}

#msg.bg_success {
  background-color: #1C8125;
}

#msg p {
  margin: 2em .2em;
  color: #e5eaf0;
}

#gdpr p {
  margin-bottom: 1em;
}

#gdpr ul {
  margin-left: 1em;
  margin-bottom: 1em;
}

#gdpr ul li {
  margin-bottom: 0.5em;
}

/* 
  ===========================
  ========= Footer ========== 
  =========================== 
*/
#footer {
  background-color: #24303D;
  color: #c3cbce;
}

#footer h3 {
  color: #2c87a4;
  margin: 0;
  font-weight: 300;
}

#footer ul {
  margin: 0.5em 0 1.5em 0;
  width: 90%;
}

#footer ul li {
  width: 100%;
  display: block;
  height: 24px;
  line-height: 24px;
}

#footer ul.nav li {
  height: 28px;
  line-height: 28px;
  padding: 0 4px;
  border-top: 1px dotted #737B7E;
}

#footer ul.nav li:last-of-type {
  border-bottom: 1px dotted #737B7E;
}

#footer ul.nav li a {
  color: #c3cbce;
  position: relative;
  text-decoration: none;
  display: block;
  cursor: pointer;
  transition: color 0.4s ease-in-out;
}

#footer ul.nav li a::after {
  content: '\f006';
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: normal;
  display: block;
  position: absolute;
  height: 18px;
  line-height: 18px;
  right: 0;
  top: 4px;
  transition: all 0.4s ease-in-out;
  color: #737B7E;
}

#footer ul.nav li a:hover {
  color: #2c87a4;
}

#footer ul.nav li a:hover::after {
  content: '\f005';
  color: #2c87a4;
}

/* 
  ===========================
  ====== Home - deals ======= 
  =========================== 
*/
#deals {
  background-color: #24303D;
  background-image: url("../imgs/logos/skimu_skiareal.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 75%;
  color: #e0e3f1;
}

@media only screen and (max-width: 920px) {
  #deals {
    background-position: center top 190px;
  }
}

@media only screen and (max-width: 620px) {
  #deals {
    background-position: center bottom 20px;
  }
  #deals .section_padding {
    padding-bottom: 7em;
  }
}

/* 
  ===========================
  ======= Footer End ======== 
  =========================== 
*/
#footer_end {
  background-color: #19222c;
  color: #737B7E;
}

#footer_end a {
  color: #737B7E;
  text-decoration: dotted 1px #737B7E;
  cursor: pointer;
}

#footer_end a:hover {
  color: #e5eaf0;
  text-decoration: dotted 1px #e5eaf0;
}
