@charset "utf-8";
/* CSS Document */

body{
	margin: 0;
}

.wrapper{
	max-width: 1000px;
	width: 100%;
	margin: 0 auto 3%;
	font-family: helvetica-lt-pro, sans-serif;
	font-weight: 700;
	font-style: normal;
}

.wrapper img{
	display: block;
	line-height: 0;
}

.flex{
	margin: 5% auto;
	width: 90%;
}

.flex ul{
	padding: 0;
	display: flex;
	column-gap: 10px;
	list-style: none;
	margin-bottom: 5%;
}

.flex ul .credit{
	margin: 3% auto;
}

.flex ul a{
	display: block;
	color: #000;
	text-decoration: none;
	font-size: 13px;
	border-bottom: solid 1px #ccc;
	padding-bottom: 2%;
	position: relative;
	margin-bottom: 4%;
}

.flex ul a:after{
	content: 'CHECK';
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	display: inline-block;
	font-size: 12px;
	background-image: url("../images/arrow.svg");
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 14px auto;
	padding-right: 20px;
}

.btn{
	width: 90%;
	margin: 10% auto 5%;
}

.btn ul{
	padding: 0;
	list-style: none;
	display: grid;
	column-gap: 10px;
	grid-template-columns: 1fr 1fr 1fr;
}

.btn ul li:first-child{
	background-color: #ff6699;
}

.btn ul li:nth-child(2){
	background-color: #183961;
}

.btn ul li:last-child{
	background-color: #ffc000;
}

.btn ul li a{
	display: block;
	color: #fff;
	text-decoration: none;
	text-align: center;
	line-height: 3;
	font-size: 15px;
	position: relative;
}

.btn ul li a:after{
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 15px;
	width: 5px;
	height: 5px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	content: "";
	transform: translateY(-50%) rotate(45deg);
}

@media(min-width:750px){
.flex{
	margin: 5% auto;
	width: 100%;
	display: flex;
	column-gap: 20px;
}
	
.flex ul{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}
	
.flex ul .kids{
	margin-top: 12.5%;
}
	
.flex ul li:first-child{
	margin-bottom: 10%;
}
	
.flex ul .credit{
	margin: 5% auto 0;
}
	
.btn{
	width: 100%;
	margin: 5% auto 5%;
}
	
.btn ul li a{
	line-height: 4;
	font-size: 17px;
}
}



