
/*--------------- basic styling --------------- */
html, body {
      margin: 0;
      padding: 0;
      width: 100%;
      height: 100%;
      font-family: 'Kantumruy Pro', sans-serif !important;
      background: #0f0f0f !important;
      color: #fff !important;
}

.whitespace {
      width: 100%;
      height: 100px;
}

@media(max-width: 768px) {
      .whitespace {
            display: none;
      }
}

/*--------------- typewriter effect --------------- */
.line {
      width: 24em;
      top: 50%;
      margin: auto;
      border-right: 2px solid rgba(255, 255, 255, 0.75);
      text-align: center;
      white-space: nowrap;
      overflow: hidden;
      transform: translateY(-50%);
}

.anim-typewriter {
      animation: typewriter 4s steps(40) 1s 1 normal both,
      blinkTextCussor 500ms steps(40) infinite normal;
}

@keyframes typewriter {
      from {
            width: 0;
      }
      to {
            width: 18em;
      }
}

@media(max-width: 768px) {
      @keyframes typewriter {
            from {
                  width: 0;
            }
            to {
                  width: 17em;
            }
      }
}

@keyframes blinkTextCussor {
      from {
            border-right-color: rgba(255, 255, 255, 0.75);
      }
      to {
            border-right-color: transparent;
      }
}

/*--------------- navigation --------------- */
nav {
      width: 100%;
      background: #0f0f0f;
      height: 80px;
      position: fixed;
      z-index: 1;
}

nav #name {
      float: left;
      display: block;
      margin-left: 82px;
      line-height: 140px;
      font-family: 'Oswald', sans-serif;
      font-weight: bold;
      font-size: 24px;
}

nav #name a {
      color: #fff;
      transition: all 0.3s ease-out;
}

nav #name a:hover {
      text-decoration: none;
}

nav #menu {
      float: left;
      right: 80px;
      position: fixed;
}

nav #menu li {
      padding-left: 40px;
      display: inline-block;
      cursor: pointer;
      font-weight: 300;
      line-height: 140px;
      position: relative;
      transition: all 0.3s ease-out;
}

nav #menu li span {
      font-weight: 700;
}

nav #menu li a {
      color: #fff;
}

nav #menu li a:hover {
      text-decoration: none;
      text-decoration: underline;
}

#toggle {
      position: absolute;
      right: 30px;
      top: 20px;
      font-weight: 300;
      z-index: 2;
      width: 30px;
      height: 30px;
      cursor: pointer;
      float: right;
      transition: all 0.3s ease-out;
      visibility: hidden;
      opacity: 0;
}

.close-btn {
      position: absolute;
      right: 16px;
      font-weight: 300;
      z-index: 2;
      cursor: pointer;
      top: -2px;
      line-height: 80px;
}

#resize {
      z-index: 1;
      top: 0px;
      position: fixed;
      background: #0f0f0f;
      width: 100%;
      height: 100%;
      visibility: hidden;
      opacity: 0;
      transition: all 1s ease-out;
}

#resize #menu {
      height: 90px;
      position: absolute;
      left: 45%;
      transform: translateX(-40%);
      text-align: center;
      display: table-cell;
      vertical-align: center;
}

#resize #menu li {
      display: block;
      text-align: center;
      padding: 10px 0;
      font-size: 50px;
      min-height: 50px;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease-out;
}

#resize li:nth-child(1) {
      margin-top: 140px;
}

#resize #menu li a {
      color: #fff;
}

#resize #menu li a:hover {
      text-decoration: none;
}

#resize.active {
      visibility: visible;
      opacity: 1;
}

@media(max-width: 900px) {
      #toggle {
            visibility: visible;
            opacity: 1;
            margin-top: 6px;
            margin-right: 4px;
      }

      nav #name {
            margin-left: 24px;
      }

      #menu a {
            font-size: 20px;
            font-weight: 300;
      }

      #resize li span {
            font-weight: bolder;
      }

      nav #menu {
            display: none;
      }
}

@media(min-width: 768px) {
      #resize {
            visibility: hidden !important;
      }
}

.her {
      height: 5vh;
      display: center;
      align-items: center;
      justify-content: center;
}

/*--------------- hero section --------------- */
.hero {
      height: 100vh;
      display: center;
      align-items: center;
      justify-content: center;
}

.hero h1 {
      font-weight: lighter;
      text-align: center;
      letter-spacing: -2px;
      line-height: 58px;
      
}

.hero h2 {
      font-family: 'Oswald', sans-serif;
      font-weight: lighter;
      text-align: left;
      left: 10%;
}


@media(max-width: 768px) {
      .header h1 {
            font-size: 28px;
      }
}

/*--------------- projects section --------------- */
.proj {
      height: 50vh;
      display: center;
      align-items: center;
      justify-content: center;
}

.proj h1 {
      font-weight: lighter;
      text-align: center;
      letter-spacing: -2px;
      line-height: 2vh;
      
}

.proj h2 {
      font-family: 'Oswald', sans-serif;
      font-weight: lighter;
      text-align: left;
      left: 10%;
}


@media(max-width: 768px) {
      .header h1 {
            font-size: 28px;
      }
}

/*--------------- scroll down icon animation --------------- */
.scroll-down {
      position: absolute;
      left: 50%;
      bottom: 50px;
      display: block;
      text-align: center;
      font-size: 20px;
      z-index: 0;
      text-decoration: none;
      text-shadow: 0;
      width: 13px;
      height: 13px;
      border-bottom: 2px solid #fff;
      border-right: 2px solid #fff;
      -webkit-transform: translate(-50%, 0) rotate(45deg);
      animation: fade_move_down 3s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}

@keyframes fade_move_down {
      0% {
            transform: translate(0, -20px) rotate(45deg);
            opacity: 0;
      }
      50% {
            opacity: 1;
      }
      100% {
            transform: translate(0, 20px) rotate(45deg);
            opacity: 0;
      }
}


/*--------------- tabs --------------- */

.tabs {
      height: 60px;
      transition: 0.3s;
}

.tabs:hover {
      height: 65px;
      cursor: pointer;
      transition: 0.3s;
}

.tab_audio::after {
      content: "HERAS";
      font-family: 'Kantumruy Pro', sans-serif;
      font-style: italic;
      font-size: 20px;
      font-weight: bold;
      position: center;
      color: #fff;
      display: center;
      
      background-color: #0f0f0f;
}




/*--------------- footer section --------------- */
.collab {
      text-align: center;
}

.collab p {
      font-weight: lighter !important;
      margin-bottom: 20px;
      font-size: 30px;
}

.hr {
      background: rgba(255, 255, 255, 0.2);
      height: 1px;
}

.info h4 {
      font-size: 18px;
      font-weight: lighter;
}

.info h4 a{
      font-size: 18px;
      color: white;
      font-weight: lighter;
}

.info h4 a:hover {
      color: tan;
      cursor: pointer;
      transition: 0.3s;
}

.info h2 {
      font-size: 30px;
      font-weight: lighter;
}

.info h2 a{
      font-size: 30px;
      color: white;
      font-weight: lighter;
}

.info h2 a:hover {
      color: tan;
      cursor: pointer;
      transition: 0.3s;
}

.info p {
      color: grey;
      font-weight: lighter;
}

.info p {
     text-align: left;
}

.info li {
      font-weight: lighter;
      color: #fff;
      font-size: 18px;
      padding-left: 20px;
}

#fb::before {
      display: inline-block;
      content: '';
      border-radius: 100%;
      height: 4px;
      width: 4px;
      margin-right: 6px;
      background: #3b5998;
}


#ig::before {
      display: inline-block;
      content: '';
      border-radius: 100%;
      height: 4px;
      width: 4px;
      margin-right: 6px;
      background: #fcaf45;
}


#tw::before {
      display: inline-block;
      content: '';
      border-radius: 100%;
      height: 4px;
      width: 4px;
      margin-right: 6px;
      background: #55acee;
}


#yt::before {
      display: inline-block;
      content: '';
      border-radius: 100%;
      height: 4px;
      width: 4px;
      margin-right: 6px;
      background: #c4302b;
}

#address {
      text-align: left;
}

#media {
      text-align: right;
}

#media ul {
      list-style: none;
}

#media ul li {
      display: inline-block;
}

@media(max-width: 768px) {
      .collab, #personal, #media, #address {
            text-align: center;
      }

      .info ul {
            margin: 0 0 0 -22px;
            padding: 0;
      }
}

/*--------------- work page --------------- */

.hero-content {
      margin-left: 0%;
}

.hero-content p {
      font-weight: 300;
      line-height: 20px;
      
}

.hero-content h2 {
      font-weight: 300;
      line-height: 10px;
      font-size: 15px;
      color: grey;
      margin-top: 10%;
      text-align: right;
}

.hero-content h3 {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.85);
      text-align: right;
}

.hero-content h6 {
      text-align: right;
      font-weight: bold;
}

.hero-content h7 {
      text-align: left;
      color:tan;
}


.hero-content a {
      float: left;
      margin-right: 2%;
      color: rgb(170, 170, 170);
      font-family: 'Kantumruy Pro', sans-serif !important;
}

.hero-content a:hover {
      cursor: pointer;
      transition: 0.2s;
      color: tan;
}

.hero-content h1 {
      font-style: italic;
}




@media(max-width: 768px) {
      .hero-content {
            padding-top: 50px;
            width: 96%;
            margin: 0 auto;
      }
}

/*---------------about page --------------- */

.about {
      height: 500px;
      margin-top: 120px;
}
.about h6 {
      font-size: 3vh;
      color: rgba(255, 255, 255, 0.85);
      text-align: left;
      font-style: italic;
}

.about h7 {
      text-align: left;
      font-style: italic;
}

.image {
      background: url(https://i.ibb.co/d2QZJdh/fujilo.jpg) no-repeat 50% 70%;
      height: 20vh;
      background-size: cover;
}

.otherimage {
      background: url(https://i.ibb.co/1rLz4xs/leogif.gif) no-repeat 50% 70%;
      height: 30vh;
}

/*--------------- contact form --------------- */

#contact-form {
      margin: 5% 1.4%;
}

#contact-form ul {
      list-style: none;
      border-radius: 5px;
      margin-bottom: 40px;
}

#contact-form li {
      padding: 10px;
}

#contact-form li:last-of-type {
      border-bottom: none;
}

#contact-form label {
      display: block;
      font-size: .8em;
      color: #999;
      padding-left: 5px;
}

#contact-form input, #contact-form textarea {
      width: 100%;
      padding: 5px;
      border: none;
      resize: vertical;
      background: transparent;
      color: #fff;
      font-weight: bolder;
}

input:focus {
      outline: none;
      border: none;
}

textarea:focus {
      outline: none;
      border: none;
}

.textarea {
      border-bottom: 1px solid #dfdfdf;
}

.send {
      margin-left: 50px;
      text-transform: uppercase;
      padding: 20px 30px;
      background: transparent;
      color: #dfdfdf;
      font-size: 14px;
      letter-spacing: 2px;
}

.send:hover {
      background: #dfdfdf;
      color: #101010;
}

@media(max-width: 768px) {
      #contact-form {
            margin: 5% -8%;
            width: 98%;
      }
}

/*--------------- project page --------------- */

.prev, .next p {
      color: grey;
}

.prev p {
      text-align: left;
}

.next p {
      text-align: right;
}


.linha {
      display: flex;
    }
    
.coluna {
      margin: 1%;
    }


/* SOCIAL NETWORKS */

.fa {
      padding: 20px;
      font-size: 30px;
      width: 30px;
      text-align: center;
      text-decoration: none;
      border-radius: 50%;
    }

/* Add a hover effect if you want */
.fa:hover {
      opacity: 0.7;
    }

