body {
  margin: 0;
  padding: 0;
  color: #000;
  font-size: 16px;
  line-height: 1.6em;
}

/* LAYOUT */
section {
  padding: 100px 0;
	border-top: 1px solid #eee;
  /* height: 100vh; */
}

/* ======== SECTION : VISUAL
============================ */
.visual {
  padding-top: 80px;
  /* height: calc(100vh - 80px); */
  position: relative;
}
.visual > .inner {
  height: 100%;
}
.visual-heading {
  /* border: 1px solid #000; */
  margin-bottom: 300px;
}
.visual-logo {
  width: 90px;
}
.visual-logo img {
  width: inherit;
  object-fit: cover;
}

.visual-heading h2 {
  text-transform: uppercase;
  margin: 25px 0 35px;
}
.visual-heading h2 span {
  color: #bea958;
}
.visual-heading h3 {
  color: #222;
  font-weight: 600;
}

.visual-img {
  margin-left: auto;
  position: relative;
  z-index: 1;
}

.goto-download {
  border-top: 1px solid #f2f2f2;
  border-bottom: 1px solid #f2f2f2;
  background-color: rgba(169, 147, 65, 0.1);
  box-shadow: var(--shadow);
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 80px 138px;
  /* z-index: -1; */
}
.goto-download h4 {
  color: #222;
  margin-bottom: 20px;
}
.goto-download p {
  color: #666;
  font-weight: 500;
}
.download-btns {
  margin-top: 25px;
}
.download-btns a {
  display: inline-block;
  width: 178px;
}
.download-btns a:first-child {
  margin-right: 10px;
}
.download-btns a img {
  display: block;
  width: 100%;
  object-fit: cover;
}

/* ========= Info Section 
======================== */
.info {
  overflow: hidden;
  position: relative;
  height: 100vh;
  min-height: var(--vh);
}
.info .inner {
  height: 100%;
}
.info-imgs-wrap {
  position: absolute;
  top: 10%;
  left: -100px;
}
.info-imgs li {
  margin-right: 30px;
}
.info-imgs li:last-child {
  margin-right: 0;
}
.shadow-img {
  width: 100%;
  display: block;
  box-shadow: 0 10px 22px 5px rgba(0, 0, 0, 0.1);
}
.info-imgs-wrap .img-item {
  margin-left: -30px;
}
.info .section-heading {
  margin-right: 100px;
}
.section-heading h4 {
  color: #862446;
  font-size: 1.125em;
}
.section-heading h3 {
  font-weight: 400;
  margin: 10px 0 28px;
}
.section-heading p {
  color: #333;
  font-weight: 500;
  font-size: 1.063em;
}

