@charset "utf-8";
/* CSS Document */

@import url('common.css');
@import url('normalize.css');


/*bootstrap styles*/
@import url("bootstrap.css");
/*bootstrap select*/
@import url("bootstrap-select5.css");
/*bootstrap slider*/
@import url("bootstrap-slider.min.css");
/*AOS*/
@import url("aos.css");
/*Swiper*/
@import url("swiper.css");


body{
	background-color: #fafafa;
}

.wrap{
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
}
.title-txt-wrap{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
p, h1, h2, h3, span ul, ol, li, dl, dt, dd, form, address {
  list-style-image: none;
  list-style-position: outside;
  list-style-type: none;
  border: 0px;
  margin: 0px;
  padding: 0px;
}


/* header */
header{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80px;
    border-bottom: 1px solid #e9ecef;
	background-color: #0469FF;
}
header .wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header h1{
    width: 224px;
    height: 64px;
    margin: 0;
    background: url(../images/webviewer_logo.png) no-repeat 0 0;
}
header h1 a {
    display: block;
    width: 100%;
    height: 100%;
}
header nav{
    display: flex;
    gap: 38px;
}
header nav a{
	color: #fff;
    font-size: 18px;
    font-weight: 600;
	transition: all 0.3s;
}
header nav a:hover{
	font-weight: 800;
}

/* experience */
.experience{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 20px 0 120px;
	background-color: #0469FF;
	overflow: hidden;
}
.experience::before{
	content: 'WEBVIEWER';
	display: block;
	position: absolute;
	bottom: -29px;
	right: -284px;
	color: rgba(255, 255, 255, 0.2);
	font-size: 200px;
	font-weight: 800;
	line-height: 1;
}
.experience .logo img{
	width: 246px;
	margin-left: 26px;
	margin-bottom: 120px;
}
.experience .title-txt-wrap h3{
	margin: 0;
	margin-bottom: 14px;
	color: #fff;
	font-size: 48px;
	font-weight: 600;
}
.experience .title-txt-wrap p{
	margin-bottom: 60px;
	color: #fafafa;
	font-size: 20px;
}
.experience .sample-wrap{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px 0;
	padding: 0;
}
.experience .sample-wrap li{
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: calc(100% / 3 );
}
.experience .sample-wrap li a{
	display: block;
	border-radius: 10px;
	border: 1px solid #eee;
	overflow: hidden;
	transition: all 0.3s;
}
.experience .sample-wrap li a:hover{
	transform: translateY(-5px);
}
.experience .sample-wrap li a img{
	transition: all 0.3s;
}
.experience .sample-wrap li a:hover img{
	filter: brightness(0.5);
}
.experience .sample-wrap li .btn-wrap{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.experience .sample-wrap li .btn-wrap p{
	margin: 30px 0 20px;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	line-height: 0.8;
}
.experience .sample-wrap li .btn-wrap p span{
	font-size: 12px;
}
.experience .sample-wrap li .btn-wrap button{
	width: 120px;
	height: 36px;
	border-radius: 50px;
	background-color: #fff;
	color: #111;
	font-size: 14px;
	transition: all 0.3s;
}
.experience .sample-wrap li a:hover .btn-wrap button{
	background-color: #0469ff;
	color: #fff;
}



/* system-requirements */
.system-requirements{
	padding: 146px 0 120px;
}
.system-requirements .title-btn-wrap{
	text-align: center;
}
.system-requirements .title-btn-wrap h3{
	margin-bottom: 14px;
	font-size: 48px;
	font-weight: 700;
}
.system-requirements .title-btn-wrap p{
	margin-bottom: 40px;
	color: #656671;
	font-size: 20px;
	font-weight: 600;
}
.system-requirements  .rm-card-wrap{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	padding: 0;
}
.system-requirements  .rm-card-wrap li{
	width: 446px;
	height: 176px;
}
.system-requirements  .rm-card-wrap li p{
	margin: 0;
	text-align: center;
}
.system-requirements .rm-card-wrap .title{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 48px;
	background-color: #37383c;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
}
.system-requirements .rm-card-wrap .list{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	height: 128px;
	border: 1px solid #37383C;
	color: #4a4a4a;
	font-size: 14px;
}


/* footer */
footer {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 20px 0;
	background-color: #37383C;
	z-index: 6;
}

footer .wrap {
	display: flex;
	justify-content: space-between;
	padding: 0;
}

footer .footer-left {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

footer .footer-left .ci {
	display: flex;
	align-items: flex-start;
	width: 70px;
}

footer .footer-left .ci img {
	width: 100%;
}

footer .footer-left address .inner {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-bottom: 2px;
	color: #fff;
	font-size: 12px;
	font-weight: 300;
	font-style: normal;
}

footer .footer-left address .inner .line {
	width: 1px;
	height: 8px;
	background-color: #fff;
}

footer .footer-left address .copy {
	color: #808080;
	font-size: 10px;
	font-weight: 300;
	font-style: normal;
}

footer .footer-right {
	display: flex;
	align-items: center;
	gap: 8px;
}

footer .footer-right .sns-wrap {
	display: flex;
	align-items: center;
	gap: 2px;
}

footer .footer-right .sns-wrap a {
	width: 24px;
	height: 24px;
}

footer .footer-right .sns-wrap a img {
	width: 100%;
	filter: grayscale(1);
	transition: 0.3s;
}

footer .footer-right .sns-wrap a:hover img {
	filter: none;
}

footer .footer-right .control-box{
	position: relative;
}
footer .footer-right .control-box::after{
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	right: 6px;
	transform: translateY(-50%);
	width: 12px;
	height: 12px;
	background: url(../images/ico_arrow_white\ 1.png)no-repeat center;
}
footer .footer-right .form-control {
	position: relative;
	width: 160px;
	height: 22px;
	padding: 0 6px;
	border-radius: 0;
	border: none;
	background-color: rgba(255, 255, 255, 0.2);
	color: #fff;
	font-size: 14px;
	font-family: "Pretendard", sans-serif;
	cursor: pointer;
}
footer .footer-right .form-control:focus{
	box-shadow: unset;
}

footer .footer-right .form-control option {
	border-radius: 0px;
	background-color: #202020;
	cursor: pointer;
}


@media (max-width: 1200px){
	.experience .logo.wrap{
		display: flex;
		justify-content: center;
		padding-top: 80px;
	}
	.experience .logo img{
		margin-left: 0;
		margin-bottom: 60px;
	}
	.experience .sample-wrap li{
		width: calc(100% / 2 - 60px);
	}
	.system-requirements .rm-card-wrap li{
		width: calc(100% / 2 - 60px);
	}
	footer{
		padding: 20px 0 14px;
	}
	footer .wrap{
		flex-direction: column-reverse;
		align-items: center;
		gap: 12px;
	}
	footer .footer-left{
		flex-direction: column;
		align-items: center;
	}
	footer .footer-left address{
		text-align: center;
	}
	footer .footer-left address .copy{
		padding-top: 2px;
	}
	footer .footer-right{
		flex-direction: column;
	}
}
@media (max-width: 1012px){
	.wrap{
		padding-left: 40px !important;
		padding-right: 40px !important;
		padding-top: 120px;
	}
	.experience .sample-wrap li,
	.system-requirements .rm-card-wrap li{
		width: 100%;
	}
	.experience .title-txt-wrap h3,
	.system-requirements .title-btn-wrap h3{
		font-size: 34px;
	}
	.experience .title-txt-wrap p,
	.system-requirements .title-btn-wrap p{
		font-size: 18px;
	}
}
@media(max-width: 768px){
	.experience::before{
		bottom: -15px;
		right: -263px;
		font-size: 100px;
	}
	.experience .logo.wrap{
		padding-top: 60px;
	}
	footer .footer-left address .inner{
		flex-wrap: wrap;
		justify-content: center;
		gap: 6px;
	}
}