:root {
  --gray1: #f2f2f2;
  --gray2: #e6e6e6;
  --gray3: #dadada;
  --gray4: #bfbfbf;
  --gray5: #999999;
  --gray6: #7e7e7e;

  --black0: #515151;
  --black1: #424242;
  --black2: #343434;
  --black3: #222222;
  --black4: #171717;

  /* logo green Color */
  --green0: #4bd8b7;
  --green1: #39b598;
  --green2: #14ab38;
  --green3: #17430e;

  --blue0: #e2e7f8;
  --blue1: #7e8fc5;
  --blue2: #334fa7;
  --blue3: #22378c;

  /* Yellow Color */
  --yellow1: #f7d420;

  /* Point Color */
  --red: #d61f06;
  --green: #14ab38;
  --blue: #334fa7;
  --yellow: #f7d420;
}

html,
body {
  width: 100%;
  /* overflow-x: hidden; */
  overflow-y: auto;
}

body,
div,
ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
form,
button,
p {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Lexend",
    "Apple SD Gothic Neo", "Pretendard Variable", "Pretendard", "Noto Sans KR",
    "Montserrat", "Noto Serif KR", "Nanum Brush Script", "Segoe UI",
    "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
    sans-serif, serif, cursive;
  font-size: 16px;
  color: #424242;
  line-height: 1.4;
  font-weight: 400;
  background-color: #fff;
  word-break: keep-all;
  word-wrap: break-word;
}

img,
fieldset,
iframe {
  border: 0 none;
  padding: 0;
}

img {
  vertical-align: middle;
}

input,
select,
button {
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo",
    "Pretendard Variable", "Pretendard", "Montserrat", "Noto Sans KR",
    "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", sans-serif, serif;
  vertical-align: middle;
}

select,
input {
  padding: 0.3125rem 1rem;
}

address {
  font-style: normal;
}

label,
button {
  cursor: pointer;
  vertical-align: middle;
}

button {
  border: none;
  background: none;
}

table {
  /* width: 100%; */
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1rem;
}

a {
  text-decoration: none;
  color: #424242;
  width: 100%;
  height: 100%;
}

a:hover {
  text-decoration: none;
}

th {
  text-align: center;
}

ul,
li {
  list-style: none;
}

* {
  box-sizing: border-box;
}

.wrapper {
  position: relative;
  width: 100%;
  min-width: 1280px;
  overflow-y: hidden;
}

.logo,
.logo_1 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo img {
  width: 9.375rem;
  transition: all 0.3s ease-in;
}

.logo_1,
.logo h1 {
  display: none;
}

.navbar_container {
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  max-height: 120px;
  /* padding: 0 20px; */
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  position: fixed;
  top: 0;
  z-index: 100;
  transition: all 0.3s;
}

.navbar {
  width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
  height: 80px;
  /* border: 1px solid red; */
}

.menu {
  display: flex;
  /* gap: 10px; */
}

.menu > li {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  transition: all 0.5s;
}

.menu > li.no-padding {
  padding-right: 0;
}

.menu-item-has-children a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black2);
  transition: all 0.3s ease;
}

.menu li a:hover,
.menu li a.nover {
  color: var(--blue2);
}

.menu li:hover .sub-menu {
  transform: translateY(0);
  opacity: 0.9;
  visibility: visible;
}

.menu > li.menu-item-has-children.active::after {
  transform: rotate(180deg);
}

.sub-menu {
  width: 160px;
  background: white;
  position: absolute;
  top: 73px;
  text-align: center;
  padding: 10px 20px;
  border-top: 3px solid var(--blue2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}

.sub-menu a {
  /* text-transform: capitalize; */
  font-size: 0.9375rem;
  font-weight: 400;
  color: #424242;
  display: block;
}

.sub-menu li {
  border-bottom: 1px solid #ccc;
  padding: 8px 0;
  width: 100%;
}

.sub-menu li:last-child {
  margin-bottom: 10px;
}

/* 토글 버튼 */
.toggle_btn {
  width: 25px;
  height: 40px;
  position: relative;
  cursor: pointer;
  display: none;
}

.toggle_btn span {
  display: block;
  content: "";
  background: #222;
  width: 18px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.toggle_btn span::before,
.toggle_btn span::after {
  content: "";
  background: #222;
  position: absolute;
  width: 25px;
  height: 2px;
}

.toggle_btn span::before {
  top: -8px;
}

.toggle_btn span::after {
  top: 8px;
}

.toggle_close {
  width: 35px;
  height: 35px;
  background-color: #ffffff;
  margin: 0 0 15px 15px;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: red;
  cursor: pointer;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.menu-overlay.active {
  visibility: visible;
  opacity: 1;
}

/* Language */
.language {
  display: flex;
  align-items: center;
  margin-left: 40px;
}

.language li {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray5);
  position: relative;
  padding-right: 25px;
  cursor: pointer;
}

.language li::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 11px;
  width: 1px;
  height: 13px;
  background-color: var(--gray3);
}

.language li:last-child:after {
  display: none;
}
.language li:last-child {
  padding-right: 0;
}

.language li span {
  display: block;
}

.language li.active {
  color: var(--green2);
}

/* Visual */
#visual {
  width: 100%;
  /* height: 700px; */
  position: relative;
  margin-top: 80px;
  margin-bottom: 4.375rem;
}

