/*Declaration of Variables*/
:root {
  /* Color */
  --white-ffffff: #ffffff;
  --black-000000: #000000;
  --green-5df405: #5df405;

  --new-blue-00c9ff: #00c9ff;
  --new-red-ff1800: #ff1800;
  --new-light-gray-f7fafc: #f7fafc;
  --new-medium-gray-f0f1f2: #f0f1f2;
  --dark-dark-black-050505: #050505;

  --Thin-100: 100;
  --Extra-light-200: 200;
  --Light-300: 300;
  --Regular-400: 400;
  --Medium-500: 500;
  --Semi-bold-600: 600;
  --Bold-700: 700;
  --Extra-bold-800: 800;
  --Black-900: 900;
}

/*font*/

/* font-family: 'Noto Sans KR', sans-serif;
font-family: 'Outfit', sans-serif; */

/*Universial Code*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/*header*/

body {
  background-color: #000000;
}

#wrap {
  /* height: 5000px; */
  width: 100%;
}

/* #wrap_center {
  width: 1400px;
  margin: 0 auto;
  background-color: red;
} */

#header_wrap {
  height: 124px;
  width: 100%;
  margin: 0 auto;
  background-color: #000000;
  position: fixed;
  z-index: 1;
}

header {
  height: 124px;
  width: 1260px;
  margin: 0 auto;
  /* background-color: rebeccapurple; */
}

#logo {
  width: 248px;
  height: 24px;
  /* background-color: aqua; */
}

#search_bar_wrap {
  width: 306.25px;
  height: 22px;
  /* background-color: blue; */
}

#search_bar {
  width: 16px;
  height: 16px;
  /* background-color: yellow; */
  position: relative;
  top: 4px;
  cursor: pointer;
}

#search_bar_wrap input {
  color: #ffffff;
  font-family: "Noto Sans KR", sans-serif;
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 100;
  background-color: #000000;
  width: 290.25px;
  border: none;
}

#search_bar_menu {
  /* background-color: hotpink; */
  width: 840.25px; /*important figure */
}

.menu {
  /* background-color: #5df405; */
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 200;
}

.menu a:hover {
  color: #00c9ff;
  opacity: 0.5;
}

/*header positining*/

#logo,
#search_bar_menu {
  float: left;
}

#search_bar_menu {
  float: right;
}

#search_bar_wrap,
nav {
  float: left;
}

#search_bar_wrap input,
#search_bar {
  float: left;
}

#logo {
  position: relative;
  top: 50px;
}

#search_bar_wrap {
  position: relative;
  top: 48px;
  border-bottom: #ffffff solid 0.1px;
}

nav {
  float: right;
  position: relative;
  top: 50px;
}
nav li {
  float: left;
  padding-left: 16px;
  padding-right: 16px;
  border-left: #ffffff solid 0.1px;
  /* margin-left: 16px; */
}

nav li:nth-child(5) {
  padding-right: 0px;
  /* margin-left: 16px; */
}

nav li:nth-child(1) {
  border-left: none;
}

/*-------------------------------------*/
/*Section #con_1*/

#con_wrap {
  width: 1400px;
  margin: 0 auto;
}

#con_1 {
  width: 1260px;
  height: 530px;
  /* background-color: green; */
  margin: 0 auto;
  position: relative;
  bottom: 0px;
}

#con_1_left h2 {
  font-family: "Outfit", sans-serif;
  font-size: 87px;
  font-weight: 700;
  color: #ffffff;
  /* background-color: beige; */
}

#con_1_right {
  width: 710px;
  /* background-color: aqua; */
}

#con_1_right P {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 22px;
  text-align: justify;
  color: #ffffff;
}

#con_1_left,
#con_1_right {
  float: left;
}

#con_1_right {
  float: right;
}

#con_1_left {
  margin-top: 360px;
}

#con_1_right {
  margin-top: 385px; /*importantly variable numebr!!!*/
}

