.visual {
  height: 100vh;
}
.visual {
}
.visual .desc {
  width: 100%;

  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5555;

  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.visual .desc .items {
  width: 880px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.visual .desc .items .item {
  flex: 1;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  animation: load_top 2s both;
}
.visual .desc .items .item:nth-child(even) {
  background: rgba(9, 69, 60, 0.6);
}
.visual .desc .items .item span {
  font-size: 17px;
  font-weight: 600;
  color: white;
}
.visual .desc .items .item:nth-child(1) {
  animation-delay: 1.7s;
}
.visual .desc .items .item:nth-child(2) {
  animation-delay: 1.9s;
}
.visual .desc .items .item:nth-child(3) {
  animation-delay: 2s;
}
.visual .desc .items .item:nth-child(4) {
  animation-delay: 1.8s;
}

.vi_link_btn {
  width: 101px;
  height: 101px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0d695b;
  border-radius: 50%;
  position: relative;
  right: 130px;
  bottom: 30px;

  animation: load_L 1.5s both;
  animation-delay: 1.7s;
}

.vi_link_btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 130px;
  background: url("../image/vi_link_btn_point.png");
  display: block;

  display: inline-block; /* 요소의 회전 중심을 위해 설정 */
  animation: spin 5s linear infinite; /* 2초 동안 선형으로 무한 반복 */
}
.vi_link_btn img {
}
@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.visual .vi_bg {
  width: calc(100% - 100px);
  height: 100%;
  background: url("../image/visual_bg.png") no-repeat center right;
  background-size: cover;
  border-radius: 0 0 300px 0;

  animation: load_bg 2s both;
  animation-delay: 0.2s;
}
.visual .vi_bg .title {
  position: absolute;
  right: 20%;
  top: 16%;
  color: #181818;

  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
}
.visual .vi_bg .title .vi_tt {
  font-size: 46px;
  font-weight: 300;
}
.visual .vi_bg .title .vi_tt b {
  font-weight: 500;
}
.visual .vi_bg .title h2 {
  margin: 14px 0 0;
}
.visual .vi_bg .title h2 span {
  font-size: 72px;
  font-weight: 700;
}
.visual .vi_bg .title h2 span:first-child {
  margin-right: 16px;
}
.visual .vi_bg .title div {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.visual .vi_bg .title .line {
  width: 62px;
  height: 1.5px;
  background: #0d695b;
  display: block;
  margin: 26px 0;
}

/* .visual .vi_bg .title div p {
  font-size: 28px;
  font-weight: 200;
}
.visual .vi_bg .title div p:first-child {
  margin-right: 10px;
}
.visual .vi_bg .title div p b {
  font-weight: 500;
}
.visual .vi_bg .title div p i {
  font-style: italic;
  font-weight: 500;
} */
.visual .vi_bg .title img {
}

/* location */
.location {
  height: 85vh;
  /* background: pink; */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.location .title {
  margin-bottom: 52px;
  text-align: center;
}
.location .title span {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.9px;
  margin-bottom: 16px;
  display: block;
  color: #010101;
}
.location .title h2 {
  font-size: 40px;
  font-weight: 700;
  color: #17675c;
}

.sliderDesc {
  width: 1116px;
  height: 443px;
  background: url("../image/sliderDesc.png") no-repeat center center;
  background-size: cover;
  /* position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%); */
  z-index: 3333;
  /* border: 1px solid black; */
}
.loSlider {
  width: 370px;
  height: 370px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.loSlider .slick-dots {
  width: 450px;
  height: 450px;
  border: 1px solid black;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.loSlider .slick-dots li {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #0d695b;
  position: absolute;
  cursor: pointer;
}
/* .loSlider .slick-dots li::before {
  content: "";
  width: 210px;
  height: 9px;
  display: block;
  background: #e4d3c9;

  position: absolute;
  z-index: -1;
  transform: rotate(-45deg);
}
.loSlider .slick-dots li:nth-child(1):before {
  left: -218px;
  bottom: -120px;
} */
.loSlider .slick-dots li::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.5s;

  width: 20px;
  height: 20px;
  display: block;
  border: 2px solid #0d695b;
  border-radius: 50%;
}
.loSlider .slick-dots li.slick-active::after {
  width: 40px;
  height: 40px;
  opacity: 1;
}
.loSlider .slick-dots li:nth-child(1) {
  left: -7px;
  top: 50%;
  transform: translateY(-50%);
}
.loSlider .slick-dots li:nth-child(2) {
  left: 50%;
  top: -7px;
  transform: translateX(-50%);
}
.loSlider .slick-dots li:nth-child(3) {
  right: -7px;
  top: 50%;
  transform: translateY(-50%);
}
.loSlider .slick-dots li:nth-child(4) {
  left: 50%;
  bottom: -7px;
  transform: translateX(-50%);
}
.loSlider .slick-dots li button {
  display: none;
}

.loSlider .item {
}
.loSlider .item img {
  width: 370px;
  height: 370px;
}

/* premium */
.premium {
  height: 1350px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: rgba(193, 165, 148, 0.16);
}
.premium .title {
  text-align: center;
  margin-bottom: 260px;
}
.premium .title span {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.9px;
  margin-bottom: 16px;
  display: block;
  color: #010101;
}
.premium .title h2 {
  font-size: 40px;
  font-weight: 700;
  color: #17675c;
}
.premium .title .tt {
  margin-top: 32px;
}
.premiumSlider {
  width: 1166px;
  position: relative;
  z-index: 1000;
}
.premiumSlider .slick-dots {
  display: flex;
  justify-content: space-between;
  align-items: center;

  position: absolute;
  left: 50%;
  top: -27.5%;
  transform: translateX(-50%);
}
.premiumSlider .slick-dots li {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  cursor: pointer;
  border: 4px solid #0d695b;
  margin: 0 10px;
  transition: 0.3s;

  transform: scale(0.85);
}
.premiumSlider .slick-dots li:hover {
  transform: scale(1);
}
.premiumSlider .slick-dots li:nth-of-type(1) {
  background: url("../image/thumb01.png") no-repeat center center;
  background-size: cover;
}
.premiumSlider .slick-dots li:nth-of-type(2) {
  background: url("../image/thumb02.png") no-repeat center center;
  background-size: cover;
}
.premiumSlider .slick-dots li:nth-of-type(3) {
  background: url("../image/thumb03.png") no-repeat center center;
  background-size: cover;
}
.premiumSlider .slick-dots li:nth-of-type(4) {
  background: url("../image/thumb04.png") no-repeat center center;
  background-size: cover;
}
.premiumSlider .slick-dots li:nth-of-type(5) {
  background: url("../image/thumb05.png") no-repeat center center;
  background-size: cover;
}
.premiumSlider .slick-dots li:nth-of-type(6) {
  background: url("../image/thumb06.png") no-repeat center center;
  background-size: cover;
}
.premiumSlider .slick-dots li.slick-active {
  border: 4px solid #c49e87;
  transform: scale(1);
}
.premiumSlider .slick-dots li button {
  display: none;
}
.premiumSlider .item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.premiumSlider .item .premium_img {
  width: 1166px;
}
.premiumSlider .item .pr_point {
  margin: 52px 0 40px;
}
.premiumSlider .item .pr_text {
  text-align: center;
}
.premiumSlider .item .pr_text p {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 30px;
  color: #ffffff;
}
.premiumSlider .item .pr_text h2 {
  font-size: 32px;
  font-weight: 600;
  /* line-height: 36px; */
  margin-bottom: 14px;
  color: #c49e87;
}
.pre_color {
  width: 100%;
  height: 600px;
  background: #0d695b;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

/* brand */
.brand {
  background: url("../image/brand_bg.png") no-repeat center left;
  background-size: cover;
}
.brand .inner {
  width: 1510px;
  height: 372px;
  margin: 0 auto;
  padding: 100px 0 90px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand .title {
}
.brand .title .br_tt {
  font-size: 22px;
  font-weight: 500;
  line-height: 34px;
  display: block;
  color: #141414;
}
.brand .title .br_tt b {
  font-weight: 700;
}
.brand .title h2 {
  font-size: 36px;
  font-weight: 600;
  color: #141414;
  line-height: 50px;
  margin-top: 26px;
}
.brand .title h2 strong {
  font-size: 42px;
  font-weight: 700;
  color: #0d695b;
}
.brand .title p {
  font-size: 18px;
  font-weight: 300;
  color: #141414;
}
.brand .title p b {
  font-weight: 700;
}
.brandArrow {
  margin: 32px 0 50px;
}
.brandArrow img {
  cursor: pointer;
}
.brandArrow img.brand_n {
  margin-left: 20px;
}
.brandLogo {
}

.brandSlider {
  width: 974px;
}
.brandSlider div {
}
.brandSlider div img {
  width: 300px;
  height: 372px;
}

/* inquiry */
.inquiry {
  background: url("../image/inquiry_bg.png") no-repeat center center;
  background-size: cover;
}
.inquiry .inner {
  width: 83.35%;
  margin: 0 auto;
  padding: 134px 0;

  display: flex;
  justify-content: space-between;
  align-items: center;

  /* height: 493px; */
}
.inquiry .title {
  color: #fff;
}
.inquiry .title h2 {
  font-size: 62px;
  font-weight: 600;
  text-transform: uppercase;
}
.inquiry .title p {
  font-size: 21px;
  font-weight: 400;
  margin: 36px 0 200px;
}
.inquiry .title a {
  font-size: 18px;
  font-weight: 300;
  color: #fff;
}

.inquiry .desc {
  height: 100%;
}
.inquiry .desc img {
  height: 100%;
  font-size: 0;
  display: inline-block;
  object-fit: cover;
}
.inquiry .desc img.map {
  width: 55.4%;
}
.inquiry .desc img.infor {
  width: 42.67%;
  margin-left: 20px;
}

@media all and (min-width: 1250px) and (max-width: 1680px) {
  .fixMenu {
    display: none;
  }

  .visual .vi_bg {
    width: 100%;
  }

  .brand {
    background: url("../image/brand_bg.png") no-repeat center left 13%;
    background-size: cover;
  }

  .brand .title {
    margin-left: 8%;
    transform: scale(0.9);
  }

  .brandSlider {
    width: 974px;
    margin-right: -7%;
  }

  /* inquiry */
  .inquiry {
    background: url("../image/inquiry_bg.png") no-repeat center center;
    background-size: cover;
  }
  .inquiry .inner {
    width: 90%;
  }
  .inquiry .title {
    margin-right: 6%;
  }
  .inquiry .desc img.map {
    width: 50%;
  }
  .inquiry .desc img.infor {
    width: 38.45%;
  }
}
