.container.submission {
  width: 1310px;
  min-height: calc(100vh - 74px);
  margin: 0 auto;
}
.container.submission .title {
  text-align: center;
}
.container.submission .title h2 {
  font-size: 34px;
  color: #3D3D3F;
  font-weight: 700;
  padding-top: 210px;
  padding-bottom: 20px;
}
.container.submission .title span {
  display: inline-block;
  width: 83px;
  height: 3px;
  background-color: #2E87FF;
  margin-bottom: 40px;
}
.container.submission .content_txt {
  width: 100%;
  font-size: 16px;
  color: #3D3D3F;
  line-height: 22px;
  font-weight: 400;
  padding-bottom: 100px;
}
.container.submission .content_txt div {
  margin-bottom: 22px;
}
.container.submission .content_txt div h6 {
  text-align: left;
  font-size: 16px;
  color: #3D3D3F;
  letter-spacing: 0;
  line-height: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.container.submission .content_txt div p {
  margin-bottom: 12px;
}
.container.submission .content_txt .blue-text {
  color: #2e87ff;
}
.footer_wrap {
  background: #000;
  height: 74px;
}
.footer_wrap .footer {
  width: 1340px;
  min-width: 1116px;
  margin: 0 auto;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  background: #000;
}
.service {
  position: fixed;
  width: 66px;
  height: 66px;
  background-color: white;
  border-radius: 8px;
  top: 50vh;
  right: 20px;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
}
.service span {
  width: 30px;
  height: 40px;
  background: url(../images/icon_service_b.png) no-repeat center;
  background-size: 98%;
}
.service .contact_number {
  opacity: 0;
  width: 180px;
  height: 100px;
  position: absolute;
  /* margin-right: 218px; */
  transition: all 0.5s;
  left: -170px;
  top: -17px;
  /* display: flex;
    align-items: center; */
  pointer-events: none;
  background: url(../images/contact-number.png) no-repeat center;
}
.service .contact_number .shape {
  width: 0px;
  height: 0px;
  border-top: 4px solid transparent;
  border-left: 8px solid #ffffff;
  border-bottom: 4px solid transparent;
  background: none;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
}
.service:hover {
  background: #2E87FF;
}
.service:hover span {
  background: url(../images/icon_service_w.png) no-repeat center;
  background-size: 98%;
}
.service:hover .contact_number {
  opacity: 1;
  pointer-events: auto;
}