/*-------------------------------------*/

/*Section #con_2*/

#con_2 {
  /* display: none; */
  height: 801px;
  width: 100%;
}

.con_2_img_wrap {
  width: 1260px;
  margin: 0 auto;
}

.con_2_slide li img {
  width: 100%;
}

/*Section #con_1 : text styling*/

.con_2_text_box {
  display: block;
  width: 100%;
  /* height: 78px; */
  /* background-color: yellow; */
}

.con_2_slide_page h3 {
  font-family: "Outfit", sans-serif;
  font-size: 55px;
  font-weight: 700;
  color: #000000;
  /* background-color: aquamarine; */
}

.con_2_slide_page p {
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 15px;
  /* background-color: rebeccapurple; */
  margin-top: 5px;
}

.con_2_slide_page button span:nth-child(1) {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #ffffff;
  line-height: 46px;
  /* background: red; */
}

.con_2_slide_page button {
  padding-left: 33px;
  padding-right: 30px;
  height: 46px;
  border-radius: 100px;
  margin-top: 30px;
  background: #000000;
  transition: 0.3s linear;
  cursor: pointer;
}

.con_2_slide_page button span:nth-child(2) {
  /* background-color: aquamarine; */
  display: block;
  width: 69px;
  height: 13px;
  margin-top: 16px;
  margin-left: 15px;
  background-image: url(../img/long_arrow.svg);
  background-repeat: no-repeat;
}

.con_2_slide_page button span {
  float: left;
}

/* background-color: blue; */

/*Section #con_1 : buttin styling*/
/* 
#con_2_btn {
  margin: 0 auto;
  width: 147px;
  height: 11px;
  cursor: pointer;
}

#con_2_btn li {
  width: 11px;
  height: 11px;
  border-radius: 30px;
  border: 1px solid #000000;
  float: left;
  margin-left: 23px;
}

#con_2_btn li:nth-child(1) {
  margin-left: 0;
}

#con_2_btn li.on {
  background-color: #000000;
} */

/*Section #con_2: positioning text & coloring button */

.con_2_slide_page {
  position: relative;
}

/*1st slide text*/

#con_2_text_box_1,
#con_2_text_box_2,
#con_2_text_box_4,
#con_2_text_box_5 {
  position: absolute;
  top: 390px;
  left: 190px;
  /* background-color: aqua; */
}

#con_2_text_box_3 {
  text-align: center;
  position: absolute;
  top: 390px;
  left: 50%;
  margin-left: -339.25px;
}

#con_2_text_box_1 button,
#con_2_text_box_2 button,
#con_2_text_box_3 button,
#con_2_text_box_4 button,
#con_2_text_box_5 button {
  transition: 0.3s linear;
  cursor: pointer;
}

/* .con_2_slide_page button:hover {
  background: var(--new-medium-gray-f0f1f2);
  transition: 0.3s linear;
} */

.con_2_slide_page button:hover span:nth-child(1) {
  color: #00c9ff;
  opacity: 0.5;
  transition: 0.3s linear;
}

.con_2_slide_page button:hover span:nth-child(2) {
  background-image: url(../img/long_arrow_blue.svg);
  opacity: 0.5;
  transition: 0.3s linear;
}

/*-------------------------------------*/

/*Section #con_3*/

#con_3 {
  width: 1060px;
  margin: 0 auto;
  /* background: #5df405; */
}

/*Section #con_3: title*/

#con_3_title {
  width: 100%;
  /* background-color: antiquewhite; */
}

#con_3_text_box {
  padding-top: 150px;
}

#con_3_text_box h3 {
  width: 100%;
  font-family: "Outfit", sans-serif;
  font-size: 70px;
  font-weight: 700;
  line-height: 80px;
  /* background-color: red; */
  color: #ffffff;
  border-bottom: #ffffff solid 1px;
  padding-bottom: 50px;
}

