@charset "UTF-8";
/*
*
* Code Standard : http://codeguide.co/
* BEM Naming Convention : [BLOCK]__[ELEMENT]—[MODIFIER]
*
* https://www.lullabot.com/articles/bem-atomic-design-a-css-architecture-worth-loving
* https://seesparkbox.com/foundry/thoughtful_css_architecture
*
* 
* base - functions ( don't output css )
* atom - simple base elements, no parent
* molecule - simple module ( three to ten lines of HTML is likely a molecule )
* organism - complex module ( more than ten lines of html ) 
* template - re-used many times, ex.: list page, detail page ... 
* page - used only once 
*/
.align-baseline {
  vertical-align: baseline !important; }

.align-top {
  vertical-align: top !important; }

.align-middle {
  vertical-align: middle !important; }

.align-bottom {
  vertical-align: bottom !important; }

.align-text-bottom {
  vertical-align: text-bottom !important; }

.align-text-top {
  vertical-align: text-top !important; }

.bg-faded {
  background-color: #f7f7f9; }

.bg-primary {
  background-color: #0275d8 !important; }

a.bg-primary:focus, a.bg-primary:hover {
  background-color: #025aa5 !important; }

.bg-success {
  background-color: #5cb85c !important; }

a.bg-success:focus, a.bg-success:hover {
  background-color: #449d44 !important; }

.bg-info {
  background-color: #5bc0de !important; }

a.bg-info:focus, a.bg-info:hover {
  background-color: #31b0d5 !important; }

.bg-warning {
  background-color: #f0ad4e !important; }

a.bg-warning:focus, a.bg-warning:hover {
  background-color: #ec971f !important; }

.bg-danger {
  background-color: #d9534f !important; }

a.bg-danger:focus, a.bg-danger:hover {
  background-color: #c9302c !important; }

.bg-inverse {
  background-color: #373a3c !important; }

a.bg-inverse:focus, a.bg-inverse:hover {
  background-color: #1f2021 !important; }

.rounded {
  border-radius: 0.25rem; }

.rounded-top {
  border-top-right-radius: 0.25rem;
  border-top-left-radius: 0.25rem; }

.rounded-right {
  border-bottom-right-radius: 0.25rem;
  border-top-right-radius: 0.25rem; }

.rounded-bottom {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem; }

.rounded-left {
  border-bottom-left-radius: 0.25rem;
  border-top-left-radius: 0.25rem; }

.rounded-circle {
  border-radius: 50%; }

.clearfix::after {
  content: "";
  display: table;
  clear: both; }

.d-block {
  display: block !important; }

.d-inline-block {
  display: inline-block !important; }

.d-inline {
  display: inline !important; }

.float-xs-left {
  float: left !important; }

.float-xs-right, .see-more, .owl-nav .owl-next {
  float: right !important; }

.float-xs-none {
  float: none !important; }

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important; }
  .float-sm-right {
    float: right !important; }
  .float-sm-none {
    float: none !important; } }

@media (min-width: 768px) {
  .float-md-left {
    float: left !important; }
  .float-md-right {
    float: right !important; }
  .float-md-none {
    float: none !important; } }

@media (min-width: 992px) {
  .float-lg-left {
    float: left !important; }
  .float-lg-right {
    float: right !important; }
  .float-lg-none {
    float: none !important; } }

@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important; }
  .float-xl-right {
    float: right !important; }
  .float-xl-none {
    float: none !important; } }

.sr-only, .footer-social-navigation ul li a span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

.w-100 {
  width: 100% !important; }

.h-100 {
  height: 100% !important; }

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important; }

.m-0 {
  margin: 0 0 !important; }

.mt-0 {
  margin-top: 0 !important; }

.mr-0 {
  margin-right: 0 !important; }

.mb-0 {
  margin-bottom: 0 !important; }

.ml-0 {
  margin-left: 0 !important; }

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important; }

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important; }

.m-1 {
  margin: 1rem 1rem !important; }

.mt-1 {
  margin-top: 1rem !important; }

.mr-1 {
  margin-right: 1rem !important; }

.mb-1 {
  margin-bottom: 1rem !important; }

.ml-1 {
  margin-left: 1rem !important; }

.mx-1 {
  margin-right: 1rem !important;
  margin-left: 1rem !important; }

.my-1 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important; }

.m-2 {
  margin: 1.5rem 1.5rem !important; }

.mt-2 {
  margin-top: 1.5rem !important; }

.mr-2 {
  margin-right: 1.5rem !important; }

.mb-2 {
  margin-bottom: 1.5rem !important; }

.ml-2 {
  margin-left: 1.5rem !important; }

.mx-2 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important; }

.my-2 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important; }

.m-3 {
  margin: 3rem 3rem !important; }

.mt-3 {
  margin-top: 3rem !important; }

.mr-3 {
  margin-right: 3rem !important; }

.mb-3 {
  margin-bottom: 3rem !important; }

.ml-3 {
  margin-left: 3rem !important; }

.mx-3 {
  margin-right: 3rem !important;
  margin-left: 3rem !important; }

.my-3 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important; }

.p-0, .thumbnail li {
  padding: 0 0 !important; }

.pt-0 {
  padding-top: 0 !important; }

.pr-0 {
  padding-right: 0 !important; }

.pb-0 {
  padding-bottom: 0 !important; }

.pl-0 {
  padding-left: 0 !important; }

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important; }

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

.p-1 {
  padding: 1rem 1rem !important; }

.pt-1 {
  padding-top: 1rem !important; }

.pr-1 {
  padding-right: 1rem !important; }

.pb-1 {
  padding-bottom: 1rem !important; }

.pl-1 {
  padding-left: 1rem !important; }

.px-1 {
  padding-right: 1rem !important;
  padding-left: 1rem !important; }

.py-1 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important; }

