@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
}


/* add a thumb */
body::-webkit-scrollbar {
	width: 10px;
	height: 10px;
	background: rgba(0, 0, 0, 0.3);
	z-index: 99;
}

body::-webkit-scrollbar-thumb {
	background: rgba(250, 250, 250, 0.5);
	z-index: 100;
}

a {
	text-decoration: none;
}

.wrap {
	width: 100%;
	height: 100vh;
	position: relative;
}

.wrap p {
	position: absolute;
	top: 45%;
	right: 35%;
	transform: translate(-50%, -50%);
	font-size: 5rem;
	font-family: Georgia, 'Times New Roman', Times, serif;
	margin: 0;
	transition: all 1.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	transition-delay: 1s;
	opacity: 0;
	text-align: center;
	background-color: #666;
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	text-shadow: rgba(245, 245, 245, 0.5) 4px 6px 2px;
}

.wrap p.-text-active {
	transition-delay: 1s;
	opacity: 1;
}

.text {
	display: flex;
	justify-content: center;
	align-items: center;
}

.background-border {
	width: 100%;
	height: 100%;
	background-color: #fff;
	background-position: center;
	background-size: cover;
}

.-border {
	width: 100%;
	height: 100%;
	display: flex;
}

.-border-item {
	flex-grow: 1;
	background-color: #eee;
	transform: scaleX(1);
	transform-origin: right;
	transition: transform 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.-active .-border-item {
	transform: scaleX(0);
}

.-border-item:nth-child(1) {
	transition-delay: 0s;
}

.-border-item:nth-child(2) {
	transition-delay: 0.02s;
}

.-border-item:nth-child(3) {
	transition-delay: 0.04s;
}

.-border-item:nth-child(4) {
	transition-delay: 0.06s;
}

.-border-item:nth-child(5) {
	transition-delay: 0.08s;
}

.-border-item:nth-child(6) {
	transition-delay: 0.1s;
}

.-border-item:nth-child(7) {
	transition-delay: 0.12s;
}

.-border-item:nth-child(8) {
	transition-delay: 0.14s;
}

.-border-item:nth-child(9) {
	transition-delay: 0.16s;
}

.-border-item:nth-child(10) {
	transition-delay: 0.18s;
}

.-border-item:nth-child(11) {
	transition-delay: 0.2s;
}

.-border-item:nth-child(12) {
	transition-delay: 0.22s;
}

.-border-item:nth-child(13) {
	transition-delay: 0.24s;
}

.-border-item:nth-child(14) {
	transition-delay: 0.26s;
}

.-border-item:nth-child(15) {
	transition-delay: 0.28s;
}


/* card section */
section {
	margin: 0;
	padding: 0;
	min-width: 100%;
	background: #f7f7f7;
}

.box {
	margin: 0;
	padding: 3rem 0;
}

.container {
	position: relative;
	min-width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	background: #f7f7f7;
	margin: 0;
	padding: 0;
}

.container .card {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 272px;
	height: 356px;
	margin: 15px;
	overflow: hidden;
	box-shadow: 0px 5px 15px #999;
	border-radius: 8px;
}

.container .m1 {
	transition-delay: 0.2s;
}

.container .m2 {
	transition-delay: 0.4s;
}

.container .m3 {
	transition-delay: 0.6s;
}

.container .m4 {
	transition-delay: 0.8s;
}

.container .card .content {
	position: absolute;
	bottom : -100%;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10;
	flex-direction: column;
	backdrop-filter: blur(15px);
	box-shadow: 0 -10px 10px rgba(0,0,0,0.1);
	border: 1px solid rgba(255,255,255,0.2);
	transition: bottom 0.5s;
	transition-delay: 0.8s;
}

.container .card:hover .content {
	bottom: 0px;
	transition-delay: 0s;
}

.container .card .content .contentBx h3 {
	color: #777;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 500;
	font-size: 18px;
	text-align: center;
	margin: 20px 0 15px;
	line-height: 1.1em;
	transition: 0.5s;
	opacity: 0;
	transform: translateY(-20px);
	transition-delay: 0.6s;
}

.container .card:hover .content .contentBx h3 {
	opacity: 1;
	transform: translateY(0px);
}

.container .card .content .contentBx h3 span {
	font-size: 12px;
	font-weight: 300;
	text-transform: initial;
}

.container .card .content .sci {
	position: relative;
	bottom: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 36px;
}

.container .card .content .sci li {
	list-style: none;
	margin: 2rem 0 0 2rem;
	transform: translateY(40px);
	transition: 0.5s;
	opacity: 0;
	transition-delay: calc(0.2s * var(--i));
}

.container .card:hover .content .sci li {
	transform: translateY(0px);
	opacity: 1;
}

.container .card .content .sci li a {
	color: #999;
	font-size: 24px;
}

.container .card .content .sci li:hover {
	transform: scale(1.2);
	text-decoration: none;
	transition: 0.1s;
}

.container .card .content .sci li a:hover .fa-facebook {
	color: #0866ff;
}

.container .card .content .sci li a:hover .fa-x-twitter {
	color: #111;
}

.container .card .content .sci li a:hover .fa-instagram {
	color: #ff66ee;
}


.container .card .content .btn a.info {
	display: inline-block;
	text-decoration: none;
	padding: 7px 14px;
	background:transparent;
	color: #777;
	text-transform: uppercase;
	box-shadow: 0px 5px 15px rgba( 0.2, 0.2, 0.2, 0.3);
	border: 1px solid #333;
	border-radius: 4px;
	transform: translateY(40px);
	transition: 0.5s;
	opacity: 0;
}

.container .card:hover .content .btn a.info {
	transform: translateY(0px);
	opacity: 1;
	transition-delay: 0.1s;
}

.container .card .content .btn a.info:hover {
	background: #fff;
	color: rgb(228, 59, 250);
	border: 1px solid rgb(228, 59, 250);
	box-shadow: 0px 5px 15px rgb(228, 59, 250);
	transition: 0.1s;
	transition-delay: 0.1s;
}


/* footer */
.footer {
	min-width: 100%;
	background: #eee;
}

.footer_container {
	position: relative;
	min-width: 100%;
	background: #f7f7f7;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0;
	padding: 1rem;
}

.footer_container,
.footer_container .footer_content .footer_title1,
.footer_container .footer_content .footer_title2 {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.footer_logo {
	color: #000;
	font-size: 1.125rem;
	line-height: 1rem;
	font-weight: 700;
	text-shadow: 0px 5px 15px #333;
	margin: 0;
	padding: 0;
}

.footer_logo:hover {
	color: rgb(228, 59, 250);
	text-decoration: none;
}

.footer_logo span {
	color: rgb(228, 59, 250);
}

.footer_title1,
.footer_title2 {
	color: #000;
	font-size: 1.125rem;
	line-height: 1rem;
	letter-spacing: none;
	text-transform: uppercase;
	text-shadow: 0px 5px 15px #666;
	padding: 0 0 0 0.5rem;
}

.footer_links1,
.footer_links2 {
	display: flex;
	flex-direction: column;
	list-style: none;
	color: #333;
	row-gap: 0.1rem;
	margin-bottom: 5rem;
	padding: 0 0.5rem;
	transition-delay: 0.5s;
	text-shadow: 0px 5px 15px #999;
}

.footer_links2 li a {
	text-transform: uppercase;
}

.footer_link {
	line-height: 1rem;
	color: #000;
	text-transform: none;
}

.footer_link:hover {
	color: rgb(228, 59, 250);
	text-shadow: 0px 5px 15px rgb(228, 59, 250);
	text-decoration: none;
}

/*.footer_social {
	display: flex;
	column-gap: 1.2rem;
	padding: 0 0 0.5rem;
}

.footer_social-link i {
	display: inline-flex;
	color: #fff;
	background-color: #000;
	padding: 0.5rem;
	border-radius: 0.25rem;
	font-size: 1.2rem;
	box-shadow: 0px 5px 15px #333;
}

.footer_social-link:hover {
	text-decoration: none;
}

.footer_social-link:hover .fa-facebook {
	color: #fff;
	transform: scale(1.2);
	box-shadow: 0px 5px 15px #fff;
}

.footer_social-link:hover .fa-twitter {
	color: #43f7ee;
	transform: scale(1.2);
	box-shadow: 0px 5px 15px #43f7ee;
}

.footer_social-link:hover .fa-instagram {
	color:#f330a8;
	transform: scale(1.2);
	box-shadow: 0px 5px 15px rgb(228, 59, 250);
}*/

/* SNS link */
.footer_social {
	display: flex;
	column-gap: 1.2rem;
	padding: 0 0 0.5rem;
}

.footer_social-link img {
	display: inline-flex;
	max-width: 36px;
	max-height: 36px;
	color: #fff;
	background-color: #000;
	padding: 0.5rem;
	border-radius: 0.25rem;
	font-size: 1.2rem;
	box-shadow: 0px 5px 15px #333;
}

.footer_social-link:hover .line {
	transform: scale(1.2);
	box-shadow: 0px 5px 15px rgb(10, 254, 82);
}

.footer_social-link:hover .x {
	transform: scale(1.2);
	box-shadow: 0px 5px 15px rgb(67, 247, 238);
}

.footer_social-link:hover .threads {
	transform: scale(1.2);
	box-shadow: 0px 5px 15px rgb(254, 243, 255);
}

.footer_social-link:hover .instagram {
	transform: scale(1.2);
	box-shadow: 0px 5px 15px rgb(228, 59, 250);
}

.foot {
	width: 100%;
	height: 8rem;
	margin:0;
	padding: 0;
	background: #fff;
}

.foot .text p {
	font-size: 0.75rem;
	line-height: 0.5rem;
	color: #000;
	font-weight: 300;
	padding: 0.5rem 0 5rem;
	text-align: center;
	text-transform: none;
	text-shadow: 0px 5px 15px #999;
}


/* scrollup */
.scrollup {
	position: fixed;
	right: 1rem; bottom: 8%;
	display: flex;
	background-color: #f7f7f7;
	border-radius: 0.25rem;
	padding: 0.25rem;
	opacity: 0.9;
	z-index: 10;
	transition: 0.4s;
	transition-delay: 2s;
	box-shadow: 0px 5px 15px #333;
}

.scrollup_icon {
	color: #000;
	font-size: 1.2rem;
}

.scrollup:hover {
	text-decoration: none;
	opacity: 1;
	box-shadow: 0px 5px 15px rgb(228, 59, 250);
}

.scrollup_icon:hover {
	color: rgb(228, 59, 250);
}


/* media queries*/
@media screen and (max-width: 999px) {
	body::-webkit-scrollbar {
		display: none;
	}

	.wrap p {
		font-size: 3.5rem;
	}

	.scrollup {
		display: none;
	}
}


@media screen and (max-width: 768px) {
	.wrap p {
		font-size: 3rem;
	}
}


@media screen and (max-width: 600px) {
	.wrap p {
		font-size: 2rem;
	}

	.footer_logo {
		font-size: 0.75rem;
		line-height: 0.6rem;
	}
	.footer_title1,
	.footer_title2 {
		font-size: 0.75rem;
		line-height: 0.6rem;
	}
	.footer_links1,
	.footer_links2 {
		font-size: 0.5rem;
		line-height: 1rem;
		row-gap: 0.05rem;
	}
	.footer_social {
		display: flex;
		flex-direction: column;
		row-gap: 1rem;
	}
	.foot .text p {
		font-size: 0.25rem;
		line-height: 0.2rem;
	}
}


@media screen and (max-width: 450px) {
	.container .card {
		margin: 15px;
	}

	.footer_social {
		display: flex;
		flex-direction: row;
		row-gap: 1.2rem;
		margin-bottom: 1rem;
	}
}


@media screen and (max-width: 400px) {
	.wrap p {
		font-size: 1.5rem;
	}
}