/* Instagram */
.fa-instagram {


    }

/* non selectable */

.unselectable {
      -webkit-user-select: none;
      -khtml-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      -o-user-select: none;
      user-select: none;
}



/* animations */

.appearHERE{
      -webkit-animation: fadeIn 1.2s both;
      -moz-animation: fadeIn 1.2s both;
      -o-animation: fadeIn 1.2s both;
      animation: fadeIn 1.2s both;
}
  
  @-webkit-keyframes fadeIn {
      0%{
          opacity: 0;
      }
      100%{
          opacity: 1;
      }
  }
  
  @-moz-keyframes fadeIn {
      0%{
          opacity: 0;
      }
      100%{
          opacity: 1;
      }
  }
  
  @-o-keyframes fadeIn {
      0%{
          opacity: 0;
      }
      100%{
          opacity: 1;
      }
  }
  
  @keyframes fadeIn {
      0%{
          opacity: 0;
      }
      100%{
          opacity: 1;
      }
  }

  .appearLONG{
      -webkit-animation: fadeIn 3s both;
      -moz-animation: fadeIn 3s both;
      -o-animation: fadeIn 3s both;
      animation: fadeIn 3s both;
}
  
  @-webkit-keyframes fadeIn {
      0%{
          opacity: 0;
      }
      100%{
          opacity: 1;
      }
  }
  
  @-moz-keyframes fadeIn {
      0%{
          opacity: 0;
      }
      100%{
          opacity: 1;
      }
  }
  
  @-o-keyframes fadeIn {
      0%{
          opacity: 0;
      }
      100%{
          opacity: 1;
      }
  }
  
  @keyframes fadeIn {
      0%{
          opacity: 0;
      }
      100%{
          opacity: 1;
      }
  }