.visual-01 {
  height: 51.25rem;
  position: relative;
  background-image: url("/images/visual01.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  isolation: isolate;
  transition: all 0.2s ease-in;
}

.visual-02 {
  height: 51.25rem;
  position: relative;
  background-image: url("/images/visual02.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  isolation: isolate;
  transition: all 0.2s ease-in;
}

.visual-03 {
  height: 51.25rem;
  position: relative;
  background-image: url("/images/visual03.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  isolation: isolate;
  transition: all 0.2s ease-in;
}

.visual-04 {
  height: 51.25rem;
  position: relative;
  background-image: url("/images/visual04.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  isolation: isolate;
  transition: all 0.2s ease-in;
}

.visual-01::after,
.visual-02::after,
.visual-03::after,
.visual-04::after {
  content: "";
  position: absolute;
  background-color: var(--black3);
  z-index: -1;
  inset: 0;
  opacity: 0.1;
}

.visual-01 .visual-text {
  display: inline-block;
  position: relative;
  top: 40%;
  right: -50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.visual-02 .visual-text {
  display: inline-block;
  position: relative;
  top: 40%;
  left: 75%;
  text-align: left;
  transform: translate(-50%, -50%);
}

.visual-03 .visual-text {
  display: inline-block;
  position: relative;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.visual-04 .visual-text {
  display: inline-block;
  position: relative;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.visual-text h2 {
  font-size: 4.5rem;
  color: var(--black2);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.9px;
  text-shadow: 1px 1px var(--black2);
}
.visual-text h3 {
  font-size: 3.5rem;
  color: var(--black0);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.9px;
  text-shadow: 1px 1px var(--black2);
}

.visual-text p {
  font-size: 1.125rem;
  color: var(--black0);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.9px;
}

.visual-04 .visual-text h2 {
  color: var(--gray2);
}

.visual-04 .visual-text p {
  color: var(--gray4);
}

/* 고효율 태양광 모듈 */
#solar {
  width: 1280px;
  display: flex;
  gap: 100px;
  align-items: center;
  margin: 7.5rem auto;
}

.solar-text,
.solar-img {
  flex: 1;
}

.solar-img {
  min-width: 650px;
  height: 650px;
  border-radius: 50%;
  overflow: hidden;
  background: url(/images/main-solar-bg.jpg) no-repeat center/cover;
}

.solar-text h3 {
  font-size: 2.125rem;
  font-weight: 500;
  color: var(--gray5);
}

.solar-text h2,
.generator-text h2 {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--black4);
}

.solar-text > p,
.generator-text p {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--black0);
  margin-bottom: 3.125rem;
}

.solar-text p span {
  font-weight: 600;
  color: var(--blue2);
}

.solar-list {
  display: flex;
  gap: 1.25rem;
}

.solar-list p {
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}

.solar-icon {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  background-color: var(--blue2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.625rem;
  transition: all 0.2s ease-in;
}

.solar-icon:hover {
  background-color: #fff;
  border: 1px solid var(--blue2);
  cursor: pointer;
}

.solar-icon:hover span {
  color: var(--blue2);
  font-size: 80px;
}

.solar-icon span {
  font-size: 70px;
  font-weight: 300;
  color: #fff;
  transition: all 0.2s ease-in;
}

#lamp {
  width: 100%;
  /* height: 35rem; */
  background-image: url(/images/main-lamp-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  isolation: isolate;
  transition: all 0.2s ease-in;
  padding: 6.25rem 0;
  margin-bottom: 4.375rem;
}

#lamp::after {
  content: "";
  position: absolute;
  background-color: #17430e;
  z-index: -1;
  inset: 0;
  opacity: 0.8;
}

.lamp-container {
  width: 1280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin: 0 auto;
}

.lamp-product,
.generator-productor {
  display: flex;
  gap: 40px;
}

.lamp-product li {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lamp-product li img {
  max-width: 100%;
  margin-bottom: 10px;
}

.lamp-text h2 {
  font-size: 3.125rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.lamp-text p {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--gray1);
  text-align: center;
}

.lamp-product p {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--gray2);
  text-align: center;
}

/* 독립형 발전기 */
.generator-container {
  width: 1280px;
  display: flex;
  flex-direction: column;
  margin: 0 auto 100px;
}

.generator-text {
  width: 500px;
}

.generator-productor li {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.generator-productor li:hover img {
  cursor: pointer;
  scale: 1.1;
}

.generator-productor li img {
  opacity: 0.8;
  max-width: 100%;
  transition: all 0.2s ease-in;
}

.generator-productor li::after {
  content: "";
  position: absolute;
  background-color: #000;
  z-index: -1;
  inset: 0;
  opacity: 1;
}

.gen-title {
  position: absolute;
  left: 30px;
  bottom: 30px;
}

.gen-title h3 {
  font-size: 1.875rem;
  font-weight: 500;
  color: #fff;
}

.gen-title p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray3);
}

/* 공지사항 & 바로가기 */
/* 공지사항 */
#board {
  width: 1280px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* grid-auto-rows: 8.125rem; */
  gap: 20px;
  margin: 0 auto 70px;
}

.board-tel {
  border: 1px solid var(--gray3);
  padding: 30px;
  flex: 1;
  position: relative;
}

.board-tel h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--black3);
}

