@-webkit-keyframes magnifier {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  17% {
    -webkit-transform: translate(40px, 0);
            transform: translate(40px, 0);
  }
  34% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  51% {
    -webkit-transform: translate(40px, 0);
            transform: translate(40px, 0);
  }
  68% {
    -webkit-transform: translate(40px, -50px);
            transform: translate(40px, -50px);
  }
  85% {
    -webkit-transform: translate(40px, 0);
            transform: translate(40px, 0);
  }
  to {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes magnifier {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  17% {
    -webkit-transform: translate(40px, 0);
            transform: translate(40px, 0);
  }
  34% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  51% {
    -webkit-transform: translate(40px, 0);
            transform: translate(40px, 0);
  }
  68% {
    -webkit-transform: translate(40px, -50px);
            transform: translate(40px, -50px);
  }
  85% {
    -webkit-transform: translate(40px, 0);
            transform: translate(40px, 0);
  }
  to {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@-webkit-keyframes bubble {
  from {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    opacity: 1;
  }
  to {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
    opacity: 0;
  }
}

@keyframes bubble {
  from {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    opacity: 1;
  }
  to {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
    opacity: 0;
  }
}

.headroom {
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}

.headroom--unpinned {
  display: block;
}

.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.9;
  background-color: #414042;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.icon {
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.icon.icon-suggest {
  background-image: url("../img/icon/sidebar-suggest.svg");
}

.icon.icon-share {
  background-image: url("../img/icon/sidebar-share.svg");
}

.icon.icon-contact {
  background-image: url("../img/icon/sidebar-contact.svg");
}

.icon.icon-bookmark {
  background-image: url("../img/icon/bookmark.svg");
}

.icon.icon-bookmarked {
  background-image: url("../img/icon/bookmarked.svg");
}

.icon.icon-back {
  background-image: url("../img/icon/chevron-arrow.svg");
}

.icon.icon-copy {
  background-image: url("../img/icon/copy.svg");
}

.icon.icon-eye {
  background-image: url("../img/icon/eye.svg");
}

.icon.icon-eye-hide {
  background-image: url("../img/icon/eye-hide.svg");
}

.icon.icon-bin {
  background-image: url("../img/icon/bin.svg");
}

.icon.icon-blue-bin {
  background-image: url("../img/icon/bin-blue.svg");
}

html.aos-init .sidebar {
  -webkit-transform: translateX(0) translateY(-50%);
          transform: translateX(0) translateY(-50%);
}

@media screen and (max-width: 1179px) {
  html.aos-init .sidebar {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

.sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 2;
  -webkit-transform: translateX(100%) translateY(-50%);
          transform: translateX(100%) translateY(-50%);
  -webkit-box-shadow: 0px 4px 15px 0px rgba(88, 89, 91, 0.1);
          box-shadow: 0px 4px 15px 0px rgba(88, 89, 91, 0.1);
  border: 2px solid #ffffff;
  border-radius: 0 20px 20px;
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}

@media screen and (max-width: 1179px) {
  .sidebar {
    top: auto;
    bottom: 0;
    left: 0;
    right: auto;
    width: 100%;
    border-radius: 0px 40px 0px 0px;
    background-color: #ffffff;
    -webkit-box-shadow: 0px -4px 15px 0px rgba(88, 89, 91, 0.1);
            box-shadow: 0px -4px 15px 0px rgba(88, 89, 91, 0.1);
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-transform: translateX(0) translateY(100%);
            transform: translateX(0) translateY(100%);
    padding: 10px 32px 24px 32px;
  }
}

@media screen and (min-width: 576px) and (max-width: 1179px) {
  .sidebar {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 575px) {
  .sidebar {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.sidebar .item {
  text-align: center;
}

@media screen and (min-width: 1180px) {
  .sidebar .item:first-child a {
    border-radius: 0 18px 0 0;
  }
}

@media screen and (min-width: 1180px) {
  .sidebar .item:last-child a {
    border-radius: 0 0 18px 18px;
  }
}

.sidebar .item:not(:last-child) {
  border-bottom: 2px solid #ffffff;
}

@media screen and (min-width: 576px) and (max-width: 1179px) {
  .sidebar .item:not(:last-child) {
    margin-right: 100px;
  }
}

.sidebar .item a {
  display: inline-block;
  padding: 18px;
  background-color: #F4F4F4;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

@media screen and (max-width: 1179px) {
  .sidebar .item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
  }
}

.sidebar .item a:hover {
  opacity: 1;
}

@media screen and (min-width: 1180px) {
  .sidebar .item a:hover {
    background-color: #E6E6E6;
  }
}

.sidebar .item a:hover .txt {
  color: #0C8295;
}

.sidebar .item .icon {
  width: 30px;
  height: 30px;
  padding: 4px;
}

@media screen and (max-width: 1179px) {
  .sidebar .item .icon {
    width: 28px;
    height: 28px;
    margin-bottom: 4px;
  }
}

.sidebar .item .txt {
  display: block;
  width: 70px;
  letter-spacing: 0.48px;
  font-size: 0.9375em;
  line-height: 1.33;
}

@media screen and (max-width: 1179px) {
  .sidebar .item .txt {
    width: auto;
  }
}

.arrow-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.arrow-btn:hover .icon-arrow:before {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.arrow-btn:hover .icon-arrow:after {
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}

.arrow-btn .icon-arrow {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #414042;
}

@media screen and (max-width: 991px) {
  .arrow-btn .icon-arrow {
    width: 40px;
    height: 40px;
  }
}

.arrow-btn .icon-arrow:before, .arrow-btn .icon-arrow:after {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  display: block;
  background-image: url("../img/icon/chevron-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 48px;
  height: 48px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 991px) {
  .arrow-btn .icon-arrow:before, .arrow-btn .icon-arrow:after {
    width: 32px;
    height: 32px;
  }
}

.arrow-btn .icon-arrow:before {
  opacity: 0;
  -webkit-transform: translateX(-60px);
          transform: translateX(-60px);
}

.arrow-btn .icon-arrow:after {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.arrow-btn .txt {
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.6;
  margin-left: 32px;
}

@media screen and (max-width: 991px) {
  .arrow-btn .txt {
    margin-left: 16px;
    font-size: 1em;
    line-height: 2;
    letter-spacing: 1.6px;
  }
}

.com-btn {
  display: inline-block;
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 2px;
  border: 1px solid #414042;
  border-radius: 16px;
  background-color: #414042;
  padding: 12px 40px;
  color: #ffffff;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .com-btn {
    font-size: 1em;
    padding: 8px 20px;
    border-radius: 8px;
  }
}

.com-btn:hover {
  background-color: #ffffff;
  color: #414042;
  opacity: 1;
}

.txt-btn {
  position: relative;
  font-weight: 500;
  letter-spacing: 1.6px;
  line-height: 2;
  display: inline-block;
}

.txt-btn:hover {
  opacity: 1;
}

.txt-btn:hover:after {
  width: 100%;
  -webkit-animation: extend 0.3s ease-in-out;
          animation: extend 0.3s ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.txt-btn:after {
  content: "";
  background-color: #414042;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.breadcrumb {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#F3F3F3), to(rgba(243, 243, 243, 0)));
  background: linear-gradient(180deg, #F3F3F3 0%, rgba(243, 243, 243, 0) 100%);
}

.breadcrumb .container {
  max-width: 1440px;
}

@media screen and (max-width: 991px) {
  .breadcrumb .container {
    padding: 0 24px;
  }
}

.breadcrumb .row {
  padding: 12px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 991px) {
  .breadcrumb .row {
    padding: 8px 0;
  }
}

.breadcrumb a {
  color: #58595B;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 991px) {
  .breadcrumb a {
    font-size: 0.75em;
  }
}

.breadcrumb a:not(:last-child):after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("../img/icon/chevron-right-breadcrumb.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin: 0 16px;
}

@media screen and (max-width: 991px) {
  .breadcrumb a:not(:last-child):after {
    width: 12px;
    height: 12px;
    margin: 0 8px;
  }
}

.page-intro {
  position: relative;
}

.page-intro .row {
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.page-intro .col-desc {
  position: relative;
  z-index: 1;
  padding-top: 70px;
  width: 74%;
  margin-right: -210px;
}

@media screen and (max-width: 991px) {
  .page-intro .col-desc {
    margin-right: -180px;
    width: 100%;
    padding-top: 43px;
  }
}

.page-intro .col-desc:before {
  content: "";
  display: block;
  border-radius: 50px;
  width: 1028px;
  height: 80px;
  position: absolute;
  z-index: -1;
}

@media screen and (max-width: 991px) {
  .page-intro .col-desc:before {
    width: 1028px;
    height: 80px;
  }
}

@media screen and (max-width: 991px) {
  .page-intro .col-desc:before {
    display: none;
  }
}

.page-intro .col-desc h1 {
  font-size: 4em;
  font-weight: 500;
  padding-bottom: 28px;
}

@media screen and (max-width: 991px) {
  .page-intro .col-desc h1 {
    font-size: 2em;
  }
}

.page-intro .col-desc .txt-wrap {
  padding: 72px 88px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(62.39%, #FFF), color-stop(100.73%, rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, #FFF 62.39%, rgba(255, 255, 255, 0) 100.73%);
  border-radius: 0px 200px 0px 0px;
  font-size: 1.25em;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.4px;
  color: #58595B;
}

@media screen and (max-width: 991px) {
  .page-intro .col-desc .txt-wrap {
    padding: 16px 48px 32px 32px;
    margin-left: -32px;
    border-radius: 0px 100px 0px 0px;
    font-size: 1em;
    line-height: 1.5;
    letter-spacing: 0.32px;
    font-weight: 400;
  }
}

.page-intro .col-desc .txt-wrap h2 {
  font-size: 1.6em;
  line-height: 1.25;
  margin-top: 12px;
}

.page-intro .col-desc .txt-wrap p {
  line-height: 2;
}

.page-intro .col-desc .txt-wrap a {
  color: #45B1C2;
}

.page-intro .col-bg {
  position: relative;
  width: 52%;
}

@media screen and (max-width: 991px) {
  .page-intro .col-bg {
    width: 56%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

@media screen and (max-width: 575px) {
  .page-intro .col-bg {
    position: absolute;
    right: -32px;
    top: 0;
  }
}

.page-intro .col-bg .bg {
  position: relative;
  height: auto;
  border-bottom-left-radius: 400px;
  overflow: hidden;
  margin-right: -160px;
}

.page-intro .col-bg .bg:before {
  content: "";
  display: block;
}

@media screen and (max-width: 991px) {
  .page-intro .col-bg .bg:before {
    padding-top: 100.48309%;
  }
}

@media screen and (min-width: 992px) {
  .page-intro .col-bg .bg:before {
    padding-top: 78.65169%;
  }
}

@media screen and (max-width: 991px) {
  .page-intro .col-bg .bg {
    margin-right: -32px;
    border-bottom-left-radius: 250px;
  }
}

.page-intro .col-bg .bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-intro .category {
  font-size: 1em;
  line-height: 1.33;
  letter-spacing: 0.72px;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

@media screen and (max-width: 991px) {
  .page-intro .category {
    font-size: 0.875em;
    line-height: 1.71;
  }
}

.page-intro .category span {
  display: inline-block;
  background-color: #EDE372;
  padding: 12px 20px;
  border-radius: 40px;
}

@media screen and (max-width: 991px) {
  .page-intro .category span {
    padding: 0 12px;
  }
}

.page-intro.reverse-intro h1 {
  font-size: 2em;
  line-height: 1.4;
  color: #414042;
  padding-bottom: 32px;
}

@media screen and (max-width: 991px) {
  .page-intro.reverse-intro h1 {
    font-size: 1.5em;
    padding-bottom: 12px;
  }
}

.page-intro.reverse-intro p {
  padding: 12px 0;
  margin: 0;
}

@media screen and (max-width: 991px) {
  .page-intro.reverse-intro .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.page-intro.reverse-intro .col-desc {
  padding-top: 176px;
  width: 61%;
}

@media screen and (max-width: 991px) {
  .page-intro.reverse-intro .col-desc {
    padding-top: 0;
    width: calc(100% + 32px);
    margin-top: -40px;
    margin-left: -32px;
    margin-right: 0;
  }
}

.page-intro.reverse-intro .col-desc:before {
  content: "";
  display: block;
  border-radius: 50px;
  width: 545px;
  height: 73px;
  position: absolute;
  z-index: -1;
  background-image: -webkit-gradient(linear, right top, left top, color-stop(1.86%, rgba(255, 255, 255, 0)), color-stop(98.16%, #FFF));
  background-image: linear-gradient(to left, rgba(255, 255, 255, 0) 1.86%, #FFF 98.16%);
  top: 43px;
  left: -98px;
}

@media screen and (max-width: 991px) {
  .page-intro.reverse-intro .col-desc:before {
    width: 281px;
    height: 169px;
  }
}

@media screen and (max-width: 991px) {
  .page-intro.reverse-intro .col-desc:before {
    display: none;
  }
}

.page-intro.reverse-intro .col-desc .txt-wrap {
  padding: 48px 80px 48px 0;
  background: #FAF9F7;
}

@media screen and (max-width: 991px) {
  .page-intro.reverse-intro .col-desc .txt-wrap {
    padding: 32px 83px 32px 48px;
    margin-left: 0;
  }
}

.page-intro.reverse-intro .col-desc .txt-wrap h2 {
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .page-intro.reverse-intro .col-desc .txt-wrap h2 {
    font-size: 1.5em;
  }
}

.page-intro.reverse-intro .col-bg {
  width: 40%;
  margin-right: 0;
  margin-left: -200px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media screen and (max-width: 991px) {
  .page-intro.reverse-intro .col-bg {
    position: relative;
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    margin-left: 0;
    margin-right: 0;
  }
}

.page-intro.reverse-intro .col-bg .bg {
  border-radius: 400px 0px 0px 0px;
  margin-right: -180px;
  position: relative;
  height: auto;
}

.page-intro.reverse-intro .col-bg .bg:before {
  content: "";
  display: block;
}

@media screen and (max-width: 991px) {
  .page-intro.reverse-intro .col-bg .bg:before {
    padding-top: 39.3627%;
  }
}

@media screen and (min-width: 992px) {
  .page-intro.reverse-intro .col-bg .bg:before {
    padding-top: 39.3627%;
  }
}

@media screen and (max-width: 991px) {
  .page-intro.reverse-intro .col-bg .bg {
    margin-right: -32px;
    width: calc(100% + 32px);
  }
}

.page-intro .intro {
  padding-top: 58px;
  margin-bottom: 54px;
}

@media screen and (max-width: 991px) {
  .page-intro .intro {
    padding-top: 27px;
    margin-bottom: 44px;
  }
}

.page-intro .intro h1 {
  font-size: 4em;
  font-weight: 500;
  margin-bottom: 40px;
}

@media screen and (max-width: 991px) {
  .page-intro .intro h1 {
    font-size: 2em;
    margin-bottom: 20px;
  }
}

.page-intro .intro p {
  font-size: 1.25em;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.4px;
  color: #58595B;
  margin: 0;
}

@media screen and (max-width: 991px) {
  .page-intro .intro p {
    font-size: 1em;
    font-weight: 400;
    letter-spacing: 0.32px;
  }
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  width: 32px !important;
  height: 32px !important;
  top: 12px !important;
  right: 16px !important;
}

@media screen and (max-width: 991px) {
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 5px !important;
  }
}

.select2-container--default .select2-selection--single .select2-selection__arrow:after {
  content: "";
  position: absolute;
  display: block;
  background-image: url("../img/icon/chevron-down-black.svg");
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 4px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 991px) {
  .select2-container--default .select2-selection--single .select2-selection__arrow:after {
    top: -4px;
  }
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
}

.select2-container .select2-selection--multiple .select2-selection__rendered li {
  margin-top: 0;
}

.select2-selection--multiple {
  height: 54px !important;
}

@media screen and (max-width: 991px) {
  .select2-selection--multiple {
    height: 44px !important;
  }
}

.select2-selection--multiple:after {
  content: "";
  position: absolute;
  display: block;
  background-image: url("../img/icon/chevron-down-black.svg");
  width: 32px;
  height: 32px;
  right: 16px;
  top: 12px;
  padding: 4px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 991px) {
  .select2-selection--multiple:after {
    top: 8px;
  }
}

.select2-container--default .select2-selection--multiple {
  cursor: pointer !important;
}

.select2-results__option.select2-results__message {
  display: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: transparent !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  top: 3px !important;
}

.select2-dropdown {
  border-radius: 8px !important;
}

.select2-results__option {
  padding: 12px 16px !important;
}

@media screen and (max-width: 991px) {
  .select2-results__option {
    padding: 8px 16px !important;
  }
}

.select2-results__option:hover {
  opacity: 0.8;
}

.select2-container {
  width: 100% !important;
  max-width: 100%;
}

.select2-container--open .select2-dropdown {
  top: 8px;
  border: 1px solid rgba(88, 89, 91, 0.5) !important;
  border-top-width: 1px !important;
}

.select2-container--default .select2-results__option--selected {
  background-color: #ffffff !important;
  color: #0C8295;
}

.select2-container--default .select2-results > .select2-results__options {
  border-radius: 8px;
  max-height: 400px !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding: 12px 16px !important;
  border-radius: 8px;
  border: 1px solid rgba(88, 89, 91, 0.5);
  background-color: #F4F4F4;
}

@media screen and (max-width: 991px) {
  .select2-container .select2-selection--single .select2-selection__rendered {
    padding: 8px 10px !important;
  }
}

.select2-container--default .select2-selection--single {
  border: 0 !important;
  background-color: transparent !important;
}

.select2-container .select2-selection--single {
  height: auto !important;
}

.select2-container--default .select2-selection--multiple {
  background-color: #F4F4F4 !important;
  border-radius: 8px !important;
  border: 1px solid rgba(88, 89, 91, 0.5) !important;
  padding: 12px 60px 12px 16px !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  color: #414042 !important;
  background-color: transparent !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable.select2-results__option--selected {
  color: #0C8295 !important;
}

.select2-container--default .select2-results__options[aria-multiselectable="true"] .select2-results__option--selected {
  color: #0C8295 !important;
  background-color: transparent !important;
  background-image: url("../img/icon/checked.svg");
  background-size: 24px 24px;
  background-position: right 16px center;
  background-repeat: no-repeat;
  padding-right: 50px !important;
}

.form-error .input-group, .form-error select, .form-error input, .form-error > textarea, .form-error .select2-container .select2-selection--single .select2-selection__rendered,
.form-error .select2-container--default .select2-selection--multiple {
  border-color: #E52D5E !important;
  background-color: #FFDDE6 !important;
}

.loading {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 3;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: none;
}

.loading img {
  width: 100px;
}

.status {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 8px;
}

.status[data-type="completed"] {
  border: 1px solid #58595B;
  background-color: #FAFAFA;
}

.status[data-type="processing"] {
  border: 1px solid #008927;
  background-color: #F2FFF6;
  color: #008927;
}

.btn-back span {
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.6;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn-back span:before {
  content: "";
  display: inline-block;
  background-image: url("../img/icon/chevron-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 40px;
  height: 40px;
  margin-right: 12px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.btn-back span:hover:before {
  -webkit-transform: translate(-5px);
          transform: translate(-5px);
}

.popup {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
  background-color: #ffffff;
}

.popup:before {
  content: "";
  display: block;
  border-radius: 50px;
  width: 831px;
  height: 78px;
  position: absolute;
  z-index: -1;
  z-index: 2;
  background-image: -webkit-gradient(linear, right top, left top, color-stop(53.67%, rgba(249, 244, 198, 0)), color-stop(112.2%, #F9F4C6));
  background-image: linear-gradient(to left, rgba(249, 244, 198, 0) 53.67%, #F9F4C6 112.2%);
  left: -38px;
  top: 111px;
}

@media screen and (max-width: 991px) {
  .popup:before {
    width: 344px;
    height: 32px;
  }
}

@media screen and (max-width: 991px) {
  .popup:before {
    background-image: -webkit-gradient(linear, right top, left top, color-stop(53.67%, rgba(249, 244, 198, 0)), color-stop(112.2%, #F9F4C6));
    background-image: linear-gradient(to left, rgba(249, 244, 198, 0) 53.67%, #F9F4C6 112.2%);
    left: 0;
    top: 128px;
  }
}

.popup:after {
  content: "";
  display: block;
  border-radius: 50px;
  width: 491px;
  height: 54px;
  position: absolute;
  z-index: -1;
  z-index: 1;
  background-image: -webkit-gradient(linear, right top, left top, color-stop(1.84%, rgba(255, 211, 223, 0)), color-stop(98.15%, rgba(255, 211, 223, 0.5)));
  background-image: linear-gradient(to left, rgba(255, 211, 223, 0) 1.84%, rgba(255, 211, 223, 0.5) 98.15%);
  right: 230px;
  bottom: 60px;
}

@media screen and (max-width: 991px) {
  .popup:after {
    width: 168px;
    height: 19px;
  }
}

@media screen and (max-width: 991px) {
  .popup:after {
    display: none;
  }
}

.popup .wrapper {
  position: relative;
  z-index: 2;
  padding: 0 56px 120px;
}

@media screen and (max-width: 1399px) {
  .popup .wrapper {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 30px;
  }
}

.popup .wrapper:after {
  content: "";
  display: block;
  border-radius: 50px;
  width: 416px;
  height: 44px;
  position: absolute;
  z-index: -1;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(8.85%, rgba(169, 255, 251, 0)), color-stop(94.23%, rgba(169, 255, 251, 0.72)));
  background-image: linear-gradient(to right, rgba(169, 255, 251, 0) 8.85%, rgba(169, 255, 251, 0.72) 94.23%);
  right: -18px;
  top: 330px;
}

@media screen and (max-width: 991px) {
  .popup .wrapper:after {
    width: 416px;
    height: 44px;
  }
}

@media screen and (max-width: 991px) {
  .popup .wrapper:after {
    display: none;
  }
}

.popup .btn-close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 56px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 991px) {
  .popup .btn-close {
    width: 40px;
  }
}

.popup .btn-close:hover {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.popup .btn-close img {
  display: block;
  width: 100%;
}

.popup .heading {
  font-size: 2em;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.96px;
  text-align: center;
  padding: 32px 0;
}

.popup#funding-suggestion {
  min-height: 820px;
}

.popup#funding-suggestion .board {
  position: relative;
  min-height: 580px;
}

.popup#funding-suggestion .background {
  position: relative;
  min-height: 580px;
}

.popup#funding-suggestion .background .magnifier {
  position: absolute;
  top: 240px;
  left: 50%;
  z-index: 4;
  display: block;
  width: 300px;
  height: 302px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../img/sidebar/funding-suggestion/magnifier.svg");
  -webkit-animation-name: magnifier;
          animation-name: magnifier;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@media screen and (min-width: 992px) and (max-width: 1399px) {
  .popup#funding-suggestion .background .magnifier {
    width: 120px;
    top: 200px;
  }
}

.popup#funding-suggestion .background .computer {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 385px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
}

@media screen and (min-width: 992px) and (max-width: 1080px) {
  .popup#funding-suggestion .background .computer {
    width: 300px;
  }
}

.popup#funding-suggestion .background .computer img {
  width: 100%;
}

.popup#funding-suggestion .background .computer .type-word {
  position: absolute;
  left: 110px;
  top: 133px;
}

@media screen and (min-width: 992px) and (max-width: 1080px) {
  .popup#funding-suggestion .background .computer .type-word {
    font-size: 14px;
    left: 83px;
    top: 101px;
  }
}

.popup#funding-suggestion .img {
  position: relative;
}

@media screen and (max-width: 991px) {
  .popup#funding-suggestion .img {
    display: none;
  }
}

.popup#funding-suggestion .img-m {
  position: relative;
}

@media screen and (min-width: 992px) {
  .popup#funding-suggestion .img-m {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .popup#funding-suggestion .img-m {
    width: calc(100% + 20px);
    margin-right: -20px;
    max-width: 800px;
    margin: 0 auto 23px auto;
  }
  .popup#funding-suggestion .img-m:after {
    content: "";
    display: block;
    border-radius: 50px;
    width: 168px;
    height: 19px;
    position: absolute;
    z-index: -1;
    z-index: 1;
    background-image: -webkit-gradient(linear, right top, left top, color-stop(1.84%, rgba(255, 211, 223, 0)), color-stop(98.15%, rgba(255, 211, 223, 0.5)));
    background-image: linear-gradient(to left, rgba(255, 211, 223, 0) 1.84%, rgba(255, 211, 223, 0.5) 98.15%);
    right: -33px;
    bottom: -16px;
  }
}

@media screen and (max-width: 991px) and (max-width: 991px) {
  .popup#funding-suggestion .img-m:after {
    width: 168px;
    height: 19px;
  }
}

.popup#funding-suggestion .img-m img {
  width: 100%;
}

@media screen and (min-width: 992px) {
  .popup#funding-suggestion .accordion {
    position: absolute;
    width: 300px;
    z-index: 1;
  }
  .popup#funding-suggestion .accordion:hover:after {
    opacity: 1;
  }
  .popup#funding-suggestion .accordion:after {
    content: "";
    position: absolute;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }
  .popup#funding-suggestion .accordion:nth-last-child(6) {
    left: 50px;
    top: 32px;
  }
}

@media screen and (min-width: 992px) and (min-width: 992px) and (max-width: 1399px) {
  .popup#funding-suggestion .accordion:nth-last-child(6) {
    left: 0;
  }
}

@media screen and (min-width: 992px) {
  .popup#funding-suggestion .accordion:nth-last-child(6):after {
    width: 79px;
    height: 148px;
    right: -90px;
    top: 35px;
    background-image: url("../img/sidebar/funding-suggestion/line-1.svg");
  }
  .popup#funding-suggestion .accordion:nth-last-child(5) {
    left: 50px;
    top: 211px;
  }
}

@media screen and (min-width: 992px) and (min-width: 992px) and (max-width: 1399px) {
  .popup#funding-suggestion .accordion:nth-last-child(5) {
    left: 0;
  }
}

@media screen and (min-width: 992px) {
  .popup#funding-suggestion .accordion:nth-last-child(5):after {
    width: 155px;
    height: 5px;
    left: 294px;
    top: 30px;
    background-image: url("../img/sidebar/funding-suggestion/line-2.svg");
  }
  .popup#funding-suggestion .accordion:nth-last-child(4) {
    left: 150px;
    top: 420px;
  }
}

@media screen and (min-width: 992px) and (min-width: 992px) and (max-width: 1399px) {
  .popup#funding-suggestion .accordion:nth-last-child(4) {
    left: 0;
  }
}

@media screen and (min-width: 992px) {
  .popup#funding-suggestion .accordion:nth-last-child(4):after {
    width: 33.5px;
    height: 75px;
    left: 310px;
    top: -26px;
    background-image: url("../img/sidebar/funding-suggestion/line-3.svg");
  }
  .popup#funding-suggestion .accordion:nth-last-child(3) {
    right: 30px;
    top: 428px;
  }
}

@media screen and (min-width: 992px) and (min-width: 992px) and (max-width: 1399px) {
  .popup#funding-suggestion .accordion:nth-last-child(3) {
    right: 0;
  }
}

