@font-face {
  font-family: 'arial';
  src: url('/fonts/arial.eot');
  src: url('/fonts/arial.eot?#iefix') format('embedded-opentype'),
       url('/fonts/arial.woff') format('woff'),
       url('/fonts/arial.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


/*----------GENERAL START----------*/
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, a, input, form, label, textarea, img {margin: 0; padding: 0; border: 0;}

li {list-style: none;}

.clear {float:none; clear: both;}
.clearfix:after {
  content: ".";
  display: block;
  height: 0px;
  clear: both;
  visibility: hidden;
}

.nomargin {margin: 0 !important;}
.nomarginbottom {margin-bottom: 0 !important;}
.nopadding {padding: 0 !important;}
.noborder {border: 0 !important;}
.nobg {background: none !important;}

.alignLeft {text-align: left !important;}
.alignRight {text-align: right !important;}
.alignCenter {text-align: center !important;}
.alignJustify {text-align: justify !important;}

.floatLeft {float: left !important;}
.floatRight {float: right !important;}
.floatNone {float: none !important;}

body {
  background: #f7f3d8 url(/images/light-paper-fibers.png);
  color: #594c45;
  font-family: arial, "arial";  font-size: 14px;
  position: relative;
}

a {
  color: white;
  outline: none;
  text-decoration: none;
}

h1, h2, h3, h4, h5 {font-weight: bold;}
h2, h3, h4, h5 {color: white;}

h1 {font-size: 38px;}
h2 {font-size: 18px;}
h3 {font-size: 16px;}
h4 {font-size: 14px;}

p, li, span, a {line-height: 22px;}

/*----------GENERAL END----------*/


/*----------HEADER START----------*/
.content {
  margin: 0 auto;
  position: relative;
  width: 980px;
  z-index: 1000;
}

header.header {
  background: rgba(86,71,58,0.85);
  left: 0;  top: 0;
  position: fixed;
  width: 100%;  height: 27px;
  z-index: 2000;
}

header.header .content {width: 890px;}


.logo,
.logo a {
  width: 147px;  height: 39px;
}

.logo {
  background: url(/images/logo.png) no-repeat;
  float: left;
}

.logo a {display: block;}


.header-menu {
  float: right;
  position: relative;
}

.header-menu a {
  color: #f7f3d8;
  font-size: 12px;  font-family: 'Krona One', sans-serif;
  letter-spacing: 1px;
  line-height: 34px;
  margin-left: 40px;
  text-transform: uppercase;
}

.header-menu a:hover {
  color: #c2b59b;
}
/*----------HEADER END----------*/


/*----------INTRO START----------*/
section {
  background-image: url(/images/light-paper-fibers.png);
  padding: 80px 0;
  position: relative;
}

.anchor {
  left: 0;
  position: absolute;
  top: 0;
}


#intro {
  background-color: #f8f0db;
  height: 885px;
  overflow-x: hidden;
  padding-top: 75px;
  position: relative;
}

#tours {
  background-color: #cedfd0;
}

#fleet {
  background-color: #879242;
}

#gifts {
  background-color: #54493f;
}

#contact {
  background-color: #cb605f;
}

footer {
  background-color: #f8f0db;
  background-image: url(/images/light-paper-fibers.png);
}


