@charset "utf-8";
/* CSS Document */

a.btn {
    position: relative;
    margin: 1em auto;
    padding: 22px 40px 22px 25px;
    color: #FFF;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    background: #9f2d2d;
    border-radius: 8px;
    border-bottom: solid 5px #701b1b;
    font-size: 2rem;
    text-decoration: none;
    display: inline-block;
    min-width: 270px;
    text-align: center;
}
a.btn.green {
    background: #2e6366;
    border-bottom: solid 5px #193f41;
}
a.btn.yellow {
    background: #e29a3e;
    border-bottom: solid 5px #9d6b2a;
}
a.btn.blue {
    background: #1d4580;
    border-bottom: solid 5px #0e2343;
}
a.btn:hover {
    border-bottom: solid 2px;
    transform: translateY(3px);
}
a.btn:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #FFF;
    border-right: 3px solid #FFF;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 46%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}

@media all and (min-width: 768px) {
	.flex_cl {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.flex_cl.cl_2 > section, .flex_cl.cl_2 > li {
		width: 47%;
	}
	.flex_cl.cl_3 > section, .flex_cl.cl_3 > li {
		width: 31%;
		margin-bottom: 8%;
	}
	.flex_cl.cl_4 > section, .flex_cl.cl_4 > li {
		width: 23%;
	}
}