body, div, dl, dt, dd, h1, h2, h3, h4, h5, h6, p, pre, code, blockquote, figure {
	margin: 0;
	padding: 0;
	border-width: 0;
	text-rendering: optimizeSpeed;
}


header {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  z-index: 9999;
}

        .nav-bar {
		  display: flex;
          justify-content: space-between;
          align-content: center;
          gap: 10px;
          background-color: white;
          padding: 15px 90px 100px 15px;
          left: 10px;
          font-family: 'Noto Sans KR Black', sans-serif;
        }
		
		.nav-bar a {
    		color: black;
    		text-decoration: none;
    		font-size: 18px;
    		font-weight: bold;
		}
		.nav-bar a:hover {
		    text-decoration: underline;
		}

		.nav-bar img {
			padding: 0px 20px 0px 20px;
		}

        .nav-links {
            list-style: none;
        }

        .nav-links li {
            display: inline-block;
            padding: 0px 10px;
        }

        .nav-links li a {
            transition: all 0.3s ease-in-out 0s;
        }

        .nav-links li a:hover {
            color: greenyellow;
			text-decoration: underline;
        }

.hidden {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: black;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Animate to X */
.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

@media (max-width: 1000px) {
    .hamburger {
        display: flex;
    }
}





@media (max-width: 1000px) {

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        padding-left: 10px;
    }

    .nav-links a {
        padding: 10px 0;
    }

    .nav-links.mobile-visible {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .title {
        width: 100% !important;
        max-width: 100%;
    }
}



    .lang-image-container {
      position: fixed;
      top: 10px;
      right: 40px;
      width: 50px;
      height: 50px;
      z-index: 1000;
    }

    .clickable-lang-image {
      position: absolute;
      width: 50px;
      height: auto;
      cursor: pointer;
      transition: transform 0.2s ease;
    }

    /* Animation keyframes */
    @keyframes clickScale {
      0%   { transform: scale(1); }
      50%  { transform: scale(1.2); }
      100% { transform: scale(1); }
    }
    /* Animation class */
    .scale-on-click {
      animation: clickScale 200ms ease;
    }

    #lang-ko-image {
      top: 15px;
      left: 0;
      z-index: 1;
    }

    #lang-en-image {
      top: 0px;
      left: 30px;
      z-index: 2;
    }







#languageSelector {
	margin-left:auto; 
	font-size:16px;
}

.text-overlay {
	height: 196.00px;
	width: 670.00px;
	position: absolute;
	color: white;
	font-size: 3rem;
	padding: 10px;
	border-radius: 8px;
 	top: 85%;  
    left: 20%;  
    transform: translate(-50%, -50%);
	text-align: right;
}

#_idImageIcon {
	height: 50.13px;
	width: 82.87px;
}

#_idScreenShot img {
	height: 500px;
}

#_idTextBlock {
	padding:50px 50px 50px 50px;
}

#_idTextBlock-Centered {
	padding:50px 50px 100px 50px;
	text-align: center;
}

.Text-Heading {
	color:#000000;
	font-family:"Noto Sans KR", sans-serif;
	font-size:44px;
	font-style:normal;
	font-weight:bold;
	line-height: 1.8;
}
.Text-SubHeading {
	color:#936df5;
	font-family:"Noto Sans KR", sans-serif;
	font-size:31px;
	font-style:normal;
	font-weight:bold;
	line-height: 1.8;
}

.Text-Overlay {
	color:#ffffff;
	font-family:"Noto Sans KR", sans-serif;
	font-size:63px;
	font-style:normal;
	font-weight:bold;
}

.Text-Body {
	color:#58595b;
	font-family:"Noto Sans KR Medium", sans-serif;
	font-size:24px;
	font-style:normal;
	font-weight:500;
	line-height: 1.8;
}

.Text-Button {
	color:#ffffff;
	font-family:"Noto Sans KR", sans-serif;
	font-size:44px;
	font-style:normal;
	font-weight:bold;
}
.Text-Contact-Title {
	color:#000000;
	font-family:"Noto Sans KR Black", sans-serif;
	font-size:44px;
	font-style:normal;
	font-weight:900;
}

#_idFooter {
	padding: 50px;
	text-align: center;
}

#_idDivider {
	padding: 50px;
}
#_idDivider img {
	max-width: 100%;
}


.inline-flex {
	max-width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
	margin: 0 auto;
	flex-wrap: wrap;
	padding: 20px 0;
}

.inline-flex img {
	max-width: 100%;
	height: auto;
	display: block;
}

#image-container {
  position: relative; 
  max-width: 100%;
}

#image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.inline-flex-2 {
	display: flex;
	justify-content: left;
	gap: 24px;
	margin: 0 auto;
	flex-wrap: wrap;
	padding: 10px 0;
}

.inline-flex-2 img {
	max-width: 100%;
	height: auto;
	display: block;
}

.signup {
	padding: 3rem 1rem;
	text-align: center;
}

form {
	max-width: 400px;
	margin: 1rem auto;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

input,
textarea {
	padding: 0.75rem;
	font-size: 1rem;
	border: 1px solid #bbb;
	border-radius: 4px;
}

button {
	background: #7F6EB1;
	color: white;
	border: none;
	padding: 3rem;
	border-radius: 40px;
	font-size: 2rem;
	font-weight: bold;
	font-style: normal;
	cursor: pointer;
}

button:hover {
	background: #21867a;
}

.footer {
	padding: 2rem 1rem;
	text-align: center;
	font-size: 0.9rem;
	background: #f3f1f1;
}