@import url("https://fonts.googleapis.com/css?family=Lato:200,300,400,400i,700");
@import url("https://fonts.googleapis.com/css?family=Merriweather:200,400,400i,700");

.digital-mark-container .boxes {
	display: flex;
	justify-content: space-evenly;
}

.digital-mark-container .box {
	width: 100%;
	font-size: 1em;
	line-height: 1.5em;
	font-weight: 200;
	padding: 0 4vw 4vw;
	border-right: 2px;
	border-left: 0;
	border-style: solid;
  margin-bottom: 35px;
/* 	border-image: linear-gradient(to bottom, #ccc, #555 66%, #181818) 1 100%; */
	border-image: linear-gradient(to bottom, #181818, #eee, #181818) 1 100%;
}

@media (max-width: 768px) {
  .digital-mark-container .boxes {
    display: block;
  }

  .digital-mark-container .box {
    border-right: 0;
    border-top: 2px;
    border-image: linear-gradient(to right, #181818, #eee, #181818) 100% 1;
  }
}

.digital-mark-container .box:last-child {
	border-right: 0;
}
.digital-mark-container .box .icon {
	font-size: 4em;
	color: #555;
	margin-bottom: 0.6em;
}
.digital-mark-container .box:hover .icon {
	color: #d8d8d8;
}
.digital-mark-container .box h2 {
	font-size: 1.3em;
	margin-bottom: 1em;
	text-transform: uppercase;
	letter-spacing: 4px;
	font-weight: 200;
	line-height: 1em;
	color: #f2f2f2;
}
.digital-mark-container .box .piece-count {
	font-style: italic;
	color: #9f9f9f;
	margin-bottom: 1.2em;
	letter-spacing: 1px;
	font-family: Lora, serif;
}


.second-section-custom {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin: auto;
}
.second-section-custom div {
  margin-right: 40px;
  padding-top: 0;
}
.second-section-custom h1 {
  color: #A5B4FC;
  font-size: 3em;
  padding-bottom: 25px;
}
.second-section-custom p {
  color: white;
  font-size: 1.2em;
  margin-bottom: 70px;
}
@media screen and (max-width: 996px) {
  .second-section-custom {
     flex-direction: column;
     text-align: center;
     justify-content: center;
     padding: 30px;
     padding: 10px;
     width: 85%;
    }
  .second-section-custom img {
     order: 1;
     margin-bottom: 40px;
    }
  .second-section-custom div {
     order: 2;
     height: auto;
     margin-bottom: 15px;
     margin-right: 0;
    }
    .second-section-custom .home p {
     padding: 0 50px 0 50px;
     margin-bottom: 50px;
    }
}
@media screen and (max-width: 470px) {
  .second-section-custom h1 {
     font-size: 2em;
    }
  .second-section-custom p {
     font-size: 1.2em;
    }
}

.numberlist ol {
  counter-reset: li;
  list-style: none;
  list-style: decimal;
  padding: 0;
  margin-bottom: 4em;
}
.numberlist ol li {
  margin-bottom: 15px;
}
.numberlist a {
  position: relative;
  display: block;
  padding: 5px;
  padding-left: 35px;
  background: #FFF;
  color: #444;
  text-decoration: none;
  -moz-border-radius: .3em;
  -webkit-border-radius: .3em;
  border-radius: .3em;
}
.numberlist a:hover {
  text-decoration:none;
}
.numberlist a:before {
  content: counter(li);
  counter-increment: li;
  position: absolute;
  left: -1.3em;
  top: 50%;
  margin-top: -1.3em;
  background: #89715b;
  height: 3em;
  width: 3em;
  line-height: 2.5em;
  border: .3em solid #fff;
  text-align: center;
  font-weight: bold;
  -moz-border-radius: 2em;
  -webkit-border-radius: 2em;
  border-radius: 2em;
  color:#FFF;
}
.numberlist a:hover:before { background: #fff;color:#000; border-color: #89715b; }