.p-2 {
  padding: 1.5rem 1.5rem !important; }

.pt-2 {
  padding-top: 1.5rem !important; }

.pr-2 {
  padding-right: 1.5rem !important; }

.pb-2 {
  padding-bottom: 1.5rem !important; }

.pl-2 {
  padding-left: 1.5rem !important; }

.px-2 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important; }

.py-2 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important; }

.p-3 {
  padding: 3rem 3rem !important; }

.pt-3 {
  padding-top: 3rem !important; }

.pr-3 {
  padding-right: 3rem !important; }

.pb-3 {
  padding-bottom: 3rem !important; }

.pl-3 {
  padding-left: 3rem !important; }

.px-3 {
  padding-right: 3rem !important;
  padding-left: 3rem !important; }

.py-3 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important; }

.pos-f-t {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030; }

.text-justify {
  text-align: justify !important; }

.text-nowrap {
  white-space: nowrap !important; }

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.text-xs-left {
  text-align: left !important; }

.text-xs-right {
  text-align: right !important; }

.text-xs-center, .list-default, .title.white, .white.page-title, .small-info, .btn-bordered, .bg-marcas span, .card-boat-trip--name h3, .contacts-information {
  text-align: center !important; }

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important; }
  .text-sm-right {
    text-align: right !important; }
  .text-sm-center {
    text-align: center !important; } }

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important; }
  .text-md-right {
    text-align: right !important; }
  .text-md-center {
    text-align: center !important; } }

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important; }
  .text-lg-right {
    text-align: right !important; }
  .text-lg-center {
    text-align: center !important; } }

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important; }
  .text-xl-right {
    text-align: right !important; }
  .text-xl-center {
    text-align: center !important; } }

.text-lowercase {
  text-transform: lowercase !important; }

.text-uppercase {
  text-transform: uppercase !important; }

.text-capitalize {
  text-transform: capitalize !important; }

.font-weight-normal {
  font-weight: normal; }

.font-weight-bold {
  font-weight: bold; }

.font-italic {
  font-style: italic; }

