html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input,
select,
textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  color: #171717;
  letter-spacing: -0.02em;
  /*    font: inherit;*/
  vertical-align: baseline;
  font-family: "Noto Sans KR", "Pretendard", -apple-system, system-ui, BlinkMacSystemFont, Roboto, Segoe UI, Helvetica, Arial, Apple SD Gothic Neo, Malgun Gothic, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, sans-serif;
  list-style: none;
  text-decoration: none;
  /* color:#171717 */
}

i, em {
  font-style: normal;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* FONT */
body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

body {
  -webkit-text-size-adjust: none;
}

mark {
  background-color: transparent;
  color: inherit;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input,
select,
textarea {
  /* -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none; */
}

iframe {
  width: 100%;
  border: 0;
}

.youtube iframe {
  width: 100% !important;
  height: 100%;
  aspect-ratio: 16/9;
}

html {
  box-sizing: border-box;
  font-size: 10px;
}

@-ms-viewport {
  width: device-width;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}

html,
body {
  height: 100%;
  margin: 0;
}

input[type=text],
input[type=password],
input[type=email],
select,
textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background: transparent;
  border-radius: 0;
  border: solid 1px;
  color: inherit;
  display: block;
  outline: 0;
  padding: 5px;
  font-size: 14px;
  line-height: 18px;
  text-decoration: none;
  width: 100%;
  resize: none;
}
input[type=text]:focus::placeholder,
input[type=password]:focus::placeholder,
input[type=email]:focus::placeholder,
select:focus::placeholder,
textarea:focus::placeholder {
  color: transparent;
}

/* Button */
input[type=submit],
input[type=reset],
input[type=button],
button,
.button {
  font-family: "Noto Sans KR", "Pretendard", -apple-system, system-ui, BlinkMacSystemFont, Roboto, Segoe UI, Helvetica, Arial, Apple SD Gothic Neo, Malgun Gothic, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, sans-serif;
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  -moz-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
  -ms-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  /*    font-weight: 900;*/
  letter-spacing: -0.02em;
  /*    height: 30px;*/
  /*    line-height: 30px;*/
  padding: 6px 7px;
  text-align: center;
  text-decoration: none;
  /*    text-transform: uppercase;*/
  white-space: nowrap;
}

/* SELECT */
/*the container must be positioned relative:*/
.custom-select {
  position: relative;
  font-size: 14px;
  margin: 0 0 15px;
}

.custom-select select {
  display: none; /*hide original SELECT element:*/
}

.select-selected {
  background-color: #fff;
  padding: 10px 16px 11px;
  border: 1px solid #ddd;
  cursor: pointer;
  user-select: none;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #171717 transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #171717 transparent;
  top: 7px;
}

/*style the items (options), including the selected item:*/
.select-items div {
  color: #171717;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1);
  cursor: pointer;
  user-select: none;
}

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: #fff;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  box-shadow: 0px 3px 10px -4px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 3px 10px -4px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 3px 10px -4px rgba(0, 0, 0, 0.75);
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

.underline {
  text-decoration: underline;
}

.cursor {
  cursor: pointer;
}

.blind {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
  clip-path: inset(0px 0px 99.9% 99.9%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
}

.ellipsis {
  display: block !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.point {
  color: #2e7061;
}

/* ///////////////////////////////////////////////////////////////////// */
/* common */
.thum-sm__box img,
.thum-xsm__profilebox img,
.thum-sm__profilebox img,
.thum-md__profilebox img,
.thum-lg__profilebox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.__Pic-4-3 {
  aspect-ratio: 4/3;
  position: relative;
  border-radius: 5px;
}

.__Pic-16-9 {
  aspect-ratio: 16/9;
  position: relative;
}

.size-380-213 {
  border-radius: 5px 5px 0 0;
}

.pic-bg {
  padding: 40px;
  background-color: #2e7061;
}
.pic-bg .comment {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 24px;
  letter-spacing: -1.2px;
  line-height: 40px;
  font-family: "Noto Serif KR", serif;
}
.pic-bg .img-box {
  z-index: 2;
  position: absolute;
  right: 30px;
  bottom: 13px;
  width: 70px;
  height: 70px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
}
.pic-bg .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pic-bg .bg-img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 96px;
}
.pic-bg .bg-img::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent linear-gradient(180deg, var(--unnamed-color-007eb7) 0%, rgba(46, 112, 97, 0) 100%) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #2e7061 0%, rgba(46, 112, 97, 0) 100%) 0% 0% no-repeat padding-box;
  z-index: 1;
}
.pic-bg .bg-img img {
  border-radius: 0;
  width: 100%;
  object-fit: cover;
  height: 100%;
  mix-blend-mode: multiply;
}

.__Pic-4-3 img,
.__Pic-7-10 img,
.__Pic-16-9 img,
.__cardPic img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.size-149-112 {
  width: 149px;
  height: 112px;
  overflow: hidden;
}

.size-300-350 {
  width: 300px;
  height: 350px;
  aspect-ratio: 3/3.5;
  overflow: hidden;
}

.size-120-140 {
  width: 120px;
  height: 140px;
  aspect-ratio: 3/3.5;
  overflow: hidden;
}

.size-300-350 {
  width: 300px;
  height: 350px;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.size-312-234 {
  /* min-width: 312px;
    min-height: 234px; */
  aspect-ratio: 4/3;
  overflow: hidden;
}

.size-80-114 {
  width: 80px;
  height: 114px;
  border-radius: 5px;
  overflow: hidden;
}

.size-380-213 {
  /* width: 380px;
    height: 213px; */
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.size-180-100 {
  /* width: 180px; */
  /* height: 100px; */
  overflow: hidden;
  border-radius: 5px;
}

.size-r-114-114 {
  /* width: 114px;
    height: 114px; */
  /* margin-left: 20px; */
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
}

.size-r-50-50 {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 50%;
}

.hybrid {
  display: flex;
  row-gap: 15px;
  flex-direction: column;
}

figure.left {
  float: left;
  margin-right: 2%;
}
figure.left > img,
figure.left figcaption {
  max-width: 300px;
}
figure.right {
  float: right;
  margin-left: 2%;
}
figure.right > img,
figure.right figcaption {
  max-width: 300px;
}
figure > img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
}
figure > figcaption {
  font-size: 11px;
  line-height: 15px;
  color: #b2b2b2;
  margin: 5px 0 10px;
  display: flex;
  column-gap: 2%;
}
figure > figcaption::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #AE9A81;
  margin-top: 5px;
}
figure > figcaption > span {
  flex: 1;
}
figure > figcaption table {
  width: 100%;
}

.h-line1 {
  background: #eee;
  height: 1px !important;
}

.h-line1 {
  background: #DDD;
  height: 1px !important;
}

.hide {
  height: 70px;
}

.btn-more div {
  display: flex;
  border: 1px solid #DAEDF6;
  padding: 2px;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  flex: 1;
  padding: 10px;
  background-color: #F0F7FA;
  text-align: center;
  color: #2e7061;
}
.btn-more div i {
  margin-left: 5px;
  color: #2e7061;
}

/* /////////////////////////////////////////////////////////////////////////////// */
.thum-sm__box {
  /* height: 125px;
    width: 225px; */
  margin-bottom: 15px;
}

.thum-sm__profilebox {
  height: 200px;
  width: 140px;
}

.thum-md__profilebox {
  height: 225px;
  width: 163px;
  position: relative;
  z-index: 1;
}

.thum-lg__profilebox {
  height: 350px;
  width: 300px;
  position: relative;
  z-index: 1;
}

/* button */
.btn-wrap {
  display: flex;
  justify-content: center;
}

.btn {
  border: none;
  color: #171717;
  padding: 4px 10px;
  text-align: center;
  font-size: 12px;
  transition: 0.3s;
}

/* .btn-more {
    padding: 5px 20px;
    font-weight: bold;
} */
.btn-primary {
  background-color: #2e7061;
}

.btn-primary:hover {
  background-color: #952219;
}

.btn-default {
  background-color: #3a3a3a;
}

.btn-default:hover {
  background-color: #171717;
}

.btn-primary,
.btn-default {
  color: #fff;
}

.text-btn {
  display: flex;
  column-gap: 20px;
}

.text-btn span {
  font-size: 12px;
  color: #fff;
}

.sm-btn,
.sm-round {
  font-size: 12px;
}

.md-btn,
.md-round {
  font-size: 14px;
}

.lg-btn,
.lg-round {
  font-size: 16px;
}

.xs-round {
  border-radius: 5px;
}

.sm-round {
  border-radius: 30px;
}

.md-round {
  border-radius: 40px;
}

.lg-round {
  border-radius: 50px;
}

.alignL {
  align-items: flex-start !important;
}

.row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  margin: 0 -16px;
}

