@charset "utf-8";
/* CSS Document */
* {
  box-sizing: border-box;
}
html {
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  scroll-behavior: smooth;
  overflow-x: hidden
}
.en-nomal {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.en-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}
a {
  color: currentColor;
  text-decoration: none;
  outline: none
}
a:hover, a:focus {
  color: currentColor;
}
.text-center {
  text-align: center;
}
li {
  list-style: none;
}
img {
  width: 100%;
  height: auto;
  display: block;
}
body {
  font-family: 'SCoreDream';
  margin: 0;
  padding: 0;
  display: flex;
  /* justify-content: center; */
  height: 100vh;
  background: #fff;
  color: #191919;
  font-size: 16px;
}
.header {
  padding: 2em;
  margin-top: 7%;
}
.container {
  width: 100%;
  margin-left: 15%;
}
.content {
  padding: 2em;
  position: relative;
}
.content-section {
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.content-section {
  max-height: 0;
}
#career-content li strong, #awards-content li strong {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #f58f5c;
  display: inline-block;
  padding-right: 1em;
}
#career-content li strong {
  min-width: 6.8em;
}
#awards-content li strong {
  min-width: 3.8em;
}
.logo {
  width: 96%;
  max-width: 300px
}
.manager-info {
  padding: 20px 0 0 10px;
}
.manager-info p {
  color: #000000;
  font-size: 1em;
  letter-spacing: 1px;
}
.manager-info p span {
  color: #b5b5b5;
  /* letter-spacing: 2px; */
  font-size: 11px;
  font-weight: 800;
  width: 77px;
  display: inline-block;
  text-transform: uppercase;
}
#career-content, #awards-content {
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
  color: #696969;
  margin-bottom: 1.2em;
}
#career-content li, #awards-content li {
  display: flex;
  margin-bottom: .6em;
}
button {
  color: #f60;
  border: none;
  padding: 10px 0px;
  cursor: pointer;
  font-size: 26px;
  font-weight: 700;
  background-color: #fff;
}
.career-logo img, .award-logo img {
  width: auto;
  height: 90px;
  padding-top: 1.2em;
}
@media (max-width: 640px) {
  body {
    font-size: 14px;
  }
  .container {
    margin-left: 0;
  }
  #career-content, #awards-content {
    font-size: 13px;
  }
}