@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 300;
  src: url('../font/Raleway-Regular.woff') format('woff');
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  src: url('../font/Raleway-SemiBold.woff') format('woff');
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 700;
  src: url('../font/Raleway-Bold.woff') format('woff');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: url('../font/OpenSans-Regular.woff') format('woff');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../font/OpenSans-Bold.woff') format('woff');
}
@font-face {
  font-family: 'Dancing Script';
  font-style: normal;
  font-weight: 300;
  src: url('../font/DancingScript-Regular.woff') format('woff');
}

*{
    margin: 0px;
    padding: 0px;
    border: 0px;
    font-family: inherit;
    color: inherit;
    box-sizing: border-box;
}

html,body{
    width: 100%;
    height: 100%;
    position: relative;
    font-family: 'Open Sans', serif;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    font-size: 20px;
    line-height: 28px;
    color: #777;
    background-color: #0c660c;
}

h1, h2, h3, h4 {
    font-family: 'Raleway', sans-serif;
}

a {
    text-decoration: none;
}

a.link_text {
    text-decoration: underline;
}

a.link_text_green {
    text-decoration: underline;
    color: #0c660c;
}

ul {
    padding-inline-start: 20px;
}

ul li {
    margin-bottom: 5px;
}

#header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #0c660c;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.4);
    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.4);
    z-index: 100;
}

#header_cont {
    position: relative;
    padding: 15px 25px;
    height: 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header_logo_cont {
    display: flex;
    align-items: center;
    cursor: pointer;
}

#header_logo {
    height: 50px;
    margin-right: 15px;
}

#header_logo_cont h3 {
    font-size: 25px;
    font-weight: 300;
    color: #fff;
    font-family: 'Dancing Script', cursive;
}

#header_menu {
    position: relative;
    height: 75px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
}

.header_menu_elem {
    margin: 0 10px;
}

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

.header_menu_elem.header_menu_elem_sel a {
    font-weight: 700;
    text-decoration: underline;
}

#header_mobile_btn_open {
    cursor: pointer;
    display: none;
}

#header_mobile_btn_close {
    cursor: pointer;
    display: none;
}

#page {
    position: relative;
    width: 100%;
    margin-top: 65px;
    background-color: #f0f0f0;
    background-image: url('../img/bee_pattern.png');
    background-repeat: repeat;
    background-position: top left;
    overflow: hidden;
}

#intro_cont {
    position: relative;
    width: 100%;
    height: calc(90vh - 75px);
    overflow: hidden;
}

#intro_cont.intro_small {
    height: 70vh;
}

#intro_cont_bot {
    position: absolute;
    width: 100%;
    height: 25px;
    left: 0;
    bottom: 0;
    background-image: url('../img/bee_pattern_sfocato_top.png');
    background-repeat: repeat-x;
    background-position: bottom left;
}

.intro_elem {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s;
}

.intro_elem.intro_elem_visible {
    opacity: 1;
}

#intro_nav_cont {
    position: absolute;
    width: 100%;
    bottom: 10px;
    display: flex;
    justify-content: center;
}

.intro_nav_elem {
    width: 10px;
    height: 10px;
    margin: 5px;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.8);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.8);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.8);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    cursor: pointer;
}

.intro_nav_elem.intro_nav_elem_sel {
    background-color: #0c660c;
}

#intro_row_sx {
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    cursor: pointer;
}

#intro_row_dx {
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    cursor: pointer;
}

.page_cont {
    position: relative;
    width: 80%;
    max-width: 1500px;
    padding: 75px 25px;
    margin: auto;
    text-align: center;
}

.page_text_cont {
    position: relative;
    width: 800px;
    padding: 20px 50px;
    margin: 0 auto;
}

#footer {
    position: relative;
    width: 100%;
    background-color: #0c660c;
    -webkit-box-shadow: 0px -2px 2px 0px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px -2px 2px 0px rgba(0,0,0,0.4);
    box-shadow: 0px -2px 2px 0px rgba(0,0,0,0.4);
}