.transition {
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.transition-slow {
  -moz-transition: all 2000ms ease;
  -webkit-transition: all 2000ms ease;
  -o-transition: all 2000ms ease;
  transition: all 2000ms ease;
}

.animate {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scale(0.4);
  transform: scale(0.4);
  -webkit-animation: popUp .8s ease-in forwards;
  animation: popUp .8s ease-in forwards;
}

@-webkit-keyframes popUp {
  0% { }
  70% { -webkit-transform: scale(1.1); opacity: .8; -webkit-animation-timing-function: ease-out; }
  100% { -webkit-transform: scale(1); opacity: 1; }
}

@keyframes popUp {
  0% { }
  70% { -webkit-transform: scale(1.1); transform: scale(1.1); opacity: .8; -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; }
  100% { -webkit-transform: scale(1); transform: scale(1); opacity: 1; }
}

.flip,
h2.title.visible,
h3.title.visible {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: rotateX(-80deg);
  transform: rotateX(-80deg);
  transform-origin: 0 0 0;
  -webkit-animation-name: flip;
  -webkit-animation-duration: 0.8s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
  animation-name: flip;
  animation-duration: 0.8s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@-webkit-keyframes flip {
  100% {
    opacity: 1;
    -webkit-transform: rotateX(0deg);
  }
}

@keyframes flip {
  100% {
    opacity: 1;
    transform: rotateX(0deg);
  }
}


.moveInLeft,
.carousel-title.visible,
.col.first .subtitle.visible,
.col.first .article-title.visible {
  transform: translateX(-200px);
  -webkit-transform: translateX(-200px);
  -webkit-animation-name: moveInLeft;
  -webkit-animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-name: moveInLeft;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

@-webkit-keyframes moveInLeft {
  0% {
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
  }
}

@keyframes moveInLeft {
  0% {
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}

.moveInRight,
.col.second .article-title.visible,
.carousel .title.visible,
.title-gifts.visible {
  transform: translateX(200px);
  -webkit-transform: translateX(200px);
  -webkit-animation-name: moveInRight;
  -webkit-animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-name: moveInRight;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

@-webkit-keyframes moveInRight {
  0% {
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
  }
}

@keyframes moveInRight {
  0% {
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}

.scaleUp,
.imgContainer.visible {
  transform: scale(0.4) rotate(10deg);
  -webkit-transform: scale(0.4) rotate(10deg);
  -webkit-animation-name: scaleUp;
  -webkit-animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
  animation-name: scaleUp;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@-webkit-keyframes scaleUp {
  0% {
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) rotate(0);
  }
}

@keyframes scaleUp {
  0% {
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}


#intro .content {
  height: 420px;
}

#intro .icon,
#intro .title {
  position: absolute;
}

#intro .title {
  opacity: 0;
  top: 0;  right: 500px;
  text-align: right;  text-transform: uppercase;
}

#intro .title.visible,
#intro .fck.visible {opacity: 1;}

#intro .title.flip {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

#intro .icon.girls {
  top: 160px;  right: 515px;
  opacity: 0;
  z-index: 30;
}

#intro .icon.girls.visible {opacity: 1;}

#intro .icon.girls.animate {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.icon.trabi {
  position: absolute;
  top: 0;  right: -150px;
  z-index: 200;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
}

.trabi-container {
  position: absolute;
  top: 450px;
  width: 100%; height: 306px;
}

.trabi-container .content {
  overflow-x: hidden;
  width: auto; height: 306px;
}

.trabi-container .container {
  margin: 0 auto;
  position: relative;
  width: 980px; height: 306px;
}

.sugarak {
  background: url(/images/sugarak.png) no-repeat;
  opacity: 0.15;
  position: absolute;
  right: 0; top: 0;
  width: 1160px; height: 2320px;
  z-index: 5;
}

#intro .btn.tripadvisor {
  margin: 0;
  position: absolute;
  top: 175px;  right: 775px;
  width: 95px; height: 95px;
  z-index: 100;
}

.icon.trabi-sign {
  background: url(/images/icon-trabi-sign.png) no-repeat;
  top: 175px;  right: 500px;
  width: 387px; height: 387px;
}

.carousel-title,
.subtitle,
.article-title,
.title-gifts,
#fleet .carousel .title,
#tours .imgContainer {
  opacity: 0;
}

.carousel-title.visible {
  -webkit-animation-delay: 1s !important;
  animation-delay: 1s !important;
}

.subtitle.visible,
#fleet .carousel-stage .title.visible,
.title-gifts.visible {
  -webkit-animation-delay: 1.5s !important;
  animation-delay: 1.5s !important;
}

.article-title.visible,
#tours .imgContainer.visible {
  -webkit-animation-delay: 2s !important;
  animation-delay: 2s !important;
}


#intro .fck {
  float: right;
  opacity: 0;
  padding-right: 45px;
  position: absolute;
  right: 0;  top: 0;
  width: 420px;
}

#intro .fck.moveInRight {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

h2.title,
h3.title {
  color: #594c45;
  font-size: 42px;  font-family: 'Krona One', sans-serif;  font-weight: normal;
  line-height: 42px;
  letter-spacing: 1px;
  margin-bottom: 35px;
  opacity: 0;
  text-transform: uppercase;  text-align: center;
}

