

/* ============================================================
   KEY
/* ============================================================
    
    00. Reset
    01. Global classes - default
    02. Global classes - custom
    03. Grid
    04. Colors
    05. Fonts
    06. Forms
    07. Buttons
    08. Separators
    09. Parallax Background
    10. Animated effects
    11. Overlays
    12. Pages
    13. Includes and sections
    15. Cookies
    16. Popup
    17. Promotions
    18. Scrolling
    100. Media Queries
*/



/*  
==========================================================================
00. Reset
========================================================================== 
*/
html, body, div, span, applet, object, iframe, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, img, ins, kbd, q, s, samp,
small, tt, var, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video, input, textarea {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    font-family: "Roboto", Helvetica, sans;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
    min-width:  1000px;
    color: #4d4d4d;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-weight: inherit;
    font-size: 100%;
}
a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s all;
}
a:visited {
    color: inherit;
}
a:hover{
    transition: 0.2s all;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
#main *, #main-header *, #main-footer *, *, .form-container, .form-container * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body.opened {
    overflow: hidden;
}
main#main {
    min-height: 700px;
}



/*  
==========================================================================
01. Global classes - default
========================================================================== 
*/

.content, 
.side-content, 
.description {
    font-weight: 300;
    line-height: 1.35em !important;
    font-size: 1.2em;
}
.content p,
.side-content p, 
.description p{
    margin-bottom: 15px;
}
.content p:last-child, 
.side-content p:last-child, 
.description p:last-child{
    margin-bottom: 0;
}
.content a, 
.side-content a, 
.description a{
    text-decoration: underline;
}
.content-full-center {
    width: 800px;
    margin: 0 auto;
    text-align: center;
}
.content-full-center ul{
    display: inline-block;
    text-align: left;
}
.content li,
.side-content li, 
.description li{
    position: relative;
    padding-left: 25px;
    margin: 8px 0;
}
.content li:before, 
.side-content li:before, 
.description li:before {
    content: "·";
    position: absolute;
    top: 0;
    left: 0;
    color: #333;
    font-size: 3.4em;
}


.relative {position: relative;}
.clear {clear: both;}
.pull-right {float: right !important;}
.pull-left {float: left;}
.center-block {margin: 0 auto;}
.pad{padding: 15px;}
.pad-small{padding: 8px;}
.pad-h {padding: 0 15px;}
.pad-v {padding: 15px 0;}
.no-pad {padding: 0 !important}
.no-pad-top {padding-top: 0 !important;}
.no-pad-bot {padding-bottom: 0 !important;}
.no-pad-left {padding-left: 0 !important;}
.no-pad-right {padding-right: 0 !important;}
.text-center {text-align: center;}
.text-right {text-align: right;}
.text-left {text-align: left;}
.text-uppercase {text-transform: uppercase;}
.text-capitalize {text-transform: capitalize;}
.container {min-width: 1000px; max-width: 1200px; padding: 0 15px; margin: 0 auto; }
.small-container {min-width: 1000px; max-width: 1050px; padding: 0 15px; margin: 0 auto; }
.clearfix::after, .section:after, .container:after {content:""; display:block; clear:both;}
.box-image { overflow: hidden;  }
.box-image img {
    display: block;
}
.table{
    display: table;
    width: 100%;
}
.table-cell{
    display: table-cell;
    vertical-align: middle;
    float: none !important;
}
.hidden {
    display: none;
}
.img-responsive {
    width: 100%;
}
.img-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: 0.5s all;
}


/*  
==========================================================================
02. Global classes - custom
========================================================================== 
*/
.section {
    padding: 120px 0 120px;
}
.section-small {
    padding: 60px 0;
}
.section-small.right-background{
    padding: 0;
    margin: 35px 0;
}
.resize-on-hover img {
    -webkit-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}
.resize-on-hover:hover img {
    -webkit-transform: scale(1.025);
    -ms-transform: scale(1.025);
    -o-transform: scale(1.025);
    transform: scale(1.025);
}


/*  
==========================================================================
03. Grid
========================================================================== 
*/

.row {
    margin-left: -15px;
    margin-right: -15px;
}
.row-small {
    margin-left: -8px;
    margin-right: -8px;
}

