@font-face{
    font-family: 'opensans';
    src: url(../fonts/OpenSans-Regular.ttf);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font: 16px opensans;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden; 
}

/*HEADER*/ 

header {
    z-index: 9999;
    position: relative;
    float: right;
    margin: 20px;
}

header input {
    float: right;
    padding: 10px;
    width: 200px;
    border: none;
}

.main {
    padding: 30px;
}

.main p {
   /* font-size: .9em;*/
    line-height: 1.2em;/*
    margin-bottom: 20px;*/
}

.menu-anchor {
    width: 40px;
    height: 32px;
    float: right;
    position: relative;
    text-indent: -9999px;
    overflow: hidden;
    cursor: pointer;
    background: rgba(0,0,0,0.8);
}

.menu-anchor:before {
    content: "";
    display: block;
    margin: 7px auto;
    width: 70%;
    height: 0.25em;
    background: #e74c3c;
    box-shadow: 
    0 .45em 0 0 #e74c3c,
    0 .9em 0 0 #e74c3c;
}

.menu-active .menu-anchor {background: rgba(0,0,0,0.6)}

menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1;
    width: 220px;
    height: 100%;
    padding-top: 10px;
    background: rgba(0,0,0,0.8);
    box-shadow: inset -5px -10px 10px 0 rgba(0,0,0,.3)

}

menu li a {
    display: block;
    border-bottom: 1px solid rgba(255,255,255,.3);
    margin: 0 10px;
    padding: 10px;
    color: #FFF;
    text-decoration: none;
    width: 70%;
}

menu li a:hover {
    background: #e74c3c;
    color: #000;
}

ul {
    list-style: none;
}

menu {
    -webkit-transform: translateX(220px);
    -moz-transform: translateX(220px);
    -ms-transform: translateX(220px);
    transform: translateX(220px);
}

