@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: start;
  font-size: 1.6rem;
  background-color: #222;
}

.mobile_break {
  display: none;
}
@media (max-width: 768px) {
  .mobile_break {
    display: inline;
  }
}

.contents_container {
  width: 100%;
  max-width: 1920px;
  position: relative;
  scroll-behavior: smooth;
}
.contents_container .top_link_bpk {
  position: absolute;
  top: 0;
  right: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ff630f;
  text-decoration: none;
  color: white;
  padding: 30px 10px 10px 10px;
  transform: translateY(-10px);
  z-index: 110;
  transition: all 0.3s;
  opacity: 0.9;
}
@media (max-width: 1280px) {
  .contents_container .top_link_bpk {
    display: none;
  }
}
.contents_container .top_link_bpk p {
  border-bottom: 1px solid white;
  padding-bottom: 8px;
}
.contents_container .top_link_bpk:hover {
  transform: translateY(0);
  opacity: 1;
}
.contents_container .to_top_button {
  position: fixed;
  z-index: 10;
  right: 30px;
  bottom: 30px;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  border: 2px solid #ff630f;
}
@media (min-width: 1920px) {
  .contents_container .to_top_button {
    right: calc((100vw - 1920px) / 2 + 30px);
  }
}
.contents_container .to_top_button:after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-color: #ff630f;
  mask-image: url("../images/single_page/to_top.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
.contents_container .to_top_button:hover {
  border-color: #006FFD;
}
.contents_container .to_top_button:hover:after {
  background-color: #006FFD;
}

/* 스크롤 전체 영역 */
::-webkit-scrollbar {
  width: 8px; /* 세로 스크롤바 너비 */
  height: 8px; /* 가로 스크롤바 높이 */
  background: black; /* 트랙 배경 */
}

/* 스크롤 트랙(바탕) */
::-webkit-scrollbar-track {
  background: black; /* 트랙 배경 */
  border-radius: 8px;
}

/* 스크롤 손잡이(움직이는 부분) */
::-webkit-scrollbar-thumb {
  background: #ff630f; /* 손잡이 색상 */
  border-radius: 8px;
}

/* 마우스 호버시 손잡이 */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

section {
  width: 100%;
  background-color: lightgray;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  padding: 6vh 8vw;
}
@media (max-width: 768px) {
  section {
    padding: 40px 20px;
  }
}
header {
  width: 100%;
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 64px 8vw;
  z-index: 100;
}
header .login {
  opacity: 0;
  position: absolute;
  background-color: white;
  height: 40px;
  width: 40px;
  right: 20px;
  top: 20px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s all;
}
header .login:hover {
  opacity: 1;
  transform: scale(1.1);
}
header .login span {
  display: block;
  width: 24px;
  height: 24px;
  mask-image: url("../images/single_page/login.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: black;
}
@media (max-width: 768px) {
  header {
    padding: 2rem 40px;
  }
  header .spacer {
    display: none;
  }
}
@media (max-width: 1280px) {
  header {
    padding: 3rem;
  }
}
header .header_logo {
  height: 45px;
}
@media (max-width: 768px) {
  header .header_logo {
    height: 30px;
  }
}
header .nav_container {
  display: flex;
  gap: 3vw;
}
@media (max-width: 768px) {
  header .nav_container {
    display: none;
  }
}
header .nav_container a {
  text-decoration: none;
  color: white;
  font-size: 2rem;
  font-weight: 500;
}
header .nav_container a:hover {
  border-bottom: 1px solid white;
}

.main_section {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0) 70%), url("../images/single_page/bpk_main_bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.main_section .background_video_container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main_section .background_video_container:after {
  content: "";
  display: block;
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0) 50%);
  position: absolute;
  top: 0;
  left: 0;
}
.main_section .background_video_container .gradient_background {
  position: absolute;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0) 70%);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.main_section .background_video_container video {
  width: 100%;
  height: 100vh;
  position: relative;
  object-fit: cover;
}
.main_section .title {
  font-size: 7rem;
  font-weight: 600;
  color: white;
  font-family: "Barlow", sans-serif;
  margin-bottom: 50px;
  z-index: 1;
}
@media (max-width: 768px) {
  .main_section .title {
    font-size: 3rem;
  }
}
.main_section .title .bold {
  font-size: 8.5rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .main_section .title .bold {
    font-size: 4rem;
  }
}
.main_section .title .bold .point {
  color: #ff630f;
  position: relative;
}
.main_section .title .bold .point:after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  border: 1px solid white;
  border-radius: 10px;
  position: absolute;
  bottom: 15px;
  right: -30px;
}
@media (max-width: 768px) {
  .main_section .title .bold .point:after {
    width: 10px;
    height: 10px;
    bottom: 8px;
    right: -18px;
  }
}
.main_section .sub_title_container {
  color: white;
  z-index: 1;
}
.main_section .sub_title_container .sub_title {
  margin-bottom: 20px;
  font-size: 3rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .main_section .sub_title_container .sub_title {
    font-size: 2.5rem;
  }
}
.main_section .sub_title_container .sub_title br {
  display: none;
}
@media (max-width: 768px) {
  .main_section .sub_title_container .sub_title br {
    display: inline;
  }
}
.main_section .sub_title_container .sub_text {
  font-size: 2rem;
  line-height: 34px;
}
@media (max-width: 768px) {
  .main_section .sub_title_container .sub_text {
    font-size: 1.6rem;
    line-height: 2.5rem;
  }
}

