/* Importing Google font - Open Sans */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap");
@import url("https://necolas.github.io/normalize.css/8.0.1/normalize.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
 
}

body {
  margin-top: 10%;
  
  height: 100vh;
  width: 100%;
  background-color: gray;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 0 10px;
  background-color: gray;
  
}

.nav {
  margin-bottom: 0;
  padding-bottom: 0;
  background-color: gray;
}

.navbar {
  display: flex;
  padding: 15px 0;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
}

.navbar .hamburger-btn {
  display: none;
  color: #fff;
  cursor: pointer;
  font-size: 1.5rem;
}

.navbar .logo {
  gap: 10px;
  display: flex;
  align-items: center;
  text-decoration: none;
  
}

.navbar .logo img {
  width: 180px;
  
}

.navbar .logo h2 {
  color: white;
  font-weight: 600;
  font-size: 1.7rem;
}

.navbar .links {
  display: flex;
  gap: 35px;
  list-style: none;
  align-items: center;
}

.navbar .close-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  display: none;
  color: #000;
  cursor: pointer;
}

.navbar .links a {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  transition: 0.1s ease;
  
}

.navbar .links a:hover {
  color: #19e8ff;
}

.navbar .login-btn {
  border: none;
  outline: none;
  background:  #19e8ff;
  color: #275360;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 10px 18px;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.15s ease;
}

.navbar .login-btn:hover {
  background: #ddd;
}

.form-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  max-width: 720px;
  background: #fff;
  border: 2px solid #fff;
  transform: translate(-50%, -70%);
}

.show-popup .form-popup {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.1s;
}

.form-popup .close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  color: #878484;
  cursor: pointer;
}

.blur-bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  height: 100%;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: 0.1s ease;
}

.show-popup .blur-bg-overlay {
  opacity: 1;
  pointer-events: auto;
}

.form-popup .form-box {
  display: flex;
}

.form-box .form-details {
  width: 100%;
  color: #fff;
  max-width: 330px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.login .form-details {
  padding: 0 40px;
  background: url("images/login-img.jpg");
  background-position: center;
  background-size: cover;
}

.signup .form-details {
  padding: 0 20px;
  background: url("images/signup-img.jpg");
  background-position: center;
  background-size: cover;
}

.form-box .form-content {
  width: 100%;
  padding: 35px;
}

.form-box h2 {
  text-align: center;
  margin-bottom: 29px;
}

form .input-field {
  position: relative;
  height: 50px;
  width: 100%;
  margin-top: 20px;
}

.input-field input {
  height: 100%;
  width: 100%;
  background: none;
  outline: none;
  font-size: 0.95rem;
  padding: 0 15px;
  border: 1px solid #717171;
  border-radius: 3px;
}

.input-field input:focus {
  border: 1px solid #00bcd4;
}

.input-field label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #4a4646;
  pointer-events: none;
  transition: 0.2s ease;
}

.input-field input:is(:focus, :valid) {
  padding: 16px 15px 0;
}

.input-field input:is(:focus, :valid)~label {
  transform: translateY(-120%);
  color: #00bcd4;
  font-size: 0.75rem;
}

.form-box a {
  color: #00bcd4;
  text-decoration: none;
}

.form-box a:hover {
  text-decoration: underline;
}

form :where(.forgot-pass-link, .policy-text) {
  display: inline-flex;
  margin-top: 13px;
  font-size: 0.95rem;
}

form button {
  width: 100%;
  color: #fff;
  border: none;
  outline: none;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 3px;
  cursor: pointer;
  margin: 25px 0;
  background: #00bcd4;
  transition: 0.2s ease;
}

form button:hover {
  background: #0097a7;
}

.form-content .bottom-link {
  text-align: center;
}

.form-popup .signup,
.form-popup.show-signup .login {
  display: none;
}

.form-popup.show-signup .signup {
  display: flex;
}

.signup .policy-text {
  display: flex;
  margin-top: 14px;
  align-items: center;
}

.signup .policy-text input {
  width: 14px;
  height: 14px;
  margin-right: 7px;
}

