@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap');

@font-face {
    font-family: "BebasNeue-Bold";
    src: url("../fonts/BebasNeue-Bold.otf");
}
@font-face {
    font-family: "BebasNeue-Book";
    src: url("../fonts/BebasNeue-Book.otf");
}
@font-face {
    font-family: "BebasNeue-Light";
    src: url("../fonts/BebasNeue-Light.otf");
}
@font-face {
    font-family: "BebasNeue-Regular";
    src: url("../fonts/BebasNeue-Regular.otf");
}


/* CSS reset*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font-family: 'Roboto', sans-serif;
	vertical-align: baseline;
	text-decoration:none;
	outline: none;
}
textarea:focus, input:focus {
	outline: none;
}

body.fx {
    overflow: hidden;
}

/* Text */
h1 {
    font-family: "BebasNeue-Bold";
    font-size: 98px;
    line-height: 112px;
	color: #222;
    text-transform: uppercase;
}

h2 {
    font-family: "BebasNeue-Bold";
    font-size: 84px;
    line-height: 84px;
	color: #222;
    text-transform: uppercase;
}

h3 {
    font-family: "BebasNeue-Regular";
    font-size: 26px;
	line-height: 30px;
	color: #222;
    text-transform: uppercase;
}

h4 {
    font-size: 15.5px;
	line-height: 24px;
	font-weight: 700;
	color: #222;
    text-transform: uppercase;
}

p {
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
    color: #222;
}

b {
    font-weight: 500;
}

a {
    color: #222;
}

i {
    font-family: inherit;
    text-decoration: inherit;
    font-style: normal;
}

body {
    padding-top: 68px;
    position: relative;
}

.material-icons {
    vertical-align: middle;
}

.bind-txt {
    opacity: 0;
}

/* Elements */
.container {
    width: 100%;
    max-width: 1024px;
    display: block;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 84px 0;
    overflow: hidden;
}

.btn {
    display: inline-block;
    padding: 16px 24px;
    box-sizing: border-box;
    font-weight: 700;
    color: #222;
    transition: all 0.3s ease-in;
    text-transform: uppercase;
    background-color: #FBA343;
    border: 0;
    -webkit-appearance: none;
}

.btn:hover {
    background-color: #222;
    color: #FBA343;
}

input, select, textarea {
    display: inline-block;
    padding: 16px 20px;
    box-sizing: border-box;
    color: #222;
    transition: all 0.3s ease-in;
    background: #e6e6e6;
    border: 1px solid #707070;
}

/* LAYOUTS */
.grid-0 {
    display: grid;
    grid-gap: 0;
}

.grid-0 > div {
    grid-row: 1;
}

.grid-1 {
    display: grid;
    grid-template-columns: auto;
    grid-gap: 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 16px;
}

.grid-3 {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 16px;
}

.grid-4 {
    display: grid;
    grid-template-columns: auto auto auto auto;
    grid-gap: 16px;
}

.grid-5 {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    grid-gap: 16px;
}

.grid-6 {
    display: grid;
    grid-template-columns: auto auto auto auto auto auto;
    grid-gap: 16px;
}

.hide, .hidden {
    display: none !important;
}

.invisible {
    opacity: 0;
}

body.scroll_fix {
    overflow: hidden;
}


/*VISUAL*/
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background-color: #FFF;
    padding: 44px 4%;
    text-align: right;
    z-index: 6;
    transition: all 0.6s ease-in;
}

.header.small .logo{
    width: 200px;
}

.header.small {
    padding-top: 24px;
    padding-bottom: 16px;
}

.header .logo {
    width: 240px;
    float: left;
    transition: all 0.6s ease-in;
    cursor: pointer;
}

.header .mobile_menu_icon {
    display: none;
    cursor: pointer;
    position: absolute;
    top: 24px;
    right: 24px;
}

.menu_item {
    font-family: "BebasNeue-Regular";
    font-size: 20px;
    text-transform: uppercase;
    margin-left: 24px;
    cursor: pointer;
}

.menu_item.selected {
    font-family: "BebasNeue-Bold";
    padding-bottom: 2px;
    border-bottom:  2px solid #FBA343;
}

.menu_item.contact_menu {
    margin-right: 36px;
}

