<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-thumb {
  background-color: #b3b3b3;
  border-radius:10px;
}
body::-webkit-scrollbar-track {
  background-color: #f2f2f2;
}

#main-visual {
  position: relative;
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  z-index: 2;
}

.visual_wrap.slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.img_area.slide {
  display: flex;
  position:relative;
  min-width: 100%;
  height: 100%;
  transition: transform 5s ease-in-out;
}

.img_area.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 5s ease-in-out;
}

.img_area.slide img.active {
  transform: scale(1.2);
}

#main-visual .visual_text_wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#main-visual .visual_text_wrap .text_area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50vh;
  background: rgba(0, 0, 0, 0.5);
}

#main-visual .visual_text_wrap .text_area h2 {
  font-size: 74px;
  font-weight: 700;
  line-height: 1;
  color:#fff;
  margin-top: 40px;
}
#main-visual .visual_text_wrap .text_area h3 {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.6;
  color:#fff;
}
#main-visual .visual_text_wrap .text_area h4 {
  margin-top: 70px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color:#fff;
  text-align: center;
}


/* Service section02 */

.section02 {
  display: flex;
  width: 100vw;
  justify-content: center;
  position: relative;
  height: 2300px;
}

.section02_wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.section02_wrap .service_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 200px;
}

.section02_wrap .main-service_bg {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  transition-duration: 0.3s;
  transition: 0.3s;
}

.section02_wrap .main-service_bg {
  background-image:  url("../images/main/section02_bg.png");
}

.section02 .contents_wrap {
  position: sticky;
  z-index: 1;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  height: 100vh;
  padding-top: 165px;
}

.section02 .s02_contents {
  height: 100%;
}

.section02 .section_title {
  width: 42%;
  position: sticky;
  top: 350px;
  display: flex;
  flex-flow: column;
}
.section_title .title_bold {
  font-size: 58px;
  font-weight: 700;
  line-height: 120%;
}
.section_title .title_bold span {
  margin-left: 100px;
  font-weight: 100;
}
.section_title .title_bold.sub {
  font-size: 40px;
  margin-top: 10px;
}

.section_title .sangah_red {
  color: #CC112C;
  font-size: 23px;
  margin-bottom: 20px;
}
.section_title .section_info {
  line-height: 180%;
  font-size: 19px;
  margin-top: 30px;
}
.section_info_sub {
  font-size: 13px;
  color: #888;
}
.section02 .section_title button {
  width: 218px;
  height: 82px;
  background-color: #ec7723;
  border: none;
  color: #fff;
  font-size: 24px;
  border-radius: 4px;
  font-weight: 300;
  margin-top: 100px;
}
.section02 .section_title button:hover {
  background-color: #F0924F;
}

.section02 .section_content {
  will-change: contents;
  padding-top: 100px;
  width: 58%;
}
.section02 .section_content p {
  line-height: 180%;
}

.fixed_motion {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  transition-duration: 1.5s;
}

.section02 .section_content .item {
  display: flex;
  flex-direction: column;
  justify-content: start;
  max-width: 300px;
  min-height: 300px;
  width: 100%;
  background-color: #fff;
  border-radius: 32px;
  box-shadow: 0 0px 28px rgba(0,0,0,0.3);
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
  overflow: hidden;
}
.section02 .section_content .item:hover {
  box-shadow: 0 0px 28px rgba(0,0,0,0.5);
}

.section02 .section_content .item:hover img,
.section02 .section_content .item.active img {
  opacity: 0.5;
}

.section02 .section_content .item:hover:first-of-type,
.section02 .section_content .item:hover:nth-of-type(2),
.section02 .section_content .item:hover:nth-of-type(3),
.section02 .section_content .item.active:first-of-type,
.section02 .section_content .item.active:nth-of-type(2),
.section02 .section_content .item.active:nth-of-type(3) {
  background-color: #F0924F;
  color: #fff;
}
.section02 .section_content .item:hover:first-of-type p span,
.section02 .section_content .item:hover:nth-of-type(2) p span,
.section02 .section_content .item:hover:nth-of-type(3) p span,
.section02 .section_content .item.active:first-of-type p span,
.section02 .section_content .item.active:nth-of-type(2) p span,
.section02 .section_content .item.active:nth-of-type(3) p span {
  color: #fff;
}
.section02 .section_content .item:hover:nth-of-type(4),
.section02 .section_content .item:hover:nth-of-type(5),
.section02 .section_content .item:hover:nth-of-type(6),
.section02 .section_content .item.active:nth-of-type(4),
.section02 .section_content .item.active:nth-of-type(5),
.section02 .section_content .item.active:nth-of-type(6) {
  background-color: #33BCE1;
  color: #fff;
}
.section02 .section_content .item:hover:nth-of-type(4) p span,
.section02 .section_content .item:hover:nth-of-type(5) p span,
.section02 .section_content .item:hover:nth-of-type(6) p span,
.section02 .section_content .item.active:nth-of-type(4) p span,
.section02 .section_content .item.active:nth-of-type(5) p span,
.section02 .section_content .item.active:nth-of-type(6) p span {
  color: #fff;
}
.section02 .section_content .item:hover:nth-of-type(10),
.section02 .section_content .item:hover:nth-of-type(8),
.section02 .section_content .item:hover:nth-of-type(9),
.section02 .section_content .item.active:nth-of-type(10),
.section02 .section_content .item.active:nth-of-type(8),
.section02 .section_content .item.active:nth-of-type(9) {
  background-color: #D64156;
  color: #fff;
}
.section02 .section_content .item:hover:nth-of-type(10) p span,
.section02 .section_content .item:hover:nth-of-type(8) p span,
.section02 .section_content .item:hover:nth-of-type(9) p span,
.section02 .section_content .item.active:nth-of-type(10) p span,
.section02 .section_content .item.active:nth-of-type(8) p span,
.section02 .section_content .item.active:nth-of-type(9) p span {
  color: #fff;
}
.section02 .section_content .item:hover:nth-of-type(7),
.section02 .section_content .item.active:nth-of-type(7) {
  background-color: #33BFB0;
  color: #fff;
}
.section02 .section_content .item:hover:nth-of-type(7) p span,
.section02 .section_content .item.active:nth-of-type(7) p span {
  color: #fff;
}

