* {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.strong {
  font-weight: bolder;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.bg-white {
  background-color: #ffffff !important;
}

.bg-primary {
  background-color: #4caf50 !important;
}

.text-white {
  color: #ffffff !important;
}

.w-75 {
  width: 75% !important;
}

.w-50 {
  width: 50% !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.btn {
  display: inline-block;
  font-weight: 700;
  letter-spacing: .5px;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 2px solid transparent;
  padding: 1rem 2rem;
  font-size: 0.75rem;
  line-height: 1.3;
  border-radius: 0.25rem;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

.btn-primary {
  color: #ffffff;
  background-color: #4caf50;
  border-color: #4caf50;
}

.btn-secondary {
  color: #444;
  background-color: #f8f8f8;
  border-color: #f8f8f8;
}

.btn-primary:hover {
  color: #000000;
  background-color: #ffffff;
  border-color: #ffffff;
}

/* spacing */
.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

a {
  text-decoration: none;
  color: #888888;
}

a:hover {
  color: #4caf50;
}

.current {
  color: #4caf50;
}

.l-heading {
  font-size: 3rem;
  font-weight: lighter;
}

.m-heading {
  font-size: 1.5rem;
  font-weight: lighter;
}

.s-heading {
  font-size: 1.3rem;
  font-weight: lighter;
}

header .showcase {
  background: url(../images/business-21.jpg) no-repeat center center/cover;
  height: 80vh;
}

.overlay {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.navbar img {
  width: 50%;
}

.navbar ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  list-style: none;
  color: #000000;
}

.navbar ul li {
  margin-left: 1rem;
  font-size: 1rem;
}

.navbar ul li:hover {
  color: #4caf50;
}

.light-logo {
  display: none;
}

.overlay p {
  color: #b1b0b3;
}

.business {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #888888;
}

.business-type {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 1rem;
  line-height: 2;
}

.business-title {
  margin-right: 1rem;
  padding-top: 0.75rem;
  color: #4caf50;
}

#services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #f8f8f8;
  color: #888888;
}

#services .service-title h3 {
  font-size: 2.2rem;
  color: black;
  font-weight: lighter;
}

#services > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.service-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.service-cards .service {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 1.5rem;
  background-color: #ffffff;
  margin-bottom: 2rem;
}

.service-cards .service img {
  max-width: 100%;
  padding-bottom: 0.75rem;
}

.service-cards .service .service-content {
  padding-bottom: 1rem;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  line-height: 2;
}

.service-cards .service .service-content p,
.service-cards .service .service-content h5 {
  color: #888888;
}

.secrets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 2;
}

.secrets > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.secret-img img {
  max-width: 100%;
  margin-left: 2rem;
}

.fa-ul {
  line-height: 2.4;
}

.fa-ul,
.secrets {
  color: #888888;
}

.fa-ul li i {
  color: #4caf50;
}

#quotes {
  background-color: #f8f8f8;
  text-align: center;
}

.quote-icon {
  color: #4caf50;
}

.quotes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #888888;
  font-size: 0.95rem;
}

.quote p {
  background-color: #ffffff;
  padding: 1rem 2rem;
  font-size: 1rem;
}

.quote {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 2rem;
  text-align: left;
  line-height: 1.7;
}

.quote .quote-tail {
  padding-bottom: 2rem;
}

#page-statistics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.statistics {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.statistics .icon,
.statistics .title {
  color: #888888;
}

#value {
  background: url("../images/full-2.jpg") center center/cover;
  height: 50vh;
}

#value .overlay2 {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

#value .overlay2 .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

#value .overlay2 .container .value {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#value .overlay2 .m-heading {
  letter-spacing: 0.2rem !important;
  font-weight: 100;
  font-size: 2rem;
}

#value .overlay2 p {
  line-height: 1.8;
  font-weight: 100;
  font-size: 1.4rem;
}

#other .other-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

#other .other-title .lead {
  color: #888888;
}

#other .other-title .l-heading {
  font-size: 2rem;
  color: #444;
}

#other .other-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#other .other-content .services {
  margin-left: 2rem;
  width: 30%;
  line-height: 1.7;
  margin-bottom: 2rem;
}

#other .other-content .services h5 {
  margin-bottom: 1rem;
}

#other .other-content .services {
  color: #888888;
}

#convinced {
  background-color: #4caf50;
  height: 20vh;
}

.convinced-text {
  color: #f8f8f8;
}

.convinced-text h3 {
  font-size: 2.5rem;
}

.convinced-text h5 {
  font-size: 1.5rem;
}

#convinced .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

#footer {
  background-color: #1f2021;
  text-align: left;
}

#footer .footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 75%;
  margin: auto;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

#footer .block {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 2rem;
  color: #58606b;
  line-height: 2.3;
}

#footer .block h4 {
  color: #f8f8f8;
}

#footer .block p {
  line-height: 1.9;
  padding-right: 1rem;
  font-size: 0.9rem;
}

#footer .block li {
  list-style: none;
}

#footer .hours li:before,
#footer .pages li:before {
  content: ">";
  color: grey;
  padding-right: 1rem;
}

#clients .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

#clients {
  background-color: #f3f3f3f3;
}

.client-img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 4rem;
}

.client-img img {
  width: 100%;
}

@media screen and (max-width: 576px) {
  #footer .footer-content {
    display: block;
    width: 90%;
  }
  #footer .block {
    display: block;
  }
  #convinced .container {
    display: block;
    padding-top: 5rem;
  }
  #convinced {
    height: 40vh;
    text-align: center;
  }
  .convinced-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .convinced-text h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  #convinced button {
    padding: 0.5rem 1rem;
  }
  #clients .container {
    display: block;
  }
  .client-img img {
    width: 70%;
  }
  .client-img {
    margin-bottom: 1rem;
  }
  #other .other-content {
    display: block;
    text-align: left;
  }
  #other .other-content .services {
    width: 100%;
    margin-left: 0;
    line-height: 1.7;
    margin-bottom: 2rem;
  }
  #other .other-title .lead {
    font-size: 1.2rem;
  }
  #value {
    height: 90vh;
  }
  #page-statistics {
    display: inline-block;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-bottom: 0;
  }
  #page-statistics .statistics {
    margin-bottom: 1.5rem;
    width: 50%;
    float: left;
  }
  #page-statistics .statistics .l-heading {
    font-size: 1.5rem;
  }
  #page-statistics .statistics .m-heading {
    font-size: 1rem;
  }
  .quotes {
    display: block;
  }
  .quotes .quote {
    text-align: center;
    margin-left: 0;
  }
  .secrets {
    display: block;
  }
  .secret-img img {
    display: none;
  }
  .service-cards {
    display: block;
  }
  .service-cards .service {
    margin-left: 0;
  }
  .secret-img img {
    margin-left: 0;
  }
  #services .service-title .m-heading {
    font-size: 1.2rem;
  }
  .business {
    display: block;
  }
  .showcase .l-heading {
    font-size: 1.7rem;
  }
  .navbar ul {
    display: block;
    margin-top: 1rem;
    text-align: center;
  }
  .navbar ul li {
    margin-bottom: 0.5rem;
    margin-left: 0;
    padding-bottom: 0.5rem;
    border-bottom: 0.5px dotted grey;
  }
  .navbar {
    display: block;
    position: relative;
  }
  .dark-logo {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */
