*,
*:before {
	box-sizing: inherit;
}
* {
	margin: 0;
	padding: 0;
	border: 0 none;

}
:root {
    --sinSerif: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
		"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	--Nhexa: 4;
	--gap: 2vw;
	--size: calc(calc(100vw / var(--Nhexa)) - var(--gap));
}
@media only screen and (min-width: 1100px) {
	:root {
		--Nhexa: 6;
	}
}
@media only screen and (max-width: 600px) {
	:root {
		--Nhexa: 2;
	}
}

.section1 {
	/*margin: 150px 100px 50px 150px;*/
    margin: 150px 30px 40px 20px;
	width: calc(var(--size) * calc(var(--Nhexa) - 1));
	display: grid;
	grid-template-columns: repeat(var(--Nhexa), 1fr);
	grid-gap: var(--gap);
}
article {
	background: #316bb0;
	width: var(--size);
	height: calc(var(--size) / 1.1111111);
	clip-path: url(#hexagono);
	clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
	margin-right: calc(var(--size) / 2);
	color: #fff;
	overflow: hidden;
    position: relative;
}
article:nth-child(2n) {
	margin: calc(var(--size) * -0.5) calc(var(--size) * -0.25) 0
		calc(var(--size) * -0.75);
        
}
article::before {
	content: "";
	float: left;
	width: 25%;
	height: 100%;
	clip-path: polygon(0% 0%, 100% 0%, 0% 50%, 100% 100%, 0% 100%);
	shape-outside: polygon(0% 0%, 100% 0%, 0% 50%, 100% 100%, 0% 100%);
    
}
.img1 {
	width: var(--size);
	height: var(--size);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transform-origin: 0% 50%;
	transition: 0.75s;
	clip-path: url(#hexagono);
	clip-path: inherit;
	z-index: 10;
    
}
article:hover img {
	transform: translate(-50%, -50%) rotate(-110deg);
}
.figure1 {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	max-width: 50%;
	height: 100%;
	line-height: 1;
	color: #fff;
	transition: 0.75s 0.05s;
	text-align: center;
	background: #316bb0;
line-height: 25px;
}
figure1 p { 
	font-size: 80%;
	line-height: 1.2;
	width: 100%;
	
}
.titexa {
	font-size: 100%;
}

.decex{
	font-size: 1.5rem;
	margin: 2rem 0 1rem calc(var(--size) * 0.5);
	font-weight: 200;
}