/* /////////////// MIXIN FUNCTIONS /////////////// */
/*  LINEAR GRADIENTS  */
/*  BREAKPOINTS  */
/*  VISUAL STYLES  */
/*  LAYOUT FRAMEWORK  */
.service {
  display: block;
}

.service {
  box-sizing: border-box;
}

.service {
  text-align: center;
}

.service-wrapper, .service-list {
  clear: both;
}

.service-wrapper:after, .service-list:after {
  display: table;
  content: '';
  clear: both;
}

/*  COLUMN FRAMEWORK  */
.service {
  float: left;
}

/* LOOP TO CREATE A CLASS FOR EACH COLUMN WIDTH */
.service {
  width: 23.5%;
  margin-right: 2%;
}

.service:nth-of-type(4n) {
  margin-right: 0 !important;
}

.service:nth-of-type(4n+1) {
  clear: both;
}

/* --------------------------------- */
/* /////// SITE SPECIFIC STYLES //// */
/* --------------------------------- */
.service {
  border-bottom: 1px solid #f56f22;
}

.service {
  background-color: #0d0e0e;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#262626), to(#0d0e0e));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #262626, #0d0e0e);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #262626, #0d0e0e);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #262626, #0d0e0e);
  /* IE10 */
  background-image: -o-linear-gradient(top, #262626, #0d0e0e);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #262626, #0d0e0e);
  color: #FFF;
}

/* --------------------------------- */
/* /////// END SITE STYLES ///////// */
/* --------------------------------- */
.service-wrapper {
  width: 100%;
  padding: 3em 0 1.5em 0;
}

.service {
  min-height: 480px;
  padding: 1.5em;
  margin-bottom: 1.5em;
}

.service .text-wrapper {
  padding: 5% 2.5%;
}

.service-list {
  padding: 1.5em 0;
}

@media screen and (max-width: 768px) {
  .service-wrapper {
    padding: 1.5em 0;
    margin-right: 0;
  }
  .service {
    width: 49%;
    float: left;
    min-height: 500px;
  }
  .service:nth-of-type(2n) {
    margin-right: 0;
  }
  .service:nth-of-type(2n+1) {
    clear: both;
  }
}

@media screen and (max-width: 700px) {
  .service-wrapper {
    padding: 1.5em 0;
  }
  .service {
    width: 100%;
    min-height: auto;
    padding: 0.5em;
  }
}