h2.title.visible,
h3.title.visible {
  -webkit-animation-delay: 0.5s !important;
  animation-delay: 0.5s !important;
}

.fck {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.connected-carousels .navigation {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.connected-carousels .stage,
.connected-carousels .stage li .col.first {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.connected-carousels .stage .col.second {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}

.connected-carousels .stage .col.second.visiting {padding-top: 60px;}
/*----------INTRO END----------*/


/*----------TOURS START----------*/
.active.fck,
.active.title,
.connected-carousels .stage.active,
.connected-carousels .navigation.active,
.connected-carousels.active,
.connected-carousels .stage .col.active {
  -moz-transform: scale(1) !important;
  -o-transform: scale(1) !important;
  -webkit-transform: scale(1) !important;
  transform: scale(1) !important;
}

#tours {
  padding-bottom: 0;
  padding-top: 0;
}

#tours .content {
  padding-bottom: 80px;
  padding-top: 80px;
}

#tours .col {
  display: inline-block;
  vertical-align: top;
  width: 450px;
}

#tours .col:first-child {
  margin-right: 40px;
  min-height: 750px;
}

#tours .connected-carousels {margin-bottom: 0;}

#tours .connected-carousels .stage {height: auto;}

#tours .connected-carousels .carousel-stage li {
  height: auto !important;
}

#tours .connected-carousels .stage {
  opacity: 1;
}

#tours .fck {
  margin: 0 auto 65px auto;
  text-align: center;
  width: 535px;
}

.carousel-title {
  color: #594c45;
  font-size: 28px;  font-family: 'Krona One', sans-serif;
  line-height: 34px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.carousel-title span {
  font-size: 20px;
}

#tours .carousel-title {
  float: right;
  max-width: 340px;
  padding-top: 60px;
  text-align: right;
}

.subtitle {
  color: #859940;
  font-size: 16px;  font-family: 'Krona One', sans-serif;
  text-transform: uppercase;
}

#tours .subtitle {
  margin-bottom: 55px;
  text-align: right;
}

.article-title {
  font-size: 14px;  font-family: 'Krona One', sans-serif;
  margin-bottom: 5px !important;
}

.article-title span {
  color: #859940;
  font-size: 11px;
}

#tours .col p {
  margin-bottom: 30px;
}

#tours .highlight-container .article-title {
  font-size: 18px;
  text-transform: uppercase;
}

#tours .col ul {
  margin-bottom: 20px;
  padding-left: 18px;
  width: auto;
}

#tours .col li {
  float: none;
  list-style: disc;
  overflow: visible !important;
  width: auto; max-height: none !important;
}

.btn.contact {
  position: absolute;
  right: 20px;  bottom: -60px;
  z-index: 1000;
}

#tours .btn.play {
  left: 0;  top: 0;
  position: absolute;
}

.imgContainer {
  position: relative;
}

.imgContainer .fancybox .btn,
.tour-img {
  display: none;
}

.tour-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  height: 385px;
  width: 385px;
}

.tour-img.active,
.imgContainer .fancybox .btn.active {
  display: block;
}

#tours .imgContainer {
  margin-bottom: 50px;
  position: absolute;
  right: 100px; top: 0;
  width: 385px;  height: 384px;
}

#tours .highlight-container {
  position: absolute;
  right: 120px; top: 430px;
  width: 300px;
}

.gallery-control {
  background: url(/images/gallery-control.png) no-repeat;
  position: absolute;
  right: 24px;  bottom: -15px;
  width: 102px;  height: 76px;
}

