@font-face {
  font-family: 'Gotham Bold';
  src: url("../font/gotham-bold.otf");
  font-weight: bold;
}

@font-face {
  font-family: 'Gotham Book Regular';
  src: url("../font/gotham-book-regular.otf");
  font-weight: normal;
}

* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #fff;
  color: #333;
  font-family: 'Gotham Book Regular', 'Gotham Bold', sans-serif;
  font-style: normal;
  font-weight: 500;
  height: 100%;
  position: relative;
}

a {
  color: #333;
  text-decoration: none;
}

a.link-map {
  text-decoration: underline;
  display: block;
  margin-top: 20px;
}

a.link-map i {
  margin-right: 10px;
}

br.sp {
  display: none;
}

@media screen and (max-width: 577px) {
  br.sp {
    display: block;
  }
}

strong {
  font-family: 'Gotham Bold';
  font-weight: bold;
}

.red {
  color: #E60013;
}

main {
  padding-top: 120px;
}

@media screen and (max-width: 767px) {
  main {
    padding-top: 20px;
  }
}

main .header {
  border-bottom: 3px solid #E60013;
  padding: 16px 0px 14px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  main .header {
    display: none;
  }
}

main .header h1 {
  font-size: 2rem;
  margin-left: 30px;
}

@media screen and (max-width: 991px) {
  main .header h1 {
    font-size: 1.4rem;
    margin-left: 15px;
  }
}

main .header .header-links {
  position: absolute;
  right: 5%;
  top: 30%;
  font-size: 1.5rem;
}

@media screen and (max-width: 991px) {
  main .header .header-links {
    font-size: 1.2rem;
    margin-left: 15px;
    right: 20px;
  }
}

main .header .header-links a {
  margin-left: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main .header .header-links a:hover {
  color: #E60013;
}

main .first-view {
  margin: 100px auto;
  text-align: center;
}

@media screen and (max-width: 1199px) {
  main .first-view {
    margin: 30px auto 50px;
  }
}

main section {
  border-top: 1px solid #ddd;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f8f8f8;
}

@media screen and (max-width: 1199px) {
  main section {
    display: block;
    background-color: #fff;
  }
}

main section .title {
  width: 35%;
  text-align: center;
  height: 100%;
  font-size: 3rem;
  font-family: 'Gotham Bold';
  font-weight: bold;
}

@media screen and (max-width: 1199px) {
  main section .title {
    width: 100%;
    display: block;
    padding-bottom: 20px;
    padding-top: 20px;
    line-height: 90%;
    border-bottom: 1px solid #ddd;
    font-size: 1.5rem;
    background-color: #f8f8f8;
  }
}

@media screen and (max-width: 1199px) {
  main section .title i {
    font-size: 1.5rem;
  }
}

main section .title h2 {
  font-size: 3rem;
  margin-top: 10px;
}

@media screen and (max-width: 1199px) {
  main section .title h2 {
    font-size: 1.5rem;
  }
}

main section#about .company-info {
  width: 65%;
  background-color: #fff;
}

@media screen and (max-width: 1199px) {
  main section#about .company-info {
    width: 100%;
    display: block;
  }
}

main section#about h3.company-title {
  text-align: center;
  font-size: 2rem;
  margin-top: 50px;
  font-weight: bold;
  font-family: 'Gotham Book Regular';
}

@media screen and (max-width: 1199px) {
  main section#about h3.company-title {
    font-size: 1.3rem;
  }
}

main section#about .table-company-info {
  width: 90%;
  max-width: 800px;
  margin: 30px auto;
  border-collapse: collapse;
}

main section#about .table-company-info tbody tr th,
main section#about .table-company-info tbody tr td {
  padding: 15px;
  border: 1px solid #eee;
}

@media screen and (max-width: 767px) {
  main section#about .table-company-info tbody tr th,
  main section#about .table-company-info tbody tr td {
    display: block;
    width: auto;
    text-align: left;
    padding: 10px;
  }
}

main section#about .table-company-info tbody tr th {
  font-family: 'Gotham Bold';
  font-weight: bold;
  width: 150px;
  background-color: #f8f8f8;
}

@media screen and (max-width: 767px) {
  main section#about .table-company-info tbody tr th {
    width: auto;
  }
}

main section#about .table-company-info:last-child {
  margin-bottom: 80px;
}

main section#access-map .map {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

main section#access-map .title {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

main section#access-map h2, main section#vietnam h2 {
  font-family: 'Gotham Book Regular';
  font-weight: normal;
}

main section#access-map .map, main section#vietnam .map {
  width: 65%;
  text-align: center;
  background-color: #fff;
  padding-top: 70px;
  padding-bottom: 70px;
}

@media screen and (max-width: 1199px) {
  main section#access-map .map, main section#vietnam .map {
    width: 90%;
    display: block;
    padding-top: 40px;
    margin: 0 auto;
  }
}

main section#access-map .map h3, main section#vietnam .map h3 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-family: 'Gotham Bold';
  font-weight: bold;
}

@media screen and (max-width: 1199px) {
  main section#access-map .map h3, main section#vietnam .map h3 {
    font-size: 1.3rem;
  }
}

main section#access-map .map .address, main section#vietnam .map .address {
  margin-top: 20px;
  font-size: 1.2rem;
}

main section#access-map .map .google-map, main section#vietnam .map .google-map {
  width: 100%;
  max-width: 700px;
  height: 400px;
  border: none;
  margin: 10px auto;
}

@media screen and (max-width: 767px) {
  main section#access-map .map .google-map, main section#vietnam .map .google-map {
    height: 300px;
  }
}

footer.footer {
  background-color: #36363A;
  color: #fff;
  padding: 20px;
  text-align: center;
}
