.body 
{
background-image: url('https://firebasestorage.googleapis.com/v0/b/webtakab.appspot.com/o/Parallax-BG-1.png?alt=media&token=5d2d1b8a-34e7-4e32-8956-6d2a34bbefbe');
background-repeat: no-repeat;
background-attachment: fixed;
background-position: bottom;
background-size: cover;
background-repeat: no-repeat;
}

.container-cover-contacto{
    width: 100%;
    height: 500px;
    position: relative;
    margin-top: 80px;
    background-image: url("https://firebasestorage.googleapis.com/v0/b/webtakab.appspot.com/o/office_call.jpg?alt=media&token=8484aca3-2264-4c51-935c-45d32dd5fcd1");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

}


.container-cover-contacto:before{
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(85, 121, 162, 0.8);
    position: absolute;
    top: 0;
    left: 0;
}

.container-cover-info-contacto{
    max-width: 800px;
    height: 500px;
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.container-cover-info-contacto h1{
    font-size: 60px;
    font-weight: 500;
    color: white;
    margin-top: 20px;
}

.container-cover-info-contacto p{
    color: white;
    font-size: 20px;
    font-weight: 300px;
}


/* Contenido de la Pagina */
/* Contenido 1 */
article{
    width: 100%;
    padding: 20px;
    padding-bottom: 40px;
    box-shadow: -10px 0 20px -30px black;
    border-radius: 6px;
    position: relative;
    overflow: hidden;    
}

article:before{
    content: '';
    width: 100%;
    height: 0px;
    position: absolute;
    top: 0;
    left: 0;
    background: #70B74D;
}

article h1{
    margin-top: 20px;
    font-weight: 500;
    font-size: 40px;
}

article p{
    margin-top: 20px;
    font-size: 18px;
    color: #3c3c3c;
}

article img{
    width: 100%;
    margin-top: 20px;
}

/*Aside (Menu lateral)*/
.container-aside aside{
    width: 320px;
    border-right: 6px;
    box-shadow: 0 0 20px -20px black;
    background: #003674;
    border-radius: 6px;
    overflow: hidden;
    margin-left: 40px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  
  .container-aside aside img{
      width: 100%;
  }
  
  .container-aside aside h2,
  .container-aside aside p{
      margin-top: 20px;
      padding: 0px 20px;
  }
  
  .container-aside aside button{
      margin-top: 20px;
      margin-left: 20px;
      padding: 10px 50px;
      font-size: 16px;
      background: #46a2fd;
      border: none;
      color: #fff;
      cursor: pointer;
      border-radius: 6px;
  }
  
  .container-aside aside button:hover{
      opacity: 0.9;
  }

/* Formulario de Google Responsivo*/
#Iframe-Liason-Sheet {
    max-width: 760px;
    max-height: 1000px;
    overflow: hidden;
    }

    /* inner wrapper: make responsive */
    .responsive-wrapper {
    position: relative;
    height: 0; /* gets height from padding-bottom setting */
    -webkit-overflow-scrolling: touch;
    overflow: auto;
    }

    .responsive-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: none;
    }

    /* padding-bottom = h/w as a % */
    .responsive-wrapper-wxh-760x1000{
    padding-bottom: 363.6364%;
    }

    .iframe-border {
    border: 1px solid rgb(255, 255, 255);
    }
    
    .center-block-horiz {
    margin-left: auto !important;
    margin-right: auto !important;
    }


/* Contenido 2 */
.contacto-2{
    width: 100%;
    padding: 30px;
    position: relative;
    background: #00244C;
    /*background-image: url(../images/computer2.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;*/
}

.content-contacto2{
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.content-contacto-item2{
    width: 400px;
    text-align: center;
    margin: 20px;
    
}

.content-contacto-item2 b{
    color: #ffffff
}

.content-contacto-item2 i{
    color: #ffffff
}

.content-contacto-item2 h1{
    text-align: center;
    color: #ffffff;
    margin-bottom: 10px;
}

.content-contacto-item2 p{
    text-align: justify;
    color: #ffffff;
}

.content-contacto-item2 img{
    width: 100%;
    margin-top: 5px;
    text-align: right;
}


.container-content{
    width: 1200px;
    margin: auto;
    margin-top: 40px;
    display: flex;
    justify-content: center;
}








/*Boton de ir arriba*/

#button-up{
    width: 60px;
    height: 60px;
    background: #001832;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 50%;
    font-size: 20px;
    position: fixed;
    bottom: 50px;
    right: 50px;
    cursor: pointer;
    border: 4px solid transparent;
    transition: all 300ms ease;
    transform: scale(0);
}

#button-up:hover{
    transform: scale(1.1);
    border-color: rgba(0,0,0,0.1);
}


/* Responsive Design - adaptable a dispositivos moviles*/

@media screen and (max-width: 1220px){

    .header-content,
    .container-content,
    .container-footer footer{
        max-width: 1000px;
        padding: 0 20px;
    }


}

@media screen and (max-width: 1020px){

    .container-content{
        width: 100%;
        flex-direction: column;
    }

    article{
        box-shadow: 0 0 0 0;
    }

    .container-aside{
        display: flex;
        justify-content: center;
    }

    .container-aside aside{
        max-width: 300px;
        margin: 10px;
    }

}


@media screen and (max-width: 800px){

    body{
        overflow-x: hidden;
    }

    .container-all{
        transition: all 300ms cubic-bezier(1,0,0,1);
    }

    .move-container-all{
        transform: translateX(300px);
    }

    .menu{
        width: 0px;
        height: 100vh;
        position: fixed;
        top: 80px;
        left: 0;
        background: #fff;
        overflow: hidden;
        transform: translateX(-350px);
        box-shadow: 10px 0 20px -25px black;
        transition: all 300ms cubic-bezier(1,0,0,1);
    }

    .show-lateral {
        width: 300px;
        transform: translateX(0px);
    }

    .menu nav ul {
        flex-direction: column;
    }

    .menu nav ul li{
        max-width: 200px;
        height: 50px;
        justify-content: flex-start;
    }

    .menu-selected:before{
        width: 0;
    }

    .menu nav ul li a{
        margin-top: 40px;
        color: #858585;
    }

    .menu nav ul li a i{
        width: 20px;
        display: inline-block;
        margin-right: 10px;
        color: #46a2fd;
    }

    #icon-menu{
        display: flex;
    }

    .container-aside{
        flex-wrap: wrap;
    }

}