.gallery-control a {
  background: #ebedd5;
  display: block;
  position: absolute;
  width: 18px;  height: 18px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.gallery-control a.active {background: #79756d;}

.gallery-control a:nth-child(1) {right: -18px;  bottom: 81px;}
.gallery-control a:nth-child(2) {right: -29px;  bottom: 100px;}
.gallery-control a:nth-child(3) {right: -38px;  bottom: 120px;}
.gallery-control a:nth-child(4) {right: -45px;  bottom: 141px;}
.gallery-control a:nth-child(5) {right: -50px;  bottom: 163px;}
.gallery-control a:nth-child(6) {right: -53px;  bottom: 186px;}
.gallery-control a:nth-child(7) {right: -53px;  bottom: 209px;}
.gallery-control a:nth-child(8) {right: -51px;  bottom: 232px;}
.gallery-control a:nth-child(9) {right: -46px;  bottom: 254px;}
.gallery-control a:nth-child(10) {right: -39px;  bottom: 276px;}

.connected-carousels .icon {
  float: left;
  margin: 65px 3px 0 0;
}

#tours .jcarousel-wrapper {padding-top: 90px;}

#tours .connected-carousels .carousel-navigation li {width: 160px; height: 30px; line-height: 30px;}

#tours .connected-carousels .carousel-navigation li span,
#tours .connected-carousels .carousel-navigation li a {
  display: inline-block;
  line-height: 14px;
  vertical-align: middle;
}

.connected-carousels .carousel-navigation li a {
  color: #584b44;
}

#tours .connected-carousels .prev-navigation, #tours .connected-carousels .next-navigation {top: -3px !important;}

#tours .connected-carousels .prev-navigation {left: 50px !important;}


.connected-carousels {
  margin-bottom: 30px;
}

.connected-carousels .stage {
  background: none !important;
  border: 0 !important;  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  width: 980px !important;  height: 1005px;
}

.connected-carousels .carousel-stage {
  border: 0 !important;
  box-shadow: none !important;
  width: 980px !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
}

.connected-carousels .carousel-stage li {
  overflow: hidden;
  width: 980px;
}

.connected-carousels li {position: relative;}

.connected-carousels .prev-stage,
.connected-carousels .next-stage {display: none !important;}

.connected-carousels .prev-stage span,
.connected-carousels .next-stage span {
  text-indent: -9999px !important;
  top: 0 !important;
  width: 61px !important;  height: 481px !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow:    none !important;
  box-shadow:         none !important;
}

.connected-carousels .prev-stage span {
  background: url(/images/carouselStageLeft.png) no-repeat !important;
  left: 0 !important;
}

.connected-carousels .next-stage span {
  background: url(/images/carouselStageRight.png) no-repeat !important;
  right: 0 !important;
}

.connected-carousels .navigation {
  margin: 0 !important;
  width: auto !important;  height: 90px;
}

.connected-carousels .carousel-navigation {
  background: none !important;
  border: 0 !important;
  margin: 0 auto;
  width: 820px !important;  height: 90px !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow:    none !important;
  box-shadow:         none !important;
}

.connected-carousels .carousel-navigation li {
  border-right: 2px solid #584b44;
  color: #584b44;
  font-size: 11px;  font-family: 'Krona One', sans-serif;
  line-height: 14px;
  text-transform: uppercase;  text-align: center;
}

.connected-carousels .carousel-navigation li:last-child {border: 0;}

.connected-carousels .carousel-navigation li.active,
.connected-carousels .carousel-navigation li.active a {
  color: #859940;
}

.connected-carousels .prev-navigation,
.connected-carousels .next-navigation {
  text-indent: -9999px !important;
  top: 0 !important;
  width: 35px !important;  height: 35px !important;
  z-index: 50;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow:    none !important;
  box-shadow:         none !important;
}

.connected-carousels .prev-navigation {
  background: url(/images/carousel-prev.svg) no-repeat !important;
  left: 0 !important;
}

.connected-carousels .next-navigation {
  background: url(/images/carousel-next.svg) no-repeat !important;
  right: 0 !important;
}
/*----------TOURS END----------*/


/*----------FLEET START----------*/
#fleet,
#fleet .title {color: #f7f3d8;}

#fleet .fck {
  margin: 0 auto 50px auto;
  text-align: center;
  width: 550px;
}

#fleet .connected-carousels .stage {
  height: 420px !important;
}

#fleet .connected-carousels .title {
  line-height: 34px;
}

#fleet .connected-carousels .carousel-stage,
#fleet .connected-carousels .carousel-stage li {height: 720px !important;}

.connected-carousels.white .prev-navigation {background: url(/images/carousel-prev-white.svg) no-repeat !important;}

.connected-carousels.white .next-navigation {background: url(/images/carousel-next-white.svg) no-repeat !important;}

#fleet .connected-carousels .prev-navigation,
#fleet .connected-carousels .next-navigation {top: 20px !important;}

#fleet .connected-carousels .prev-navigation {left: 40px !important;}

#fleet .connected-carousels .next-navigation {right: 0 !important;}

#fleet .carousel-stage img {
  float: left;
  margin-right: 20px;
}