/* ========= Rsv Section
======================== */
.rsv .section-heading {
  margin-top: 100px;
  position: relative;
}
.calendar-img {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: absolute;
  bottom: 100px;
  right: -120px;
}
.calendar-img img {
  display: block;
}
.calendar-img::after {
  content: "15";
  color: #fff;
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: var(--violet);
  z-index: 10;
  bottom: 89px;
  text-align: center;
  border-radius: 50%;
  line-height: 40px;
  font-size: 1.063em;
  left: 92px;
  box-shadow: 0 5px 15px 4px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
.calendar-img:hover::after {
  transform: translateY(-5px);
}

/* ========= Live & Result Section 
================================ */
.live,
.result {
  text-align: center;
  /* position: relative; */
}
.bg-btm {
  background-color: rgba(158, 42, 82, 3%);
  height: 300px;
  margin-top: -230px;
}
.result {
	border-top-color: transparent;
}
.result .section-img {
  margin-top: 100px;
  padding: 0 100px;
}
.result .section-img .img-item {
	width: 400px;
}
.result .section-img .center {
  margin: 0 30px;
	width: 420px;
}


/* ========= MRA Section 
======================== */
.mra .inner {
  padding: 0 80px;
}
.mra .section-img {
  position: relative;
}
.mra-modal {
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 22px 5px rgba(0, 0, 0, 0.1);
  /* backdrop-filter: blur(10px); */
  border-radius: 30px;
  padding: 30px;
  text-align: center;
  position: absolute;
  right: -280px;
  bottom: 200px;
  width: 330px;
}
.mra-modal img {
  margin-top: 10px;
}
.section-heading .notice {
  color: orangered;
  margin-top: 20px;
}

/* ======================= 노트북 작은 해상도 ~ 모바일
=================================================== */
@media screen and (max-width: 1024px) {
  /* Heading Font Size */
  h2 {
    font-size: 2em;
  }
  h3 {
    font-size: 1.5em;
  }
  h4 {
    font-size: 1.2em;
  }

  /* LAYOUT */
	section {
		padding: 70px 0;
		overflow: hidden;
	}
  .section-heading {
		text-align: center;
		margin: auto;
	}
	.img-item {
		width: 100%;
		/* max-width: 420px; */
		margin: auto;
		text-align: center;
	}
	.img-item img {
    width: 420px;
  }


  /* ======== SECTION : VISUAL
	============================ */
  .visual {
    /* height: 100vh; */
    padding-top: 100px;
    overflow: hidden;
  }
  .visual > .inner {
    /* Flex 줄바꿈 */
    -webkit-box-lines: multiple;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .visual-heading {
    margin-bottom: 0;
    text-align: center;
    margin: auto;
  }
  .visual-logo {
    width: 56px;
    margin: auto;
  }
  .visual-heading h2 {
    margin: 10px;
    font-size: 1.5em;
  }
  .goto-download {
    background-color: #fff;
    padding: 30px 10px;
    z-index: 1;
    text-align: center;
  }
  .download-btns {
    -webkit-box-pack: center; 
    -moz-box-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  /* ========= Info Section 
	======================== */
  .info {
		-webkit-box-orient: vertical;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		height: auto;
  }
	.info .inner {
    /* 아이템 정렬 순서 (Android 2.1~4.3 이하 지원 X) */
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
    order: 1;
		margin-bottom: 30px;
  }
  .info-imgs-wrap {
    position: static;
    /* 아이템 정렬 순서 (Android 2.1~4.3 이하 지원 X) */
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .info-imgs {
    display: none;
  }
	.info-imgs-wrap .img-item {
		margin-left: auto;
	}
	.info .section-heading {
		margin-right: auto;
	}
	.section-heading h3 {
		margin: 10px 0;
	}

	/* ========= Rsv Section
	======================== */
	.rsv .inner {
		display: block;
	}
	.rsv .section-heading {
		margin-top: 0;
	}
	.calendar-img {
		display: none;
	}
	.rsv .img-item:nth-child(1) {
		display: none;
	}

	/* ========= Live & Result Section
	======================== */
  section.live {
    padding-bottom: 0;
  }
	.result .section-img {
		margin-top: 50px;
		padding: 0;
		display: block;
	}
	.result .section-img .img-item img {
		max-width: 320px;
	}
	.result .section-img .img-item {
		width: 100%;
	}
	.result .section-img .img-item:nth-child(1),
	.result .section-img .center {
		display: none;
	}
	
	/* ========= MRA Section 
	======================== */
	.mra .inner {
		-webkit-box-orient: vertical;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		padding: 0 16px;
	}
	.mra .section-img {
		/* 아이템 정렬 순서 (Android 2.1~4.3 이하 지원 X) */
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    order: 2;
	}
	.mra-modal {
		right: 0;
		bottom: 100px;
		left: 50%;
		transform: translate(-50%, 0);
		background-color: #fff;
	}

	/* ========= NCEP Section 
	======================== */
	.ncep .inner {
		-webkit-box-orient: vertical;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.ncep .img-item:nth-child(2) {
		display: none;
	}
}