.process {
  width: 100%;
  padding: 0 15px;
  text-align: center;
}

.process__item {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  position: relative;
  padding: 30px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.process__item:hover {
  background: #f2f2f2;
}

.process__item:hover .process__number {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  color: #003c71;
}

.process__number {
  font-size: 60px;
  -webkit-text-stroke: 1px #003c71;
  display: block;
  color: transparent;
  font-weight: 700;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.process__title {
  display: block;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 20px;
  color: #003c71;
  text-transform: uppercase;
  margin-top: 30px;
}

.process__subtitle {
  display: block;
  font-size: 20px;
  color: #8c8c8c;
  font-size: 15px;
  margin-top: 6px;
}

@media (min-width: 768px) {
  .process {
    display: inline-block;
  }
  .process__item {
    width: 49%;
    display: inline-block;
  }
}

@media (min-width: 1200px) {
  .process {
    -ms-flex-item-align: start;
        align-self: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: inherit;
        flex-wrap: inherit;
  }
  .process__item {
    width: 32%;
  }
  .process__item::after {
    content: "";
    width: 1px;
    height: 75%;
    background: #8c8c8c;
    position: absolute;
    right: 0;
    top: 50%;
    opacity: 0.2;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
/*# sourceMappingURL=style.css.map */
.succ {
    border-top: 2px solid #090;
    border-bottom: 2px solid #090;
    color: #090;
    padding: 5px 0;
    width: 100%;
    display: inline-block;
    font-weight: bold;
    text-align: center;
    background: #E0F9DF;
    margin: 5px 0;
}

.err {
    border-top: 2px solid #C30;
    border-bottom: 2px solid #C30;
    color: #C30;
    padding: 5px 0;
    width: 100%;
    display: inline-block;
    font-weight: bold;
    text-align: center;
    background: #FDE9E8;
    margin: 5px 0;
}

.error {
    border-bottom: 3px solid #C30;
    color: #C30;
    padding: 15px 0;
    width: 100%;
    display: inline-block;
    font-weight: bold;
    text-align: center;
    background: #FDE9E8;
    margin: 5px 0;
    font-size: 18px;
}

#msg {
    display: none;
    z-index: 99999;
    border: 2px solid #924949;
    position: absolute;
}

#msgcontent {
    display: block;
    background: #f3e6e6;
    padding: 5px;
    min-width: 150px;
    max-width: 250px;
    font-size: 12px;
    position: relative;
}

#msgimg {
    position: absolute;
    width: 37px;
    height: 7px;
    left: 0;
    top: -7px;
    background: url(../image/msg_arrow_top.png) no-repeat;
}