@font-face {
  font-family: "Myriad Pro";
  font-style: normal;
  font-weight: 300;
  src: local("Myriad Pro Light"), url("../fonts/MYRIADPRO-LIGHT.woff") format("woff");
}
@font-face {
  font-family: "Myriad Pro";
  font-style: normal;
  font-weight: 400;
  src: local("Myriad Pro Regular"), url("../fonts/MYRIADPRO-REGULAR.woff") format("woff");
}
@font-face {
  font-family: "Myriad Pro";
  font-style: normal;
  font-weight: 700;
  src: local("Myriad Pro Bold"), url("../fonts/MYRIADPRO-BOLD.woff") format("woff");
}
/* common */
a:hover {
  text-decoration: none;
  color: inherit;
}

html, body {
  font-family: "Myriad Pro", "Noto Sans KR", sans-serif;
  font-size: 20px;
}

/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  background: #fff;
  border-bottom: 1px solid #eee;
  box-sizing: border-box;
  z-index: 100;
  /* header-wrap */
}
header .header-wrap {
  width: calc(100% - 120px);
}
header .header-wrap nav .m-logo {
  display: none;
  width: 10rem;
  height: 2.2rem;
  margin: 0.8rem auto;
}
header .header-wrap nav .menu-main > li {
  position: relative;
}
header .header-wrap nav .menu-main > li::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  margin-top: -0.1rem;
  background: #ff5a00;
  transition: all 0.3s;
}
header .header-wrap nav .menu-main > li > a {
  padding: 1.95rem 3.5rem;
  font-size: 1.1rem;
}
header .header-wrap nav .menu-main > li .menu-sub {
  display: none;
  position: absolute;
  width: 100%;
  padding-top: 1.35rem;
  font-size: 0.9rem;
  text-align: center;
  color: #666;
}
header .header-wrap nav .menu-main > li .menu-sub li {
  padding-bottom: 1rem;
}
header .header-wrap nav .menu-main > li:hover::after,
header .header-wrap nav .menu-main > li.active::after {
  width: 100%;
}
header .header-wrap nav .btn-close {
  display: none;
  width: 1.5rem;
  height: 1.5rem;
}
header .header-wrap nav .btn-close img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
header .header-wrap .menu-util .lang {
  font-size: 0.8rem;
  font-weight: 700;
  color: #c2c2c2;
}
header .header-wrap .menu-util .lang li {
  flex-shrink: 0;
}
header .header-wrap .menu-util .lang li a {
  padding: 0 0.3rem;
}
header .header-wrap .menu-util .lang li.active {
  color: #ff5a00;
}
header .header-wrap .menu-util .lang li ~ li a::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  margin-right: 0.5rem;
  border-radius: 50%;
  background-color: #c2c2c2;
  vertical-align: 0.15rem;
}
header .header-wrap .menu-util .btn-toggle {
  display: none;
}
header .menu-sub-bg {
  display: none;
  width: 100%;
  height: 9rem;
  background: #fff;
}

/* header */
/* main */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(2rem);
  }
  100% {
    opacity: 100;
    transform: translateY(0);
  }
}
.fade-up {
  animation: fadeUp 1.5s;
  animation-fill-mode: both;
}

@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-2rem);
  }
  100% {
    opacity: 100;
    transform: translateY(0);
  }
}
.fade-down {
  animation: fadeDown 1.5s;
  animation-fill-mode: both;
}