#footer_cont {
    position: relative;
    width: 90%;
    max-width: 1500px;
    padding: 65px 25px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.footer_col {
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
}

.footer_col h3 {
    font-size: 16px;
    line-height: 25px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
}

.footer_ico_social {
    margin: 0 5px;
    display: inline-block;
}

.gallerytext_cont {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.gallerytext_gallery {
    position: relative;
    width: 35%;
}

.gallerytext_galleryphoto {
    overflow: hidden;
    cursor: pointer;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.gallerytext_galleryphoto1 {
    position: absolute;
    width: 35%;
    left: 0;
    top: 0;
    z-index: 1;
}

.gallerytext_galleryphoto2 {
    position: relative;
    width: 60%;
    margin: 15% 20% 12%;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(255,255,255,0.5);
    -moz-box-shadow: 0px 0px 10px 0px rgba(255,255,255,0.5);
    box-shadow: 0px 0px 10px 0px rgba(255,255,255,0.5);
    z-index: 2;
}

.gallerytext_galleryphoto3 {
    position: absolute;
    width: 30%;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.gallerytext_galleryphoto img {
    width: 100%;
    display: block;
}

.gallerytext_galleryphoto_hover {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(34,139,39,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 42px;
    line-height: 48px;
    color: #fff;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s;
}

.gallerytext_galleryphoto:hover .gallerytext_galleryphoto_hover {
    opacity: 1;
    
}

.gallerytext_galleryphoto.gallerytext_galleryphoto_mobile_vis .gallerytext_galleryphoto_hover {
    opacity: 1;
    
}

.gallerytext_gallery_tip {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0;
    top: calc(100% + 15px);
    font-size: 14px;
    color: #0c660c;
    font-family: 'Raleway', sans-serif;
}

.gallerytext_text {
    position: relative;
    width: 60%;
    font-size: 18px;
    line-height: 24px;
    text-align: justify;
}

.quote_cont {
    position: relative;
    display: flex;
    justify-content: center;
}

.quote_text {
    position: relative;
    padding: 22px 50px;
    font-size: 46px;
    line-height: 54px;
    text-align: center;
    font-family: 'Dancing Script', cursive;
}

.quote_text_author {
    position: absolute;
    bottom: -25px;
    right: 60px;
    font-size: 25px;
    line-height: 30px;
    font-family: 'Dancing Script', cursive;
}

.quote_img_start {
    position: absolute;
    top: 0;
    left: 0;
}

.quote_img_end {
    position: absolute;
    bottom: 0;
    right: 0;
}

.footer_col .logo_ext {
    height: 80px;
    margin-left: 15px;
}

.title1 {
    font-size: 32px;
    line-height: 38px;
}

.title2 {
    font-size: 26px;
    line-height: 32px;
    color: #aaa;
}

.title3 {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 5px;
}

.bee_line {
    margin: 45px auto;
    display: inherit;
}

.block_image_cont {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.block_image {
    position: relative;
    width: calc(50% - 15px);
    padding-top: 35%;
    background-size: cover;
    background-position: center;
    margin-bottom: 30px;
    cursor: pointer;
}

.block_image_text {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(34,139,39,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 42px;
    line-height: 48px;
    color: #fff;
    text-align: center;
    font-family: 'Dancing Script', cursive;
    text-transform: capitalize;
    opacity: 0;
    transition: opacity 0.5s;
}

.block_image:hover .block_image_text {
    opacity: 1;
}

.block_image.block_image_mobile_vis .block_image_text {
    opacity: 1;
}

.block_contact_cont {
    position: relative;
    width: 800px;
    padding: 65px 50px 20px;
    margin: 30px auto 0;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    overflow: hidden;
    background-image: url('../img/ciuffo_line.png');
    background-repeat: repeat-x;
    background-position: top;
}

#contact_form {
    position: relative;
    padding: 20px 0 0;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.block_booking_cont {
    position: relative;
    width: 800px;
    padding: 20px 50px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    overflow: hidden;
    background-repeat: repeat-x;
    background-position: top;
}

#booking_form {
    position: relative;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.form_field {
    width: 100%;
    margin-bottom: 10px;
}

.form_field.form_field_half {
    width: 49%;
}

.form_field.form_field_third {
    width: 32%;
}

.form_field.form_field_40 {
    width: 39%;
}

.form_field.form_field_20 {
    width: 19%;
}

.form_field_label {
    font-size: 13px;
    line-height: 20px;
    font-family: 'Raleway', sans-serif;
    text-align: left;
    margin-bottom: 3px;
    text-transform: uppercase;
}

.form_field_checkcont {
    font-size: 15px;
    line-height: 18px;
}

.form_field input[type="text"], .form_field input[type="date"], .form_field input[type="number"] {
    width: 100%;
    height: 30px;
    padding: 0 10px;
    background-color: #fff;
    font-family: 'Open Sans', serif;
    color: #777;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    display: block;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(12,102,12,0.5);
    -moz-box-shadow: 0px 0px 5px 0px rgba(12,102,12,0.5);
    box-shadow: 0px 0px 5px 0px rgba(12,102,12,0.5);
}

.form_field input[type="checkbox"] {
    position: relative;
    width: 15px;
    height: 15px;
    vertical-align: middle;
    bottom: 2px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(12,102,12,0.5);
    -moz-box-shadow: 0px 0px 5px 0px rgba(12,102,12,0.5);
    box-shadow: 0px 0px 5px 0px rgba(12,102,12,0.5);
}

.form_field textarea {
    width: 100%;
    height: 75px;
    padding: 5px 10px;
    background-color: #fff;
    font-family: 'Open Sans', serif;
    color: #777;
    resize: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(12,102,12,0.5);
    -moz-box-shadow: 0px 0px 5px 0px rgba(12,102,12,0.5);
    box-shadow: 0px 0px 5px 0px rgba(12,102,12,0.5);
}

#form_button {
    padding: 8px 45px;
    margin: 10px auto 0;
    border: 2px solid #0c660c;
    font-size: 20px;
    font-family: 'Raleway', sans-serif;
    color: #0c660c;
    text-transform: uppercase;
    font-weight: 600;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    cursor: pointer;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(12,102,12,0.5);
    -moz-box-shadow: 0px 0px 5px 0px rgba(12,102,12,0.5);
    box-shadow: 0px 0px 5px 0px rgba(12,102,12,0.5);
}

#gallery_cont {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: -100%;
    background-color: rgba(12,102,12,0.8);
    z-index: 900;
    opacity: 0;
    transition: opacity 1s;
}

#gallery_cont.gallery_cont_shown {
    top: 0;
    opacity: 1;
}

#gallery_photos {
    position: absolute;
    width: 90%;
    height: 90%;
    left: 5%;
    top: 5%;
    background-image: url('../img/waiticon_2.gif');
    background-position: center;
    background-repeat: no-repeat;
}

.gallery_photo_elem {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s;
}

.gallery_photo_elem.gallery_photo_elem_visible {
    opacity: 1;
}

.gallery_photo_author {
    position: absolute;
    right: 0;
    left: 0;
    bottom: -25px;
    color: #fff;
    font-size: 13px;
    text-align: center;
}

#gallery_photo_nav_cont {
    position: absolute;
    width: 100%;
    bottom: 10px;
    display: flex;
    justify-content: center;
}

.gallery_photo_nav_elem {
    width: 10px;
    height: 10px;
    margin: 5px;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.8);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.8);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.8);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    cursor: pointer;
}