#con_3_text_box h4 {
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 500;
  /* background-color: blue; */
  color: #ffffff;
  /* letter-spacing: 0.04rem; */
  margin-top: 30px;
}

#con_3_text_box p {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 18px;
  font-weight: 400;
  /* background-color: blue; */
  color: #ffffff;
  margin-top: 30px;
  text-align: justify;
  line-height: 32px;
}

/*Section #con_3: contents*/

#con_3_contents_wrap {
  /* background-color: blue; */
  margin-top: 70px;
}

.con_3_contents {
  width: 470px;
  height: 660px;
  /* background-color: azure; */
}

.con_3_img_wrap {
  width: 470px;
}

.con_video_wrap {
  width: 470px;
  cursor: pointer;
}

video {
  width: 100%;
}

.con_3_img_wrap img {
  width: 100%;
}

.con_3_contents_text_box {
  cursor: pointer;
  /* background-color: yellow; */
  margin-top: 33px;
}

.con_3_contents_text_box h5 {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 15px;
  font-weight: 100;
  color: #ffffff;
  /* background-color: red; */
}

.con_3_contents_text_box p {
  font-family: "Outfit", sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #ffffff;
  /* background-color: blanchedalmond; */
  margin-top: 7px;
}

.con_3_arrow {
  background-image: url("../img/short_arrow_white.svg");
  background-repeat: no-repeat;
  width: 36px;
  height: 15px;
  /* background-color: blue; */
  margin-top: 65px;
  display: absolute;
  top: 0;
}

/*hover*/

.con_3_contents:hover .con_3_contents_text_box div {
  background-image: url("../img/short_arrow_blue.svg");
  opacity: 0.5;
}

.con_3_contents:hover .con_3_contents_text_box p,
.con_3_contents:hover .con_3_contents_text_box h5 {
  color: #00c9ff;
  opacity: 0.5;
}

/*positioning*/

.con_3_contents {
  float: left;
}

.con_3_contents:nth-child(2n) {
  /* margin-left: 120px; */
  float: right;
  margin-top: 350px;
}

.con_3_contents:nth-child(3) {
  /* margin-left: 120px; */
  margin-top: 350px;
}

/*newletter*/

#con_3_newsletter {
  width: 430px;
  height: 200px;
  background-color: #050505;
}

#con_3_newsletter:hover {
  background-color: #f0f1f2;
}

#con_3_newsletter h5,
#con_3_newsletter p,
#con_3_newsletter div {
  margin-left: 20px;
}

/*newletter hover*/

#con_3_newsletter:hover h5,
#con_3_newsletter:hover p {
  color: #000000;
  opacity: 1;
}
#con_3_newsletter:hover .con_3_contents_text_box div {
  background-image: url("../img/short_arrow_black.svg");
  background-repeat: no-repeat;
  opacity: 1;
}
/*-------------------------------------*/

/*Section #con_4*/

#con_4 {
  width: 100%;
  /* background-color: #6702fe; */
  height: 1300px;
}

#con_4 h3 {
  width: 100%;
  font-family: "Outfit", sans-serif;
  font-size: 70px;
  font-weight: 700;
  line-height: 80px;
  /* background-color: red; */
  color: #ffffff;
  border-bottom: #ffffff solid 1px;
  padding-bottom: 50px;
}

#con_4_wrap {
  position: relative;
  top: 200px;
  width: 1260px;
  margin: 0 auto;
  /* background-color: #007aff; */
}

.con_4_video_wrap {
  cursor: pointer;
  margin-top: 70px;
  width: 1260px;
  position: relative;
}

.con_4_image_wrap {
  margin-top: 70px;
  width: 1260px;
  height: 500px;
  position: relative;
}

.con_4_image_wrap img {
  width: 100%;
  height: 500px;
  position: absolute;
}

.con_4_text_wrap {
  width: 100%;
}