header, .main {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.menu-active menu {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.menu-active header, 
.menu-active .main {
    -webkit-transform: translateX(-220px);
    -moz-transform: translateX(-220px);
    -ms-transform: translateX(-220px);
    transform: translateX(-220px);
}

/* FIM DA HEADER*/

iframe {
    width: 100%;
    overflow: none;
    height: 90vh;
    z-index: 1000000;
}

a {
    margin: 0;
    width: 0;   
    text-decoration: none;
}

/*INDEX PÁGINA INICIAL */

.section-one {
    background-color: #2c2d31;
    background-image: url('../img/image-start.png');
    background-position: center;
    background-size: cover;
    min-height: 100vh;
    position: fixed;
    width: 100%;
}

.title-home {
    background-image: url(../img/home_titulo.png);
    background-repeat: no-repeat;
    background-size: contain;
    float: left;
    height: 102px;
    margin-left: 5%;
    margin-top: 5%;
    width: 251px;
}

/* FIM PÁGINA INICIAL */

/*ABOUT*/
.section-about {
    background-position: center;
    background-size: cover;
    height: 100vh;
    width: 100%;
    padding-top: 3%; 
    background-image: url('../img/image-start.png');
}

.text-about {
    width: 90%;
    margin: auto;
    background-color: rgba(255,255,255,0.8);
    padding: 4%;
    overflow: scroll;
    height: 87vh;
    overflow-x: hidden;
    text-align: justify;
}

.content-about {
    font-size: 1.3em;
}

.title-about p:first-of-type {
    font-weight: bold;
    font-size: 1.8em;
}

.title-about p:nth-of-type(2) {
    font-weight: bold;
    font-size: 1.2em;
}

.line {
    background-color: #000;
    height: 1px;
    width: 100px;
}

.author {
    float: right;
}

/* TEAM */

.box-team {
    width: 100%;
    display: inline-block;
}

.person-team {
    min-height: 200px;
}

.person-team div {
    width: 100%;
    margin-bottom: 15px; 
}

.contain-person {
    width: 20%;
    border-radius: 9px;
    float: left;
    margin-right: 14px; 
}

.list-music li {
    list-style-type: disc;
    list-style-position: inside;
}

strong {
    font-weight: bold;
}

/*CONTACT*/
/*#contact {
    width: 100%;
    min-height: 80vh;
    background-color: #008B8B;
}*/

form {
    width: 100%;
    color: #e74c3c;
    margin-top: 10%;
    display: inline-block;
}

.input-contact {
    height: 50%; 
    float: left;
    width: 50%;
    margin: auto;
}

.input-contact input {
    border: none;
    width: 94%;
    display: block;
    margin-top: 10px;
    color: #e74c3c;
    height: 45px;
    margin-left: 3%;
}

.textarea-contact {
    width: 50%; 
    float: right;
}

textarea {
    border: none;
    height: 155px;
    width: 94%;
    display: block;
    margin-top: 10px;  
    resize: none;
    color: #e74c3c;
    margin-left: 3%;
}

.button-contact {
    background-color: transparent;
    float: right;
    border: solid 2px #e74c3c;
    color: #e74c3c;
    width: 100px;
    height: 40px;
    margin-top: 20px;
    margin-right: 1.5%;
}

.button-contact:hover { 
    background-color: #e74c3c;
    color: #FFF;
    cursor: pointer;
}

#contact h2 {
    color: #FFF;
    font-size: 40px;
    text-align: center;
}

.form-contact {
    display: inline-block;
}

.div-icon .fa {
    color: #FFF;
    font-size: 1.5em;    
}

.div-icon {
    width: 3.5em;
    height: 3.5em;
    background-color: blue;
    border-radius: 50%;
    margin: 10px 5px;
    text-align: center;
    display: inline-flex;    
    transition: all 0.2s;    
    justify-content: center;
    align-items: center;
}

.div-icon:hover {
    -webkit-animation:spinAround 2s linear infinite;
    animation: spinAround 2s linear infinite;
}

@-webkit-keyframes spinAround {
    from {
        -webkit-transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes spinAround {
    from {
        -moz-transform: rotate(0deg)
    }
    to {
        -moz-transform: rotate(360deg);
    }
}

@keyframes spinAround {
    from {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(360deg);
    }
}

.face {
    background-color: #3B5998;
}

.youtube {
    background-color: #C4302B;
}

.flickr {
    background-color: #FF1981;
}

.twitter {
    background-color: #00ACED;
}

.vimeo {
    background-color: #AAD450;
}

/* SUECIA ONE */

.write {
    -webkit-align-items: center;
    -webkit-justify-content: center;
    align-items: center;
    background-color: #000;
    color: #FFF; 
    display: -webkit-flex;
    display: flex;
    height: 100vh;
    justify-content: center;
    text-align: center; 
    width: 100%;
}

.write div {
    padding: 40px;
}

.text-write p {
    font-size: 2.2em;
    color: #FFF;
}

.text-write .write-subtitle p {
    font-size: 2.5em;
    color: #FFF;
}

.type-it {
    font-size: 2.2em;
}

/*CIRCLE SLIDE */
.fc-slideshow img {
    border-radius: 50%;
    width: 400px;
    height: 400px; 
}

.container-circle {
    background: none;
    background-color: #000;
}

/* END SUECIA ONE*/

.box {
    background-color: #000;
    display: inline-block;
    min-height: 100vh;
    text-align: center;
    width: 100%;
}

.image {
    display: inline-block;
    text-align: center;
    margin: auto;
    width: 16.4%
}

.image img {
    width: 100%;
    margin: auto;
    padding: 2px;
}


.image img:hover {
    opacity: 0.5;
}

.subtitle p {
    color: #eee;
    font-size: 1.4em;
    text-align: center;
}

#changethewords {
    text-align: center;
}

#changethewords p {
    color: #000;
    font-size: 1.5em;
    text-align: center;
}

button {
    cursor: pointer;
}

/*CIRCLE*/
.circle-back {
    background-image: url('../img/bola_volta.png');
}

.circle {
    background-color: #e74c3c;
    background-position: center;
    background-size: cover;
    border-radius: 50%;
    border: 1px #2980b9 solid;
    display: inline-block;
    height: 20px;
    margin: 5px;
    width: 20px;
    font-size: 9px;
}

.circles {
    text-align: center;
}

.circles-center {
    text-align: center;
    position: fixed;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
    z-index: 9999;
}

/*SONG*/

.box-audio {
    display: inline-block;
    width: 100%;
}

audio {
    display: block;
    width: 500px;
    margin: auto;
}

.equalizer {
    display: inline-flex;
    width: 500px;
    float: none;
}

.container-audio {
    background-color: #000;
    width: 100%;
    height: 100vh;
    color: #FFF; 
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
}

/*SUECIA-SIX*/

.suecia-six-image {
    background-image: url('../img/suecia06/kb11_02132.jpg');
    background-size: cover;
    height: 100vh;
    width: 100%;
}

.box-transparency {
    opacity: 0.5;
    background-color: #000;
}

.box-footer {
    height: 40px;
    width: 100%;
    background-color: #000;
    bottom: 0;
    position: absolute;
    opacity: 0.8;
}   

#thirteen-audio {
    display: none;
}