@media screen and (min-width: 992px) {
  .popup#funding-suggestion .accordion:nth-last-child(3):after {
    width: 172px;
    height: 81px;
    left: -175px;
    top: -48px;
    background-image: url("../img/sidebar/funding-suggestion/line-6.svg");
  }
  .popup#funding-suggestion .accordion:nth-last-child(2) {
    right: 100px;
    top: 175px;
  }
}

@media screen and (min-width: 992px) and (min-width: 992px) and (max-width: 1399px) {
  .popup#funding-suggestion .accordion:nth-last-child(2) {
    right: 0;
  }
}

@media screen and (min-width: 992px) {
  .popup#funding-suggestion .accordion:nth-last-child(2):after {
    width: 65px;
    height: 30px;
    left: -70px;
    top: 29px;
    background-image: url("../img/sidebar/funding-suggestion/line-5.svg");
  }
  .popup#funding-suggestion .accordion:nth-last-child(1) {
    right: 60px;
    top: -44px;
  }
}

@media screen and (min-width: 992px) and (min-width: 992px) and (max-width: 1399px) {
  .popup#funding-suggestion .accordion:nth-last-child(1) {
    right: 0;
  }
}

@media screen and (min-width: 992px) {
  .popup#funding-suggestion .accordion:nth-last-child(1):after {
    width: 172px;
    height: 165px;
    left: -150px;
    top: 42px;
    background-image: url("../img/sidebar/funding-suggestion/line-4.svg");
  }
}