@keyframes scale {
  0% {
    width: 1rem;
  }
  60% {
    width: 6rem;
  }
  100% {
    width: 5rem;
  }
}
@keyframes shake {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  50% {
    opacity: 0.5;
    transform: translate(-50%, 1rem);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
.btn-more {
  width: 10rem;
  height: 2.5rem;
  border: 1px solid #fff;
  border-radius: 1.25rem;
  box-sizing: border-box;
  line-height: 2.5rem;
  text-align: center;
  transition: all 0.3s;
}

.btn-more:hover {
  border: 1px solid #ff5a00;
  background: #ff5a00;
}

/* main-visual */
.main-visual {
  position: relative;
  /* slider-main */
}
.main-visual .slider-main {
  position: relative;
}
.main-visual .slider-main .slider-item {
  position: relative;
  width: 100%;
  height: 100vh;
  color: #fff;
}
.main-visual .slider-main .slider-item .text-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%);
  width: calc(100% - 19.2rem);
}
.main-visual .slider-main .slider-item .text-wrap em {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff5a00;
  opacity: 0;
}
.main-visual .slider-main .slider-item .text-wrap .text-line {
  width: 0;
  height: 1px;
  margin: 1.5rem 0 2rem;
  background: rgba(255, 255, 255, 0.6);
  transition: all 1s;
}
.main-visual .slider-main .slider-item .text-wrap .text-line.w100 {
  width: 100%;
}
.main-visual .slider-main .slider-item .text-wrap h2 {
  margin-bottom: 1.2rem;
  font-size: 2.5rem;
  font-weight: 700;
  opacity: 0;
}
.main-visual .slider-main .slider-item .text-wrap p {
  font-size: 0.9rem;
  line-height: 1.4;
  opacity: 0;
  animation-delay: 0.5s;
}
.main-visual .slider-main .slider-item .text-wrap .btn-more {
  margin-top: 3.5rem;
  opacity: 0;
  animation-delay: 0.8s;
}
.main-visual .slider-main .slider-item .text-wrap .btn-more:hover {
  border: 1px solid #ff5a00;
  background: #ff5a00;
}
.main-visual .slider-main .slider-item.item01 {
  background: url(../images/main/mv01.jpg) no-repeat center center/cover;
}
.main-visual .slider-main .slider-item.item02 {
  background: url(../images/main/mv02.jpg) no-repeat center center/cover;
}
.main-visual .slider-main .slider-item.item03 {
  background: url(../images/main/mv03.jpg) no-repeat center center/cover;
}
.main-visual .slider-main .slick-arrow {
  position: absolute;
  right: 9.6rem;
  top: 50%;
  width: 1.45rem;
  height: 0.8rem;
  z-index: 1;
  text-indent: -9999px;
}
.main-visual .slider-main .slick-arrow.slick-prev {
  transform: translateY(1.2rem);
  background: url(../images/icon/mv-prev.png) no-repeat center center/cover;
}
.main-visual .slider-main .slick-arrow.slick-next {
  transform: translateY(4rem);
  background: url(../images/icon/mv-next.png) no-repeat center center/cover;
}
.main-visual .slider-main .slick-dots {
  position: absolute;
  left: 0;
  top: calc(50% + 0.5rem);
  text-indent: -9999px;
}
.main-visual .slider-main .slick-dots li {
  width: 1rem;
  height: 0.1rem;
  margin-bottom: 1.15rem;
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.3s;
}
.main-visual .slider-main .slick-dots li.slick-active {
  background-color: #ff5a00;
  animation: scale 1.5s;
  animation-fill-mode: both;
}
.main-visual .scroll-wrap {
  flex-direction: column;
  position: absolute;
  left: 50%;
  bottom: 3rem;
  width: 5.5rem;
  font-size: 0.8rem;
  color: #fff;
  animation: shake 1.3s infinite ease-in-out;
}
.main-visual .scroll-wrap::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1.7rem;
  margin-bottom: 0.75rem;
  background: url(../images/icon/scrolldown.png) no-repeat center center/contain;
}

