.ot-service {
  display: flex;
  flex-direction: row;
}

.ot-service-left,
.ot-service-right {
  width: 50%;
}

.ot-service-right .ot-service-pic {
  float: right;
}

.otranslation-sub-area {
  display: flex;
  flex-direction: row;

  flex-wrap: wrap;
}

.otranslation-sub-item {
  display: flex;
  flex-direction: row;

  margin-top: 10px;
}

.otranslation-sub-item .sub-logo {
  width: 21px;
  height: 21px;
  margin-top: 4px;
}

.otranslation-sub-item .sub-title {
  display: inline;
  margin-left: 10px;
  flex: 1;
}

.otranslation-sub-info {
  margin-right: 10px;
}

.ot-team {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

  flex-wrap: wrap;
}

.ot-team .team-user {
  margin: 0 auto;
  width: 60%;
}

.ot-team-item {
  margin-top: 40px;
}

.remote-1-sub-area {
  margin-left: 40px;
  margin-right: 40px;
}

.remote-1-sub-items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.remote-1-sub-item {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.remote-1-sub-item-en-US {
  align-items: flex-start;
}

.remote-1-sub-item .flag-logo {
  height: 34px;
}

.remote-1-sub-item .re-name {
  font-weight: bold;
  margin-left: 10px;
}
.remote-1-sub-item .re-name-en-US {
  min-width: 33%;
}

.remote-1-sub-item .re-desc {
  margin-left: 10px;
  margin-right: 30px;
  flex: 1;
}

.remote-3-sub-items {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.remote-3-sub-item {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.remote-3-sub-item-en-US {
  align-items: flex-start;
}

.remote-3-sub-item .flag-logo {
  height: 34px;
}

.remote-3-sub-item .re-name {
  font-weight: bold;
  margin-left: 10px;
}
.remote-3-sub-item .re-name-en-US {
  min-width: 33%;
}

.ot-2-remote {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.ot-2-remote-right {
  float: right;
}

.ot-3-remote {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;

  /* margin-left: 40px;
  margin-right:40px; */
}

.ot-3-remote-right {
  float: right;
}

.ot-service-case {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.ot-service-case .case-item {
  height: 300px;
  box-shadow: 0px 0px 11px 1px rgba(113, 113, 113, 0.18);
  overflow: hidden;
}

.ot-service-case .case-item .case-item-image {
  transition: all 0.5s;
  width: 100%;
  height: 100%;

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;

  font-size: 24px;
}

.ot-2-remote-mobile {
  display: none;
}

.case-content {
  transition: all 0.5s;
  opacity: 0;
  background: none;

  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ot-service-case .case-item:hover .case-item-image {
  transform: scale(1.2);
}

.ot-service-case .case-item:hover .case-content {
  opacity: 1;
  background: rgba(0, 0, 0, 0.4);
}