@media screen and (max-width: 991px) {
  .popup#funding-suggestion .accordion {
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
  }
}

.popup#funding-suggestion .accordion:nth-last-child(3n) .subject {
  background-color: #E52D5E;
}

.popup#funding-suggestion .accordion:nth-last-child(3n+2) .subject {
  background-color: #0C8295;
}

.popup#funding-suggestion .accordion:nth-last-child(3n+1) .subject {
  background-color: #706F6F;
}

.popup#funding-suggestion .accordion.active {
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .popup#funding-suggestion .accordion.active .subject:after {
    -webkit-transform: scale(-1);
            transform: scale(-1);
  }
}

.popup#funding-suggestion .subject {
  padding: 8px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  border-radius: 8px;
  cursor: pointer;
}

@media screen and (max-width: 991px) {
  .popup#funding-suggestion .subject {
    padding: 4px 50px 4px 20px;
  }
  .popup#funding-suggestion .subject:after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("../img/icon/chevron-down.svg");
    position: absolute;
    right: 20px;
    top: 10px;
  }
}

.popup#funding-suggestion .subject .icon {
  width: 40px;
  height: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media screen and (max-width: 991px) {
  .popup#funding-suggestion .subject .icon {
    width: 32px;
    height: 32px;
    padding: 4px;
    background-size: 24px;
  }
}

