
html, body, div, a, u,
h1, h2, h3, h4, h5, h6, nav, i, ol, ul, li {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

html, body, u, h1, h2, h3, h4, h5, h6, nav, i{
    font-family: "Font-Second", "sans-serif";
}

ol, ul {
    list-style: none;
}

/* Box Model */

*, *:before, *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* Sections/Article */

header {
   margin-bottom: 1em;
}

header p {
    display: block;
    margin: 1em 0 0 0;
    padding: 0 15% 0.5em 15%;
}

/*INI Cambio efectos CAMC*/
a:focus, a:hover
{
    color: rgb(42 42 42 / 96%);
}

#bloq:hover {
  opacity: 0;
}
/*FIN Cambio efectos CAMC*/
/*************************************************************************
 *                          Estilos del Menu                             *
 *************************************************************************/

.navigation
{
    position: fixed;
    z-index: 190;
    left: 0;
    top: 0;
    width: 100%;
    height: 3em;
    line-height: 3em;
    box-shadow: 0 0 0.15em 0 rgba(0, 0, 0, 0.1);
    background: -webkit-linear-gradient(#cccccc 0%, #e5e5e5 53%, #e5e5e5 70%, #b2b2b2 86%, #999999 100%);
    background: -o-linear-gradient(#cccccc 0%, #e5e5e5 53%, #e5e5e5 70%, #b2b2b2 86%, #999999 100%);
    background: linear-gradient(#cccccc 0%, #e5e5e5 53%, #e5e5e5 70%, #b2b2b2 86%, #999999 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f85032', endColorstr='#830000', GradientType=0 );
    -webkit-box-shadow: 0px 11px 114px 4px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 11px 114px 4px rgba(0,0,0,0.75);
    box-shadow: 0px 11px 114px 4px rgba(0,0,0,0.75);
}
.nav-right
{
    position: absolute; 
    left: 0%; 
}
.nav-left
{
    position: absolute; 
    left: 50%;
    width: 50%;
    visibility: visible;   
}
.ajust-img
{
    width: 65%;
    /*height: 10%;*/
    margin-bottom: 1%;
    /*margin-left: 20%;*/
    margin-top: 0%;
}
.ajust-color
{
    background: #fff;
    background: rgba(248,80,50,1);
    background: -webkit-linear-gradient(rgba(248,80,50,1) 0%, rgba(242,0,1,1) 53%, rgba(246,41,12,1) 70%, rgba(240,47,23,1) 86%, rgba(131,0,0,1) 100%);
    background: -o-linear-gradient(rgba(248,80,50,1) 0%, rgba(242,0,1,1) 53%, rgba(246,41,12,1) 70%, rgba(240,47,23,1) 86%, rgba(131,0,0,1) 100%);
    background: linear-gradient(rgba(248,80,50,1) 0%, rgba(242,0,1,1) 53%, rgba(246,41,12,1) 70%, rgba(240,47,23,1) 86%, rgba(131,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f85032', endColorstr='#830000', GradientType=0 );
}
.nav-text-left
{
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    text-align: center;
    color: #d8d8d8;
    font-family: "Font-Content-2", "sans-serif";
    font-weight: 600;
    letter-spacing: 0.025em;
}
/* Hamburger MenÃƒÂº */
#toggle {
    position: fixed;
    z-index: 9999;
    width: 2.85714em;
    height: 2.85714em;
    top: 16px;
    left: 96%;
    cursor: pointer;
}

#toggle span {
    display: block;
    position: absolute;
    width: 35%;
    height: 4px;
    margin: 1.25em 0 0 0;
    background: red;
    -webkit-transition: 350ms ease all;
    -moz-transition: 350ms ease all;
    transition: 350ms ease all;
    border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
}

#toggle span:before
{
    content: " ";
    position: absolute;
    width: 140%;
    height: 4px;
    background: red;
    -webkit-transition: .5s ease all;
    -moz-transition: .5s ease all;
    transition: .5s ease all;
    border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
}

#toggle span:after 
{
    content: " ";
    position: absolute;
    width: 50%;
    height: 4px;
    background:red;
    -webkit-transition: .5s ease all;
    -moz-transition: .5s ease all;
    transition: .5s ease all;
    border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
}
#toggle span:hover
{
    content: " ";
    position: absolute;
    width: 70%;
    height: 4px;
    background: #ffa600;
    -webkit-transition: .7s ease all;
    -moz-transition: .7s ease all;
    transition: .7s ease all;
    border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
}

#toggle span:hover:before,
#toggle span:hover:after {
    content: " ";
    position: absolute;
    width: 100%;
    height: 4px;
    background: #ffa600;
    -webkit-transition: .7s ease all;
    -moz-transition: .7s ease all;
    transition: .7s ease all;
    border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
}

#toggle span:before { margin: -0.5em 0 0 0; }

#toggle span:after { margin: 0.5em 0 0 0; }

#toggle.open span { 
    background-color: transparent; 
    width: 75%;
}
/* Final del Hambuger Menu*/
/* Menu Hambuger al desplegarse */
#toggle.open span:before,
#toggle.open span:after {
    margin: 0;
    background: #fff;
    width: 100%;
}