/* Floating */
.col-custom, .col-fifth, .col-half, .col-third, .col-two-third, .col-complete, .col-one, .col-two, .col-three, .col-four, .col-five, .col-six, .col-seven, .col-eight, .col-nine, .col-ten, .col-eleven, .col-complete {float: left;}

/* Grid sizes */
.col-one {width: 4.66666666667%;}
.col-two {width: 13.3333333333%;}
.col-fifth {width: 19.5%;}
.col-three {width: 25%;}
.col-four {width: 30.6666666667%;}
.col-third {width: 33.333%;}
.col-five {width: 42.3333333333%;}
.col-six {width: 48%;}
.col-half {width: 50%;}
.col-seven {width: 56.6666666667%;}
.col-eight {width: 63.3333333333%;}
.col-two-third {width: 66.666%;}
.col-nine {width: 75.0%;}
.col-ten {width: 82.6666666667%;}
.col-eleven {width: 91.3333333333%;}
.col-complete { width: 100%;}
.col-block {display: inline-block; float: none !important; vertical-align: middle;}



/*  
==========================================================================
04. Colors
========================================================================== 
*/
.white {color: #fff;}
.blue {color: #19355c;}
.black {color: #222;}
.grey {color: #999;}




/*  
==========================================================================
05. Fonts
========================================================================== 
*/

/* font-sizes */
html {
    font-size: 14px;
}
.small {
    font-size: 0.9rem;
}
.title6 {
    font-size: 1.1rem;
}
.title5 {
    font-size: 1.2rem;
}
.title4 {
    font-size: 1.5rem;
}
.title3 {
    font-size: 1.3rem;
}
.title2 {
    font-size: 1.8rem;
}
.title1 {
    font-size: 2.5rem;
}

/* font-weights */
.light {font-weight: 300;}
.normal {font-weight: 400;}
.bold {font-weight: 700;}

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

/* font-style */
.italic {font-style: italic;}
.normal {font-style: normal;}
.first-letter:first-letter{
    text-transform: uppercase;
}

/* Custom titles */
.page-titles{
    padding-bottom: 30px;
}
.page-title{
    text-align: center;
    text-transform: uppercase;
    font-weight: 300;
    color: #022A4A;
    font-size: 2.7em;
}
.page-titles .page-title{
    text-align: left;
}
.page-subtitle {
    font-size: 1.65em;
    font-weight: 300;
    padding-top: 10px;
}

.block-title{
    font-weight: 300;
    color: #022A4A;
    font-size: 2.4em;
    padding-bottom: 30px;
    text-transform: capitalize;
}




/*  
==========================================================================
06. Forms
========================================================================== 
*/

input,
select,
textarea{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;  
    border: 0;
    margin: 0;
    padding: 0;
}

/* Placeholder overrides */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    rgba(0, 0, 0, 0.7);
    font-size: 15.4px;
    font-family: "Lato", Helvetica, sans;
}
input:-moz-placeholder,
textarea:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color:    rgba(0, 0, 0, 0.7);
    opacity:  1;
    font-size: 15.4px;
    font-family: "Lato", Helvetica, sans;
}
input::-moz-placeholder,
textarea::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:    rgba(0, 0, 0, 0.7);
    opacity:  1;
    font-size: 15.4px;
    font-family: "Lato", Helvetica, sans;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color:    rgba(0, 0, 0, 0.7);
    font-size: 15.4px;
    font-family: "Lato", Helvetica, sans;
}   
input::-ms-input-placeholder,
textarea::-ms-input-placeholder { /* Microsoft Edge */
    color:    rgba(0, 0, 0, 0.7);
    font-size: 15.4px;
    font-family: "Lato", Helvetica, sans;
}

/* Firefox overrides */
:not(output):-moz-ui-invalid {
    -moz-box-shadow: none;
         box-shadow: none;
}
:not(output):-moz-ui-invalid:-moz-focusring {
    -moz-box-shadow: none;
         box-shadow: none;
}

/* IE remove select arrow */
select::-ms-expand {
    display: none;
}

textarea {
    resize: vertical;
    min-height: 40px;
    max-height: 200px;
}

/*----- Leadform -----*/
.row-form{
    margin-left: -5px;
    margin-right: -5px;
}
.field{
    padding: 10px;
}

.field input, 
.field select, 
.field textarea {
    color: #333;
    padding: 10px;
    background-color: #f3f3f3;
    width: 100%;
    font-size: 15.4px;
    border: 1px solid #e6e6e6;
}

.form-date label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}
.form-date input,
.form-guests select{
    background-repeat: no-repeat;
    padding-left: 40px;
    cursor: pointer;
}
.form-date input{
    background-image: url(/templates/images/icon-calendar.png);
    background-position: 10px;
    text-transform: capitalize;
}
.form-guests select{
    background-image: url(/templates/images/arrows/arrow-down-black.png);
    background-position: 95%;
}