/* .section02 .section_content .item:hover .item_icon img,
.section02 .section_content .item.active .item_icon img {
  filter: brightness(0) invert(1);
} */

.section02 .section_content .item .item_icon {
  width: 100%;
  height: 80px;
  overflow: hidden;
  text-align: center;
}

.section02 .section_content .item .item_icon img {
  width: 100%;
}
.section02 .section_content .item .item_info{
  padding: 30px;
}

.section02 .section_content .item .item_info h3 {
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
}

.section02 .section_content .item .item_info p {
  font-size: 16px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  margin-top:1px;
  min-height: 115px;
  max-height: 115px;
  overflow:hidden;
  vertical-align:top;
  text-overflow: ellipsis;
  word-break:break-all;
  -webkit-box-orient:vertical;
  -webkit-line-clamp: 4;
}
.section02 .section_content .item .item_info p span {
  font-size: 11px;
  text-align: center;
  display: block;
  color: #ec7723;
}

.section02 .section_content .item:first-of-type {
  align-self: flex-start;
}

.section02 .section_content .item:nth-of-type(2) {
  margin-top: 250px;
  margin-left: 30px;
}

.section02 .section_content .item:nth-of-type(3),
.section02 .section_content .item:nth-of-type(5),
.section02 .section_content .item:nth-of-type(7),
.section02 .section_content .item:nth-of-type(9) {
  align-self: flex-start;
  margin-top: -190px;
}

.section02 .section_content .item:nth-of-type(4),
.section02 .section_content .item:nth-of-type(6),
.section02 .section_content .item:nth-of-type(8),
.section02 .section_content .item:nth-of-type(10) {
  margin-top: 70px;
  margin-left: 50px;
}

/* Video section03 */
.section03 {
  position: relative;
  /* z-index: 1; */
  overflow: hidden;
  padding: 200px 0;
  background-image:  url("../images/main/section03_bg.png");
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 100%;
  width:100%;
}
#main-video .section03_wrap {
  margin: 0 200px;
}

.video_button {
  margin-top: 70px;
}
.video_button button {
  border: none;
  background: none;
  cursor: pointer;
}
.video_button button img {
  width: 100%;
}

/* Video - Tab */
.video_mask {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #000;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  filter: alpha(opacity=30);
  zoom: 1;
  opacity: 0.3;
  z-index: 100;
  display: none;
}
.video_popup {
  display: none;
  width: 1135px;
  min-height: 500px;
  z-index: 101;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.section03 .tabs {
  display: none;
}
.tabs__head {
  border-bottom: 2px solid #CC112C;
  /* margin-bottom: 70px; */
}
.tab_wrap {
  margin-bottom: -1px;
}
.tab_wrap .tab {
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid #CC112C;
  background-color: #fff;
  display: block;
  padding: 20px 30px;
  margin: 0;
}
.tab_wrap .tab.active {
  background-color: #CC112C;
  color: #ffff;
}

/* .tab-content {
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden;  
  padding-top: calc(9/16 * 100%);
}
.tab-content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
} */
.tab-content {
  aspect-ratio: 16 / 9;
}
.tab-content iframe {
  display: block;
  width:100%;
  height:100%;
}

.video_popup .tab_close {
  /* border: 1px solid #222; */
  border: none;
  background-color: #fff;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
}


/* News section04 */
.section04 {
  position: relative;
  /* z-index: 1; */
  padding: 70px 0;
  background-image:  url("../images/main/section04_bg.png");
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 1500px;
}
#main-news .section04_wrap {
  margin: 0 200px;
}
.press-news .thum-news:nth-child(2) {
  margin-top: 70px;
}