#toggle.open span:before {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transition: .7s ease all;
    -moz-transition: .7s ease all;
    transition: .7s ease all;
    transition: all .7s;
}

#toggle.open span:after {
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
    -webkit-transition: .7 line all;
    -moz-transition: .7 line all;
    transition: .7 line all;
    transition: all .7s;
}
/*  Final Menu Hambuger al desplegarse */
/* Estilos del Menu sin desplegarse */
#menu {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    background:rgba(0, 0, 0, 0.75);
    -webkit-transform: translateY(-1000px);
    -moz-transform: translateY(-1000px);
    transform: translateY(-1000px);
    -webkit-transition: 350ms ease all;
    -moz-transition: 350ms ease all;
    transition: 350ms ease all;
    /*INI Cambio efectos CAMC*/
    /*transition: all 2.7s;*/
    transition: all 1s !important;
    /*FIN Cambio efectos CAMC*/
}

.menu2 {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: 999;
    width: 50%;
    height: 100%;
    top: 0;
    left: 50%;
    text-align: center;
    background:rgba(0, 0, 0, 0.75);
    -webkit-transform: translateY(1000px);
    -moz-transform: translateY(1000px);
    transform: translateY(1000px);
    -webkit-transition: 350ms ease all;
    -moz-transition: 350ms ease all;
    transition: 350ms ease all;
    transition: all 2.7s;
}
/* Final Estilos del Menu sin desplegarse */
/* Estilos del Menu al desplegarse */
#menu.opened {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 350ms ease all;
    -moz-transition: 350ms ease all;
    transition: 350ms ease all;
    /*INI Cambio efectos CAMC*/
    /*transition: all 1.5s;*/
    transition: all 1s;
    /*FIN Cambio efectos CAMC*/
}

#menu2.opened2 {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 350ms ease all;
    -moz-transition: 350ms ease all;
    transition: 350ms ease all;
    transition: all 1.5s;
}
/* Final de Estilos del Menu al desplegarse */
#menu span#title {
    display: block;
    line-height: 1em;
    font-size: 2.5em;
    color: #fff;
    font-family: "Font-Bold", "sans-serif";
    letter-spacing: 0.1em;
    font-weight: 600;
    transition: opacity .4s,transform .4s,-webkit-transform .4s;
}
#menu ul li h6 {
    z-index: 1;
    display: block;
    width: 100%;
    height: 65px;
    line-height: 65px;
    margin: -45px auto;
    color: #fff;
    text-decoration: none;
    font-family: "Font-Content", "sans-serif";
    letter-spacing: 2px;
    font-size: 1.0em;
}

#menu span#title {  margin: 20px 0 0.6em 0;   }
#menu ul {
    list-style: none;
    margin: 0 auto;
}

