@charset "UTF-8";
/* is-hover */
/* media-query */
/* body.is-scroll */
body.is-scroll header {
  background-color: #fff;
  border-bottom: 1px solid #efefef;
  transition: all 0.5s ease-in-out 0s;
}
body.is-scroll header .maxwidth2 .header-top img {
  filter: unset;
  transition: filter 0.3s ease-in-out 0s;
}
body.is-scroll header .maxwidth2 .header-top .gnb .gnb-menu a {
  color: #222;
}
body.is-scroll header .maxwidth2 .header-top .gnb .btn-mega .bar {
  background-color: #1f357c;
}
body.is-scroll .main-visual::after {
  background: rgba(0, 0, 0, 0.8);
}
body.is-scroll .quick {
  transition: opacity 0.5s ease-in-out 0.3s, transform 0.5s ease-in-out 0.3s;
  transform: translateY(-50%) translateX(0px);
  opacity: 1;
}
@media (max-width: 1023px) {
  body.is-scroll header {
    transition: all 0.3s ease-in-out 0s;
  }
  body.is-scroll header img {
    transition: none !important;
  }
  body.is-scroll .mo-quick {
    pointer-events: auto;
    transition: opacity 0.5s ease-in-out 0.3s, transform 0.5s ease-in-out 0.3s;
    opacity: 1;
  }
}

/* header */
header {
  width: 100%;
  position: fixed;
  z-index: 100;
  transition: background-color 0.5s ease-in-out 0s;
}
header .maxwidth2 .header-top {
  padding: 34px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s 0.3s;
}
header .maxwidth2 .header-top h1 a {
  display: flex;
  height: 100%;
  align-items: flex-start;
}
header .maxwidth2 .header-top h1 a img {
  height: 35px;
  -o-object-fit: cover;
     object-fit: cover;
}
header .maxwidth2 .header-top .gnb {
  display: flex;
  gap: 31px;
}
header .maxwidth2 .header-top .gnb .gnb-menu {
  display: flex;
  gap: 61px;
  align-items: flex-end;
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.425, 0.05, 0, 1);
}
header .maxwidth2 .header-top .gnb .gnb-menu li a {
  position: relative;
  color: #fff;
  transition: color 0.3s ease-in-out 0s;
}
header .maxwidth2 .header-top .gnb .gnb-menu li a::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -4px;
  width: 0%;
  left: 50%;
  height: 1px;
  transform: translateX(-50%);
  background-color: #fff;
  transition: width 0.35s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  header .maxwidth2 .header-top .gnb .gnb-menu li a {
    cursor: pointer;
  }
  header .maxwidth2 .header-top .gnb .gnb-menu li a:hover::before {
    width: 100%;
  }
}
header .maxwidth2 .header-top .gnb .gnb-menu.hide {
  opacity: 0;
}
header .maxwidth2 .header-top .gnb .btn-mega {
  width: 25px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
}
header .maxwidth2 .header-top .gnb .btn-mega .bar {
  width: 100%;
  height: 2px;
  display: inline-block;
  background-color: #fff;
  position: relative;
}
header .maxwidth2 .header-top .gnb .btn-mega .bar.top {
  top: 0px;
  transform: rotate(0deg);
  will-change: transform;
  transform-origin: center;
  transition-delay: 0.3s, 0s, 0.3s;
  transition-duration: 0.3s, 0.3s, 0.3s;
  transition-property: top, transform, background-color;
}
header .maxwidth2 .header-top .gnb .btn-mega .bar.center {
  margin: 7px 0;
  opacity: 1;
  transition-delay: 0.3s, 0.3s;
  transition-property: opacity, background-color;
  transition-duration: 0.3s, 0.3s;
}
header .maxwidth2 .header-top .gnb .btn-mega .bar.bottom {
  bottom: 0px;
  transform: rotate(0deg);
  will-change: transform;
  transform-origin: center;
  transition-delay: 0.3s, 0s, 0.3s;
  transition-duration: 0.3s, 0.3s, 0.3s;
  transition-property: bottom, transform, background-color;
}
header .maxwidth2 .header-top .gnb .btn-mega .bar.no-scroll {
  background-color: #fff !important;
}
header .maxwidth2 .header-top .gnb .btn-mega.active .bar {
  background-color: #fff !important;
}
header .maxwidth2 .header-top .gnb .btn-mega.active .bar.top {
  top: 9px;
  transform: rotate(-45deg);
  transition-delay: 0s, 0.3s;
}
header .maxwidth2 .header-top .gnb .btn-mega.active .bar.center {
  opacity: 0;
}
header .maxwidth2 .header-top .gnb .btn-mega.active .bar.bottom {
  bottom: 9px;
  transform: rotate(45deg);
  transition-delay: 0s, 0.3s;
}
header .maxwidth2 .header-top.no-scroll {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
}
header.no-scroll {
  border-bottom: none !important;
  background-color: transparent !important;
  transition-delay: 0s !important;
}