#fleet .navigation {margin-bottom: 20px !important;}

#fleet .connected-carousels .carousel li {
  border: 0;
  padding: 0 5px;
}

#fleet .carousel-stage .title {
  font-size: 28px;
  margin-bottom: 25px;
  text-align: left;
}

#fleet .icon.fleet {
  left: 50%;  bottom: 280px;
  margin-left: -132px;
  position: absolute;
}

.fleet-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  display: inline-block;
  height: 140px;
  position: relative;
  width: 140px;
}

.fleet-img:first-child {
  z-index: 5;
}

.fleet-img:nth-child(2) {
  margin-left: -20px;
}
/*----------FLEET END----------*/


/*----------GIFTS START----------*/
#gifts {
  padding-bottom: 0;
  padding-top: 0;
}

#gifts .content {
  padding-bottom: 80px;
  padding-top: 80px;
}

#gifts,
#gifts .title {color: #f7f3d8;}

#gifts .fck {
  margin: 0 auto 65px auto;
  text-align: center;
  width: 650px;
}

#gifts .btn.order {
  bottom: -60px;
  position: absolute;
  right: 155px;
  z-index: 10;
}

#gifts .stage,
#gifts .carousel-stage,
#gifts .jcarousel li {height: 350px !important;}

#gifts .connected-carousels .prev-navigation,
#gifts .connected-carousels .next-navigation {top: 50px !important;}

#gifts .connected-carousels .navigation {
  height: 140px !important;
  margin-bottom: 40px !important;
}

#gifts .connected-carousels .navigation img {
  width: 140px;
}

#gifts .connected-carousels .carousel-navigation {height: 140px !important;}

#gifts .connected-carousels .carousel-navigation li {
  border: 0;
  line-height: 137px;
}

#gifts .connected-carousels .carousel-navigation img {
  display: inline-block;
  vertical-align: bottom;
}

#gifts .carousel-stage img {
  float: left;
  margin: 0 40px 0 185px;
}

.title-gifts {
  color: #f7f3d8;
  font-size: 20px;  font-family: 'Krona One', sans-serif;
  line-height: 20px;
  margin-bottom: 30px;
}

.price {
  color: #f7f3d8;
  font-size: 28px;  font-family: 'Krona One', sans-serif;
  line-height: 28px;
  padding-top: 15px;
}

.price span {font-size: 14px;}
/*----------GIFTS END----------*/


/*----------CONTACT START----------*/
#contact {
  padding-bottom: 0;
  padding-top: 0;
}

#contact .content {
  padding-bottom: 80px;
  padding-top: 80px;
}

#contact,
#contact .title,
#contact .fck a {color: #f7f3d8;}

#contact .fck a:hover {text-decoration: underline;}

#contact .fck {
  margin: 0 auto;
  text-align: center;
  width: 300px;
}

.btn.subscribe {
  bottom: -60px;
  position: absolute;
  right: 155px;
  z-index: 1000;
}

.btn.subscribe:hover,
.btn.order:hover,
.btn.contact:hover {
  -moz-transform: scale(1.05) !important;
  -o-transform: scale(1.05) !important;
  -webkit-transform: scale(1.05) !important;
  transform: scale(1.05) !important;
}
/*----------CONTACT END----------*/


/*----------FOOTER START----------*/
footer {
  padding: 110px 0 20px 0;
  position: relative;
  text-align: center;
  z-index: 90;
}

footer a,
footer span {
  color: #594c44;
  font-size: 12px;
  margin-left: 25px;
  position: relative;
  z-index: 200;
}
/*----------FOOTER END----------*/


.popup {
  display: none;
  left: 0; top: 0;
  position: fixed;
  text-align: center;
  width: 100%; height: 100%;
  z-index: 10000;
}

.popup:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.popup .middle {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  width: 50%; max-width: 500px;
}

.close-popup {
  color: black;
  font-size: 20px; font-weight: bold;
  position: absolute;
  right: 6px; top: 0;
  z-index: 10;
}

.popup form {padding: 20px !important;}

.popup input {
  box-sizing: border-box !important;
  margin: 0 0 10px 0 !important;
  width: 100% !important;
}

.veryContainer span:after,
.veryContainer a:after,
.veryContainer:after {
  border: 0;
  content: "";
  margin-left: 0;
  margin-right: 0;
  line-height: normal;
}