.section_01 {
  background-color: black;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1.5fr;
  padding: 0;
}
@media (max-width: 1280px) {
  .section_01 {
    padding-top: 14rem;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
.section_01 .top_tag_container {
  display: flex;
  position: absolute;
  gap: 10px;
  right: 100px;
  top: 0;
}
@media (max-width: 768px) {
  .section_01 .top_tag_container {
    right: 50%;
    transform: translateX(50%);
  }
}
.section_01 .top_tag_container .tag {
  background: #262626;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 10px 20px 10px;
  gap: 10px;
}
@media (max-width: 768px) {
  .section_01 .top_tag_container .tag {
    padding: 20px 3px 20px 3px;
    width: 100px;
  }
  .section_01 .top_tag_container .tag img {
    width: 20px;
    height: 20px;
  }
}
.section_01 .top_tag_container .tag img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}
.section_01 .top_tag_container .tag p {
  color: white;
  font-size: 1.2rem;
  text-align: center;
}
.section_01 .text_container_left {
  color: white;
  display: flex;
  justify-content: center;
  align-items: end;
  padding-left: 8%;
}
@media (max-width: 1280px) {
  .section_01 .text_container_left {
    text-align: center;
    padding: 2rem;
  }
}
.section_01 .text_container_left .text_box p {
  font-size: 3.2rem;
  font-weight: 700;
}
@media (max-width: 1280px) {
  .section_01 .text_container_left .text_box p {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .section_01 .text_container_left .text_box p {
    font-size: 2rem;
  }
}
.section_01 .text_container_left .text_box p:last-child {
  font-family: "Overpass", sans-serif;
  font-size: 6.2rem;
}
@media (max-width: 1280px) {
  .section_01 .text_container_left .text_box p:last-child {
    font-size: 5rem;
  }
}
@media (max-width: 768px) {
  .section_01 .text_container_left .text_box p:last-child {
    font-size: 4rem;
    line-height: 4rem;
  }
}
.section_01 .text_container_right {
  color: white;
  display: flex;
  justify-content: center;
  align-items: end;
  padding-right: 8%;
}
@media (max-width: 1280px) {
  .section_01 .text_container_right {
    text-align: center;
    padding: 2rem;
  }
}
.section_01 .text_container_right .text_box p {
  font-size: 2.4rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  .section_01 .text_container_right .text_box p {
    font-size: 1.8rem;
  }
}
.section_01 .text_container_right .text_box p:last-child {
  font-size: 2.2rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .section_01 .text_container_right .text_box p:last-child {
    font-size: 1.6rem;
  }
}
.section_01 .robot_image {
  width: 100%;
  z-index: 1;
  grid-column: 1/3;
  object-fit: contain;
  object-position: center;
  height: 50vh;
}
@media (max-width: 1280px) {
  .section_01 .robot_image {
    grid-column: auto;
    height: auto;
  }
}
.section_01:before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  background-color: #2f313e;
  bottom: 0;
  z-index: 0;
}
@media (max-width: 1280px) {
  .section_01:before {
    height: 35vh;
  }
}
@media (max-width: 768px) {
  .section_01:before {
    height: 20vh;
  }
}

.section_02 {
  background-color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .section_02 {
    justify-content: space-evenly;
  }
}
.section_02 .top {
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
}
.section_02 .top .sub_title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .section_02 .top .sub_title {
    font-size: 1.8rem;
  }
}
.section_02 .top .sub_title p {
  display: inline-block;
}
.section_02 .top .title {
  font-size: 9rem;
  font-weight: 900;
  font-family: "Overpass", sans-serif;
  text-align: center;
}
@media (max-width: 768px) {
  .section_02 .top .title {
    font-size: 4rem;
  }
}
.section_02 .top .title span {
  font-weight: 400;
}
.section_02 .top .text {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 300;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .section_02 .top .text {
    font-size: 1.6rem;
  }
}
.section_02 .top .section_02_icon_container {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
}
@media (max-width: 768px) {
  .section_02 .top .section_02_icon_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }
}
.section_02 .top .section_02_icon_container img {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
}
.section_02 .bottom {
  transform-style: preserve-3d;
}
.section_02 .bottom img {
  width: 100%;
}