#menu ul li {
    display: block;
    width: 90%;
    height: 65px;
    margin: 0 auto 0.5em auto;
    visibility: hidden;
}

#menu ul li:after {
    content: " ";
    position: absolute;
    width: 0%;
    height: 65px;
    margin: -30px 0 0 5%;
    left: 0;
    background:rgba(214, 56, 56, 0.65);
    border-radius: 0.25em;
    -webkit-transition: 350ms ease all;
    -moz-transition: 350ms ease all;
    transition: 350ms ease all;
}

#menu ul li:hover:after { width: 90%; }

#menu ul li a {
    position: relative;
    z-index: 4;
    display: block;
    width: 100%;
    height: 65px;
    line-height: 60px;
    margin: 0 auto;
    font-family: "Font-Light", "sans-serif";
    font-size: 2em;
    font-weight: bold;
    /*INI Cambio efectos CAMC*/
    color: #fff !important;
    /*FIN Cambio efectos CAMC*/
    text-decoration: none;
    border-radius: 0.2em;
    -webkit-transition: 350ms ease all;
    -moz-transition: 350ms ease all;
    transition: 350ms ease all;
}
.text-order {
    position: relative;
    z-index: 4;
    display: block;
    height: 65px;
    text-decoration: none;
    border-radius: 0.2em;
    line-height: 20px;
    color: #fff;
    text-align: justify;
    -webkit-transition: 350ms ease all;
    -moz-transition: 350ms ease all;
    transition: 350ms ease all;
}
.ajust-borde
{
    border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
    border: 4px solid #000000;
}
.ajust-text   {   padding: 5%;      }
.ajust-history {  margin: 1% auto;  }
.ajust-vision  {  margin: 5% auto;  }

#menu ul li a:hover {
    color: #fff;
    border-color:#fff;
}

#menu ul li a span { font-size: 1.66667em; }

#menu ul li a i {
    position: absolute;
    padding: 0 1.25em 0 0;
    font-size: 2em;
}

#menu.opened ul li {
    visibility: visible;
    -webkit-transform: translateY(35px);
    -moz-transform: translateY(35px);
    transform: translateY(35px);
    -webkit-transition: 900ms ease all;
    -moz-transition: 900ms ease all;
    transition: 900ms ease all;
    transition: all 2.7s;

}

/************************************************************************
 *                   Final de los Estilos del Menu                      *
 ************************************************************************/

/************************************************************************
 *             Fondos de Pantalla para los diferentes                   *
 *             formularios definidos por id                             *      
 ************************************************************************/ 

/* Intro */




@media (min-width:1300px) and (max-width:1366px) {
    #main2 {
    background: url('../images/screen_wallpaper/banner2.webp');
    background-size: 100% 100%;
    
}
    #main3{
    background-image: url('../images/estibadorm.webp');
}
    #main4 {
    background-image: url('../images/Apilador.webp');
}
    #contactenos{
        display: none;
    }
    
}
@media (min-width:658px) and (max-width:1180px) {
     #main4 {
    background-image: url('../images/Apilador.webp');
    background-size: 100% 99.9%;
    top:0.4vh;
}
     #main3 {
    background-image: url('../images/estibadorm.webp');
    background-size: 100% 99.9%;
    top:0.4vh;
}
    
     #main2 {
    background-image: url('../images/screen_wallpaper/banner2.webp');
    background-size: 100% 99.9%;
    }
.nt-text
{
   
    top: 28%;
}
}

@media (min-width:1200px) and (max-width:1280px) {
    #main2 {
    background: url('../images/screen_wallpaper/banner2.webp');
    background-size: 100% 90%;
        background-repeat: no-repeat; 
}
     #main4 {
    background-image: url('../images/Apilador.webp');
    
    background-size: 100% 90%;background-repeat: no-repeat;top: -5%;
         
}
    #main3{
    background-image: url('../images/estibadorm.webp');
    background-size: 100% 90%;background-repeat: no-repeat;top: -5%;
} 
 
}

