@charset "UTF-8";
@-webkit-keyframes rotater {
    0% { -webkit-transform:rotate(0) scale(1) }
    50% { -webkit-transform:rotate(180deg) scale(1) }
    100% { -webkit-transform:rotate(360deg) scale(1) }
}
.advert {
    display: block;
    font-size: 2em; 
}
.advert:hover { 
    /* safari / chrome */
    -webkit-animation-name:rotater; 
    -webkit-animation-duration:300ms; 
    -webkit-animation-iteration-count:1; 
    -webkit-animation-timing-function: ease-out;
    
    /* mozilla */
    -moz-transform:rotate(360deg) scale(0);
    -moz-transition-duration:300ms;
    -moz-transition-timing-function: ease-out;
    
    /* opera */
    -o-transform:rotate(360deg) scale(0);
    -o-transition-duration:300ms;
    -p-transition-timing-function: ease-out;
    
    /* ie */
    -ms-transform:rotate(360deg) scale(0);
    -ms-transform-duration:300ms;
    -ms-transform-timing-function: ease-out;
}
body{
    background-color: #0c0c0c;
    font-family: 'Helvetica', Arial, sans-serif;
    font-weight: lighter;
    color: #fbbd24;
}
.bg-dark{
    background-color: #0c0c0c!important;
}
a{
    text-decoration: none;
    color: #e6e7e8;
}
a:hover{
    text-decoration: none;
    color: #fbbd24;
}
.nav-link{
    color: #fbbd24;
    text-transform: uppercase;
    font-size: 1.2em;
    -webkit-transition: text-shadow 0.3s linear;
}
.nav-link:hover, .navbar-nav a.mPS2id-highlight{
    text-shadow: 0px 0px 3px rgba(0,0,0,1);
    color: #fbbd24!important;
}
.navbar-brand img{
    width: 100px;
    height: auto;
}
header {
    margin-bottom:50px;
}
.subir{
    position:fixed;
    bottom:-5px;
    left:20px;
    width:40px;
    height:40px;
    font-size: 13pt;
    background-color: rgba(255,255,255,0.8);
    box-shadow: -1px -1px 4px rgba(0,0,0,0.2);
    color:black!important;
}
.btn-warning{
    color:black;
}

/* Carousel Sliders */
.carousel-caption h1, .carousel-caption p{
    font-family: 'Helvetica',Arial, sans-serif;
    font-weight: bold;
}
.carousel-caption p{
    margin-bottom: 20px;
    font-size: 1.7em;
    line-height: 1.4;
    color: #fbbd24;
}
.carousel-caption a:hover{
    font-weight:bold;
    color:#e6e7e8;
}
.first-slide{
    background-image: url(../img/slides/formabg01.jpg);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-attachment: absolute;
    background-size: cover;
    width:100%;
    height:400px;
}
.second-slide{
    background-image: url(../img/slides/formabg02.jpg);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-attachment: absolute;
    background-size: cover;
    width:100%;
    height:400px;
}
.compu-slide{
    width: 100%;
    height: auto;
    position: relative;
    bottom:3%;
    -ms-transform: translateY(14%);
    -webkit-transform: translateY(14%);
    transform: translateY(14%);
    z-index: 999999;
}
.recuadro{
    width: 100%;
    background-color: rgba(0,0,0,0.5);
    padding: 30px;
    margin: 25px 0;
}

.carousel-control-prev, .carousel-control-next {
    margin-top: -300px;
}

/* Empresa */
section {
    height: 100%;
    padding: 80px 0 30px;
    background-color:#2b2b2b ;
    
    color: #e6e7e8!important;
}
h3, h4{
    color: #fbbd24;
}
h3{
    margin-top: 30px;
    padding-bottom: 30px;
}
.linea{
    border-top: 2px solid #fbbd24;
    width: 80px;
    margin-left:0;
}

/* CTA */
#cta {
    min-height: 450px;
    background-image: url(../img/slides/formaid-bg-CTA.jpg)!important;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: absolute;
    background-size: cover;
    padding:50px 0;
}
#cta h1, #cta p{
    color: #ddd;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.45);
}
.text-cta{
    color:#fbbd24;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.45);
}

