/* ===================================
    Reset
====================================== */
@font-face {
  font-family: "S-CoreDream";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-4Regular.woff")
    format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "S-CoreDream";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-5Medium.woff")
    format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "S-CoreDream";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-7ExtraBold.woff")
    format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "S-CoreDream";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-9Black.woff")
    format("woff");
  font-weight: 900;
  font-style: normal;
}

body {
  font-family: "S-CoreDream", "Roboto", sans-serif;
  font-size: 14px;
  color: #666;
  font-weight: 400;
  line-height: 1.5;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
body,
html {
  overflow-x: hidden;
}

a,
a:active,
a:focus {
  color: #666;
  text-decoration: none;
}
a:hover,
a:active {
  color: #666;
  text-decoration: none;
}
a:focus,
a:active,
button:focus,
button:active,
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
}
video {
  background-size: cover;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
input,
textarea,
select {
  border: 1px solid #d1d1d1;
  font-size: 14px;
  padding: 8px 15px;
  width: 100%;
  margin: 0 0 20px 0;
  max-width: 100%;
  resize: none;
}
input[type="submit"] {
  width: auto;
}
input[type="button"],
input[type="text"],
input[type="email"],
input[type="search"],
input[type="password"],
textarea,
input[type="submit"] {
  -webkit-appearance: none;
  outline: none;
}
input:focus,
textarea:focus {
  border-color: #585858;
  outline: none;
}
input[type="button"]:focus {
  outline: none;
}
select::-ms-expand {
  display: none;
}
iframe {
  border: 0;
}
figure {
  margin: 0;
}

/*p {margin: 0 0 25px}*/
b,
strong {
  font-weight: 600;
}
.alt-font strong {
  font-weight: 700;
}

ul,
ol {
  list-style-position: outside;
  margin: 0 0 25px;
  padding: 0;
}
li {
  list-style: none;
}

* {
  transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
}
*:hover {
  transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
}

::selection {
  color: #000;
  background: #dbdbdb;
}
::-moz-selection {
  color: #000;
  background: #dbdbdb;
}

::-webkit-input-placeholder {
  color: #666;
  text-overflow: ellipsis;
}
::-moz-placeholder {
  color: #666;
  text-overflow: ellipsis;
  opacity: 1;
}
/* ===================================
    Typography color
====================================== */
/* text color */
.text-white {
  color: #fff;
}
.text-black {
  color: #000;
}
.text-extra-dark-gray {
  color: #232323;
}
.text-medium-gray {
  color: #939393;
}
.text-very-light-gray {
  color: #ededed;
}

/* text link hover color */

/* hover color */

/* ===================================
    Background color
====================================== */
.bg-white {
  background-color: #fff;
}
.bg-extra-dark-gray {
  background-color: #1c1c1c;
}

/* ===================================
    border color
====================================== */

/* border color for overline icon box */

.nav > li > a:focus,
.nav > li > a:hover {
  background: none;
}

/* header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  z-index: 1000;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
#header.sticky {
  background-color: rgba(0, 0, 0, 1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
#header #headerInner div.logo {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  max-height: 100%;
}
/*#header #headerInner div.logo img {max-height: 26px;}*/

#header #headerInner .navWrap .gnb > li {
  float: none;
}
#header #headerInner .navWrap .gnb > li > a {
  display: block;
  position: relative;
  font-weight: 400;
  text-transform: uppercase;
}
#header #headerInner .navWrap .gnb > li > a.active {
  border-bottom: 2px solid #000;
}
.gnbMenuBg {
  display: none;
}
#footer ul.sns-icons li {
  display: inline-block;
  margin: 0 12px;
}
#footer ul.sns-icons li a {
  font-size: 25px;
  color: #757575;
}
#footer ul.sns-icons li a:hover {
  color: #b7b7b7;
}
#footer ul.footer-info li span {
  margin-right: 5px;
  margin-left: 10px;
  color: #b7b7b7;
}
#footer ul.footer-info li span:first-of-type {
  margin-left: 0;
}

