*{
    box-sizing: border-box;
}
.container-bar{
	width: 100%;
	max-width: 50px;
	position: fixed;
	left: 0;
	top: 40%;
}
.container-bar a{
	display: block;
	width: 60px;
	height: 90px;
	line-height: 100px;
	text-align: center;
	text-decoration: none;
	font-size: 18px;
	position: relative;
	transition: all 500ms ease;
	color: #fff;
}
.container-bar a:hover{
	background: #1c1c1c;
}
.container-bar .fa-facebook{
	background: #3b5998;
	border-radius: 0px 5px 0px 0px;
}
.container-bar .fa-youtube{
	background: #e52a23;
}
.container-bar .fa-whatsapp{
	background: #1ee40c;
}
.container-bar #title{
	position: absolute;
	background: #1c1c1c;
	padding: 0px 8px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	border-radius: 3px;
	font-size: 15px;
	top:12px; left: 0px;
	transition: all 500ms ease;
	opacity: 0;
	visibility: hidden;
	z-index: -1;
}
.container-bar a:hover #title{
	opacity: 1;
	visibility: visible;
	left: 64px;
}
.container-bar #title:after{
	position: absolute;
	content: '';
	border-left: 7px solid transparent;
	border-right: 6px solid #1c1c1c;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	right: 100%;
	top: 8px;
}
#btn-social{
	display: none;
}
.fa-play{
	cursor: pointer;
	transition: all 0.4s;
	font-size: 12px;
	margin-bottom: 5px;
	display: inline-block;
	transform: rotate(180deg);
	color: #49b0e6;
}
#btn-social:checked ~ .fa-play{
	transform: rotate(0deg);
}
.icon-social{
	transition: all 0.4s;
	transform: translateX(0%);
	box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
}
#btn-social:checked ~ .icon-social{
	transform: translateX(-100%);
	box-shadow: 0px 1px 10px rgba(0,0,0,0.0);
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Roboto', sans-serif;
    margin: 0;
}
.color-acento{ color:rgb(13, 13, 202); }

h2{ font-size: 2.7em;}
h3{ font-size: 2em;}
p{ font-size: 1.25em;}
p.lind{text-align: right;}
p.linc{ text-align: center;}
ul{ list-style: none;}
li{ font-size: 1.25em;}

button{
    font-size: 1.25em;
    font-weight: bold;
    padding: 10px 30px;
    border-radius: 5px;
    border: 2px solid rgba(0,0,0,0.3);
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    color: white;
    background-color: blueviolet;
}

button:hover{
    background-color: rgb(101, 33, 165);
}

.container{
    max-width: 1400px;
    margin: auto;
}

header{
    background: linear-gradient(20deg, rgb(34, 127, 170) 25%, rgb(53, 148, 211) 15%, rgb(21, 58, 88) 60%);
}

header .container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

header nav{
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-bottom: 25px;
}

header a{
    padding: 5px 12px;
    text-decoration: none;
    font-weight: bold;
    color: white;
}

header a:hover{
    color:red;
}

#inicio{
    display: flex;
    align-items: left;
    justify-content: center;
    padding:10rem;
    flex-direction: column;
}

#productos .container{
    text-align: Left;
    padding: 200px 12px;
    padding:7rem;
}


#servicios .container{
    text-align: center;
    padding: 250px 12px;
}

#servicios li{
    margin: 16px 0px;
    font-weight: bold;
}

footer{
    background-color: rgb(230,230,230);
}

footer p{
    margin: 0;
    padding: 10px;
    color: rgb(100,100,100);
}

footer a{
    text-decoration: none;
    color: rgb(100,100,100);
}

footer .container{
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 850px){
    header{
        position: fixed;
        width: 100%;
    }

    header .container{
        flex-direction: row;
        justify-content: space-between;
    }

    header nav{
        flex-direction: row;
        padding-bottom: 0;
        padding-right: 20px;
    }

    #inicio h1{
        font-size: 5em;
    }

    .img1{
        width: 400px;
        height: 150px;
    }
    .img2{
        width: 200px;
        height: 150px;
    }
    .img3{
        width:300px;
        height: 200px;
    }
    .img4{
        width: 300px;
        height: 150px;
    }
    .img5{
        width: 300px;
        height: 450px;
    }
    .img6{
        width: 250px;
        height: 300px;
    }
  
    #productos .img-container{
            display: flex;
            flex-direction: column;
          align-items: center;
    }

    #productos .container{
        display: flex;
        justify-content: space-evenly;
    }

    #productos .texto{
        width: 50%;
        max-width: 600px;
        text-align: initial;
        padding-left: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #productos h2{
        margin-top: 0px;
    }
    

    #servicios{
        background-image: url("");
        background-repeat: no-repeat;
        background-size: 500px 400px;
        background-position: calc(100vw - 500px) 120px;
    }

    #servicios .container{
        text-align: initial;
    }

    #servicios ul{
        margin-left: 100px;
    }


    footer .container{
        justify-content: center;
    }
}

@media (min-width: 1200px) {
    #servicios{
        background-position-x: calc(100vw - 800px);
    }
}

.mapa{
    display: flex;
    justify-content: center;
}
.colum1{
    padding: 50px;
    margin: 0 10px;
    text-align: center;
    border-radius: 20px;
}
.colum2{
    padding: 50px;
    margin: 0 10px;
    text-align: center;
    border-radius: 20px;
}