.veryContainer {
  margin: 0px;
}

.veryContainer span,
.veryContainer a {margin: 0;}

.veryContainer img {
  display: inline-block;
  vertical-align: middle;
}


.fancy-bg,
#fancybox-outer {background: none !important;}



/*----------ICONS, BUTTONS START----------*/
.icon {display: inline-block;}

.icon.girls {
  background: url(/images/girls.png) no-repeat;
  width: 316px;  height: 429px;
}

.icon.trabi {
  background: url(/images/trabi.png) no-repeat;
  width: 749px;  height: 306px;
}

.icon.guided-tour {
  background: url(/images/icon-guided-tour.svg) no-repeat;
  width: 18px;  height: 18px;
}

.icon.daytour {
  background: url(/images/icon-daytour.svg) no-repeat;
  width: 18px;  height: 18px;
}

.icon.spa {
  background: url(/images/icon-spa.svg) no-repeat;
  width: 18px;  height: 18px;
}

.icon.team-building {
  background: url(/images/icon-team-building.svg) no-repeat;
  width: 18px;  height: 18px;
}

.icon.sightseeing {
  background: url(/images/icon-sightseeing.svg) no-repeat;
  width: 18px;  height: 18px;
}

.icon.night-tour {
  background: url(/images/icon-night-tour.svg) no-repeat;
  width: 18px;  height: 18px;
}

.icon.self-driving {
  background: url(/images/icon-self-driving.svg) no-repeat;
  width: 18px;  height: 18px;
}

.icon.retro {
  background: url(/images/icon-retro.svg) no-repeat;
  width: 18px;  height: 18px;
}


.btn {display: inline-block;}

.btn.contact {
  background: url(/images/btn-contact.svg) no-repeat;
  width: 132px;  height: 131px;
}

.btn.play {
  background: url(/images/btn-play.png) no-repeat center center;
  width: 100%;  height: 100%;
}

.btn.order {
  background: url(/images/btn-order.svg) no-repeat;
  width: 132px;  height: 131px;
}

.btn.subscribe {
  background: url(/images/btn-subscribe.svg) no-repeat;
  width: 132px;  height: 131px;
}

.btn.facebook,
.btn.youtube,
.btn.tripadvisor {
  background: #584b44;
  color: #f7f3d8;
  font-size: 16px;  font-family: 'Krona One', sans-serif;
  margin: 0 10px 0 0;
  vertical-align: middle;
  width: 24px;  height: 24px;  line-height: 24px;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
}

.btn.tripadvisor {
  background: url(/images/icon-tripadvisor.png) no-repeat;
  margin-right: 25px;
}

.btn.tripadvisor:hover {background: url(/images/icon-tripadvisor-hover.png) no-repeat;}

footer .btn.tripadvisor {
  background-size: 40px 40px !important;
  width: 40px; height: 40px;
}
/*----------ICONS, BUTTONS END----------*/

.btn.nav {
  display: none;
}

.mobile-show {display: none;}

.mc-modal {
  position: fixed !important;
}

@media (max-width: 1050px) {
  h2.title,
  h3.title,
  .carousel-title,
  .col.first .subtitle,
  .article-title,
  #tours .imgContainer,
  .title-gifts,
  .carousel .title,
  section#tours,
  section#fleet,
  section#gifts,
  section#contact,
  footer,
  #fleet .carousel-stage .title {
    opacity: 1;
  }
}