@media (min-width: 992px) {
  /* header */
  #header #headerInner .navWrap .gnb {
    float: none;
    margin: 0 auto;
    text-align: center;
  }
  #header #headerInner .navWrap .gnb > li {
    display: inline-block;
    position: relative;
    padding: 15px;
    text-align: center;
  }
  #header #headerInner .navWrap .gnb > li > a {
    margin: 0;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    font-size: 14px;
    color: #fff;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
  #header #headerInner .navWrap .header-contact-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    padding: 4px 22px 3px;
    max-height: 100%;
    border: 1px solid #fff;
    border-radius: 50px;
  }
  #header #headerInner .navWrap .header-contact-btn a {
    color: #fff;
  }
  #header #headerInner .navWrap .header-contact-btn a i {
    padding-right: 5px;
  }

  #header #headerInner .btn-nav {
    display: none;
  }
  #header #headerInner .navWrap .header-go-to-top {
    display: none;
  }
  .go-to-top {
    display: none;
    position: fixed;
    right: 50px;
    bottom: 50px;
    padding: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: #000;
    border-radius: 2px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    z-index: 555;
  }
  .go-to-top:hover {
    opacity: 0.5;
  }
  .go-to-top i {
    margin: 0 6px;
    font-size: 15px;
    color: #fff;
    vertical-align: middle;
  }
}

@media all and (min-width: 1170px) {
  #header #headerInner div.logo {
    left: 50px;
  }
  #header #headerInner .navWrap .header-contact-btn {
    right: 50px;
  }
}
@media all and (max-width: 991px) {
  #header #headerInner {
    height: 60px;
  }
  #header #headerInner .btn-nav {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    padding: 0;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    z-index: 999;
    cursor: pointer;
  }
  #header #headerInner .btn-nav > span {
    position: absolute;
    left: 50%;
    margin-left: -11px;
    width: 22px;
    height: 2px;
    background: #fff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  #header #headerInner .btn-nav.mNav_open > span {
    background: #000;
  }

  #header #headerInner .btn-nav > span:nth-of-type(1) {
    top: 9px;
  }
  #header #headerInner .btn-nav > span:nth-of-type(2) {
    top: 17px;
  }
  #header #headerInner .btn-nav > span:nth-of-type(3) {
    top: 25px;
  }
  #header #headerInner .btn-nav.mNav_open > span:nth-of-type(1) {
    top: 18px;
    transform: rotate(-45deg);
  }
  #header #headerInner .btn-nav.mNav_open > span:nth-of-type(2) {
    opacity: 0;
  }
  #header #headerInner .btn-nav.mNav_open > span:nth-of-type(3) {
    top: 18px;
    transform: rotate(45deg);
  }
  .gnbMenuBg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0.6;
    z-index: 50;
  }
  #header #headerInner .navWrap {
    position: fixed;
    top: 0;
    transform: translateY(0);
    right: -40%;
    width: 40%;
    height: 100%;
    background: rgba(255, 255, 255, 1);
    z-index: 100;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
  #header #headerInner .navWrap.mNav_open {
    right: 0;
  }
  #header #headerInner .navWrap nav {
    overflow-y: auto;
    position: absolute;
    top: 100px;
    bottom: 120px;
    left: 0;
    right: 0;
    padding: 0 20px 0;
    width: 100%;
  }
  #header #headerInner .navWrap .gnb > li {
    padding: 10px 0;
    line-height: 40px;
  }
  #header #headerInner .navWrap .gnb > li > a {
    display: inline-block;
    padding: 2px 0;
    font-size: 26px;
    font-weight: 700;
    color: #000;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }

  #header #headerInner .navWrap .header-contact-btn {
    position: absolute;
    left: 0;
    bottom: 0;
    width: calc(100% - 60px);
    height: 60px;
    line-height: 60px;
    border-top: 1px solid #232323;
    font-size: 18px;
    text-align: center;
  }
  #header #headerInner .navWrap .header-contact-btn a i {
    padding-right: 5px;
  }
  #header.sticky #headerInner .navWrap .header-contact-btn {
    border-color: #232323;
  }
  #header.sticky #headerInner .navWrap .header-contact-btn a {
    color: #232323;
  }
  #header #headerInner .navWrap .header-go-to-top {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background-color: #232323;
    font-size: 16px;
    cursor: pointer;
  }
  #header #headerInner .navWrap .header-go-to-top i {
    width: 100%;
    line-height: 60px;
    text-align: center;
    color: #fff;
  }
  .go-to-top {
    width: 0;
    height: 0;
  }
  .go-to-top i {
    font-size: 0;
  }
}
@media (max-width: 767px) {
  #header #headerInner .navWrap {
    right: -100%;
    width: 100%;
  }
  .gnbMenuBg {
    display: none !important;
  }
}

