body {
  font-family: 'Roboto Slab';
  color: #000;
}

main {
  overflow: hidden;
}

p {
  font-size: 14px;
}

.c-main-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 71px);
  text-align: center;
  padding: 6rem 0;
  position: relative;
}

.c-logo-icon {
  position: absolute;
  left: -100px;
  top: 10%;
}

.c-main-content {
  position: relative;
  z-index: 2;
}

.c-logo {
  margin-bottom: 4rem;
  text-align: center;
}

.c-hero__title h1 {
 font-size: 24px;
 text-transform: uppercase;
}

.c-hero__description {
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 1px solid #FF7D27;
  border-bottom: 1px solid #FF7D27;
}

.c-hero__description p:last-child {
  margin-bottom: 0;
}

.c-services {
  margin-top: 3rem;
}

.c-services h2 {
  color: #FF6E28;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.c-service-box img {
  margin-bottom: 1rem;
}

.c-service-box h3 {
  text-transform: uppercase;
  font-size: 24px;
}

.c-service-box p {
  padding: 0 2rem;
}

footer {
  background: rgb(255,66,39);
  background: -moz-linear-gradient(180deg, rgba(255,66,39,1) 0%, rgba(255,144,39,1) 100%);
  background: -webkit-linear-gradient(180deg, rgba(255,66,39,1) 0%, rgba(255,144,39,1) 100%);
  background: linear-gradient(180deg, rgba(255,66,39,1) 0%, rgba(255,144,39,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff4227",endColorstr="#ff9027",GradientType=1);
  padding: 1rem;
}

.btn--primary {
  border: 1px solid #fff;
  border-radius: 30px;
  padding: 0.5rem 2rem;
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
}

.btn--primary:hover {
  background: #fff;
  color: #000;
  transition: 0.25s;
}

.c-social i {
  color: #fff;
  font-size: 18px;
}

.c-social {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
}
.c-social-wrapper:after {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  height: 20px;
  margin-top: -10px;
  width: 2px;
  background: #fff;
  margin-left: -1px;
}

.c-social-wrapper {
  position: relative;
  display: inline-block;
}

.c-social a {
  margin: 0 1.5rem;
}
.c-social a:hover {
  text-decoration: none;
  opacity: 0.65;
}
.c-footer-btn {
  display: flex;
  justify-content: center;
}

.c-lang {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 99;
  font-size: 14px;
}

.c-lang a {
  color: rgba(0,0,0,0.5);
  cursor: pointer;
}

.c-lang a:hover {
  text-decoration: none;
  color: #000;
}

.c-lang a.is--active {
  color: #000;
}

@media (max-width: 992px) {
  .c-service-box p {
    padding: 0;
  }

  .c-service-box img {
    max-width: 60px;
  }

  .c-service-box h3 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .c-service-box {
    margin-bottom: 4rem;
  }

  .c-services .col-md-4:last-of-type .c-service-box {
    margin-bottom: 0;
  }

  .c-main-wrapper {
    padding: 4rem 0;
  }

  .c-social {
    justify-content: center;
    margin-top: 1.5rem;
    height: auto;
  }
}