.popup#funding-suggestion .subject .title {
  letter-spacing: 0.72px;
  line-height: 1.33;
  font-size: 1.5em;
  font-weight: 500;
  padding-left: 12px;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  text-align: left;
}

@media screen and (min-width: 992px) and (max-width: 1399px) {
  .popup#funding-suggestion .subject .title {
    font-size: 1.25em;
  }
}

@media screen and (max-width: 991px) {
  .popup#funding-suggestion .subject .title {
    font-size: 1em;
    font-weight: 400;
    padding-left: 8px;
    letter-spacing: 0.48px;
  }
}

.popup#funding-suggestion .details {
  display: none;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 4px 10px 0px rgba(88, 89, 91, 0.1);
          box-shadow: 0px 4px 10px 0px rgba(88, 89, 91, 0.1);
  width: 300px;
}

@media screen and (max-width: 991px) {
  .popup#funding-suggestion .details {
    width: 100%;
  }
}

.popup#funding-suggestion .details a {
  position: relative;
  padding: 12px 12px 12px 44px;
  display: block;
  text-align: left;
  font-size: 1.125em;
  line-height: 1.55;
  font-weight: 700;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 991px) {
  .popup#funding-suggestion .details a {
    padding: 8px 12px 8px 44px;
    font-size: 1em;
    line-height: 1.75;
    font-weight: 400;
  }
}

.popup#funding-suggestion .details a:before, .popup#funding-suggestion .details a:after {
  content: "";
  position: absolute;
  top: 22px;
  width: 8px;
  height: 8px;
  border-style: solid;
  border-width: 4px 0 4px 8px;
  border-color: transparent transparent transparent #C8BA2A;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 991px) {
  .popup#funding-suggestion .details a:before, .popup#funding-suggestion .details a:after {
    top: 18px;
  }
}

.popup#funding-suggestion .details a:before {
  left: 20px;
}

.popup#funding-suggestion .details a:after {
  left: 29px;
  opacity: 0;
}

.popup#funding-suggestion .details a:hover {
  color: #0C8295;
}

.popup#funding-suggestion .details a:hover:after {
  opacity: 1;
}

.popup#funding-suggestion .bubble {
  position: absolute;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-animation-name: bubble;
          animation-name: bubble;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.popup#funding-suggestion .bubble .txt {
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: 0.72px;
  color: #ffffff;
  position: absolute;
  left: 49px;
  top: 27px;
  opacity: 0.9;
}

.popup#funding-suggestion .bubble#bubble-grey {
  width: 292px;
  height: 108px;
  left: 140px;
  top: 280px;
  background-image: url("../img/sidebar/funding-suggestion/bubble-grey.svg");
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.popup#funding-suggestion .bubble#bubble-pink {
  width: 251px;
  height: 128px;
  top: 10px;
  left: 450px;
  background-image: url("../img/sidebar/funding-suggestion/bubble-pink.svg");
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.popup#funding-suggestion .bubble#bubble-yellow {
  width: 146px;
  height: 55px;
  right: 300px;
  top: 90px;
  background-image: url("../img/sidebar/funding-suggestion/bubble-yellow.svg");
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

#login-popup {
  max-width: 400px;
  margin: 0 auto;
  border-radius: 32px 0px;
}

@media screen and (max-width: 991px) {
  #login-popup {
    max-width: 330px;
  }
}

#login-popup .wrapper {
  background-color: #ffffff;
  border: 2px solid rgba(88, 89, 91, 0.3);
  padding: 40px 0;
  width: 100%;
}

#login-popup .wrapper:after {
  display: none;
}

#login-popup .inner-wrap {
  max-width: 280px;
  margin: 0 auto;
}

#login-popup .logo {
  margin-bottom: 8px;
}

#login-popup .desc {
  font-size: 1.25em;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.4px;
}

@media screen and (max-width: 991px) {
  #login-popup .desc {
    font-size: 1em;
    line-height: 1.75;
    letter-spacing: 0.48px;
  }
}

#login-popup .btn-container {
  margin-top: 40px;
}

@media screen and (max-width: 991px) {
  #login-popup .btn-container {
    margin-top: 28px;
  }
}

#login-popup .btn-container .com-btn {
  width: 100%;
}

#login-popup .btn-container .com-btn:not(:last-child) {
  margin-bottom: 12px;
}

#login-popup .btn-container .com-btn:last-child {
  background-color: #ffffff;
  color: #414042;
}

#login-popup .btn-container .com-btn:last-child:hover {
  background-color: #414042;
  color: #ffffff;
}

.form-container .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}

@media screen and (max-width: 991px) {
  .form-container .top {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-bottom: 32px;
  }
}

.form-container .top h2 {
  font-size: 1.25em;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.4px;
}

.form-container .top .remarks {
  color: #E52D5E;
  line-height: 1.75;
  letter-spacing: 0.48px;
}

