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

/* text color - sea: 09bbd7 */
/* button color - sea: 0791a6 */
/* gradient - sea: 0.7-0.3 */

/* text color - crane: d80229 */
/* button color - crane: b60223 */
/* gradient - crane: 0.2-0.1 */

/* text/button color - forest: 776b04 */
/* hover color - forest: 423a01 */
/* icon color - forest: d75404 */
/* gradient - forest: 0.2-0.1 */


@import url("../../assets/fonts/poppins/style.css");
@import url("../../assets/fonts/just-sunday/style.css");
@import url("../../assets/fonts/utm-avo/style.css");
@import url("../../assets/fonts/dancing-script/style.css");
@import url("../../assets/css/font-awesome.css");

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

html,
body {
    background-color: #fff;
    color: #555;
    font-family: "Poppins Light";
    font-weight: 300px;
    font-size: 20px;
    text-rendering: optimizeLegibility;
    overflow-x: hidden; /*avoid text to move out of the screen*/
}

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


/* -------------------------------------------------- */
/* REUSEABLE COMPONENTS */
/* -------------------------------------------------- */

.row {
    max-width: 1140px;
    margin: 0 auto; /*align the content in the center of the webpage, 0:top,bottom, auto:right,left*/
}

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: 240%;
    word-spacing: 4px;
    letter-spacing: 1px;
}

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

h2:after { /*insert an element right after the h2*/
    display: block; /*type of this element*/
    height: 2px;
    width: 100px;
    background: #776b04;
    content: " "; /*for no content*/
    margin: 0 auto; /*to make it centered*/
    margin-top: 30px;
}

h3 {
    margin-bottom: 10px;
    font-size: 110%;
    font-weight: bold;
    color: #415939;
}

h4 {
    margin-top: 20px;
    font-size: 110%;
    font-style: italic;
    text-align: center;
}

blockquote {
    font-size:0.9em;
}

summary {
    outline: none;
    font-size: 1.15em;
}

summary::-webkit-details-marker {
    display: none
}

summary:after {
    content: "+";
    float: left;
    font-size: 1em;
    font-weight: bold;
    padding: 4px 0 3px 0;
    text-align: center;
    width: 30px;
}

details[open] summary:after {
    content: "-";
}

/* ---------- PARAGRAPHS ---------- */
.long-copy {
    line-height: 145%;
    width: 70%;
    margin-left: 15%;
    text-align: center;
}

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

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

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

.icon-small {
    display: inline-block;
    width: 30px;
    font-size: 120%;
    color: #d75404;
    text-align: center;
    
    /*align icon and text*/
    line-height: 120%;
    vertical-align: middle;
    margin-top: -4px;
    margin-right: 10px;
}

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

a:link,
a:visited {
    text-decoration: none;
    color: #776b04;
    border-bottom: 1px solid #776b04;
    padding-bottom: 1px;
}

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

/* ---------- BUTTONS ---------- */
.btn:link,
.btn:visited,
input[type=submit] {
    display: inline-block; /*change an inline-element to an inline-block*/
    padding: 10px 30px;
    font-weight: 300;
    text-decoration: none;
    border-radius: 200px;
    -webkit-transition: background-color 0.2s, border 0.2s, color 0.2s;
    transition: background-color 0.2s, border 0.2s, color 0.2s;
}

.btn-full:link,
.btn-full:visited {
    color: #fff;
    background-color: #776b04;
    border: 1px solid #776b04;
    margin-right: 15px;
}

.btn-ghost:link,
.btn-ghost:visited {
    color: #776b04;
    border: 1px solid #776b04;
    margin-right: 15px;    
}

input[type=submit] {
    color: #fff;
    background-color: #776b04;
    border: 1px solid #776b04;
    margin-right: 15px; 
}

.btn:hover,
.btn:active,
input[type=submit]:hover,
input[type=submit]:active {
    background-color: #423a01;
}

.btn-full:hover,
.btn-full:active {
    border: 1px solid #423a01;
}

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


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

header {
    background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)), url(img/hero-min.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)), url(img/hero-min.jpg); /*put a gradiant on top of the hero image*/
    background-size: cover; /*the image will fill the webpage*/
    background-attachment: fixed; /*the image is fixed while scrolling*/
    background-position: center;
    height: 100vh; /*100vh = 100% of the webpage viewport*/
}

