/* 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 header ================================================*/
/* bottom attach KTI group comapny' name list */

.main-contents-group {
   position: relative;
   margin-top: 7rem;
   width: 100%;
  

}


.main-contents-group .KTI-founder-name {
  position: relative;
      p {
        padding-left: 3%;
        color: white;
        font-size: 0.8rem;
        font-weight: bold;
      }
  }

.resume-container {
  position: relative;
  margin-bottom: 20px;
}


  .main-contents-group .KTI-Resume-Title {
    position: relative;
      p {
        padding-left: 2%;
        color: white;
        font-size: 1rem;
        font-weight: bold;
      }
  }

  .KTI-Company-Philosophy {
    position: relative;
    padding: 4rem;
    

    h4 {
      color: white;
      font-size: 1.2rem;
      font-weight: bold; 
     } 
     p {
      color: white;
      font-size: 1rem;
      font-weight: bold;
      margin-bottom: 4rem;
     }
  }



 .KTI-CEO-Message {
  padding-right: 4%;
  padding-left: 0.8rem;
  margin-bottom: 1rem;
  text-align: justify;
  width: 100%;
  font-size: 0.8rem;
  color: black;
  font-family:'Times New Roman', Times, serif;
  position: relative;
  font-weight: bolder;
} 


.main-contents-group .main-contents-group-title {
  position: relative;
    p {
    padding: 2%;
    color: white;
    font-size: 1rem;
    font-weight: bold;
  }
}

.kti-group-info {
  position: relative;
  margin-bottom: 1rem;
  padding-right: 0.6rem;
}


.main-contents-group .KTI-Group {
  position: relative;

}


.resume-container {
  position: relative;
  margin-bottom: 2rem;
}


.KTI-Group .KTI-company-areas {
   p {
    color: white;
    font-size: 1rem;
    font-weight: bold;
  }
  padding-left: 4%;
  margin-bottom: 20px;
}

.KTI-Group .kti-group-info {
    padding-left: 6%;
    margin-bottom: 1rem;
    position: relative;
     
    grid-template-columns: 1fr 1fr;  
    background-position: 98% 98%;
   
   
}

.company-name-wrapper {
    display: inline-flex;
    position: relative; 
    margin-bottom: 10px;
   padding-left: 7%;
   padding-right: 2%;
    
            
}


.company-name-wrapper .company-name-list-c {
    padding: 1rem;
    width: 100%;
    font-size: 0.8rem;
    color: black;
    font-family:'Times New Roman', Times, serif;
    position: relative;
    font-weight: bolder;
    
}


.company-name-wrapper .company-name-list-j {
   padding: 1rem;
    width: 100%;
    font-size: 0.8rem;
    color: black;
    font-family:'Times New Roman', Times, serif;
    position: relative;
    font-weight: bolder;
}


.company-name-wrapper .company-name-list-e {
    padding: 1rem;
    width: 100%;
    font-size: 0.8rem;
    font-weight: bolder;
    font-family:'Times New Roman', Times, serif;
    position: relative;
    font-weight: bolder;
   
}
.company-name-wrapper.company-name-list-e {
    color: black;
}

.show-case img {
    margin-bottom: 1rem;
}

.brief-introduction-about-kti {
    padding-left: 10%;
    padding-right: 1rem;
}


.resume-container, .engineer-team-container {
    padding-left: 5%;
    margin-right: 5%;
}




.kti-resume-table, .kti-engineer-team-table {
    table {
       
        border-collapse: collapse;
        border: 2px solid white;
        font-family: sans-serif;
        font-size: 0.8rem;
        letter-spacing: 1px;    
        font-weight: bold;    
      }

      caption {
        caption-side: bottom;
        padding: 10px;
        font-weight: bold;
      }

      thead, tfoot {
        background-color: rgba(124, 128, 129, 0.594);
        }

       th,td {
            border: 1.5px solid white;
            padding: 20px;
           
            
        }
        thead {
            td, th {
            text-align: center;
            }
        }

        .kti-engineer-team-table.td {
            text-align: center ;
        }

        tbody {
            td {
                text-align: left;
                border: 1.5px solid white;
               
            }
        }
           
/*
         td:last-of-type {
           
            
          }
 

          tbody > tr:nth-of-type(even) {
            background-color: rgb(237 238 242);

          }
 */         
          
          tfoot th {
            text-align: right;
          }
          
          tfoot td {
            font-weight: bold;
          }
              
}





@media(max-width:1024px){
    .html {
      width: 100%;
    }
}



/*====================================Main footer===================================================*/

#main-footer {
  background: #555555;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 0rem;
  font-weight: bolder;
}