/* main-visual */
/* blog */
.blog {
  display: grid;
  grid-template-rows: 27.5rem auto;
  /* news */
  /* banner */
}
.blog .news { /* news */
  display: grid;
  grid-template-columns: 29% 71%;
}
.blog .news .tit-wrap {
  padding: 9.5rem 0 0 8rem;
  color: #202020;
}
.blog .news .tit-wrap h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.25rem;
}
.blog .news .tit-wrap h2::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 1px;
  margin-bottom: 1.75rem;
  background: #202020;
}
.blog .news .tit-wrap p {
  padding-right: 2rem;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.4rem;
  color: #555;
  word-break: keep-all;
}
.blog .news .content-wrap {
  position: relative;
  padding: 8rem 0.75rem 0 2.65rem;
  background: #f1f1f1;
}
.blog .news .content-wrap > ul {
  display: grid;
  grid-template-columns: 160px 160px;
  gap: 0.5rem;
}
.blog .news .content-wrap > ul .tab {
  height: 2.5rem;
  border: 2px solid #ccc;
  box-sizing: border-box;
  font-size: 0.9rem;
  line-height: 2.5rem;
  text-align: center;
  color: #aaa;
}
.blog .news .content-wrap > ul .tab ul {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 2%;
  position: absolute;
  left: 2.65rem;
  top: 12rem;
  width: calc(100% - 3.4rem);
}
.blog .news .content-wrap > ul .tab ul li a {
  position: relative;
  height: 14.5vw;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  font-weight: 700;
  text-align: left;
  color: #fff;
  transition: all 0.3s;
}
.blog .news .content-wrap > ul .tab ul li a h3 {
  position: absolute;
  left: 1rem;
  bottom: 2rem;
  width: calc(100% - 2rem);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.blog .news .content-wrap > ul .tab ul li a small {
  position: absolute;
  left: 1rem;
  bottom: 0.4rem;
  font-weight: 400;
  color: #aaa;
}
.blog .news .content-wrap > ul .tab ul li a:hover {
  background: rgba(0, 0, 0, 0);
}
.blog .news .content-wrap > ul .tab ul li.media01 {
  background: url(../images/media/media01.jpg) no-repeat center center/cover;
}
.blog .news .content-wrap > ul .tab ul li.media02 {
  background: url(../images/media/media02.jpg) no-repeat center center/cover;
}
.blog .news .content-wrap > ul .tab ul li.media03 {
  background: url(../images/media/media03.png) no-repeat center center/cover;
}
.blog .news .content-wrap > ul .tab ul li.blog01 {
  background: url(../images/blog/blog01.jpg) no-repeat center center/cover;
}
.blog .news .content-wrap > ul .tab ul li.blog02 {
  background: url(../images/blog/blog02.jpg) no-repeat center center/cover;
}
.blog .news .content-wrap > ul .tab ul li.blog03 {
  background: url(../images/blog/blog03.jpg) no-repeat center center/cover;
}
.blog .news .content-wrap > ul .tab.current {
  border: 2px solid #ff5a00;
  background: #ff5a00;
  color: #fff;
}
.blog .news .content-wrap > ul .tab.current ul {
  display: grid;
}
.blog .banner { /* banner */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
  color: #fff;
}
.blog .banner li {
  padding-top: 4.75rem;
}
.blog .banner li em {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ff5a00;
}
.blog .banner li p {
  padding-top: 1rem;
  font-weight: 300;
  line-height: 1.4;
  word-break: keep-all;
}
.blog .banner li .btn-more {
  margin-top: 1.75rem;
}
.blog .banner li:first-child {
  background: url(../images/banner/banner01.jpg) no-repeat center center/cover;
}
.blog .banner li:nth-child(2) {
  background: url(../images/banner/banner02.jpg) no-repeat center center/cover;
}

/* blog */
/* investor */
.investor {
  padding-top: 9.25rem;
  background: url(../images/mcon03_bg.jpg) no-repeat center center/cover;
  color: #fff;
  text-align: center;
}
.investor h2 {
  font-size: 2rem;
  font-weight: 700;
}
.investor > p {
  padding-top: 1.25rem;
  font-size: 0.9rem;
}
.investor ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: calc(100% - 3rem);
  max-width: 1600px;
  margin-top: 4.75rem;
}
.investor ul li a {
  position: relative;
  aspect-ratio: 1.15/1;
  overflow: hidden;
}
.investor ul li a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 82%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
}
.investor ul li a em {
  position: absolute;
  left: 50%;
  top: 89%;
  transform: translateX(-50%);
  transition: all 0.3s;
}
.investor ul li a p {
  position: absolute;
  left: 50%;
  top: 23rem;
  transform: translateX(-50%);
  width: 100%;
  line-height: 1.4;
  word-break: keep-all;
  transition: all 0.3s;
}
.investor ul li a:hover::before {
  top: 0;
}
.investor ul li a:hover em {
  top: 40%;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff5a00;
}
.investor ul li a:hover p {
  top: 50%;
}
.investor ul li:first-child {
  background: url(../images/investor/investor01.jpg) no-repeat center center/cover;
}
.investor ul li:nth-child(2) {
  background: url(../images/investor/investor02.jpg) no-repeat center center/cover;
}
.investor ul li:nth-child(3) {
  background: url(../images/investor/investor03.jpg) no-repeat center center/cover;
}