.hero-text-box {
    /*center the text box*/
    position: absolute;
    width: 1140px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.button-box {
    list-style: none;
}

.button-box li {
    display: inline-block;
}

.button-box li:last-child a {
    padding: 7.5px 30px;
}

.logo {
    height: 100px;
    width: auto;
    float: left;
    margin-top: 20px;
}

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

/* ---------- MAIN NAVI ---------- */

.main-nav {
    float: right;
    list-style: none;
    margin-top: 50px;
}

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

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

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

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

.sticky {
    position: fixed; /*the navi always stays at the same place while scrolling*/
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 2px #efefef; /*x y blur color*/
    z-index: 9999; /*9999 is the max level of the stack - sticky navi is always on the top of all elements*/
}

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

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

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

/* ---------- MOBILE NAVI ---------- */

.mobile-nav-icon {
    float: right;
    margin-top: 30px;
    cursor: pointer; /*the hand over the link/button*/
    display: none;
}

.mobile-nav-icon i {
    font-size: 200%;
    color: #fff;
}


/* -------------------------------------------------- */
/* ABOUT     */
/* -------------------------------------------------- */

.section-about .long-copy { /*just applied for long-copy inside section-about*/
    margin-bottom: 30px;
}


/* -------------------------------------------------- */
/* PHOTOS */
/* -------------------------------------------------- */

.section-photos,
.section-vn-photos,
.section-no-photos,
.section-jp-photos {
    padding: 0;
}

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

.photos-showcase li {
    display: block;
    width: 25%; /*since we have 4 images in 1 row*/
    float: left;
}

.photos-showcase-triple li {
    display: block;
    width: 33.33%; /*since we have 3 images in 1 row*/
    float: left;
}

.photos-showcase-pano li {
    display: block;
    width: 50%; /*since we have 2 images in 1 row*/
    float: left;
}

.photos-photo {
    width: 100%;
    margin: 0; /*override the setup from the normalize.css file*/
    overflow: hidden; /*prevent the images from scaling over the size of its container*/
    background-color: #000;
}

.photos-photo img {
    width: 100%;
    height: auto;
    opacity: 0.8;
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
    -webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
    transition: transform 0.5s, opacity 0.5s;
}

.photos-photo img:hover {
    -webkit-transform: scale(1.065);
    -ms-transform: scale(1.065);
    transform: scale(1.065);
    opacity: 1;
}


/* -------------------------------------------------- */
/* STORY */
/* -------------------------------------------------- */

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

.story-box {
    margin-top: 30px;
}

.story-box:first-child {
    text-align: right;
    padding-right: 3%;  
}

.story-box:last-child {
    text-align: left;
    margin-top: 30px;
}

.colum-image-long {
    width: 68%;
}

.colum-image-short {
    width: 38%;
}

.steps {
    margin-bottom: 30px;
}

.steps:last-of-type {
    margin-bottom: 1px;
}

.steps div {
    display: inline-block;
    color: #776b04;
    font-size: 150%;
    border: 2px solid #776b04;
    border-radius: 50%;
    height: 55px;
    width: 55px;
    padding: 5px;
    margin-right: 25px;
    text-align: center;
    float: left;
}

.btn-blog {
    text-align: center;
    padding-top: 30px;
}


/* -------------------------------------------------- */
/* CITIES */
/* -------------------------------------------------- */

.section-cities {
    background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(img/section-cities.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(img/section-cities.jpg);
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
}

blockquote {
    padding: 2%;
    font-style: italic;
    line-height: 145%;
    position: relative;
    margin-top: 40px;
}

blockquote p {
    font-size: 0.86em;
}

blockquote:before {
    display: block;
    content: '\201C'; /*quotation mark - special character from Glyphs*/
    font-size: 500%;
    
    /*Align the quotation mark. Remember the parent must have position Relative*/
    position: absolute;
    top: -5px;
    left: -5px;
}

cite {
    display: block;
    font-size: 90%;
    margin-top: 5px;
    margin-bottom: 15px;
}

cite img {
    height: 65px;
    border: 1px solid #fff;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
}

/* -------------------------------------------------- */
/* NORGE */
/* -------------------------------------------------- */

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

.section-norge .long-copy
    margin-bottom: 20px;
}

/* -------------------------------------------------- */
/* JAPAN */
/* -------------------------------------------------- */

.section-japan .long-copy {
    margin-bottom: 20px;
}

/* -------------------------------------------------- */
/* CONTACT */
/* -------------------------------------------------- */

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

.contact-box {
    margin-top: 30px;
}

.contact-box:first-child {
    text-align: right;
    margin-top: 30px;
}

.contact-box:last-child {
    text-align: left;
    padding-left: 3%;
}

.contact-form {
    width: 100%; /*resize the contact form*/
    margin: 0 auto; /*center the contact form*/
}

input[type=text],
input[type=email],
select,
textarea {
    width: 95%;
    padding: 7px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

textarea {
    height: 150px;
}

*:focus {outline: none;} /*get rid of the blue box inside textarea*/


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

footer {
    background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(img/hero-min-1.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(img/hero-min-1.jpg);
    background-size: contain;
    background-attachment: fixed;
    color: #fff;
    padding-top: 10px;
    padding-bottom: 30px;
    font-size: 80%;
}

.footer-nav {
    list-style: none;
    float: left;
}

.social-links {
    list-style: none;
    float: right;
}

.social-links li,
.footer-nav li {
    display: inline-block;
    margin-right: 20px;
}

.social-links li:last-child,
.footer-nav li:last-child {
    margin-right: 0;
}

.footer-nav li a:link,
.footer-nav li a:visited,
.social-links a:link,
.social-links a:visited {
    text-decoration: none;
    border: 0;
    color: #888;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.footer-nav li a:hover,
.footer-nav li a:active {
    color: #423a01;
}

.social-links a:link,
.social-links a:visited {
    font-size: 260%;
}

.ion-social-facebook,
.ion-social-twitter,
.ion-social-linkedin,
.ion-social-instagram {
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.ion-social-facebook:hover,
.ion-social-facebook:active {
    color: #3b5998;
}

.ion-social-twitter:hover,
.ion-social-twitter:active {
    color: #00aced;
}

.ion-social-linkedin:hover,
.ion-social-linkedin:active {
    color: #007bb6;
}

.ion-social-instagram:hover,
.ion-social-instagram:active {
    color: #517fa4;
}

footer p {
    display: inline-block;
    color: #888;
    text-align: left;
    margin-right: 20px;
}


/* -------------------------------------------------- */
/* ANIMATION */
/* -------------------------------------------------- */

.js--wp-logo,
.js--wp-0,
.js--wp-1,
.js--wp-3,
.js--wp-4,
.js--wp-5,
.js--wp-6,
.js--wp-7,
.js--wp-9 {
    opacity: 0; /*hide the element*/
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.js--wp-logo.animated,
.js--wp-0.animated,
.js--wp-1.animated,
.js--wp-3.animated,
.js--wp-4.animated,
.js--wp-5.animated,
.js--wp-6.animated,
.js--wp-7.animated,
.js--wp-9.animated { /*this element has both classes at the same time*/
    opacity: 1; /*unhide the element*/
}