.board-tel h2 {
  font-size: 2.75rem;
  line-height: 1;
  font-weight: 500;
  color: var(--blue2);
  /* margin: 10px 0; */
}

.board-tel dt {
  font-size: 0.9375rem;
  color: #808080;
  font-weight: 600;
  line-height: 1.6;
}

.board-tel dl {
  margin: 10px 0;
}

.board-tel dd {
  font-size: 0.9375rem;
  color: #222222;
  font-weight: 600;
  line-height: 1.6;
  margin: -24px 0 0 70px;
}

.board-tel li {
  font-size: 0.9375rem;
  color: #808080;
  font-weight: 500;
  line-height: 1.4;
}

.board-tel span {
  position: absolute;
  right: 40px;
  top: 90px;
  font-size: 6.25rem;
  color: var(--gray4);
  transition: all 300ms ease-in;
}

.board-banner {
  width: 100%;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
}

.banner {
  /* width: 18.75rem;
  height: 8.125rem; */
  border: 1px solid var(--gray3);
  display: flex;
  align-items: center;
  padding: 1.5rem;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.2s ease-in;
}

.banner span {
  font-size: 3.5rem;
  color: var(--bla1);
  font-weight: 300;
  transition: all 0.2s ease-in-out;
}

.banner:hover {
  background-color: var(--blue0);
  border: 1px solid var(--blue0);
}

.banner i {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black1);
  font-style: normal;
}
.banner i strong {
  color: var(--green2);
}

.banner-text {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}

.banner-text p {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--gray4);
}

/* 배너 */
#banner {
  width: 1280px;
  margin: 0 auto 70px;
}

.banner-container {
  width: 100%;
  display: flex;
  align-items: center;
  /* gap: 8px; */
}

.banner-logo {
  height: 60px;
  overflow: hidden;
  border: 1px solid #cccccc;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  text-align: center;
}

/* .banner-logo .swiper-slide {
  width: 176px !important;
} */

.banner-logo img {
  max-width: 100%;
  /* width: 176px; */
  height: 40px;
  object-fit: contain;
}

/* 푸터 */
#footer {
  width: 100%;
  background-color: var(--black4);
  padding: 60px 0;
}

.footer-container {
  width: 1280px;
  margin: auto;
  display: flex;
  gap: 50px;
}

.footer-logo img {
  width: 9.375rem;
  transition: all 1.5s ease-in;
}

.footer address ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.875rem;
}

.footer address ul li {
  font-size: 0.875rem;
  /* line-height: 25px; */
  font-weight: 400;
  color: var(--gray4);
  padding-right: 20px;
  position: relative;
}

.footer address ul li::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 9px;
  width: 1px;
  height: 10px;
  background-color: var(--gray4);
}

.footer address ul li:last-child:after {
  display: none;
}

.footer .footer-copy {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--gray6);
  /* margin-top: 10px; */
}