.fa-volume-up, .fa-volume-off {
    cursor: pointer;
    color: #000;
}

.fa-volume-up {
    margin-right: 8px;
}

.fa-volume-off {
    margin-left: 8px;
}

.box-audio {
    opacity: 0.8;
    z-index: 9;
}

.box-audio i {
    color: #FFF;
    font-size: 20px;
}

#mybgcarousel {
    height: 100vh;
}

.slider_one_big_picture {
    width: 100%;
}

div.bgcarousel div.slide div.desc {
    position: absolute;
    color: #000;
    left: 40px;
    top: 500px;
    width: 700px;
    padding: 0px;
    font: bold 22px sans-serif, Arial;
    text-shadow: 0 -1px 1px #8a8a8a;
    z-index: 5;
}

/* MODAL Suécia 01  */

#modal, #modal1, #modal2, #modal3, #modal-Li01, #modal-Li10, #modal-No02 {
    display: none;
    z-index: 1;
    width: 100%;
    height: 100vh;
    overflow: none;
    position: fixed; 
    left: 0;
    top: 0;
    z-index: 9999;
}

.image-modal-01, .image-modal-02, .image-modal-03, .image-modal-04, .image-modal-05, .image-modal-06, .image-modal-07, .image-modal-08, .image-modal-09, .image-modal-10, .image-modal-11, .image-modal-12 {
    height: 100vh;
    background-position: center;
    background-size: cover;
}

.image-modal-01 {
    background-image: url(../img/Noruega09/1.jpg);
}

.image-modal-02 {
    background-image: url(../img/Noruega09/2.jpg);
}

.image-modal-03 {
    background-image: url(../img/Noruega09/3.jpg);
}

.image-modal-04 {
    background-image: url(../img/Noruega09/4.jpg);
}

.image-modal-05 {
    background-image: url(../img/Noruega09/5.jpg);
}

.image-modal-06 {
    background-image: url(../img/Noruega09/6.jpg);
}

.image-modal-07 {
    background-image: url(../img/Noruega09/7.jpg);
}

.image-modal-08 {
    background-image: url(../img/Noruega09/8.jpg);
}

.image-modal-09 {
    background-image: url(../img/Noruega09/9.jpg);
}

.image-modal-10 {
    background-image: url(../img/Noruega09/10.jpg);
}

.image-modal-11 {
    background-image: url(../img/Noruega09/11.jpg);
}

.image-modal-12 {
    background-image: url(../img/Noruega09/12.jpg);
}

#modal-01, #modal-02, #modal-03, #modal-04, #modal-05, #modal-06, #modal-07, #modal-08, #modal-09, #modal-10, #modal-11, #modal-12 {
    display: none;
    z-index: 1;
    width: 100%;
    height: 100vh;
    overflow: none;
    position: fixed; 
    left: 0;
    top: 0;
    z-index: 9999;
}

#modal-content-01, #modal-content-02, #modal-content-03, #modal-content-04, #modal-content-05, #modal-content-06 {
    background-color: #000;
    margin: auto;
    padding: 20px; 
    width: 100%;
    margin: auto;
    text-align: center;
    height: 100vh;
/*    display: flex;
*/    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#box-modal-01, #box-modal-02, #box-modal-03, #box-modal-04, #box-modal-05, #box-modal-06, #box-modal-07, #box-modal-08 {
    background-color: #000;
    height: 100vh;
}

#box-modal-01 iframe {
    width: 100%;
    height: 500px;
    margin: auto;
    z-index: 9999;
}

#box-close-01 {
    width: 100%; 
}
   
#close-modal-01 {    
    float: right;
    color: #FFF;
}

.string-modal {    
    background-color: rgba(0,0,0,0.6);
    font-size: 2em;
    color: #FFF;
    position: fixed;
    bottom: 28px;
    left: 2%;
    width: 27%;
    justify-content: center;
    align-items: center;
    padding: 19px;
}

.string-modal2 {
    color: #FFF;
}

.box-image img:hover {
    opacity: 0.4;
}

#modal-content {
    background-color: #000;
    margin: auto;
    padding: 20px; 
    width: 100%;
    margin: auto;
    text-align: center;
    height: 100vh;
/*    display: flex;
*/    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#box-modal, #box-modal2, #box-modal3, #box-modal-Li01, #box-modal-Li10, #box-modal-No02 {
    background-color: #000;
    height: 100vh;
}

