body {
  font-family: 'Roboto', sans-serif;
  background: #fff;
  font-size: 20px;
  font-weight: 300;
  color: #54595f;
}
@media (max-width: 1262px) {
  body {
    font-size: 18px;
  }
}
@media (max-width: 868px) {
  body {
    font-size: 16px;
  }
}
.overal-container {
  max-width: 2200px;
  margin: 0 auto;
  background: #ffffff;
  box-shadow: 0 0 50px #eee;
  position: relative;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
  text-decoration: none;
}
/* ------ BOOTSTRAP OVERRIDE---- */
.btn {
  border-radius: 0;
  padding: 10px 30px;
}
.btn i.fa {
  margin-right: 0.5rem;
}
.btn-primary {
  color: #fff;
  background: #185f81;
  border-color: #185f81;
  font-weight: 600;
  border-radius: 0;
}
.btn-primary:hover {
  background: #fcc400;
  border-color: #fcc400;
  color: #fff;
}
.btn-primary:focus,
.btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(24, 95, 129, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #fff;
  background-color: #fcc400;
  border-color: #fcc400;
}
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #fcc400;
  border-color: rgba(24, 95, 129, 0.2);
}
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(24, 95, 129, 0.2);
}
.btn-secondary {
  color: #0E97AA;
  background: transparent;
  border-color: #0E97AA;
  font-weight: 600;
  border-radius: 0;
}
.btn-secondary:hover {
  background: #0E97AA;
  border-color: #0E97AA;
  color: #fff;
}
.btn-secondary:focus,
.btn-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(14, 151, 170, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #fff;
  background-color: #0E97AA;
  border-color: #0E97AA;
}
.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #0E97AA;
  border-color: rgba(24, 95, 129, 0.2);
}
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(24, 95, 129, 0.2);
}
.btn-facebook {
  text-decoration: none;
  color: #fff;
  background: #1b74e4;
}
.btn-facebook i {
  margin-right: 1rem;
}
.btn-facebook:hover {
  background: #1c7aef;
  color: #fff;
}
.btn-google {
  background: #C94439;
  color: #fff;
  text-decoration: none;
}
.btn-google i {
  margin-right: 1rem;
}
.btn-google:hover {
  background: #d94a3d;
  color: #fff;
}
header {
  position: relative;
  background: #fff;
  width: 100%;
  z-index: 10;
  border-bottom: 2px solid #75AEE6;
}
header .container {
  position: relative;
}
header .logo {
  display: none;
}
header nav {
  color: #185f81;
  font-weight: 300;
  text-align: center;
}
header nav ul {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
header nav ul li {
  margin: 0;
  padding: 0;
  display: inline-block;
}
header nav ul li a {
  display: block;
  padding: 1rem;
}
header nav ul li.active {
  background: #75aee6;
  color: #fff;
}
header ul.user_auth {
  display: inline-block;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
header ul.user_auth li {
  margin: 0;
  padding: 0;
}
header ul.user_auth li a {
  color: #fcc400;
}
header.absolute {
  background: rgba(24, 95, 129, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: none;
}
header.absolute nav {
  color: #fff;
  font-weight: 300;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}
header.absolute nav ul li.active {
  background: #185f81;
}
.mobileMenuSwitch {
  background: #fff;
  padding: 0 10px;
  font-size: 40px;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1000;
  display: none;
}
body.absolute .mobileMenuSwitch,
body.nav-active .mobileMenuSwitch {
  color: #fff;
  background: transparent;
}
@media (max-width: 868px) {
  .mobileMenuSwitch {
    display: block;
  }
  header,
  header.absolute {
    transition: 0.2s all ease-in-out;
    display: block;
    left: -100%;
    top: 0;
    position: absolute;
    background: rgba(24, 95, 129, 0.99);
    min-height: 100vh;
  }
  header .logo,
  header.absolute .logo {
    display: block;
    text-align: center;
    padding: 2rem 0;
  }
  header .logo img,
  header.absolute .logo img {
    height: 50px;
  }
  header nav ul,
  header.absolute nav ul {
    display: block;
  }
  header nav ul li,
  header.absolute nav ul li {
    display: block;
    font-size: 1.2em;
  }
  header nav ul li a,
  header.absolute nav ul li a {
    padding: 0.7rem 1rem;
  }
  body.nav-active header {
    left: 0;
  }
  body.nav-active header nav {
    color: #fff;
  }
}
.topBackground {
  background-color: #185f81;
  background: #363B4B;
  height: 95vh;
  display: flex;
  align-items: center;
  position: relative;
}
.topBackground:before {
  content: "";
  width: 100%;
  height: 101%;
  position: absolute;
  top: 0px;
  left: 0;
  background-image: url(../image/waves.svg);
  background-position: center top;
  background-size: 120% 100px;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  z-index: 2;
}
@media (max-width: 868px) {
  .topBackground:before {
    background-size: 200% 70px;
  }
}
.topBackground__body {
  text-align: center;
  color: #fff;
  z-index: 3;
  position: relative;
}
.topBackground__body img {
  display: inline-block;
  width: 200px;
  margin-bottom: 2rem;
}
@media (max-width: 868px) {
  .topBackground__body img {
    width: 100px;
  }
}
.topBackground__title {
  font-family: "Nanum Brush Script", Sans-serif;
  font-size: 4em;
  margin-bottom: 0rem;
}
@media (max-width: 1262px) {
  .topBackground__title {
    font-size: 3em;
  }
}
@media (max-width: 868px) {
  .topBackground__title {
    font-size: 2.8em;
  }
}
.topBackground__subheader {
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 2rem;
  font-size: 0.8em;
  letter-spacing: 0.3rem;
}
.topBackground__subtitle {
  font-weight: 100;
  font-size: 3em;
  line-height: 1em;
}
@media (max-width: 1262px) {
  .topBackground__subtitle {
    font-size: 2.8em;
  }
}
@media (max-width: 868px) {
  .topBackground__subtitle {
    font-size: 2.5em;
  }
}
.topBackground__subtitle b {
  color: #fcc400;
  font-weight: 300;
}
.topBackground__video {
  position: absolute;
  opacity: 0.6;
  top: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background: #000;
  /*
        iframe {
            width: 100vw;
            height: 56.3vw;
            position: absolute;
            left: 0;
            top: 50%;
            margin-top: -28.15vw;
            opacity: 0.7;
        }*/
  /*
        video {
            width: 100vw;
            height: 56.3vw;

            @media (max-aspect-ratio: ~"16/11") {
                height: 100%;
                width: 160vh;
                margin: 0 -35vh;
            }
        }*/
}
.topBackground__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-aspect-ratio: 16/9) {
  .topBackground__video iframe {
    height: 90vh;
    width: 160vh;
    left: 50%;
    margin-left: -90vh;
    top: 0;
    margin-top: 0;
  }
}
.panelGray {
  background-color: #e6f0fa;
  background-image: url(../image/horizon.svg);
  background-position: center top;
  background-size: 2500px 130px;
  background-repeat: no-repeat;
  padding: 10rem 0 6rem 0;
}
@media (max-width: 1600px) {
  .panelGray {
    background-size: 1600px 130px;
  }
}
@media (max-width: 868px) {
  .panelGray {
    background-size: 1000px 130px;
  }
}
@media (max-width: 576px) {
  .panelGray {
    background-size: 600px 100px;
  }
}
.panelGray__padbody {
  padding: 0 10%;
}
.personItem {
  text-align: center;
  margin-bottom: 4rem;
}
.personItem__thumb {
  overflow: hidden;
  margin-bottom: 1rem;
  border: 4px solid #fff;
  border-radius: 50%;
  display: inline-block;
  width: 80%;
  box-shadow: 0px 5px 20px rgba(54, 59, 75, 0.5);
  transition: 0.2s all ease-in-out;
}
.personItem__thumb img {
  display: inline-block;
  width: 100%;
  border-radius: 50%;
  transition: 0.2s all ease-in-out;
}
.personItem:hover .personItem__thumb {
  transform: scale(1.05);
}
.personItem:hover .personItem__thumb img {
  transform: scale(1.1) rotate(-1deg);
}
.personItem__name {
  color: #185f81;
  font-weight: 500;
}
.personItem__title {
  opacity: 0.5;
  margin-bottom: 1rem;
}
.personItem__link {
  margin-top: 1rem;
}
.personItem__link a {
  padding: 0.3em 2em;
  font-size: 0.7em;
}
.personItem__text {
  font-size: 0.8em;
}
.header1 {
  font-weight: 100;
  font-size: 2.5em;
  color: #363B4B;
  margin: 0 0 1.5rem 0;
  padding: 0;
  line-height: 1.1em;
  /*
    span {
        color: @colorGrayDark;
        font-size: 0.5em;
        display: block;
        margin: 0;
        padding: 0;
        line-height: 1.2em;
        margin-top: 1rem;
    }
    span.feel {
        font-family: @fontSecondary;
        font-size: 1.5em;
        color: @colorBlue;
        font-weight: 600;
    }*/
}
@media (max-width: 1262px) {
  .header1 {
    font-size: 2.3em;
  }
}
@media (max-width: 868px) {
  .header1 {
    font-size: 2.1em;
  }
}
.header1 b {
  font-weight: 300;
  color: #0E97AA;
}
.header1.-vb b {
  color: #75AEE6;
}
.header1 span {
  display: block;
}
.header1__sm {
  font-size: 0.6em;
  line-height: 1em;
}
.header1__sub {
  margin-top: 1rem;
  font-size: 0.8em;
  line-height: 1.1em;
}
.header2 {
  font-weight: 100;
  font-size: 1.5em;
  color: #185f81;
  margin: 0 0 1.5rem 0;
  padding: 0;
  line-height: 1.1em;
}
.features {
  padding: 2rem 0;
  font-size: 0.95em;
  /*&.-vb {
        .features__no {
            color: @colorBlueLight;
        }

    }*/
}
.features [class*="col-"] {
  margin-bottom: 2rem;
}
.features__no {
  font-weight: 600;
  color: #0E97AA;
  font-size: 3em;
  margin: 0 0 1rem 0;
  padding: 0;
}
.features__label {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.95em;
  letter-spacing: 0.3em;
  color: #185f81;
  margin: 0 0 1rem 0;
  padding: 0;
}
.intro1 {
  padding: 2rem 0 4rem 0;
}
.intro2 {
  padding: 2rem 0;
}
.panelParalax {
  background-position: center center;
  background-attachment: fixed;
  position: relative;
  min-height: 60vh;
}
.panelParalax .icon {
  color: #fcc400;
  font-size: 3rem;
  text-align: center;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}
.panelParalax.-szkolenia {
  background-image: url(../image/wepik-202226-23424.jpg);
  background-size: 120% auto;
  background-position: left center;
  /*@media(max-width: @mdBreakpoint) {
            background-size: cover;
        }*/
}
@media (max-width: 1262px) {
  .panelParalax.-szkolenia {
    background-size: auto 100%;
    background-position: center center;
  }
}
.panelParalax__body {
  top: -1px;
  left: 0;
  position: absolute;
  background-color: rgba(24, 95, 129, 0.5);
  transition: 0.3s all ease-in-out;
  min-height: 101%;
  width: 100%;
  display: flex;
  align-items: center;
  background-image: url(../image/panelParalaxWhite.svg);
  background-position: bottom -5px center;
  background-size: 100% 200px;
  background-repeat: no-repeat;
}
.panelParalax__body:hover {
  background-color: rgba(24, 95, 129, 0.6);
}
@media (max-width: 868px) {
  .panelParalax__body {
    background-size: 100% 100px;
  }
}
@media (max-width: 576px) {
  .panelParalax__body {
    background-size: 100% 50px;
  }
}
.panelParalax__body:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../image/panelParalaxGray.svg);
  background-position: bottom -5px center;
  background-size: 100% 200px;
  background-repeat: no-repeat;
  transform: rotate(180deg);
}
@media (max-width: 868px) {
  .panelParalax__body:before {
    background-size: 100% 100px;
  }
}
@media (max-width: 576px) {
  .panelParalax__body:before {
    background-size: 100% 50px;
  }
}
.panelParalax__body .header1 {
  color: #fff;
  text-shadow: 1px 1px 2px #185f81;
}
.panelParalax .container {
  position: relative;
  z-index: 2;
}
.panelParalax .btn {
  border-width: 3px;
  font-size: 1.2em;
  padding: 1rem 5rem;
  border-radius: 5px;
}
.about {
  padding: 3rem 0;
}
.about__item {
  background: #fff;
  box-shadow: 0px 0px 50px rgba(24, 95, 129, 0.1);
  border-radius: 20px;
  padding: 3rem;
  margin-top: 3rem;
  text-align: center;
}
@media (max-width: 1262px) {
  .about__item {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.about__item p {
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
}
.about__item .icon {
  margin: 0 auto 2rem auto;
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fcc400;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__item .icon i {
  color: #fff;
  font-size: 30px;
}
.about ul {
  list-style-type: none;
}
.about ul li {
  margin-bottom: 1rem;
}
.company-reference-home-index {
  background-color: #e6f0fa;
  background-image: url(../image/horizon.svg);
  background-position: center top;
  background-size: 2500px 130px;
  background-repeat: no-repeat;
  padding: 10rem 0 6rem 0;
}
.company-reference-home-index__items {
  padding: 0 100px;
}
.company-reference-home-index__item {
  padding: 0 1rem;
  font-size: 0.9em;
  text-align: center;
  color: #363B4B;
}
.company-reference-home-index__image {
  display: inline-block;
  width: 180px;
  max-width: 80%;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(54, 59, 75, 0.2);
  margin-bottom: 1rem;
}
.company-reference-home-index__image img,
.company-reference-home-index__image picture {
  width: 100%;
  border-radius: 50%;
  border: 2px solid #fff;
  display: block;
}
.company-reference-home-index__text {
  font-style: italic;
}
.company-reference-home-index__title {
  font-weight: 600;
  font-size: 1.1em;
}
.company-reference-home-index .slick-prev,
.company-reference-home-index .slick-next {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 100px;
  margin-top: -50px;
  border: 0;
  background: #0E97AA;
  color: #fff;
  border-radius: 10px;
}
@media (max-width: 576px) {
  .company-reference-home-index .slick-prev,
  .company-reference-home-index .slick-next {
    width: 30px;
  }
}
.company-reference-home-index .slick-next {
  right: 0;
}
.company-reference-home-index .slick-prev {
  left: 0;
}
.company-reference-home-index ul.slick-dots {
  margin-top: 0.5rem;
  list-style-type: none;
  font-size: 0;
  color: transparent;
  text-align: center;
}
.company-reference-home-index ul.slick-dots li {
  display: inline-block;
  margin: 5px;
}
.company-reference-home-index ul.slick-dots li button {
  border-radius: 50%;
  background: #0E97AA;
  border: 0;
  width: 26px;
  height: 26px;
}
.company-reference-home-index ul.slick-dots li.slick-active button {
  background: #363B4B;
}
/*
.company-reference-home-index {
    background: url(../image/DSC_7024-scaled.jpg) no-repeat center center;
    background-size: cover;
    color: #ffffff;
    .header1 {
        color: #fff;
    }
    &__introtext {
        color: #fff;
        margin: 0 0 2rem 0;
    }
    &__body {
        padding: 10rem 0;
        background-color: rgba(24, 95, 129,0.6);
        color: @colorBlue;
    }
    &__item {
        padding: 3rem 2rem;
        border-radius: 2rem;
        background-color: #ffffff;
    }
    &__title {
        font-weight: 600;
        color: @colorBlue;
        margin: 0;
    }
    &__text {
        color: @colorBlue;
        margin: 0 0 1rem 0;
        font-style: italic;
    }
}*/
.holidayGreece {
  background: url(../image/aerial-view-seashore-koh-tao-island-thailand-scaled.jpeg) no-repeat center center;
  background-size: cover;
  color: #fff;
}
.holidayGreece__body {
  text-align: center;
  background-color: rgba(24, 95, 129, 0.7);
  padding: 20rem 0;
}
.holidayGreece .header1 {
  color: #fff;
}
.faq-index {
  padding: 8rem 0;
  text-align: center;
}
.faq-acc {
  text-align: left;
}
.faq-acc__item {
  padding: 1.5rem 1rem;
  font-size: 0.9em;
  border-top: 1px solid #185f81;
}
.faq-acc__title {
  cursor: pointer;
  font-weight: 400;
}
.faq-acc__title i {
  font-size: 0.6em;
  padding-right: 1rem;
}
.faq-acc__title .fa-angle-down {
  display: none;
}
.faq-acc__answer {
  display: none;
  padding: 1.5rem 1.9rem;
  transition: 0.2s all ease-in-out;
}
.faq-acc__item.active .faq-acc__title {
  color: #185f81;
  font-weight: 600;
}
.faq-acc__item.active .faq-acc__title .fa-angle-right {
  display: none;
}
.faq-acc__item.active .faq-acc__title .fa-angle-down {
  display: inline-block;
}
.faq-acc__item.active .faq-acc__answer {
  display: block;
}
.faq-acc .question {
  color: #fcc400;
  margin: 2rem 0;
  text-transform: uppercase;
  font-size: 0.7em;
  letter-spacing: 0.2em;
}
.panel-image {
  background-image: url(../image/jump-into-water.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  text-align: left;
  border-radius: 10px;
}
.panel-image__body {
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  align-items: center;
}
.panel-image__title {
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.3em;
}
.footer {
  background: linear-gradient(0deg, #0E97AA, #363B4B);
  background: #185f81;
  color: #fff;
  padding: 3rem 0 0 0;
  text-align: center;
}
.footer ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.footer ul li {
  margin: 0;
  padding: 0;
  display: inline-block;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.footer ul li:first-child {
  border: 0;
}
.footer ul li a {
  opacity: 0.7;
  font-size: 0.8em;
  padding: 0 1rem;
}
.subfooter {
  margin: 2rem 0 0 0;
  padding: 1rem 0;
  background: #363B4B;
  font-size: 0.8em;
  text-align: center;
  color: #e6f0fa;
}
.service-name {
  margin-bottom: 0.5rem;
  /*font-size: 3em;
    font-family: @fontSecondary;*/
}
.service-name img {
  height: 60px;
}
.social-media i {
  font-size: 40px;
}
.social-media a {
  margin: 0 1rem;
}
.social-media img {
  width: 13px;
  display: inline-block;
  top: -1px;
  right: -1px;
  position: relative;
}
.pageTopTraining {
  height: 400px;
  position: relative;
  background: #000;
  display: flex;
  align-items: center;
  color: #fff;
}
.pageTopTraining .container {
  z-index: 1;
}
.pageTopTraining:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.pageTopTraining.-gallery:before {
  opacity: 0.6;
  background-image: var(--bgImage);
  background-size: cover;
  background-attachment: fixed;
}
.pageTop {
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  height: 800px;
  position: relative;
  background: #54595f;
  background: #185f81;
  background: #000;
  display: flex;
  align-items: center;
  color: #fff;
}
.pageTop .container {
  z-index: 1;
}
@media (max-width: 868px) {
  .pageTop {
    height: auto;
    min-height: 80vh;
  }
}
.pageTop__customBackground {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.5;
}
.pageTop:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.pageTop.-training:before {
  opacity: 0.5;
  background-image: url(../image/bg_training.jpg);
}
.pageTop.-team:before {
  opacity: 0.6;
  background-image: url(../image/bg_team.jpg);
}
.pageTop.-captain:before {
  opacity: 0.6;
  background-image: url(../image/bg_captain.jpg);
}
.pageTop.-cruise:before {
  opacity: 0.6;
  background-image: url(../image/bg_cruise.jpg);
}
.pageTop.-charter:before {
  opacity: 0.6;
  background-image: url(../image/bg_charter.jpg);
  filter: hue-rotate(20deg);
}
.pageTop.-destination:before {
  opacity: 0.7;
  background-image: url(../image/bg_destination.jpg);
}
.pageTop.-contact:before {
  opacity: 0.6;
  background-image: url(../image/bg_contact.jpg);
}
.pageTop.-holiday:before {
  opacity: 0.5;
  background-image: url(../image/bg_hiliday.jpg);
}
.pageTop.-gallery:before {
  opacity: 0.6;
  background-image: var(--bgImage);
  background-size: cover;
  background-attachment: fixed;
}
.pageTop__header {
  font-size: 2.3em;
  font-weight: 300;
  line-height: 1em;
  margin: 0 0 2rem 0;
}
.pageTop__header span {
  display: block;
}
.pageTop__header .suptitle {
  font-size: 0.6em;
  margin: 0 0 1rem 0;
}
.pageTop__header b {
  color: #fcc400;
  font-weight: 300;
}
.pageTop__logo {
  width: 150px;
}
@media (max-width: 868px) {
  .pageTop__logo {
    width: 70px;
  }
}
.pageTop__logo-contact img {
  width: 150px;
}
@media (max-width: 868px) {
  .pageTop__logo-contact img {
    width: 70px;
  }
}
.pageTop__logo-contact {
  text-align: center;
  margin: 0 0 2rem 0;
}
.pageTop__logo-sm {
  width: 100px;
  margin-bottom: 2rem;
  padding-left: 3rem;
}
.pageTop__logo-sm2 {
  width: 200px;
  margin-bottom: 2rem;
  padding-left: 3rem;
}
@media (max-width: 868px) {
  .pageTop__logo-sm2 {
    width: 150px;
  }
}
.page {
  padding: 5rem 0;
}
@media (max-width: 576px) {
  .page {
    padding: 2.5rem 0;
  }
}
.page h1,
.page h2,
.page h3,
.page h4,
.page h5 {
  font-weight: 100;
  font-size: 2.5em;
  color: #363B4B;
  margin: 0 0 1.5rem 0;
  padding: 0;
  line-height: 1.1em;
}
@media (max-width: 1262px) {
  .page h1,
  .page h2,
  .page h3,
  .page h4,
  .page h5 {
    font-size: 2.3em;
  }
}
@media (max-width: 868px) {
  .page h1,
  .page h2,
  .page h3,
  .page h4,
  .page h5 {
    font-size: 2.1em;
  }
}
.page h1 b,
.page h2 b,
.page h3 b,
.page h4 b,
.page h5 b {
  font-weight: 300;
  color: #0E97AA;
}
.page2 {
  padding: 5rem 0;
}
@media (max-width: 576px) {
  .page2 {
    padding: 2.5rem 0;
  }
}
.feelthewind {
  max-width: 90%;
}
.galleryBox1 .slider-for {
  border-radius: 10px;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.galleryBox1 .slider-for img {
  display: block;
  width: 100%;
}
.galleryBox1 .slider-for li {
  margin: 0;
  padding: 0;
}
.galleryBox1 .slider-nav {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin: 0.5rem 0 0 0;
  padding: 0;
}
.galleryBox1 .slider-nav img {
  display: block;
  width: 100%;
}
.galleryBox1 .slider-nav li {
  margin: 0 0.3rem;
  padding: 0;
}
.galleryBox1 .slider-nav .slick-prev,
.galleryBox1 .slider-nav .slick-next {
  background: #fff;
  position: absolute;
  top: 50%;
  margin-top: -25px;
  z-index: 2;
  border: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 0 10px #185f81;
}
.galleryBox1 .slider-nav .slick-prev {
  left: 20px;
}
.galleryBox1 .slider-nav .slick-next {
  right: 20px;
}
.cruise-total-bar {
  text-align: center;
  border-top: 1px solid rgba(117, 174, 230, 0.2);
  padding: 4rem 0;
}
.cruise-total-bar__title {
  font-size: 2em;
  color: #185f81;
  margin: 0 0 0 0;
  padding: 0 0 1em 0;
}
.cruise-total-bar__title span {
  display: block;
  font-size: 0.4em;
}
.cruise-total-bar .label {
  font-size: 0.9em;
}
.cruise-total-bar .value {
  font-size: 2em;
  font-weight: 600;
  color: #0E97AA;
}
.cruise-slick-home {
  padding: 0 50px;
  position: relative;
}
@media (max-width: 868px) {
  .cruise-slick-home {
    padding: 0 40px;
  }
}
@media (max-width: 576px) {
  .cruise-slick-home {
    padding: 0 30px;
  }
}
.cruise-slick-home .slick-disabled {
  opacity: 0.1;
}
.cruise-slick-home .slick-prev,
.cruise-slick-home .slick-next {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 100px;
  margin-top: -50px;
  border: 0;
  background: #0E97AA;
  color: #fff;
  border-radius: 10px;
}
@media (max-width: 576px) {
  .cruise-slick-home .slick-prev,
  .cruise-slick-home .slick-next {
    width: 30px;
  }
}
.cruise-slick-home .slick-next {
  right: 0;
}
.cruise-slick-home .slick-prev {
  left: 0;
}
.cruise-slick-home .cruise-item {
  margin-left: 20px;
  margin-right: 20px;
}
.cruise-index {
  padding: 3rem 0;
}
.cruise-item {
  margin-bottom: 2rem;
  position: relative;
}
.cruise-item__date {
  position: absolute;
  top: 0px;
  right: 0px;
  background: #fcc400;
  background: #e6f0fa;
  color: #363B4B;
  padding: 0.5rem;
  border-top-right-radius: 7px;
  border-bottom-left-radius: 7px;
  box-shadow: -3px 3px 5px rgba(0, 0, 0, 0.5);
  transition: 0.2s all ease-in-out;
}
.cruise-item__date span {
  display: block;
  text-align: center;
  line-height: 1em;
}
.cruise-item__date .day {
  font-size: 2em;
  font-weight: 600;
}
.cruise-item__date .month {
  font-size: 0.5em;
}
.cruise-item__date .year {
  font-size: 0.7em;
}
.cruise-item__date .days {
  font-size: 0.7em;
  background: #363B4B;
  color: #fff;
  display: block;
  margin: 5px -0.5rem -0.5rem -0.5rem;
  padding: 5px 0;
}
.cruise-item__price {
  position: absolute;
  bottom: 2px;
  left: 2px;
  font-size: 0.8em;
  background: #363B4B;
  background: #e6f0fa;
  color: #363B4B;
  padding: 0.25rem 0.5rem;
  font-weight: 600;
  border-bottom-left-radius: 7px;
  border-top-right-radius: 7px;
  z-index: 10;
}
.cruise-item__crew_status {
  position: absolute;
  top: 15px;
  left: 0px;
  padding: 5px 10px;
  font-size: 11px;
  background: #eee;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
}
.cruise-item__crew_status.free {
  background: #178000;
  color: #d1ff00;
}
.cruise-item__crew_status.last {
  background: #f7e300;
}
.cruise-item__crew_status.complete {
  background: #ad0a00;
  color: #ffe7fa;
}
.cruise-item:hover .cruise-item__image img {
  transform: scale(1.2) rotate(1deg);
}
.cruise-item:hover .cruise-item__date {
  transform: scale(1.2);
  transform-origin: top right;
  box-shadow: -10px 10px 15px rgba(0, 0, 0, 0.5);
}
.cruise-item__image {
  position: relative;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 10px;
  /*&:before {
            content: "";
            width: 100%;
            height: 40px;
            position: absolute;
            bottom: 0;
            left: 0;
            background-image: url(../image/waves.svg);
            background-position: top -5px center;
            background-size: 100% 40px;
            background-repeat: no-repeat;
            transform: rotate(180deg);
        }*/
}
.cruise-item__image img {
  display: block;
  border-radius: 10px;
  transition: 0.3s all ease-in-out;
}
.cruise-item__region {
  font-size: 0.7em;
  color: #54595f;
}
.cruise-item__title {
  color: #185f81;
  font-size: 1.3em;
  line-height: 1.2em;
}
.cruise-item__info {
  font-size: 0.9em;
  margin-bottom: 1rem;
  color: #185f81;
}
.cruise-show__region {
  font-weight: 300;
  font-size: 1em;
  color: #75AEE6;
}
.cruise-show__title {
  font-weight: 100;
  font-size: 2.5em;
  color: #185f81;
  margin: 0 0 1rem 0;
  padding: 0;
  line-height: 1.1em;
}
.cruise-show__title b {
  font-weight: 300;
  color: #fcc400;
}
.cruise-show__infobox {
  border-top: 1px solid #75AEE6;
  border-bottom: 1px solid #75AEE6;
  padding: 1rem 0;
  margin-bottom: 2rem;
}
.cruise-show__text {
  font-size: 0.8em;
}
.cruise-show__image {
  position: relative;
  margin-bottom: 1rem;
  /*&:before {
            content: "";
            width: 100%;
            height: 40px;
            position: absolute;
            bottom: 0;
            left: 0;
            background-image: url(../image/waves.svg);
            background-position: top -5px center;
            background-size: 100% 40px;
            background-repeat: no-repeat;
            transform: rotate(180deg);
            z-index: 100;
        }*/
}
.cruise-show__image img {
  display: block;
}
.cruise-show .label {
  margin-bottom: 0.5rem;
  font-size: 0.8em;
}
.cruise-show .date span {
  background: #75AEE6;
  padding: 0.25rem 1rem;
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
}
.cruise-show .price span {
  border: 2px solid #75AEE6;
  padding: 0.25rem 1rem;
  font-weight: 600;
  border-radius: 5px;
  font-size: 1.3em;
}
.cruise-show .included {
  font-size: 0.8em;
  font-weight: 400;
  border-left: 1px solid rgba(14, 151, 170, 0.2);
  padding-left: 1rem;
}
.cruise-show .included p {
  margin: 0 0 0.5rem 0;
}
.cruise-show .pricedetails {
  margin-bottom: 1rem;
  font-size: 0.8em;
}
.cruise-show .pricedetails span {
  border: 2px solid #75AEE6;
  padding: 0.15rem 1rem;
  font-weight: 600;
  font-size: 0.8em;
  border-radius: 5px;
}
.cruise-show .cashinfo {
  font-size: 1em;
  margin: 0.5rem 0 0 0;
}
.cruise-show__registration {
  padding: 2rem 1rem 2rem 1rem;
  border: 1px solid #75AEE6;
  text-align: center;
  background: #fff;
  margin-bottom: 3rem;
}
.cruise-show__registration .defaultForm {
  font-size: 0.8em;
  text-align: left;
}
.cruise-show__registration .defaultForm hr {
  margin: 0 0 2rem 0;
}
.cruise-show__registration .defaultForm .attend-child {
  font-size: 1.5em;
  font-weight: 600;
  margin: 0 0 1rem 0;
}
.cruise-show__registration .defaultForm .form-child {
  border-radius: 1rem;
  background: rgba(117, 174, 230, 0.1);
  padding: 1rem;
  margin: 0 0 1rem 0;
  display: none;
}
.cruise-show__registration .defaultForm .form-child-active {
  display: block;
}
.cruise-show__userdata {
  font-size: 0.7em;
}
.cruise-show__userdata a {
  margin-top: 0.25rem;
}
.cruise-show__userdata .label {
  margin: 0 0 0 0;
}
.cruise-show__userdata .value {
  font-weight: 400;
}
.cruise-show__userdata .value span {
  color: red;
  font-weight: 600;
}
.cruise-show__registration_title {
  text-align: center;
  font-weight: 600;
  margin: 2rem 0 0 0;
}
.cruise-show__registration_info {
  text-align: center;
  font-size: 0.8em;
  margin: 0 0 2rem 0 ;
}
.cruise-show__registration_confirmation {
  border: 2px solid #4e9443;
  background: #dfffd0;
  padding: 1rem;
  text-align: center;
  color: #4e9443;
}
.cruise-show__registration_confirmation a {
  font-weight: bold;
}
.logo-top {
  text-align: center;
  margin-bottom: 5rem;
}
.logo-top img {
  width: 200px;
}
.defaultForm hr {
  margin: 3rem 0;
}
.defaultForm .form-group {
  margin-bottom: 1rem;
}
.defaultForm .formelement-error {
  font-weight: 600;
  border-left: 10px solid #C61A00;
  background: linear-gradient(90deg, rgba(198, 26, 0, 0.2), #fff);
  color: #C61A00;
  padding: 0.5rem;
  font-size: 0.6em;
}
.defaultForm .custom-file {
  font-size: 16px;
}
.defaultForm .form-control {
  border: 1px solid #75AEE6;
  border-bottom: 2px solid #75AEE6;
  border-radius: 0;
  padding: 0.7rem 1rem;
  height: auto;
  font-weight: 500;
  box-shadow: 0 5px 10px rgba(24, 95, 129, 0.1);
  color: #185f81;
}
.defaultForm .form-control::-webkit-input-placeholder {
  /* Edge */
  color: rgba(24, 95, 129, 0.5);
  font-fize: 0.8em;
  font-weight: 300;
  font-style: italic;
}
.defaultForm .form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: rgba(24, 95, 129, 0.5);
  font-fize: 0.8em;
  font-weight: 300;
  font-style: italic;
}
.defaultForm .form-control::placeholder {
  color: rgba(24, 95, 129, 0.5);
  font-fize: 0.8em;
  font-weight: 300;
  font-style: italic;
}
.defaultForm label {
  font-weight: 300;
  padding: 0.2rem 0;
  font-size: 0.9em;
  margin: 0;
}
.defaultForm .value {
  font-weight: 600;
  margin: 0;
}
.defaultForm a {
  color: #185f81;
  text-decoration: underline;
}
.panel {
  margin: 0 0 2rem 0;
}
.panel__header {
  border-bottom: 1px solid rgba(24, 95, 129, 0.2);
  font-weight: 100;
  font-size: 1.2em;
  color: #185f81;
  line-height: 1.1em;
  margin: 0 0 1rem 0;
  padding: 0.5rem 1rem;
}
.user_avatar {
  margin-bottom: 2rem;
}
.user_avatar img {
  border-radius: 50%;
  width: 200px;
  box-shadow: 0 0 20px rgba(24, 95, 129, 0.1);
}
.usernav__avatar {
  margin-bottom: 1rem;
}
.usernav__avatar img {
  border-radius: 50%;
  width: 30%;
  box-shadow: 0 0 20px rgba(24, 95, 129, 0.1);
}
.usernav__name {
  margin-bottom: 1rem;
}
.usernav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.usernav ul li {
  margin: 0;
  padding: 0;
  display: block;
  margin-bottom: 3px;
}
.usernav ul li a {
  display: block;
  border-left: 5px solid #185f81;
  padding: 0.5rem 1rem;
  background: linear-gradient(90deg, rgba(117, 174, 230, 0.1), #fff);
}
.usernav ul li.active a {
  border-color: #fcc400;
  font-weight: 500;
}
.user-cruise__item {
  border-top: 1px solid #e6f0fa;
  padding: 1rem;
}
.user-cruise__date {
  font-weight: 300;
  color: #75AEE6;
  font-size: 1em;
  margin-bottom: 0.4rem;
}
.user-cruise__name {
  color: #185f81;
  font-weight: 500;
  font-size: 1.2em;
  line-height: 1.2em;
  margin-bottom: 0.5rem;
}
.user-cruise__name i {
  font-size: 0.7em;
  opacity: 0.5;
}
.user-cruise__boat {
  margin-bottom: 0.5rem;
  font-weight: 400;
  color: #185f81;
}
.user-cruise__boat i {
  font-size: 0.7em;
  opacity: 0.5;
}
.user-cruise__port {
  font-size: 0.8em;
  margin-bottom: 0.5rem;
  font-weight: 400;
  color: #185f81;
}
.user-cruise__port i {
  font-size: 0.7em;
  opacity: 0.5;
}
.user-cruise__price {
  font-size: 0.8em;
  margin-bottom: 1rem;
}
.user-cruise__image {
  margin: 1rem 0;
}
.user-cruise__image img,
.user-cruise__image picture {
  border-radius: 1rem;
}
.user-cruise__crewlist {
  font-size: 0.8em;
}
.user-cruise__crewlist .row {
  border-bottom: 1px solid #75AEE6;
  padding: 0.5rem 0;
}
.user-cruise-captain ul {
  margin: 2rem 0;
  padding: 0 0 0 1rem;
  list-style-type: none;
  border-bottom: 1px solid #185f81;
}
.user-cruise-captain ul li {
  display: inline-block;
  border: 1px solid #185f81;
  position: relative;
  bottom: -1px;
  background: rgba(24, 95, 129, 0.2);
}
.user-cruise-captain ul li a {
  display: block;
  padding: 5px 20px;
}
.user-cruise-captain ul li.active {
  border-bottom: 1px solid #fff;
  background: #fff;
}
.contact__company {
  text-align: center;
  margin: 2rem 0 0 0;
}
.contact__company b {
  color: #185f81;
  font-weight: 600;
}
.contact-item {
  color: #fcc400;
  font-weight: 300;
}
.contact-item a {
  color: #185f81;
  font-weight: 600;
}
.contact-label {
  text-transform: uppercase;
  font-size: 0.8em;
  color: #75AEE6;
  margin-bottom: 1rem;
}
.contact-icon {
  margin: 1rem 0 0 0;
  font-size: 30px;
}
.contact-form {
  margin: 0 20%;
}
@media (max-width: 868px) {
  .contact-form {
    margin: 0 5%;
  }
}
.galleryTop {
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  height: 800px;
  background: #363B4B;
  color: #fff;
  position: relative;
}
@media (max-width: 868px) {
  .galleryTop {
    height: auto;
    min-height: 80vh;
  }
}
.galleryTop__slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: 1;
}
.galleryTop__item {
  width: 100%;
  height: 800px;
  background-size: cover;
}
.gallery__item {
  margin: 0 0 2rem 0;
}
.gallery__item img {
  border-radius: 10px;
  display: block;
  box-shadow: 0 0 5px #ccc;
}
.gallery__title {
  font-weight: 400;
  font-size: 1.3em;
  margin: 0 0 1rem 0;
}
.gallery__lead {
  font-size: 0.8em;
  margin-top: -1rem;
}
.lightbox-gallery img,
.lightbox-gallery picture {
  display: block;
  width: 100%;
  border-radius: 10px;
}
.destination-index {
  padding: 5rem 0;
}
.destination-item {
  padding: 0 10%;
}
.destination-item__title {
  font-weight: 600;
  font-size: 1.5em;
  color: #185f81;
}
.destination-item__lead {
  font-size: 0.8em;
}
.destination-item__image img {
  display: block;
  width: 100%;
}
.destination-cruise {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #75AEE6;
}
.destination-cruise__title {
  color: #185f81;
  font-size: 1.5em;
  font-weight: 400;
  margin: 0;
  padding: 0 0 3rem 0;
  text-align: center;
}
.policy_text_message {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 0;
  font-size: 0.7em;
  background: rgba(255, 255, 255, 0.9);
  z-index: 10000;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.policy_text_message .btn-accept {
  background: #50ca50;
  color: #fff;
  border-color: #50ca50;
}
.policy_text_message .btn-reject {
  border-color: #666;
}
.training-index {
  padding: 4rem 0;
}
.training-index__image {
  background: #fafafa;
  margin-bottom: 0.5rem;
}
.training-index__image img,
.training-index__image picture {
  display: block;
  width: 100%;
}
.training-index__no {
  color: #0E97AA;
  font-weight: 600;
  font-size: 3rem;
  margin: -5rem 0 0 0;
  line-height: 1em;
  display: block;
}
.training-index__no span {
  padding: 1rem;
  background: #fff;
  display: inline-block;
  position: relative;
  left: -1rem;
}
.training-index a {
  display: block;
}
.training-index__title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2em;
  color: #363B4B;
  margin: 1rem 0 1rem 0;
}
.training-index__lead {
  font-size: 0.9em;
}
.training-course-show {
  text-align: center;
}
.training-course-show__city {
  font-size: 1.5em;
  margin: 1rem 0 0 0;
}
.training-course-show__address {
  margin: 0 0 2rem 0;
}
.training-course-show__authinfo {
  margin: 3rem 0 0 0;
  border: 1px solid #185f81;
  padding: 2rem;
}
.training-course-show__price {
  margin: 0 0 3rem 0;
  font-weight: 600;
  font-size: 1.5em;
}
.training-course-show__confirmation {
  margin: 0 0 3rem 0;
  background: #fcc400;
  padding: 2rem;
}
.training-course-item {
  border: 1px solid #e6f0fa;
  border-bottom: 3px solid rgba(24, 95, 129, 0.2);
  background: #e6f0fa;
  margin: 0 0 1rem 0;
  padding: 1rem;
  position: relative;
  text-align: center;
  border-radius: 1rem;
}
.training-course-item__dates {
  display: flex;
  justify-content: center;
}
.training-course-item__city {
  font-weight: 400;
  padding: 0.5rem 0;
}
.training-course-item__time {
  font-size: 0.8em;
  padding: 0.3rem 0;
  color: #185f81;
}
.training-course-item__time i {
  opacity: 0.5;
}
.training-course-item__date {
  border: 1px solid #185f81;
  line-height: 1em;
  background: #fff;
}
.training-course-item__date .day {
  display: block;
  font-size: 1.2em;
  padding: 0.5rem 1rem;
  font-weight: 600;
  color: #185f81;
}
.training-course-item__date .month {
  display: block;
  font-size: 0.9em;
  padding: 0 0.5rem 0.5rem 0.5rem;
  font-weight: 600;
  color: #185f81;
}
.training-course-item__date .year {
  display: block;
  font-size: 0.5em;
  padding: 0.15rem 0.5rem;
  font-weight: 600;
  background: #185f81;
  color: #fff;
}
.training-course-item__date.-to {
  margin-left: 10px;
}
.box-faq {
  margin-bottom: 4rem;
}
.box-faq .box-faq-panel {
  min-height: 280px;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px #000000;
  position: relative;
  background: #363B4B;
  border-radius: 15px;
  overflow: hidden;
}
.box-faq .box-content {
  z-index: 2;
}
.box-faq .box-title {
  font-weight: 600;
  font-size: 1.3em;
  margin: 0 0 0.3rem 0;
}
.box-faq a {
  display: inline-block;
  border: 2px solid #fff;
  padding: 0.3rem 2rem;
}
.box-faq a:hover {
  background: #fff;
  color: #363B4B;
  text-shadow: none;
}
.box-faq .panel-faq:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.75;
  background: url(../image/faq_bg.jpg) no-repeat center center;
  background-size: cover;
  z-index: 1;
}
.box-faq .panel-musthave:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.75;
  background: url(../image/mustHave_bg.jpg) no-repeat center center;
  background-size: cover;
}
.charter-user-opinion {
  padding: 4rem 0;
  text-align: center;
}
.charter-user-opinion h1,
.charter-user-opinion h2,
.charter-user-opinion h3,
.charter-user-opinion h4 {
  font-weight: 300;
}
.charter-user-opinion .defaultForm {
  margin: 3rem 20%;
}
@media (max-width: 1262px) {
  .charter-user-opinion .defaultForm {
    margin: 3rem 10%;
  }
}
@media (max-width: 868px) {
  .charter-user-opinion .defaultForm {
    margin: 3rem 0%;
  }
}
.charter-user-opinion__text {
  font-size: 1.5em;
  font-style: italic;
}
.form-opinion {
  font-size: 0.7em;
}
.form-opinion .form-group {
  margin-bottom: 1rem;
}
.form-opinion label {
  font-size: 0.8em;
}
.form-opinion input,
.form-opinion textarea {
  font-size: 0.9em;
  border-radius: 0;
}
.panel-header {
  font-weight: 600;
  padding: 1rem;
  border-bottom: 2px solid #185f81;
  color: #185f81;
}
.panel-body {
  padding: 1rem;
  border-bottom: 1px solid #eee;
  background: rgba(117, 174, 230, 0.1);
}
.partnersHome {
  padding: 4rem 0;
  backgropund: #fff;
}
.partnerItem {
  text-align: center;
}
.partnerItem img {
  display: inline-block;
  max-width: 130px;
  max-height: 70px;
}
@media (max-width: 576px) {
  .partnerItem img {
    max-width: 120px;
    max-height: 50px;
  }
}
.nausys-search-bar {
  background: rgba(230, 240, 250, 0.3);
  padding: 2rem 0;
}
.nausys {
  padding: 2rem 0;
}
.table {
  font-size: 1rem;
}
/*# sourceMappingURL=style.css.map */