html,
body {
    height: 100%;
}

body {
    padding-top: 50px;
}

.img-portfolio {
    margin-bottom: 30px;
}

.img-hover:hover {
    opacity: 0.8;
}

header.carousel {
    height: 50%;
}

header.carousel .item,
header.carousel .item.active,
header.carousel .carousel-inner {
    height: 100%;
}

header.carousel .fill {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
}

/***********************************************
                    FOOTER
***********************************************/
footer {
    padding: 30px 0px 30px 0px;
    color: #eee;
    margin-top: 30px;
}

.margin-footer {
    padding: 10px 0px;
}

.section-footer {
    background-color: #333;
}

footer ul{
   list-style: none;
}

footer a{
    text-decoration: none;
    color: #eee;
}

footer a:hover{
    color: #999;
}

/***********************************************
                   RESPONSIVE
***********************************************/
@media(max-width:991px) {
    .customer-img,
    .img-related {
        margin-bottom: 30px;
    }
}

@media(max-width:767px) {
    .img-portfolio {
        margin-bottom: 15px;
    }

    header.carousel .carousel {
        height: 70%;
    }
}

/***********************************************
                    HEADER
***********************************************/
header {
  background-image: url('../img/header-bg1.jpg');
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  text-align: center;
  color: white;
}
header .intro-text {
  padding-top: 100px;
  padding-bottom: 50px;
}
header .intro-text .intro-lead-in {
  font-family: "Droid Serif", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: italic;
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 25px;
}
header .intro-text .intro-heading {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  header .intro-text {
    padding-top: 100px;
    padding-bottom: 200px;
  }
  header .intro-text .intro-lead-in {
    font-family: "Droid Serif", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: italic;
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 25px;
  }
  header .intro-text .intro-heading {
    font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 25px;
  }
}

/***********************************************
                      BTN
***********************************************/
.btn {
    border-radius: 0px;
}

/***********************************************
                ANIME-LOGO-HOME
***********************************************/
svg {
    display: block;
    margin: auto;
}

path {
    stroke: #333;
    stroke-width: 3px;
    stroke-dasharray: 710;
    animation: 8s draw infinite; /*forwards*/
}

@keyframes draw{
0% {
    fill-opacity: 0;
    stroke-dashoffset: 710;
}
70% {
    fill-opacity: 0;
    stroke: #333;
}
100% {
    fill-opacity: 1;
    stroke-dashoffset: 0;
    stroke: none;
}
}

/***********************************************
                    TEXTO
***********************************************/
h1, h2, h3, h4 {
    font-family: 'Open Sans Condensed', sans-serif;
    text-transform: uppercase;
}

p {
    font-family: 'Roboto', sans-serif;
}

/***********************************************
                    NAVBAR
***********************************************/
.navbar-inverse {
    background-color: #333;
}

.navbar-brand {
    padding: 12px 15px
}

.navbar-inverse .navbar-nav>li>a {
    color: #eee;
}


.glyphicon-chevron-right, .glyphicon-chevron-left {
    color: #fff;
    text-shadow: 2px 2px 2px #000;
}

/***********************************************
                      ZOOM
***********************************************/
.zoom {
    -webkit-transform:scale(0.95); /* Safari and Chrome */
    -moz-transform:scale(0.95); /* Firefox */
    -ms-transform:scale(0.95); /* IE 9 */
    -o-transform:scale(0.95); /* Opera */
     transform:scale(0.95);
    -webkit-transition: all 0.4s ease; /* Safari and Chrome */
    -moz-transition: all 0.4s ease; /* Firefox */
    -ms-transition: all 0.4s ease; /* IE 9 */
    -o-transition: all 0.4s ease; /* Opera */
    transition: all 0.4s ease;
    box-shadow: 0px 0px 10px #999;
}

.zoom:hover {
    -webkit-transform:scale(1.0); /* Safari and Chrome */
    -moz-transform:scale(1.0); /* Firefox */
    -ms-transform:scale(1.0); /* IE 9 */
    -o-transform:scale(1.0); /* Opera */
     transform:scale(1.0);
}

/***********************************************
                     PANEL
***********************************************/
@media(min-width: 468px){
  .panel-body {
    min-height: 140px;
  }
}

.size-font-card {
  font-size: 23px;
}