.fadeInLeft{
      -webkit-animation: fadeInLeft 1.2s both;
      -moz-animation: fadeInLeft 1.2s both;
      -o-animation: fadeInLeft 1.2s both;
      animation: fadeInLeft 1.2s both;
  }
  
  @-webkit-keyframes fadeInLeft {
      0%{
          opacity: 0;
          -webkit-transform: translateX(-50px);
      }
      100%{
          opacity: 1;
          -webkit-transform: translateX(0px);
      }
  }
  
  @-moz-keyframes fadeInLeft {
      0%{
          opacity: 0;
          -moz-transform: translateX(-50px);
      }
      100%{
          opacity: 1;
          -moz-transform: translateX(0px);
      }
  }
  
  @-o-keyframes fadeInLeft {
      0%{
          opacity: 0;
          -o-transform: translateX(-50px);
      }
      100%{
          opacity: 1;
          -o-transform: translateX(0px);
      }
  }
  
  @keyframes fadeInLeft {
      0%{
          opacity: 0;
          transform: translateX(-50px);
      }
      100%{
          opacity: 1;
          transform: translateX(0px);
      }
  }



  .fadeInRight{
      -webkit-animation: fadeInRight 1.2s both;
      -moz-animation: fadeInRight 1.2s both;
      -o-animation: fadeInRight 1.2s both;
      animation: fadeInRight 1.2s both;
  }
  
  @-webkit-keyframes fadeInRight{ 
      0%{
          opacity: 0;
          -webkit-transform: translateX(50px);
      }
      100%{
          opacity: 1;
          -webkit-transform: translateX(0px);
      }
  }
  
  @-moz-keyframes fadeInRight{ 
      0%{
          opacity: 0;
          -moz-transform: translateX(50px);
      }
      100%{
          opacity: 1;
          -moz-transform: translateX(0px);
      }
  }
  
  @-o-keyframes fadeInRight{ 
      0%{
          opacity: 0;
          -o-transform: translateX(50px);
      }
      100%{
          opacity: 1;
          -o-transform: translateX(0px);
      }
  }
  
  @keyframes fadeInRight{ 
      0%{
          opacity: 0;
          transform: translateX(50px);
      }
      100%{
          opacity: 1;
          transform: translateX(0px);
      }
  }

  .coolgrad {
      position: relative;
      width: 100%;
    }
    
    .coolgrad::after {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      content: '';
      background: rgb(255,255,255);
      background: linear-gradient(0deg, #101010 0%, rgba(0,212,255,0) 100%); 
        }


        /*--------------- projects section --------------- */
  
  .projects {
      height: 35vh;
      width: 40vh;
      transition: 0.3s;
      animation: goback 0.3s both;
  }
  
  
  .projects:hover {
      cursor: pointer;
      transition: 0.35s;
      background-size: 45vh;
  }
  
  .projects:hover::after {
     /* background-color: #0f0f0f; */
  }
  
  
  @keyframes appearHere{
      0%{
  
      }
      100%{
          height: 39vh; 
      }
  }
  
  @keyframes goback{
      0%{
  
          height: 39vh;
      }
      100%{
  
      }
  }


  /* */

.project-content {
      margin-left: 0%;
}

.project-content p {
      font-weight: 300;
      line-height: 20px;
      
}

.project-content h2 {
      font-weight: 300;
      line-height: 10px;
      font-size: 15px;
      color: tan;
      margin-top: -1%;
      text-align: left;
}

.project-content h3 {
      font-size: 15px;
      margin-top: -1%;
      color: rgba(255, 255, 255, 0.85);
      text-align: left;
}

.project-content h6 {
      text-align: left
      font-weight: bold;
}

.project-content h7 {
      text-align: left;
      color:tan;
}


.project-content a {
       
      color: tan;
}

.project-content a:hover {
      cursor: pointer;
      transition: 0.2s;
      color: white;
}

.project-content h1 {
      font-style: italic;
}
  

/* TOUR */
#tours {
	background-image: url(../.jpg);
	background-position: center top;
	background-repeat: no-repeat;
	-moz-background-size: cover;
	-o-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
	min-height: 750px;
}
#tours p {
	color: #fff;
	font-size: 25px;
	letter-spacing: 3px;
	font-weight: 250;
	line-height: 30px;
}
#tours h6 {
	color: #fff;
	text-transform: uppercase;
	font-size: 45px;
	letter-spacing: 5px;
	font-weight: 400;
	margin: 15px 15px 15px;
}

.tour-list {
	padding: 0px 0 70px;
}

.tour-list li {
	border-bottom: 1px solid #222;
	list-style: outside none none;
	display: table;
	width: 100%;
	padding-bottom: 15px;
	padding-top: 10px;
}

.tour-list li:first-child {
	border-top: none;
}

.tour-list li:last-child {
	border-bottom: none;
}

.tour-date {
	font-size: 30px;
	float: left;
	color: #fff;
	font-weight: 700;
}

.tour-date span {
	display: block;
	font-size: 17px;
	margin: -10px 0px 0px;
	font-weight: 400;
	text-align: right;
}

.tour-date span em {
	font-size: 13px;
	font-style: normal;
	margin: 0 -3px;
	display: none;
}

.tour-info {
	margin-left: 20px;
	display: inline-block;
	font-weight: 300;
	margin-top: 7px;
	font-size: 22px;
	color: #FFF;
}

.tour-info3 {
	margin-left: 20px;
	display: inline-block;
	font-weight: 300;
	margin-top: 7px;
	font-size: 18px;
	color: #FFF;
}


.tour-info a {
	color: #fff;
	font-size: 3vh;
	background: rgb(97, 2, 134);
	padding: 4px 12px;
	border-radius: 4px;
}

.tour-info2 {
      margin-left: 20px;
	color: #010101;
      display: inline-block;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 2vh;
	background: #fff;
	padding: 4px 10px;
	border-radius: 4px;
}


.tour-ticket {
	margin-left: 6vh;
	display: block;
}

.tour-ticket a {
	color: #010101;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 1vh;
	background: #fff;
	padding: 4px 10px;
	border-radius: 4px;
}