.text-white {
  color: #fff !important; }

.text-muted {
  color: #818a91 !important; }

a.text-muted:focus, a.text-muted:hover {
  color: #687077 !important; }

.text-primary {
  color: #0275d8 !important; }

a.text-primary:focus, a.text-primary:hover {
  color: #025aa5 !important; }

.text-success {
  color: #5cb85c !important; }

a.text-success:focus, a.text-success:hover {
  color: #449d44 !important; }

.text-info {
  color: #5bc0de !important; }

a.text-info:focus, a.text-info:hover {
  color: #31b0d5 !important; }

.text-warning {
  color: #f0ad4e !important; }

a.text-warning:focus, a.text-warning:hover {
  color: #ec971f !important; }

.text-danger {
  color: #d9534f !important; }

a.text-danger:focus, a.text-danger:hover {
  color: #c9302c !important; }

.text-gray-dark {
  color: #373a3c !important; }

a.text-gray-dark:focus, a.text-gray-dark:hover {
  color: #1f2021 !important; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.invisible {
  visibility: hidden !important; }

.hidden-xs-up {
  display: none !important; }

@media (max-width: 575px) {
  .hidden-xs-down {
    display: none !important; } }

@media (min-width: 576px) {
  .hidden-sm-up {
    display: none !important; } }

@media (max-width: 767px) {
  .hidden-sm-down {
    display: none !important; } }

@media (min-width: 768px) {
  .hidden-md-up {
    display: none !important; } }

@media (max-width: 991px) {
  .hidden-md-down {
    display: none !important; } }

@media (min-width: 992px) {
  .hidden-lg-up {
    display: none !important; } }

@media (max-width: 1199px) {
  .hidden-lg-down {
    display: none !important; } }

@media (min-width: 1200px) {
  .hidden-xl-up {
    display: none !important; } }

.hidden-xl-down {
  display: none !important; }

.visible-print-block {
  display: none !important; }
  @media print {
    .visible-print-block {
      display: block !important; } }

.visible-print-inline {
  display: none !important; }
  @media print {
    .visible-print-inline {
      display: inline !important; } }

.visible-print-inline-block {
  display: none !important; }
  @media print {
    .visible-print-inline-block {
      display: inline-block !important; } }

@media print {
  .hidden-print {
    display: none !important; } }

/*
*
* define size for object
* if height is omitted object will be a square, same height as width value
*/
/*
*
* Set background image on object using css
*/
/*
*
* Set background image on object, image url not included expected in html
*
*/
/*
*
* Remove list style
*
*/
.list-default, .breadcrumb, .boat-slider, .nav-lang ul, .navigation-main ul, .footer-social-navigation ul, .card-detail-boat--list, .thumbnail {
  margin: 0;
  padding: 0;
  list-style: none; }

/*
*
* Add pseudo-element
* $element: before, after
*/
/*
*
* show bs grid on body:hover by breakpoint
*
*/
/*
*
* Apply text based styles according to sass map
*
*/
/*
*
* convert PX to EM based on font-size base size
*
*/
/*
*
* define font and line-height size in EM's and fallback PX's given values in PX's
*
*/
/*
*
* define z-index according to list
*
*/
body {
  overflow-x: hidden; }

.page-header-hero {
  z-index: 2; }

.page-content-container {
  z-index: 3; }

.page-header-container {
  z-index: 4; }

.page-header-container,
.page-content-container {
  position: relative; }

.bg-brown {
  background-color: #3A3837;
  min-height: 50px; }

.bg-white {
  background-color: white;
  position: relative;
  z-index: 3; }
  .bg-white img {
    display: block; }

.bgi--16x9 {
  display: block;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  padding: 56.25% 0 0 0; }

.bgi--4x3 {
  display: block;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  padding: 75% 0 0 0; }

.bgi, .slider-homepage--image, .card-boat-trip, .slider-detail-boat, .thumbnail-img {
  display: block;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  width: 100%; }

.bg-effect {
  background-image: url("../images/bg-full-effect.jpg");
  height: 100%;
  background-size: contain; }

.effect-underline {
  position: relative; }

.page-title {
  font-size: 27px;
  font-size: 1.5882352941rem;
  font-weight: 600;
  font-style: italic;
  padding-bottom: 25px;
  color: #3A3837; }
  @media (max-width: 767px) {
    .page-title {
      margin-top: 0; } }

.link-page {
  color: #E3C76E; }

.list-default {
  margin-top: 20.4px;
  margin-bottom: 20.4px; }
  .list-default li {
    display: inline-block; }
    .list-default li a {
      padding: 25px;
      display: block; }
      .list-default li a img {
        max-width: 185px; }

html {
  font-size: 100%; }

body {
  font-family: "Crimson Text", sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #b1a9a5;
  font-size: 1rem;
  line-height: 1.5882352941rem;
  height: 100%; }

p, ul, ol, h1, h2, h3, h4, h5, h6 {
  margin-top: 20.4px;
  margin-bottom: 0; }

h1 {
  font-size: 2.2352941176rem;
  font-size: 2.2352941176rempx;
  font-size: 2.2352941176rem/17rem;
  line-height: 2.4705882353rem;
  line-height: 2.4705882353rempx;
  line-height: 2.4705882353rem/17rem;
  margin-top: 2.2352941176rem;
  letter-spacing: -0.1rem;
  font-weight: bold; }

h2 {
  font-size: 2.0588235294rem;
  font-size: 2.0588235294rempx;
  font-size: 2.0588235294rem/17rem;
  line-height: 1.9411764706rem;
  line-height: 1.9411764706rempx;
  line-height: 1.9411764706rem/17rem;
  margin-top: 1.7647058824rem;
  letter-spacing: -0.1rem; }

h1 + h2 {
  margin-top: 0.7058823529rem; }

h3 {
  font-size: 1.6470588235rem;
  font-size: 1.6470588235rempx;
  font-size: 1.6470588235rem/17rem;
  line-height: 1.7058823529rem;
  line-height: 1.7058823529rempx;
  line-height: 1.7058823529rem/17rem;
  margin-top: 1.5294117647rem;
  letter-spacing: -0.1rem; }

h4 {
  font-size: 1.4117647059rem;
  font-size: 1.4117647059rempx;
  font-size: 1.4117647059rem/17rem;
  line-height: 1.5294117647rem;
  line-height: 1.5294117647rempx;
  line-height: 1.5294117647rem/17rem;
  margin-top: 1.4117647059rem;
  letter-spacing: -0.1rem; }

h3 + h4 {
  margin-top: 0.0294117647rem; }

h5, h6 {
  font-size: 1.2941176471rem;
  font-size: 1.2941176471rempx;
  font-size: 1.2941176471rem/17rem;
  line-height: 1.1764705882rem;
  line-height: 1.1764705882rempx;
  line-height: 1.1764705882rem/17rem;
  text-transform: uppercase; }

ul, ol {
  line-height: 1.6470588235rem;
  line-height: 1.6470588235rempx;
  line-height: 1.6470588235rem/17rem;
  margin-top: 1.2941176471rem; }

ul li, ol li {
  line-height: 1.2941176471rem;
  line-height: 1.2941176471rempx;
  line-height: 1.2941176471rem/17rem; }

p {
  line-height: 1.6470588235rem;
  line-height: 1.6470588235rempx;
  line-height: 1.6470588235rem/17rem;
  margin-top: 1.2941176471rem; }

.lead {
  font-size: 1.2941176471rem;
  font-size: 1.2941176471rempx;
  font-size: 1.2941176471rem/17rem;
  line-height: 1.6470588235rem;
  line-height: 1.6470588235rempx;
  line-height: 1.6470588235rem/17rem; }

small, .small, figcaption {
  font-size: 0.7058823529rem;
  font-size: 0.7058823529rempx;
  font-size: 0.7058823529rem/17rem;
  line-height: 1.0588235294rem;
  line-height: 1.0588235294rempx;
  line-height: 1.0588235294rem/17rem; }

.br {
  display: block; }

a {
  color: #b1a9a5;
  cursor: pointer;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out; }
  a:hover, a:focus, a:active, a.active {
    text-decoration: none; }

.title, .page-title {
  font-size: 18px;
  font-size: 1.0588235294rem;
  position: relative;
  letter-spacing: 0; }
  .title.white, .white.page-title {
    font-size: 38px;
    font-size: 2.2352941176rem;
    margin-top: 70.4px;
    color: white;
    margin-bottom: 63px;
    text-transform: uppercase;
    padding-bottom: 35px;
    letter-spacing: 0; }
    .title.white:before, .white.page-title:before {
      background-image: url("../images/underline-yellow.png");
      width: 70px;
      height: 21px; }
  .title.brand, .brand.page-title {
    padding-bottom: 0; }
  .title.black:before, .black.page-title:before {
    background-image: url("../images/underline-black.png");
    width: 46px;
    height: 12px; }

.small-info {
  font-size: 16px;
  font-size: 0.9411764706rem;
  margin-top: 80px;
  margin-bottom: 50px;
  letter-spacing: 0;
  position: relative; }
  .small-info:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -100%);
            transform: translate(-50%, -100%);
    background-image: url("../images/award.png");
    height: 39px;
    width: 26px;
    display: block;
    background-repeat: no-repeat;
    background-position: center; }

.navigation-main ul li:before {
  content: '';
  position: absolute;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  bottom: 0;
  height: 0;
  width: 100%;
  background-color: #E3C76E;
  display: block; }

.title.white:before, .white.page-title:before, .title.black:before, .black.page-title:before, .card-confirmation h3:before {
  content: '';
  position: absolute;
  bottom: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 240%);
          transform: translate(-50%, 240%);
  display: block; }

.effect-underline:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: url("../images/underline-small-yellow.png");
  background-repeat: no-repeat;
  height: 25px;
  width: 35px;
  display: block; }

.effect-line-bottom {
  border-bottom: 3px solid #E3C76E; }

.overlay, .card-boat-trip:after, .thumbnail li a:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
  display: block;
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out; }
  .overlay:hover, .card-boat-trip:hover:after, .thumbnail li a:hover:before {
    height: 100%;
    opacity: 1; }
    .overlay:hover:after, .card-boat-trip:hover:after {
      height: 100%; }

.thumbnail-img, .see-more, .owl-nav .owl-next {
  position: relative; }
  .thumbnail-img:before, .see-more:before, .owl-nav .owl-next:before, .thumbnail-img:after, .see-more:after, .owl-nav .owl-next:after {
    content: '';
    position: absolute;
    background-color: #E3C76E;
    display: block;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    z-index: 5; }
  .thumbnail-img:before, .see-more:before, .owl-nav .owl-next:before {
    width: 63px;
    height: 1px;
    left: -100px;
    top: 50%; }
  .thumbnail-img:after, .see-more:after, .owl-nav .owl-next:after {
    height: 63px;
    width: 1px;
    top: -100px;
    left: 50%; }

.btn-bordered {
  font-size: 28px;
  font-size: 1.6470588235rem;
  position: relative;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  border: 1px solid #E3C76E;
  color: white;
  width: 100%;
  font-style: italic;
  overflow: hidden;
  margin-top: 70px;
  line-height: 1;
  letter-spacing: 1.2px; }
  .btn-bordered:after {
    content: "";
    position: absolute;
    height: 0;
    left: 50%;
    top: 50%;
    width: 150%;
    z-index: -1;
    -webkit-transition: all 0.75s ease 0s;
    transition: all 0.75s ease 0s;
    background: #E3C76E;
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(-25deg);
            transform: translateX(-50%) translateY(-50%) rotate(-25deg); }
  .btn-bordered:hover, .btn-bordered:focus {
    color: white;
    outline: none; }
    .btn-bordered:hover:after, .btn-bordered:focus:after {
      height: 450%; }

.site-header {
  position: relative; }

.site-header--logo {
  position: absolute;
  top: 10px;
  left: 15px;
  padding-right: 15px; }

@media (min-width: 992px) and (max-width: 1199px) {
  .site-header--logo {
    left: 0;
    top: 16px;
    padding-right: 0; } }
  @media (max-width: 575px) {
    .site-header--logo {
      top: 0;
      padding-right: 0;
      position: inherit;
      left: 0; } }

footer.bg-brown {
  min-height: 73px; }

figure {
  position: relative;
  overflow: hidden;
  margin: 0; }

.content-wrapper figure {
  margin-top: 20.4px; }

.breadcrumb {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 10px;
  background-color: transparent;
  position: relative;
  top: 5px;
  padding-left: 20px;
  border-radius: 0; }
  @media (max-width: 575px) {
    .breadcrumb {
      margin-top: 0; } }
  .breadcrumb li {
    display: inline-block;
    position: relative; }
    .breadcrumb li:before {
      content: '';
      height: 18px;
      width: 1px;
      display: block;
      background-color: #565554;
      position: absolute;
      right: 0;
      top: 3px;
      -webkit-transform: rotate(22deg);
              transform: rotate(22deg); }
    .breadcrumb li span {
      font-size: 15px;
      font-size: 0.8823529412rem;
      padding-right: 11px;
      padding-left: 11px;
      font-weight: bold;
      letter-spacing: 0;
      color: #565554; }
      .breadcrumb li span a {
        color: #565554; }
    .breadcrumb li:last-child:before {
      display: none; }
    .breadcrumb li:first-child {
      padding-left: 0; }
      .breadcrumb li:first-child span {
        padding-left: 0; }

.slider-homepage--image {
  min-height: 823px; }

.boat-slider li {
  display: block; }

.nav-lang .active {
  display: none; }

.nav-lang a {
  font-size: 17px;
  font-size: 1rem;
  padding-top: 22px;
  padding-bottom: 22px;
  padding-right: 20px;
  padding-left: 20px;
  display: block; }
  .nav-lang a:hover {
    color: #E3C76E; }

.nav-lang abbr {
  cursor: pointer;
  text-decoration: none;
  border: none; }

@media (max-width: 991px) {
  .navigation-main {
    display: none; } }

.navigation-main ul li {
  display: inline-block;
  position: relative;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out; }
  .navigation-main ul li:first-child {
    display: none; }
  .navigation-main ul li:before {
    -webkit-transition-delay: .2s;
            transition-delay: .2s; }
  .navigation-main ul li a {
    font-size: 17px;
    font-size: 1rem;
    padding-top: 22px;
    padding-bottom: 22px;
    padding-right: 20px;
    padding-left: 20px;
    display: block; }
  .navigation-main ul li:hover:before, .navigation-main ul li.active:before {
    height: 2px; }
  .navigation-main ul li:hover a, .navigation-main ul li.active a {
    color: #E3C76E; }

#menu-toggle {
  width: 100px;
  height: 100px;
  position: relative;
  cursor: pointer; }
  #menu-toggle span {
    display: block;
    background: #E3C76E;
    border-radius: 2px; }
  #menu-toggle #hamburger {
    position: absolute;
    height: 100%;
    width: 100%; }
    #menu-toggle #hamburger span {
      width: 60px;
      height: 4px;
      position: relative;
      top: 24px;
      left: 20px;
      margin: 10px 0;
      -webkit-transition: .25s ease-in-out;
      transition: .25s ease-in-out; }
  #menu-toggle #cross {
    position: absolute;
    height: 100%;
    width: 100%;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg); }
    #menu-toggle #cross span {
      -webkit-transition: .25s ease-in-out;
      transition: .25s ease-in-out; }
      #menu-toggle #cross span:nth-child(1) {
        height: 0;
        width: 4px;
        position: absolute;
        top: 10%;
        left: 48px;
        -webkit-transition-delay: 0s;
                transition-delay: 0s; }
      #menu-toggle #cross span:nth-child(2) {
        width: 0;
        height: 4px;
        position: absolute;
        left: 10%;
        top: 48px;
        -webkit-transition-delay: .25s;
                transition-delay: .25s; }
  #menu-toggle.open #hamburger span {
    width: 0; }
    #menu-toggle.open #hamburger span:nth-child(1) {
      -webkit-transition-delay: 0s;
              transition-delay: 0s; }
    #menu-toggle.open #hamburger span:nth-child(2) {
      -webkit-transition-delay: .125s;
              transition-delay: .125s; }
    #menu-toggle.open #hamburger span:nth-child(3) {
      -webkit-transition-delay: .25s;
              transition-delay: .25s; }
  #menu-toggle.open #cross span:nth-child(1) {
    height: 80%;
    -webkit-transition-delay: .625s;
            transition-delay: .625s; }
  #menu-toggle.open #cross span:nth-child(2) {
    width: 80%;
    -webkit-transition-delay: .375s;
            transition-delay: .375s; }

.footer-social-navigation ul li {
  display: inline-block; }
  .footer-social-navigation ul li:hover a, .footer-social-navigation ul li:focus a {
    color: #E3C76E; }
  .footer-social-navigation ul li a {
    display: block;
    padding-top: 23px;
    padding-bottom: 25px;
    padding-left: 20px;
    color: #968251;
    font-size: 22px;
    font-size: 1.2941176471rem; }
  .footer-social-navigation ul li:first-child a {
    padding-left: 0; }

.footer-detail p {
  line-height: 1.2;
  color: #968251;
  font-size: 14px;
  font-size: 0.8235294118rem; }

.company-wrapper {
  padding-top: 273px; }

.company-main--logo {
  padding-top: 20px; }

.company-main {
  color: #3A3837; }
  .company-main p {
    padding-right: 30px; }

.bg-services {
  display: block;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  min-height: 300px; }

.content-services {
  color: #3A3837; }
  .content-services p:empty {
    display: none; }
  .content-services .title, .content-services .page-title {
    font-size: 25px;
    font-size: 1.4705882353rem;
    padding-bottom: 35px;
    letter-spacing: 1px; }

.services-wrapper {
  padding-left: 20px;
  min-height: 700px; }
  @media (max-width: 767px) {
    .services-wrapper {
      padding-left: 0; } }

.card-group-siroco {
  margin-top: 36.3px;
  margin-bottom: 40.3px; }
  .card-group-siroco a {
    color: #E3C76E;
    font-weight: 700;
    word-break: break-all; }
  .card-group-siroco p {
    margin-top: 0;
    color: #3A3837; }
    .card-group-siroco p + p {
      margin-top: 1.2941176471rem; }

.group-wrapper {
  position: relative; }
  @media (max-width: 575px) {
    .group-wrapper {
      padding-top: 15px; } }
  .group-wrapper img {
    padding-left: 45px; }
    @media (max-width: 575px) {
      .group-wrapper img {
        padding-left: 0;
        width: 100%; } }

@media (min-width: 576px) and (max-width: 991px) {
  .group-wrapper img {
    padding-left: 0; } }
  .group-wrapper .page-title {
    font-size: 35px;
    font-size: 2.0588235294rem;
    margin-top: 0; }
    @media (max-width: 575px) {
      .group-wrapper .page-title {
        margin-top: 20.4px; } }
  .group-wrapper:after {
    content: '';
    display: block;
    height: 1px;
    background-color: #E3C76E;
    width: 100%;
    margin-top: 15px; }

.bg-marcas {
  display: block;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  min-height: 100vh; }
  @media (max-width: 575px) {
    .bg-marcas {
      min-height: 62vh; } }
  .bg-marcas .page-title {
    margin-top: 0;
    padding-top: 80px;
    margin-bottom: 0; }
    .bg-marcas .page-title:before {
      display: none; }
  .bg-marcas span {
    font-size: 16px;
    font-size: 0.9411764706rem;
    color: #E3C76E;
    display: block;
    font-style: italic;
    font-weight: 600;
    letter-spacing: 0; }
  .bg-marcas header span {
    margin-bottom: 20.4px; }
    @media (max-width: 575px) {
      .bg-marcas header span {
        margin-bottom: 0; } }

.card-marcas {
  display: block;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  min-height: 300px;
  border: 6px solid white;
  overflow: hidden;
  cursor: pointer; }
  @media (max-width: 575px) {
    .card-marcas {
      background-image: none !important;
      height: auto;
      min-height: auto; } }
  .card-marcas:before, .card-marcas:after {
    content: '';
    position: absolute;
    width: 0;
    height: 5px;
    background-color: #E3C76E;
    display: block;
    z-index: 4;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out; }
  .card-marcas:before {
    top: 0;
    left: 0;
    -webkit-transition-delay: .2s;
            transition-delay: .2s; }
    @media (max-width: 575px) {
      .card-marcas:before {
        display: none; } }
  .card-marcas:after {
    bottom: 0;
    right: 0;
    -webkit-transition-delay: .3s;
            transition-delay: .3s; }
    @media (max-width: 575px) {
      .card-marcas:after {
        width: 100%; } }
  .card-marcas:hover:before, .card-marcas:hover:after {
    width: 100%; }
  .card-marcas:hover .overlay, .card-marcas:hover .card-boat-trip:after, .card-marcas:hover .thumbnail li a:before, .thumbnail li .card-marcas:hover a:before {
    opacity: 1;
    height: 100%;
    z-index: 1; }

.card-marcas--logo {
  background-color: white;
  max-width: 500px;
  overflow: hidden;
  padding-bottom: 30px;
  padding-top: 30px; }
  .card-marcas--logo > div {
    background-size: contain;
    padding: 35% 0 0 0; }

.overlay, .card-boat-trip:after, .thumbnail li a:before {
  top: 0;
  background-color: rgba(255, 255, 255, 0.5); }

.card-marcas__detail--logo {
  position: relative;
  margin-top: 32.4px;
  margin-bottom: 32.4px; }
  @media (max-width: 575px) {
    .card-marcas__detail--logo {
      margin-top: 0;
      margin-bottom: 10.4px; } }

@media (min-width: 576px) and (max-width: 991px) {
  .card-marcas__detail--logo {
    margin-top: 0; } }
  .card-marcas__detail--logo > div {
    background-size: contain;
    padding: 15% 0 0 0; }
    @media (max-width: 575px) {
      .card-marcas__detail--logo > div {
        padding: 40% 0 0 0; } }

@media (min-width: 576px) and (max-width: 991px) {
  .card-marcas__detail--logo > div {
    padding: 35% 0 0 0; } }
    .card-marcas__detail--logo > div:before, .card-marcas__detail--logo > div:after {
      content: '';
      position: absolute;
      top: 50%;
      height: 15px;
      width: 31px;
      display: block;
      background-repeat: no-repeat;
      background-size: contain; }
    .card-marcas__detail--logo > div:before {
      background-image: url("../images/icon-marcas-left.png");
      left: 0; }
    .card-marcas__detail--logo > div:after {
      background-image: url("../images/icon-marcas-right.png");
      right: 0; }

.card-boat-trip {
  max-height: 430px;
  height: 430px;
  position: relative;
  margin-top: 38px;
  overflow: hidden; }
  .card-boat-trip:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 50%;
    background: rgba(226, 226, 226, 0);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(226, 226, 226, 0)), color-stop(100%, #282625));
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(226, 226, 226, 0)), to(#282625));
    background: linear-gradient(to bottom, rgba(226, 226, 226, 0) 0%, #282625 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e2e2e2', endColorstr='#282625', GradientType=0); }
  .card-boat-trip:after {
    background-color: rgba(51, 51, 51, 0.8);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    bottom: 0;
    top: auto; }
  .card-boat-trip:hover .card-boat-trip-details {
    opacity: 1; }
  .card-boat-trip:hover .btn-bordered:after {
    height: 450%;
    -webkit-transition-delay: .2s;
            transition-delay: .2s; }

.card-boat-trip--name {
  position: absolute;
  bottom: 70px;
  z-index: 9;
  width: 100%; }
  .card-boat-trip--name h3 {
    color: #E3C76E;
    font-weight: 500;
    font-style: italic; }

.card-boat-trip-details {
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 40px;
  position: relative;
  z-index: 4;
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out; }
  .card-boat-trip-details p {
    color: white; }

.contacts-information {
  min-height: 628px; }
  @media (max-width: 575px) {
    .contacts-information {
      min-height: 410px; } }
  .contacts-information p {
    color: white;
    margin-bottom: 0;
    margin-top: 0;
    font-size: 32px;
    font-size: 1.8823529412rem;
    line-height: 38px;
    line-height: 2.2352941176rem; }
  .contacts-information small {
    color: #E3C76E;
    font-size: 28px;
    font-size: 1.6470588235rem; }

.contacts-number p {
  font-size: 59px;
  font-size: 3.4705882353rem;
  margin-top: 99px; }
  @media (max-width: 575px) {
    .contacts-number p {
      font-size: 40px;
      margin-top: 30px; } }
  .contacts-number p + p {
    margin-top: 96px; }
  .contacts-number p a {
    color: white;
    margin-bottom: 0; }

.slider-detail-boat {
  width: 100%;
  min-height: 523px;
  margin-top: -36px; }

.card-detail-boat {
  position: relative; }

.card-detail-boat--mdata p {
  font-size: 18px;
  font-size: 1.0588235294rem;
  color: #3A3837;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0; }

.card-detail-boat--mdata .page-title {
  margin-bottom: 20.4px;
  font-size: 34px;
  font-size: 2rem; }
  @media (max-width: 767px) {
    .card-detail-boat--mdata .page-title {
      margin-top: 20px; } }

.card-detail-boat__image {
  margin-top: 83px; }
  @media (max-width: 767px) {
    .card-detail-boat__image {
      margin-top: 0; }
      .card-detail-boat__image img {
        width: 100%; } }

.card-detail-boat--list {
  margin-bottom: 38px; }
  .card-detail-boat--list li {
    display: inline-block; }
    .card-detail-boat--list li:first-child {
      padding-right: 58px; }
    .card-detail-boat--list li:last-child {
      padding-left: 72px; }
    @media (max-width: 575px) {
      .card-detail-boat--list li:first-child {
        padding-right: 35px; }
      .card-detail-boat--list li:last-child {
        padding-left: 35px; } }

@media (min-width: 576px) and (max-width: 991px) {
  .card-detail-boat--list li:first-child {
    padding-right: 30px; }
  .card-detail-boat--list li:last-child {
    padding-left: 30px; } }
    .card-detail-boat--list li span {
      display: block;
      margin-bottom: 8px;
      font-weight: 600;
      font-style: italic;
      text-transform: lowercase;
      font-size: 16px;
      font-size: 0.9411764706rem; }
    .card-detail-boat--list li b {
      font-size: 35px;
      font-size: 2.0588235294rem;
      color: #3A3837;
      font-style: italic;
      font-weight: bold; }

.thumbnail-img {
  max-height: 170px;
  height: 170px;
  overflow: hidden; }

.thumbnail li {
  display: inline-block;
  position: relative;
  cursor: pointer; }
  .thumbnail li a:before {
    z-index: 3;
    background-color: rgba(58, 56, 55, 0.8); }
  .thumbnail li:hover .thumbnail-img:before {
    left: 50%; }
  .thumbnail li:hover .thumbnail-img:after {
    top: 50%; }

.see-more, .owl-nav .owl-next {
  background-color: rgba(58, 56, 55, 0.9);
  height: 170px;
  width: 50px;
  overflow: hidden;
  cursor: pointer;
  z-index: 4; }
  .see-more:before, .owl-nav .owl-next:before, .see-more:after, .owl-nav .owl-next:after {
    top: 50%;
    left: 50%; }
  .see-more:before, .owl-nav .owl-next:before {
    width: 13px; }
  .see-more:after, .owl-nav .owl-next:after {
    height: 13px; }

.owl-nav {
  position: absolute;
  top: 0;
  right: 0; }
  .owl-nav .owl-next {
    margin: 0 !important;
    padding: 0 !important;
    background-color: rgba(58, 56, 55, 0.9) !important;
    text-indent: -99999999;
    border-radius: 0 !important; }
  .owl-nav .owl-prev {
    display: none !important; }

.card-newsletter {
  padding-top: 20.4px; }
  .card-newsletter .control-label {
    width: 33.3333333333%;
    font-size: 23px;
    color: #E3C76E; }
    @media (max-width: 1199px) {
      .card-newsletter .control-label {
        font-size: 20px; } }
    @media (max-width: 767px) {
      .card-newsletter .control-label {
        padding-left: 0;
        width: 25%; } }
    .card-newsletter .control-label + .col-sm-6 {
      width: 66.6666666667%;
      padding-right: 0; }
      @media (max-width: 767px) {
        .card-newsletter .control-label + .col-sm-6 {
          width: 75%; } }
      @media (max-width: 575px) {
        .card-newsletter .control-label + .col-sm-6 {
          width: 96%;
          padding-left: 0; } }
      .card-newsletter .control-label + .col-sm-6 .form-control {
        margin-bottom: 13px;
        border-radius: 0;
        text-transform: none; }
  .card-newsletter .field-newsletterform-accept_terms .col-sm-6 {
    width: 100%; }
    @media (max-width: 575px) {
      .card-newsletter .field-newsletterform-accept_terms .col-sm-6 {
        padding-left: 4px; } }
  .card-newsletter .terms {
    margin-left: 30px; }
    @media (max-width: 575px) {
      .card-newsletter .terms {
        margin-left: 20px; } }
    .card-newsletter .terms a {
      font-size: 13px;
      color: #E3C76E; }
  .card-newsletter .checkbox label {
    margin-bottom: 0;
    color: #E3C76E; }
  .card-newsletter input[type="checkbox"] {
    position: relative;
    top: -2px;
    left: -4px;
    padding-left: 2px; }
  .card-newsletter .field-newsletterform-accept_terms.has-error .help-block {
    color: #d71313;
    position: relative;
    left: 20px; }
  .card-newsletter .field-newsletterform-email.has-error .help-block {
    position: relative;
    top: -4px;
    z-index: 1;
    font-size: 15px;
    line-height: 1.2;
    padding: 8px 4px;
    margin: 0 0 5px 0;
    color: white; }
    .card-newsletter .field-newsletterform-email.has-error .help-block:before {
      content: '';
      position: absolute;
      left: 1px;
      bottom: -3px;
      z-index: -1;
      height: 42px;
      width: 99%;
      background-color: #812525; }
      @media (max-width: 1199px) {
        .card-newsletter .field-newsletterform-email.has-error .help-block:before {
          bottom: 2px;
          height: 52px; } }

.btn-light {
  background-color: #E3C76E;
  border-radius: 0;
  border: none;
  color: #3A3837;
  -webkit-transition: background-color .3s ease-in-out;
  transition: background-color .3s ease-in-out;
  top: 1px;
  position: relative;
  left: -1px; }
  .btn-light:hover, .btn-light:focus {
    background-color: rgba(227, 199, 110, 0.3);
    outline: none; }
  @media (max-width: 575px) {
    .btn-light {
      top: 34px;
      left: -12px; } }

@media (max-width: 767px) {
  .newsletter-terms .offset-sm-3 {
    margin-left: 19%; } }

@media (max-width: 575px) {
  .newsletter-terms .offset-sm-3 {
    margin-left: 0; } }

.successNewsletter-footer {
  text-align: center; }
  .successNewsletter-footer p {
    margin-top: 0;
    position: relative;
    display: inline-block;
    z-index: 1;
    padding: 8px;
    color: white; }
    .successNewsletter-footer p:before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      z-index: -1;
      height: 100%;
      width: 100%;
      background-color: #258141; }

.card-confirmation {
  border: 1px solid #E3C76E;
  padding: 20px;
  margin-top: 80px; }
  .card-confirmation h3 {
    text-align: center;
    color: #3A3837;
    padding-bottom: 50px;
    position: relative; }
    .card-confirmation h3:before {
      background-image: url("../images/underline-yellow.png");
      width: 70px;
      height: 21px; }