.lang_item {
    font-family: "BebasNeue-Regular";
    font-size: 20px;
    text-transform: uppercase;
    margin-left: 16px;
    cursor: pointer;
}

.header .contact {
    margin-right: 24px;
}

.lang_item.selected {
    font-family: "BebasNeue-Regular";
    padding: 4px 8px;
    color: #FBA343;
    background-color: #222;
}

.head_crea .left_text h1 span {
    display: inline-block;
    margin-bottom: 8px;
    padding: 6px 6px 0px 4px;
    color: #FBA343;
    background-color: #222;
}

.head_crea.grid-3 {
    grid-template-columns: auto auto auto;
    padding-bottom: 0;
}

.head_crea .right_text {
    text-align: right;
}

.head_crea .right_text p {
    margin-top: 64px;
    line-height: 24px;
}

.head_crea .right_text b {
    font-family: "BebasNeue-Regular";
    font-size: 44px;
    line-height: 60px;
    text-align: right;
    max-width: 360px;
    display: inline-block;
}

.head_crea h1 {
    max-width: 350px;
}

.head_crea h1 span {
    font-family: "BebasNeue-Bold";
}

.crea {
    text-align: center;
}

.crea img {
    width: 100%;
    max-width: 280px;
}

.about_us {
    background-image: url("../elements/about_bh.jpg");
    background-size: cover;
    color: #FFF;
}

.about_us .container {
    padding-top: 136px;
    padding-bottom: 8px;
}

.about_us .container .bear_outline {
    position: relative;
}

.about_us h2 {
    color: #FFF;
}

.about_us p {
    margin-top: 24px;
    color: #FFF;
}

.about_us h2 span {
    color: #FBA343;
    font-family: "BebasNeue-Bold";
}

.grid-2.about_text {
    padding-bottom: 64px;
}

.head_ribbon {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 106px;
}

.head_ribbon img {
    width: 100%;
}

.head_ribbon span {
    font-family: "BebasNeue-Regular";
    display: block;
    position: absolute;
    top: 50%;
    left: 24px;
    right: 24px;
    text-align: center;
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    font-size: 40px;
}

.head_ribbon span b {
    font-family: "BebasNeue-Bold";
}

.tours {
    background-color: #FBA343;
    text-align: center;
}

.tours .tour_boxes {
    padding-top: 64px;
}

.flags_text {
    display: block;
    font-family: "BebasNeue-Regular";
    font-size: 16px;
    line-height: 30px;
    color: #222;
    text-transform: uppercase;
    margin-top: 8px;
}

.flags_img {
    max-width: 160px;
    display: block;
    margin: 0 auto;
}

.tours .tour_box {
    position: relative;
    padding: 24px;
    border: 2px solid #222;
    padding-bottom: 124px;
}

.tours .title_box {
    position: relative;
}

.tours h3 span {
    position: relative;
    font-family: "BebasNeue-Regular";
    font-size: 14px;
    line-height: 16px;
    display: block;
    letter-spacing: 0.5px;
}

.tours .tour_box .title_box {
    min-height: 86px;
}