.sangah-news .thum-news:nth-child(1),
.sangah-news .thum-news:nth-child(3) {
  margin-top: -70px;
}

.press-news .thum-news:hover,
.sangah-news .thum-news:hover {
  box-shadow: 0px 0px 30px rgba(0,0,0,0.5);
}
.press-news .thum-news:hover img,
.sangah-news .thum-news:hover img {
  width: 120% !important;
  height: 120% !important;
  transition: 1s !important;
}
.press-news .thum-news:hover .news-title,
.sangah-news .thum-news:hover .news-title {
  font-weight: 600;
}

.thum-news {
  width:460px;
  height:500px;
  margin-bottom:70px;
  background:#fff;
  border-radius: 20px;
  padding: 40px 30px;
  cursor: pointer;
  box-shadow: 0px 0px 30px rgba(0,0,0,0.3);
  transition-duration: 0.3s;
  transition: 0.3s;
}

.news_top {
  margin-bottom: 20px;
}
.thum-news .news_img {
  width:100%;
  height:224px;
  cursor:pointer;
  overflow: hidden;
  position: relative;
  background-color: #1E1E1E;
  border: 1px solid #ddd;
}
.thum-news .news_img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.news-cate_wrap {
  margin-bottom: 10px;
}
.news_category {
  width: 80px;
  height: 26px;
  line-height: 25px;
  display: block;
  color: #fff;
  text-align: center;
  border-radius: 20px;
}
.news_category-p {
  background-color: #2683C6;
}
.news_category-r {
  background-color: #D64156;
}
.news_date {
  color: #909090;
  line-height: 130%;
}
.news-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 10px;
}

.news-contents {
  line-height: 130%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* section05 */
.section05 {
  position: relative;
  /* z-index: 1; */
  background: #fff;
  background-image:  url("../images/main/section05_bg.png");
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.section05 .section_title {
  margin-bottom: 70px;
}

#sangah_contact .section05_wrap {
  padding: 160px 0;
  margin: 0 200px;
}

#main_cs .cs_area {
  width: 500px;
  margin-right: 160px;
}

.main_form_so,
.main_form_lo {
  width:100%;
  padding:20px;
  margin-bottom:10px;
  border-radius: 4px;
  font-size: 15px;
  border: 1px solid #ccc;
}

.main_form_txt {
  width:100%;
  height:100px;
  padding:20px;
  margin-bottom:10px;
  border-radius: 4px;
  font-size: 15px;
  border: 1px solid #ccc;
  font-family: 'Noto Sans KR', '맑은 고딕', '돋움', MalgunGothic, Dotum, AppleGothic, Sans-serif, Arial;
}
.main_form_btn {
  color:#fff;
  width:100%;
  height:50px;
  background-color:#33BFB0;
  border:none;
  cursor:pointer;
  border-radius: 4px;
}

.sangah_awarded {
  flex: auto;
  border-left: 6px solid #33BFB0;
  height: 436px;
  overflow: hidden;
  flex: 1;
}
.aw_sl_wrap {
  position: relative;
  margin-left: 26px;
  display: flex;
  flex-direction: column;
}

.sangah_awarded ul li {
  padding: 18px 20px;
  border-bottom: 1px solid #DDDDDD;
  box-sizing: border-box;
  cursor: pointer;
}

.sangah_awarded&gt;div.original {
  animation: rolling01 400s linear infinite;
}
.sangah_awarded&gt;div.copy {
  animation: rolling02 400s linear infinite;
}

@keyframes rolling01 {
  0% { transform: translateY(0); }
  50% { transform: translateY(-100%); }
  50.01% { transform: translateY(100%); }
  100% { transform: translateY(0); }
}

@keyframes rolling02 {
  0% { transition: translateY(0); }
  100% { transform: translateY(-200%); }
}


.sangah_awarded ul li p {
  margin-left: 30px;
  font-weight: normal;
  font-size: 20px;
  line-height: 26px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  flex: 1;

}
.sangah_awarded ul li p span {
  font-weight: bold;
  margin-right: 6px;
}

.aw_category {
  width: 70px;
  height: 25px;
  line-height: 25px;
  display: block;
  color: #fff;
  text-align: center;
  border-radius: 20px;
}
.aw_category-p {
  background-color: #EC7723;
}
.aw_category-a {
  background-color: #00ABD9;
}
.aw_category-h {
  background-color: #33BFB0;
}



.main_map_area {
  position: relative;
  padding-bottom: 273px;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.main_map_area iframe,
.main_map_area object,
.main_map_area embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* section06 */
.section06 {
  position: relative;
  /* z-index: 1; */
  padding: 45px 0;
}

.section02 {
  width: 1920px;
}
.section01,
.section03,
.section04,
.section05,
.section06 {
  min-width: 1920px;
}</pre></body></html>