
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: sans-serif;

}

/********************imagen de pagina home****************************/
.img1 img{
  width: 100%;
  height: auto;
  padding-top: 70px;
}

@supports(object-fit: cover){
    .box img{
      height: 100%;
      object-fit: cover;
      object-position: center center;
    }
}

/************************************************/
footer{

    width: 100%;
    background: #3a3a3a;
    color: white;

}

.container-footer-all{
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 40px;
    text-align: left;
}

.container-body{
    display: flex;
    justify-content: space-between;
}

.colum1{
  max-width: 600px;
  /*  width: 60%;*/
}

.colum1 h1{
      font-size: 22px;
}

.colum1 p{
    font-size: 14px;
    color: #C7C7C7;
    margin-top: 20px;
}

.colum2{
  width: 1px;
  background-color: white;
}

.colum2 h1{
    font-size: 22px;
}

.row1{
    margin-top: 20px;
    display: flex;
}

.row1 img{
    width: 36px;
    height: 36px;
}

.row1 label{
    margin-top: 10px;
    margin-left: 20px;
    color: #C7C7C7;
}

.colum3{
    max-width: 400px;
}

.colum3 h1{
    font-weight: 16;
    padding-left: 30px;
    font-size: 16px;

}

.colum3 p{
    font-size: 14px;
    color: #C7C7C7;
  /*  margin-top: 20px;*/
}

.row2{
    margin-top: 20px;
    display: flex;
}

.row2 img{
    width: 36px;
    height: 36px;
}

.row2 label{
    margin-top: 10px;
    margin-left: 20px;
    max-width: 140px;
}

.prow2{
  padding-top: 3px;
}

.container-footer{
    width: 100%;
    background: #3a3a3a;
}

.footer{
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding: 20px;
}


@media screen and (max-width: 1100px){

    .container-body{
        flex-wrap: wrap;
        display: grid;
    }

    .colum1{
        max-width: 100%;
    }

    .colum2{
      visibility: hidden;
    }

    .colum2,
    .colum3{
        margin-top: 40px;
    }

    .pcol1{
      max-width: 100%;
    }

/*************boton flotante *****************/

#btn-qr{
  display: none;
}

.padreqr{
  position: absolute;
  top: 20px;
  left: 20px;
}

.icon-qrcode{
  z-index: 99;
  display: block;
  text-decoration: none;
  background: #cf1e26;
  color: #fff;
  width:55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0px 1px 10px rgba(0,0,0,0.4);
  transition: all 500ms ease;
  cursor: pointer;
}

.icon-qrcode:hover{
background: #fff;
color: #cf1e26;
}

.imgqr{
  margin-top: -10px;
  margin-left: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease;
  z-index: 99;
}

#btn-qr:checked ~ .imgqr{
  margin-top: 10px;
  margin-left: 20px;
  opacity: 1;
  visibility: visible;
  transition: all 500ms ease;
  z-index: 99;
}


/*************columnas nosotros ************/

@import url(https://fonts.googleapis.com/css?family=Open+Sans);

* { box-sizing: border-box; }

body {
  font-family: 'Open Sans', sans-serif;
  color: #666;
}

/* STRUCTURE */

.wrapper {
	padding: 5px;
	max-width: 960px;
	width: 95%;
	margin: 20px auto;
}
header {
	padding: 0 15px;
}

.columns {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	margin: 5px 0;
}

.column {
	flex: 1;
	border: 1px solid gray;
	margin: 2px;
	padding: 10px;
	&:first-child { margin-left: 0; }
	&:last-child { margin-right: 0; }

}

footer {
	padding: 0 15px;
}


@media screen and (max-width: 980px) {
  .columns .column {
		margin-bottom: 5px;
    flex-basis: 40%;
		&:nth-last-child(2) {
			margin-right: 0;
		}
		&:last-child {
			flex-basis: 100%;
			margin: 0;
		}
	}
}

@media screen and (max-width: 680px) {
	.columns .column {
		flex-basis: 100%;
		margin: 0 0 5px 0;
	}
}