.tours .tour_box .title_box h3 {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 24px; right: 24px;
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

.tours .tour_box .price {
    position: absolute;
    left: 0; right: 0;
    bottom: 36px;
    font-family: "BebasNeue-Regular";
    font-size: 28px;
    color: #222;
}

.tours .info_box {
    position: relative;
    padding-left: 36px;
    box-sizing: border-box;
    text-align: left;
    margin-top: 24px;
}

.tours .info_box p {
    font-size: 14px;
    line-height: 18px;
}

.tours .tour_icon {
    position: absolute;
    top: 0px; left: 0;
    display: inline-block;
    font-size: 18px;
    color: #FBA343;
    background-color: #222;
    border-radius: 24px;
    padding: 4px;
}

.tours .tour_icon.custom {
    height: 25px;
    box-sizing: border-box;
}

.tours .tour_box .sepa {
    display: inline-block;
    width: 60px;
    height: 2px;
    background: #222;
}


.tours .tours_sepa {
    display: inline-block;
    width: 60px;
    height: 6px;
    background: #222;
}

.faq_box {
    background-color: #C6C6C6;
}

.faq_box .grid-2 {
    grid-gap: 36px;
}

.faq_box b {
    font-weight: 700;
    font-size: 20px;
    margin-top: 36px;
    display: block;
}

.faq_box p {
    line-height: 22px;
    margin-top: 16px;
}

.contact_box {
    position: relative;
    background-color: #222;
    color: #FFF;
    overflow: hidden;
}

.contact_box .container {
    overflow: visible;
}

.contact_box a {
    color: #FFF;
}

.contact_box > p {
    background-color: #222;
    color: #FFF;
}

.contact_box h2 {
    margin-top: 36px;
    color: #FFF;
}

.contact_box h3 {
    max-width: 640px;
    margin-top: 16px;
    margin-bottom: 44px;
    color: #FFF;
}

.contact_box .info_box {
    margin-bottom: 24px;
}

.contact_box .info_box i {
    font-size: 28px;
    padding: 16px;
    color: #222;
    background-color: #F0932D;
    float: left;
    margin-right: 16px;
}

.contact_box .grid-2 {
    grid-template-columns: 70% 30%;
    grid-gap: 36px;
}

.contact_box .info_box b, .contact_box .social_box b {
    display: block;
    font-family: "BebasNeue-Regular";
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 4px;
}

.contact_box .info_box b, .contact_box .social_box span {
    color: #FFF;
}

.contact_box .social_box {
    margin-top: 36px;
}

.contact_box .social_box img {
    max-width: 48px;
    margin-right: 16px;
}

.contact_box .particle_box {
    position: absolute;
    width: 2060px;
    top: 0px;
    left: 0px;
    overflow: hidden;
    height: 240px;
    transform: scale(0.5);
    transform-origin: top left;
}

.contact_box .particle_box2 {
    position: absolute;
    width: 2060px;
    top: 0px;
    left: 980px;
    overflow: hidden;
    height: 240px;
    transform: scale(0.5);
    transform-origin: top left;
}

.contact_box .particle_box3 {
    position: absolute;
    width: 2060px;
    top: 0px;
    left: 1960px;
    overflow: hidden;
    height: 240px;
    transform: scale(0.5);
    transform-origin: top left;
}

.contact_box .particle {
    position: absolute;
    top: -16px;
    left: 170px;
    height: 213px;
    animation: shake 16s;
    animation-iteration-count: infinite;
}

.contact_box .particle.particle2 {
    position: absolute;
    top: -71px;
    left: 0;
    height: 184px;
    animation-delay: 0.5s;
}

.contact_box .particle.particle3 {
    position: absolute;
    top: -19px;
    left: 150px;
    height: 195px;
    animation-delay: 0.8s;
}

.contact_box .particle.particle4 {
    position: absolute;
    top: -75px;
    left: 40px;
    height: 220px;
    animation-delay: 0.4s;
}

.gallery_box h2 {
	color: #FFF;
    max-width: 640px;
    position: absolute;
    top: 50%;
    left: 0;
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    z-index: 2;
    transition: all 2s ease-in;
}

.gallery_box h2.off {
	opacity: 0;
    pointer-events: none;
}

.gallery_box h2 span {
    font-family: "BebasNeue-Bold";
	color: #FBA343;
}

.gallery_box {
    position: relative;
    background-color: #222;
    overflow: hidden;
}

.gallery_box .container {
    position: relative;
    height: 840px;
    overflow: visible;
}

.img_gallery {
    position: absolute;
    left: 280px;
    top: calc(50% - 254px);
    display: inline-block;
    white-space: nowrap;
    z-index: 1;
    transition: all 2s;
}


.gallery_box .navigator_left {
    position: absolute;
    background-color: #FBA343;
    color: #222;
    z-index: 2;
    left: 44px;
    top: 50%;
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    padding: 12px;
    border-radius: 64px;
    font-size: 32px;
    cursor: pointer;
}

.gallery_box .navigator_right {
    position: absolute;
    background-color: #FBA343;
    color: #222;
    z-index: 2;
    top: 50%;
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    right: 44px;
    padding: 12px;
    border-radius: 64px;
    font-size: 36px;
    cursor: pointer;
}

.img_view {
    position: fixed;
    left: 0; right: 0; top: 0; bottom: 0;
    background-color: rgba(34,34,34,0.88);
    z-index: 88;
    transition: all 0.6s ease-in;
}

.img_view .navigator_close {
    position: absolute;
    top: 44px;
    right: 44px;
    color: #FBA343;
    z-index: 9;
    padding: 12px;
    border-radius: 64px;
    font-size: 36px;
    cursor: pointer;
}

.img_view .navigator_close:hover {
    color: #FFB361;
}

.img_view img {
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 6;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: auto;
    max-width: 80vw;
    max-height: 80vh;
}

.gallery_box .navigator_left:hover,
.gallery_box .navigator_right:hover,
.gallery_box .navigator_close:hover {
    background-color: #FBAA51;
}

.img_gallery .double_slot {
    max-width: 460px;
    display: inline-block;
    white-space: normal;
}

.img_gallery .double_slot img {
    display: inline-block;
    object-fit: cover;
    width: 100%;
    max-width: 460px;
    height: 250px;
    vertical-align: bottom;
}

.img_gallery .double_slot img:nth-of-type(1) {
    margin-bottom: 8px;
}


.img_gallery .simple_slot {
    max-width: 460px;
    display: inline-block;
    white-space: normal;
    padding: 0px 4px;
}

.img_gallery .simple_slot img {
    display: inline-block;
    object-fit: cover;
    width: 100%;
    max-width: 460px;
    height: 507px;
    margin-right: 6px;
    vertical-align: bottom;
}

.booking_box input[type="text"],
.booking_box input[type="email"],
.booking_box select,
.booking_box textarea {
    width: 100%;
    margin-bottom: 16px;
}

.booking_box .grid-2,
.booking_box .custom_textarea,
.booking_box .grid-0 {
    max-width: 760px;
}

.booking_box .grid-2 > div:nth-of-type(4) label {
    padding-top: 0;
}

.booking_box h3 {
    margin-bottom: 36px;
}

.booking_box label {
    padding-top: 16px;
    display: inline-block;
    height: 44px;
    vertical-align: bottom;
    box-sizing: border-box;
}

.booking_box .send_box {
    text-align: right;
}

.booking_box .send_box input {
    display: block;
    width: 100%;
    
}

.booking_box .accept_box label {
    height: auto;
    padding: 0;
    vertical-align: text-top;
    cursor: pointer;
    text-decoration: underline;
}

.booking_box .accept_box {
    max-width: 460px;
}

.booking_box .accept_box p {
    /* font-family: "BebasNeue-Light"; */
    font-size: 14px;
    max-width: 450px;
    text-transform: uppercase;
    margin-top: 8px;
}

.booking_box .accept_box checkbox {
    transform: scale(1.4);
    margin-right: 16px;
    padding: 0;
}

.booking_box select {
    height: 50px;
}

/* Bottom bar */
.bottom_bar, .cookie_bar {
    position: fixed;
    max-width: 640px;
    width: 100%;
    left: calc(50% - 320px);
    bottom: -260px;
    padding: 24px;
    box-sizing: border-box;
    background-color: #222;
    z-index: 99;
    color: #FFF;
    opacity: 0;
    transition: all 0.6s ease;
    box-shadow: 0px 16px 38px 0px rgba(0,0,0,0.64);
}

.bottom_bar.active, .cookie_bar.active {
    opacity: 1;
    bottom: 6%;
}

.bottom_bar .content, .cookie_bar .content {
    display: inline-block;
}

.bottom_bar i.icon {
    margin-top: -2px;
    margin-right: 8px;
}

.bottom_bar i.close {
    position: absolute;
    top: calc(50% - 18px);
    right: 16px;
    font-size: 24px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-radius: 24px;
    transition: all 0.2s ease-in;
    cursor: pointer;
    padding: 6px;
}

.bottom_bar i.close:hover {
    background-color: #FFF;
    color: #351929;
}

/* Bubble animation */
.bubbles_wrap {
    width: 55%;
    height: 280px;
    left: 23%;
    top: 38%;
    position: absolute;
    display: flex;
    align-content: center;
    justify-content: center;
    overflow: hidden;
}

.bubbles_wrap2 {
    width: 520px;
    height: 100%;
    left: 0;
    bottom: 0;
    position: absolute;
    display: flex;
    align-content: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}


.bubbles-container {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 15rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0.75;
  overflow: visible;
}

.bubbles {
  width: 100%;
  height: auto;
}

.bubbles circle {
  stroke: #222;
  fill: none;
}
.bubbles > g > g:nth-of-type(3n) circle {
  stroke: #222;
}
.bubbles > g > g:nth-of-type(4n) circle {
  stroke: #222;
}


.bubbles_wrap2 .bubbles circle {
  stroke: #FBA343;
  fill: none;
}
.bubbles_wrap2 .bubbles > g > g:nth-of-type(3n) circle {
  stroke: #FBA343;
}
.bubbles_wrap2 .bubbles > g > g:nth-of-type(4n) circle {
  stroke: #FBA343;
}




.bubbles-large {
  overflow: visible;
}
.bubbles-large > g {
  -webkit-transform: translateY(2048px);
          transform: translateY(2048px);
  opacity: 0;
  will-change: transform, opacity;
}
.bubbles-large g:nth-of-type(1) {
  -webkit-animation: up 6.5s infinite;
          animation: up 6.5s infinite;
}
.bubbles-large g:nth-of-type(1) g {
  -webkit-transform: translateX(350px);
          transform: translateX(350px);
}
.bubbles-large g:nth-of-type(1) circle {
  -webkit-animation: wobble 3s infinite ease-in-out;
          animation: wobble 3s infinite ease-in-out;
}
.bubbles-large g:nth-of-type(2) {
  -webkit-animation: up 5.25s 250ms infinite;
          animation: up 5.25s 250ms infinite;
}
.bubbles-large g:nth-of-type(2) g {
  -webkit-transform: translateX(450px);
          transform: translateX(450px);
}
.bubbles-large g:nth-of-type(2) circle {
  -webkit-animation: wobble 3s infinite ease-in-out;
          animation: wobble 3s infinite ease-in-out;
}
.bubbles-large g:nth-of-type(3) {
  -webkit-animation: up 6s 750ms infinite;
          animation: up 6s 750ms infinite;
}
.bubbles-large g:nth-of-type(3) g {
  -webkit-transform: translateX(700px);
          transform: translateX(700px);
}
.bubbles-large g:nth-of-type(3) circle {
  -webkit-animation: wobble 3s infinite ease-in-out;
          animation: wobble 3s infinite ease-in-out;
}
.bubbles-large g:nth-of-type(4) {
  -webkit-animation: up 5.5s 1.5s infinite;
          animation: up 5.5s 1.5s infinite;
}
.bubbles-large g:nth-of-type(4) g {
  -webkit-transform: translateX(500px);
          transform: translateX(500px);
}
.bubbles-large g:nth-of-type(4) circle {
  -webkit-animation: wobble 3s infinite ease-in-out;
          animation: wobble 3s infinite ease-in-out;
}
.bubbles-large g:nth-of-type(5) {
  -webkit-animation: up 6.5s 4s infinite;
          animation: up 6.5s 4s infinite;
}
.bubbles-large g:nth-of-type(5) g {
  -webkit-transform: translateX(675px);
          transform: translateX(675px);
}
.bubbles-large g:nth-of-type(5) circle {
  -webkit-animation: wobble 3s infinite ease-in-out;
          animation: wobble 3s infinite ease-in-out;
}

.bubbles-small {
  overflow: visible;
}
.bubbles-small > g {
  -webkit-transform: translateY(2048px);
          transform: translateY(2048px);
  opacity: 0;
  will-change: transform, opacity;
}
.bubbles-small g circle {
  -webkit-transform: scale(0);
          transform: scale(0);
}
.bubbles-small g:nth-of-type(1) {
  -webkit-animation: up 5.25s infinite;
          animation: up 5.25s infinite;
}
.bubbles-small g:nth-of-type(1) g {
  -webkit-transform: translateX(350px);
          transform: translateX(350px);
}
.bubbles-small g:nth-of-type(1) circle {
  -webkit-animation: wobble 3s infinite ease-in-out;
          animation: wobble 3s infinite ease-in-out;
}
.bubbles-small g:nth-of-type(2) {
  -webkit-animation: up 5.75s infinite;
          animation: up 5.75s infinite;
}
.bubbles-small g:nth-of-type(2) g {
  -webkit-transform: translateX(750px);
          transform: translateX(750px);
}
.bubbles-small g:nth-of-type(2) circle {
  -webkit-animation: wobble 3s infinite ease-in-out;
          animation: wobble 3s infinite ease-in-out;
}
.bubbles-small g:nth-of-type(3) {
  -webkit-animation: up 5.25s 250ms infinite;
          animation: up 5.25s 250ms infinite;
}
.bubbles-small g:nth-of-type(3) g {
  -webkit-transform: translateX(350px);
          transform: translateX(350px);
}
.bubbles-small g:nth-of-type(3) circle {
  -webkit-animation: wobble 3s 250ms infinite ease-in-out;
          animation: wobble 3s 250ms infinite ease-in-out;
}
.bubbles-small g:nth-of-type(4) {
  -webkit-animation: up 5.75s 325ms infinite;
          animation: up 5.75s 325ms infinite;
}
.bubbles-small g:nth-of-type(4) g {
  -webkit-transform: translateX(180px);
          transform: translateX(180px);
}
.bubbles-small g:nth-of-type(4) circle {
  -webkit-animation: wobble 3s 325ms infinite ease-in-out;
          animation: wobble 3s 325ms infinite ease-in-out;
}
.bubbles-small g:nth-of-type(5) {
  -webkit-animation: up 6s 125ms infinite;
          animation: up 6s 125ms infinite;
}
.bubbles-small g:nth-of-type(5) g {
  -webkit-transform: translateX(350px);
          transform: translateX(350px);
}
.bubbles-small g:nth-of-type(5) circle {
  -webkit-animation: wobble 3s 250ms infinite ease-in-out;
          animation: wobble 3s 250ms infinite ease-in-out;
}
.bubbles-small g:nth-of-type(6) {
  -webkit-animation: up 5.13s 250ms infinite;
          animation: up 5.13s 250ms infinite;
}
.bubbles-small g:nth-of-type(6) g {
  -webkit-transform: translateX(650px);
          transform: translateX(650px);
}
.bubbles-small g:nth-of-type(6) circle {
  -webkit-animation: wobble 3s 125ms infinite ease-in-out;
          animation: wobble 3s 125ms infinite ease-in-out;
}
.bubbles-small g:nth-of-type(7) {
  -webkit-animation: up 6.25s 350ms infinite;
          animation: up 6.25s 350ms infinite;
}
.bubbles-small g:nth-of-type(7) g {
  -webkit-transform: translateX(480px);
          transform: translateX(480px);
}about
.bubbles-small g:nth-of-type(7) circle {
  -webkit-animation: wobble 3s 325ms infinite ease-in-out;
          animation: wobble 3s 325ms infinite ease-in-out;
}
.bubbles-small g:nth-of-type(8) {
  -webkit-animation: up 7s 200ms infinite;
          animation: up 7s 200ms infinite;
}
.bubbles-small g:nth-of-type(8) g {
  -webkit-transform: translateX(330px);
          transform: translateX(330px);
}
.bubbles-small g:nth-of-type(8) circle {
  -webkit-animation: wobble 3s 325ms infinite ease-in-out;
          animation: wobble 3s 325ms infinite ease-in-out;
}
.bubbles-small g:nth-of-type(9) {
  -webkit-animation: up 6.25s 233ms infinite;
          animation: up 6.25s 233ms infinite;
}
.bubbles-small g:nth-of-type(9) g {
  -webkit-transform: translateX(230px);
          transform: translateX(230px);
}
.bubbles-small g:nth-of-type(9) circle {
  -webkit-animation: wobble 3s 275ms infinite ease-in-out;
          animation: wobble 3s 275ms infinite ease-in-out;
}
.bubbles-small g:nth-of-type(10) {
  -webkit-animation: up 6s 900ms infinite;
          animation: up 6s 900ms infinite;
}
.bubbles-small g:nth-of-type(10) g {
  -webkit-transform: translateX(730px);
          transform: translateX(730px);
}
.bubbles-small g:nth-of-type(10) circle {
  -webkit-animation: wobble 2s 905ms infinite ease-in-out;
          animation: wobble 2s 905ms infinite ease-in-out;
}

@-webkit-keyframes wobble {
  33% {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  66% {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
}

@keyframes wobble {
  33% {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  66% {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
}
@-webkit-keyframes up {
  0% {
    opacity: 0;
  }
  10%,
	90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-1024px);
            transform: translateY(-1024px);
  }
}
@keyframes up {
  0% {
    opacity: 0;
  }
  10%,
	90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-1024px);
            transform: translateY(-1024px);
  }
}

.powered_by_rizmayer {
max-width: 180px;
    margin: 0 auto;
    margin-top: 44px;
    margin-bottom: -54px;
    display: block;
}

/* Admin Tools */
.lang_edit_mode .bind-txt:hover {
    background-color: rgba(251,163,67,0.24);
    /* border: 2px solid #38accc; */
    transition: all 0.3s ease-in;
    cursor: pointer;
}

.lang_edit_mode .site_text_form {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 12;
    text-align: center;
    padding: 24px;
    box-sizing: border-box;
    background-color: rgba(34, 34, 34, 0.88);
}

.lang_edit_mode .site_text_form.faq_edit {
    text-align: left;
}

.lang_edit_mode .site_text_form.faq_edit a {
    color: #FFF;
    position: absolute;
    bottom: 90px;
    left: 71%;
}

.lang_edit_mode .site_text_form input[type="text"] {
    width: 70%;
}

.lang_edit_mode .site_text_form input[type="submit"] {
    width: 20%;
}

.admin_tools_box {
    width: 116px;
    position: fixed;
    left: 0px;
    top: calc(50% - 240px);
    background-color: #FFF;
    text-align: center;
    box-shadow: 12px 0px 36px 0px rgba(34, 34, 34, 0.27);
    z-index: 2;
}

.lang_edit_mode .admin_tools_box .text_edit {
    background-color: #222;
    color: #fff;
}


.admin_tools_box .text_edit, .admin_tools_box .tematika_edit, .admin_tools_box > a {
    border-bottom: 1px solid #eee;
    display: block;
}


.admin_tools_box > span > span, .admin_tools_box a > span > span  {
    font-size: 11px;
}

.admin_tools_box span {
    display: block;
    cursor: pointer;
}

.admin_tools_box > span, .admin_tools_box a > span {
    padding: 24px;
}

.admin_tools_box i {
    margin-bottom: 8px;
}

.tematika_editor h4 {
    margin-top: 36px;
}

.tematika_editor {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow-y: scroll;
    box-sizing: border-box;
    padding: 8%;
    z-index: 10;
    background-color: rgba(255,255,255,1);
}

.tematika_editor a {
    color: #fba343;
    cursor: pointer;
}

.tematika_editor .new_tour_point {
    padding: 8px 16px;
    background-color: #ccc;
    color: #222;
    margin: 24px 0px;
    margin-bottom: 64px;
    display: inline-block;
    cursor: pointer;
}

.tematika_editor .new_tour_point:hover {
    background-color: #B9B9B9;
}

.tematika_editor .remove_img {
    margin-left: 4px;
}

.tematika_editor .preview {
    width: 180px;
    height: 110px;
    object-fit: cover;
    vertical-align: middle;
}

.tematika_editor .zone_preview_box {
    display: inline-block;
    margin-bottom: 36px;
    margin-right: 36px;
}

.tematika_editor .input_title {
    width: 100%;
    max-width: 300px;
    display: inline-block;
}

.tematika_editor .zone_input_box input[type="text"] {
    margin-top: 8px;
    width: 40%;
}

.tematika_editor input[type="file"] {
    border: 0;
    background-color: #eee;
}

.tematika_editor .close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 36px;
    cursor: pointer;
}

