svg {
	pointer-events: none;
}

figcaption {
	margin: 0 auto 0 auto;
	width: 95%;
	text-align: center;
}

h2.mac {
	margin-top: 80px;
    }

.drawings {
	position: relative;
	max-height: 600px;
}

.illustration {
	position: absolute;
	top: 50%;
	left: 50%;
	max-height: 100%;
	max-width: 100%;
	opacity: 0;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

.show {
	opacity: 1;
}

.hide {
	opacity: 0;
}

.line-drawing,
.illustration {
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.line-drawing path {
	fill: none;
	stroke: #993333;
	stroke-width: 3;
}

path.line-round {
	stroke-linecap: round;
}

path.stroke-medium {
	stroke-width: 2;
}

path.stroke-thin {
	stroke-width: 1;
}

@media screen and (max-width: 35em) {

    .drawings {
	top: 200px;
    }

    figure {
    margin-top: -375px;
    margin-bottom: 10px;
    }
}