@charset "utf-8";

/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

btn3333333333

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/



a.btn3 {
	display: flex;
    justify-content: space-between;
    align-items: center;
	text-align: center;
	text-decoration: none;
	width:200px;
	margin:0 auto 20px;
	padding: 1rem 2rem;
	font-weight: bold;
	background:#933133;
	color: #fff;

	position: relative;
	transition: 0.5s;
    border-radius:10px;
}

@media screen and (min-width: 992px),
print {
    a.btn3 {
	
	margin:0 auto 60px;
	
}
}

a.btn3::before {
	content: '';
	position: absolute;
	top: calc(50% - 2px);
	right: 1em;
	transform: translateY(calc(-50% - 2px)) rotate(45deg);
	width: 10px;
	height: 1px;
	background: #fff;
}
a.btn3::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 1em;
	transform: translateY(-50%);
	width: 20px;
	height: 1px;
	background-color: #fff;
}
a.btn3:hover {
	background: #d4eef7;
	color: #27acd9;
}

/*
++++++++++++++++++++++++++++++++++++++++

@media screen and (min-width: 992px),
print {
    
}

@media screen and (min-width: 768px) and (max-width:991px)
{
}

++++++++++++++++++++++++++++++++++++++++
*/