@media (max-width: 1050px) and (orientation:portrait) and (min-width: 640px) {
  .mobile-show {display: block;}

  .popup .middle {width: 80%;}

  .btn.nav {
    display: inline-block;
    padding: 0;
    position: absolute;
    right: 20px; top: 5px;
    text-align: center;
    width: 20px; height: 20px; line-height: 20px;
    z-index: 20;
  }

  header.header {
    background:  rgba(86, 71, 58, 1);
  }

  nav.header-menu {
    background:  rgba(86, 71, 58, 1);
    display: none;
    right: 0; top: 0;
    margin-top: 27px;
    padding: 15px 25px;
    position: absolute;
    width: 200px;
    z-index: 200;
    box-sizing: border-box;
  }

  nav.header-menu a {
    display: block;
    margin: 0 !important;
  }

  #intro {
    height: auto;
    overflow: visible;
    padding-bottom: 100px; padding-top: 200px;
  }

  #intro .icon.girls,
  .icon.trabi-sign,
  #intro h1 {
    display: none;
  }

  .trabi-container {
    top: 50px;
  }

  .trabi-container .content {
    overflow: visible;
  }

  .trabi-container .container {
    width: auto;
  }

  .icon.trabi {
    background-size: 300px 122px;
    right: auto; left: 50%;
    margin-left: -150px;
    top: 0;
    width: 300px; height: 122px;
  }

  .content {
    padding: 0 20px;
    width: auto;
  }

  #intro .title,
  #intro .fck  {
    position: static;
  }

  #intro .title {
    text-align: center;
  }

  #intro .fck {
    float: none;
    padding: 0;
    text-align: center;
  }

  .fck,
  header.header .content,
  .col {
    width: auto !important;
  }

  .connected-carousels .carousel-stage .col {
    width: 100% !important;
  }

  .connected-carousels .carousel-stage li,
  .connected-carousels .stage,
  .connected-carousels .carousel-stage,
  .connected-carousels .carousel-navigation {
    width: 640px !important;
  }

  #tours .connected-carousels .carousel-stage li li {height: auto !important;}

  #fleet .connected-carousels .stage {height: auto !important;}

  .connected-carousels .stage {margin: 0 auto !important;}

  #tours .connected-carousels .prev-navigation,
  #fleet .connected-carousels .prev-navigation,
  #gifts .connected-carousels .prev-navigation {
    left: -10px !important;
  }

  #tours .connected-carousels .next-navigation,
  #fleet .connected-carousels .next-navigation,
  #gifts .connected-carousels .next-navigation {
    right: -10px !important;
  }

  #gifts .carousel-stage,
  #gifts .stage,
  #gifts .jcarousel li {height: auto !important;}

  #tours .col:first-child {margin-right: 0;}

  #tours .col ul {padding-left: 13px;}

  #tours .highlight-container {
    position: static;
  }

  #tours .imgContainer {
    left: 0; top: 0;
    position: relative;
    width: 300px; height: 300px;
  }

  .tour-img {
    height: 280px;
    width: 280px;
  }

  .gallery-control {
    right: 40px;
  }

  #fleet .icon.fleet {bottom: 20px;}

  #fleet .carousel-stage img {
    float: none;
    margin: 0 0 10px 0;
    width: auto; height: auto; max-width: 100%;
  }

  #tours .col:last-child p,
  #tours .col:last-child ul {
    margin-left: 0;
  }

  .btn.contact {
    margin-left: -66px;
    right: auto; left: 50%;
  }

  #gifts .carousel-stage img {
    float: none;
    margin: 0 0 10px 0;
  }

  .title-gifts {margin-bottom: 10px;}

  .price {
    padding-top: 10px;
  }

  #gifts .btn.order {
    margin-left: -66px;
    right: auto; left: 50%; top: auto;
  }

  .btn.subscribe {
    margin-left: -66px;
    right: 0; left: 50%;
  }

  footer {
    padding-left: 20px; padding-right: 20px;
  }
}

