/* 학습지원센터 (원격지원)  */
section {
	min-height: calc(100vh - 140px);
}
section.call-center {
	flex: 1;
	position: relative;
	display: flex;
}
section.call-center .container {
	width: 100%;
	/* max-width: 960px;
    padding: 40px; */
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	/* align-items: center; */
}

.call-center .main-box {
	width: 100%;
	background-color: #F9F9F9;
	color: #2C2C2C;
	padding: 37px 45px;
	border-radius: 10px;
	position: relative;
	margin: 10px 0;
}

.call-center .main-box.blue {
	background-color: #1CB3E2;
	color: #fff;
	margin-top: 50px;
}

.call-center .main-box.white {
	background-color: #fff;
}

.call-center .main-box.center {
	text-align: center;
}

.call-center .main-box .title {
	text-align: left;
	font-size: 26px;
	font-family: NanumSquareEB;
	margin-bottom: 24px;
}

.call-center .main-box .title.normal {
	font-size: 22px;
    display: flex;
    align-items: center;
}
.call-center .main-box .title.normal > img {
	width: 23px;
	height: 23px;
	margin-right: 10px;
}
.call-center .main-box .title.normal > .work-time {
	font-size: 16px;
	font-weight: normal;
	color: #8D8D8D;
	margin-left: auto;
}

.call-center .main-box .desc {
	font-size: 16px;
	font-weight: normal;
	line-height: 26px;
    max-width: 600px;
    word-break: keep-all;
}

.call-center .main-box .call-man {
	position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 110%;
    background-image: url('/resources/assets/img/call-center/call-man-33249af340f1bd475c4af4a6a877f882.svg');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: auto 100%;
}

.call-center .main-box .white-box {
	position: absolute;
    right: 0;
    bottom: 0;
    width: 100px;
    height: 100%;
    background-color: #fff;
}

.call-center .main-box > h5 {
	font-size: 18px;
	font-weight: normal;
	padding: 10px 0;
}

.call-center .main-box > .work-time {
	display: none;
}

.call-center .main-box .call-button {
	width: 280px;
}

.call-center .main-box .process-list {
	display:flex;
}


.call-center .main-box div.process  {
		text-align: center;
	}
	
.call-center .main-box .next-process  {
		padding-left: 30px;
    	padding-right: 30px;
	}
	
.call-center .main-box div.process img  {
		padding-top: 20px;
	}

.call-center .main-box div.process > p {
	font-size: 16px;
	line-height: 24px;
	color: #2C2C2C;
	text-align: center;
    word-break: keep-all;
}


@media (max-width: 960px) {
	.call-center .main-box .call-man,
	.call-center .main-box .white-box,
	.call-center .main-box .title.normal > .work-time,
	.call-center .main-box .process-list .next-process {
		display: none;
	}
	
	.call-center .main-box .process-list {
		display:block
	}
	
	.call-center .main-box > .work-time {
		display: block;
	}
	
	.call-center .main-box .process-list {
/* 		display:block */
		display: grid;
	    grid-template-columns: repeat(2, 1fr);
	    justify-items: center;
	}
	
	.call-center .main-box .process-list div {
		margin: 10px;
	}
	
	.call-center .main-box .process img {
		width: 80%;
	}
}

@media (max-width: 600px) {
	section.call-center .container {
		padding: 20px;
	}
	.call-center .main-box {
		padding: 30px;
	}
	.call-center .main-box.blue {
		margin-top: 20px;
	}
	.call-center .main-box .title,
	.call-center .main-box .title.normal {
		font-size: 17px;
	}
	.call-center .main-box .desc,
	.call-center .main-box > h5 {
		font-size: 13px;
	}
	.call-center .main-box .process-list {
		display:grid

		grid-template-columns: repeat(2, 1fr);
	    justify-items: center; 
	}
	.call-center .main-box .process-list div {
		font-size: 14px;
	}
	
	.call-center .main-box div.process > p {
		font-size: 13px;
	}
}