/* about */
.section-title-box {
  margin-bottom: 80px;
  text-align: center;
}

.section-title {
  color: #232323;
  font-weight: 700;
}

/* 라온하제 소개 */
.about-company > a {
  margin-top: 10px;
}

.about-company > a > span {
  margin-left: 10px;
  font-family: "Architects Daughter", cursive;
  font-size: 15px;
  text-transform: capitalize;
}

/* Expert Team */
#case {
  background: #f7f7f7;
}

.case-list {
  row-gap: 60px;
}

.case-list > div {
  padding-left: 5px;
  padding-right: 5px;
  text-align: center;
}

.case-list > div > .case-images {
  display: inline-block;
  text-align: center;
}

.case-list > div > .case-list-box > .list-name {
  margin: 20px auto 10px;
  font-size: 16px;
  font-weight: 700;
  color: #232323;
}

.case-list > div > .case-list-box > .case-project > div {
  margin-bottom: 8px;
}

.case-list > div > .case-list-box > .case-project > p {
  float: none;
  margin: 0 auto;
  font-size: 12px;
}


/* marketing-slider */
.marketing-slider .swiper-marketing {
  margin: 0 auto;
  max-width: 1140px;
}
.marketing-slider {
  background: #e5f1ff;
}
.marketing-slider .swiper-slide [class*="container"] {
  background: #e5f1ff;
  text-align: center;
}
.marketing-slider .swiper-slide .slider-marketing-text h4 {
  color: #232323;
  font-weight: 700;
}
.marketing-slider .swiper-slide .slider-marketing-text h4 > span {
  font-style: italic;
}
.marketing-slider .swiper-slide .slider-marketing-text p.text-medium {
  margin-bottom: 5px;
  font-size: 18px;
}
.marketing-slider .swiper-slide .slider-marketing-text p.text-large {
  margin-bottom: 20px;
  color: #042753;
  font-size: 28px;
}
.marketing-slider .swiper-slide .slider-marketing-text p > span {
  font-weight: 700;
  text-decoration: underline;
}
.marketing-slider .swiper-slide .slider-marketing-text p:last-of-type {
  margin-bottom: 0;
}


#service .grid-item.feature-box-3 {
  cursor: pointer;
}
#service .grid-item.feature-box-3 figure:hover figcaption {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

#service .grid-item.feature-box-3 img {
  cursor: pointer !important;
}
#service .grid-item.feature-box-3 figure figcaption {
  bottom: 10px;
}
#service .grid-item.feature-box-3 figure figcaption span:last-of-type {
  opacity: 1;
  font-weight: 500;
}


/* partner */
#partner .row.partner-item {
  row-gap: 10px;
}

#partner .row.partner-item > div {
  padding: 0 5px;
}

#partner .row.partner-item > div img {
  width: 400px;
}

.partner-item-box {
  overflow: hidden;
  position: relative;
}

.partner-item-box figure {
  padding: 0;
  margin: 0;
}

.partner-item-box:hover .partner-img > img {
  transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transform: scale(1.09, 1.09);
  -webkit-transform: scale(1.09, 1.09);
  -moz-transform: scale(1.09, 1.09);
  -ms-transform: scale(1.09, 1.09);
  -o-transform: scale(1.09, 1.09);
}

.partner-item-box figcaption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}

.partner-item-box figcaption .partner-hover {
  display: table;
  width: 100%;
  height: 100%;
}

.partner-item-box figcaption .partner-hover .partner-hover-box {
  display: table-cell;
  height: 100%;
  color: #fff;
  vertical-align: middle;
}

