@import url('https://fonts.googleapis.com/css?family=Merriweather:400,700');
*{
  padding: 0;
  margin: 0;
}
html, body, .cover-page {
  width: 100%;
  height: 100%;
}

body{
  font-family: 'Merriweather', sans-serif;
}

/*-*-*-*-*-*-*-*-*-*-* NAVBAR *-*-*-*-*-*-*-*-*-*-*/

.navbar-inverse{
  background-color: transparent;
  border-color: transparent;
  padding: 10px 0;
  transition-property: all;
  transition-duration: .2s;
  transition-timing-function: linear;
  transition-delay: .1s;
}

.navbar-inverse .navbar-nav > li > a {
  color: white;
  border-bottom: 3px solid white;
  margin: 10px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #B0B0B0;
  border-bottom: 3px solid #B0B0B0;
}

.navbar-brand{
  margin-top: 12px;
  text-transform: uppercase;
}
.navbar-brand > i {
  color: white ;
}
.navbar-brand > i:hover {
  color: #B0B0B0;
}
.navbar-brand > i > span {
  font-weight: bold;
}
.navbar-brand:hover {
  color: #B0B0B0 !important;
}

.navbar-height {
  background-color: black;
  border-bottom: 1px solid #464646;
  padding: 0;
  transition-property: all;
  transition-duration: .2s;
  transition-timing-function: linear;
  transition-delay: .1s;
}

@media (max-width: 767px) {

  .navbar-inverse{
    background-color: black;
    border-color: black;
    padding: 0;
  }

  .navbar-inverse .navbar-nav > li > a {
    margin: 0;
  }

  .navbar-brand{
    margin-top: 0;
  }

}

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

.cover-page {
  display: table;
  text-align: center;
  color: white;
  padding: 0;
  background: url(../img/bg-cover-page.jpg) bottom center no-repeat #000;
  background-size: cover;
  -webkit-background-size: cover;
}
.cover-page-body {
  display: table-cell;
  vertical-align: middle;
}
.text-cover-page {
  font-size: 60px;
  font-weight: bold;
}

@media (max-width: 991px) {

  .text-cover-page {
    font-size: 50px;
  }

}

@media (max-width: 767px) {

  .text-cover-page {
    font-size: 40px;
  }

}

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
/*-*-*-*-*-*-*-*-*-*-* SECCTIONS *-*-*-*-*-*-*-*-*-*-*/
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

.section-title {
  font-size: 35px;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  color: white;
  margin-bottom: 30px;
}
.section-text {
  font-size: 20px;
  text-align: center;
  color: white;
}

/*-*-*-*-*-*-*-*-*-*-* About me *-*-*-*-*-*-*-*-*-*-*/
#about-me {
  padding-top: 180px;
  padding-bottom: 180px;
  background-color: black;
}

/*-*-*-*-*-*-*-*-*-*-* Contact me *-*-*-*-*-*-*-*-*-*-*/
#contact-me {
  background: url(../img/parallax-1.jpg) bottom center no-repeat #000;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  padding-top: 150px;
  padding-bottom: 150px;
}

.social-networks {
  list-style: none;
  margin-top: 50px;
  text-align: center;
}
.social-networks > li {
  display: inline-block;
}
.social-networks > li + li{
  margin-left: 15px;
}
.social-networks > li > a {
  display: block;
  text-align: center;
  padding: 10px;
  text-transform: uppercase;
  color: #FF7654;
  border: 1px solid #FF7654;
  transition-property: all;
  transition-duration: .2s;
  transition-timing-function: linear;
  transition-delay: .1s;
}
.social-networks > li > a:hover {
  color: black;
  background-color: #FF7654;
}
.social-networks > li > a > i > span {
  font-weight: bold;
}
@media (max-width: 767px) {

  .social-networks > li {
    display: block;
  }
  .social-networks > li + li{
    margin-left: 0;
    margin-top: 15px;
  }
  .social-networks > li > a {
    margin: 0 auto;
    width: 160px;
  }

}

/*-*-*-*-*-*-*-*-*-*-* Portfolio *-*-*-*-*-*-*-*-*-*-*/

#portfolio {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: black;
}
#portfolio .section-title {
  margin-bottom: 100px;
}
#portfolio img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);

  transition-property: all;
  transition-duration: .2s;
  transition-timing-function: linear;
  transition-delay: 0s;
}
#portfolio img:hover {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
#portfolio .theme-title {
  color: #FF7654;
}
#portfolio .theme-text {
  color: white;
}

#portfolio .theme-buttons {
  list-style: none;
  margin-top: 25px;
}
#portfolio .theme-buttons > li {
  display: inline-block;
}
#portfolio .theme-buttons > li + li {
  margin-left: 10px;
}
#portfolio .theme-buttons > li > a {
  display: block;
  width: 150px;
  color: #FF7654;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid #FF7654;
  padding: 10px;

  transition-property: all;
  transition-duration: .2s;
  transition-timing-function: linear;
  transition-delay: .1s;
}
#portfolio .theme-buttons > li > a:hover {
  background-color: #FF7654;
  color: black;
}
#portfolio .theme-buttons > li > a > i > span {
  font-weight: bold;
}

@media (max-width: 767px) {

  #portfolio {
    text-align: center;
  }
  #portfolio .theme-title {
    margin-top: 30px;
  }
  #portfolio .theme-buttons > li {
    display: block;
    margin: 10px 0 0 0;
  }
  #portfolio .theme-buttons > li + li {
    margin-top: 10px;
    margin-left: 0;
  }
  #portfolio .theme-buttons > li > a {
    margin: 0 auto;
  }
}

/*-*-*-*-*-*-*-*-*-*-* Download *-*-*-*-*-*-*-*-*-*-*/
#download {
  background: url(../img/parallax-1.jpg) bottom center no-repeat #000;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  padding-top: 150px;
  padding-bottom: 150px;
}
.download-button {
  margin-top: 50px;
}
.download-button > a {
  display: block;
  width: 200px;
  margin: 0 auto;
  padding: 15px;
  text-align: center;
  text-transform: uppercase;
  color: #FF7654;
  border: 1px solid #FF7654;
  transition-property: all;
  transition-duration: .2s;
  transition-timing-function: linear;
  transition-delay: .1s;
}
.download-button > a:hover {
  background-color: #FF7654;
  color: black;
}
.download-button > a > i > span{
  font-weight: bold;
}

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

footer {
  padding: 120px 0 25px 0;
  text-align: center;
  color: white;
  background-color: black;
  font-size: 18px;
}