/* portfolio */
.mix img{
    width:100%;
    height:auto;
    transition: transform .2s; /* Animation */
    z-index: 1!important;
    position: relative;
}
.mix img:hover {
    transform: scale(2.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
    z-index: 999!important;
    box-shadow: 5px 0px 10px gray;
}
.mix iframe {
    width:100%;
    height:100%;
    transition: transform .2s; /* Animation */
    z-index: 1!important;
    position: relative;
}
.mix iframe:hover {
    transform: scale(2.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
    z-index: 999!important;
    box-shadow: 5px 0px 10px gray;
}

/* Footer */
iframe {
    width:100%;
    height:200px!important;
    border-image-width:none!important;
}
footer {
    min-height: 300px;
    padding:40px 0;
    background-color: #58585a;
    color: #e6e7e8;
}
footer p{
    font-size: 11pt;
    line-height: 1.5em;
    color: #e6e7e8;
    letter-spacing: 1px;
}
footer p:nth-child(3){
    font-size: 10pt;
    margin-top: 30px;
}
.icon-fa {
    display: inline-block;
    height: 37px;
    width: 37px;
    margin: 4px;
    background-image: url("../img/footer-rsb-01.png");
    background-repeat: no-repeat;
    vertical-align: middle;
  	background-position: 0px 0;
    opacity: 1.0;
    -webkit-transition: opacity 0.3s linear;
}
.icon-fa:hover {
    filter: alpha(opacity=50);
    opacity: 0.5;
}
.icon-fl {
    display: inline-block;
    height: 37px;
    width: 37px;
    margin: 4px;
    background-image: url("../img/footer-rsb-01.png");
    background-repeat: no-repeat;
    vertical-align: middle;
  	background-position: -37px 0;
    opacity: 1.0;
    -webkit-transition: opacity 0.3s linear;
}
.icon-fl:hover {
    filter: alpha(opacity=50);
    opacity: 0.5;
}
.icon-be {
    display: inline-block;
    height: 37px;
    width: 37px;
    margin: 4px;
    background-image: url("../img/footer-rsb-01.png");
    background-repeat: no-repeat;
    vertical-align: middle;
  	background-position: -74px 0;
    opacity: 1.0;
    -webkit-transition: opacity 0.3s linear;
}
.icon-be:hover {
    filter: alpha(opacity=50);
    opacity: 0.5;
}
.icon-vi {
    display: inline-block;
    height: 37px;
    width: 37px;
    margin: 4px;
    background-image: url("../img/footer-rsb-01.png");
    background-repeat: no-repeat;
    vertical-align: middle;
  	background-position: -111px 0;
    opacity: 1.0;
    -webkit-transition: opacity 0.3s linear;
}
.icon-vi:hover {
    filter: alpha(opacity=50);
    opacity: 0.5;
}
.icon-tw {
    display: inline-block;
    height: 37px;
    width: 37px;
    margin: 4px;
    background-image: url("../img/footer-rsb-01.png");
    background-repeat: no-repeat;
    vertical-align: middle;
  	background-position: -148px 0;
    opacity: 1.0;
    -webkit-transition: opacity 0.3s linear;
}
.icon-tw:hover {
    filter: alpha(opacity=50);
    opacity: 0.5;
}
.icon-li {
    display: inline-block;
    height: 37px;
    width: 37px;
    margin: 4px;
    background-image: url("../img/footer-rsb-01.png");
    background-repeat: no-repeat;
    vertical-align: middle;
  	background-position: -185px 0;
    opacity: 1.0;
    -webkit-transition: opacity 0.3s linear;
}
.icon-li:hover {
    filter: alpha(opacity=50);
    opacity: 0.5;
}
footer ul{
    list-style: none;
    padding: 0;
}
footer a{
    color: #e6e7e8;
    text-transform: uppercase;
    font-size: 11pt;
    font-weight: lighter;
    -webkit-transition: text-shadow 0.3s linear;
}
.menu a:hover{
    text-shadow: 0 1px 0.2em #999;
    color: #fff;
}
.menu a:hover, .menu a.mPS2id-highlight{
    text-shadow: 0px 0px 3px rgba(0,0,0,1);
    color: #fff;
}
footer .menu{
    height: 32px;
    color: #fff;
}
.copyright{
    padding:40px 0;
}
/*  #Mobile (Portrait) - Note: Design for a width of 320px */
@media only screen and (max-width: 767px) {

    .first-slide{
        background-image: url(../img/slides/formabg01.jpg);
    }
    .second-slide{
        background-image: url(../img/slides/formabg02.jpg);
    }
    .navbar-toggler > li{
        height: 100%;
    }        
    #servicio{
        padding-top: 30px!important;
    }   
    .compu-slide{
    bottom:25%;
    }
}