.gallery_photo_nav_elem.gallery_photo_nav_elem_sel {
    background-color: #0c660c;
}

#gallery_photo_row_sx {
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    cursor: pointer;
}

#gallery_photo_row_dx {
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    cursor: pointer;
}

#gallery_photo_close {
    position: absolute;
    right: 10px;
    top: 10px;
    margin: auto;
    cursor: pointer;
}

.text_cont {
    position: relative;
    width: 95%;
    min-height: 380px;
    display: flex;
    justify-content: space-between;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    border: 1px solid #0c660c;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(12,102,12,0.5);
    -moz-box-shadow: 0px 0px 10px 0px rgba(12,102,12,0.5);
    box-shadow: 0px 0px 10px 0px rgba(12,102,12,0.5);
}

.text_sx_cont {
}

.text_dx_cont {
    margin-left: 5%;
    flex-direction: row-reverse;
}

.text_cont_text {
    width: 60%;
    padding: 50px;
    background-color: #f8f8f8;
    text-align: left;
    line-height: 30px;
}

.text_sx_cont .text_cont_text {
    -webkit-border-top-left-radius: 25px;
    -webkit-border-bottom-left-radius: 25px;
    -moz-border-radius-topleft: 25px;
    -moz-border-radius-bottomleft: 25px;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}

