/*
    Orange color: #e67e22
 */

/*----------------------------------------------*/
/* BASIC SETUP */
/*----------------------------------------------*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background: #fff;
    color: #555;
    font-family: 'Lato', 'Arial', sans-serif;
    font-weight: 300;
    font-size: 20px;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

.clearfix {zoom: 1}
.clearfix:after {
    content: '.';
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

/*----------------------------------------------*/
/* REUSABLE COMPONENTS */
/*----------------------------------------------*/


.row {
    max-width: 1140px;
    margin: 0 auto;
}

section {
    padding: 80px 0;
}

.box {
    padding: 1%;
}

/* ----- HEADINGS ----- */

h1,
h2,
h3 {
    font-weight: 300;
    text-transform: uppercase;
}

h1 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #fff;
    font-size: 200%;
    word-spacing: 4px;
    letter-spacing: 1px;
}

h2 {
    font-size: 160%;
    word-spacing: 2px;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

h3 {
    font-size: 100%;
    margin-bottom: 15px;
}

h2:after {
    display: block;
    height: 2px;
    width: 100px;
    background-color: #e67e22;
    content: ' ';
    margin: 30px auto 0;
}

/* ----- PARAGRAPHS ----- */

.long-copy {
    line-height: 145%;
    width: 70%;
    margin-left: 15%;
}

.box p {
    font-size: 80%;
    line-height: 145%;
}

/* ----- ICONS ----- */

.icon-big {
    font-size: 350%;
    display: block;
    color: #e67e22;
    margin-bottom: 10px;
}

.icon-small {
    display: inline-block;
    width: 30px;
    text-align: center;
    color: #e67e22;
    font-size: 120%;
    line-height: 120%;
    vertical-align: middle;
}

/* ----- LINKS ----- */

a:link,
a:visited {
    color: #e67e22;
    text-decoration: none;
    padding-bottom: 1px;
    border-bottom: 1px solid #e67e22;
    transition: border-bottom 0.2s, color 0.2s;
}

a:hover,
a:active {
    color: #555;
    border-bottom: 1px solid transparent;
}

/* ----- BUTTONS ----- */

.btn:link,
.btn:visited {
    display: inline-block;
    padding: 10px 30px;
    font-weight: 300;
    text-decoration: none;
    border-radius: 200px;
    transition: background-color 0.2s, border 0.2s, color 0.2s;
}
.btn-full:link,
.btn-full:visited {
    background-color: #e67e22;
    border: 1px solid #e67e22;
    color: #fff;
    margin-right: 15px;
}

.btn-ghost:link,
.btn-ghost:visited {
    border: 1px solid #e67e22;
    color: #e67e22;
}

.btn:hover,
.btn:active {
    background-color: #cf6d17;
}

.btn-full:hover,
.btn-full:active {
    background-color: #cf6d17;
}

.btn-ghost:hover,
.btn-ghost:active {
    border: 1px solid #cf6d17;
    color: #fff;
}

/*----------------------------------------------*/
/* HEADER */
/*----------------------------------------------*/

header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/KaunasSeaways1.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    height: 100vh;
}

.hero-text-box {
    /*border: 1px solid #fafafa;*/
    position: absolute;
    width: 1140px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo {
    height: 60px;
    width: auto;
    float: left;
    margin-top: 27px;
}

.logo-black {
    display: none;
    height: 50px;
    width: auto;
    float: left;
    margin: 5px 0;
}

/* ----- MAIN NAVI ----- */
.main-nav {
    float: right;
    list-style: none;
    margin-top: 60px;
}

.main-nav li {
    display: inline-block;
    margin-left: 40px;
}

.main-nav li a:link,
.main-nav li a:visited {
    padding: 8px 0;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 90%;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.2s;
}

.main-nav li a:hover,
.main-nav li a:active {
    border-bottom: 2px solid #e67e22;
}

.contracts-li {
    position: relative;
}

.contracts-li:hover .contracts {
    display: flex;
}

.contracts {
    width: 250px;
    position: absolute;
    top: 30px;
    left: -50px;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    display: none;
}

.contracts li {
    width: 250px;
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
}

/* ----- STICKY NAVI ----- */

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 2px #efefef;
    z-index: 9999;
}