#box-modal iframe, #box-modal2 iframe, #box-modal3 iframe, #box-modal-Li01 iframe, #box-modal-Li10 iframe, #box-modal-No02 iframe {
    width: 100%;
    height: 500px;
    margin: auto;
    z-index: 9999;
}

#box-close, #box-close-Li01, #box-close-Li10, #box-close-No02 {
    width: 100%; 
}
   
#close-modal, #close-modal-Li01, #close-modal-Li10, #close-modal-No02 {    
    float: right;
    color: #FFF;
}

.fa-times-circle {
    font-size: 26px;
    cursor: pointer;
}

/*SUECIA TWO 2*/

.string-write p {
    font-size: 2em;
}

/*MODAL SUÉCIA 03*/

.stripe__face {
    background: #000;
}
.stripe-space:nth-child(n+2) .stripe__face {
    background: #000;
}
.stripe-space:nth-child(n+3) .stripe__face {
    background: #000;
}
.stripe-space:nth-child(n+4) .stripe__face {
    background: #000;
}
.stripe-space:nth-child(n+5) .stripe__face {
    background: #000;
} 
.stripe-space:nth-child(n+6) .stripe__face {
    background: #000;
} 

#modal-se03 {
   display: none;
   z-index: 1;
   width: 100%;
   height: 100vh;
   overflow: none;
   position: fixed; 
   left: 0;
   top: 0;
}

#modal-content-se03 {
    background-color: rgba(0,0,0,0.4);
    margin: auto;
    padding: 20px; 
    width: 100%;
    margin: auto;
    text-align: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#box-modal-se03 iframe {
    width: 500px;
    height: 500px;
    margin: auto;
}

#box-close-se03 {
    width: 100%;
    background-color: red; 
}
   
#close-modal-se03 {    
    float: right;
    color: #fff;
}

/*SUECIA SEVEN 7*/
.points-content--open {
    background: none;
}

/* SUECIA EIGHT 8*/

/*SUECIA 9*/
.section-se-nine {
    background-image: url('../img/suecia09/kb11_01951.jpg');
    width: 100%;
    height: 100vh;
    background-size: cover;
    color: #000;
}

.suecia-nine-image {
    background-image: url('../img/suecia09/fundo.png');
    background-size: cover;
    height: 100vh;
    width: 100%;
}

.words a div {
    color: #ff3333;
    font-weight: bold;
    font-size: 1.8em; 
}

.solitude {
    padding-top: 20vh;
    padding-right: 20vh;
    float: right;
}

.wind {    
    padding-top: 30vh;
    padding-left: 20vh;
    float: left;
}

.algae {
    padding-top: 85vh;
    padding-right: 20vh;
    float: right;
}


#modal-mosaic {
    background-color: #000;
    margin: auto;
    padding: 20px; 
    width: 100%;
    margin: auto;
    text-align: center;
    height: 100vh;
    align-items: center;
    justify-content: center;
}

/*SUECIA TWO 2*/
.suecia-two-image {
    background-image: url('../img/suecia02/kb11_m1429.jpg');
    background-size: cover;
    height: 100vh;
    width: 100%;
}

/*SUECIA SEVEN 7*//
.suecia-seven-image {    
    background-image: url('../img/suecia07/suecia.jpg');
    background-size: cover;
    height: 100vh;
    width: 100%;
    background-color: red;
    color:red;
}

/* LITUANIA THREE */
.lituania-three-image {
    background-image: url('../img/Lituania03/kb11_02623.jpg');
    background-size: cover;
    height: 100vh;
    width: 100%;
}

/*LITUANIA SIX*/
#write-lituania {
    font-size: 1.5em;
}

.next_button, .prev_button {
    background: red;
    border:none;
}

/*LITUANIA EIGHT*/
.suecia-six-image {
    background-image: url('../img/Lituania08/9.jpg');
    background-size: cover;
    height: 100vh;
    width: 100%;
}

/*LITUANIA NINE*/
.lituania-nine-image {
    background-image: url('../img/Lituania09/kb11_02872.jpg');
    background-size: cover;
    height: 100vh;
    width: 100%;
}

.lituania-eight-image {
    background-image: url('../img/Lituania08/9.jpg');
    background-size: cover;
    height: 100vh;
    width: 100%;
}

/*NORUEGA TEN 10*/
.body-timeline {
    background-color: #778899;
}

.image-noruega, .step-368 {
    width: 800px;
    height: 800px;
    background-position: center;
    background-size: cover;
}

a.prev::after { color: red; }

.step-1000 {
    background-image: url('../img/Noruega10/1000_steps.jpg');
}