#con_4_wrap span {
  /* background-color: #007aff; */
  display: block;
  width: 285px;
  font-family: "Outfit", sans-serif;
  line-height: 16px;
  font-size: 11px;
  font-weight: 400px;
  color: #ffffff;
  text-align: right;
  float: right;
  margin-left: 40px;
  margin-top: 30px;
}

#con_4_wrap li:nth-child(2) span {
  color: #ffffff;
}

#con_4_btn li {
  cursor: pointer;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  float: left;
  margin-left: 10px;
  position: relative;
  top: 810px; /*- imgportant figure!!!!!!**/
  border: #ffffff solid 1px;
}

#con_4_btn li:nth-child(1) {
  margin-left: 0;
}

#con_4_btn li.on {
  background-color: #ffffff;
}

#con_4_slide li {
  position: absolute; /*여기까지만 하면 막내인 img 4가 제일 위에 올라온다.*/
  display: none;
}

#con_4_slide li:nth-child(1) {
  display: block;
}

/*Footer*/

footer {
  width: 1260px;
  margin: 0 auto;
}

#footer_upper {
  width: 100%;
  height: 350px;
  /* background-color: aqua; */
}

#footer_upper_text_box {
  position: relative;
  top: 100px;
}
#footer_upper h3 {
  font-family: "Outfit", sans-serif;
  font-size: 70px;
  font-weight: 700;
  color: #ffffff;
  /* background-color: #5df405; */
}

#footer_upper h4 {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 19px;
  font-weight: 400;
  color: #ffffff;
  line-height: 32px;
  /* background: red; */
  margin-top: 33px;
}

#footer_bottom {
  width: 100%;
  height: 450px;
  /* background-color: rosybrown; */
}

#footer_bottom_wrap {
  width: 100%;
  height: 310px;
  position: relative;
  top: 130px;
  /* background-color: aqua; */
}

#footer_bottom_left {
  width: 283px;
  /* background-color: beige; */
}

#footer_bottom_left span {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #00c9ff;
  line-height: 42px;
}

/* #footer_bottom_right {
  background-color: azure;
} */

.footer_bottom_right_text_box span {
  display: block;
  /* background-color: #5df405; */
  margin-top: 10px;
}
.footer_bottom_right_text_box_header {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  /* background-color: #5df405; */
}

.footer_bottom_right_text_box_contents {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 100;
  line-height: 29px;
  color: #ffffff;
  margin-top: 13px;
  /* background-color: red; */
}

#footer_bottom_left,
#footer_bottom_right {
  float: left;
}

#footer_bottom_right {
  float: right;
}

#footer_bottom_right div {
  float: left;
  margin-left: 120px;
}

#footer_info {
  width: 100%;
  height: 117px;
  /* background-color: #5df405; */
  border-top: #ffffff solid 0.25px;
}

#footer_ip {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 100;
  color: #ffffff;
  /* background-color: antiquewhite; */
  position: relative;
  top: 33px;
}

#footer_sns {
  margin-top: 31px;
}
#footer_sns div {
  width: 19px;
  height: 19px;
  /* background-color: red; */
  float: left;
  margin-left: 15px;
}

#footer_sns div:nth-child(1) {
  background-image: url(../img/facebook.svg);
}

#footer_sns div:nth-child(2) {
  background-image: url(../img/instagram.svg);
}

#footer_sns div:nth-child(3) {
  background-image: url(../img/pinterest.svg);
}

#footer_sns div:nth-child(4) {
  background-image: url(../img/twitter.svg);
}

#footer_sns div:nth-child(5) {
  background-image: url(../img/youtube.svg);
}
#footer_ip,
#footer_sns {
  float: left;
}

#footer_sns {
  float: right;
}

/* font-family: "Outfit", sans-serif;
  font-size: 70px;
  font-weight: 700;
  color: #ffffff; */

/* font-family: "Noto Sans KR", sans-serif;
  font-size: 15px;
  font-weight: 100;
  color: #ffffff; */
