@font-face {
font-family: "Myriad Pro Condensed";
src: url("../css/fonts/Myriad_Pro_Condensed.ttf");
}

@font-face {
font-family: "Myriad Pro Bold Condensed";
src: url("../css/fonts/Myriad_Pro_Bold_Condensed.ttf");
}

@font-face {
font-family: "Myriad Pro Light Condensed";
src: url("../css/fonts/Myriad_Pro_Light_Condensed.otf");
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
}

.calltoaction-container-1{
  position: fixed;
  bottom:20%;
  right:-2%;
  width:180px;
  height:100px;
  background-color: #3cb879;
  transform: rotate(-90deg);
  cursor:pointer;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
}

.calltoaction-container-1-inactive{
  transform: translate3d(-50%,0,0);
  visibility: hidden;
}

.calltoaction-container-2{
  z-index:2;
  transform: translate3d(100%,0,0);
  position: fixed;
  padding:20px;
  bottom:13%;
  right:0;
  width:230px;
  height:200px;
  background-color: #3cb879;
  cursor:pointer;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
}

.calltoaction-container-2-active{
  transform: translate3d(0,0,0);
}

@media only screen and (max-width: 2000px) {
    .calltoaction-container-1{
      right:-4%;
    }
}

@media only screen and (max-width: 1400px) {
    .calltoaction-container-1{
      right:-6%;
    }
}

@media only screen and (max-width: 1024px) {
    .calltoaction-container-1{
      right:-10%;
    }
}
@media only screen and (max-width: 700px) {
    .calltoaction-container-1{
      right:-15%;
    }
}
@media only screen and (max-width: 400px) {
    .calltoaction-container-1{
      right:-30%;
    }
}


.credits-link {
  color: #707070;
}

.credits-link:hover {
  color: #909090;
  text-decoration: none;
}

.credit-title {
    font-family: 'Myriad Pro Bold Condensed';
    font-size: 19px;
    text-transform: uppercase;
    letter-spacing: 0.075em;
    color: #565656;
}

.credit-subtitle {
    font-family: 'Myriad Pro Bold Condensed';
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 0.075em;
    color: #565656;

}

.island-credits {
    padding-bottom: 20px;
}

.author {
    color: #565656;
    font-family: 'Myriad Pro Condensed';
    letter-spacing: 0.075em;
    font-size: 17px;
    margin: 0px;
}

.author-label {
    font-family: 'Myriad Pro Bold Condensed';
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.075em;
    color: #909090;
    margin: 0px;
}


.policy-link {
  font-family: 'Myriad Pro Light Condensed';
  font-size: 1.2em;
  letter-spacing: 0.05em;
  color: #707070
}

.policy-link:hover {
  font-family: 'Myriad Pro Light Condensed';
  font-size: 1.2em;
  letter-spacing: 0.05em;
  color: #707070
}

.privacy-heading {
    font-family: 'Myriad Pro Bold Condensed';
    font-size: 2.6em;
    letter-spacing: 0.075em;
    color: #707070;
}

.privacy-title {
    font-family: 'Myriad Pro Bold Condensed';
    font-size: 2.3125em;
    letter-spacing: 0.075em;
    color: #707070;
}

.privacy-subtitle {
    font-family: 'Myriad Pro Condensed';
    font-size: 1.8em;
    letter-spacing: 0.075em;
    color: #707070;
}

.privacy-sub-subtitle {
    font-family: 'Myriad Pro Condensed';
    font-size: 1.5em;
    letter-spacing: 0.075em;
    color: #a2a2a2;
}

.privacy-description {
    letter-spacing: 0.05em;
    font-family: 'Myriad Pro Condensed';
    font-size: 1.2em;
    color: #505050;
    text-align: justify;
    -moz-text-align-last: left;
    text-align-last: left;
    line-height: 1.8em;
}




h2.calltoaction-title{
  display: inline-block;
  font-family: 'Myriad Pro Bold Condensed';
  font-size: 2.0125em;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  color:#ffffff;
  margin-left: 10%;
  margin-top: 10%;
}

