body{font-family: Arial, sans-serif}

.img-contenedor1 img {
    -webkit-transition:all .9s ease; /* Safari y Chrome */
    -moz-transition:all .9s ease; /* Firefox */
    -o-transition:all .9s ease; /* IE 9 */
    -ms-transition:all .9s ease; /* Opera */
    width:100%;
    height:100%
}

.img-contenedor1:hover img {
    -webkit-transform:scale(1.25);
    -moz-transform:scale(1.25);
    -ms-transform:scale(1.25);
    -o-transform:scale(1.25);
    transform:scale(1.25);
}

.img-contenedor1,.img-contenedor2,.img-contenedor3 {/*Ancho y altura son modificables al requerimiento de cada uno*/
    width:100%;
    height:100%;
    overflow:hidden;
}

/*Ejemplo 2*/
.img-contenedor2 img {
    -webkit-transition:all 1s ease; /* Safari y Chrome */
    -moz-transition:all 1s ease; /* Firefox */
    -o-transition:all 1s ease; /* IE 9 */
    -ms-transition:all 1s ease; /* Opera */
    width:100%;
}
.img-contenedor2:hover img {
    -webkit-transform:scale(1.1);
    -moz-transform:scale(1.1);
    -ms-transform:scale(1.1);
    -o-transform:scale(1.1);
    transform:scale(1.1);
}
/*Ejemplo 3*/
.img-contenedor3 img {
    -webkit-transition:all .9s ease; /* Safari y Chrome */
    -moz-transition:all .9s ease; /* Firefox */
    -o-transition:all .9s ease; /* IE 9 */
    -ms-transition:all .9s ease; /* Opera */
    width:100%;
}

.img-contenedor3:hover img {
    -webkit-transform:scale(0.25);
    -moz-transform:scale(0.25);
    -ms-transform:scale(0.25);
    -o-transform:scale(0.25);
    transform:scale(0.25);
}


/*---------------
  2 Columnas
-----------------*/
.contenedor4 {padding: 0 0px;}
.contenedor2 {padding: 0 20px; text-align: justify;}
.contenedor2 .col_12 {width: 100%;}
.contenedor2 .col_6 {width: 50%;}
.contenedor2 .col_4 {width: 33.33%;}
.contenedor2 .col_2 {width: 16.66%;}

.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

/*-----------------------
     Texto en Imagen
-------------------------*/
.txtcontenedor{
    position: relative;
    display: inline-block;
    text-align: center;
}
 
.txtencima{
    position: absolute;
    top: 10px;
    left: 10px;
}
.txtcentrado{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.txtinicio{
    position: absolute;
    bottom: 150px;
    left: 20px;
    font-size: 1.5em;
}
.txtabajo{
    position: absolute;
    bottom: 10px;
    left: 20px;
    
}

/* Alterno */
.txtimagen{
    text-align: center;
    position: absolute;
    bottom: 20%;
    left: 10%;
    transform: translate(-30%, -50%);
}


/*-----------------------
     Color Barra Menu
-------------------------*/
.navbar {
    margin-bottom: 0px;
}

.menuborder {
border-right: 1px solid #9B9A9A;    
}

/*-----------------------
     Botones Sociales
-------------------------*/
@keyframes myscale{
    from{
        transform: scale(1);
    }
    to{
        transform: scale(1.2);
    }
}

.btn_facebook {
    position: fixed;
    top: 10px;
    right: 60px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #FFF;
    color: #034273;
    text-decoration: none;
    text-align: center;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    z-index: 99;
}
.btn_facebook:hover {
    color: #0068FF;
    background: #FFF;
    text-decoration: none;
    animation: 500ms myscale infinite;
    animation-direction: alternate-reverse;
}

.btn_twitter {
    position: fixed;
    top: 10px;
    right: 20px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #02D4FF;
    color: #FFF;
    text-decoration: none;
    text-align: center;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 99;
}
.btn_twitter:hover {
    color: #FFF;
    background: #28BBD9;
    text-decoration: none;
    animation: 500ms myscale infinite;
    animation-direction: alternate-reverse;
}
.btn_whatsapp {
    position: fixed;
    bottom: 125px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #10AB06;
    color: #FFF;
    text-decoration: none;
    text-align: center;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 99;
}
.btn_whatsapp:hover {
    color: #FFF;
    background: #39E12E;
    text-decoration: none;
    animation: 500ms myscale infinite;
    animation-direction: alternate-reverse;
}

.btn_mail {
    position: fixed;
    bottom: 75px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #0764AD;
    color: #FFF;
    text-decoration: none;
    text-align: center;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    z-index: 99;
}
.btn_mail:hover {
    color: #FFF;
    background: #0982DF;
    text-decoration: none;
    animation: 500ms myscale infinite;
    animation-direction: alternate-reverse;
}

/*-----------------------
     PARALLAX
-------------------------*/
.jumbotron { margin-bottom: 0 }

.parallax {
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}

/* Heading for Parallax Section */ 
.parallax h2 {
color: rgba(255, 255, 255, 0.8);
font-size: 40px;
text-align: center;
}
/* Paragrapgh for Parallax Section */ 
.parallax p {
color:#f5f5f5;
font-size: 20px;
text-align: center;
line-height: 40px;
}

/* The image used */
.parimg1 {
height: 350px; 
background-image: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url("oficina1.jpg");
}
.parimg2 {
height: 250px;
background-image: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url("oficina2.jpg");
}
.parimg3 {
height: 400px;
background-image: linear-gradient( rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) ), url("web.jpg");
}
.parimg4 {
height: 400px;
background-image: linear-gradient( rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) ), url("science.jpg");
}
.parimg5 {
height: 400px;
background-image: linear-gradient( rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) ), url("earth.jpg");
}
