main {
  /* background-color: var(--main_bgColor); */
  /* background-color: blueviolet; */
  background-color: #fff;

  height: 100%;
}

/* main */
header {
  width: 100% !important;
  height: var(--h_header);
}
header > .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  background-color: white;
  opacity: 0.7;
}
header .content {
  height: var(--h_header);
  padding: 0 var(--w_padding);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header img.logo {
  width: 120px;
  height: 30px;
}
header .content .nav {
  width: 100%;
  height: 100%;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
}
header .content .nav > a {
  width: auto;
  height: 100%;
  display: flex;
  align-items: center;
}
header .content .nav > a .cont {
  width: auto;
  padding: 0 20px;
  font-family: "NanumSquare_acB";
}
header .content .nav > .cont:last-child {
  padding-right: 0;
}

/******************** index.html *********************/
/* main_cont */
.main_cont {
  position: relative;
  padding-top: 0;

  height: 100%;
}

/* banner */
.main_cont .banner-cont {
  overflow: hidden;
  height: 85vh;
}
.main_cont .banner-cont .wrapper {
}
.main_cont .banner-cont .bannerSwiper {
  /* top: -110px; */
  top: -110px;
}
.main_cont .banner-cont .bannerSwiper img {
  width: 100%;
}
@media (max-width: 1399.98px) {
  .main_cont .banner-cont .bannerSwiper {
    top: -60px;
  }
}
@media (max-width: 1199.98px) {
  .main_cont .banner-cont .bannerSwiper {
    top: 0;
  }
}

/* service */
#service {
  padding: 150px 0 26px;
}
#service h1 {
  /* text-align: center; */
  font-size: 40px;
  font-family: "SUIT-Bold";
}
#service .content .row {
  justify-content: space-between;
  margin-top: 30px;
  width: calc(100% + 54px);
  margin-left: -27px;
}
#service .content .row > div {
  padding: 0 30px;
}
#service .content .cont {
  height: 100%;
  box-shadow: 0px 0px 40px #0000001a;
  color: var(--font_color-1);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 15px 5px 15px;
  border-radius: 10px;
  background-color: white;
}
#service .content .cont img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
#service .content .cont .text {
  width: 100%;
  text-align: right;
  font-family: "SUIT-ExtraLight";
  margin-top: 3px;
}

/* establishment */
#establishment {
  margin-top: 100px;
  margin-bottom: 20px;
  /* padding: 50px 0 150px; */
  background: linear-gradient(90deg, #61719b, #192443);
  padding: 56px 0 60px;
}
#establishment h1 {
  /* text-align: center; */
  font-size: 29px;
  font-family: "SUIT-Bold";
  color: var(--font_color-4);
}
#establishment .content {
  position: relative;
}
#establishment .content img.quotes {
  width: 100px;
  position: absolute;
  top: -50px;
  left: 150px;
}
#establishment .content .text {
  margin-top: 60px;
  text-align: center;
  color: white;
}

/* contact */
#contact {
  padding: 100px 0 150px;
}
#contact h1 {
  /* text-align: center; */
  font-size: 40px;
  font-family: "SUIT-Bold";
}
#contact .map {
  margin-top: 20px;
}
#contact .map .call form {
  /* margin-top: 20px; */
}
#contact .map #daumRoughmapContainer1675748089358 {
  height: auto !important;
}
#contact form label {
  display: block;
  margin-bottom: 25px;
  font-size: 24px;
  font-family: "NanumSquare_acB";
}
#contact form label textarea {
  height: 120px;
}
#contact form label input,
#contact form label textarea {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid var(--line_color-2);
  border-radius: 7px;
  color: var(--font_color-3);
  outline: var(--contact-form_color);
  width: 100%;

  padding: 8px 10px;

  font-family: "SUI T-Regular";
}
#contact form label input::placeholder,
#contact form label textarea::placeholder {
  color: var(--font_color-3);
}
#contact form label:hover input,
#contact form label:hover textarea {
  background-color: rgb(242, 250, 249);
}
#contact form button {
  font-size: 16px;
  line-height: 29px;
  letter-spacing: 0;
  color: var(--font_color-4);
  font-family: "SUIT-Bold";

  border: 3px solid var(--brand_color-1);
  background-color: var(--brand_color-1);
  width: 120px;
  height: 36px;
  border-radius: 25px;
  float: right;

  cursor: pointer;
  transition: var(--a_transition);
}
#contact form button:hover {
  box-shadow: 0px 3px 9px 0px rgb(0 0 0 / 40%);
}
/******************** index.html 끝 *********************/

