@charset "utf-8";

#wrap.main {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: url(/intro/images/main/intro-bg.png) no-repeat center / cover;
}
.layout {
  position: relative;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}

.intro__wrap {
  text-align: center;
  padding: 6rem 0;
}
.intro__title {
  display: inline-block;
  position: relative;
  margin-bottom: 9rem;
}
.intro__title::before {
  position: absolute;
  top: -6.4rem;
  right: -5rem;
  width: 29.6rem;
  height: 34rem;
  background: url(/intro/images/main/tit_before.png) no-repeat center / contain;
  pointer-events: none;
  content: "";
}

.intro__top {
  display: flex;
  margin-bottom: 2.8rem;
}
.intro__top-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: calc(50% - 1.5rem);
  padding: 2.2rem 2.4rem 1.8rem;
  background-color: #656565;
  text-align: center;
}
.intro__top-tab:first-child {
  margin-right: 3rem;
  background-color: #292929;
}
.intro__top-tab::before {
  position: absolute;
  top: 50%;
  right: 4rem;
  transform: translateY(-50%);
  font-family: "xeicon";
  color: #fff;
  content: "\e907";
}
.intro__top-tab p {
  font-family: "GmarketSans";
  font-size: 2.4rem;
  font-weight: 400;
  color: #fff !important;
  line-height: 1.24;
}
.intro__top-tab strong {
  font-family: "GmarketSans";
  font-weight: 500;
  color: #fff !important;
}

.intro__mid {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 6rem;
}
.intro__mid-tab {
  display: flex;
  flex-direction: column;
  flex: 1 0 0;
  margin-right: 2.4rem;
  font-family: "GmarketSans";
  text-align: center;
}
.intro__mid-tab:last-child {
  margin-right: 0;
}
.intro__mid-title {
  padding: 2rem 0 1.4rem;
  border-radius: 0 3rem 0 0;
  background-color: #eead00;
  font-size: 2.3rem;
  font-weight: 500;
  color: #fff;
  line-height: 2.6rem;
}
.intro__mid-title.color {
	background: #004da2;
}
.intro__mid-con {
	display: flex;
    flex-direction: column;
    justify-content: center;
  flex-grow: 1;
  position: relative;
  padding: 4rem 1.4rem 7.6rem;
  border-radius: 0 0 0 3rem;
  background-color: rgba(0, 0, 0, 0.4);
  font-size: 2.3rem;
  font-weight: 500;
  color: #fff;
  line-height: 2.8rem;
  transition: 0.24s;
}
.intro__mid-con::before {
  position: absolute;
  bottom: 2.4rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  transition: 0.24s;
  content: "바로가기";
}
.intro__mid-tab:hover .intro__mid-con {
  background-color: rgba(255, 255, 255, 0.85);
  color: #292929;
}
.intro__mid-tab:hover .intro__desc {
  color: #292929;
}
.intro__mid-tab:hover .intro__mid-con::before {
  color: #c89100;
}
.intro__btm {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.intro__btm-tab {
  width: 50%;
}

@media (max-height: 800px) {
  #wrap.main {
    padding: 16rem 0;
  }
}

@media (max-width: 1180px) {
  .layout {
    padding: 0 2.4rem;
  }
}

@media (max-width: 940px) {
  .intro__top-tab {
    padding-right: 8rem;
  }
}

@media (max-width: 840px) {
  .intro__mid {
    margin-bottom: 3rem;
  }
}

@media (max-width: 640px) {
  .intro__title::before {
    display: none;
  }
  #wrap.main {
    padding: 8rem 0 10rem;
  }
  .intro__top {
    flex-wrap: wrap;
    margin-bottom: 1.4rem;
  }
  .intro__top-tab {
    width: 100%;
    margin-bottom: 1.4rem;
  }
  .intro__top-tab:first-child {
    margin-right: 0;
  }
  .intro__btm-tab {
    width: 100%;
  }
  .intro__mid-tab {
	width: 100%;
	margin-bottom: 3rem;
	flex: 1 0 auto;
  }
}

.intro__desc {
	color: #fff;
	text-align: left;
	font-size: 1.7rem;
	position: relative;
	padding-left: 1.2rem;
	line-height: 1.4;
	font-weight: 600;
}
.intro__desc::before {
	content: "-";
	position: absolute;
	top: 0;
	left: 0;
}
.intro__desc + .intro__desc {
	margin-top: .8rem;
}
.intro__desc.color {
	color: #eead00;
}
.intro__mid-tab:hover .intro__desc.color {
	color: #004da2;
}