/* sitemap */
.mega-menu {
  position: fixed;
  opacity: 0;
  inset: 0;
  z-index: 99;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(15px);
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.425, 0.05, 0, 1), opacity 0.6s cubic-bezier(0.425, 0.05, 0, 1);
  -webkit-backdrop-filter: blur(15px);
  scrollbar-width: none;
}
.mega-menu .menu-list {
  display: flex;
  justify-content: center;
  padding: 173px 0 92px;
}
.mega-menu .menu-list .is-mobile-logo {
  display: none;
}
.mega-menu .menu-list .main-menu {
  opacity: 0;
  transform: translateY(50px);
}
.mega-menu .menu-list .main-menu h3 {
  font-weight: 900;
  color: #fff;
  font-size: 18px;
  padding: 0 0 2.5rem 0;
  transition: color 0.35s;
}
.mega-menu .menu-list .main-menu h3.active {
  color: #34dbff;
}
.mega-menu .menu-list .main-menu svg {
  display: none;
}
.mega-menu .menu-list .main-menu .sub-menu li a {
  position: relative;
  color: #fff;
  line-height: 1.89;
  transition: font-weight 0.3s ease, left 0.3s ease-in-out;
  font-size: 18px;
  left: 0;
}
.mega-menu .menu-list .main-menu .sub-menu li a.menu-group {
  font-weight: 800;
}
.mega-menu .menu-list .main-menu .sub-menu li a::before {
  opacity: 0;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
  transform: translate(-10px, -50%) scale(0);
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #34dbff;
  left: -13px;
  top: 50%;
}
@media (hover: hover) and (pointer: fine) {
  .mega-menu .menu-list .main-menu .sub-menu li a {
    cursor: pointer;
  }
  .mega-menu .menu-list .main-menu .sub-menu li a:hover {
    left: 10px;
  }
  .mega-menu .menu-list .main-menu .sub-menu li a:hover:not(.menu-group) {
    font-weight: 700;
  }
  .mega-menu .menu-list .main-menu .sub-menu li a:hover::before {
    opacity: 1;
    transform: translate(0px, -50%) scale(1);
  }
}
.mega-menu .menu-list .main-menu .sub-menu li.pdb {
  padding: 0 0 3.3rem 0;
}
.mega-menu .menu-list .main-menu:not(:last-child) {
  width: 174px;
}
.mega-menu.open {
  opacity: 1;
  transform: translateY(0%);
}
.mega-menu.open .menu-list .main-menu {
  opacity: 1;
  transform: translateY(0px);
  transition: all 0.8s ease-in-out;
}
.mega-menu.open .menu-list .main-menu:nth-of-type(1) {
  transition-delay: 0.075s;
}
.mega-menu.open .menu-list .main-menu:nth-of-type(2) {
  transition-delay: 0.15s;
}
.mega-menu.open .menu-list .main-menu:nth-of-type(3) {
  transition-delay: 0.225s;
}
.mega-menu.open .menu-list .main-menu:nth-of-type(4) {
  transition-delay: 0.3s;
}
.mega-menu.open .menu-list .main-menu:nth-of-type(5) {
  transition-delay: 0.375s;
}
.mega-menu.open .menu-list .main-menu:nth-of-type(6) {
  transition-delay: 0.45s;
}
.mega-menu.open .menu-list .main-menu:nth-of-type(7) {
  transition-delay: 0.525s;
}
.mega-menu.open .menu-list .main-menu:nth-of-type(8) {
  transition-delay: 0.6s;
}
.mega-dim {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  inset: 0;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  background-color: rgba(0, 0, 0, 0.75);
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
  z-index: 98;
}
.mega-dim.show {
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

@media (max-width: 1399px) {
  header {
    transition: background-color 0.3s ease-in-out 0s;
  }
  header .maxwidth2 .header-top {
    padding: 23px 0;
    transition: all 0.3s 0s;
  }
  header .maxwidth2 .header-top h1 {
    opacity: 1;
    transition: opacity 0.3s;
  }
  header .maxwidth2 .header-top h1.hide {
    opacity: 0;
  }
  header .maxwidth2 .header-top .gnb .gnb-menu {
    display: none;
  }
  header .maxwidth2 .header-top .gnb .btn-mega {
    width: 42px;
    height: 42px;
    align-items: center;
    border-radius: 50%;
    overflow: hidden;
  }
  header .maxwidth2 .header-top .gnb .btn-mega .bar {
    width: 25px;
    height: 2px;
    border-radius: 0px;
  }
  header .maxwidth2 .header-top .gnb .btn-mega.active {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }
  header .maxwidth2 .header-top .gnb .btn-mega.active .bar {
    width: 20px;
    height: 3px;
    border-radius: 10px;
  }
  header .maxwidth2 .header-top .gnb .btn-mega.active .bar.top {
    top: 10px;
    transform: rotate(-45deg);
    transition-delay: 0s, 0.3s;
  }
  header .maxwidth2 .header-top .gnb .btn-mega.active .bar.center {
    opacity: 0;
    transition-delay: 0s;
  }
  header .maxwidth2 .header-top .gnb .btn-mega.active .bar.bottom {
    bottom: 10px;
    transform: rotate(45deg);
    transition-delay: 0s, 0.3s;
  }
  header .maxwidth2 .header-top.line {
    border-bottom: 0px solid transparent;
  }
  /* sitemap */
  .mega-menu {
    width: 50%;
    max-width: 425px;
    left: unset;
    right: 0;
    background-color: #152453;
    backdrop-filter: blur(15px);
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.425, 0.05, 0, 1), opacity 0.6s cubic-bezier(0.425, 0.05, 0, 1);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 30px 0 0 30px;
  }
  .mega-menu .menu-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 17.5dvh 10px 0;
    position: relative;
  }
  .mega-menu .menu-list .is-mobile-logo {
    display: block;
    width: 220px;
    position: absolute;
    top: 32px;
    left: 10px;
  }
  .mega-menu .menu-list .main-menu {
    opacity: 0;
    transform: translateX(30px);
    padding: 0 0 20px 0;
    position: relative;
  }
  .mega-menu .menu-list .main-menu h3 {
    font-weight: 700;
    color: #fff;
    padding: 0 0 15px 0;
    cursor: pointer;
  }
  .mega-menu .menu-list .main-menu svg {
    position: absolute;
    right: -2px;
    top: -5px;
    color: #fff;
    display: block;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s ease-in-out;
    width: 26px;
    height: 26px;
  }
  .mega-menu .menu-list .main-menu svg.rotate {
    transform: rotate(180deg);
  }
  .mega-menu .menu-list .main-menu .sub-menu {
    padding: 10px;
  }
  .mega-menu .menu-list .main-menu .sub-menu li a {
    display: inline-block;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
  }
  .mega-menu .menu-list .main-menu .sub-menu li a.menu-group {
    font-weight: 700;
    font-size: 17px;
    padding: 0 0 5px 0;
  }
  .mega-menu .menu-list .main-menu .sub-menu li a::before {
    display: none;
  }
}
@media (max-width: 1399px) and (hover: hover) and (pointer: fine) {
  .mega-menu .menu-list .main-menu .sub-menu li a {
    cursor: pointer;
  }
  .mega-menu .menu-list .main-menu .sub-menu li a:hover:not(.menu-group) {
    font-weight: 400;
  }
}
@media (max-width: 1399px) {
  .mega-menu .menu-list .main-menu .sub-menu li.pdb {
    padding: 0 0 2rem 0;
  }
  .mega-menu .menu-list .main-menu:not(:last-child) {
    width: auto;
  }
  .mega-menu .menu-list .main-menu.menu02 .sub-menu li a:not(.menu-group) {
    padding: 0 0 0 5px;
  }
  .mega-menu .menu-list .main-menu.menu03 .sub-menu li a:not(.menu-group) {
    padding: 0 0 0 5px;
  }
  .mega-menu.open {
    transform: translateX(0%);
  }
  .mega-menu.open .menu-list .main-menu {
    transform: translateX(0px);
    transition: all 0.3s ease-in-out;
  }
  .mega-menu.open .menu-list .main-menu:nth-of-type(1) {
    transition-delay: 0.075s;
  }
  .mega-menu.open .menu-list .main-menu:nth-of-type(2) {
    transition-delay: 0.15s;
  }
  .mega-menu.open .menu-list .main-menu:nth-of-type(3) {
    transition-delay: 0.225s;
  }
  .mega-menu.open .menu-list .main-menu:nth-of-type(4) {
    transition-delay: 0.3s;
  }
  .mega-menu.open .menu-list .main-menu:nth-of-type(5) {
    transition-delay: 0.375s;
  }
  .mega-menu.open .menu-list .main-menu:nth-of-type(6) {
    transition-delay: 0.45s;
  }
  .mega-menu.open .menu-list .main-menu:nth-of-type(7) {
    transition-delay: 0.525s;
  }
  .mega-menu.open .menu-list .main-menu:nth-of-type(8) {
    transition-delay: 0.6s;
  }
}
@media (max-width: 767px) {
  header .maxwidth2 {
    padding: 0 15px;
  }
  header .maxwidth2 .header-top {
    padding: 12px 0 9px;
  }
  header .maxwidth2 .header-top h1 a img {
    height: unset;
    width: 180px;
    transition: none;
  }
  header .maxwidth2 .header-top .gnb .btn-mega {
    width: 38px;
    height: 38px;
    position: relative;
    left: 7px;
    align-items: center;
    transition-property: box-shadow;
    transition-duration: 0s;
    transition-delay: 0s;
  }
  header .maxwidth2 .header-top .gnb .btn-mega .bar.top {
    width: 18px;
    top: 6px;
    height: 2px;
    border-radius: 10px;
    transition-delay: 0.3s, 0s, 0.3s, 0.3s, 0.3s, 0.3s;
    transition-duration: 0.3s, 0.3s, 0.3s, 0.3s, 0.3s, 0.3s;
    transition-property: top, transform, height, border-radius, width, background-color;
  }
  header .maxwidth2 .header-top .gnb .btn-mega .bar.center {
    visibility: hidden;
  }
  header .maxwidth2 .header-top .gnb .btn-mega .bar.bottom {
    width: 18px;
    bottom: 6px;
    height: 2px;
    border-radius: 10px;
    transition-delay: 0.3s, 0s, 0.3s, 0.3s, 0.3s, 0.3s;
    transition-duration: 0.3s, 0.3s, 0.3s, 0.3s, 0.3s, 0.3s;
    transition-property: bottom, transform, height, border-radius, width, background-color;
  }
  header .maxwidth2 .header-top .gnb .btn-mega.active {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
    transition-delay: 0.3s;
    transition-duration: 0.1s;
  }
  header .maxwidth2 .header-top .gnb .btn-mega.active .bar.top {
    width: 20px;
    top: 10px;
    height: 3px;
    transform: rotate(-45deg);
    transition-delay: 0s, 0.3s, 0.3s, 0.3s, 0.3s, 0.3s;
    border-radius: 10px;
  }
  header .maxwidth2 .header-top .gnb .btn-mega.active .bar.center {
    opacity: 0;
  }
  header .maxwidth2 .header-top .gnb .btn-mega.active .bar.bottom {
    width: 20px;
    bottom: 10px;
    height: 3px;
    transform: rotate(45deg);
    transition-delay: 0s, 0.3s, 0.3s, 0.3s, 0.3s, 0.3s;
    border-radius: 10px;
  }
  /* sitemap */
  .mega-menu {
    width: 70%;
    border-radius: 24px 0 0 24px;
  }
  .mega-menu .maxwidth .menu-list {
    padding: 17dvh 5px 0 3px;
  }
  .mega-menu .maxwidth .menu-list .is-mobile-logo {
    width: 160px;
    top: 22px;
    left: -2px;
  }
  .mega-menu .maxwidth .menu-list .main-menu {
    padding: 0 0 25px 0;
  }
  .mega-menu .maxwidth .menu-list .main-menu h3 {
    font-size: 16.5px;
    font-weight: 800;
    padding: 0 0 5px 0;
  }
  .mega-menu .maxwidth .menu-list .main-menu svg {
    top: -2px;
    right: -7px;
    width: 20px;
    height: 20px;
    stroke-width: 3px;
  }
  .mega-menu .maxwidth .menu-list .main-menu .sub-menu {
    padding: 10px 10px 0px 5px;
    margin: 0px 0 0px 0;
  }
  .mega-menu .maxwidth .menu-list .main-menu .sub-menu li a {
    font-size: 13px;
    line-height: 2.1;
  }
  .mega-menu .maxwidth .menu-list .main-menu .sub-menu li a.menu-group {
    font-size: 14px;
    padding: 0;
  }
  .mega-menu .maxwidth .menu-list .main-menu .sub-menu li.pdb {
    padding: 0 0 1.5rem 0;
  }
}
/* 퀵메뉴 */
.mo-quick {
  display: none;
}