@media (max-width: 640px) {
  .mobile-show {display: block;}

  .popup .middle {width: 80%;}

  h2.title,
  h3.title {
    font-size: 30px;
    line-height: 38px;
  }

  .btn.nav {
    display: inline-block;
    padding: 0;
    position: absolute;
    right: 20px; top: 5px;
    text-align: center;
    width: 20px; height: 20px; line-height: 20px;
    z-index: 20;
  }

  header.header {
    background:  rgba(86, 71, 58, 1);
  }

  nav.header-menu {
    background:  rgba(86, 71, 58, 1);
    display: none;
    right: 0; top: 0;
    margin-top: 27px;
    padding: 15px 25px;
    position: absolute;
    width: 200px;
    z-index: 200;
    box-sizing: border-box;
  }

  nav.header-menu a {
    display: block;
    margin: 0 !important;
  }

  #intro {
    height: auto;
    overflow: visible;
    padding-bottom: 100px; padding-top: 200px;
  }

  #intro .icon.girls,
  .icon.trabi-sign,
  #intro h1 {
    display: none;
  }

  .trabi-container {
    top: 50px;
  }

  .trabi-container .content {
    overflow: visible;
  }

  .trabi-container .container {
    width: auto;
  }

  .icon.trabi {
    background-size: 300px 122px;
    right: auto; left: 50%;
    margin-left: -150px;
    top: 0;
    width: 300px; height: 122px;
  }

  .content {
    padding: 0 20px;
    width: auto;
  }

  #intro .title,
  #intro .fck  {
    position: static;
  }

  #intro .title {
    text-align: center;
  }

  #intro .fck {
    float: none;
    padding: 0;
    text-align: center;
  }

  .fck,
  header.header .content,
  .col {
    width: auto !important;
  }

  .connected-carousels .carousel-stage .col {
    width: 100% !important;
  }

  .connected-carousels .carousel-stage li,
  .connected-carousels .stage,
  .connected-carousels .carousel-stage,
  .connected-carousels .carousel-navigation {
    width: 315px !important;
  }

  #tours .connected-carousels .carousel-stage li li {height: auto !important;}

  #tours .connected-carousels .carousel-stage {height: auto;}

  #fleet .connected-carousels .stage {height: auto !important;}

  .connected-carousels .stage {margin: 0 auto !important;}

  #tours .connected-carousels .prev-navigation,
  #fleet .connected-carousels .prev-navigation,
  #gifts .connected-carousels .prev-navigation {
    left: -10px !important;
  }

  #tours .connected-carousels .next-navigation,
  #fleet .connected-carousels .next-navigation,
  #gifts .connected-carousels .next-navigation {
    right: -10px !important;
  }

  #gifts .carousel-stage,
  #gifts .stage,
  #gifts .jcarousel li {height: auto !important;}

  #tours .col:first-child {margin-right: 0;}

  #tours .col ul {padding-left: 13px;}

  #tours .highlight-container {
    position: static;
  }

  #tours .imgContainer {
    margin-bottom: 30px;
    left: 0; top: 0;
    position: relative;
    width: 300px; height: 320px;
  }

  .tour-img {
    height: 280px;
    margin-left: auto;
    margin-right: auto;
    width: 280px;
  }

  .gallery-control {
    background: none;
    right: auto; bottom: -60px;
    text-align: center;
    width: 100%;
  }

  .gallery-control a {
    display: inline-block;
    margin: 0 5px;
    position: static;
  }

  #fleet .icon.fleet {bottom: 20px;}

  #fleet .carousel-stage img {
    float: none;
    margin: 0 0 10px 0;
    width: auto; height: auto; max-width: 100%;
  }

  #tours .col:last-child p,
  #tours .col:last-child ul {
    margin-left: 0;
  }

  .btn.contact {
    margin-left: -66px;
    right: auto; left: 50%;
  }

  #gifts .carousel-stage img {
    float: none;
    margin: 0 0 10px 0;
  }

  .title-gifts {margin-bottom: 10px;}

  .price {
    padding-top: 10px;
  }

  #gifts .btn.order {
    margin-left: -66px;
    right: auto; left: 50%; top: auto;
  }

  .btn.subscribe {
    margin-left: -66px;
    right: 0; left: 50%;
  }

  footer {
    height: auto;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 80px;
  }

  footer .btn.tripadvisor {margin-right: 0;}
}

@media (max-width: 400px) {
  .content {
    padding: 0 10px;
  }

  #intro {padding-bottom: 200px;}

  .trabi-container {
    top: 50px;
  }

  .connected-carousels .carousel-stage li,
  .connected-carousels .stage,
  .connected-carousels .carousel-stage,
  .connected-carousels .carousel-navigation,
  #tours .imgContainer {
    width: 290px !important;
  }

  .connected-carousels .carousel-navigation,
  .connected-carousels .carousel-navigation li {
    width: 200px !important;
  }

  .connected-carousels .carousel-navigation li {
    border: 0 !important;
  }

  #fleet .connected-carousels .carousel-navigation {
    width: auto !important
  }

  #fleet .connected-carousels .carousel-navigation li {
    padding-left: 40px;
    width: 230px !important;
  }

  .connected-carousels .carousel-navigation li img {
    margin: 0 auto;
  }

  .tour-img {
    height: 260px;
    width: 260px;
  }

  .connected-carousels .icon {
    margin-top: 10px;
  }

  #tours .carousel-title {
    padding-top: 5px;
  }
}
