.contenedor {
	max-width: 1200px;
	width: 100%;
	margin: auto;
}

/* --- --- CONTENEDOR PRINCIPAL --- --- */

.contenido-principal {
	margin-bottom: 50px;
	display: flex;
	align-items: center;
}

.contenido-principal__imagen {
	vertical-align: top;
	margin-right: 20px;
	width: 100%;
	max-width: 650px;
}

.contenido-principal__contenedor {
	width: 100%;
}

.contenido-principal__titulo {
	font-weight: normal;
	font-size: 28px;
}

.contenido-principal__resumen {
	font-family: 'Open Sans', sans-serif;
	line-height: 30px;
	color: #CFCFCF;
}

/* --- --- CAROUSEL --- --- */
.carousel__contenedor {
	position: relative;
}

.carousel__anterior,
.carousel__siguiente {
	position: absolute;
	display: block;
	width: 30px;
	height: 60px;
	border: none;
	top: calc(50% - 35px);
	cursor: pointer;
	line-height: 30px;
	text-align: center;
	background: none;
	color: #000;
	opacity: 70%;
}

.carousel__anterior:hover,
.carousel__siguiente:hover {
	opacity: 100%;
}

.carousel__anterior {
	left: -50px;
}

.carousel__siguiente {
	right: -50px;
}

.carousel__lista {
	overflow: hidden;
}

.carousel__elemento {
	text-align: center;
}

.carousel__indicadores .glider-dot {
	display: block;
	width: 30px;
	height: 4px;
	background: #000;
	opacity: .2;
	border-radius: 0;
}

.carousel__indicadores .glider-dot:hover {
	opacity: .5;
}

.carousel__indicadores .glider-dot.active {
	opacity: 1;
}

.image-services img {
    width: 100%;    
}
.content-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3%;
    width: 100%;
}
.content-team {
    display: grid;
	grid-template-columns: 30% 67%;
    column-gap: 3%;
    width: 100%;
}
.content-team-2 {
    display: grid;
	grid-template-columns: 67% 30%;
    column-gap: 3%;
    width: 100%;
}

@media screen and (max-width: 800px) {
	body {
		padding: 40px 0;
	}

	.contenido-principal {
		flex-direction: column;
	}

	.contenido-principal > * {
		width: 100%;
	}
    .carousel__anterior {
        left: 1px;
        z-index: 2;
    }

    .carousel__siguiente {
        right: 1px;
        z-index: 2;
    }
    .carousel__indicadores .glider-dot {
        display: block;
        width: 30px;
        height: 4px;
        background: #000;
        opacity: .2;
        border-radius: 0;
        z-index: 1;
    }
    .image-services img {
        width: 100%;
    }
    .content-services {
        display: block;
    }
}


.hover-rotate {
    display: flex;
    justify-content: center;
    overflow: hidden;
    margin: 8px; 
    width: 100%;
}

.hover-rotate img {
    transition: all 0.3s;
    box-sizing: border-box;
    max-width: 100%;
}

.hover-rotate:hover img{
    transform: rotate(20deg);
}
