/*Add font ================================*/
.list_item {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  border-bottom: 1px solid #efefef;
}
.list_item .container {
  display: flex;
  justify-content: center;
}
.list_item .link {
  font-size: 16px;
  border-right: 1px solid #efefef;
  padding: 15px 25px;
}
@media (min-width: 992px) {
  .list_item .link {
    padding: 15px 60px;
  }
}
@media (max-width: 600px) {
  .list_item .link {
    padding: 15px 5px;
    text-align: center;
  }
}
.list_item .link:last-child {
  border-right: 0;
}
.list_item a.active {
  color: #097098;
  position: relative;
}
.list_item a.active:after {
  content: "";
  position: absolute;
  background: url("../../../../resources/images/shadow.png") no-repeat;
  width: 100%;
  left: 0;
  top: 100%;
  height: 9px;
}
@media (min-width: 601px) and (max-width: 823px) {
  .list_item a.active:after {
    background-size: contain;
  }
}
@media (max-width: 600px) {
  .list_item a.active:after {
    display: none;
  }
}

.box_mid-content {
  margin-top: 50px;
}
.box_mid-content .title {
  font-weight: 300;
  font-size: 34px;
  color: #097098;
}
.box_mid-content .website {
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  color: #a0a0a0;
  margin-bottom: 20px;
}
.box_mid-content .content {
  font-size: 16px;
  color: #747474;
  text-align: justify;
}
.box_mid-content .content p {
  padding: 0;
}
.box_mid-content .img {
  margin-top: 15px;
}
@media (min-width: 992px) {
  .box_mid-content .img {
    margin-top: 0;
    padding-left: 30px;
  }
}
.box_mid-content .img img {
  border: 6px solid #f3f3f3;
  max-width: 100%;
  height: auto;
}