/******************** about.html *********************/
/* greeting */
#greeting {
  padding: 120px 0 0;
}
#greeting .bg {
  position: absolute;
  width: 85%;
  height: 400px;
  background-color: #f4f4f4;
  left: 15%;
  top: 230px;
}
#greeting .content {
  display: flex;
}
#greeting .img {
  width: 300px;
  height: 450px;
  position: relative;
}
#greeting .img img {
  width: 300px;
  height: 450px;
  position: absolute;
  z-index: 1;
}
#greeting .img::before {
  content: "";
  width: 300px;
  height: 450px;
  background-color: #a0a0a0;
  /* background-color: #eeeeee; */
  background-color: #e2e2e2;
  position: absolute;
  left: 18px;
  top: 13px;
}
#greeting .detail {
  margin-left: 130px;
  position: relative;
  z-index: 1;
  width: calc(100% - 130px);
}
#greeting .detail .name {
  font-size: 40px;
  font-family: "SUIT-Bold";
  padding: 13px 0 0;
  color: #1c18c8;
}
#greeting .detail .pos {
  font-size: 20px;
  font-family: "SUIT-Bold";
  color: #191919;
}
#greeting .detail .text {
  font-size: 17px;
  font-family: "SUIT-Medium";
  color: #191919;
  margin-top: 25px;
}
#greeting .detail .text > div {
  margin-bottom: 10px;
}

/* executive */
#executive {
  padding: 100px 0 120px;
}
#executive h1 {
  /* text-align: center; */
  font-size: 40px;
  font-family: "SUIT-Bold";
}
#executive .sub-executive {
  margin-top: 10px;
}
#executive .sub-executive.row > div {
  padding: 1.5rem;
}
#executive .sub-executive .cont {
  border: 1.5px solid rgb(10, 10, 75);
  border-radius: 5px;
}
#executive .sub-executive .cont .pos {
  background-color: rgb(232, 245, 254);
  color: rgb(0 100 169);
  font-family: "SUIT-Medium";
  font-size: 22px;
  text-align: center;
  padding: 10px 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
#executive .sub-executive .cont .detail {
  padding: 20px 30px;
}
#executive .sub-executive .cont .detail > div.bunch {
  margin-top: 10px;
  display: flex;
  align-items: center;
}
#executive .sub-executive .cont .detail > div:not(div.bunch) {
  margin-top: 10px;
  display: flex;
  align-items: flex-start;
}
#executive .sub-executive .cont .detail div .title {
  font-family: "SUIT-Bold";
  font-size: 19px;
  letter-spacing: 2px;
}
#executive .sub-executive .cont .detail .bunch > div {
  width: 50%;
  display: flex;
}
#executive .sub-executive .cont .detail div .sub {
  font-family: "NanumSquare_acR";
  font-size: 17px;
  padding-left: 8px;
  padding-top: 1px;
}

/* partnership */
#partnership {
  padding-bottom: 150px;
}
#partnership h1 {
  /* text-align: center; */
  font-size: 40px;
  font-family: "SUIT-Bold";
}
#partnership .company > div .cont {
  height: 100%;
  padding: 20px 40px;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 40px #0000001a;
  border-radius: 22px;

  display: flex;
  justify-content: center;
  align-items: center;
}
#partnership .company {
  margin-top: 60px;
  /* padding: 0 50px 0 70px; */
}
#partnership .company > div {
  padding: 0 30px 0;
}
#partnership .company > div img {
  width: 73%;
}
#partnership .company .text {
  font-size: 30px;
  font-family: "SUIT-Medium";
  height: 100%;
  padding-top: 30px;
}
/******************** about.html 끝 *********************/