.sticky .main-nav { margin-top: 18px; }

.sticky .main-nav li a:link,
.sticky .main-nav li a:visited {
    padding: 16px 0;
    color: #555;
}

.sticky .logo { display: none; }
.sticky .logo-black { display: block; }


/* ----- LANGUAGE TOGGLE ----- */

.lang {
    /*display: inline-block;*/
    float: right;
    text-align: left;
}
.lang a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 1px solid #e67e22;
}
.lang__list,
.lang__option {
    margin:  0;
    padding: 0;
    display: inline;
}
.lang__chevron {
    display: none;
}


.lang {
        /*border: solid 1px black;*/
        min-width: 4rem;
        position: relative;
    }
.lang__list,
.lang__option {
        display: block;
    }
.lang__chevron {
        display: inline-block;
        float: right;
        transform: rotate(90deg);
    }
.lang__option {
    padding: 0.5rem;
}
.lang__option:hover,
.lang__option:focus {
    background-color: transparent;
    border-bottom: solid 1px;
}
.lang__list {
        display: none;
        list-style-type: none;
    }
	
.lang.is-open {
	border-bottom: none;
}
.lang.is-open a {
	border-bottom: none;
}

.lang.is-open li a {
	border-bottom: 1px solid #fff;
}
	
.is-open {
        border-bottom: none;
}

.is-open .lang__list {
    /*border: solid 1px;*/
   /* border-top: none;*/
    display: block;
    position: absolute;
    left: -1px;
    width: 100%;
    border-bottom: none;
}
.is-open .lang__chevron {
    transform: rotate(270deg);
}


/*----------------------------------------------*/
/* FEATURES */
/*----------------------------------------------*/

.section-features .long-copy {
    margin-bottom: 30px;
}

/*----------------------------------------------*/
/* VESSEL */
/*----------------------------------------------*/

.section-vessel_photo {
    margin: 0;
    padding: 0;
}

.vessel_photo-showcase {
    list-style: none;
    width: 100%;

}

.vessel_photo-showcase li {
    display: block;
    float: left;
    width: 25%;
}

.vessel_photo {
    width: 100%;
    margin: 0;
    overflow: hidden;
    background-color: #000;
}

.vessel_photo img {
    opacity: 0.7;
    width: 100%;
    height: auto;
    transform: scale(1.15);
    transition: transform 0.5s, opacity 0.5s;
}

.vessel_photo img:hover {
    transform: scale(1.03);
    opacity: 1;
}

.section-vessel_info {
    background-color: #f4f4f4;
}

.section-vessel_info h3 {
    text-align: center;
}

.section-vessel_info table {
    width: 100%;
    margin-top: 15px;
}

/*----------------------------------------------*/
/* SCHEDULE */
/*----------------------------------------------*/

.section-schedule p {
    margin-top: 30px;
}

table#schedule {
    width: 100%;
    margin-top: 30px;
}

table#schedule tr {

}

table#schedule td {
    text-align: center;
    padding: 5px 5px;
}

/*----------------------------------------------*/
/* CONTACTS */
/*----------------------------------------------*/

.section-contacts {
    background-color: #f4f4f4;
}

.section-contacts h3{
    margin-bottom: 10px;
    margin-top: 20px;
    font-weight: 400;
}

.box img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.contact-feature {
    margin-bottom: 5px;
}

/*----------------------------------------------*/
/* FOOTER */
/*----------------------------------------------*/

footer {
    background-color: #333;
    padding: 50px;
    color: #888;
}

footer p {
    text-align: center;
    margin-top: 20px;
    font-size: 140%;
    font-weight: 400;
}

footer p.copy {
    font-size: 90%;
}