.sign-out-icon{
  display: inline-block;
  margin-top: 5%;
  transform: rotate(90deg);
  background-image: url(../assets/icons/sign-out-option.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width:22px;
  height:22px;
}

.close{
  opacity:1!important;
  color: #ffffff!important;
  text-shadow: none!important;
  margin-right: 5%;
  margin-top: 3%;
}

.nav_container{
  z-index:-1;
  width: 100%;
  position: fixed;
  bottom: 15%;
}

.nav_line{
  background-color: #718e3e;
  width: 100%;
  height: 2px;
  position: absolute;
}
.nav_line_progression{
  transform: translate3d(0,-40%,0);
  background-color: #a1d960;
  width: 0%;
  height: 6px;
  position: absolute;
  -webkit-transition: width 0.5s ease-in;
  -moz-transition: width 0.5s ease-in;
  -ms-transition: width 0.5s ease-in;
  -o-transition: width 0.5s ease-in;
  transition: width 0.5s ease-in;
}

.nav_points_container{
  transform: translate3d(0,-50%,0);
  position: absolute;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: space-around; /* Safari 6.1+ */
  justify-content: space-around;
}

.nav_point{
  background-color: #718e3e;
  cursor: pointer;
  width:15px;
  height:15px;
  -webkit-transition: background-color 0.5s ease-in;
  -moz-transition: background-color 0.5s ease-in;
  -ms-transition: background-color 0.5s ease-in;
  -o-transition: background-color 0.5s ease-in;
  transition: background-color 0.5s ease-in;
}

.nav_point_active{
  background-color: #a1d960;
  cursor: auto;
  width:15px;
  height:15px;
}

.nav_point_big{
  background-color: #718e3e;
  opacity: 0;
  width:35px;
  height:35px;
  -webkit-transition: opacity 0.5s ease-in;
  -moz-transition: opacity 0.5s ease-in;
  -ms-transition: opacity 0.5s ease-in;
  -o-transition: opacity 0.5s ease-in;
  transition: opacity 0.5s ease-in;
}
.nav_point_big_active{
  background-color: #718e3e;
  opacity: 0.5;
  width:35px;
  height:35px;
}


.social-container{
  width:40%!important;
  margin-top: 30px;
  transform: translate3d(0,-10px,0);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: space-around; /* Safari 6.1+ */
  justify-content: space-around;
}

.social-button{
  opacity: 1;
  width:170px;
  height:170px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 95%;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -ms-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}

@media only screen and (max-width: 2570px) {
    .social-button {
      width:100px;
      height:100px;
    }
}

@media only screen and (max-width: 2000px) {
    .social-button {
      width:55px;
      height:55px;
    }
}

@media only screen and (max-width: 1370px) {
    .social-button {
      width:55px;
      height:55px;
    }
}

.social-button:hover{
  opacity: .56;
  cursor:pointer;
}

.social-facebook{
  background-image: url(../assets/icons/Social_icons_Facebook.svg);
}

.social-twitter{
  background-image: url(../assets/icons/Social_icons_Twitter.svg);
}

.social-instagram{
  background-image: url(../assets/icons/Social_icons_Instagram.svg);
}

.social-mail{
  background-image: url(../assets/icons/Social_icons_Mail.svg);
}

.button {
  border: none;
  color: white;
  padding: 16px 52px;
  display: block;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
  cursor: pointer;
}

.button-1 {
  transform: translate3D(0,40px,0);
  font-size: 1.3em;
  font-family: "Myriad Pro Light Condensed";
  background-color: rgba(255,255,255,0);
  border: 2px solid white;
}

.button-1:hover {
  background-color: rgba(255,255,255,1);
  color: black;
}

.button-2 {
  display: inline-block;
  transform: translate3D(0,40px,0);
  padding: 8px 22px;
  font-size: 1.5em;
  margin: 0;
  font-family: "Myriad Pro Light Condensed";
  background-color: rgba(255,255,255,0);
  border: 2px solid white;
}

.button-2:hover {
  background-color: rgba(255,255,255,1);
  color: black;
}

.button-3 {
  transform: translate3D(0,40px,0);
  text-shadow: 0px 1px #000000;
  padding: 12px 50px;
  font-size: 1.9em;
  letter-spacing: 0.02em;
  margin: 0;
  margin-left: 15%;
  text-transform: uppercase;
  font-family: "Myriad Pro Bold Condensed";
  background-color: #3cb879;
}

.button-3:hover {
  cursor:pointer;
}

.button-4 {
  padding: 15px 60px;
  font-size: 2.2em;
  margin: 0;
  margin-top: 5%;
  margin-left: 15%;
  font-family: "Myriad Pro Light Condensed";
  background-color: rgba(255,255,255,0);
  border: 1px solid white;
}

.button-4:hover {
  background-color: rgba(255,255,255,0.5);
  color: black;
}

.button-5 {
  position: absolute;
  transform: translate3D(0,40px,0);
  padding: 10px 65px;
  font-size: 1.5em;
  margin: 0;
  right:10%;
  font-family: "Myriad Pro Light Condensed";
  background-color: rgba(255,255,255,0);
  border: 1px solid white;
}

.button-5:hover {
  background-color: rgba(255,255,255,0.5);
  color: black;
}

.button-6 {
  display: block;
  transform: translate3d(-10%,0,0);
  border: 0;
  padding: 8px 40px;
  font-size: 1.5em;
  letter-spacing: 0.02em;
  margin: auto;
  text-transform: uppercase;
  font-family: "Myriad Pro Condensed";
  color: #ffffff;
  background-color: #476d7f;
}

.button-6:hover {
  cursor:pointer;
}

.up-arrow-icon{
  position: fixed;
  opacity: 0.5;
  bottom: 1%;
  right:1%;
  background-image: url(../assets/icons/up-arrow.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width:100px;
  height:100px;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -ms-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.up-arrow-icon:hover{
  opacity: 1;
  cursor: pointer;
}

.up-arrow-icon-inactive{
  opacity: 0;
}

@media only screen and (max-width: 2570px) {
    .up-arrow-icon {
      width:60px;
      height:60px;
    }
}

@media only screen and (max-width: 1370px) {
    .up-arrow-icon {
      width:50px;
      height:50px;
    }
}

@media only screen and (max-width: 600px) {
    .up-arrow-icon {
      display: none;
    }
}

.mouse-scroll-icon{
  position: fixed;
  opacity: 0.7;
  pointer-events: none;
  bottom: 0;
  left: 50%;
  transform: translate3D(-50%, 0, 0);
  background-image: url(../assets/icons/mouse-white.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 90% 100%;
  width:270px;
  height:270px;
  animation-duration: 1s;
  animation-name: transition_mouse;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  -webkit-transition: opacity 0.5s ease-in;
  -moz-transition: opacity 0.5s ease-in;
  -ms-transition: opacity 0.5s ease-in;
  -o-transition: opacity 0.5s ease-in;
  transition: opacity 0.5s ease-in;
}

@media only screen and (max-width: 2570px) {
    .mouse-scroll-icon {
      width:170px;
      height:170px;
    }
}

@media only screen and (max-width: 2000px) {
    .mouse-scroll-icon {
      width:130px;
      height:130px;
    }
}

@media only screen and (max-width: 1370px) {
    .mouse-scroll-icon {
      width:90px;
      height:90px;
    }
}

.mouse-scroll-icon-inactive{
  opacity: 0;
}

@keyframes transition_mouse {
  from {
    transform: translate3D(-50%,0,0);
  }

  to {
    transform: translate3D(-50%,10px,0);
  }
}

.language-selection-container {
  display: inherit;
  /*transform: translate(0, 70%);*/
  width:190px;
  height:50px;
}

.language-button{
  opacity: .56;
  width:40px;
  height:40px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -ms-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}

.language-button:hover{
  opacity: 1;
  cursor:pointer;
}

.pt-pt{
  background-image: url(../assets/icons/pt-pt.svg);
}

.en{
  background-image: url(../assets/icons/en.svg);
}

.header {
  z-index: 1;
  padding-top: 30px;
  height: 105px;
  color: #FFFFFF;
  background-color:rgba(0, 0, 0, 1);
  background: url("../assets/elements/Banner.jpg");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: space-around; /* Safari 6.1+ */
  justify-content: space-around;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
}

.header-index{
  background: none;
  background-color:rgba(0, 0, 0, 0);
}

.header-active {
  background: none;
  background-color:rgba(0, 0, 0, 0.8);
}

.sticky {
  top:0;
  width: 100%;
}

.intro-sentence {
  font-family: 'Myriad Pro Light Condensed';
  font-size: 1.8em;
  letter-spacing: 0.09375em;
  position: absolute;
  top: 50%;
  display: block;
  text-align: center;
  width: 100%;
  color: #ffffff;
  text-transform: uppercase;

}

.logo {
  background-image: url(../assets/natoureza_logo_full_white.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-top: 4%;
  opacity: 0.5;
  width: 190px;
  height: 40px;
}
.logo-active {
  background-image: url(../assets/natoureza_logo_white.svg);
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in;
  -moz-transition: opacity 0.5s ease-in;
  -ms-transition: opacity 0.5s ease-in;
  -o-transition: opacity 0.5s ease-in;
  transition: opacity 0.5s ease-in;
}
.logo-2 {
  transform: translate3d(-40%,5%,0);
  margin:auto;
  background-image: url(../assets/natoureza_logo_white.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 625px;
  height: 210px;
}

.logo-3 {
  margin:auto;
  margin-top: 25px;
  background-image: url(../assets/natoureza_logo_full_white.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 325px;
  height: 70px;
}

.menu-container{
  display: inline-block;
  text-align: center;
}

#HeaderSticker_Mobile{
  display: none;
}

@media only screen and (max-width: 1024px) {
    #HeaderSticker {
      display:none;
    }
    #HeaderSticker_Mobile{
      display: flex;
    }
    .header{
      background: none;
      background-color:rgba(0, 0, 0, 0.8);
    }
    .language-selection-container {
      display: inherit;
      /*transform: translate(0, 70%);*/
      width:auto;
      height:50px;
    }
    .header-logo-2{
      background-size: 90% 40%;
    }
}

.button-menu-white {
  cursor: pointer;
  background-image: url(../assets/icons/bars_icon_white.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 60px 60px;
  height: 60px;
  width: 60px;
}

.underline {
  width:100%;
  text-decoration: none;
  border-bottom: 3px solid #8ebd57;
  transform: scaleX(0);
  transition: transform 0.2s ease-in;
}

button.register-button{
  position: relative;
  padding: 10px 20px;
  margin:auto;
  color: white;
  background-color: rgba(142,189,87, 0.3);
  outline: none;
  text-transform: uppercase;
  font-family: 'Myriad Pro Light Condensed';
  font-size: 1.4em;
  letter-spacing: 0.09375em;
  border: none;
  cursor:pointer;
  overflow: hidden;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
}

button.register-button:hover{
  background-color: rgba(142,189,87, 0.6);
}

button.menu-button{
  position: relative;
  padding-right:30px;
  margin:auto;
  color: white;
  outline: none;
  text-transform: uppercase;
  font-family: 'Myriad Pro Light Condensed';
  font-size: 1.4em;
  letter-spacing: 0.09375em;
  background-color: Transparent;
  background-repeat:no-repeat;
  border: none;
  cursor:pointer;
  overflow: hidden;
}

button.menu-button:hover .underline{
  transform: scaleX(1);
}

button.menu-button-mobile{
  display:block;
  padding-top: 3%;
}

.header-logo{
  margin: auto;
  opacity: 1;
  background-image: url(../assets/natoureza_logo_white.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 75% 50%;
  -webkit-transition: opacity 0.5s ease-in, transform 1s ease-in;
  -moz-transition: opacity 0.5s ease-in, transform 1s ease-in;
  -ms-transition: opacity 0.5s ease-in, transform 1s ease-in;
  -o-transition: opacity 0.5s ease-in, transform 1s ease-in;
  transition: opacity 0.5s ease-in, transform 1s ease-in;
}

.header-logo-2{
  margin: auto;
  opacity: 1;
  background-image: url(../assets/natoureza_logo_white.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 45% 25%;
  width: 100%;
  height: 70%;
  -webkit-transition: opacity 0.5s ease-in, transform 1s ease-in;
  -moz-transition: opacity 0.5s ease-in, transform 1s ease-in;
  -ms-transition: opacity 0.5s ease-in, transform 1s ease-in;
  -o-transition: opacity 0.5s ease-in, transform 1s ease-in;
  transition: opacity 0.5s ease-in, transform 1s ease-in;
}

@media only screen and (max-width: 500px) {
    .header-logo {
      background-size: 75% 30%;
    }
}

.header-logo-inactive{
  opacity: 0;
}

.header-banner{
  z-index: 0;
  position: fixed;
  background: url("../assets/elements/Banner.jpg") -25px -150px;
  background-position: center center;
  background-size: calc(100% + 150px);
  background-repeat: no-repeat;
  width:100%;
  height:100%;
}

@media only screen and (min-width: 2000px) {
    /*.header-banner {
      background: none;
      background-color: #000000;
    }
    */
}

@media only screen and (max-width: 1280px) {
    .header-banner {
      background-size: cover;
    }
}

.ui_content{
  width: 100%;
  height:20%;
  position: fixed;
  top: 0;
  z-index: 3;
}

.sub_menu {
  float:top;
  z-index: 1;
  height: 700px;
  width: 100%;
  padding:10px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s ease;
  background-color: rgba(0,0,0,0.8);
}

.sub_menu_active {
  transform: scaleY(1);
}

img {
  vertical-align: middle;
  pointer-events: none;
}

.notransition {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

.Header-Content-Container{
  position: relative;
  -webkit-transition: opacity 0.5s ease-in;
  -moz-transition: opacity 0.5s ease-in;
  -ms-transition: opacity 0.5s ease-in;
  -o-transition: opacity 0.5s ease-in;
  transition: opacity 0.5s ease-in;
  width:100%;
  height:100%;
  opacity: 0;
  float: left;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
.Header-Content-Container-Active{
  display: inherit;
}

.sectionContainer_header{
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.sectionContainer_header_empty{
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 105px;
}

.sectionContainer_1{
  position:relative;
  background-color: white;
  background-image: url(../assets/elements/graphs_background_1.jpg);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  margin: auto;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
    .sectionContainer_1 {
      height: auto;
    }
}
.sectionContainer_2{
  position:relative;
  background-color: #ffffff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: auto;
  width: 100%;
  height: auto;
}

@media only screen and (min-width: 2000px) {
    .sectionContainer_2 {
      background-image: none;
    }
}

@media only screen and (max-width: 1024px) {
    .sectionContainer_2 {
      height: auto;
      background-image: none;
    }
}
.sectionContainer_3{
  position:relative;
  background-color: #ffffff;
  background-image: url(../assets/elements/rocks_background.jpg);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  margin: auto;
  width: 100%;
  height: auto;
  padding-bottom: 5%;
}

@media only screen and (min-width: 2000px) {
    .sectionContainer_3 {
      background-image: none;
    }
}

@media only screen and (max-width: 1024px) {
    .sectionContainer_3 {
      height: auto;
    }
}

.sectionContainer_4{
  position:relative;
  background-color: #ffffff;
  background-image: url(../assets/elements/waterfall.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: auto;
  margin-top: 2%;
  width: 100%;
  height: auto;
}

.sectionContainer_5{
  position:relative;
  background-color: #000000;
  background-image: url(../assets/elements/mountain_road.jpg);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  margin: auto;
  width: 100%;
  height: auto;
  padding-bottom: 10%;
}

.sectionContainer_6{
  position:relative;
  background-color: white;
  background-image: url(../assets/elements/background_projeto.png);
  background-position: center center;
  background-size: 100% 100%;
  margin: auto;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
    .sectionContainer_6 {
      height: auto;
    }
}

.sectionContainer_7{
  position:relative;
  background-color: #fff8ee;
  background-image: url(../assets/elements/man-backpack.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: auto;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 2000px) {
    .sectionContainer_7 {
      background-image: none;
    }
}

@media only screen and (max-width: 1024px) {
    .sectionContainer_7 {
      height: auto;
      background-image: none;
    }
}

.sectionContainer_8{
  position:relative;
  background-color: black;
  background-image: url(../assets/elements/grass_background.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: auto;
  width: 100%;
  height: auto;
}

@media only screen and (min-width: 2000px) {
    .sectionContainer_8 {
      background-image: none;
    }
}

@media only screen and (max-width: 1024px) {
    .sectionContainer_8 {
      height: auto;
    }
}

.sectionContainer_9{
  position:relative;
  background-color: #ffffff;
  margin: auto;
  width: 100%;
  height: auto;
}

@media only screen and (min-width: 2000px) {
    .sectionContainer_9 {
      background-image: none;
    }
}

@media only screen and (max-width: 1024px) {
    .sectionContainer_9 {
      height: auto;
    }
}

.vertical-bar-container{
  background-color: rgba(0,0,0,0.6);
  height:auto;
  width:45%;
  padding-bottom: 5%;
}

.registo-list-container{
  margin: auto;
  margin-left:15%;
  margin-top: 15%;
}
.registo-list-item{
  position: relative;
  display: block;
  margin: auto;
  margin-bottom: 1%;
}
.check-icon{
  display: inline-block;
  width:42px;
  height:42px;
  background-image: url("../assets/icons/check_icon.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

h2.registo-item-text{
  display: inline-block;
  padding-left: 5%;
  font-family: 'Myriad Pro Condensed';
  font-size: 1.9125em;
  letter-spacing: 0.125em;
  text-align: right;
  color: #ffffff;
  transform: translate3d(0,-20%,0);
}

h2.title-style-registo{
  padding-top: 15%;
  font-family: 'Myriad Pro Bold Condensed';
  font-size: 2.8125em;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  margin:0;
  margin-left: 15%;
  text-align: left;
  color: #ffffff;
}

h1.title-style-mobile{
    font-family: 'Myriad Pro Bold Condensed';
    font-size: 4.3125em;
    letter-spacing: 0.125em;
    margin:0;
    text-align: center;
    color: #6a6a6a;
}
.app-content{
  margin-top: 5%;
  transform: translate3d(-15%,0,0);
}

.footer{
  position:relative;
  background-color: #000000;
}
.footer-top-container{
  margin:0 auto!important;
  padding-top: 1%!important;
  width:50%;
}

.footer-text-container {
  margin-left: 2%;
  display: inline-block;
}


a.footer-text{
  font-family: 'Myriad Pro Light Condensed';
  font-size: 1.2125em;
  letter-spacing: 0.125em;
  display: inline-block;
  margin: auto;
  text-align: center;
  color: #707070;
  padding: 0 0.5em;
}

.gamification {
  font-family: 'Myriad Pro Light Condensed';
  font-size: 1.2em;
  letter-spacing: 0.05em;
  color: #707070;
}

.credits-link {
  font-family: 'Myriad Pro Light Condensed';
  font-size: 1.2em;
  letter-spacing: 0.05em;
  color: #707070;
}

.credits-link {
  color: #707070;
  text-decoration: none;
  letter-spacing: 0.05em;
}


a.footer-text:hover {
  color: #909090;
  text-decoration: none;
}

@media only screen and (max-width: 738px){
  .footer-text {
    margin-top: 25px;
  }
}



hr.footer-hr{
  position:relative;
  border: 0;
  height: 1px;
  background-color: #707070;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-style: inset;
}

.black-bar{
  /*transform: translate3d(0,50%,0);*/
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  background-color: rgba(0,0,0,0.52);
  bottom: 0;
  width:100%;
  z-index: 2;
}

@media only screen and (max-width: 1024px) {
  .black-bar{
    position:relative;
  }
}

@media only screen and (max-width: 900px) {
  .black-bar{
    position:relative;
    -webkit-flex-direction: column;
    flex-direction: column;
    width: auto;
  }
}

.black-bar-2{
  /*transform: translate3d(0,50%,0);*/
  margin:auto;
  margin-top: 5%;
  height:200px;
  background-color: rgba(0,0,0,0.85);
  width:100%;
}

.text-area{
  text-align:center;
  padding-right: 20px;
}

/* floating objects*/
.mobile-phone{
  z-index: 1;
  top:0;
  right:0;
  transform: translate3d(0,5%,0);
  position: absolute;
  background-image: url("../assets/elements/Tablet_v2.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width:556px;
  height:1230px;
}
@media only screen and (min-width: 2000px) {
  .mobile-phone{
    background-image: none;
  }
}

@media only screen and (max-width: 1940px) {
  .mobile-phone{
    width:456px;
    height:1030px;
  }
}

@media only screen and (max-width: 1440px) {
  .mobile-phone{
    width:371px;
    height:820px;
  }
}

@media only screen and (max-width: 1370px) {
  .mobile-phone{
    width:371px;
    height:820px;
  }
}
@media only screen and (max-width: 980px) {
    .mobile-phone {
      display: none;
    }
}

.ilhas-container{
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.ilha-content-bar{
  position: absolute;
  bottom:0;
  background-color: rgba(0,0,0,0.4);
  width:100%;
  height:80px;
  -moz-transition: height 1s ease;
  -webkit-transition: height 1s ease;
  -o-transition: height 1s ease;
  transition: height 1s ease;
}

.ilha-content-box{
  position: relative;
  margin-bottom: 10px;
  height:400px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.ilha-content-box:hover .ilha-content-bar{
  height:100%;
}
.ilha-content-box:hover .paragraph-style-ilha{
  display: inherit;
}

.ilha-graciosa-image{
  background-image: url(../assets/azores/GRACIOSA.jpg);
}

.ilha-faial-image{
  background-image: url(../assets/azores/FAIAL.jpg);
}

.ilha-corvo-image{
  background-image: url(../assets/azores/CORVO.jpg);
}
.ilha-pico-image{
  background-image: url(../assets/azores/PICO.jpg);
}
.ilha-flores-image{
  background-image: url(../assets/azores/FLORES.jpg);
}
.ilha-saojorge-image{
  background-image: url(../assets/azores/SAO_JORGE.jpg);
}
.ilha-terceira-image{
  background-image: url(../assets/azores/TERCEIRA.jpg);
}
.ilha-santamaria-image{
  background-image: url(../assets/azores/SANTA_MARIA.jpg);
}
.ilha-saomiguel-image{
  background-image: url(../assets/azores/SAO_MIGUEL.jpg);
}

/*text formats*/
.sub-text-box{
  padding-left: 5%;
  display: inline-block;
  width:44%;
}

.text-box{
  display: block;
}

.text-box-2{
  padding-left: 10%;
  display: block;
}
@media only screen and (max-width: 980px) {
    .text-box-2 {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-direction: column;
      flex-direction: column;
      -webkit-justify-content: center;
      justify-content: center;
      align-items: center;
    }
}
.text-box-item{
  display: block;
  text-align: left;
  vertical-align: middle;
}
@media only screen and (max-width: 980px) {
  .text-box-item{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    align-items: center;
  }
}

.publication-container {
  padding-top: 5%;
  margin:auto;
  width: 80%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  align-items: center;
  padding-bottom: 5%;
}

.publication-item{
  position: relative;
  background-color: #ffffff;
  -webkit-box-shadow: 2px 8px 18px #888888;
  box-shadow: 2px 8px 18px #888888;
  height:400px;
  width:290px;
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

.publication-item-image{
  position: absolute;
  bottom:0;
  margin-bottom: 5%;
  height:253px;
  width:330px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translate3d(30%,0,0);
}
.publication-image-1{
  background-image: url(../assets/publications/publication_1.jpg);
}
.publication-image-2{
  background-image: url(../assets/publications/publication_2.jpg);
}
.publication-image-3{
  background-image: url(../assets/publications/publication_3.jpg);
}
.publication-my{
    display:inline-block;
}

a.publication-title{
    font-family: 'Myriad Pro Bold Condensed';
    margin-left: 10%;
    letter-spacing: 0.105em;
    text-transform: uppercase;
    color: #707070;
    font-size: 18px;
}

h4.publication-title{
    font-family: 'Myriad Pro Bold Condensed';
    margin-left: 10%;
    letter-spacing: 0.105em;
    text-transform: uppercase;
    color: #707070;
}
.plus-icon-small-container{
    position: relative;
    display: inline-block;
    text-align: right;
    margin: auto;
    margin-right: 0;
    width:90%;
}
.plus-icon-small{
    display: inline-block;
    width:15px;
    height:32px;
    background-image: url("../assets/icons/plus_lightblue.svg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
h2.plus-icon-small-text{
    display: inline-block;
    padding-left: 3%;
    font-family: 'Myriad Pro Light Condensed';
    font-size: 0.9125em;
    letter-spacing: 0.125em;
    text-align: right;
    color: #316e80;
    transform: translate3d(0,-80%,0);
}
h2.publication-day{
    display: inline-block;
  font-family: 'Myriad Pro Condensed';
  font-size: 5.125em;
  letter-spacing: 0.125em;
  margin:0;
  margin-top: 5%;
  margin-left: 10%;
  text-align: left;
  color: #707070;
}

h2.publication-month{
  display: block;
  font-family: 'Myriad Pro Condensed';
  font-size: 2.4125em;
  letter-spacing: 0.125em;
  margin:0;
    text-transform: lowercase;
  margin-left: 10%;
  text-align: left;
  color: #707070;
  padding-bottom: 3%;
}
h2.publication-year{
  display: block;
  font-family: 'Myriad Pro Light Condensed';
  font-size: 1.3125em;
  letter-spacing: 0.125em;
  margin:0;
  color: #707070;
  padding-bottom: 3%;
  padding-left: 5%;
}

p.publication-paragraph{
  font-family: 'Myriad Pro Light Condensed';
  font-size: 0.9em;
  letter-spacing: 0.125em;
  margin:0;
  margin-left: 10%;
  width: 85%;
  text-align: left;
  color: #707070;
  padding-bottom: 5%;
}

.graph-icons{
  display:inline-block;
  width: 80px;
  height: 80px;
  margin-right: 5%;
  margin-top: 5%;
  margin-bottom: 5%;
}

.graph-icons-silhouette{
  display:inline-block;
  width: 75px;
  height: 75px;
  opacity: 0.06;
  margin-right: 10%;
}

.graph-button-create {
  display: block;
  margin: 0;
  margin-top: 5%;
  border: 0;
  padding: 8px 30px;
  font-size: 1.5em;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: "Myriad Pro Condensed";
  color: #ffffff;
  background-color: #52ba84;
}

.graph-button-create:hover {
   cursor:pointer;
 }

.graph-button-create:disabled {
  background-color: #c3c3c3;
}

.graph-option-infobox{
  display: inline-block;
  font-family: 'Myriad Pro Condensed';
  font-size: 0.8525rem;
  letter-spacing: 0.075rem;
  line-height: 2rem;
  margin-left: 1%;
  color: #4895a4;
  margin-bottom: 1%;
}

.infobox-icon{
  display: inline-block;
  width:20px;
  height:20px;
  background-image: url(../assets/icons/info.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.graph-image-container{
  position: absolute;
  width:772px;
  height:723px;
  right:10%;
  background-image: url(../assets/elements/MAC_WITH_IMG.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.graph-image-container-hidden{
  -webkit-transition: opacity 0.5s ease-in;
  -moz-transition: opacity 0.5s ease-in;
  -ms-transition: opacity 0.5s ease-in;
  -o-transition: opacity 0.5s ease-in;
  transition: opacity 0.5s ease-in;
  opacity: 0!important;

}

.center-title {
    text-align: center;
}

h1.sobre-title-style-1{
    font-family: 'Myriad Pro Bold Condensed';
    font-size: 15.3125em;
    letter-spacing: 0.125em;
    margin:0;
    text-align: left;
    text-transform: uppercase;
    color: #000000;
    opacity: 0.60;
    line-height: 2;
}

@media only screen and (max-width: 2570px) {
  h1.sobre-title-style-1{
    font-size: 9.3125em;
    letter-spacing: 0.125em;
  }
}

@media only screen and (max-width: 2000px) {
  h1.sobre-title-style-1{
    font-size: 7.3125em;
    letter-spacing: 0.125em;
  }
}

@media only screen and (max-width: 1440px) {
  h1.sobre-title-style-1{
    font-size: 6.3125em;
  }
}

@media only screen and (max-width: 1370px) {
  h1.sobre-title-style-1{
    font-size: 5.3125em;
  }
}

@media only screen and (max-width: 780px) {
  h1.sobre-title-style-1{
    width:100%;
    font-size: 2.8125em;
  }
}


@media only screen and (max-width: 500px) {
  h1.sobre-title-style-1{
    width:100%;
    font-size: 2.1875em;
  }
}

h1.title-style-1{
    font-family: 'Myriad Pro Light Condensed';
    font-size: 15.3125em;
    letter-spacing: 0.125em;
    text-transform: uppercase;
    margin:0;
    text-align: center;
    color: #ffffff;
}

@media only screen and (max-width: 2570px) {
  h1.title-style-1{
    font-size: 9.3125em;
    letter-spacing: 0.125em;
  }
}

@media only screen and (max-width: 2000px) {
  h1.title-style-1{
    font-size: 7.0125em;
    letter-spacing: 0.125em;
  }
}

@media only screen and (max-width: 1440px) {
  h1.title-style-1{
    font-size: 5.3125em;
  }
}

@media only screen and (max-width: 1370px) {
  h1.title-style-1{
    font-size: 4.0125em;
  }
}

@media only screen and (max-width: 780px) {
  h1.title-style-1{
    width:100%;
    font-size: 2.8125em;
  }
}


@media only screen and (max-width: 500px) {
  h1.title-style-1{
    width:100%;
    font-size: 2.1875em;
  }
}

h3.title-style-2{
    font-family: 'Myriad Pro Light Condensed';
    text-transform: uppercase;
    letter-spacing: 0.15625em;
    font-size: 5.0625em;
    padding-top: 20px;
    margin:0;
    text-align: center;
    color: #ffffff;
    line-height: 2;
}

@media only screen and (max-width: 2570px) {
  h3.title-style-2{
    letter-spacing: 0.15625em;
    font-size: 3.2625em;
  }
}

@media only screen and (max-width: 2000px) {
  h3.title-style-2{
    letter-spacing: 0.15625em;
    font-size: 2.5625em;
  }
}

@media only screen and (max-width: 1680px) {
  h3.title-style-2{
    font-size: 1.8625em;
    letter-spacing: 0.125em;
  }
}

@media only screen and (max-width: 1370px) {
  h3.title-style-2{
    font-size: 2.4625em;
    letter-spacing: 0.125em;
  }
}

h3.sobre-title-style-2{
    font-family: 'Myriad Pro Light Condensed';
    letter-spacing: 0.15625em;
    font-size: 5.0625em;
    text-transform: uppercase;
    padding-top: 20px;
    margin:0;
    text-align: center;
    color: #ffffff;
    line-height: 2;
}

@media only screen and (max-width: 2570px) {
  h3.sobre-title-style-2{
    letter-spacing: 0.15625em;
    font-size: 3.2625em;
  }
}

@media only screen and (max-width: 2000px) {
  h3.sobre-title-style-2{
    letter-spacing: 0.15625em;
    font-size: 2.5625em;
  }
}

@media only screen and (max-width: 1680px) {
  h3.sobre-title-style-2{
    font-size: 1.8625em;
    letter-spacing: 0.125em;
  }
}

@media only screen and (max-width: 1370px) {
  h3.sobre-title-style-2{
    font-size: 1.4625em;
    letter-spacing: 0.125em;
  }
}

.title-container{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: space-between; /* Safari 6.1+ */
  justify-content: space-between;
}

hr.hr-publication {
     width: 15%;
     height: 1px;
     margin:0;
     border: 0;
     background-color: #316e80;
     display: block;
     margin-left: 10%;
     margin-top: 0.5em;
     margin-bottom: 2.0em;
     border-style: inset;
 }

hr.hr-publication-bottom {
    width: 15%;
    height: 1px;
    margin:0;
    border: 0;
    background-color: #316e80;
    display: inline-block;
    margin-left: 10%;
    margin-top: 0.5em;
    margin-bottom: 1.0em;
    border-style: inset;
}

hr.hr-separator {
  width: 40%;
  height: 2px;
  margin:auto;
  border: 0;
  background-color: #707070;
  display: block;
  margin-top: 7.5em;
  margin-bottom: 5.5em;
  margin-left: auto;
  margin-right: auto;
  border-style: inset;
}

hr.hr-separator-white {
   width: 40%;
   height: 2px;
   margin:auto;
   border: 0;
   background-color: #ffffff;
   display: block;
   margin-top: 7.5em;
   margin-bottom: 7.5em;
   margin-left: auto;
   margin-right: auto;
   border-style: inset;
 }

hr.hr-vertical {
  width: 1px;
  height: 500px;
  margin:auto;
  border: 0;
  background-color: #c3c3c3;
  display: inline-block;
  margin-top: 4.5rem;
  margin-left: 7.5rem;
  margin-right: 7.5rem;
  border-style: inset;
}

hr.hr-vertical-hidden {
  width: 1px;
  height: 500px;
  margin:auto;
  border: 0;
  background-color: #c3c3c3;
  display: none;
  margin-top: 4.5rem;
  margin-left: 7.5rem;
  margin-right: 7.5rem;
  border-style: inset;
}

h1.title-style-3-white{
    font-family: 'Myriad Pro Bold Condensed';
    font-size: 5.3125em;
    letter-spacing: 0.1875em;
    margin:auto;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 2;
    text-align: center;
}
@media only screen and (max-width: 2000px) {
  h1.title-style-3-white{
    font-size: 7.3125em;
    letter-spacing: 0.1875em;
  }
}

h1.title-style-3{
    font-family: 'Myriad Pro Bold Condensed';
    font-size: 15.3125em;
    letter-spacing: 0.025em;
    margin:auto;
    text-transform: uppercase;
    color: #000000;
    opacity: 0.60;
    line-height: 2;
    text-align: center;
}

@media only screen and (max-width: 2570px) {
  h1.title-style-3{
    font-size: 8.3125em;
    letter-spacing: 0.1875em;
  }
}

@media only screen and (max-width: 2000px) {
  h1.title-style-3{
    font-size: 7.3125em;
    letter-spacing: 0.1875em;
  }
}

@media only screen and (max-width: 1440px) {
  h1.title-style-3{
    font-size: 5.3125em;
    letter-spacing: 0.1875em;
  }
}

@media only screen and (max-width: 1370px) {
  h1.title-style-3{
    font-size: 5.3125em;
    letter-spacing: 0.1875em;
  }
}

@media only screen and (max-width: 780px) {
  h1.title-style-3{
    width:100%;
    font-size: 2.8125em;
  }
}

@media only screen and (max-width: 500px) {
  h1.title-style-3{
    width:100%;
    font-size: 2.1875em;
  }
}

h1.sobre-title-style-3{
    font-family: 'Myriad Pro Bold Condensed';
    font-size: 12.3125em;
    letter-spacing: 0.1875em;
    margin:0;
    text-align: left;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 2;
}

@media only screen and (max-width: 2570px) {
  h1.sobre-title-style-3{
    font-size: 8.3125em;
    letter-spacing: 0.1875em;
  }
}

@media only screen and (max-width: 2000px) {
  h1.sobre-title-style-3{
    font-size: 7.3125em;
    letter-spacing: 0.1875em;
  }
}

@media only screen and (max-width: 1440px) {
  h1.sobre-title-style-3{
    font-size: 5.3125em;
    letter-spacing: 0.1875em;
  }
}

@media only screen and (max-width: 1370px) {
  h1.sobre-title-style-3{
    font-size: 4.3125em;
    letter-spacing: 0.1875em;
  }
}

@media only screen and (max-width: 780px) {
  h1.sobre-title-style-3{
    width:100%;
    font-size: 2.8125em;
  }
}

@media only screen and (max-width: 500px) {
  h1.sobre-title-style-3{
    width:100%;
    font-size: 2.1875em;
  }
}

h4.title-style-4{
    font-family: 'Myriad Pro Bold Condensed';
    font-size: 6.625em;
    letter-spacing: 0.2375em;
    margin:0;
    text-align: left;
    text-transform: uppercase;
    color: #000000;
    opacity: 0.60;
    line-height: 2;
}

@media only screen and (max-width: 2570px) {
  h4.title-style-4{
    font-size: 2.625em;
    letter-spacing: 0.2375em;
  }
}

@media only screen and (max-width: 1370px) {
  h4.title-style-4{
    font-size: 2.625em;
    letter-spacing: 0.1875em;
  }
}

@media only screen and (max-width: 500px) {
  h4.title-style-4{
    width:80%;
    text-align:center;
  }
}

h4.title-style-5{
    font-family: 'Myriad Pro Bold Condensed';
    font-size: 6.625em;
    letter-spacing: 0.2375em;
    margin:0;
    text-align: left;
    color: #a4d046;
    line-height: 2;
}

@media only screen and (max-width: 2570px) {
  h4.title-style-5{
    font-size: 2.625em;
    letter-spacing: 0.2375em;
  }
}

@media only screen and (max-width: 1370px) {
  h4.title-style-5{
    font-size: 1.625em;
    letter-spacing: 0.1875em;
  }
}

@media only screen and (max-width: 500px) {
  h4.title-style-5{
    width:80%;
    text-align:center;
  }
}

h4.sub-title-style-1{
  font-family: 'Myriad Pro Bold Condensed';
  font-size: 1.425em;
  letter-spacing: 0.0375em;
  margin:0;
  text-align: left;
  color: #000000;
  opacity: 0.60;
  line-height: 2;
}
/*Ilhas titles*/
h4.sub-title-style-2{
  font-family: 'Myriad Pro Bold Condensed';
  font-size: 2.125em;
  text-shadow: 2px 2px 4px #000000;
  letter-spacing: 0.1375em;
  text-transform: uppercase;
  margin:auto;
  margin-top: 1%;
  margin-left: 5%;
  text-align: left;
  color: white;
  line-height: 2;
}

/*ilhas paragraphs*/

p.paragraph-style-ilha{
  display:none;
  width:95%;
  margin-left: 5%;
  font-family: 'Myriad Pro Condensed';
  font-size: 0.900em;
  color: #ffffff;
  text-align: left;
  line-height: 1.8;
  letter-spacing: 0.125em;
}

p{
  margin: 0;
  padding: 0;
}

p.paragraph-style-1{
  width:90%;
  font-family: 'Myriad Pro Condensed';
  font-size: 4.900em;
  color: #484747;
  text-align: justify;
  line-height: 1.8;
  letter-spacing: 0.125em;
}

@media only screen and (max-width: 2570px) {
  p.paragraph-style-1{
    font-size: 2.900em;
  }
}

@media only screen and (max-width: 2000px) {
  p.paragraph-style-1{
    width:70%;
    font-size: 1.675em;
  }
}

@media only screen and (max-width: 1440px) {
  p.paragraph-style-1{
    width:70%;
    font-size: 1.675em;
  }
}

@media only screen and (max-width: 1370px) {
  p.paragraph-style-1{
    width:65%;
    font-size: 1.175em;
  }
}

@media only screen and (max-width: 980px) {
  p.paragraph-style-1{
    width:90%;
    font-size: 1.375em;
    padding-bottom: 50px;
  }
}

p.paragraph-style-2{
  width:90%;
  font-family: 'Myriad Pro Condensed';
  font-size: 4.95em;
  color: #484747;
  text-align: justify;
  line-height: 1.8;
  letter-spacing: 0.125em;
}

@media only screen and (max-width: 2570px) {
  p.paragraph-style-2{
    width:68%;
    font-size: 2.95em;
    letter-spacing: 0.125em;
  }
}

@media only screen and (max-width: 2000px) {
  p.paragraph-style-2{
    width:68%;
    font-size: 1.75em;
    letter-spacing: 0.125em;
  }
}

@media only screen and (max-width: 1680px) {
  p.paragraph-style-2{
    width:60%;
    font-size: 1.45em;
    letter-spacing: 0.09375em;
  }
}

@media only screen and (max-width: 1440px) {
  p.paragraph-style-2{
    width:60%;
    font-size: 1.55em;
    letter-spacing: 0.09375em;
  }
}

@media only screen and (max-width: 1370px) {
  p.paragraph-style-2{
    width:63%;
    font-size: 1.25em;
    letter-spacing: 0.09375em;
  }
}

@media only screen and (max-width: 980px) {
  p.paragraph-style-2{
    width:90%;
    font-size: 1.375em;
    padding-bottom: 50px;
  }
}
p.paragraph-style-3{
  width:90%;
  font-family: 'Myriad Pro Condensed';
  font-size: 4.95em;
  color: #484747;
  text-align: justify;
  line-height: 1.8;
  letter-spacing: 0.125em;
}

@media only screen and (max-width: 2570px) {
  p.paragraph-style-3{
    width:50%;
    font-size: 2.95em;
    letter-spacing: 0.125em;
  }
}

@media only screen and (max-width: 2000px) {
  p.paragraph-style-3{
    width:50%;
    font-size: 1.95em;
    letter-spacing: 0.125em;
  }
}

@media only screen and (max-width: 1680px) {
  p.paragraph-style-3{
    width:48%;
    font-size: 1.35em;
    letter-spacing: 0.09375em;
  }
}

@media only screen and (max-width: 1440px) {
  p.paragraph-style-3{
    width:48%;
    font-size: 1.55em;
    letter-spacing: 0.09375em;
  }
}

@media only screen and (max-width: 1370px) {
  p.paragraph-style-3{
    width:50%;
    font-size: 1.25em;
    letter-spacing: 0.09375em;
  }
}
@media only screen and (max-width: 980px) {
  p.paragraph-style-3{
    width:90%;
    font-size: 1.375em;
    padding-bottom: 50px;
  }
}


p.paragraph-style-4{
  width:60%;
  font-family: 'Myriad Pro Condensed';
  font-size: 2.55em;
  color: #ffffff;
  text-align: left;
  line-height: 1.8;
  letter-spacing: 0.125em;
  margin-left:10%;
  margin-top: 2%;
}

p.box-paragraph-style{
  font-family: 'Myriad Pro Condensed';
  font-size: 4.5em;
  color: #ffffff;
  text-align: center;
  line-height: 3;
  letter-spacing: 0.15625em;
}

@media only screen and (max-width: 2570px) {
  p.box-paragraph-style{
    font-size: 3em;
    letter-spacing: 0.15625em;
  }
}

@media only screen and (max-width: 2000px) {
  p.box-paragraph-style{
    font-size: 2.175em;
    letter-spacing: 0.15625em;
  }
}

@media only screen and (max-width: 1680px) {
  p.box-paragraph-style{
    font-size: 1.775em;
    letter-spacing: 0.09375em;
  }
}

@media only screen and (max-width: 1370px) {
  p.box-paragraph-style{
    font-size: 1.375em;
    letter-spacing: 0.09375em;
  }
}

p.box-paragraph-style-left-side{
  font-family: 'Myriad Pro Condensed';
  font-size: 4.125em;
  width:65%;
  margin: 0;
  color: #ffffff;
  line-height: 1.8;
  letter-spacing: 0.125em;
  padding-bottom: 50px;
}

@media only screen and (max-width: 2570px) {
  p.box-paragraph-style-left-side{
    font-size: 2.125em;
    letter-spacing: 0.09375em;
  }
}

@media only screen and (max-width: 1440px) {
  p.box-paragraph-style-left-side{
    font-size: 1.625em;
    letter-spacing: 0.09375em;
  }
}

@media only screen and (max-width: 1370px) {
  p.box-paragraph-style-left-side{
    font-size: 1.125em;
    letter-spacing: 0.09375em;
  }
}

@media only screen and (max-width: 980px) {
  p.box-paragraph-style-left-side{
    width:80%;
    text-align: justify;
    font-size: 1.375em;
    padding-bottom: 50px;
  }
}

/*Icons*/
.plus-icon-container{
  position: relative;
  display: block;
  margin: auto;
  margin-right: 0;
  width:20%;
  cursor:pointer;
}

@media only screen and (max-width: 980px) {
    .plus-icon-container {
      display: block;
      width:50%;
      margin-top: 5%;
    }
}

.plus-icon{
  display: inline-block;
  width:32px;
  height:32px;
  background-image: url("../assets/icons/plus.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
h2.plus-icon-text{
  display: inline-block;
  padding-left: 3%;
  font-family: 'Myriad Pro Bold Condensed';
  font-size: 1.7125em;
  letter-spacing: 0.125em;
  text-align: right;
  color: #707070;
  transform: translate3d(0,-20%,0);
}

.science-icon{
  float:left;
  width:500px;
  height:500px;
  background-image: url("../assets/icons/science.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 0.87;
}

@media only screen and (max-width: 2570px) {
  .science-icon{
    width:260px;
    height:260px;
  }
}

@media only screen and (max-width: 1370px) {
  .science-icon{
    width:160px;
    height:160px;
  }
}

@media only screen and (max-width: 980px) {
  .science-icon{
    clear: left;
    transform: translate3d(35px,0,0);
  }
}

.marketing-icon{
  clear: left;
  float:left;
  width:500px;
  height:500px;
  background-image: url("../assets/icons/marketing.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 0.87;
}

@media only screen and (max-width: 2570px) {
  .marketing-icon{
    width:260px;
    height:260px;
  }
}

@media only screen and (max-width: 1370px) {
  .marketing-icon{
    width:160px;
    height:160px;
  }
}

@media only screen and (max-width: 980px) {
  .marketing-icon{
    clear: left;
    transform: translate3d(35px,0,0);
  }
}

.mobile-icon{
  clear: left;
  float:left;
  width:500px;
  height:500px;
  background-image: url("../assets/icons/mobile.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 0.87;
}

@media only screen and (max-width: 2570px) {
  .mobile-icon{
    width:260px;
    height:260px;
  }
}

@media only screen and (max-width: 1370px) {
  .mobile-icon{
    width:160px;
    height:160px;
  }
}

@media only screen and (max-width: 980px) {
  .mobile-icon{
    clear: left;
    transform: translate3d(35px,0,0);
  }
}

@media only screen and (max-width: 1500px) {
  .patrocinios-container{
    width:60%!important;
  }
}

@media only screen and (max-width: 780px) {
  .patrocinios-container{
    width:50%!important;
  }
}
@media only screen and (max-width: 500px) {
  .patrocinios-container{
    width:100%!important;
  }
}

.patrocinios-container{
  width: 45%;
  margin: auto;
  height: 33px;
  background-image: url(../assets/icons/patrocinios_white.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: inline-block;
}

.download-app-container{
  text-align: center;
  margin: 0px auto;
  margin-top: 3%;
}
.download-button{
  display: inline-block;
  width:190px;
  height:60px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.google-play{
  background-image: url(../assets/icons/google-play-badge-pt-pt.svg);
}

.app-store{
  margin-left: 2%;
  background-image: url(../assets/icons/app-store-badge-pt-pt.svg);
}

.mobile-phone-2{
  z-index: 0;
  bottom:0;
  right:0;
  position: absolute;
  background-image: url("../assets/elements/mobile.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width:491px;
  height:724px;
}

@media only screen and (max-width: 980px) {
  .mobile-phone-2{
    display:none;
  }
}

.graph_container{
  height:433px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.graph_1{
}
.graph_2{
}

.categories-path-container{
  position: relative;
  display: inline-block;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  padding-left: 3%;
  font-family: 'Myriad Pro Bold Condensed';
  text-transform: uppercase;
  font-size: 1.7125em;
  letter-spacing: 0.125em;
  text-align: right;
  color: #888888;
}
hr.hr-categorias{
  position:relative;
   border: 0;
   height: 1px;
   background-color: #888888;
   width: 90%;
   display: block;
   margin-top: 0em;
   margin-bottom: 3.5em;
   margin-left: 2.5em;
   margin-right: auto;
   border-style: inset;
}
h2.spot-title-style{
  position:relative;
  margin: 0;
  font-family: 'Myriad Pro Bold Condensed';
  text-transform: uppercase;
  margin-left:5%;
  padding-bottom: 3%;
  font-size: 2.3125em;
  letter-spacing: 0.075em;
  text-align: left;
  color: #707070;
}
p.spot-description{
  font-family: 'Myriad Pro Regular';
  font-size: 1.3em;
  color: #555555;
  line-height: 2em;
  text-align: justify;
  -moz-text-align-last: left; /* Code for Firefox */
  text-align-last: left;
  line-height: 1.8em;
  margin: 0;
  color: #555555;
  width: 88%;
  margin-left:5%;
  padding-bottom: 3%;
}

.activities-map{
  position: relative;
  background-color: #707070;
  margin-left: 5%;
  width:88%;
  height:600px;
}

.reviews-window{
  position: relative;
  margin-left: 5%;
}
h2.rating-number{
  display: inline-block;
  margin:0;
  font-family: 'Myriad Pro Bold Condensed';
  font-size: 2.4125em;
  letter-spacing: 0.075em;
  color:#059b9a;
}
h2.comentarios-number{
  display: inline-block;
  margin:0;
  margin-left: 3%;
  font-family: 'Myriad Pro Bold Condensed';
  font-size: 1.3525em;
  letter-spacing: 0.075em;
  color:#059b9a;
}
.rating-container{
  margin-top: 5%;
  display: block;
}
.rating-star-container{
  display: inline-block;
}
.rating-star{
  display: inline-block;
  transform: translate3d(0,15%,0);
  width:35px;
  height:35px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.rating-star-smaller{
  transform: translate3d(0,0,0);
  width:15px;
  height:15px;
}
.star-filled{
  background-image: url(../assets/icons/star_filled.svg);
}
.star-unfilled{
  background-image: url(../assets/icons/star_unfilled.svg);
}
.star-half{
  background-image: url(../assets/icons/star_half.svg);
}

hr.hr-reviews{
  position:relative;
   border: 0;
   height: 1px;
   background-color: #888888;
   width: 90%;
   display: block;
   margin-top: 1.5em;
   margin-bottom: 1em;
   margin-left: 0;
   border-style: inset;
}

.reviews-container{
  position: relative;
  overflow-y: scroll;
  overflow-x: hidden;
  width: 90%;
  height:300px;
}

.review-item{
  display: block;
  margin-bottom: 2%;
}
.rating-star-container-2{
  display: block;
}
.review-avatar {
  position: absolute;
  display: inline-block;

  border-radius: 50%;
  width:64px;
  height:64px;
  background-color: #059b9a;
}
h2.review-avatar-name{
  margin:0;
  font-family: 'Myriad Pro Condensed';
  font-size: 1.1525em;
  letter-spacing: 0.075em;
  color:#059b9a;
}
.review-comment-container{
  display: inline-block;
  margin-left: 74px;
  width:80%;
}
p.review-comment{
  display: inline-block;
  font-family: 'Myriad Pro Condensed';
  font-size: 0.9525em;
  letter-spacing: 0.075em;
  color:#888888;
  width:100%;
}

p.graph-paragraph{
    font-family: 'Myriad Pro Condensed';
    font-size: 1.1525rem;
    letter-spacing: 0.075rem;
    color: #707070;
    width:35%;
    margin-bottom: 1%;
}

.graph-informative-note{
  font-family: 'Myriad Pro Condensed';
  font-size: 0.8525rem;
  letter-spacing: 0.075rem;
  line-height: 2rem;
  color: #707070;
  margin-bottom: 1%;
}

.graph_generator_container{
  display: none;
  width:35%;
  position: relative;
  padding-top: 3%;
  margin-left: 5%;
}

.graph_generated{
    margin:0;
    width:120%;
}

.graph-right-side{
  display: inline-block;
  width: 35%;
}

.textplus-icon{
  display: inline-block;
  font-size: 2.5rem;
  font-family: "Myriad Pro Light Condensed";
  margin-right: 5%;
}

.graph-add-button-text{
  display: inline-block;
  color: #747474;
  letter-spacing: 0.125rem;
  font-size: 2.0rem;
  font-family: "Myriad Pro Condensed";
}

.graph-add-button{
   display: none;
   border: 2px solid #c3c3c3;
   color: #c3c3c3;
   border-radius: 5px;
   margin-top: 15%;
   text-align: center;
   line-height: 300px;
   width:500px;
   height:300px;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in;
  -moz-transition: opacity 0.5s ease-in;
  -ms-transition: opacity 0.5s ease-in;
  -o-transition: opacity 0.5s ease-in;
  transition: opacity 0.5s ease-in;
  cursor: pointer;
 }

.graph-add-button-hidden{
  opacity: 0;
}

.graph_options_container{
  margin:0!important;
}

.graph_introduction_container{
  display: block;
  position: relative;
  width:95%;
  margin-left: 5%;
  padding-top: 3%;
}

.graph-silhouettes-container{
  display: none;
  margin-top: 8%;
  margin-bottom: 5%;
  width: 100%;
  text-align: right;
}

.generator-category-button{
  display: inline-block;
  border: 0;
  padding: 3px 10px;
  font-size: 1em;
  letter-spacing: 0.02em;
  background-color: #2c6d81;
  background-repeat:no-repeat;
  outline:none;
  text-transform: uppercase;
  font-family: "Myriad Pro Light Condensed";
  color: #ffffff;
}

.hide_graph_options{
  display: none !important;
}

.generator-category-button-gerar{
  border: 0;
  padding: 3px 10px;
  font-size: 1em;
  letter-spacing: 0.02em;
  background-repeat:no-repeat;
  outline:none;
  text-transform: uppercase;
  font-family: "Myriad Pro Light Condensed";
  color: #ffffff;
  background-color: Green;
  display: none;
}


.generator-category-button:hover{
  cursor: pointer;
}

.generator-category-space-buttons{
  position: absolute;
  width:100%;
  margin-top: 5%;
}

.generator-tab-button{
  display: inline-block;
  border: 0;
  border-style: solid;
  border-bottom: 5px solid #97b6bf;
  padding: 8px 30px;
  font-size: 1.2em;
  letter-spacing: 0.02em;
  background-color: Transparent;
  background-repeat:no-repeat;
  outline:none;
  margin-right: 2%;
  text-transform: uppercase;
  font-family: "Myriad Pro Condensed";
  color: #97b6bf;
}

.generator-tab-button:hover{
  cursor: pointer;
  color: #476d7f;
  border-bottom: 5px solid #476d7f;
}

.generator-tab-button-active{
  color: #476d7f;
  border-bottom: 5px solid #476d7f;
}

.tabs-container{
  display: block;
  margin-top: 2%;
}

.filters-container{
     position: relative;
     display: block;
     margin-top: 3%;
     margin-bottom: 1%;
     width:100%;
     color:#707070;
     font-family: "Myriad Pro Condensed";
     transform: translate3d(5%,0,0);
 }

.checkbox-label{
   padding-left: 20px;
 }

.checkbox-label-inactive{
  color: #999999!important;
}

.radio-label{
  padding-left: 20px;
  padding-right: 20px;
}

.form-check-box-size{
  width: 130px;
  padding-bottom: 5px;
}

.generate-graph-button{
  display: block;
  border: 0;
  margin-left:auto;
  padding: 3px 10px;
  font-size: 1em;
  letter-spacing: 0.02em;
  background-color: #476d7f;
  background-repeat:no-repeat;
  outline:none;
  font-family: "Myriad Pro Condensed";
  color: #ffffff;
}

.generate-graph-button:hover{
  cursor: pointer;
}

.generated_graph_container{
  display: none;
  width:100%;
  height: 400px;
  margin: 0;
  margin-top: 1%;
}
.graph-posfix{
  transform: translate3d(-90px,0,0);
}

.graph-button-compare {
  display: block;
  margin: auto;
  border: 0;
  padding: 8px 20px;
  font-size: 1.5em;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: "Myriad Pro Condensed";
  color: #ffffff;
  background-color: #476d7f;
}

.graph-button-compare:hover {
  cursor:pointer;
}

h2.atividades-title-style{
  position:relative;
  margin: 0;
  margin-top: 4%;
  margin-bottom: 5.5%;
  font-family: 'Myriad Pro Bold Condensed';
  text-transform: uppercase;
  font-size: 3.9125em;
  letter-spacing: 0.075em;
  text-align: left;
  color: #707070;
}

.island-statistics-title {
	letter-spacing: 0.05em;
	padding-top: 10px;
  font-family: 'Myriad Pro Bold Condensed';
  font-size: 2.1em;
  color: #565656;
	text-align: center;
}

.island-statistics-text {
	letter-spacing: 0.05em;
  font-family: 'Myriad Pro Condensed';
  font-size: 1.2em;
  color: #505050;
  text-align: center;
	padding-bottom: 5%;
}


.island-selector {
	margin: auto;
	text-align: center;
	padding: 5% 0;

}

.island-selected {

	cursor: alias;
}

.island-selector ul{
	list-style-type: none;
	margin: 0;
}

.island-selector li {
	background-color: #badada;
	padding: 10px 20px;
	text-decoration: none;
	color: #025069;
	letter-spacing: 0.05em;
  font-family: 'Myriad Pro Condensed';
  font-size: 1.2em;
}

.island-selector li:hover {
	background-color: #0b7b7a;
	color: #ffffff;
	cursor: pointer;
	-webkit-transition: background-color 0.2s linear;
  -moz-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
}

.highlight {
	background-color: #0b7b7a !important;
	color: #ffffff !important;
	cursor: pointer;
	-webkit-transition: background-color 0.2s linear;
  -moz-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
}
	

.atividade-graph{
  width:33%;
  height:350px;
}

#activity-map{
  margin:auto;
  margin-top: 10%;
  background-color: grey;
  width:100%;
  height:500px;
}

.map-elements-filter{
  display: block;
  margin-top: 2%;
  margin-left: 2%;
  text-align: center;
}

.map-filter-button{
  display: inline-block;
  border: 0;
  width:100px;
  height:100px;
  margin-right: 2%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 60% 60%;
  outline:none;
}

.map-filter-button:hover{
  cursor: pointer;
}

.filter-icon-1{
  background-color: #025069;
  background-image: url(../assets/icons/water-drop.png);
}
.filter-icon-2{
  background-color: #52bb84;
  background-image: url(../assets/icons/tree-leaf.png);
}
.filter-icon-3{
  background-color: #009c9b;
  background-image: url(../assets/icons/wind-swirls.png);
}

#activity-filter-arrow {
  margin:auto;
  display: block;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 25px solid grey;
}
@media only screen and (max-width: 700px) {
    #activity-filter-arrow {
      display: none;
    }
    .generator-category-button{
      display: none;
    }
}
.activity-filters-container{
  display: block;
  margin:auto;
  padding-top: 3%;
  padding-bottom: 1%;
  padding-left:5%;
  background-color: grey;
  width:60%;
  font-family: "Myriad Pro Light Condensed";
  color:#ffffff;
  font-size: 1.3em;
}

.activity-filter-window{
  visibility: hidden;
}

/*Login Css*/
.card-container.card {
    max-width: 350px;
    padding: 40px 40px;
}

.btn {
    font-weight: 700;
    height: 36px;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    cursor: default;
}

.statistics-title {
    font-family: 'Myriad Pro Bold Condensed';
    font-size: 2.3125em;
    letter-spacing: 0.075em;
    color: #707070;
    padding-left: 2%;

}

.statistics-year {
  font-family: "Myriad Pro Bold Condensed";
  font-size: 1.9em;
}

#statistics-table {
    font-family:  "Myriad Pro Condensed";
    border: none;
    text-align: center;
    width: 75%;
    margin: auto;
    color: #1b615f;
    letter-spacing: 0.125em;
    font-size: 1.5em;
    margin-bottom: 5%;
}

#statistics-mobile {
  display: none;
}


#statistics-table th {
    font-family: "Myriad Pro Bold Condensed";
    font-size: 1.1em;
}

#statistics-table td:nth-child(2) {
    position: relative;
}

.market-table {
    font-family: "Myriad Pro Condensed";
    margin: auto;
    font-size: 1.2em;
    width: 60%;
    padding-bottom: 5%;
    border-collapse: collapse;

}

.market-table th {
    font-family: "Myriad Pro Bold Condensed";
    border-bottom: solid 1px #bee4e3;
    letter-spacing: 0.123em;
    color: #1b615f;
    font-size: 1.6em;
    margin-top: 3%;

}

#largest-market {
	padding-top: 5%;
}

.market-info {
    color: #1b615f;
}

.market-title {
    font-family: "Myriad Pro Bold Condensed";
    font-size: 1.4em;
    color: #29a7a3;
    margin-top: 5%;
    letter-spacing: 0.123em;
}

.market-title td {
    padding-top: 5%;
}

.island-tourism {
    font-family: "Myriad Pro Condensed";
    border-bottom: solid 2px #bee4e3;
    font-size: 2.5em;
    letter-spacing: 0.0123em;
    color: #0b7b7a;
    margin-bottom: 1%;
    padding-bottom: 1%;

}

.tourism-stats {
    padding: 2% 0;
}

.tourism-stats h4 {
    font-family: "Myriad Pro Bold Condensed";
    font-size: 3.3em;
    letter-spacing: 0.0123em;
    color: #0b7b7a;
    padding: 0;
    margin-bottom: -3%;
}

.tourism-stats span {
    font-family: "Myriad Pro Condensed";
    font-size: 2.3em;
    letter-spacing: 0.0123em;
    color: #1b615f;
}

.islands-box {
    min-width: 100%;
    height: auto;
}

#islands path:hover {
    fill: rgb(11, 123, 122);
}



/*
#statistics-table td:nth-child(2):before {
    box-shadow: -15px 0px 15px -15px inset;
    content: " ";
    height: 100%;
    left: -15px;
    position: absolute;
    top: 0px;
    width: 15px;
}

#statistics-table td:nth-child(2):after {
    box-shadow: 15px 0px 15px -15px inset;
    content: " ";
    height: 100%;
    position: absolute;
    right: -15px;
    width: 15px;
    top: 0;
}
*/

.topic-name {
    font-family: "Myriad Pro Bold Condensed";
    margin-top: 10px;
    font-size: 0.8em;
}

.topic-subtitle {
    font-size: 0.7em;
    font-family: "Myriad Pro Condensed";
}

.statistic-topic {
    margin: 10% 0;
}

.statistic-topic img {
    width: 80px;
    height: 80px;
}

.statistic-icon {
    margin-top: 20px;
}

.statistic-topic {
    letter-spacing: 0em;
}

.topic-number {
    font-size: 0.8em;
}

.increase {
    color:  #00ff00;
    margin-right: 1%;
    font-size: 0.5em;
    vertical-align: middle;
}

.decrease {
    color:  #ff0000;
    margin-right: 1%;
    font-size: 0.5em;
    vertical-align: middle;
}

path:hover {
  cursor: pointer;
}


@media only screen and (max-width: 768px) {
    #statistics-table {
        font-size: 1.3em;
    }

    .statistic-topic img {
        width: 50px;
        height: auto;
    }

    .topic-name {
        font-size: 1em;
    }

    .statistic-topic span {
        font-size: 1em;
    }

    .market-table {
        font-size: 1.1em;
        width: 100%;
    }

    .tourism-stats h4{
        font-size: 2.3em;
    }

    .tourism-stats span {
        font-size: 1.8em;
    }

    .island-tourism {
        font-size: 2.2em;
    }

    #div0 {
      display: none;
    }

    #statistics-mobile {
      display: block;
    }
		
		.island-selector li{
			display: block;
			width: 100%;
		}

}


}

/*
 * Card component
 */
.card {
    background-color: #F7F7F7;
    /* just in case there no content*/
    padding: 20px 25px 30px;
    margin: 0 auto 25px;
    margin-top: 50px;
    /* shadows and rounded borders */
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
}

.profile-img-card {
    width: 96px;
    height: 96px;
    margin: 0 auto 10px;
    display: block;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

/*
 * Form styles
 */
.profile-name-card {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin: 10px 0 0;
    min-height: 1em;
}

.reauth-email {
    display: block;
    color: #404040;
    line-height: 2;
    margin-bottom: 10px;
    font-size: 14px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.form-signin #inputEmail,
.form-signin #inputPassword {
    direction: ltr;
    height: 44px;
    font-size: 16px;
}

.form-signin input[type=email],
.form-signin input[type=password],
.form-signin input[type=text],
.form-signin button {
    width: 100%;
    display: block;
    margin-bottom: 10px;
    z-index: 1;
    position: relative;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.form-signin .form-control:focus {
    border-color: rgb(104, 145, 162);
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgb(104, 145, 162);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgb(104, 145, 162);
}

.form-control {
  width:unset;
}

.btn.btn-signin {
    /*background-color: #4d90fe; */
    background-color: rgb(104, 145, 162);
    /* background-color: linear-gradient(rgb(104, 145, 162), rgb(12, 97, 33));*/
    padding: 0px;
    font-weight: 700;
    font-size: 14px;
    height: 36px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border: none;
    -o-transition: all 0.218s;
    -moz-transition: all 0.218s;
    -webkit-transition: all 0.218s;
    transition: all 0.218s;
}

.btn.btn-signin:hover,
.btn.btn-signin:active,
.btn.btn-signin:focus {
    background-color: rgb(12, 97, 33);
}

.forgot-password {
    color: rgb(104, 145, 162);
}

.forgot-password:hover,
.forgot-password:active,
.forgot-password:focus{
    color: rgb(12, 97, 33);
}

.link {
  display: block;
  text-align: center;
}



/*Media Queries*/

@media only screen and (min-width: 2570px) {
  body {
    zoom: 2;
    /*
     -moz-transform: scale(2);
     -moz-transform-origin: 0 0;*/
 }
}

@media only screen and (max-width: 2000px) {
  p.paragraph-style-4{
    font-size: 1.95em;
  }

  p.publication-paragraph{
    font-size: 1.2em;
  }

  .ilha-content-box{
    height:340px;
  }

}

@media only screen and (max-width: 1440px) {

  .logo-2 {
    transform: translate3d(-40%,60%,0);
    width: 525px;
    height: 110px;
  }

  .publication-item{
    height:280px;
    width:270px;
  }

  .publication-item-image{
    height:153px;
    width:230px;
  }

  .publication-container{
    padding-top: 0;
  }

  hr.hr-separator {
    margin-top: 5.5em;
    margin-bottom: 5.5em;
  }

  .ilha-content-box{
    height:200px;
  }

  .graph_container{
    height:333px;
  }


  p.paragraph-style-4{
    font-size: 1.55em;
  }

  p.publication-paragraph{
    font-size: 0.9em;
  }

  h4.sub-title-style-2{
    font-size: 1.825em;
  }
  p.paragraph-style-ilha{
    font-size: 0.700em;
  }
}

@media only screen and (max-width: 1370px) {
  .publication-item{
    height:400px;
  }
  .app-content{
    margin-top: 0;
  }

    .filters-container{
        width:120%;
    }

    .graph-image-container {
        width: 572px;
        height: 523px;
    }
}

@media only screen and (max-width: 1024px) {
  .filters-container{
    width:120%;
  }
  hr.hr-vertical {
    display:none;
  }
  .graph-right-side{
      display: block;
      width: 50%;
  }
    .graph_generator_container{
        width:50%;
    }

  .social-container{
    width:100%!important;
  }

@media only screen and (max-width: 980px) {

  .logo-3 {
    width: 225px;
    height: 70px;
  }

  .graph-posfix{
    transform: translate3d(0,0,0);
  }

    .graph-icons-silhouette{
        width: 60px;
        height: 60px!important;
    }

    .filters-container {
        width: 100%;
    }

    hr.hr-vertical {
        display:none;
    }

    .graph-right-side{
        display: block;
        width:100%;
    }

    .form-check-box-size{
        width:70%;
    }

    .generator-tab-button{
        display:block;
        margin: auto;
        font-size: 2.2em;
    }
    .graph_generator_container{
        margin-left: 0;
        padding-left: 0;
        width:100%;
    }
    .graph-icons{
        width: 60px!important;
        height: 60px;
    }

    .graph-add-button{
        width: auto;
    }

    p.graph-paragraph{
        width: auto;
    }

    .graph-image-container{
        display:none;
    }

    .graph-button-create{
        margin:auto;
    }

    .graph-informative-note {
        text-align: center;
    }

  .atividade-graph{
    margin-top: 10px;
    margin-bottom: 40%;
    width:100%;
    height:250px;
  }

  #activity-map{
    margin:auto;
    margin-top: 5%;
    background-color: grey;
    width:100%;
    height:350px;
  }

  .generated_graph_container{
    display: none;
    width:100%;
    height: 350px;
    margin: auto;
    margin-top: 1%;
  }
  .graph_generated{
      margin:0;
      width:100%;
  }

  .ilha-content-box{
    display: block;
    margin-bottom: 10px;
    width:100% !important;
    height:350px;
  }
  .publication-container{
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .publication-item{
    margin-bottom: 20px;
    height:400px;
  }
  .publication-item-image{
    transform: translate3d(0,0,0);
  }
  .vertical-bar-container{
    width:100%;
  }

  .button-4 {
    padding: 10px 40px;
    font-size: 1.9em;
    margin:auto;
  }
  .sub-text-box {
    display: block;
    width:95%;
    padding-left: 5%;
    margin-bottom:10%;
  }
  h2.registo-item-text{
    font-size: 1.4125em;
    letter-spacing: 0.125em;
  }
  h1.title-style-mobile{
      font-family: 'Myriad Pro Bold Condensed';
      font-size: 2.3125em;
      letter-spacing: 0.125em;
      margin:0;
      text-align: center;
      color: #6a6a6a;
  }
  .logo-2 {
    transform: translate3d(0,50%,0);
    width: 325px;
    height: 110px;
  }
  .app-content{
    margin-top: 5%;
    transform: translate3d(0,0,0);
  }
  .download-button{
    display: inline-block;
    width:130px;
    height:60px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  h1.title-style-3-white{
    width:100%;
    font-size: 2.8125em;
  }
  p.paragraph-style-4{
    width:90%;
    font-family: 'Myriad Pro Condensed';
    font-size: 1.05em;
    color: #ffffff;
    text-align: left;
    line-height: 1.8;
    letter-spacing: 0.125em;
    margin-left:5%;
    transform: translate3D(0,-50px,0);
  }
  .hr-separator-white{
  }
  .button-5 {
    transform: translate3D(0,-30px,0);
  }
  input[type=checkbox] {
  transform: scale(1.5);
  }
  .form-check-box-size{
    padding-bottom: 20px;
  }
}
