.img{
    width: 100%;
    height: 100%;

    margin: auto;

    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.sytemtor{
    width: 100%;
    height: 100px;
    background-image: url('/img/web/Home/sytemtor.png');
    background-size: 60% !important;
}

.div{
    display: block;

    width: 30px;
    height: 5px;

    margin: 20px auto;

    background-color: #0a97da;
}

input[type="submit"].degrado{
    border-radius: 100px 100px 100px 100px;
    -moz-border-radius: 100px 100px 100px 100px;
    -webkit-border-radius: 100px 100px 100px 100px;
    margin: auto;
    color: #fff;
}

input[type="text"]{
    background-color: #f3f3f3 !important;
}

.img_prod{
    background-color: #0a97da;

    position: relative;
}

.botons{
    width: 100%;
    height: auto;

    padding: 20px;

    position: absolute;
    bottom: 0;
    left: 0;

    display: -webkit-flex !important;
	display: -moz-flex !important;
	display: -ms-flex !important;
	display: -o-flex !important;
	display: flex !important;

    flex-flow: row;

    justify-content: space-around;
    align-items: center;
}

.degrado,
.degrado:hover{
    background: rgba(10,152,218,1);
    background: -moz-linear-gradient(left, rgba(10,152,218,1) 0%, rgba(102,197,241,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(10,152,218,1)), color-stop(100%, rgba(102,197,241,1)));
    background: -webkit-linear-gradient(left, rgba(10,152,218,1) 0%, rgba(102,197,241,1) 100%);
    background: -o-linear-gradient(left, rgba(10,152,218,1) 0%, rgba(102,197,241,1) 100%);
    background: -ms-linear-gradient(left, rgba(10,152,218,1) 0%, rgba(102,197,241,1) 100%);
    background: linear-gradient(to right, rgba(10,152,218,1) 0%, rgba(102,197,241,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0a98da', endColorstr='#66c5f1', GradientType=1 );
}

.pestana{
    cursor: pointer;
    padding: 10px 0 !important;

    transition: .5s ease-out 0s;

    -webkit-transition: .5s ease-out 0s;
    -moz-transition: .5s ease-out 0s;
    -o-transition: .5s ease-out 0s;
    -ms-transition: .5s ease-out 0s;
}

.pestana.On{
    -webkit-box-shadow: inset 0px 0px 44px -15px rgba(0,0,0,0.75);
    -moz-box-shadow: inset 0px 0px 44px -15px rgba(0,0,0,0.75);
    box-shadow: inset 0px 0px 44px -15px rgba(0,0,0,0.75);
}


.informacion{
    position: relative;
}

article, ul{
    margin: 0;
}
.informacion .datos{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 0;

    opacity: 0;

    transition: opacity .5s ease-out .0s;
    -webkit-transition: opacity .5s ease-out .0s;
    -moz-transition: opacity .5s ease-out .0s;
    -o-transition: opacity .5s ease-out .0s;
    -ms-transition: opacity .5s ease-out .0s;
    overflow: hidden;

    background-color: #fff;
}

.informacion .datos.On{
    position: relative;
    height: auto;

    opacity: 1;
}

/* =================================================================
						Responsive slider
================================================================= */
@media only screen and (max-width: 770px){
    .img {
        width: 100%;
        height: 200px;
    }


    .pesanas{
        height: 100vh;
        max-height: 200vh;
    }

    @media only screen and (max-width: 460px){
        .pesanas{
            height: 110vh;
        }

        @media only screen and (max-width: 420px){
            .pesanas{
                height: 130vh;
            }
        }
    }
}



/* =================================================================
							Carrusel
================================================================= */
:root{
    --tam_img: 40px;
}

section.carrusel{
	max-height: 480px;
	height: 480px;
	margin: 0;
	padding: 0;
	width: 100%;
	position: relative;

    margin: auto;
}

.slider {
	margin: 0 auto;
	max-width: 100%;
    height: 100%;
}

.slide_viewer {
    width:  calc(100% - var(--tam_img));;
	height: calc(100% - var(--tam_img));
	overflow: hidden;
    position: relative;
    margin: 20px;
    background-color: #fff;
}

.slide_group {
	height: 100%;
	position: relative;
	width: 100%;
}

.slide {
	display: none;
	height: 100%;
	position: absolute;
	width: 100%;
	background-position: center;
	background-size: contain !important;
    background-repeat: no-repeat;
}

.slide:first-child {
	display: block;
}


.slide_buttons {
	left: 0;
	position: absolute;
	right: 0;
	text-align: center;
    bottom: 0;

    display: -webkit-flex !important;
	display: -moz-flex !important;
	display: -ms-flex !important;
	display: -o-flex !important;
	display: flex !important;

    flex-flow: row wrap;

    justify-content: center;
    align-items: center;
}

a.slide_btn {
	color: #ffffff;
	font-size: 42px;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;

    text-shadow: 1px 1px 1px rgba(0,0,0,.5);
}

.slide_btn.active, .slide_btn:hover {
	color: #0a97da;
	cursor: pointer;
}

.directional_nav {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	max-width: 100%;
	position: absolute;
	top: 0;
}

.previous_btn {
	bottom: 0;
	left: 14px;
	margin: auto;
	position: absolute;
	top: 0;
}

.next_btn {
	bottom: 0;
	margin: auto;
	position: absolute;
	right: 14px;
	top: 0;
}

  .previous_btn, .next_btn {
	width: 35px;
	height: 35px;

	opacity: 0.5;

	-webkit-transition: opacity 0.4s ease-in-out;
	-moz-transition: opacity 0.4s ease-in-out;
	-ms-transition: opacity 0.4s ease-in-out;
	-o-transition: opacity 0.4s ease-in-out;
	transition: opacity 0.4s ease-in-out;

	cursor: pointer;
}

.previous_btn:hover, .next_btn:hover {
	opacity: 1;
}