.section_03 {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  padding: 0;
}
@media (max-width: 768px) {
  .section_03 {
    grid-template-columns: 1fr;
  }
}
.section_03 .left_container {
  color: white;
  padding: 16rem;
  background-color: black;
  background-image: url("../images/single_page/section_03_1.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .section_03 .left_container {
    padding: 20px;
    min-height: 50vh;
    background-color: #111;
  }
}
.section_03 .left_container .text-box .sub_title {
  font-size: 3.2rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  .section_03 .left_container .text-box .sub_title {
    font-size: 2rem;
  }
}
.section_03 .left_container .text-box .title {
  font-size: 6.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: "Overpass", sans-serif;
}
@media (max-width: 768px) {
  .section_03 .left_container .text-box .title {
    font-size: 4rem;
  }
}
.section_03 .left_container .text-box .desc {
  font-size: 1.6rem;
  line-height: 1.65em;
}
@media (max-width: 768px) {
  .section_03 .left_container .text-box .desc {
    font-size: 1.4rem;
  }
}
.section_03 .right_container {
  background-color: white;
  display: grid;
  grid-template-columns: 1fr;
}
.section_03 .right_container .item_container {
  padding: 6rem;
  background-image: url("../images/single_page/section_03_2.webp");
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: right bottom;
}
@media (max-width: 768px) {
  .section_03 .right_container .item_container {
    min-height: 50vh;
  }
}
.section_03 .right_container .item_container .title {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .section_03 .right_container .item_container .title {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
  }
}
.section_03 .right_container .item_container .desc {
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .section_03 .right_container .item_container .desc {
    font-size: 1.4rem;
  }
}
.section_03 .right_container .item_container:nth-child(2) {
  background-color: #303742;
  background-image: url("../images/single_page/section_03_3_crop.webp");
  background-size: 70%;
  color: white;
}
.section_03 .right_container .item_container:nth-child(3) {
  background-image: url("../images/single_page/section_03_phone_crop.webp");
  background-position: right 0 bottom 0;
  background-color: #D7D7D7;
}

