@charset "utf-8";

.c-gridtitle {
	margin: 0;
	font-size: 24px;
	font-weight: bold;
}

.c-gridtext {
	margin: 20px 0 30px;
	font-size: 16px;
}

.c-cataloguebtn {
	margin: 0;
	text-align: center;
}
.c-cataloguebtn a {
	padding: 14px 11.4% 14px 7%;
	background-color: #FFF;
	border: 3px solid #014877;
	border-radius: 35px;
	color: #014877;
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: all .3s ease-out;
}
.c-cataloguebtn a:hover {
	background-color: #014877;
	color: #FFF;
}
.c-cataloguebtn a::before {
	content: '';
	width: 8px;
	height: 8px;
	border-bottom: 3px solid #014877;
	border-right: 3px solid #014877;
	position: absolute;
	top: 50%;
	right: 11.4%;
	transform: translateY(-50%) rotate(-45deg);
	transition: all .3s ease-out;
}
.c-cataloguebtn a:hover::before {
	border-bottom: 3px solid #FFF;
	border-right: 3px solid #FFF;
}

@media screen and (max-width: 600px) {
	.c-gridtext {
		margin: 10px 0 30px;
	}

	.c-cataloguebtn a {
		padding: 14px 36px 14px 20px;
	}
	.c-cataloguebtn a::before {
		right: 20px;
	}
}