.step-1500 {
    background-image: url('../img/Noruega10/1500_steps.jpg');
}

.step-2000 {    
    background-image: url('../img/Noruega10/2000-steps.jpg');
}

.step-2222 {
    background-image: url('../img/Noruega10/2222-steps.jpg');

}

.step-3500 {
    background-image: url('../img/Noruega10/3500-steps.jpg');

}

.step-3722 {
    background-image: url('../img/Noruega10/3722-steps.jpg');
}

.step-4000 {
    background-image: url('../img/Noruega10/4000-steps.jpg');
}

.step-853 {
    background-image: url('../img/Noruega10/853-steps.jpg');
}

.step-368 {
    background-image: url('../img/Noruega10/368-steps.jpg');    
}

.step-goind-down {
    background-image: url('../img/Noruega10/goind_down.jpg');
}

.cd-horizontal-timeline .events-content em {
    color: #FFF;
}

.cd-horizontal-timeline .events-wrapper::before {
    background-image: none;
}

.cd-horizontal-timeline .events-wrapper::after {
    background-image: none;
}

.cd-horizontal-timeline .events-content h2 {
    font-size: 4rem;
}

.cd-horizontal-timeline .events-content {
    margin-top: 0.5em; /*margin entre titulo e linha do tempo*/
}

@media only screen and (min-width: 1100px) {
    .cd-horizontal-timeline {
        margin: 0;
    }
}

.cd-horizontal-timeline .filling-line {
    background-color: #CC1517;
}

.no-touch .cd-horizontal-timeline .events a:hover::after {
  background-color: #CC1517;
  border-color: #CC1517;
}
.cd-horizontal-timeline .events a.selected {
  pointer-events: none;
}
.cd-horizontal-timeline .events a.selected::after {
  background-color: #CC1517;
  border-color: #CC1517;
}
.cd-horizontal-timeline .events a.older-event::after {
  border-color: #CC1517;
}
.no-touch .cd-timeline-navigation a:hover {
  border-color: #CC1517;
}

/*NORUEGA ONE*/

.noruega-one-image {
    background-image: url('../img/Noruega01/1-kb11_01105.jpg');
    width: 100%;
    height: 100vh;
    background-size: cover;
}

.suecia-seven-image {
    background-image: url('../img/suecia07/suecia.jpg');
    width: 100%;
    height: 100vh;
    background-size: cover;
}

.black {
    background-color: #000;
}

/*NORUEGA FOUR*/
.noruega-four-image {
    background-image: url('../img/Noruega04/kb11_m1201.jpg');
    width: 100%;
    height: 100vh;
    background-size: cover;
}

/*NORUEGA FIVE*/
.box-circle {
  height: 100%;
  min-height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}

/*NORUEGA NINE*/
.box-image {
    text-align: center;
    display: inline;
}

.box-image img {
    width: 20%;
    height: auto;
}

.line-image {
    width: 70%;
    text-align: center;
    display: inline;
}

.content-lines {
    text-align: center;
}

/*NORUEGA END */

div.slider > div:not(.nav_indicators):not(.next_button):not(.prev_button){
    background-size: cover;
    background-position: center;
    border: none;
}

.slider {
    height: 100vh;
}

.word-signs a div {
    color: #ff3333;
    font-weight: bold;
    font-size: 10.8em;
    text-align: center; 
}

.align-center {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}


/*LITUANIA TWO*/
.tab-demo {
    width: 70%;
}

.tab__ > div {
    width: 5%;
}

.tab__content {
    background: none;
    color: #FFF;
    max-width: 100%;
    text-align: initial;
}

.tab__content >div {
    font-size: 2em;
}

.tab__ > div.tab__--active {
    background: #e74c3c;
}

.tab__ > div {
    background: #e74c3c;
}

/*LITUANIA SEVEN*/
.image-lituania-07 {
    background-image: url('../img/Lituania07/kb11_02899.jpg');
    background-size: cover;
    height: 100vh;
    width: 100%;
}


/*MAPS TRILHA */
    #map-no01 {
        width: 50%;
        display: inline;
        text-align: center;
    }

    #map-se07 {      
        width: 50%;
        display: inline;
        text-align: center;
    }

    .section-maps {
        background-color: #000;
        min-height: 100vh;
    }

    #map-no01 a {
        width: 50%;
    }

    #map-se07 a {
        width: 50%;
    }

    .box-maps{
        text-align: center;
    }

    .section-maps {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .containner-maps {
        padding: 2px;
    }


  .o-slider-pagination {
    z-index: 1;
  }  