@charset "utf-8";
/* CSS Document */

/* ------------------------------- */
/* Title
/* ------------------------------- */

h2 {
 display: flex;
 align-items: center;
 margin: 20px 0 40px;
 padding: 15px 30px;
 color: #FFF;
 font-size: 1.8rem;
 font-weight: bold;
 background-color: #dd3924;
 border-radius: 5px;
}

h2 img {
 margin-right: 10px;
}

@media (max-width: 991px) {
 h2 {
  margin: 0 0 20px;
  font-size: 1.4rem;
 }

 h2 img {
  height: 25px;
 }
}



/* ------------------------------- */
/* Company
/* ------------------------------- */

#company h3 {
 margin-bottom: 40px;
 font-size: 1.2rem;
 line-height: 1.6;
}

#company table th,
#company table td {
 padding: 20px 30px;
 vertical-align: top;
 border-bottom: 1px dashed #333;
}

#company table th {
 width: 200px;
 border-left: 5px solid #dd3924;
}

#company table td a {
 color: #0078CA;
}

#company table td ul.float li {
 float: left;
 margin-right: 20px;
}

@media (max-width: 991px) {
 #company table th {
  width: 150px;
 }
}

@media (max-width: 767px) {
 #company table th,
 #company table td {
  padding: 15px 10px;
 }

 #company table th {
  width: 120px;
 }
}

@media (max-width: 575px) {
 #company table td ul li {
  float: none;
 }
}