.admin_tools_box .tematika_edit {
    position: relative;
}

.admin_tools_box .studio_menu {
    position: absolute;
    right: -180px;
    top: 0px;
    width: 180px;
    box-sizing: border-box;
    background-color: #ccc;
}

.admin_tools_box .studio_menu p {
    padding: 8px 16px;
    font-size: 12px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.admin_tools_box .studio_menu p:hover {
    background-color: #F8F8F8;
}

.admin_login {
    text-align: center;
}

.admin_login input {
    width: 100%;
    max-width: 280px;
    margin-top: 16px;
}



@media all and (max-width: 1160px) {
    .contact_box .grid-2 { grid-template-columns: 60% 40%; }
}

@media all and (max-width: 1160px) {
    .container{ padding-left: 24px; padding-right: 24px; }
    .gallery_box h2 {left: 24px;}
    h1 { font-size: 78px; line-height: 96px;}
    .head_crea h1 {max-width: 290px;}
    .head_crea .right_text b {font-size: 42px; line-height: 48px;}
}

@media all and (max-width: 1024px) {
    .tours .tour_boxes.grid-4 {grid-template-columns: auto auto;}
    .head_crea .right_text p {margin-top: 44px;}
}

@media all and (max-width: 900px) {
    .contact_box .grid-2 { grid-template-columns: auto auto; }
    .about_us .container .bear_outline {display: none;}
    .about_us .container.grid-2 {display: block;}
    .head_ribbon span {font-size: 28px; }
    .crea img {max-width: 206px;}
    
    .header > a, .header .lang_box { display: none; }
    .header > i.mobile_menu_icon { display: inline-block; }
    
    .header.open { left: 0; right: 0; top: 0; bottom: 0; transition: none; }
    .header .logo { transition: none; }
    .header.open > .menu_item { display: block; text-align: center; margin-top: 16px; max-width: 120px; margin: 16px auto;}
    .header .logo {display: block; float: none;}
    .header.open .lang_box {display: block; text-align: center; margin-top: 64px;border-top: 1px solid #ccc;padding: 24px;}
    .header.open .logo { margin-bottom: 44px; }
}

@media all and (max-width: 900px) {
    .container.grid-3.head_crea {grid-template-columns: auto;}
    .head_crea h1 {max-width: 100%; text-align: center;}
    .head_crea .right_text b { max-width: 800px; margin-top: -44px; text-align: center;}
    .head_crea .right_text p {margin-top: 36px; margin-bottom: 36px;}
    h2 {font-size: 46px; line-height:42px;}
    p {font-size: 16px;}
    .contact_box .info_box b, .contact_box .social_box b {font-size: 22px;}
    .head_crea .right_text {text-align: center;}
    .gallery_box h2 {max-width: 56%;}
    .img_gallery .double_slot img { max-width: 260px; height: 180px;}
    .img_gallery .double_slot { max-width: 260px;}
    .img_gallery .simple_slot img { max-width: 280px; height: 367px;}
    .img_gallery .simple_slot {max-width: 280px;}
    .gallery_box .container {height: 520px;}
    .img_gallery {top: calc(50% - 184px);}
}

@media all and (max-width: 760px) {
    .contact_box .grid-2 { display: block; }
    .contact_box iframe {height: 280px !important; margin-bottom: 24px;}
    .head_ribbon span {font-size: 22px; }
}

@media all and (max-width: 600px) {
    .booking_box .grid-2 {display: block;}
    .booking_box .send_box input {margin-top: 24px;}
    .grid-2.about_text {display: block;}
    .img_gallery {left: 168px;}
    .gallery_box .navigator_right, .gallery_box .navigator_left {padding: 6px;}
    .img_view .navigator_close {top:24px; right:24px;}
    
    .img_gallery {position: static; overflow: scroll; margin-right: -24px; margin-left: -24px; padding-left: 24px; }
    .gallery_box .container {height: auto;}
    .gallery_box h2 {position: static; margin-top: 36px;}
    .bubbles_wrap2 {width: 320px;height: 400px;top: 0; bottom: auto;}
    .gallery_box .navigator_right, .gallery_box .navigator_left {display: none;}
    .img_gallery .double_slot > img { margin-bottom: 4px !important;}
    .img_gallery .double_slot > img:nth-of-type(1) {margin-left: 0;}
    .img_gallery .simple_slot > img {width: 100%; max-width: 100%;margin-bottom: 0px;margin-top: -6px;}
    .gallery_box h2 {max-width: 465px;}
    
    .contact_box .info_box i {padding: 12px;}
    .contact_box .info_box b {margin-bottom: 0;}
    .contact_box .info_box {font-size: 14px;}
    .about_us .container {padding-top: 76px;}
    .head_ribbon {margin-bottom: 86px;}
}

@media all and (max-width: 520px) {
    .faq_box .grid-2 {display: block;}
    .tours .tour_boxes.grid-4 {grid-template-columns: auto;}
    .container.grid-3.head_crea {grid-template-columns: auto;}
    .head_ribbon span {font-size: 16px;}
    .head_ribbon span b {display: none;}
    h1 {font-size: 58px;line-height: 56px;}
    .head_crea .right_text b {font-size: 32px;line-height: 38px;}
}