.partner-item-box figcaption .partner-hover .partner-hover-box > span {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
}

.partner-item-box figcaption .partner-hover .partner-hover-box > p {
  margin-bottom: 0;
}


/* clients-slider */
.swiper-slider-clients {
  padding: 0 10px;
}
.swiper-slider-clients .swiper-wrapper {
  align-items: center !important;
}

.clients-slider .swiper-button-next {
  right: -10px;
}
.clients-slider .swiper-button-prev {
  left: -10px;
}


/* contact */
#contact [class*="container"] > h6 {
  margin-bottom: 30px;
}
#contact .contact-info .contact-info-box {
  padding: 20px 20px 20px 40px;
  background: #f9f9f9;
}

#contact .contact-info .contact-info-box:not(:first-of-type) {
  margin-top: 20px;
}
#contact .contact-info .contact-info-box > div {
  position: relative;
  padding-left: 60px;
}
#contact .contact-info .contact-info-box > div > img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

#contact .contact-info .contact-info-box > div > div {
  margin-bottom: 5px;
  color: #232323;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

#contact .contact-info .contact-info-box > div p {
  margin-bottom: 0;
}
#contact .contact-info .contact-info-box > div p > span {
  font-weight: 700;
}

@media (min-width: 992px) {
  #partner .row.partner-item > div:nth-of-type(3n-1) {
    animation-delay: 0.2s;
  }

  #partner .row.partner-item > div:nth-of-type(3n) {
    animation-delay: 0.4s;
  }
}

@media (max-width: 991px) {
  .html-video {
    height: 100%;
  }
}

@media (max-width: 767px) {
  .section-title-box {
    margin-bottom: 40px;
  }

  .case-list {
    row-gap: 50px;
  }

  .case-list > div {
    padding-left: 15px;
    padding-right: 15px;
  }

  .case-list > div > .case-list-box > .list-name {
    margin: 15px auto 10px;
    font-size: 14px;
    line-height: 1.5;
  }

  .marketing-slider .swiper-slide .slider-marketing-text p.text-medium {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .marketing-slider .swiper-slide .slider-marketing-text p.text-large {
    margin-bottom: 16px;
    font-size: 20px;
  }
  .marketing-slider .swiper-slide .slider-marketing-text p:last-of-type {
    font-size: 12px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    background-size: 14px 20px;
  }

  .partner-item-box figcaption .partner-hover .partner-hover-box > span {
    margin-bottom: 5px;
    font-size: 16px;
  }

  #partner .row.partner-item > div:nth-of-type(2n) {
    animation-delay: 0.2s;
  }

  #contact .contact-info {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  #contact .contact-info::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 1px;
    background: #ddd;
  }

  #contact .contact-info .contact-info-box {
    padding: 10px 20px;
  }
  #contact .contact-info .contact-info-box:not(:first-of-type) {
    margin-top: 10px;
  }
  #contact .contact-info .contact-info-box > div p {
    font-size: 12px;
  }
}

@font-face {
  font-family: "PyeongChangPeace";
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2206-02@1.0/PyeongChangPeace-Bold.woff2")
    format("woff2");
  font-weight: 700;
  font-style: bold;
}

@font-face {
  font-family: "PyeongChangPeace";
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2206-02@1.0/PyeongChangPeace-Light.woff2")
    format("woff2");
  font-weight: 400;
  font-style: normal;
}

button.mfp-close {
  position: fixed;
  background: #e56245;
  color: #fff !important;
}

.contact-form ul {
  display: table;
  margin: 0 auto;
}

.contact-form ul::after {
  content: "";
  display: block;
  clear: both;
}

.contact-form ul > li {
  float: left;
  margin: 0 10px;
}

@media (min-width: 768px) {
  .contact-form ul li:last-of-type {
    display: none;
  }
}

table.base_formmail {
  width: 100%;
}

table.base_formmail > tbody > tr {
  display: block;
  width: 100%;
  height: auto;
}

table.base_formmail > tbody > tr:first-of-type td:nth-of-type(2),
table.base_formmail > tbody > tr:nth-of-type(2) td:nth-of-type(2) {
  float: left;
  width: 49%;
}