.col-25 {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
}

.col-50 {
  -ms-flex: 50%; /* IE10 */
  flex: 50%;
}

.col-75 {
  -ms-flex: 75%; /* IE10 */
  flex: 75%;
}

.col-25,
.col-50,
.col-75 {
  padding: 0 16px;
}

/* #myBtn {
    opacity: 0;
    width:40px;
    height:40px;
    position: fixed;
    bottom: 100px;
    right: 10px;
    z-index: 99;
    border: none;
    outline: none;

    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 0;
    transition: 0.5s;
    background:  $primary-color url(../images/Icon\ awesome-angle-double-up.png) no-repeat center center;
}

#myBtn:hover {
    background-color: #555;
} */
#shadow {
  display: none;
  width: 100%;
  position: absolute;
  top: 87px;
  height: 40px;
  box-shadow: 0px 16px 14px -18px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 16px 14px -18px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 16px 14px -18px rgba(0, 0, 0, 0.5);
}

.overlay {
  height: 200px;
  width: 100%;
  position: fixed;
  z-index: 100;
  bottom: -200px;
  left: 0;
  /* background-color: rgba(0,0,0, 0.9); */
  /* overflow-y: hidden; */
  transition: 0.5s;
  animation: mymove 1s;
  animation-iteration-count: 1;
}