.form-guests:before {
    content: "\f007";
    position: absolute;
    top: 17px;
    left: 20px;
    font-family: "Font Awesome 5 Free";
    color: #333333;
    font-size: 1.6em;
}




.field textarea{
    height: 110px;
    min-height: 110px;
    max-height: 200px;
    resize: vertical;
}

.form-submit{
    margin-top: 20px;
    text-align: center;
    padding: 0 10px;
}
.form-submit .btn{
    padding: 12px 50px;
    font-size: 1.2em;
}
.checkbox.field {
    display: block;
    position: relative;
    cursor: pointer;
    font-size: 1.1em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-top: 5px;
}


/*--- Custom Checkbox --- */
/* Hide the browser's default checkbox */
.checkbox.field input {
    position: absolute;
    left: -999999px;
    opacity: 0;
    -webkit-appearance: checkbox;
}
.checkbox.field label{
    cursor: pointer;
}
.checkbox.field label > span {
    vertical-align: middle;
}
#leadform-open-legal{
    text-decoration: underline;
}

/* Create a custom checkbox */
.checkmark,
.checkbox-text{
    vertical-align: middle;
}
.checkmark {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    background-color: #ECECEC;
    cursor: pointer;
    transition: 0.2s all;
    margin-right: 5px;
}
.checkmark:after {
    display: none;
    content: "✔";
    position: absolute;
    left: 4px;
    top: 2px;
    color: #022A4A;
    font-weight: 900;
}

/* Show the checkmark when checked */
.checkbox.field input:checked ~ .checkmark:after {
    display: block;
}
/*--- END Custom Checkbox --- */


/* form errors */
.form-error.alert {
    font-size: 1em;
    transition: 0.2s all;
    margin-bottom: 15px;
    color: #fd5a5a;
    padding: 10px 10px;
    line-height: 1.4;
    background-color: #ffe5e5;
}
.has-error.field input, 
.error ~ .checkmark {
    background-color: #ffe5e5;
}

/* thanks */
.thanks{
    line-height: 2;
}
.thanks__title {
    font-size: 1.5em;
}




/*  
==========================================================================
07. Buttons
========================================================================== 
*/
.btn{
    display: inline-block;
    padding: 12px 30px;
    background-color: #3F82F8;
    color: #ffffff !important;
    font-size: 1.1em;
    font-weight: 300;
    cursor: pointer;
    border-radius: 2px;
    text-transform: uppercase;
    transition: 0.2s all;
}
.btn:hover{
    background-color: #3777e6;
}
.btn-download:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 12px;
    margin-right: 10px;
    background-image: url(/templates/images/icon-download1.png);
    background-repeat: no-repeat;
    background-position: center;
}

#form-next-btn{
    margin-top: 30px;
}
#form-prev-btn {
    display: inline-block;
    margin-bottom: 20px;
    background-color: #f3f3f3;
    color: #333333 !important;
}
#form-prev-btn:hover{
    background-color: #eaeaea;
}
#form-prev-btn:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(/templates/images/arrows/arrow-left-black.png);
    vertical-align: top;
    margin-right: 10px;
}

.form-btn{
    display: block;
    text-align: center;
    margin: 0 10px;
}
.form-submit .form-btn{
    margin: 0;
    width: 100%;
}





/*  
==========================================================================
08. Separators
========================================================================== 
*/



/*  
==========================================================================
09. Parallax Background
========================================================================== 
*/
.parallax-background{
    background-position: 50% 0;
    background-size: 1024px;
    background-size: cover;
    background-color: #eef1fb;
    background-attachment: fixed;
}




/*  
==========================================================================
10. Animated effects
========================================================================== 
*/
.header-title,
.header-subtitle,
.advantage-block,
.home-content .page-title,
.home-content .content,
.specs-section .specs-title,
.promo-block{
    opacity: 0;
    transition: 0.5s all;
}
.animated {
    opacity: 1 !important;
}