@media (min-width:1500px) and (max-width:1680px) {
    .nt-text{
        top: 35%;
    }
}

@media (min-width:1400px) and (max-width:1920px) {

#main2 {
   
    
    background: url('../images/screen_wallpaper/banner2.webp');
    background-size: 100% 100%;
    
}

#main3 {
    background-image: url('../images/estibadorm.webp');
    background-size: 100% 100%;
}

#main4 {
    background-image: url('../images/Apilador.webp');
    background-size: 100% 100%;
    
}
}
container {
    display:block;
    position:relative;
    width: 100%;
    padding-bottom: 33%;
    margin-top: 4%;
    border: none;
    overflow: hidden;
    height: 925px!important;
}

  /* Normal slide in inactive state */
slide {
    transition-property: opacity, transform, z-index;
    transition-duration: 0ms;
    transition-function: linear;
    transition-delay: 2000ms, 2000ms, 0ms;
    display:block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    /*INI Cambio efectos CAMC*/
    /*transform: scale(2) rotate(10deg);*/
    /*FIN Cambio efectos CAMC*/
    z-index: 1;
}

/* Active slide */
slide.active {
    transition-property: opacity, transform, z-index;
    transition-duration: 2000ms, 2000ms, 0ms;
    transition-function: linear;
    transition-delay: 0ms;
    transform: scale(1);
    opacity: 1;
    z-index: 10;
}

/* Slide activated by clicking next/prev navigation button.
 * May have, for instance, faster transition time, or a completely differen effect */
slide.activated {
    transition-property: opacity, transform, z-index;
    transition-duration: 1000ms, 1000ms, 0ms;
    transition-function: linear;
    transition-delay: 0ms;
    transform: scale(1);
    opacity: 1;
    z-index: 10;
}

slide.deactivated {
    transition-property: opacity, transform, z-index;
    transition-duration: 1000ms, 1000ms, 0ms;
    transition-function: linear;
    transition-delay: 0ms;
    /*INI Cambio efectos CAMC*/
    /*transform: scale(2) rotate(10deg);*/
    /*FIN Cambio efectos CAMC*/
    opacity: 0.0001;
    z-index: 1;
}
/* Navigation buttons */
.next,
.prev {
    transition: 150ms linear all;
    position: absolute;
    top: 46%;
    border-radius: 5px;
    background-color: rgba(0,0,0,.65);
    color: #fff;
    text-align: center;
    vertical-align:middle;
    font-size: 50px;
    text-shadow: 0 0 1px #000;
    cursor: pointer;
    opacity: .5;
}
.next:hover,
.next:active,
.prev:hover,
.prev:active {
    opacity: 1;
}
.next {
    right: 25px; z-index: 10;
    padding:3px 5px 0px 3px;
}
.prev {
    left: 25px; z-index: 10;
    padding:3px 3px 0px 5px;
}


/* Fondos de Pantalla */

#business 
{
      background: url("../images/screen_wallpaper/overlay.webp"), url("../images/screen_wallpaper/5-Background.webp");
      display: inline-block;
      position: relative;
      margin-top: 5vh;
      padding-bottom: 10vh;
      margin-top: 5vh;
      width: 100%;
}

#lift 
{
      background: url("../images/screen_wallpaper/overlay.webp"), url("../images/screen_wallpaper/4-Background.webp");  
}

#rental, #contact
{
      background: url("../images/screen_wallpaper/overlay.webp"), url("../images/screen_wallpaper/3-Background.webp");
}



#stevedores
{
    background: url("../images/screen_wallpaper/overlay.webp"), url("../images/screen_wallpaper/6-Background.webp");
}

/* TamaÃƒÂ±os del Fondo */

#business, #lift,#rental, #logistic, #us, #stevedores, #contact{   
    background-size: 256px 256px, cover;
    background-attachment: fixed, fixed;
    background-position: top left, center center;
  
}

/* Border */