@media (max-width: 950px) {
  .navbar :is(.hamburger-btn, .close-btn) {
    display: block;
  }

  .navbar {
    padding: 15px 0;
  }

  .navbar .logo img {
    display: none;
  }

  .navbar .logo h2 {
    font-size: 1.4rem;
  }

  .navbar .links {
    position: fixed;
    top: 0;
    z-index: 10;
    left: -100%;
    display: block;
    height: 100vh;
    width: 100%;
    padding-top: 10px;
    text-align: center;
    background: #fff;
    transition: 0.2s ease;
    font-weight: bolder;
  }

  .navbar .links.show-menu {
    left: 0;
  }

  .navbar .links a {
    display: inline-flex;
    margin: 10px 0;
    font-size: 1.2rem;
    color: #000;
    font-weight: bold;
  }

  .navbar .links a:hover {
    color: #00BCD4;
  }

  .navbar .login-btn {
    font-size: 0.7rem;
    padding: 7px 10px;
  }
}

@media (max-width: 760px) {
  .form-popup {
    width: 98%;
  }

  .form-box .form-details {
    display: none;
  }

  .form-box .form-content {
    padding: 30px 30px;
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝Added Seleced languages＝＝＝＝＝＝＝＝＝＝＝＝＝*/
a {
  text-decoration: none;
}

.lang-menu {
  margin-top: 0px;
  position: relative;
  padding-right: 0.8rem;
    

}

.selected-lang {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  line-height: 2;
  width: 100px;
  font-size: medium;
  color:#011d20;
  font-weight: 800;

}

.selected-lang:before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background-image: url(https://www.countryflags.io/us/flat/32.png);

}

.lang-menu ul {
  margin: 30px;
  padding: 0px;
  background-color: rgb(161, 159, 159);
  border: 1px solid rgb(156, 154, 154);
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  display: none;
  position: absolute;
  top: 50px;
  right: 0;
  width: 80px;

}

.lang-menu ul li {
  list-style: none;  

}    

.lang-menu ul li a {
  width: 80px;
  display: block;
  padding: 5px 10px;
} 

.lang-menu ul li a:hover {
  background-color: #f2f2f2;
}

.jp:before {
  background-image: url(https://www.countryflags.io/jp/flat/32.png);

}

.ch:before {
  background-image: url(https://www.countryflags.io/ch/flat/32.png);

}


.us:before {
  background-image: url(https://www.countryflags.io/us/flat/32.png);

}


.vn:before {
  background-image: url(https://www.countryflags.io/vn/flat/32.png);

}

.lang-menu:hover ul {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/*================================== Above is the Header ===================================*/

.Main-Container {
  position: relative;
 margin-top: 4rem;
}


.Main-Page-Post-Card-Image {
  position: relative;
  margin-top: 1rem;
  margin-bottom: 0;
  height: 56vh;
  width: 100%;
  background: url("../KTI-J-HP_Images/KTI-Name-Meaning-Concept_BackGrandColorGree.png") center/55% no-repeat;


}



.Message-On-Container {
  position: relative;
   top: 4rem;
   text-align: right;
   margin-top: 0rem;
   font-size: 14px;
   font-weight: bold;
   color: white;
   width: 25%;
   margin-left: 70%;
  
}


.Comments-for-KTI-machines {
  position: relative;
  text-align: center;
   margin-top: 0rem;
   padding-left: 0.5rem;
   padding-top: 1rem;
   padding-bottom: 1rem;
   font-size: 14px;
   font-weight: bold;
   color:white;
  
}


.Main-Page-Post-Card-Image-02 {
  position: relative;
  text-align: center;
  margin-right: 0.8rem;
  height: 50vh;
  width: 100%;
  background-color: gray;

}


.Main-Page-Post-Card-Image-02  .Message-On-Container-02 {
   position: relative;
   text-align:justify;
   font-size: 14px;
   font-weight:450;
   color: white;
   width: 94%;
   margin-left: 3%;
   padding-right: 0.5rem;
  
  
}


.Main-Container .KTI-Group-Company-list {
  position: relative;
  padding-top: 7rem; 
  text-align: center;
  font-size: 0.8rem;
  font-weight: bolder;
  margin-bottom: 2rem;
}



.Video-Show-Case {
  position: relative;
  margin-left: 15%;
  margin-top: 1rem;
  margin-bottom: 1rem;

  
}


.Small-Video-Show-Case {
 margin: auto;
}



.play-btn {
  width: 60px;
  position: absolute;
  left: 10%;
  top: 10%;
  transform: translate(-50%, -50%);
  cursor: pointer;
   
}

@media(max-width:1024px){
  .html {
    width: 100%;
  }
}


#main-footer {
  background: #555555;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 0px;
  font-weight: bolder;

}