/* 
==========================================================================
11. Overlays
========================================================================== 
*/
.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.2s all;
    z-index: 998;
    background-color: rgba(0, 0, 0, 0.2);
}




/*  
==========================================================================
12. Pages
========================================================================== 
*/

/*--------- content-home ---------*/
#content-home .page-titles{
    padding-bottom: 0;
}

/* home-content */
.home-content{
    overflow: hidden;
}
.home-content .content{
    padding-top: 40px;
}

/* specs-section */
.specs-title-container{
    position: relative;
    height: 213px;
}
.specs-title-container .specs-title{
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
    width: 100%;
}
.specs-title-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    opacity: 0.25;
}
.specs-section .side-content{
    width: 800px;
    margin: 0 auto;
    padding: 30px 0;
}
.specs-section .table-cell {
    width: 50%;
    vertical-align: top;
    background-color: #eef1fb;
    padding: 20px 30px;
}
.specs-section .side-content .table-cell > div{
    display: block;
    margin: 15px 0;
}
.specs-section .table-cell > div * {
    display: inline-block;
}
.specs-section .side-content h4{
    font-weight: bold;
    text-transform: uppercase;
    margin-right: 5px;
}


/* advantage-blocks */
.advantage-blocks {
    background-color: #eef1fb;
}
.advantage-blocks .pad{
    padding: 0 40px;
}
.advantage-block .relative{
    padding-bottom: 37%;
    overflow: hidden;
}
.advantage-image{
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
}
.advantage-block .relative img{
    max-width: 100%;
    width: 100px;
}
.advantage-title {
    font-size: 1.4em;
    line-height: 1.4;
    color: #022A4A;
    padding-bottom: 30px;
}
.advantage-block-content {
    text-align: center;
    padding-top: 20px;
}


/* gallery-section */
.gallery-section{
    overflow: hidden;
}
.gallery-section__row{
    margin-left: -1px;
    margin-right: -1px;
}
.gallery-section__pad{
    padding: 1px;
}
.gallery-section .relative {
    padding-bottom: 60%;
    overflow: hidden;
}
.gallery-section .relative .img-bg{
    transition: 0.5s all;
    transform: translateZ(0);
}
.gallery-section .relative:hover .img-bg{
    transform: scale(1.03) translateZ(0);
}



/*--------- content-fullpage ---------*/
.charter-content__image img {
    width: 100%;
}

.basic-charter {
    box-shadow: 1px 1px 10px #ececec;
    padding: 20px;
}
.basic-charter__title {
    font-size: 1.6em;
    line-height: 1.4;
    color: #022A4A;
    padding-bottom: 10px;
}
.basic-charter__content{
   height: 44px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.basic-charter .charter-attributes__price {
    margin-top: 13px !important;
    text-align: right;
}
.basic-charter .charter-attributes__price span{
    display: block;
}
.basic-charter__btn {
    text-align: right;
    padding-top: 10px;
}


.page-block {
    margin-bottom: 30px;
    box-shadow: 1px 1px 10px #ececec;
}
.page-block__row{
    margin-left: -15px;
}
.page-block:last-child{
    margin-bottom: 0;
}
.page-block .table-cell{
    vertical-align: top;
}
.page-block__image {
    position: relative;
    overflow: hidden;
}
.page-block__image img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
/* IE10+ CSS styles */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
     .page-block__image img {
        top: 0;
        left: 0;
        -webkit-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }
}
.page-block__image img {
    top: 0\9;
    left: 0\9;
    -webkit-transform: none\9;
    -ms-transform: none\9;
    -o-transform: none\9;
    transform: none\9;
}

.page-block__title {
    font-size: 1.6em;
    line-height: 1.4;
    color: #022A4A;
    padding-bottom: 10px;
}
.page-block__content{
    max-height: 86px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.page-block__btn{
    margin-top: 10px;
    text-align: right;
}
.page-block .charter-attributes__price{
    text-align: right;
    margin-top: 32px !important;
}
.charter-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
}


.charter-attributes {
    margin-top: 10px;
}
.charter-attributes__block {
    margin-top: 10px;
}
.charter-attributes__block:first-child{
    margin-top: 0;
}
.charter-attributes__block i{
    margin-right: 10px;
    vertical-align: middle;
}
.charter-attributes__block-first{
    font-size: 1.2em;
}
.charter-attributes__block span{
    vertical-align: middle;
}