.footer-text {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-sns {
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-sns li i {
  display: inline-block;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  color: #fff;
  line-height: 31px !important;
  text-align: center;
  font-size: 1.125rem;
}

.xi-facebook {
  background-color: #3a5ca9;
}

.xi-youtube-play {
  background-color: #de1b1b;
}

.xi-instagram {
  background: linear-gradient(180deg, #7444cb, #f34c57, #ffca54);
  font-size: 1.25rem !important;
}

.xi-kakaotalk {
  background-color: #f9e000;
  color: #3b1c1c !important;
  font-size: 1.5rem !important;
}

/* Swiper */

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
  color: #bbbbbb;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
  color: #bbbbbb;
}

@media screen and (max-width: 1280px) {
  body {
    width: 1280px;
    margin: 0 auto;
    overflow-x: hidden;
  }
}
/*
@media screen and (max-width: 1280px) {
  .navbar {
    width: 100%;
    padding: 0 20px;
  }

  #business,
  .quality-item,
  .company-item {
    width: 100%;
    padding: 10px;
  }

  #board {
    width: 100%;
    padding: 10px;
  }

  .board-notice {
    flex: 1;
  }

  .board-list span {
    display: none;
  }

  #banner {
    width: 100%;
    padding: 10px;
  }

  .footer-container {
    width: 100%;
    padding: 10px;
  }
}

@media screen and (max-width: 1099px) {
  .navbar_container {
    height: 50px;
    background: rgba(255, 255, 255, 0.6);
  }

  .navbar {
    padding: 0 20px;
    height: 50px;
    width: 100%;
  }

  .logo img {
    width: 7rem;
  }

  .menu {
    position: fixed;
    right: -280px;
    top: 0;
    width: 280px;
    height: 100%;
    overflow-y: auto;
    background-color: var(--black2);
    display: block;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.5s ease;
  }

  .menu.open {
    visibility: visible;
    right: 0px;
  }

  .menu > li {
    padding: 15px 20px;
    border-bottom: 1px solid var(--gray4);
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
  }

  .menu > li:hover::after {
    color: var(--green2);
  }

  .menu > li::after {
    content: "\e943";
    color: #f4f4f4;
    font-family: "xeicon";
    transition: 0.4s;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    pointer-events: none;
  }

  .menu a {
    font-size: 1.125rem;
    color: #fff;
    width: 100%;
    font-weight: 400;
  }

  .menu li a:hover,
  .menu li a.nover {
    color: var(--green2);
  }

  .toggle_btn {
    display: block;
  }

  .toggle_close {
    display: flex;
  }

  .language {
    justify-content: center;
    align-items: center;
    line-height: 40px;
    text-align: center;
    margin: 20px auto;
    gap: 10px;
  }

  .language li {
    width: 70px;
    height: 40px;
    border-radius: 40px;
    background-color: var(--gray3);
    padding-right: 0;
  }

  .language li::after {
    display: none;
  }

  .language li span {
    display: inline;
    line-height: 40px;
  }

  .sub-menu {
    position: relative;
    opacity: 1;
    visibility: visible;
    border: none;
    width: 100%;
    top: 0px;
    text-align: left;
    box-shadow: none;
    transform: translateY(0px);
    background: transparent;
    padding: 0;
    transition: none;
    max-height: 0;
    margin-top: 10px;
    overflow: hidden;
    transition: all 0.5s ease;
  }

  .sub-menu > li > a {
    color: var(--gray2);
    font-size: 0.9375rem;
    font-weight: 300;
    display: block;
  }

  .sub-menu li {
    border-bottom: 1px solid var(--gray4);
  }

  .sub-menu > li > a:hover {
    color: var(--green1);
    font-weight: 500;
  }

  #visual {
    margin-top: 0px;
    margin-bottom: 3.125rem;
  }

  #board {
    grid-template-columns: repeat(1, 1fr);
  }

  .board-notice {
    width: 100%;
  }
  .board-banner {
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
  }

  .notice p {

  }
}

@media screen and (max-width: 979px) {
  .visual-01 .visual-text,
  .visual-02 .visual-text,
  .visual-03 .visual-text {
    text-align: center;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .business-item {
    flex-wrap: wrap;
  }

  .banner {
    flex-direction: column;
    text-align: center;
  }
}

@media screen and (max-width: 885px) {
  .business {
    width: 100%;
  }

  .company-item {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .footer-text {
    text-align: center;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
  }

  .footer address ul {
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  html,
  body {
    font-size: 14px;
  }

  .visual-01,
  .visual-02,
  .visual-03 {
    height: 31.25rem;
  }

  .quality-item {
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: 120px;
  }

  .company-item {
    grid-auto-rows: auto;
    gap: 10px;
  }

  .board-banner {
    grid-template-columns: repeat(2, 1fr);
  }

  #footer {
    padding: 30px;
  }
}

@media screen and (max-width: 560px) {
  .notice p {
    width: 300px;
  }

  .board-banner {
    gap: 10px;
    grid-auto-rows: auto;
  }
}

@media screen and (max-width: 499px) {
  html,
  body {
    font-size: 13px;
  }
  .visual-01 .visual-text p,
  .visual-02 .visual-text p,
  .visual-03 .visual-text p {
    display: none;
  }
}

@media screen and (max-width: 370px) {
  .notice p {
    width: 250px;
  }
}

*/

[data-scroll] {
  opacity: 0;
  will-change: transform, scale, opacity;
  transform: translateY(7rem) scale(0.93);
  transition: all 0.7s ease-out;
}

[data-scroll="in"] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

[data-scroll="out"] {
  opacity: 0;
}