/*INI Cambio bordes rojos entre secciones */
#intro, #business, #us, #lift, #rental, #logistic
{
    border-bottom: 6px rgb(242,0,1) solid;
}
.divider3
{
    border-bottom: 1px #d8d8d8 solid;
}
#stevedores
{
    border-bottom: 6px rgb(242,0,1) solid;
}
/*FIN Cambio bordes rojos entre secciones */

/************************************************************************
 *                       Final de los Fondos de Pantalla                *    
 ************************************************************************/ 

/************************************************************************
 *                              Social Networks                         *     
 ************************************************************************/

#social .nt-outside
{
    position: fixed;
    z-index: 160;
    left: 0;
      
}

#icon-contact .nt-outside 
{
    position: fixed;
    z-index: 160;
    right: 0;
      
}
#social .nt-text, #social .nt-click ,  #icon-contact .nt-text, #icon-contact .nt-click 
{   
    cursor:pointer; 
    display:block; 
    position:absolute; 
    width:100%; 
    transition:0.3s ease all; 
    -moz-transition:0.3s ease all; 
    -webkit-transition:0.3s ease all;
}
#social .nt-text, #icon-contact .nt-text      
{ 
    font-size:20px; 
    font-weight:700; 
    z-index:100; 
}
#social .nt-click, #icon-contact .nt-click           
{ 
  z-index:200; 
}
#cuadro-whatsapp
{
    visibility: hidden;
}
#facebook, #instagram, #youtube             
{ 
    height:50px;
    overflow:hidden; 
    text-align:center; 
    width:50px; 
    border-radius: 0px 5px 5px 0px;
    -moz-border-radius: 0px 5px 5px 0px;
    -webkit-border-radius: 0px 5px 5px 0px;
    transition:0.3s ease all; -moz-transition:0.3s ease all; -webkit-transition:0.3s ease all;
}
#contactenos                    
{ 
    top:40%;
    background: #ffa600;
    height:50px;
    overflow:hidden; 
    text-align:center; 
    width:50px; 
    border-radius: 5px 0px 0px 5px;
    -moz-border-radius: 5px 0px 0px 5px;
    -webkit-border-radius: 5px 0px 0px 5px;
    transition:0.3s ease all; -moz-transition:0.3s ease all; -webkit-transition:0.3s ease all;    
}
#whatsapp                    
{ 
    top:60%;
    background: #34AF23;
    height:50px;
    overflow:hidden; 
    text-align:center; 
    width:50px; 
    border-radius: 5px 0px 0px 5px;
    -moz-border-radius: 5px 0px 0px 5px;
    -webkit-border-radius: 5px 0px 0px 5px;
    transition:0.3s ease all; -moz-transition:0.3s ease all; -webkit-transition:0.3s ease all;    
}
#facebook                    
{ 
    top:40%;
    background: #3b5998;    
}
#instagram                    
{ 
    top: 50%;
    background: rgba(249,237,50,1);
    background: -moz-linear-gradient(45deg, rgba(249,237,50,1) 0%, rgba(249,237,50,1) 9%, rgba(251,173,80,1) 29%, rgba(233,89,80,1) 46%, rgba(238,42,123,1) 61%, rgba(138,58,185,1) 84%, rgba(138,58,185,1) 100%);
    background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(249,237,50,1)), color-stop(9%, rgba(249,237,50,1)), color-stop(29%, rgba(251,173,80,1)), color-stop(46%, rgba(233,89,80,1)), color-stop(61%, rgba(238,42,123,1)), color-stop(84%, rgba(138,58,185,1)), color-stop(100%, rgba(138,58,185,1)));
    background: -webkit-linear-gradient(45deg, rgba(249,237,50,1) 0%, rgba(249,237,50,1) 9%, rgba(251,173,80,1) 29%, rgba(233,89,80,1) 46%, rgba(238,42,123,1) 61%, rgba(138,58,185,1) 84%, rgba(138,58,185,1) 100%);
    background: -o-linear-gradient(45deg, rgba(249,237,50,1) 0%, rgba(249,237,50,1) 9%, rgba(251,173,80,1) 29%, rgba(233,89,80,1) 46%, rgba(238,42,123,1) 61%, rgba(138,58,185,1) 84%, rgba(138,58,185,1) 100%);
    background: -ms-linear-gradient(45deg, rgba(249,237,50,1) 0%, rgba(249,237,50,1) 9%, rgba(251,173,80,1) 29%, rgba(233,89,80,1) 46%, rgba(238,42,123,1) 61%, rgba(138,58,185,1) 84%, rgba(138,58,185,1) 100%);
    background: linear-gradient(45deg, rgba(249,237,50,1) 0%, rgba(249,237,50,1) 9%, rgba(251,173,80,1) 29%, rgba(233,89,80,1) 46%, rgba(238,42,123,1) 61%, rgba(138,58,185,1) 84%, rgba(138,58,185,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9ed32', endColorstr='#8a3ab9', GradientType=1 );
}
#youtube                    
{ 
    top: 60%;
    background: #f22424;    
}
#facebook .nt-text, #instagram .nt-text, #youtube .nt-text, #contactenos .nt-text, #whatsapp .nt-text
{   
    font-size:35px; 
    height:100%; 
    padding-top:10px;
    color: #ffffff; 
}
#instagram .nt-text, #youtube .nt-text, #contactenos .nt-text, #whatsapp .nt-text
{
    padding-top:0;
    margin-top: -15%;
}
#facebook .nt-click, #instagram .nt-click, #contactenos .nt-click, #whatsapp .nt-click            
{ 
    opacity:0; 
    padding:10px 10px 5px; 
    margin:0 auto; 
    margin-top:0px;
    font-size:17px; 
}
#youtube .nt-click {
    opacity:0; 
    padding: 10px 0px 5px 16px;
    margin:0 auto; 
    margin-top:0px;
    font-size:17px; 
}
#facebook:hover, #instagram:hover, #youtube:hover, #whatsapp:hover
{ 
    width:150px; 
}
#contactenos:hover
{
    width:150px;
    height: 150px;
    background: rgba(255,255,255,0.0);
    margin-top:15px;
    -webkit-transition: width 2s,height 2s; /* Safari */
    transition: width 2s,height 2s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.nt-outside {
    opacity: 1;
    visibility: hidden;
}
.opacity-active {
    opacity: 1; 
    visibility: visible;
}

#facebook:hover .nt-text,  #instagram:hover .nt-text, #youtube:hover .nt-text, #contactenos:hover .nt-text, #whatsapp:hover .nt-text { opacity:0; }
#facebook:hover .nt-click, #instagram:hover .nt-click, #youtube:hover .nt-click, #contactenos:hover .nt-click, #whatsapp:hover .nt-click { opacity:1; margin-top:5px;}
#facebook:hover .nt-click a, #instagram:hover .nt-click a, #youtube:hover .nt-click a, #whatsapp:hover .nt-click a { color: #ffffff;}

#whatsapp:hover .nt-click
{
    margin-left: 10px;
}
#facebook:before, #instagram:before, #youtube:before, #whatsapp:before {
    font-family: FontAwesome;
    position: absolute;
    top: 11px;
    left: -30px;
    color: #ffffff;
    font-size: 25px; 
    transition: all 200ms ease;
}
#contactenos:before{
    position: absolute;
    top: 11px;
    left: -30px;
    color: #ffffff;
    font-size: 25px; 
    transition: all 200ms ease-in-out;
    
}
#facebook:before { content:"\f164" }
#instagram:before { content:"\f083" }
#youtube:before { content:"\f16a" }
#whatsapp:before { content:"\f232" }
#facebook:hover:before, #instagram:hover:before, #youtube:hover:before, #contactenos:hover:before, #whatsapp:hover:before { left: 7px; }


/************************************************************************
 *                         Final de Social Networks                     *     
 ************************************************************************/ 