/******************** donation.html *********************/
/* donation */
#donation {
  padding: 150px 0 150px;
}
#donation h1 {
  /* text-align: center; */
  font-size: 40px;
  font-family: "SUIT-Bold";
}
#donation .search {
  display: flex;
  justify-content: flex-end;
}
#donation .search > form {
  width: 42%;
  justify-content: flex-end;
}
#donation .search > form .input-text input:focus,
#donation .search > form button:focus {
  outline: none;
}
#donation .search > form .input-text {
  height: 40px;
  border-radius: 21px;
  border: 1px solid var(--line_color-1);
  background-color: var(--font_color-4);
  box-shadow: 0px 2px 10px #00000026;
}
#donation .search > form .input-text input {
  width: 100%;
  border: none;
  background-color: initial;
  color: var(--font_color-3);
  padding: 0;
  padding-left: 20px;
  font-family: "SUIT-Regular";
}
#donation .search > form button {
  border: none;
  cursor: pointer;
  background-color: initial;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;
}
#donation .search > form button img.icon {
  width: 50%;
}
#donation .list {
  margin-top: 30px;
  margin-bottom: 0;
  text-align: center;
}
#donation .list thead {
  border-top: 3px solid #333333;
}
#donation .list tbody {
  border-bottom: 2px solid #333333;
}
#donation .list thead tr,
#donation .list tbody tr:not(:last-of-type) {
  border-bottom: 2px solid #dee2e6;
}
#donation .list thead tr {
  border-bottom: 2px solid #333333;
}
#donation .list thead th,
#donation .list tbody td:not(.over) {
  border: none;
  padding: 15px;
}
#donation .list tbody td {
  font-family: "SUIT-Medium";
}
#donation .list tbody td.noData {
  padding: 5%;
}
#donation .list tbody td.over {
  /* padding: 15px 10px; */
  padding: 15px 10px 0;

  overflow: hidden;
  text-overflow: ellipsis;

  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
#donation .list tbody .cont {
  cursor: pointer;
}
#donation .list tbody .cont:hover {
  /* background-color: rgb(250, 250, 250); */
  background-color: #f0f4ff;
}
#donation .list ul.pagination > li {
  min-width: 50px;
  text-align: center;
}
#donation .bottom-cont {
  position: relative;
}
#donation .total {
  position: absolute;
  right: 0;
  top: 25px;
  font-size: 20px;
  font-family: "SUIT-Regular";
}
#donation .paging {
  padding-top: 25px;
}
#donation .paging li {
  padding: 0 10px;

  cursor: pointer;

  color: var(--font_color-1);
  font-family: "SUIT-Medium";

  user-select: none;
}
#donation .paging li.active {
  color: red;
}
#donation .paging li:first-child {
  padding: 0 20px 0 0;
}
#donation .paging li:last-child {
  padding: 0 0 0 20px;
}
#donation .paging li:first-child span,
#donation .paging li:last-child span {
  letter-spacing: -4px;
}
/******************** donation.html 끝 *********************/

