@charset "UTF-8";
/*-------------------- header -------------------*/
.headerLogo {
  width: 200px;
}

.headerSmallLogo {
  width: 100px;
}

/*-------------------- Footer -------------------*/
footer {
  width: 100%;
  display: block;
  padding: 10px 0 0 0;
  background: #fff;
  border-top: 1px solid #ccc;
}

.footLeft {
  display: block;
}

.footLeft p {
  font-size: 14px;
  color: #000;
  font-weight: 600;
  margin: 0 0 5px 0;
}

.footLeft p a {
  color: #000;
}

.footLeft p a:hover {
  text-decoration: underline;
}

.footLeft ul.social {
  display: block;
  padding-top: 0px;
}

.footLeft ul.social li {
  display: inline-block;
  font-size: 15px;
  margin-right: 20px;
}

.footLeft ul.social li a {
  color: #000000;
}

.footLeft ul.social li a:hover {
  color: #000;
}

.footRight {
  display: block;
  text-align: right;
}

.footRight .footerLogo {
  width: 200px;
  float: right;
}

.copyright {
  display: block;
  background: #a3a8ab;
  font-size: 12px;
  color: #fff;
  padding: 10px 0;
  margin-top: 25px;
}

.box {
  width: 100%;
  border: 1px solid #ddd;
}
.box .steps {
  border-bottom: 1px solid #ddd;
}
.box .step-component {
  padding: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.box .btn-component {
  padding: 200px;
  display: flex;
  justify-content: space-between;
}

.box .steps ul {
  overflow: hidden;
}
.box .steps ul li div {
  color: #999;
  padding: 10px 0 15px 45px;
  position: relative;
  background: #f5f5f5;
  width: 400px;
}
/* .box .steps ul li div span {
  font-size: 13px;
}
.box .steps ul li:first-child div {
  width: 135px;
  padding-left: 15px;
} */
.box .steps ul li div::before {
  content: " ";
  border-top: 50px solid transparent;
  border-bottom: 50px solid transparent;
  border-left: 30px solid #ddd;
  position: absolute;
  top: 50%;
  margin-top: -50px;
  left: 100%;
  z-index: 1;
  margin-left: 1px;
}
.box .steps ul li div::after {
  content: " ";
  border-top: 50px solid transparent;
  border-bottom: 50px solid transparent;
  border-left: 25%px solid #f5f5f5;
  position: absolute;
  top: 50%;
  margin-top: -50px;
  left: 100%;
  z-index: 2;
}
.box .steps ul li.done div {
  border-color: #20a8d8 !important;
  color: #fff !important;
  background: #20a8d8 !important;
}
.box .steps ul li.done div::after {
  border-left: 30px solid #20a8d8;
}
.box .steps ul li.active div {
  border-color: #167495 !important;
  color: #fff !important;
  background: #167495 !important;
}
.box .steps ul li.active div::after {
  border-left: 30px solid #167495;
}