.text_dx_cont .text_cont_text {
    -webkit-border-top-right-radius: 25px;
    -webkit-border-bottom-right-radius: 25px;
    -moz-border-radius-topright: 25px;
    -moz-border-radius-bottomright: 25px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}

.text_cont_img {
    position: relative;
    width: 40%;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    cursor: pointer;
}

.text_sx_cont .text_cont_img {
    -webkit-border-top-right-radius: 25px;
    -webkit-border-bottom-right-radius: 25px;
    -moz-border-radius-topright: 25px;
    -moz-border-radius-bottomright: 25px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    -webkit-box-shadow: inset 10px 0px 10px 0px rgba(248,248,248,1);
    -moz-box-shadow: inset 10px 0px 10px 0px rgba(248,248,248,1);
    box-shadow: inset 10px 0px 10px 0px rgba(248,248,248,1);
}

.text_dx_cont .text_cont_img {
    -webkit-border-top-left-radius: 25px;
    -webkit-border-bottom-left-radius: 25px;
    -moz-border-radius-topleft: 25px;
    -moz-border-radius-bottomleft: 25px;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    -webkit-box-shadow: inset -10px 0px 10px 0px rgba(248,248,248,1);
    -moz-box-shadow: inset -10px 0px 10px 0px rgba(248,248,248,1);
    box-shadow: inset -10px 0px 10px 0px rgba(248,248,248,1);
}

.text_cont_img_hover {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 42px;
    line-height: 48px;
    color: #fff;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s;
}

.text_sx_cont .text_cont_img_hover {
    background-image: linear-gradient(to left, rgba(34,139,39,0.7) 95%, #f8f8f8 100%);
}

.text_dx_cont .text_cont_img_hover {
    background-image: linear-gradient(to right, rgba(34,139,39,0.7) 95%, #f8f8f8 100%);
}

.text_cont_img:hover .text_cont_img_hover {
    opacity: 1;
}

.text_cont_img.text_cont_img_mobile_vis .text_cont_img_hover {
    opacity: 1;
}

#header_menu_mobile {
    position: fixed;
    width: 100%;
    height: calc(100% - 65px);
    top: 65px;
    left: 0;
    background-color: rgba(34,139,39,0.9);
    flex-direction: column;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    z-index: 999;
    display: none;
}

#header_menu_mobile.header_menu_mobile_vis {
    display: flex;
}

.header_menu_mobile_elem {
    width: 100%;
    padding: 20px 25px;
    border-bottom: 1px solid #fff;
}

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

.header_menu_mobile_elem.header_menu_mobile_elem_sel a {
    font-weight: 700;
    text-decoration: underline;
}

#header_btn_lang {
    margin-left: 20px;
    cursor: pointer;
}

#download_productlist_cont {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#download_productlist_date {
    margin-top: 7px;
    font-size: 16px;
}

.btn_generic {
    padding: 15px 45px;
    margin: auto;
    background-color: rgba(34,139,39,1);
    font-size: 28px;
    line-height: 32px;
    text-align: center;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    cursor: pointer;
}

.img_in_text_cont {
    display: flex;
    align-items: flex-start;
}