.form-wrap .form-row {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.form-wrap .form-control {
  margin-bottom: 24px;
}

.form-wrap .form-control.col-6 {
  width: calc((100% - 40px)/2);
  margin-right: 40px;
}

@media screen and (max-width: 575px) {
  .form-wrap .form-control.col-6 {
    width: 100%;
    margin-right: 0;
  }
}

.form-wrap .form-control.col-6:last-child {
  margin-right: 0;
}

.form-wrap .form-control.col-12 {
  width: 100%;
}

.form-wrap .msg-error {
  line-height: 2;
  letter-spacing: 0.32px;
  color: #A31B3F;
}

.form-wrap .input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid rgba(88, 89, 91, 0.5);
  background-color: #F4F4F4;
  border-radius: 8px;
}

.form-wrap .input-group select, .form-wrap .input-group input {
  background-color: transparent;
  border: 0;
}

.form-wrap .input-group .select2-container {
  width: 90px !important;
}

.form-wrap .input-group select {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.form-wrap .input-group input {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

.form-wrap .input-group .select2-container--default .select2-selection--single .select2-selection__rendered {
  border: 0 !important;
  width: 106px !important;
  height: 52px !important;
  border-radius: 0 !important;
  background-color: transparent !important;
}

@media screen and (max-width: 991px) {
  .form-wrap .input-group .select2-container--default .select2-selection--single .select2-selection__rendered {
    height: 44px !important;
  }
}

.form-wrap .input-group .select2-container--default .select2-selection--single .select2-selection__rendered:after {
  content: "";
  display: inline-block;
  position: absolute;
  right: -5px;
  top: 11px;
  width: 1px;
  height: 32px;
  background-color: rgba(88, 89, 91, 0.3);
}

.form-wrap .input-group .select2-container--default .select2-selection--single .select2-selection__arrow {
  right: 0 !important;
}

.form-wrap label {
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.32px;
  color: #58595B;
  display: block;
  padding-bottom: 10px;
}

@media screen and (max-width: 991px) {
  .form-wrap label {
    padding-bottom: 0;
  }
}

.form-wrap label .asterisk {
  top: 6px;
  position: relative;
  color: #E52D5E;
  margin-left: 8px;
  font-size: 1.5em;
}

.form-wrap select, .form-wrap input, .form-wrap textarea {
  font-size: 1em;
  width: 100%;
}

.form-wrap select:-ms-input-placeholder, .form-wrap input:-ms-input-placeholder, .form-wrap textarea:-ms-input-placeholder {
  color: rgba(77, 77, 77, 0.7);
}

.form-wrap select:placeholder, .form-wrap input:placeholder, .form-wrap textarea:placeholder {
  color: rgba(77, 77, 77, 0.7);
}

.form-wrap select, .form-wrap input {
  height: 56px;
}

@media screen and (max-width: 991px) {
  .form-wrap select, .form-wrap input {
    height: 44px;
  }
}

.form-wrap textarea, .form-wrap input {
  padding: 12px 16px;
  border: 1px solid rgba(88, 89, 91, 0.5);
  background-color: #F4F4F4;
  border-radius: 8px;
  line-height: 1.75;
  letter-spacing: 0.48px;
}

@media screen and (max-width: 991px) {
  .form-wrap textarea, .form-wrap input {
    padding: 8px 16px;
  }
}

.form-wrap textarea {
  max-width: 100%;
  min-height: 204px;
}

.form-wrap .bottom {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .form-wrap .bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.form-wrap .bottom .msg {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: #0C8295;
  padding-right: 20px;
}

@media screen and (max-width: 767px) {
  .form-wrap .bottom .msg {
    margin-top: 10px;
    padding-right: 0;
    font-size: 1.125em;
    letter-spacing: 0;
    width: 100%;
    text-align: center;
  }
}

.form-wrap .bottom .msg.error {
  color: #A31B3F;
}

.form-wrap .btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .form-wrap .btn-container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}

.form-wrap .btn-container a:first-child {
  background-color: #ffffff;
  color: #414042;
}

.form-wrap .btn-container a:first-child:hover {
  background-color: #414042;
  color: #ffffff;
}

.form-wrap .btn-container a:not(:last-child) {
  margin-right: 24px;
}

.form-wrap {
  color: #58595B;
}

.form-wrap .form-control {
  margin-bottom: 24px;
}

.form-wrap .form-control label {
  display: block;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.32px;
  margin-bottom: 4px;
}

.form-wrap .form-control label .asterisk {
  color: #E52D5E;
}

.form-wrap .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.form-wrap .form-group .form-control {
  width: calc((100% - 40px)/2);
}

@media screen and (max-width: 767px) {
  .form-wrap .form-group .form-control {
    width: 100%;
  }
}

.form-wrap .form-input input {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(88, 89, 91, 0.5);
  background: #F4F4F4;
  width: 100%;
  color: #010202;
  font-size: 1em;
  line-height: 1.75;
}

@media screen and (max-width: 991px) {
  .form-wrap .form-input input {
    padding: 8px 16px;
  }
}

.form-wrap .form-input.checkbox-input label {
  display: block;
  position: relative;
  padding-left: 35px;
  font-size: 1em;
  line-height: 2;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.form-wrap .form-input.checkbox-input label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.form-wrap .form-input.checkbox-input .checkmark {
  position: absolute;
  top: 4px;
  left: 0;
  height: 25px;
  width: 25px;
  border: 1px solid #B9B9B9;
  border-radius: 8px;
  background-color: #ffffff;
}

.form-wrap .form-input.checkbox-input .checkmark:after {
  content: "";
  position: absolute;
}

.form-wrap .form-input.checkbox-input label input:checked ~ .checkmark:after {
  opacity: 1;
}

.form-wrap .form-input.checkbox-input label .checkmark:after {
  left: 7px;
  top: 2px;
  width: 8px;
  height: 16px;
  border: solid #45B2C3;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
  -webkit-transition: opacity 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out;
}

.form-wrap .form-input.checkbox-input a {
  color: #0C8295;
}

.form-wrap .form-input.tel-input {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 8px;
  background: #F4F4F4;
  border: 1px solid rgba(88, 89, 91, 0.5);
}

.form-wrap .form-input.tel-input:after {
  content: "";
  width: 1px;
  height: 32px;
  background-color: rgba(88, 89, 91, 0.3);
  position: absolute;
  left: 100px;
  top: 10px;
}

.form-wrap .form-input.tel-input select {
  width: 100px !important;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.form-wrap .form-input.tel-input .select2-container {
  width: 135px !important;
}

.form-wrap .form-input.tel-input .select2-container .select2-selection--single .select2-selection__rendered {
  border: 0;
  background-color: transparent;
}

.form-wrap .form-input.tel-input input {
  border: 0;
  background-color: transparent;
}

.form-wrap .form-remarks {
  font-size: 0.875em;
  line-height: 1.4;
  letter-spacing: 0.28px;
  margin-top: 8px;
}

.form-wrap .msg-error {
  padding-top: 7px;
  font-size: 0.875em;
  line-height: 1.5;
  letter-spacing: 0.28px;
  color: #A31B3F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form-wrap .msg-error:before {
  content: "";
  display: inline-block;
  background-image: url("../img/icon/alert.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  top: 0px;
  position: relative;
  margin-right: 5px;
}

.row-thumbnail {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 991px) {
  .row-thumbnail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.row-thumbnail:before, .row-thumbnail:after {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
}

.row-thumbnail:not(:last-child) {
  margin-bottom: 38px;
}

@media screen and (max-width: 991px) {
  .row-thumbnail:not(:last-child) {
    margin-bottom: 36px;
  }
}

.row-thumbnail .bg {
  overflow: hidden;
}

.row-thumbnail .bg img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.row-thumbnail .col-thumbnail {
  position: relative;
}

@media screen and (max-width: 991px) {
  .row-thumbnail .col-thumbnail {
    margin-bottom: 5px;
  }
}

.row-thumbnail .col-thumbnail:before {
  content: "";
  position: absolute;
  top: -20px;
  width: calc(100% + 20px);
  height: 52%;
}

@media screen and (max-width: 991px) {
  .row-thumbnail .col-thumbnail:before {
    top: -8px;
    width: 100%;
  }
}

.row-thumbnail .col-desc {
  position: relative;
  width: 60%;
}

@media screen and (max-width: 991px) {
  .row-thumbnail .col-desc {
    width: 100%;
  }
}

.row-thumbnail .wrap {
  padding: 48px 80px;
  border-radius: 40px 0px;
}

@media screen and (max-width: 991px) {
  .row-thumbnail .wrap {
    padding: 24px 32px;
  }
}

.row-thumbnail .bg {
  width: 100%;
}

.row-thumbnail .topic-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(88, 89, 91, 0.3);
}

@media screen and (max-width: 991px) {
  .row-thumbnail .topic-row {
    padding-bottom: 16px;
  }
}

.row-thumbnail .topic-row .topic {
  font-size: 2.5em;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 1.2px;
  padding-right: 10px;
}

@media screen and (max-width: 991px) {
  .row-thumbnail .topic-row .topic {
    font-size: 1.5em;
    line-height: 1.33;
    letter-spacing: 0;
  }
}

.row-thumbnail .desc-row {
  font-size: 1.25em;
  letter-spacing: 0.4px;
  line-height: 2;
  font-weight: 500;
  padding-top: 20px;
}

@media screen and (max-width: 991px) {
  .row-thumbnail .desc-row {
    padding-top: 16px;
    font-size: 1em;
    letter-spacing: 0.32px;
    line-height: 1.5;
    font-weight: 400;
  }
}

.row-thumbnail:nth-child(odd):before {
  content: "";
  display: block;
  border-radius: 50px;
  width: 1034px;
  height: 104px;
  position: absolute;
  z-index: -1;
  background-image: -webkit-gradient(linear, right top, left top, color-stop(53.67%, rgba(249, 244, 198, 0)), color-stop(112.2%, #F9F4C6));
  background-image: linear-gradient(to left, rgba(249, 244, 198, 0) 53.67%, #F9F4C6 112.2%);
  right: -870px;
  top: 55px;
}

@media screen and (max-width: 991px) {
  .row-thumbnail:nth-child(odd):before {
    width: 1034px;
    height: 104px;
  }
}

@media screen and (max-width: 991px) {
  .row-thumbnail:nth-child(odd):before {
    display: none;
  }
}

.row-thumbnail:nth-child(odd):after {
  content: "";
  display: block;
  border-radius: 50px;
  width: 399px;
  height: 57px;
  position: absolute;
  z-index: -1;
  background-image: -webkit-gradient(linear, right top, left top, color-stop(20.16%, rgba(255, 255, 255, 0)), color-stop(97.92%, #FFF));
  background-image: linear-gradient(to left, rgba(255, 255, 255, 0) 20.16%, #FFF 97.92%);
  right: -130px;
  top: 192px;
}

@media screen and (max-width: 991px) {
  .row-thumbnail:nth-child(odd):after {
    width: 399px;
    height: 57px;
  }
}

@media screen and (max-width: 991px) {
  .row-thumbnail:nth-child(odd):after {
    display: none;
  }
}

.row-thumbnail:nth-child(odd) .col-thumbnail {
  width: 85%;
  margin-left: -168px;
}

@media screen and (min-width: 992px) and (max-width: 1349px) {
  .row-thumbnail:nth-child(odd) .col-thumbnail {
    margin-left: -50px;
  }
}

@media screen and (max-width: 991px) {
  .row-thumbnail:nth-child(odd) .col-thumbnail {
    width: 100%;
    margin-left: 0;
  }
}

.row-thumbnail:nth-child(odd) .col-thumbnail:before {
  right: -20px;
  border-top: 1px solid #45B1C2;
  border-right: 1px solid #45B1C2;
  border-top-right-radius: 220px;
}

@media screen and (max-width: 991px) {
  .row-thumbnail:nth-child(odd) .col-thumbnail:before {
    right: auto;
    left: -97px;
    border-top-right-radius: 200px;
    height: 100%;
  }
}

@media screen and (max-width: 575px) {
  .row-thumbnail:nth-child(odd) .col-thumbnail:before {
    border-top-right-radius: 88px;
    left: -66px;
  }
}

.row-thumbnail:nth-child(odd) .col-desc {
  margin-left: -45%;
}

.row-thumbnail:nth-child(odd) .bg {
  border-top-right-radius: 200px;
  position: relative;
  height: auto;
}

.row-thumbnail:nth-child(odd) .bg:before {
  content: "";
  display: block;
}

@media screen and (max-width: 991px) {
  .row-thumbnail:nth-child(odd) .bg:before {
    padding-top: 55.38462%;
  }
}

@media screen and (min-width: 992px) {
  .row-thumbnail:nth-child(odd) .bg:before {
    padding-top: 66.66667%;
  }
}

@media screen and (max-width: 991px) {
  .row-thumbnail:nth-child(odd) .bg {
    margin-left: -107px;
  }
}

@media screen and (max-width: 575px) {
  .row-thumbnail:nth-child(odd) .bg {
    border-top-right-radius: 88px;
    margin-left: -75px;
  }
}

.row-thumbnail:nth-child(odd) .wrap {
  background-color: #FAFDFD;
  border: 1px solid #45B1C2;
}

.row-thumbnail:nth-child(odd) .topic-row .topic {
  color: #0C8295;
}

@media screen and (min-width: 992px) {
  .row-thumbnail:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.row-thumbnail:nth-child(even):before {
  content: "";
  display: block;
  border-radius: 50px;
  width: 580px;
  height: 35px;
  position: absolute;
  z-index: -1;
  background-image: -webkit-gradient(linear, right top, left top, color-stop(62.99%, rgba(255, 255, 255, 0)), color-stop(93.13%, #FFF));
  background-image: linear-gradient(270deg, rgba(255, 255, 255, 0) 62.99%, #FFF 93.13%);
  left: 0px;
  top: 79px;
}

@media screen and (max-width: 991px) {
  .row-thumbnail:nth-child(even):before {
    width: 580px;
    height: 35px;
  }
}

@media screen and (max-width: 991px) {
  .row-thumbnail:nth-child(even):before {
    display: none;
  }
}

.row-thumbnail:nth-child(even):after {
  content: "";
  display: block;
  border-radius: 50px;
  width: 618px;
  height: 104px;
  position: absolute;
  z-index: -1;
  background-image: linear-gradient(92deg, rgba(255, 255, 255, 0) -15.87%, #A9FFFB 89.71%);
  left: -500px;
  top: 192px;
}

@media screen and (max-width: 991px) {
  .row-thumbnail:nth-child(even):after {
    width: 176px;
    height: 30px;
  }
}

@media screen and (max-width: 991px) {
  .row-thumbnail:nth-child(even):after {
    left: -32px;
    top: 0;
  }
}

.row-thumbnail:nth-child(even) .col-thumbnail {
  width: 50%;
}

@media screen and (max-width: 991px) {
  .row-thumbnail:nth-child(even) .col-thumbnail {
    margin-right: -32px;
    width: 90%;
  }
}

.row-thumbnail:nth-child(even) .col-thumbnail:before {
  left: -20px;
  border-top: 1px solid #E7001D;
  border-left: 1px solid #E7001D;
  border-top-left-radius: 220px;
}

@media screen and (max-width: 991px) {
  .row-thumbnail:nth-child(even) .col-thumbnail:before {
    height: calc((100% + 12px));
    left: -12px;
    width: calc((100% + 12px));
  }
}

@media screen and (max-width: 575px) {
  .row-thumbnail:nth-child(even) .col-thumbnail:before {
    border-top-left-radius: 88px;
  }
}

@media screen and (min-width: 992px) {
  .row-thumbnail:nth-child(even) .col-desc {
    margin-right: -100px;
  }
}

.row-thumbnail:nth-child(even) .wrap {
  border: 1px solid #E7001D;
  background-color: #FFFAFA;
}

.row-thumbnail:nth-child(even) .bg {
  border-top-left-radius: 200px;
  position: relative;
  height: auto;
}

.row-thumbnail:nth-child(even) .bg:before {
  content: "";
  display: block;
}

@media screen and (max-width: 991px) {
  .row-thumbnail:nth-child(even) .bg:before {
    padding-top: 52.17391%;
  }
}

@media screen and (min-width: 992px) {
  .row-thumbnail:nth-child(even) .bg:before {
    padding-top: 95.58824%;
  }
}

@media screen and (max-width: 575px) {
  .row-thumbnail:nth-child(even) .bg {
    border-top-left-radius: 88px;
  }
}

.row-thumbnail:nth-child(even) .wrap {
  border: 1px solid #E7001D;
}

.row-thumbnail:nth-child(even) .topic-row .topic {
  color: #E7001D;
}

.sect-head {
  font-size: 2.5em;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 1.2px;
}

@media screen and (max-width: 991px) {
  .sect-head {
    font-size: 1.5em;
    line-height: 1.33;
    letter-spacing: 0.72px;
    margin-bottom: 16px;
    text-align: center;
  }
}

.com-filter {
  position: relative;
  padding: 40px;
  border-radius: 8px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 4px 15px 0px rgba(88, 89, 91, 0.1);
          box-shadow: 0px 4px 15px 0px rgba(88, 89, 91, 0.1);
}

@media screen and (max-width: 991px) {
  .com-filter {
    padding: 32px;
    position: -webkit-sticky;
    position: sticky;
    top: 10px;
    z-index: 1;
  }
}

.com-filter .top {
  padding-bottom: 12px;
  border-bottom: 1px solid #D9D9D9;
}

.com-filter h2 {
  font-size: 2.5em;
  line-height: 1.4;
  letter-spacing: 1.2px;
  font-weight: 500;
  margin-bottom: 8px;
}

@media screen and (max-width: 991px) {
  .com-filter h2 {
    font-size: 1.5em;
    line-height: 1.33;
    letter-spacing: 0.72px;
  }
}

.com-filter p {
  font-size: 1.25em;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.4px;
  margin: 0;
}

@media screen and (max-width: 991px) {
  .com-filter p {
    font-size: 1em;
    line-height: 1.75;
    letter-spacing: 0.48px;
    color: #58595B;
  }
}

.com-filter .mobile-filter-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 12px;
}

@media screen and (min-width: 992px) {
  .com-filter .mobile-filter-row {
    display: none;
  }
}

.com-filter .mobile-filter-row .form-wrap {
  width: calc(100% - 56px);
}

.com-filter .mobile-filter-row .form-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #FAFAFA;
  border-radius: 8px;
  padding-right: 20px;
  margin-bottom: 0;
}

.com-filter .mobile-filter-row button {
  display: block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: center;
  background-color: transparent;
  background-image: url("../img/icon/magnifier.svg");
  border: 0;
  cursor: pointer;
}

.com-filter .mobile-filter-row input[type="text"] {
  background-color: #FAFAFA;
  padding: 16px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0;
  border-radius: 8px;
  font-size: 1em;
  line-height: 1.75;
  letter-spacing: 0.48px;
  color: #414042;
  display: block;
  width: 100%;
}

.com-filter .mobile-filter-row input[type="text"]::-ms-input-placeholder {
  color: rgba(88, 89, 91, 0.5);
}

.com-filter .mobile-filter-row input[type="text"]::-webkit-input-placeholder {
  color: rgba(88, 89, 91, 0.5);
}

.com-filter .mobile-filter-row input[type="text"]:-ms-input-placeholder {
  color: rgba(88, 89, 91, 0.5);
}

.com-filter .mobile-filter-row input[type="text"]::placeholder {
  color: rgba(88, 89, 91, 0.5);
}

.com-filter .mobile-filter-row .mobile-filter-icon {
  width: 40px;
  height: 40px;
  background-image: url("../img/icon/filter.svg");
  background-size: 36px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.com-filter .form {
  padding-top: 32px;
}

@media screen and (max-width: 991px) {
  .com-filter .form {
    padding-top: 12px;
    display: none;
  }
}

.com-filter .form .row {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.com-filter .form .form-control {
  margin-bottom: 24px;
}

@media screen and (max-width: 991px) {
  .com-filter .form .form-control {
    margin-bottom: 12px;
  }
}

.com-filter .form .form-control.col-12 {
  width: 100%;
}

.com-filter .form .form-control.col-4 {
  width: 33.3333%;
  padding-right: 20px;
}

@media screen and (max-width: 991px) {
  .com-filter .form .form-control.col-4 {
    width: 100%;
    padding-right: 0;
  }
}

.com-filter .form .form-control.col-3 {
  width: 25%;
  padding-right: 20px;
}

@media screen and (max-width: 991px) {
  .com-filter .form .form-control.col-3 {
    width: 100%;
    padding-right: 0;
  }
}

.com-filter .form .form-control .search-input {
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: right 16px center;
  background-image: url("../img/icon/magnifier.svg");
}

.com-filter .form label {
  display: block;
  font-size: 1.25em;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.4px;
  width: 100%;
  margin-bottom: 12px;
}

@media screen and (max-width: 991px) {
  .com-filter .form label {
    font-size: 1em;
    line-height: 1.75;
    letter-spacing: 0.48px;
    font-weight: 400;
    margin-bottom: 4px;
  }
}

.com-filter .form input[type="text"] {
  background-color: #FAFAFA;
  padding: 14px 88px 14px 16px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0;
  border-radius: 8px;
  font-size: 1em;
  line-height: 1.75;
  letter-spacing: 0.48px;
  color: #414042;
  display: block;
  width: 100%;
}

.com-filter .form input[type="text"]::-ms-input-placeholder {
  color: rgba(88, 89, 91, 0.5);
}

.com-filter .form input[type="text"]::-webkit-input-placeholder {
  color: rgba(88, 89, 91, 0.5);
}

.com-filter .form input[type="text"]:-ms-input-placeholder {
  color: rgba(88, 89, 91, 0.5);
}

.com-filter .form input[type="text"]::placeholder {
  color: rgba(88, 89, 91, 0.5);
}

.com-filter .form .select2-container .select2-selection--single .select2-selection__rendered {
  border: 0 !important;
  background: #FAFAFA;
  padding: 14px 16px !important;
}

.com-filter .form .btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-right: -20px;
}

@media screen and (max-width: 991px) {
  .com-filter .form .btn-container {
    margin-right: 0;
    margin-top: 12px;
  }
}

.com-filter .form .btn-container button {
  cursor: pointer;
  padding: 12px 20px;
  text-align: center;
  font-size: 1.25em;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 2px;
  border: 1px solid #414042;
  border-radius: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 991px) {
  .com-filter .form .btn-container button {
    padding: 8px;
    font-size: 0.875em;
    line-height: 1.71;
    letter-spacing: 1.4px;
  }
}

.com-filter .form .btn-container button:first-child {
  background-color: #ffffff;
  color: #414042;
  margin-right: 24px;
}

.com-filter .form .btn-container button:last-child {
  background-color: #414042;
  color: #ffffff;
}

.com-filter .form .btn-container button:hover {
  opacity: 0.8;
}

.com-mobile-filter {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 90px);
  z-index: 2;
  padding: 40px 32px;
  background-color: #ffffff;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  -webkit-box-shadow: 0px -1px 15px 0px rgba(88, 89, 91, 0.1);
          box-shadow: 0px -1px 15px 0px rgba(88, 89, 91, 0.1);
  overflow: auto;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 992px) {
  .com-mobile-filter {
    display: none !important;
  }
}

.com-mobile-filter.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.com-mobile-filter::-webkit-scrollbar {
  display: none;
}

.com-mobile-filter .btn-close {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 24px;
  top: 15px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.com-mobile-filter .btn-close img {
  width: 100%;
}

.com-mobile-filter .btn-close:hover {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.com-mobile-filter .form .title {
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: 0.72px;
  margin-bottom: 48px;
}

.com-mobile-filter .form .row {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.com-mobile-filter .form .form-control {
  margin-bottom: 12px;
}

.com-mobile-filter .form .form-control.col-12 {
  width: 100%;
}

.com-mobile-filter .form .form-control.col-4 {
  width: 100%;
}

.com-mobile-filter .form .form-control.col-3 {
  width: 100%;
}

.com-mobile-filter .form .form-control .search-input {
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: right 16px center;
  background-image: url("../img/icon/magnifier.svg");
}

.com-mobile-filter .form label {
  display: block;
  font-size: 1em;
  line-height: 1.75;
  letter-spacing: 0.48px;
  font-weight: 400;
  width: 100%;
  margin-bottom: 4px;
}

.com-mobile-filter .form input[type="text"] {
  background-color: #FAFAFA;
  padding: 14px 88px 14px 16px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0;
  border-radius: 8px;
  font-size: 1em;
  line-height: 1.75;
  letter-spacing: 0.48px;
  color: #414042;
  display: block;
  width: 100%;
}

.com-mobile-filter .form input[type="text"]::-ms-input-placeholder {
  color: rgba(88, 89, 91, 0.5);
}

.com-mobile-filter .form input[type="text"]::-webkit-input-placeholder {
  color: rgba(88, 89, 91, 0.5);
}

.com-mobile-filter .form input[type="text"]:-ms-input-placeholder {
  color: rgba(88, 89, 91, 0.5);
}

.com-mobile-filter .form input[type="text"]::placeholder {
  color: rgba(88, 89, 91, 0.5);
}

.com-mobile-filter .form .select2-container .select2-selection--single .select2-selection__rendered {
  border: 0 !important;
  background: #FAFAFA;
  padding: 14px 16px !important;
}

.com-mobile-filter .form .btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 72px;
}

.com-mobile-filter .form .btn-container button {
  cursor: pointer;
  padding: 8px;
  text-align: center;
  font-size: 0.875em;
  line-height: 1.71;
  font-weight: 500;
  letter-spacing: 1.4px;
  border: 1px solid #414042;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: calc((100% - 24px)/2);
  border-radius: 8px;
}

.com-mobile-filter .form .btn-container button:first-child {
  background-color: #ffffff;
  color: #414042;
  margin-right: 24px;
}

.com-mobile-filter .form .btn-container button:last-child {
  background-color: #414042;
  color: #ffffff;
}

.com-mobile-filter .form .btn-container button:hover {
  opacity: 0.8;
}

.com-book {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc((100% - 33px)/4);
  background-color: #ffffff;
  border-radius: 20px 0;
  padding: 24px;
  border: 1px solid rgba(88, 89, 91, 0.3);
  -webkit-box-shadow: 0px 4px 15px 0px rgba(88, 89, 91, 0.1);
          box-shadow: 0px 4px 15px 0px rgba(88, 89, 91, 0.1);
}

@media screen and (min-width: 992px) {
  .com-book {
    margin-right: 11px;
  }
  .com-book:nth-child(4n) {
    margin-right: 0;
  }
}

@media screen and (min-width: 576px) and (max-width: 991px) {
  .com-book {
    width: calc((100% - 11px)/2);
    margin-right: 11px;
    margin-bottom: 16px;
  }
  .com-book:nth-child(even) {
    margin-right: 0;
  }
}

@media screen and (max-width: 575px) {
  .com-book {
    width: 332px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
  }
}

.com-book .thumbnail {
  text-align: center;
  margin-bottom: 20px;
  height: 200px;
}

.com-book .thumbnail img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 991px) {
  .com-book .thumbnail img {
    max-width: 120px;
  }
}

.com-book .title {
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.4px;
  margin-bottom: 8px;
}

@media screen and (max-width: 991px) {
  .com-book .title {
    margin-bottom: 12px;
  }
}

.com-book .author {
  color: #58595B;
  line-height: 1.75;
  letter-spacing: 0.48px;
}

.com-book .action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
}

@media screen and (max-width: 991px) {
  .com-book .action {
    margin-top: 12px;
  }
}

.com-book .action .btn-container .com-btn {
  border-radius: 8px;
  font-size: 1em;
  line-height: 2;
  letter-spacing: 1.6px;
  padding: 8px 16px;
}

.com-book .action .icon-bookmark, .com-book .action .icon-bookmarked {
  cursor: pointer;
  width: 32px;
  height: 32px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-size: 18px;
}

.com-book .action .icon-bookmark:hover, .com-book .action .icon-bookmarked:hover {
  opacity: 0.7;
}

.pagination {
  position: relative;
  margin-top: 32px;
  margin-bottom: 32px;
}

@media screen and (max-width: 991px) {
  .pagination {
    margin-top: 36px;
  }
}

.pagination ul {
  list-style-type: none;
  padding: 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pagination li {
  color: #414042;
  font-weight: 500;
  margin-right: 20px;
}

.pagination li:nth-last-child(2) {
  margin-right: 0;
}

.pagination li.prev-page, .pagination li.next-page {
  position: absolute;
  top: -4px;
  margin: 0;
}

.pagination li.prev-page a, .pagination li.next-page a {
  display: inline-block;
}

.pagination li.prev-page a:after, .pagination li.next-page a:after {
  content: "";
  background-image: url("../img/icon/chevron-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 40px;
  height: 40px;
  display: inline-block;
}

.pagination li.prev-page {
  left: 0;
}

.pagination li.next-page {
  right: 0;
}

.pagination li.next-page a:after {
  -webkit-transform: scale(-1);
          transform: scale(-1);
}

.pagination li.individual-page {
  font-size: 1.5em;
  line-height: 1.33;
  letter-spacing: 0.48px;
}

.pagination li.current-page {
  color: #45B2C3;
  font-size: 1.5em;
  line-height: 1.33;
  letter-spacing: 0.48px;
  text-decoration: underline;
}

.com-mobile-sidemenu {
  margin-bottom: 36px;
}

@media screen and (min-width: 992px) {
  .com-mobile-sidemenu {
    display: none !important;
  }
}

.com-mobile-sidemenu .select2-container .select2-selection--single .select2-selection__rendered {
  background-color: #ffffff;
}

.com-sidemenu {
  position: -webkit-sticky;
  position: sticky;
  top: 210px;
  width: 250px;
}

@media screen and (max-width: 991px) {
  .com-sidemenu {
    display: none;
  }
}

.com-sidemenu a {
  display: block;
  border: 1px solid #414042;
  background-color: #ffffff;
  border-radius: 16px 16px 0 16px;
  padding: 12px 32px;
  width: 100%;
  margin-bottom: 8px;
  font-size: 1.25em;
  line-height: 1.6;
  letter-spacing: 0.4px;
}

.com-sidemenu a.active {
  background-color: #0C8295;
  color: #ffffff;
}

.com-acc-row {
  border-radius: 8px;
  border: 1px solid rgba(88, 89, 91, 0.3);
  background-color: #FAFAFA;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px 32px;
}

@media screen and (max-width: 991px) {
  .com-acc-row {
    padding: 8px 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.com-acc-row:not(:last-child) {
  margin-bottom: 8px;
}

.com-acc-row .icon-copy {
  cursor: pointer;
  width: 24px;
  height: 24px;
}

@media screen and (max-width: 991px) {
  .com-acc-row .icon-copy {
    width: 20px;
    height: 20px;
  }
}

.com-acc-row .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 575px) {
  .com-acc-row .col:not(:last-child) {
    margin-bottom: 5px;
  }
}

.com-acc-row .col .txt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.55;
}

@media screen and (max-width: 991px) {
  .com-acc-row .col .txt {
    font-size: 1em;
  }
}

@media screen and (max-width: 575px) {
  .com-acc-row .col .txt {
    width: 100%;
  }
}

.com-acc-row .col .val {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  padding: 0 8px;
  word-break: break-all;
}

@media screen and (max-width: 991px) {
  .com-acc-row .col .val {
    font-size: 0.875em;
    padding: 0 5px;
  }
}

@media screen and (max-width: 575px) {
  .com-acc-row .col .val {
    padding: 0 8px 0 0;
  }
}

.com-acc-row .col .icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.com-acc-row .col:first-child {
  padding-right: 10px;
}

.sec-questionnaire {
  background-color: #58595B;
  padding: 32px;
  color: #ffffff;
  font-size: 1.25em;
  line-height: 1.4;
}

.sec-questionnaire .row {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sec-questionnaire .col-desc {
  padding-right: 55px;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

.sec-questionnaire .col-qr {
  width: 92px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.sec-questionnaire .highlight {
  font-size: 1.2em;
  line-height: 1.33;
  letter-spacing: 0.72px;
  font-weight: 500;
}

.sec-questionnaire a {
  color: #CDF6FF;
}

.com-link {
  line-height: 1.75;
  letter-spacing: 0.48px;
  color: #0C8295;
}

.com-link a span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.com-link a span:after {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../img/icon/link.svg");
  margin-left: 8px;
}

.com-redirect-to {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px 24px;
  border-radius: 20px 20px 20px 0px;
  background-color: #F4F4F4;
  margin-bottom: 24px;
}

.com-redirect-to .item {
  width: calc((100% - 40px)/2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #D9D9D9;
  padding: 8px 0;
}

@media screen and (max-width: 767px) {
  .com-redirect-to .item {
    width: 100%;
    margin-right: 0;
  }
  .com-redirect-to .item:nth-last-child(1) {
    border-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .com-redirect-to .item:nth-last-child(1), .com-redirect-to .item:nth-last-child(2) {
    border-bottom: 0;
  }
}

.com-redirect-to .item .txt {
  color: #0C8295;
  padding-right: 10px;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

.com-redirect-to .item .btn-container {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.com-redirect-to .item .com-btn {
  color: #ffffff !important;
  font-size: 1em;
  letter-spacing: 1.6px;
  padding: 8px 16px;
  border-radius: 8px;
}

.com-redirect-to .item .com-btn:hover {
  color: #414042 !important;
}

.attachment-row {
  border-radius: 20px 20px 20px 0px;
  padding: 16px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #F4F4F4;
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .attachment-row {
    padding: 12px 24px;
  }
}

.attachment-row .col {
  width: calc((100% - 40px)/2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-right: 40px;
  border-bottom: 1px solid #D9D9D9;
  padding: 8px 0;
}

.attachment-row .col:nth-child(even) {
  margin-right: 0;
}

@media screen and (min-width: 768px) {
  .attachment-row .col:nth-last-child(1), .attachment-row .col:nth-last-child(2) {
    border-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .attachment-row .col {
    width: 100%;
    margin-right: 0;
  }
  .attachment-row .col:nth-last-child(1) {
    border-bottom: 0;
  }
}

.attachment-row .title {
  font-size: 1em;
  line-height: 1.6;
  color: #0C8295;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  margin-right: 10px;
}

@media screen and (max-width: 991px) {
  .attachment-row .title {
    font-size: 1em;
  }
}

.attachment-row .link {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.attachment-row .link a:not(:last-child) {
  margin-right: 16px;
}

.attachment-row .link img {
  width: 48px;
  display: inline-block;
}

.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: -6px;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: #ffffff;
  border-radius: 8px;
  border: 2px solid #B9B9B9;
  cursor: pointer;
}

.checkmark:after {
  content: "";
  position: absolute;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.checkbox-container input:checked ~ .checkmark:after {
  opacity: 1;
}

.checkbox-container .checkmark:after {
  left: 7px;
  top: 1px;
  width: 7px;
  height: 15px;
  border: solid #45B2C3;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@-webkit-keyframes extend {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes extend {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
/*# sourceMappingURL=common.css.map */