table.base_formmail > tbody > tr:first-of-type td:nth-of-type(2) {
  margin-right: 2%;
}

table.base_formmail > tbody > tr > td {
  display: block;
  width: 100%;
  height: auto;
  font-size: 0;
}

table.base_formmail > tbody > tr > td > input {
  font-size: 14px;
}

table.base_formmail > tbody > tr > td.formmail_title_bgcolor {
  display: none;
}

table.base_formmail > tbody > tr > td.formmail_title_bgcolor font {
  font-size: 14px;
}

.base_formmail > tbody > tr > td > input[type="text"],
.base_formmail > tbody > tr > td > input[type="password"],
.base_formmail > tbody > tr > td > select,
.base_formmail > tbody > tr > td > textarea {
  padding: 12px 16px !important;
  width: 100%;
  height: 54px;
  background-color: #f9f9f9;
  line-height: 1.42857143;
  border: none;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  color: #777;
  outline: 0;
  transition: all 0.25s;
}

.base_formmail > tbody > tr > td > textarea {
  margin-bottom: 10px;
}

table.base_formmail > tbody > tr > td > table {
  font-size: 12px;
}

table.base_formmail
  > tbody
  > tr
  > td
  > table
  input[name="com_formmail_check_safe"] {
  margin-top: 0;
  width: 15px;
  height: 15px;
  vertical-align: middle;
}

table.base_formmail > tbody > tr.check_safe > td {
  padding: 0px !important;
}

table.base_formmail > tbody > tr.check_safe textarea {
  padding: 12px 16px !important;
  width: 100%;
  height: 150px;
  background-color: #f9f9f9;
  line-height: 1.42857143;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  color: #777;
  outline: 0;
}

table.base_formmail > tbody > tr.check_safe > td table td {
  padding-bottom: 5px;
}

table.base_formmail > tbody > tr.captcha_code {
  position: relative;
}

table.base_formmail > tbody > tr.captcha_code::after {
  content: "";
  display: block;
  clear: both;
}

table.base_formmail > tbody > tr.captcha_code td {
  float: left;
  font-size: 12px;
}

table.base_formmail > tbody > tr.captcha_code td:first-of-type {
  width: 20%;
}

table.base_formmail > tbody > tr.captcha_code td:last-of-type {
  width: 80%;
}

table.base_formmail > tbody > tr.captcha_code td:last-of-type br {
  display: none;
}

table.base_formmail > tbody > tr.captcha_code td:last-of-type input {
  margin-bottom: 5px;
}

table.base_formmail > tbody > tr.captcha_code td:last-of-type a {
  position: absolute;
  left: 0;
  bottom: 0;
}



/* ===================================
   Popup Styles (Original User Provided)
====================================== */
.white-popup-block {
  background: #fff;
  text-align: left;
  max-width: 1920px;
  margin: 20px auto;
  position: relative;
}

@font-face {
  font-family: "PyeongChangPeace";
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2206-02@1.0/PyeongChangPeace-Bold.woff2")
    format("woff2");
  font-weight: 700;
  font-style: bold;
}

@font-face {
  font-family: "PyeongChangPeace";
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2206-02@1.0/PyeongChangPeace-Light.woff2")
    format("woff2");
  font-weight: 400;
  font-style: normal;
}

button.mfp-close {
  position: fixed;
  background: #e56245;
  color: #fff !important;
}

.popup-top {
  padding-top: 280px;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
}

.popup-top [class*="container"] > h2 {
  margin-bottom: 40px;
  font-weight: 700;
}

.popup-top h2 {
  font-family: "Anton", sans-serif;
}

.popup-top [class*="container"] > p {
  padding: 0 15px;
  margin-bottom: 70px;
  font-size: 24px;
}

.popup-top [class*="container"] > p > span {
  font-weight: 700;
}

.popup-top > img {
  display: block;
  margin: 0 auto;
}

.popup-top > img:last-of-type {
  margin-top: 30px;
}