.img_in_text {
    float: left;
    margin: 0 20px 10px 0;
}

#alert_cont {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(12,102,12,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 901;
}

#alert_cont.alert_cont_shown {
    display: flex;
}

#alert_box {
    width: 400px;
    padding: 20px 35px;
    background-color: #fff;
    border: 1px solid rgba(12,102,12,1);
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

#alert_box_title {
    font-family: 'Raleway', sans-serif;
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 10px;
}

#alert_box_button {
    padding: 8px 45px;
    margin: 15px auto 0;
    background-color: #0c660c;
    font-size: 20px;
    font-family: 'Raleway', sans-serif;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    cursor: pointer;
}

#privacy_cont {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(12,102,12,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 901;
}

#privacy_cont.privacy_cont_shown {
    display: flex;
}

#privacy_box {
    width: 600px;
    padding: 20px 35px;
    background-color: #fff;
    border: 1px solid rgba(12,102,12,1);
    text-align: center;
    font-size: 13px;
    line-height: 16px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

#privacy_box_title {
    font-family: 'Raleway', sans-serif;
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 10px;
}

#privacy_box_text {
    position: relative;
    height: 300px;
    overflow-y: scroll;
    text-align: left;
}

#privacy_box_button {
    padding: 8px 45px;
    margin: 15px auto 0;
    background-color: #0c660c;
    font-size: 20px;
    font-family: 'Raleway', sans-serif;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    cursor: pointer;
}

#waiticon {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(255,255,255,0.6);
    background-image: url('../img/waiticon.gif');
    background-position: center;
    background-repeat: no-repeat;
    display: none;
    z-index: 900;
}

#intro_waiticon {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(12,102,12,1);
    background-image: url('../img/waiticon_2.gif');
    background-position: center;
    background-repeat: no-repeat;
    z-index: 900;
    opacity: 1;
}

#intro_waiticon.hidden {
    animation: hide_intro_waiticon 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes hide_intro_waiticon {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        z-index: -1;
    }
}

@media only screen and (max-width: 1220px) {
    #header_logo_cont h3 {
        font-size: 23px;
    }
    
    #header_menu {
        font-size: 13px;
    }
    
    .header_menu_elem {
        margin: 0 7px;
    }
}

@media only screen and (min-width: 1025px) {
    #header_mobile_btn_open {
        display: none!important;
    }
    
    #header_mobile_btn_close {
        display: none!important;
    }
    
    #header_menu_mobile {
        display: none!important;
    }
}