/*  
==========================================================================
13. Includes and sections
========================================================================== 
*/

/*--------- header ---------*/
#header {
    position: relative;
    height: 500px;
    min-height: 240px;
}
#content-home #header {
    height: 600px;
    min-height: 600px;
    height: 100vh;
}
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

/*--- header-background ---*/
.header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* slideshow */
.cycle-slideshow,
.slide{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.slide{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
#content-home .slide{
    background-position: right;
}

/*--- header ---*/
.phone {
    display: inline-block;
}
.phone:first-child{
    padding-left: 20px;
    background-image: url(/templates/images/icon-phone2.png);
    background-repeat: no-repeat;
    background-position: left;
}
.phone:first-child:before{
    display: none;
}
.phone:before{
    content: "-";
    margin: 0 8px 0 5px;
}

.email {
    display: inline-block;
    padding-left: 25px;
    background-image: url(/templates/images/icon-email2.png);
    background-repeat: no-repeat;
    background-position: left;
    margin-top: 10px;
}

/* logo */
.header-logo{
    float: left;
    width: 140px;
}

/* nav */
.header-nav {
    float: right;
    padding: 0 40px;
}
.header-nav ul li {
    display: inline-block;
    margin-right: 20px;
}
.header-nav ul li:last-child{
    margin-right: 0;
}
.header-nav ul li a {
    position: relative;
    font-size: 1.05em;
    text-transform: uppercase;
    padding: 5px 0;
    font-weight: bold;
}
.header-nav ul li a:after,
.header-languages ul li a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #4d4d4d;
    transition: 0.5s all;
}
.header-nav ul li a:hover:after,
.header-languages ul li a:hover:after {
    width: 100%;
}

/* languages */

.header-languages{
    /*text-align: right;*/
    margin-top: 10px;
}
.header-languages ul li {
    display: inline-block;
    margin-right: 10px;
}
.header-languages ul li:last-child{
    margin-right: 0;
}
.header-languages ul li a {
    position: relative;
    font-size: 1.05em;
    text-transform: uppercase;
}
.header-languages ul li.active a {
    font-weight: bold;
}

/*--- header-title ---*/
.header-title-container {
    position: absolute;
    top: 40%;
    left: 0;
    -webkit-transform: translateY(-40%);
    -ms-transform: translateY(-40%);
    -o-transform: translateY(-40%);
    transform: translateY(-40%);
    z-index: 1000;
    width: 100%;
}
.header-title {
    font-size: 3.6em;
    font-weight: 300;
    color: #555555;
    padding-bottom: 10px;
}
.header-subtitle {
    font-size: 2.2em;
    color: #999999;
}


/*--------- footer ---------*/
#main-footer{
    padding: 30px 0;
    background-color: #eef1fb;
}

.top-footer {
    width: 480px;
    margin: 0 auto;
}
.footer-right > div{
    font-size: 1.1em;
    margin-top: 10px;
}

.bottom-footer{
    text-align: center;
}
.bottom-footer .container > span:after{
    content: "-";
    margin: 0 5px;
}
.bottom-footer .container > span:last-child:after{
    display: none;
}