/* investor */
/* info */
.info {
  display: grid;
  grid-template-rows: 31.5rem auto;
  /* contact */
  /* footer */
}
.info .contact { /* contact */
  padding-top: 8.9rem;
  background: url(../images/mcon04_bg.jpg) no-repeat center center/cover;
  text-align: center;
  color: #fff;
}
.info .contact h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ccc;
}
.info .contact .btn-more {
  margin-top: 2.25rem;
}
.info .contact ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 0.75rem;
  max-width: 1200px;
}
.info .contact ul li {
  aspect-ratio: 1/1;
  transition: all 0.3s;
}
.info .contact ul li::before {
  content: "";
  display: block;
  width: 5.9rem;
  height: 6.9rem;
  margin: 2.25rem auto 1.25rem;
}
.info .contact ul li em {
  font-size: 1.2rem;
}
.info .contact ul li p {
  padding-top: 1rem;
  font-weight: 300;
  color: #999;
}
.info .contact ul li:hover {
  transform: translateY(-1rem);
}
.info .contact ul li:first-child::before {
  background: url(../images/icon/mcon04_icon01.png) no-repeat center center/contain;
}
.info .contact ul li:nth-child(2)::before {
  background: url(../images/icon/mcon04_icon02.png) no-repeat center center/contain;
}
.info .contact ul li:nth-child(3)::before {
  background: url(../images/icon/mcon04_icon03.png) no-repeat center center/contain;
}
.info .contact ul li:nth-child(4)::before {
  background: url(../images/icon/mcon04_icon04.png) no-repeat center center/contain;
}
.info footer { /* footer */
  position: relative;
  padding: 3rem 1.75rem 2.5rem 3rem;
  background: #202020;
  font-size: 0.75rem;
  font-weight: 300;
  color: #666;
}
.info footer > ul {
  justify-content: flex-start;
  flex-wrap: wrap;
  color: #fff;
  margin-bottom: 1rem;
}
.info footer > ul li ~ li a::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 0.6rem;
  margin: 0 1rem;
  background: #a6a6a6;
}
.info footer dl {
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 0.25rem;
}
.info footer dl dd {
  margin-right: 1.5rem;
}
.info footer .copy {
  padding-top: 1rem;
}
.info footer .footer-logo {
  width: 10rem;
  height: 2.2rem;
  margin-top: 3rem;
  background: url(../images/footer-logo.png) no-repeat center center/contain;
}
.info footer .family {
  position: absolute;
  right: 1.2rem;
  top: 3rem;
  background: url(../images/icon/family-bg-off.png) no-repeat right 1rem center;
}
.info footer .family a {
  width: 12.5rem;
  height: 3rem;
  padding: 1.2rem 0 0 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
}
.info footer .family ul {
  display: none;
  position: absolute;
  left: 0;
  bottom: 3rem;
}
.info footer .family ul li {
  background: #202020;
  box-sizing: border-box;
}
.info footer .family ul li a {
  border-bottom: none;
}
.info footer .family.on {
  background: url(../images/icon/family-bg-on.png) no-repeat right 1rem center;
}