/******************** donation_detail.html 끝 *********************/
/* donation_detail */
#donation_detail {
  padding: 150px 0 150px;
}
#donation_detail h1 {
  /* text-align: center; */
  font-size: 40px;
  font-family: "SUIT-Bold";
}
#main-detail {
  margin-top: 65px;
}
#main-detail tr {
  padding: 0;
}
#main-detail tr:first-child {
  border-top: 2px solid #333333;
}
#main-detail tr:last-child {
  border-bottom: 2px solid #333333;
}
#main-detail tr.detail {
  /* height: 310px; */
  height: 200px;
}
#main-detail tr td {
  padding-left: 50px;
  padding-right: 50px;
}
#main-detail tr.main td {
  display: flex;
  justify-content: space-between;

  padding-top: 12px;
  padding-bottom: 12px;

  font-size: 19px;
  line-height: 24px;
  font-family: "SUIT-Bold";
}
#main-detail tr.main td a.link-btn {
  color: var(--brand_color-1);
  transition: 0.1s;
}
#main-detail tr.main td a.link-btn:hover {
  color: black;
}
#main-detail tr.main td a.link-btn {
  display: flex;
  align-items: baseline;
}
#main-detail tr.createdAt td,
#main-detail tr.updateAt td {
  padding-top: 8px;
  padding-bottom: 8px;

  font-size: 18px;
  line-height: 23px;
  font-family: "SUIT-Bold";
}
#main-detail tr.detail td {
  padding-top: 30px;
  padding-bottom: 30px;

  display: flex;
  flex-wrap: wrap;

  text-align: start;

  font-size: 17px;
  line-height: 21px;
  font-family: "SUIT-Medium";
}
#main-detail tr.main-images ~ tr.detail td {
  padding-top: 10px;
}
#main-detail tr.main-images {
  border: none;
}
#main-detail tr.main-images td {
  padding-top: 20px;
  padding-bottom: 20px;

  display: flex;
  flex-wrap: wrap;
}
#main-detail tr.main-images td .img {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 10px;
}
#main-detail tr.main-images td > div {
  padding: 10px;
}
#main-detail tr.main-images td img {
  width: 100%;
  cursor: pointer;
}
#main-content .img-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100000000;

  display: none;
}
#main-content .img-popup .cont {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: rgba(53, 53, 53, 0.393);
}
#main-content .img-popup .cont img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 50%;
  height: auto;
  max-height: 85%;
}
#main-content .img-popup .cont .icon {
  cursor: pointer;
  position: absolute;
}
#main-content .img-popup .cont .close {
  font-size: 50px;
  top: 20px;
  right: 30px;
}
#main-content .img-popup .cont .arrow {
  user-select: none;
  font-size: 200px;
}
#main-content .img-popup .cont .arrow .icon {
  line-height: 200px;
  overflow: hidden;
}
#main-content .img-popup .cont .left {
  left: 13%;
  top: 50%;
  transform: translateY(-50%);
}
#main-content .img-popup .cont .right {
  right: 13%;
  top: 50%;
  transform: translateY(-50%);
}
#main-content .img-popup .cont .number {
  display: inline-block;
  position: absolute;
  width: 80px;
  bottom: 20px;
  right: 30px;
  display: flex;
  justify-content: space-between;
  color: black;
}
#main-content .img-popup .cont .number * {
  color: black;
}
#main-detail .btn {
  margin-top: 50px;
  width: 100%;
  text-align: right;
  padding: 0;
}
#main-detail .btn a {
  border: 2px solid #333333;
  padding: 10px 30px;
  color: var(--font_color-1);
  border-radius: 3px;

  font-size: 15px;
  font-family: "SUIT-Medium";
}
#medical-detail #main-detail .detail h1,
#medical-detail #main-detail .detail h2,
#medical-detail #main-detail .detail h3,
#medical-detail #main-detail .detail h4,
#medical-detail #main-detail .detail h5,
#medical-detail #main-detail .detail h6,
#medical-detail #main-detail .detail ul,
#medical-detail #main-detail .detail ol {
  width: 100%;
}

/* footer */
footer {
  background-color: #f2f2f2;
  padding: 50px 0 30px 0px;
  font-size: 14px;
  text-align: start;
  font-family: "SUIT-SemiBold";
}
footer .logo {
  width: 100px;
}
footer .government > div {
  padding: 10px;
  text-align: right;
}
footer .government > div img {
  width: 80%;
}