.quick {
  opacity: 0;
  width: 90px;
  position: fixed;
  right: 23px;
  top: 50%;
  transform: translateY(-50%) translateX(30px);
  border-radius: 20px;
  background-color: #1f357c;
  overflow: hidden;
  z-index: 97;
  box-sizing: border-box;
  border: 1px solid #1f357c;
  transition: opacity 0.5s ease-in-out 0s, transform 0.5s ease-in-out 0s, border-color 0.3s ease-in-out;
}
.quick ul {
  width: 70px;
  margin: 0 auto;
  padding: 8px 0 0;
}
.quick ul li {
  padding: 25px 0;
}
.quick ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.quick ul li a .quick-menu {
  color: #fff;
  font-weight: 400;
  font-size: 14px;
}
.quick ul li:not(:last-child) {
  border-bottom: 1px solid rgba(222, 222, 222, 0.1);
}
.quick .go-top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  background-color: #152453;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  height: 55px;
}
.quick.white-border {
  border-color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 1023px) {
  .quick {
    display: none;
  }
  .mo-quick {
    pointer-events: none;
    opacity: 0;
    z-index: 97;
    position: fixed;
    display: block;
    width: calc(100% - 20px);
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    border-radius: 10px;
    background-color: #152453;
    height: 75px;
    transition: opacity 0.5s ease-in-out 0s, transform 0.5s ease-in-out 0s;
  }
  .mo-quick ul {
    display: flex;
    height: 100%;
  }
  .mo-quick ul li {
    flex: 1;
  }
  .mo-quick ul li a {
    position: relative;
    display: block;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .mo-quick ul li a .icon {
    display: block;
    width: 100%;
    position: relative;
    top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .mo-quick ul li a .icon img {
    width: 30px;
  }
  .mo-quick ul li a .quick-menu {
    color: #fff;
    text-align: center;
    display: block;
    position: absolute;
    bottom: 3px;
    width: 100%;
    font-weight: 700;
    letter-spacing: -0.05em;
  }
  .mo-quick ul li:nth-child(1) a .icon img {
    width: 36px;
  }
  .mo-quick ul li:nth-child(4) a .icon img {
    width: 32px;
  }
}
@media (max-width: 500px) {
  .mo-quick {
    height: 68px;
    width: calc(100% - 15px);
    bottom: 5px;
  }
  .mo-quick ul li {
    position: relative;
  }
  .mo-quick ul li a .icon {
    top: 8px;
  }
  .mo-quick ul li a .quick-menu {
    bottom: 7px;
    font-size: 12.5px;
    font-weight: 800;
  }
  .mo-quick ul li:nth-child(1) a .icon {
    top: 12px;
  }
  .mo-quick ul li:nth-child(1) a .icon img {
    width: 28px;
  }
  .mo-quick ul li:nth-child(2) a .icon {
    top: 14px;
  }
  .mo-quick ul li:nth-child(2) a .icon img {
    width: 26px;
  }
  .mo-quick ul li:nth-child(3) a .icon {
    top: 14px;
  }
  .mo-quick ul li:nth-child(3) a .icon img {
    width: 24px;
  }
  .mo-quick ul li:nth-child(4) a .icon {
    top: 12px;
  }
  .mo-quick ul li:nth-child(4) a .icon img {
    width: 24px;
  }
  .mo-quick ul li:nth-child(5) a .icon {
    top: 15px;
  }
  .mo-quick ul li:nth-child(5) a .icon img {
    width: 22px;
  }
  .mo-quick ul li:not(:last-child)::before {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 65%;
    background-color: rgba(255, 255, 255, 0.7);
    top: 50%;
    transform: translateY(-50%);
    right: 0;
  }
}
/* footer */
footer {
  background-color: #1f357c;
  padding: 0 0 6.7rem;
}
footer ul {
  position: relative;
  padding: 7.2rem 0 0;
  display: flex;
  gap: 5.7rem;
}
footer ul li {
  position: relative;
}
footer ul li a {
  color: #fff;
  font-weight: 700;
}
footer ul li button {
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
footer ul li:not(:last-child)::before {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 80%;
  top: 45%;
  transform: translateY(-50%);
  right: -2.85rem;
  background-color: #fff;
}
footer ul::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  background-color: rgba(222, 222, 222, 0.2);
  height: 1px;
  top: 0;
  left: 0;
  max-width: 1522px;
}
footer address {
  padding: 3rem 0 0;
  color: #fff;
  opacity: 0.5;
  font-size: 1.5rem;
  line-height: 1.8;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  footer {
    padding: 0 0 18rem;
  }
  footer ul {
    gap: 5rem;
    padding: 6rem 0 0;
    justify-content: center;
  }
  footer ul li a {
    font-size: 14px;
  }
  footer ul li button {
    font-size: 14px;
  }
  footer ul li:not(:last-child)::before {
    right: -2.5rem;
  }
  footer address {
    padding: 4.5rem 0 0;
    text-align: center;
  }
}
/* swiper-control */
.swiper-control {
  position: absolute;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}
.swiper-control button {
  position: unset;
  color: #fff;
  width: unset;
  height: unset;
  padding: 0;
  margin: 0;
  font-weight: 900;
  font-size: 1.2rem;
  width: 2.6rem;
  height: 2.6rem;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  line-height: 1;
}
.swiper-control button.swiper-button-prev::after {
  content: none;
}
.swiper-control button.swiper-button-prev.swiper-button-disabled {
  opacity: 1;
}
.swiper-control button.swiper-button-next::after {
  content: none;
}
.swiper-control button.swiper-button-next.swiper-button-disabled {
  opacity: 1;
}
.swiper-control .swiper-pagination {
  font-weight: 900;
  font-size: 1.2rem;
  color: #fff;
  position: unset;
  width: unset;
  display: inline-block;
  border-radius: 1.3rem;
  background-color: rgba(0, 0, 0, 0.2);
  width: 6.4rem;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.15em;
}
.swiper-control.main-swiper-control {
  left: 50%;
  transform: translateX(-50%);
  bottom: 32.5%;
}
.swiper-control.manual-swiper-control {
  bottom: 3%;
  right: 3%;
}
.swiper-control.interior-swiper-control {
  bottom: 3%;
  right: 2.2%;
}

@media (max-width: 767px) {
  .swiper-control {
    gap: 0.5rem;
  }
  .swiper-control button {
    font-size: 10.5px;
  }
  .swiper-control .swiper-pagination {
    width: auto;
    font-size: 10.5px;
    letter-spacing: 0.05em;
    padding: 0 8px;
  }
  .swiper-control.main-swiper-control {
    bottom: 27.5%;
  }
  .swiper-control.interior-swiper-control {
    bottom: 6px;
    right: 6px;
  }
}
/* section-heading */
.section-heading {
  text-align: center;
}
.section-heading .ci {
  margin: 0 0 2.8rem 0;
}
.section-heading > span {
  letter-spacing: 0.5em;
  font-size: 1rem;
  text-transform: uppercase;
}
.section-heading h3 {
  padding: 3rem 0 2.5rem;
  font-size: 4rem;
  letter-spacing: -0.05em;
}
.section-heading h3 .ani-text {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.section-heading h3 .ani-text .ani-inner {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.18, 1), opacity 0.9s cubic-bezier(0.77, 0, 0.18, 1);
}
.section-heading p b {
  color: #1f357c;
}
.section-heading p strong {
  color: #1f357c;
}
.section-heading p .ani-text {
  vertical-align: top;
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s 0.4s;
}
.section-heading.no-center {
  text-align: left;
}
.section-heading.no-center h3 {
  padding: 2.7rem 0 2rem;
}
.section-heading.animate h3 .ani-text .ani-inner {
  opacity: 1;
  transform: translateY(0%);
}
.section-heading.animate p .ani-text {
  clip-path: inset(0 0 0 0);
}

@media (max-width: 850px) {
  .section-heading p br {
    display: none;
  }
}
@media (max-width: 767px) {
  .section-heading .ci {
    margin: 0 0 2rem 0;
  }
  .section-heading .ci img {
    width: 32px;
  }
  .section-heading > span {
    white-space: nowrap;
    font-size: 7px;
  }
  .section-heading h3 {
    font-size: 3.2rem;
    padding: 2.4rem 0 2.4rem;
  }
  .section-heading p {
    font-size: 14px;
  }
  .section-heading p .ani-text {
    display: block;
  }
  .section-heading p .ani-text.inline-block {
    display: inline-block;
  }
  .section-heading.no-center h3 {
    padding: 2.2rem 0 1rem;
  }
}/*# sourceMappingURL=components.css.map */