.section_04 {
  background-color: white;
  display: grid;
  grid-template-columns: 1fr 760px;
  padding: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .section_04 {
    display: flex;
    flex-direction: column;
  }
}
.section_04 .left {
  background-image: url("../images/single_page/section_04_main.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
}
@media (max-width: 768px) {
  .section_04 .left {
    height: 35vh;
    background-size: 90%;
  }
}
.section_04 .right {
  padding: 160px 80px;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 768px) {
  .section_04 .right {
    padding: 5%;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
}
.section_04 .right .sub_title {
  font-size: 3.2rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .section_04 .right .sub_title {
    font-size: 2rem;
  }
}
.section_04 .right .title {
  font-size: 6.2rem;
  font-weight: 700;
  font-family: "Overpass", sans-serif;
  margin-bottom: 1.6rem;
}
@media (max-width: 768px) {
  .section_04 .right .title {
    font-size: 5rem;
  }
}
.section_04 .right .desc {
  margin-bottom: 2px;
}
@media (max-width: 768px) {
  .section_04 .right .desc {
    font-size: 1.4rem;
  }
}
.section_04 .right .item_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.section_04 .right .item_container .item {
  padding: 40px 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .section_04 .right .item_container .item {
    padding: 20px 10px;
  }
}
.section_04 .right .item_container .item img {
  width: 5rem;
}
@media (max-width: 768px) {
  .section_04 .right .item_container .item img {
    width: 4rem;
  }
}
.section_04 .right .item_container .item .item_sub {
  font-size: 1.4rem;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .section_04 .right .item_container .item .item_sub {
    font-size: 1.2rem;
  }
}
.section_04 .right .item_container .item .item_main {
  font-size: 2.8rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .section_04 .right .item_container .item .item_main {
    font-size: 1.4rem;
  }
}
.section_04 .right .item_container .h_bar {
  width: 100%;
  grid-row: 2;
  grid-column: 1/3;
  background-color: #d5d5d5;
  height: 1px;
}

.section_05 {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: red;
}
@media (max-width: 768px) {
  .section_05 {
    grid-template-columns: 1fr;
  }
}
.section_05 .item_container {
  padding: 40px 20px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section_05 .item_container:nth-child(1) {
  background-color: #303742;
}
.section_05 .item_container:nth-child(1) .sub_item_container {
  display: flex;
  gap: 5rem;
}
@media (max-width: 768px) {
  .section_05 .item_container:nth-child(1) .sub_item_container {
    gap: 2rem;
  }
}
.section_05 .item_container:nth-child(1) .sub_item_container .sub_item {
  border-radius: 100%;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .section_05 .item_container:nth-child(1) .sub_item_container .sub_item {
    font-size: 1.4rem;
    width: 80px;
    height: 80px;
  }
}
.section_05 .item_container:nth-child(2) {
  background-image: url("../images/single_page/section_05_1.webp");
  min-height: 20vh;
}
.section_05 .item_container:nth-child(3) {
  background-image: url("../images/single_page/section_05_2.webp");
  min-height: 20vh;
}
.section_05 .item_container:nth-child(4) {
  background-color: black;
  width: 100%;
}
.section_05 .item_container:nth-child(4) .sub_item_container {
  padding: 4rem;
  border-radius: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  background-color: rgba(255, 255, 255, 0.15);
}
@media (max-width: 768px) {
  .section_05 .item_container:nth-child(4) .sub_item_container {
    flex-direction: column;
    padding: 2rem;
  }
}
.section_05 .item_container:nth-child(4) .sub_item_container .sub_item {
  text-align: center;
}
.section_05 .item_container:nth-child(4) .sub_item_container .sub_item .sub_desc {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.section_05 .item_container:nth-child(4) .sub_item_container .sub_item .sub_title {
  font-size: 2rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .section_05 .item_container:nth-child(4) .sub_item_container .sub_item .sub_title {
    font-size: 1.6rem;
  }
}
.section_05 .item_container:nth-child(4) .sub_item_container .sub_line {
  width: 1px;
  background-color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 768px) {
  .section_05 .item_container:nth-child(4) .sub_item_container .sub_line {
    width: 100%;
    height: 1px;
  }
}
.section_05 .item_container .item .item_title {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .section_05 .item_container .item .item_title {
    font-size: 2rem;
  }
}
.section_05 .item_container .item .item_desc {
  font-size: 1.8rem;
  line-height: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .section_05 .item_container .item .item_desc {
    font-size: 1.4rem;
    line-height: 2.5rem;
  }
}

.section_06 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/single_page/section_06_background.webp");
  background-color: #0d1727;
  background-blend-mode: multiply;
  position: relative;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.section_06 .title_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .section_06 .title_container {
    flex-direction: column;
    gap: 3rem;
  }
}
.section_06 .title_container .title_box .sub_title {
  font-size: 2.5rem;
  font-weight: 300;
  font-family: "Overpass", sans-serif;
}
@media (max-width: 768px) {
  .section_06 .title_container .title_box .sub_title {
    font-size: 1.6rem;
  }
}
.section_06 .title_container .title_box .title {
  font-size: 4.2rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .section_06 .title_container .title_box .title {
    font-size: 2.4rem;
  }
}
.section_06 .title_container .bpk_link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 5px;
  color: white;
}
.section_06 .title_container .bpk_link .link_text {
  position: relative;
  font-size: 1.6rem;
  padding: 0 40px 5px 0;
  border-bottom: 1px solid white;
}
.section_06 .title_container .bpk_link .link_text:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-right: 1px solid white;
  transform: rotate(-45deg);
  transform-origin: bottom right;
}
.section_06 .title_container .bpk_link:hover .link_text {
  color: #ff630f;
  border-color: #ff630f;
}
.section_06 .title_container .bpk_link:hover .link_text:after {
  border-color: #ff630f;
}
.section_06 .slide_container {
  width: 100%;
  overflow-x: hidden;
}
.section_06 .slide_container .slide_wrapper, .section_06 .slide_container .slide_wrapper_test {
  display: flex;
  gap: 80px;
}
@media (max-width: 768px) {
  .section_06 .slide_container .slide_wrapper, .section_06 .slide_container .slide_wrapper_test {
    gap: 2rem;
  }
}
.section_06 .slide_container .slide_wrapper .slide_item, .section_06 .slide_container .slide_wrapper_test .slide_item {
  width: 320px;
  flex-shrink: 0;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .section_06 .slide_container .slide_wrapper .slide_item, .section_06 .slide_container .slide_wrapper_test .slide_item {
    width: 50dvw;
  }
}
.section_06 .slide_container .slide_wrapper .slide_item .item_img_wrapper, .section_06 .slide_container .slide_wrapper_test .slide_item .item_img_wrapper {
  width: 100%;
  background-color: white;
  aspect-ratio: 3/2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section_06 .slide_container .slide_wrapper .slide_item .item_img_wrapper img, .section_06 .slide_container .slide_wrapper_test .slide_item .item_img_wrapper img {
  width: 60%;
  height: 80%;
  object-fit: contain;
}
.section_06 .slide_container .slide_wrapper .slide_item .item_text_box, .section_06 .slide_container .slide_wrapper_test .slide_item .item_text_box {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 4rem;
  backdrop-filter: blur(5px);
}
@media (max-width: 768px) {
  .section_06 .slide_container .slide_wrapper .slide_item .item_text_box, .section_06 .slide_container .slide_wrapper_test .slide_item .item_text_box {
    padding: 2rem;
  }
}
.section_06 .slide_container .slide_wrapper .slide_item .item_text_box .item_title, .section_06 .slide_container .slide_wrapper_test .slide_item .item_text_box .item_title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .section_06 .slide_container .slide_wrapper .slide_item .item_text_box .item_title, .section_06 .slide_container .slide_wrapper_test .slide_item .item_text_box .item_title {
    font-size: 1.6rem;
  }
}
.section_06 .slide_container .slide_wrapper .slide_item .item_text_box .item_desc, .section_06 .slide_container .slide_wrapper_test .slide_item .item_text_box .item_desc {
  font-size: 1.6rem;
  color: #A9A9A9;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .section_06 .slide_container .slide_wrapper .slide_item .item_text_box .item_desc, .section_06 .slide_container .slide_wrapper_test .slide_item .item_text_box .item_desc {
    font-size: 1.4rem;
    min-height: 60px;
  }
}
.section_06 .slide_container .slide_wrapper .slide_item .item_text_box .item_tag_box, .section_06 .slide_container .slide_wrapper_test .slide_item .item_text_box .item_tag_box {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  height: 90px;
  align-content: start;
}
@media (max-width: 768px) {
  .section_06 .slide_container .slide_wrapper .slide_item .item_text_box .item_tag_box, .section_06 .slide_container .slide_wrapper_test .slide_item .item_text_box .item_tag_box {
    min-height: 140px;
  }
}
.section_06 .slide_container .slide_wrapper .slide_item .item_text_box .item_tag_box .item_tag, .section_06 .slide_container .slide_wrapper_test .slide_item .item_text_box .item_tag_box .item_tag {
  flex-grow: 0;
  color: #9290FA;
  font-size: 1.2rem;
  border: 1px solid rgba(146, 144, 250, 0.5);
  width: fit-content;
  padding: 0.3rem 0.5rem;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .section_06 .slide_container .slide_wrapper .slide_item .item_text_box .item_tag_box .item_tag, .section_06 .slide_container .slide_wrapper_test .slide_item .item_text_box .item_tag_box .item_tag {
    font-size: 1rem;
  }
}