.white-popup-block .popup-section:last-of-type {
  padding-bottom: 130px;
}
.popup-section {
  margin-top: 130px;
}
.popup-section .popup-section-title {
  margin-bottom: 80px;
}
.popup-section .popup-section-title > h5 {
  display: table;
  position: relative;
  padding-top: 25px;
  margin: 0 auto;
  color: #232323;
  font-weight: 900;
  text-align: center;
}

.popup-section .popup-section-title > h5::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 30px;
  height: 5px;
  background-color: #002f82;
}

.popup-section-title > p {
  margin: 30px auto 0;
  text-align: center;
}

.popup-section-title > p > span {
  font-weight: 700;
}

h6.title-label {
  position: relative;
  padding-left: 10px;
  text-transform: uppercase;
}

h6.title-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 4px;
  height: 22px;
  background: #3055a0;
}

/* popup-about */

.card-list {
  position: relative;
  display: flex;
  justify-content: center;
}

.card-list > div {
  position: relative;
  width: 90%;
  text-align: center;
  z-index: 3;
  display: flex;
  flex-direction: column;
}

.card-list > div::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 100%;
  height: 100%;
  background-color: #e8e8e8;
  border: 1px solid #8e8e8e;
  z-index: -1;
}
.card-list > div::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 1px solid #a6a6a6;
  z-index: -2;
}

.card-list > div > div {
  flex-grow: 1;
  padding: 60px 10px;
  background-color: #fff;
  border: 1px solid #a6a6a6;
}

.card-list > div > div > img {
  margin-bottom: 40px;
  height: 80px;
}

.card-list > div > div > h6 {
  /*font-size: 18px;*/
  color: #000828;
  font-weight: 700;
  line-height: 1.5;
}

.card-list > div > div > p {
  margin-bottom: 0;
}
.card-list > div > div > p > span {
  font-weight: 700;
}

/* CI소개 */
.corporate-identity p {
  position: relative;
  padding-left: 8px;
}

.corporate-identity p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  background-color: #666;
  border-radius: 50%;
}

/* map */
.about-map > .map-box {
  padding: 80px 0;
}
.about-map > .map-box:nth-of-type(2n-1) {
  background: #f5f5f5;
}

.map-box h6 {
  position: relative;
  padding-left: 10px;
  /*font-size: 20px;*/
}

.map-box h6 > span {
  margin-right: 8px;
  color: #232323;
  font-weight: 700;
}

.map-box h6::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 20px;
  background-color: #1b8ca5;
}

.map-box iframe {
  width: 100%;
  height: 450px;
}

/* popup-office */
.office-hours,
.office-counseling {
  padding: 60px 0;
  /*font-size: 18px;*/
  text-align: center;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.15);
}

.office-hours > img,
.office-counseling > img {
  margin-bottom: 40px;
  height: 80px;
}

.office-hours > ul > li,
.office-counseling > ul > li {
  font-weight: 700;
}

.office-hours > p {
  color: #d11818;
  font-weight: 700;
}

.office-hours > p,
.office-counseling > p {
  margin-bottom: 0;
  font-size: 16px;
}

.contact-form ul {
  display: table;
  margin: 0 auto;
}

.contact-form ul::after {
  content: "";
  display: block;
  clear: both;
}

.contact-form ul > li {
  float: left;
  margin: 0 10px;
}

/* 서비스-브랜드 블로그 */
.brand-blog .row > div:not(:nth-of-type(-n + 2)) {
  margin-top: 50px;
}

/* 체험단 마케팅 */
.popup-top > [class*="container"] > ul {
  display: table;
  margin: 50px auto 0;
}

.popup-top > [class*="container"] > ul::after {
  content: "";
  display: block;
  clear: both;
}

.popup-top > [class*="container"] > ul > li {
  float: left;
}
.popup-top > [class*="container"] > ul > li:not(:first-of-type) {
  margin-left: 30px;
}

.popup-top > [class*="container"] > ul > li > img {
  width: 100%;
  box-shadow: 0px 0px 50px rgba(98, 98, 98, 0.3);
}

.featurebox > div > div {
  padding: 40px 0;
  background: #f9f9f9;
}
.featurebox img {
  margin-bottom: 30px;
  max-height: 60px;
}

