@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap");

* {
  margin: 0;
  padding: 0;
  list-style-type: none;
  box-sizing: border-box;
  font-family: "Open Sans", "Noto Sans KR", sans-serif;
}
html {
  position: relative;
  width: 100%;
  height: 100%;
}
body {
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
}
a {
  text-decoration: none;
  color: #333;
}
button {
  border: none;
  background-color: transparent;
}
/* :focus {outline: none;} */

a:focus {
  outline: 2px dotted #000;
}

/* a.using-mouse:focus {
  outline: none;
} */
button:focus {
  outline: 2px dotted #000;
}
/* button.using-mouse:focus {
  outline: none;
} */
i {
  font-style: normal;
}
.fw600 {
  font-weight: 600;
}

/* visual */
.visual {
  position: relative;
  width: 100%;
  height: 360px;
  /* margin: 80px 0px 35px 0px; */
  margin: 0px 0px 35px 0px;
  background: url(../images/main/visual-bg.png) no-repeat center/cover;
  @media screen and (max-width:1200px){
  	    width: 1200px;
  }
}
.visual-tx {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.visual-tx .tx {
  color: #fff;
  font-size: 3.8rem;
  font-weight: 100;
  line-height: 1.4;
}

.notice-slider {
  position: absolute;
  top: 30px;
  right: calc(50% - 600px);
  width: 300px;
  height: 290px;
}
.notice-slider .slick-dots li button:before {
  content: none;
}
.notice-slider .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
}
.notice-slider .slick-dots li button {
  width: 5px;
  height: 5px;
  padding: 0;
  margin: 0 5px;
  border-radius: 50%;
  background: #fff;
  transition: 0.3s;
}
.notice-slider .slick-dots li.slick-active button {
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  background: transparent;
}
.playbtn {
  position: absolute;
  bottom: 14px;
  right: calc(50% - 495px);
  width: auto;
  height: auto;
}
.playbtn .pause {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url(../images/main/icon-stop-w.svg) no-repeat center/cover;
}
.playbtn .pause.on {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url(../images/main/icon-play-w.svg) no-repeat center/cover;
}

/* section */
img-heading {
  padding: 50px 0;
  text-align: center;
}
.smart-ul {
  display: flex;
  justify-content: space-between;
}
.smart-li {
  flex: 0 0 280px;
  max-width: 280px;
  height: 100px;
  vertical-align: middle;
}
.smart-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
}
.smart-link .tx {
  position: absolute;
  top: 50%;
  left: 90px;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.2);
}
.smart-link .tx img {
  padding-left: 5px;
  transition: 0.4s;
}
.smart-link:hover .tx img,
.smart-link:active .tx img,
.smart-link:focus .tx img {
  padding-left: 15px;
  transition: 0.4s;
}

.smart-link:before {
  content: "";
  position: absolute;
  width: 70px;
  height: 100%;
}
.smart-link.link01 {
  background: #325d83;
}
.smart-link.link02 {
  background: #5072ba;
}
.smart-link.link03 {
  background: #197bba;
}
.smart-link.link04 {
  background: #0254a8;
}
.smart-link.link01:before {
  background: #5594cc url(../images/main/icon01.png) no-repeat center;
  background-size: 70% 45%;
}
.smart-link.link02:before {
  background: #8299cf url(../images/main/icon02.png) no-repeat center;
  background-size: 70% 50%;
}
.smart-link.link03:before {
  background: #5ba3d3 url(../images/main/icon03.png) no-repeat center;
  background-size: 70% 40%;
}
.smart-link.link04:before {
  background: #4884c0 url(../images/main/icon04.png) no-repeat center;
  background-size: 70% 45%;
}
.se02 .inner {
  overflow: hidden;
}
.service-ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin: 25px 0;
}
.service-li {
  flex: 0 0 16.666%;
  max-width: 16.666%;
  height: 85px;
}
.service-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff url(../images/main/arrow-b.png) no-repeat 85% 70%;
  font-size: 1rem;
  box-shadow: 10px 10px 5px 1px rgba(0, 0, 0, 0.05);
  transition: 0.4s;
}
.service-link:focus {
  outline: 2px dotted #fff;
  outline-offset: -3px;
}
.service-link .tx {
  position: absolute;
  top: 50%;
  left: 20px;
  font-size: 1.4rem;
  transform: translateY(-50%);
  font-weight: 500;
}
.service-link .tx i {
  display: block;
}
.service-link.link01 {
  background-color: #fff;
}
.service-link.link02 {
  background-color: #f1f5f8;
}
.service-link.link03 {
  background-color: #e8eff4;
}
.service-link.link04 {
  background-color: #dfe7ed;
}
.service-link.link05 {
  background-color: #d6e0e8;
}
.service-link.link06 {
  background-color: #c9d1d8;
}
.service-link.link07 {
  background-color: #f1f5f8;
}
.service-link.link08 {
  background-color: #e8eff4;
}
.service-link.link09 {
  background-color: #dfe7ed;
}
.service-link.link10 {
  background-color: #d6e0e8;
}
.service-link.link11 {
  background-color: #c9d1d8;
}
.service-link.link12 {
  background-color: #b0b6bb;
}
.service-link:hover,
.service-link:active,
.service-link:focus,
.service-link.on {
  background-color: #059181;
  background-image: url(../images/main/arrow-w.png);
  color: #fff;
}