@media only screen and (max-width: 1024px) {
    #header_logo_cont h3 {
        font-size: 20px;
    }
    
    #header_menu {
        display: none;
    }
    
    #header_logo {
        height: 40px;
    }

    #header_mobile_btn_open {
        display: block;
    }
    
    #header_cont {
        padding: 15px;
    }
    
    .page_cont {
        width: 100%;
        padding: 45px 25px;
        font-size: 15px;
        line-height: 20px;
    }
    
    #intro_cont {
        height: 50vh;
    }
    
    #intro_cont.intro_small {
        height: 35vh;
    }
    
    .intro_nav_elem {
        width: 20px;
        height: 20px;
        margin: 5px 10px;
        opacity: 0.8;
    }
    
    .quote_text {
        font-size: 26px;
        line-height: 34px;
        padding: 22px 30px;
    }

    .quote_text_author {
        bottom: -15px;
        right: 0;
        left: 0;
        font-size: 18px;
        line-height: 22px;
        padding: 0 30px;
    }
    
    .text_cont_img_hover {
        font-size: 85px;
        line-height: 85px;
    }
    
    .quote_img_start, .quote_img_end {
        width: 30px;
    }
    
    .block_contact_cont {
        width: 100%;
    }
    
    .block_booking_cont {
        width: 100%;
        padding: 20px 5px;
    }
    
    .form_field.form_field_half {
        width: 48%;
    }
    
    .form_field.form_field_40 {
        width: 37%;
    }
    
    .form_field.form_field_20 {
        width: 18%;
    }
    
    .form_field_label {
        font-size: 8px;
        line-height: 14px;
    }
    
    .page_text_cont {
        width: 100%;
        padding: 20px 5px;
    }
    
    .block_image {
        width: 100%;
        padding-top: 55%;
    }
    
    #footer_cont {
        flex-direction: column;
    }
    
    .footer_col {
        width: 100%;
        text-align: center;
        margin-bottom: 35px;
    }
    
    .gallerytext_cont {
        flex-direction: column-reverse;
    }
    
    .gallerytext_text {
        width: 100%;
        font-size: 15px;
        line-height: 20px;
    }
    
    .gallerytext_gallery {
        width: 100%;
        margin-top: 50px;
    }
    
    .gallerytext_galleryphoto_hover {
        font-size: 85px;
        line-height: 85px;
    }
    
    .text_cont {
        width: 100%;
        flex-direction: column-reverse;
    }
    
    .text_dx_cont {
        margin-left: 0;
    }
    
    .text_cont_text {
        width: 100%;
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        border-radius: 0px;
        -webkit-border-bottom-right-radius: 25px;
        -webkit-border-bottom-left-radius: 25px;
        -moz-border-radius-bottomright: 25px;
        -moz-border-radius-bottomleft: 25px;
        border-bottom-right-radius: 25px;
        border-bottom-left-radius: 25px;
    }
    
    .text_sx_cont .text_cont_img, .text_dx_cont .text_cont_img {
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        border-radius: 0px;
        -webkit-border-top-left-radius: 25px;
        -webkit-border-top-right-radius: 25px;
        -moz-border-radius-topleft: 25px;
        -moz-border-radius-topright: 25px;
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;
        -webkit-box-shadow: inset 0px -20px 20px 0px rgb(248 248 248);
        -moz-box-shadow: inset 0px -20px 20px 0px rgba(248,248,248,1);
        box-shadow: inset 0px -20px 20px 0px rgb(248 248 248);
        width: 100%;
        padding-top: 75%;
    }

    .text_sx_cont .text_cont_img_hover, .text_dx_cont .text_cont_img_hover {
        background-image: linear-gradient(to bottom, rgba(34,139,39,0.7) 95%, #f8f8f8 100%);
    }
    
    .title1 {
        font-size: 26px;
        line-height: 30px;
    }
    
    .title2 {
        font-size: 18px;
        line-height: 24px;
    }
    
    .btn_generic {
        padding: 15px 25px;
        font-size: 18px;
        line-height: 24px;
    }
    
    #download_productlist_date {
        font-size: 12px;
    }
    
    .text_cont_text {
        padding: 30px 20px;
        line-height: 20px;
    }
    
    #gallery_photos {
        width: 96%;
        height: calc(100% - 90px);
        left: 2%;
        top: 45px;
    }
    
    #gallery_photo_close {
        width: 30px;
    }
    
    #gallery_photo_row_sx, #gallery_photo_row_dx {
        width: 30px;
        top: auto;
        bottom: 5px;
    }
    
    #gallery_photo_nav_cont {
        bottom: -30px;
        display: none;
    }

    .gallery_photo_author {
        bottom: -30px;
        font-size: 12px;
    }

    #alert_box {
        width: 90%;
        padding: 20px 25px;
        font-size: 14px;
        line-height: 18px;
    }

    #alert_box_title {
        font-size: 22px;
        line-height: 25px;
        margin-bottom: 8px;
    }

    #alert_box_button {
        font-size: 18px;
    }

    #privacy_cont.privacy_cont_shown {
        display: flex;
    }

    #privacy_box {
        width: 90%;
        padding: 20px 25px;
        font-size: 12px;
        line-height: 15px;
    }

    #privacy_box_title {
        font-size: 22px;
        line-height: 25px;
        margin-bottom: 8px;
    }
}

@media only screen and (max-width: 780px) {
    #header_logo_cont h3 {
        font-size: 18px;
    }
}