@keyframes mymove {
  0% {
    bottom: -200px;
  }
  50% {
    bottom: -45px;
  }
  100% {
    bottom: -200px;
  }
}
.overlay-content {
  position: relative;
  height: 80%;
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.overlay-content .con-sidenav {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.overlay-mask {
  display: none;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #fff;
  display: block;
  transition: 0.3s;
}

.profile-nav {
  width: 100%;
  height: 70px;
  border-radius: 20px 20px 0 0;
  background: #2e7061;
  position: fixed;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.5s;
  animation: btnmove 1s;
  animation-iteration-count: 1;
}

@keyframes btnmove {
  0% {
    bottom: 0px;
  }
  50% {
    bottom: 155px;
  }
  100% {
    bottom: 0px;
  }
}
.profile-nav span {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 5px;
  flex: 1;
}

.profile-nav span::before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background: url(../images/reorder-four-outline.png) no-repeat center center;
}

.overlay a:hover,
.overlay a:focus {
  color: #f1f1f1;
}

.overlay .closebtn {
  position: absolute;
  top: 0;
  right: 10px;
  font-size: 30px;
  display: none;
}

.over-btn-wrap .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
  z-index: 1000;
  display: none;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 10; /* Sit on top */
  left: 0;
  top: 80px;
  width: 100%; /* Full width */
  overflow: auto; /* Enable scroll if needed */
}

/* Modal Content */
.modal-content {
  position: relative;
  margin: auto;
  padding: 0;
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.h-line10 {
  background: #eee;
  height: 10px !important;
}

.h-line13 {
  /* background:url(../images/logobg.png) repeat-x; */
  background: #E9E9E9;
  width: 100%;
  height: 1px !important;
}

.h-line14 {
  background: #DEDEDE;
  width: 1px;
}

.w-line {
  border: 1px solid #DEDEDE;
  margin: 0;
}

.w-line1 {
  margin: 0;
  border: 1px solid #A2B7B6;
}

.bgnone {
  background: unset !important;
}

.pdT5 {
  padding-top: 5px !important;
}

.mrT10 {
  margin-top: 10px !important;
}

.mrT20 {
  margin-top: 20px !important;
}

.mrT40 {
  margin-top: 400px !important;
}

.mrT41 {
  margin-top: 410px !important;
}

.mrT45 {
  margin-top: 450px !important;
}

.mrL20 {
  margin-left: 20px !important;
}

.mrR20 {
  margin-right: 20px !important;
}

.mrB0 {
  margin-bottom: 0 !important;
}

.mrB10 {
  margin-bottom: 10px !important;
}

.mrB15 {
  margin-bottom: 15px !important;
}

.mrB20 {
  margin-bottom: 20px !important;
}

.dpflex {
  display: flex;
}

.alignLR {
  justify-content: space-between;
}

/* clamp */
.clamp3 {
  -webkit-line-clamp: 3 !important;
}

.clamp4 {
  -webkit-line-clamp: 4 !important;
}

.clamp5 {
  -webkit-line-clamp: 5 !important;
}

.clamp6 {
  -webkit-line-clamp: 6 !important;
}

.clamp7 {
  -webkit-line-clamp: 7 !important;
}

.clamp8 {
  -webkit-line-clamp: 8 !important;
}

.clamp9 {
  -webkit-line-clamp: 9 !important;
}

.clamp10 {
  -webkit-line-clamp: 10 !important;
}

.w100 {
  max-width: 100% !important;
}

.flex {
  flex: 1;
}

/*# sourceMappingURL=reset.css.map */
