@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;700;900&display=swap');

* {
	margin: 0;
	padding: 0;
	border: none;
	underline: none;
	outline: none;
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	}

html, body {
	font-family: "Noto Sans KR";
	}

#background {
	width: 100%;
	height: 100%;
	position: fixed;
	background: url(background.jpg);
	background-size: cover;
	background-position: center;
	top: 0; left: 0;
	}

#background-overlay {
	width: 100%;
	height: 100%;
	position: fixed;
	background: #eee;
	opacity: 0.8;
	}

#container {
	width: 100%;
	}

#header {
	width: 90%;
	max-width: 1728px;
	position: absolute;
	top: 40px; left: 5%;
	}

#call {
	width: 45px;
	height: 45px;
	position: relative;
	background: rgba(109, 166, 46, 0.07) url(call-icon.svg);
	border: 2px solid #6da62e;
	border-radius: 99px;
	display: none;
	float: left;
	z-index: 2;
	}

#wip {
	background: #6da62e;
	font-size: 13px;
	color: #fff;
	border-radius: 99px;
	float: right;
	padding: 13px 20px;
	}

#container .holder {
	width: 820px;
	position: relative;
	text-align: center;
	padding: 200px 0;
	margin: 0 auto;
	}

#logo {
	width: 200px;
	height: 200px;
	position: relative;
	margin: 0 auto;
	}

#saeda {
	width: 200px;
	height: 200px;
	position: relative;
	background: #fff url(saeda-logo.svg);
	background-size: 60%;
	background-position: center 43%;
	background-repeat: no-repeat;
	border-radius: 99px;
	box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.16);
	z-index: 2;
	}

#pulse {
	width: 180%;
	height: 180%;
	position: absolute;
	background: #a2ce72;
	border: 1px solid #85bf46;
	box-sizing: border-box;
	border-radius: 199px;
	z-index: 1;
	opacity: 1;
	margin: -40% -40%;
	top: 0;

	-webkit-animation: pulse-ring 2.6s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
	-moz-animation: pulse-ring 2.6s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
	-o-animation: pulse-ring 2.6s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
	animation: pulse-ring 2.6s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;

	-webkit-transition: opacity 0.4s ease;
	-moz-transition: opacity 0.4s ease;
	-ms-transition: opacity 0.4s ease;
	-o-transition: opacity 0.4s ease;
	transition: opacity 0.4s ease;
	}

#pulse.fade-out {
	opacity: 0;
	animation: none;
	}

@-webkit-keyframes pulse-ring {
	0% {
		-webkit-transform: scale(0.33);
		}
	80%, 100% {
		opacity: 0;
		}
	}

@-moz-keyframes pulse-ring {
	0% {
		-moz-transform: scale(0.33);
		}
	80%, 100% {
		opacity: 0;
		}
	}

@-o-keyframes pulse-ring {
	0% {
		-o-transform: scale(0.33);
		}
	80%, 100% {
		opacity: 0;
		}
	}

@keyframes pulse-ring {
	0% {
		transform: scale(0.33);
		}
	80%, 100% {
		opacity: 0;
		}
	}

h1 {
	font-size: 52px;
	letter-spacing: -1px;
	color: #3d2813;
	margin-top: 30px;
	}

h2 {
	font-size: 26px;
	letter-spacing: -0.5px;
	color: #3d2813;
	margin-top: 12px;
	}

h2:after {
	width: 40px;
	height: 4px;
	position: relative;
	background: #6da62e;
	border-radius: 4px;
	content: "";
	display: block;
	margin: 34px auto;
	}

#container p {
	font-size: 17px;
	color: #333;
	line-height: 200%;
	margin-bottom: 40px;
	}

#container p strong, #container p a {
	font-weight: 400;
	color: #6da62e;
	}

#container span {
	font-size: 14px;
	color: #555;
	}

.button {
	position: relative;
	display: table;
	margin: 0 auto;
	}

#container .button p {
	position: relative;
	background: #6da62e;
	font-size: 18px;
	color: #fff;
	border-radius: 99px;
	box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.16);
	display: table;
	cursor: pointer;
	padding: 13px 26px 19px 74px;

	transition: background .5s ease;
	}

#container .button:hover p {
	background: #5d9321;
	}

.button .icon {
	width: 55px;
	height: 55px;
	position: absolute;
	background-color: #82cc31;
	background-image: url(mail-icon.svg);
	border-radius: 99px;
	z-index: 2;
	top: 6px; left: 6px;

	transition: background-color .5s ease;
	}

#container .button:hover .icon {
	background-color: #78be2a;
	}

#footer {
	margin-top: 200px;
	}

#footer p {
	font-size: 15px;
	color: #444;
	}

@media screen and (max-width: 1330px) {
	#container .holder {
		width: 750px;
		}

	h1 {
		font-size: 48px;
		}
	}

@media screen and (max-width: 1000px) {
	#container .holder {
		width: 86%;
		padding: 170px 0;
		}

	#container p {
		font-size: 16px;
		line-height: 180%;
		}

	.button .icon {
		width: 52px;
		height: 52px;
		top: 5px;
		}

	#container .button p {
		font-size: 17px;
		}

	#footer {
		margin-top: 120px;
		}
	}

@media screen and (max-width: 850px) {
	#container .holder {
		padding: 140px 0 60px 0;
		}

	#header {
		width: 86%;
		top: 30px; left: 7%;
		}

	#call {
		display: block;
		}

	#wip {
		font-size: 12px;
		margin-top: 5px;
		}

	h1 {
		font-size: 44px;
		margin-top: 20px;
		}

	h2 {
		font-size: 24px;
		}

	#container p {
		text-align: left;
		}

	.button {
		margin: 0;
		}

	#footer {
		margin-top: 40px;
		}

	#footer p {
		font-size: 13px;
		}
	}