/* info */
/* max-1200 */
@media screen and (max-width: 1200px) {
  /* header */
  header .header-wrap {
    justify-content: center;
    position: relative;
    width: calc(100% - 2.7rem);
  }
  header .header-wrap nav {
    display: none;
  }
  header .header-wrap nav.on {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 90, 0, 0.95);
    color: #fff;
    z-index: 1;
  }
  header .header-wrap nav.on .m-logo {
    display: block;
  }
  header .header-wrap nav.on .menu-main {
    flex-direction: column;
  }
  header .header-wrap nav.on .menu-main > li {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
  }
  header .header-wrap nav.on .menu-main > li > a {
    padding: 1rem;
    font-size: 1.4rem;
    font-weight: 500;
  }
  header .header-wrap nav.on .menu-main > li .menu-sub {
    position: static;
    padding: 0.5rem 0 1.75rem;
    color: #fff;
    font-size: 1.1rem;
  }
  header .header-wrap nav.on .menu-main > li .menu-sub li {
    padding-bottom: 0;
  }
  header .header-wrap nav.on .menu-main > li .menu-sub li a {
    height: 1.75rem;
  }
  header .header-wrap nav.on .btn-close {
    display: block;
    position: absolute;
    right: 1rem;
    top: 1rem;
  }
  header .header-wrap .menu-util {
    position: absolute;
    right: 0;
    width: auto;
    min-width: auto;
  }
  header .header-wrap .menu-util .lang {
    display: none;
  }
  header .header-wrap .menu-util .btn-toggle {
    display: block;
  }
  /* header */
  /* main */
  section {
    height: auto !important;
  }
  /* main-visual */
  .main-visual {
    /* slider-main */
  }
  .main-visual .slider-main .slider-item {
    height: 30rem;
  }
  .main-visual .slider-main .slider-item .text-wrap {
    top: 30%;
    width: 80%;
  }
  .main-visual .slider-main .slick-arrow {
    right: 10%;
    top: 30%;
  }
  .main-visual .slider-main .slick-dots {
    display: none !important;
  }
  .main-visual .scroll-wrap {
    display: none;
  }
  /* main-visual */
  /* blog */
  .blog {
    grid-template-rows: none;
    /* news */
    /* banner */
  }
  .blog .news {
    grid-template-columns: none;
  }
  .blog .news .tit-wrap {
    padding: 2.5rem 0 0;
    text-align: center;
  }
  .blog .news .tit-wrap h2 {
    margin-bottom: 1.5rem;
  }
  .blog .news .tit-wrap h2::before {
    margin: 0 auto 3rem;
  }
  .blog .news .tit-wrap p {
    padding-right: 0;
  }
  .blog .news .content-wrap {
    padding: 1.5rem 0 0;
    height: calc(30.5vw + 7rem);
  }
  .blog .news .content-wrap > ul {
    width: 95%;
    margin: 0 auto;
  }
  .blog .news .content-wrap > ul .tab ul {
    grid-template-columns: repeat(2, 1fr);
    left: 2.5%;
    top: 5.5rem;
    width: 95%;
  }
  .blog .news .content-wrap > ul .tab ul li a {
    height: 30.5vw;
  }
  .blog .news .content-wrap > ul .tab ul li:last-child {
    display: none;
  }
  .blog .banner { /* banner */
    height: 20rem;
  }
  /* blog */
  /* investor */
  .investor {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .investor ul {
    max-width: 95%;
    margin-top: 2.5rem;
  }
  .investor ul li a em {
    font-size: 0.9rem;
  }
  .investor ul li a p {
    font-size: 0.8rem;
  }
  .investor ul li a p .mb {
    display: none;
  }
  .investor ul li a:hover em {
    top: 30%;
    font-size: 0.9rem;
  }
  /* investor */
  /* info */
  .info {
    grid-template-rows: none;
    /* contact */
    /* footer */
  }
  .info .contact { /* contact */
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .info .contact ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .info .contact ul li {
    aspect-ratio: 1.75/1;
  }
  .info .contact ul li::before {
    margin: 1rem auto 0.5rem;
  }
  .info footer { /* footer */
    padding-top: 13rem;
    padding-bottom: 8.5rem;
  }
  .info footer > ul {
    justify-content: center;
  }
  .info footer dl {
    justify-content: center;
  }
  .info footer dl div:last-child {
    margin-top: 0.25rem;
  }
  .info footer .copy {
    text-align: center;
  }
  .info footer .footer-logo {
    position: absolute;
    left: 2.5%;
    top: 0;
  }
  .info footer .family {
    right: 50%;
    top: 8rem;
    transform: translateX(50%);
  }
  /* info */
} /* max-1200 */
/* max-800 */
@media screen and (max-width: 800px) {
  .btn-more {
    width: 152px;
    height: 37px;
    border-radius: 19px;
    font-size: 0.9rem;
    line-height: 37px;
  }
  /* main */
  /* main-visual */
  .main-visual .slider-main .slider-item .text-wrap em {
    font-size: 1.2rem;
  }
  .main-visual .slider-main .slider-item .text-wrap h2 {
    font-size: 1.7rem;
  }
  .main-visual .slider-main .slider-item .text-wrap p {
    font-size: 0.8rem;
  }
  .main-visual .slider-main .slick-arrow.slick-prev {
    transform: translateY(1.2rem);
  }
  .main-visual .slider-main .slick-arrow.slick-next {
    transform: translateY(3.6rem);
  }
  /* main-visual */
  /* blog */
  .blog {
    /* news */
  }
  .blog .news { /* news */ }
  .blog .news .tit-wrap {
    padding: 1.5rem 0 1.5rem;
  }
  .blog .news .tit-wrap h2 {
    margin-bottom: 1rem;
    font-size: 1.6rem;
  }
  .blog .news .tit-wrap h2::before {
    margin: 0 auto 1.5rem;
  }
  .blog .news .tit-wrap p {
    padding: 0 2rem;
    font-size: 0.8rem;
  }
  .blog .news .content-wrap {
    height: calc(30.5vw + 6rem);
  }
  .blog .news .content-wrap > ul {
    grid-template-columns: 100px 100px;
  }
  .blog .news .content-wrap > ul .tab {
    height: 1.75rem;
    font-size: 0.75rem;
    line-height: 1.75rem;
  }
  .blog .news .content-wrap > ul .tab ul {
    top: 4.5rem;
  }
  .blog .news .content-wrap > ul .tab ul li a {
    padding: 0.5rem;
  }
  .blog .news .content-wrap > ul .tab ul li a h3 {
    left: 0.5rem;
  }
  .blog .news .content-wrap > ul .tab ul li a small {
    left: 0.5rem;
  }
  .blog .banner { /* banner */
    grid-template-columns: none;
    height: auto;
  }
  .blog .banner li {
    padding: 1.5rem 0;
  }
  .blog .banner li p {
    font-size: 0.9rem;
  }
  /* blog */
  /* investor */
  .investor {
    padding: 2.5rem 0;
  }
  .investor h2 {
    font-size: 1.6rem;
  }
  .investor p {
    padding-top: 1.25rem;
    font-size: 0.8rem;
  }
  .investor ul {
    grid-template-columns: none;
    gap: 0.5rem;
    width: 50vw;
  }
  .investor ul li a::before {
    top: 70%;
  }
  .investor ul li a em {
    top: 80%;
  }
  .investor ul li a:hover p {
    top: 30%;
  }
  /* investor */
  /* info */
  .info .contact { /* contact */
    padding: 2rem 0;
  }
  .info .contact h2 {
    font-size: 1.6rem;
  }
  .info .contact ul {
    width: 90%;
  }
  .info .contact ul li::before {
    width: 3.5rem;
    height: 5rem;
  }
  .info .contact ul li em {
    font-size: 1rem;
  }
  .info .contact ul li p {
    font-size: 0.8rem;
  }
  .info footer { /* footer */
    padding: 13rem 0.75rem 1.5rem;
  }
  .info footer > ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .info footer > ul li ~ li a::before {
    display: none;
  }
} /* max-800 */