.section_07 {
  background-color: black;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section_07 .news_container {
  display: grid;
  grid-template-columns: 1fr 1px 2fr;
  gap: 5%;
}
@media (max-width: 768px) {
  .section_07 .news_container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.section_07 .news_main_title {
  font-size: 4.3rem;
  font-family: "Overpass", sans-serif;
  font-weight: 250;
}
@media (max-width: 768px) {
  .section_07 .news_main_title {
    font-size: 2rem;
  }
}
.section_07 .news_main_title b {
  font-size: 4.7rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .section_07 .news_main_title b {
    font-size: 3rem;
  }
}
.section_07 .news_line {
  width: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  height: 100%;
}
.section_07 .news_list {
  display: flex;
  flex-direction: column;
}
.section_07 .news_list .news_item {
  display: grid;
  gap: 3rem;
  grid-template-columns: 200px 1fr;
  padding: 3rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
  color: white;
}
@media (max-width: 768px) {
  .section_07 .news_list .news_item {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    margin-bottom: 2rem;
  }
}
.section_07 .news_list .news_item:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.section_07 .news_list .news_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section_07 .news_list .news_item .news_info_box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.section_07 .news_list .news_item .news_info_box .news_text_box .news_title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .section_07 .news_list .news_item .news_info_box .news_text_box .news_title {
    font-size: 1.8rem;
  }
}
.section_07 .news_list .news_item .news_info_box .news_text_box .news_desc {
  font-size: 1.6rem;
  color: #A9A9A9;
}
@media (max-width: 768px) {
  .section_07 .news_list .news_item .news_info_box .news_text_box .news_desc {
    font-size: 1.4rem;
  }
}
.section_07 .news_list .news_item .news_info_box .news_date {
  color: #9F9F9F;
}
@media (max-width: 768px) {
  .section_07 .news_list .news_item .news_info_box .news_date {
    font-size: 1.4rem;
  }
}

.section_08 {
  background-color: white;
  padding: 16rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10rem;
}
@media (max-width: 768px) {
  .section_08 {
    padding: 10rem 0;
    gap: 5rem;
    justify-content: space-evenly;
  }
}
.section_08 .client_container {
  width: 100%;
}
.section_08 .client_container .slider_container {
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .section_08 .client_container .slider_container {
    display: none;
  }
}
.section_08 .client_container .slider_container.mobile {
  display: none;
}
@media (max-width: 768px) {
  .section_08 .client_container .slider_container.mobile {
    display: block;
  }
}
.section_08 .client_container .slider_container:first-child {
  margin-bottom: 5rem;
}
.section_08 .client_container .slider_container .logo_wrapper {
  display: flex;
  align-items: center;
  gap: 10rem;
}
@media (max-width: 768px) {
  .section_08 .client_container .slider_container .logo_wrapper {
    margin-bottom: 4rem;
    gap: 8rem;
  }
}
.section_08 .client_container .slider_container .logo_wrapper img {
  height: 3rem;
}
@media (max-width: 768px) {
  .section_08 .client_container .slider_container .logo_wrapper img {
    height: 2rem;
  }
}
.section_08 .contact_container {
  display: flex;
  width: 90%;
  max-width: 1600px;
  height: 50vh;
  padding: 15rem;
  background-image: url("../images/single_page/contact_bg.jpg");
  background-position: right;
  background-size: cover;
  border-radius: 1rem;
  align-items: center;
}
@media (max-width: 768px) {
  .section_08 .contact_container {
    height: auto;
    padding: 2rem;
    justify-content: center;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url("../images/single_page/contact_bg.jpg");
  }
}
.section_08 .contact_container .contact_box {
  color: white;
}
@media (max-width: 768px) {
  .section_08 .contact_container .contact_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.section_08 .contact_container .contact_box .contact_title {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .section_08 .contact_container .contact_box .contact_title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
}
.section_08 .contact_container .contact_box .contact_desc {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .section_08 .contact_container .contact_box .contact_desc {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
}
.section_08 .contact_container .contact_box .map_link {
  text-decoration: none;
  color: white;
  padding: 1rem 8rem;
  border: 1px solid white;
}
.section_08 .contact_container .contact_box .map_link:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

footer {
  background-color: black;
  padding: 10rem;
  color: #C1CBD7;
  font-family: "Noto Sans KR", sans-serif;
}
@media (max-width: 768px) {
  footer {
    padding: 2rem;
    font-size: 1.4rem;
  }
}
footer .address_container {
  margin-bottom: 2rem;
}
footer .info_container {
  display: flex;
  column-gap: 2rem;
  row-gap: 0.5rem;
  margin-bottom: 5rem;
  flex-wrap: wrap;
  text-decoration: none;
}
@media (max-width: 768px) {
  footer .info_container {
    column-gap: 4rem;
  }
}
footer .info_container span {
  color: #939ca6;
  margin-right: 1rem;
  text-decoration: none;
}
footer .copyrights {
  color: #939ca6;
}
@media (max-width: 768px) {
  footer .copyrights {
    font-size: 1.2rem;
    text-align: center;
  }
}

/*# sourceMappingURL=single_page.css.map */