@media (min-width: 768px) {
  .about-value-box.card-list:first-of-type > div > div > h6 {
    min-height: 52px;
  }
  .contact-form ul li:last-of-type {
    display: none;
  }

  .corporate-identity .row > div:not(:nth-of-type(-n + 2)) {
    margin-top: 80px;
  }

  .card-list.list-grid-2 > div > div {
    padding: 100px 0;
  }

  .card-list.list-grid-2:not(:nth-of-type(-n + 2)) {
    margin-top: 60px;
  }
}

@media (min-width: 992px) {
  .grid-line > div {
    position: relative;
  }
  .grid-line > div:not(:last-of-type):after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 95%;
    background-color: #dadada;
  }

  .about-value-box.card-list > div > div h6 {
    min-height: 60px;
  }
}

@media (max-width: 1199px) {
  .popup-top {
    padding-top: 200px;
  }
  .popup-top > [class*="container"] > ul > li {
    width: 32%;
  }
  .popup-top > [class*="container"] > ul > li:not(:first-of-type) {
    margin-left: 2%;
  }
}

@media (max-width: 991px) {
  .popup-top {
    padding-top: 150px;
  }
  .popup-top > img:last-of-type {
    margin-top: 60px;
    width: 70%;
  }

  .card-list > div {
    width: 97%;
  }
  .card-list.list-grid-3:last-of-type {
    margin-top: 30px;
  }
  .card-list.list-grid-3:last-of-type > div {
    width: 98.5%;
  }

  .map-box iframe {
    height: 350px;
  }

  .popup-top > [class*="container"] > ul {
    margin: 40px auto 0;
    width: 70%;
  }
}

@media (max-width: 767px) {
  .row-border-radius {
    border-radius: 30px;
  }

  .popup-section {
    margin-top: 80px;
  }
  .popup-section .popup-section-title {
    margin-bottom: 40px;
  }
  .popup-section-title > p {
    margin-top: 20px;
  }
  .white-popup-block .popup-section:last-of-type {
    padding-bottom: 80px;
  }

  .about-map > .map-box {
    padding: 40px 0;
  }

  .popup-top {
    padding-top: 60px;
  }
  .popup-top [class*="container"] > h2 {
    margin-bottom: 20px;
    font-size: 25px;
  }
  .popup-top [class*="container"] > p {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .popup-top img.popup-top-logo {
    max-height: 20px;
  }
  .popup-top > img:last-of-type {
    margin-top: 30px;
  }

  .card-list:not(:first-of-type) {
    margin-top: 30px;
  }
  .card-list > div > div {
    padding: 30px 10px;
  }
  .card-list > div > div > img {
    margin-bottom: 20px;
    height: 60px;
  }
  .card-list.list-grid-3 > div {
    width: 97% !important;
  }

  .corporate-identity .col-xs-12:not(:first-of-type) {
    margin-top: 40px;
  }
  .corporate-identity .col-xs-12:last-of-type p {
    margin-bottom: 0;
  }

  .corporate-identity img {
    display: table;
    width: 60%;
    margin: 0 auto;
  }

  .map-box h6 > span {
    display: block;
  }
  .map-box iframe {
    height: 250px;
  }

  .office-hours,
  .office-counseling {
    padding: 30px 10px;
  }
  .office-hours > img,
  .office-counseling > img {
    margin-bottom: 20px;
    height: 60px;
  }
  .office-counseling {
    margin-top: 15px;
  }

  .brand-blog .row > div:not(:nth-of-type(-n + 2)) {
    margin-top: 20px;
  }

  .featurebox > div > div {
    padding: 20px 0;
  }
  .featurebox img {
    margin-bottom: 15px;
    max-height: 40px;
  }
}

.feature-box-5 img.feature-icon {
  position: absolute;
  top: 0;
  left: 0;
  max-height: 40px; /* 기존 아이콘 크기(icon-extra-medium)에 맞게 조정 */
  width: auto;
}

@media (max-width: 767px) {
  .feature-box-5 img.feature-icon {
    display: block;
    position: static;
    margin: 0 auto 15px;
  }
}