/*--------- Swiper carousel ---------*/
.carousel-section > .relative {
    padding-bottom: 21%;
}
.carousel-section .swiper-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}
.swiper-slide {
  text-align: center;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.carousel-section .swiper-button-next, 
.carousel-section .swiper-button-prev {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 40px;
    padding: 10px;
    margin: 0;
    z-index: 10;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
}
.carousel-section .swiper-button-prev,
.carousel-section .swiper-container-rtl .swiper-button-prev {
    background-image: url(/templates/images/arrows/slider-left-black.png) !important;
    left: 30px !important;
}
.carousel-section .swiper-button-next, 
.carousel-section .swiper-container-rtl .swiper-button-next {
    background-image: url(/templates/images/arrows/slider-right-black.png) !important;
    right: 30px !important;
}




/*--------- fixed leadform ---------*/
.form-button-fixed {
    position: fixed;
    top: 55%;
    left: 0;
    width: 170px;
    z-index: 9997;
    padding: 20px;
    box-shadow: 1px 1px 6px rgba(121, 121, 121, 0.4);
    cursor: pointer;
    transition: 1s right, 0.2s background-color;
    font-family: "Bariol-Regular", Helvetica, sans-serif;
    font-size: 1.2em;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    line-height: 1.4;
}
.form-button-fixed.closed{
    right: -100%;
}

.fixed-leadform {
    position: fixed;
    bottom: 0;
    right: -100%;
    z-index: 9999;
    width: 370px;
    height: 100%;
    background-color: #fff;
    box-shadow: 1px 1px 24px rgba(121, 121, 121, 0.4);
    transition: 0.5s right;
}
.fixed-leadform.open{
    right: 0;
}
.fixed-leadform .close-form {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 2em;
    display: inline-block;
    line-height: 1;
    color: #b9b9b9;
    padding: 8px;
    padding-top: 2px;
    vertical-align: top;
    cursor: pointer;
    transition: 0.2s all;
}
.fixed-leadform .close-form:hover{
    color: #909090;
}

.fixed-leadform .form-container {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    padding: 20px;
}
.form-content-overlay {
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    transition: 0.2s all;
}
.form-content-overlay.open{
    z-index: 9998;
    opacity: 1;
}

.form-tab{
    position: relative;
    z-index: -1;
    width: 100%;
    opacity: 0;
    transition: 0.2s all;
}
.form-tab.tab-1{
    position: absolute;
    top: 0;
}
.form-tab.active{
    opacity: 1;
    z-index: 1;
}

.form-title {
    font-size: 1.7em;
    padding: 0 5px 30px;
}
.form-subtitle {
    font-size: 1.25em;
    padding: 0 10px;
    padding-bottom: 10px;
}



/*--------- Datepicker override ---------*/
a.ui-state-default.ui-state-highlight.ui-state-active, 
a.ui-state-default.ui-state-active {
    background-color: #022A4A !important;
    color: #ffffff !important;
}
a.ui-state-default.ui-state-hover {
    background-color: #022A4A !important;
    color: #ffffff !important;
}



/*--------- page-block ---------*/
/*.page-block .relative {
    padding-bottom: 25%;
    transition: 0.2s all;
}
.page-block .relative:hover{
    opacity: 0.85;
}
.page-block-content{
    position: relative;
    z-index: 10;
}
.page-block-content .container{
    position: relative;
}
.page-block-title {
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    font-size: 2.7em;
    text-align: left;
}*/



/*  
==========================================================================
16. Popup
========================================================================== 
*/
.pop-up-custom-overlay/*,
.pop-overlay*/ {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}


/* Default (promos) */
/*.pop-up {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10001;
    padding: 80px 30px;
    background-color: #fff;
    width: 500px;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
    background-image: url(/media/goleta/goleta.jpg);
    background-size: cover;
}
.close-pop-up {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.7em;
    line-height: 0.4;
    padding: 10px;
    cursor: pointer;
}
.pop-up .pop-up-title {
    padding-bottom: 15px;
    font-size: 1.7em;
}
.pop-up .pop-up-content {
    font-weight: 300;
    line-height: 1.35em !important;
    font-size: 1.2em;
}*/


/* Custom */
.pop-up-custom {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10001;
    padding: 30px;
    padding-right: 8px;
    background-color: #fff;
    width: 600px;
    height: 600px;
    max-width: 90%;
    max-height: 90%;
}
.close-pop-up-custom {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.7em;
    line-height: 0.4;
    padding: 10px;
    cursor: pointer;
}
.pop-up-custom .content{
    overflow: auto;
    max-height: 100%;
    padding-right: 20px;
}




/*  
==========================================================================
17. Promotions
========================================================================== 
*/
.promo-block {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
}
.promo-block .promo{
    width: 583px;
    height: 73px;
}




/*  
==========================================================================
18. Scrolling
========================================================================== 
*/
.stop-scrolling {
  height: 100%;
  overflow: hidden;
}




/*  
==========================================================================
100. Media Queries
========================================================================== 
*/
@media (max-width: 1180px){
    .basic-charter__title{
        font-size: 1.3em;
    }
    .basic-charter .col-half {
        width: 100%;
    }
    .basic-charter__content{
        height: 66px;
        -webkit-line-clamp: 3;
    }
    .basic-charter .charter-attributes__price {
        margin-top: 10px !important;
        text-align: left;
    }
    .basic-charter .charter-attributes__price span{
        display: inline;
    }
    .page-block__title{
        font-size: 1.4em;
    }
}


