* {
  box-sizing: border-box;
  word-wrap: break-word;
}

* :focus {
  outline: none;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

main {
  padding-top: 100px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.p-40 {
  padding: 40px;
}

.pt-40 {
  padding: 40px 0;
}

@media (max-width: 1000px) {
  .mp-20 {
    padding: 20px;
  }
}

.flex {
  display: flex;
}
.flex.aligncenter {
  align-items: center;
}
@media (max-width: 1000px) {
  .flex.mobile-block {
    display: block;
  }
}
@media (max-width: 1000px) {
  .flex.mobile-flex-reverse {
    flex-direction: column-reverse;
  }
}

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

.w-40 {
  width: 40%;
}

.w-60 {
  width: 60px;
}

@media (max-width: 1000px) {
  .m-40 {
    width: 40px !important;
  }
}

@media (max-width: 1000px) {
  .mw-100p {
    width: 100% !important;
  }
}

@media (max-width: 1000px) {
  .m-text-center {
    text-align: center;
  }
}

.w-100 {
  width: 100px;
}

.w-150 {
  width: 150px;
}

header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  padding: 20px;
  background: #fff;
  z-index: 500;
}
header .wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 1000px) {
  header .wrap {
    display: block;
  }
}
header a {
  display: block;
  width: 165px;
}
header a img {
  width: 165px;
  text-decoration: none;
  display: block;
}
header .mobile-menu {
  background: #50b0d9;
  border: 0;
  padding: 10px;
  position: absolute;
  display: none;
  top: 30px;
  right: 20px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
}
header .mobile-menu img {
  width: 20px;
  display: block;
}
header .mobile-menu:hover {
  opacity: 0.8;
  cursor: pointer;
}
header .mobile-menu:active {
  opacity: 0.6;
}
@media (max-width: 1000px) {
  header .mobile-menu {
    display: block;
  }
}
header nav {
  display: flex;
  justify-content: space-between;
  width: calc(100% - 200px);
  margin-top: 18px;
  margin-left: 35px;
}
header nav a {
  display: block;
  width: auto;
  padding: 8px 20px;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  background: #50b0d9;
  color: #fff;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  margin-left: auto;
}
header nav a.green {
  background-color: #006666;
}
header nav a.blue {
  background-color: #00628b;
}
header nav a.light {
  background-color: #50b0d9;
}
header nav a:hover {
  opacity: 0.8;
}
header nav a:active {
  opacity: 0.6;
}
@media (max-width: 1000px) {
  header nav {
    display: none;
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: -20px;
  }
  header nav a {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    font-size: 16px;
  }
}

.header-image {
  height: 500px;
}
.header-image.contact {
  background: url("/images/header-contact.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
}
.header-image.maintenance {
  background: url("/images/header-maintenance.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
}
.header-image.setup {
  background: url("/images/header-setup.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
}
@media (max-width: 1000px) {
  .header-image {
    height: 300px;
  }
}

.hero {
  background-color: #c9d7e0;
  box-shadow: inset 0 -50px 100px #95aebd;
}
.hero .images {
  background-image: url("/images/hero-bg.PNG");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 120%;
  width: 50%;
}
.hero .images img {
  margin: 50px auto 0 auto;
  display: block;
  width: 40%;
}
.hero .text {
  width: 50%;
  padding: 40px 0;
}
.hero .text-content {
  color: #fff;
  background-color: #50b0d9;
  border-radius: 0 10px 10px 0;
  -webkit-border-radius: 0 10px 10px 0;
  -moz-border-radius: 0 10px 10px 0;
  font-size: 20px;
  position: relative;
}
.hero .text-content:before {
  position: absolute;
  height: 100%;
  content: " ";
  left: -100%;
  width: 100%;
  top: 0;
  background-color: #50b0d9;
  border-radius: 10px 0 0 10px;
  -webkit-border-radius: 10px 0 0 10px;
  -moz-border-radius: 10px 0 0 10px;
}
@media (max-width: 1000px) {
  .hero .flex {
    flex-direction: column-reverse;
  }
  .hero .images, .hero .text {
    width: 100%;
    padding: 0;
  }
  .hero .images {
    background-position: center top;
    background-size: 80%;
  }
  .hero .images img {
    margin: 50px auto 20% auto;
    display: block;
    width: 20%;
  }
  .hero .text-content {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    font-size: 16px;
  }
}

.text-box a.link {
  color: #fff;
  text-decoration: none;
}
.text-box a.link:hover {
  opacity: 0.8;
}
.text-box a.link:active {
  opacity: 0.6;
}
.text-box .content {
  width: 60%;
  font-size: 20px;
}
@media (max-width: 1000px) {
  .text-box .content {
    font-size: 16px;
  }
}
.text-box .text {
  font-size: 20px;
}
.text-box .text ul li::marker {
  color: #50b0d9;
}
.text-box .text ul.white li::marker {
  color: #fff;
}
@media (max-width: 1000px) {
  .text-box .text {
    font-size: 16px;
  }
}
.text-box h2 {
  text-transform: uppercase;
  margin-top: 0;
}
.text-box h2.page-title {
  text-align: center;
  width: auto;
  display: inline-block;
  margin: 10px auto;
}
.text-box h2.page-title.green {
  border-bottom: 5px solid #006666;
}
.text-box h2.page-title.blue {
  border-bottom: 5px solid #00628b;
}
.text-box .bg-contact {
  background: url("/images/contact.jpg") center center no-repeat;
  background-size: cover;
}
@media (max-width: 1000px) {
  .text-box .bg-contact {
    height: 200px;
  }
}
.text-box .bg-setup {
  background: url("/images/setup.jpg") center center no-repeat;
  background-size: cover;
}
@media (max-width: 1000px) {
  .text-box .bg-setup {
    height: 200px;
  }
}
.text-box .bg-clean {
  background: url("/images/clean.jpg") center center no-repeat;
  background-size: cover;
}
@media (max-width: 1000px) {
  .text-box .bg-clean {
    height: 200px;
  }
}
.text-box.bg-green {
  background-color: #006666;
  color: #fff;
}
.text-box.bg-dark-blue {
  background-color: #054059;
  color: #fff;
}
.text-box.bg-blue {
  background-color: #00628b;
  color: #fff;
}
.text-box.bg-middle {
  background-color: #3c8bac;
  color: #fff;
}
.text-box.bg-light {
  background-color: #50b0d9;
  color: #fff;
}
.text-box .block-3 {
  width: 33%;
}
.text-box .block-3 div {
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 1000px) {
  .text-box .block-3 {
    width: 100%;
  }
}

.btn {
  background: #fff;
  padding: 20px 40px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
  border: 0;
  cursor: pointer;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}
@media (max-width: 1000px) {
  .btn {
    padding: 10px 20px;
  }
}
.btn-green {
  color: #006666;
}
.btn-blue {
  color: #00628b;
}
.btn-middle {
  color: #3c8bac;
}
.btn-light {
  color: #50b0d9;
}
.btn-bg-green {
  background: #006666;
  color: #fff;
}
.btn-bg-blue {
  background: #00628b;
  color: #fff;
}
.btn-bg-light {
  background: #50b0d9;
  color: #fff;
}
.btn:hover {
  opacity: 0.8;
}
.btn:active {
  opacity: 0.6;
}

.form-group {
  margin-top: 10px;
  background: #f1edec;
  padding: 10px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}
.form-group .label {
  margin-right: 20px;
  display: block;
  text-wrap: nowrap;
  font-weight: bold;
}
.form-group .input {
  width: 100%;
  background: none;
  border: none;
}
.form-group.no-bg {
  background: none;
}
.form-group a {
  color: #000;
}
.form-group a:hover {
  opacity: 0.8;
}
.form-group a:active {
  opacity: 0.6;
}

.steps .step {
  padding: 10px 40px;
  background: #f1edec;
  border: 4px solid #3ca7d5;
  margin-top: 50px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  position: relative;
}
.steps .step:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 55px;
  background: #3ca7d5;
  bottom: -55px;
  left: 50%;
  margin-left: -2px;
  z-index: 10;
}
.steps .step:last-child:before {
  display: none;
}
@media (max-width: 1000px) {
  .steps .step {
    padding: 10px 20px;
  }
}

footer {
  padding: 40px;
}
footer ul {
  width: 100%;
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  justify-content: space-between;
}
footer ul li {
  width: auto;
  display: inline-block;
}
footer ul li a {
  color: #909598;
  font-weight: bold;
  text-decoration: none;
  font-size: 18px;
}
footer ul li a:hover {
  opacity: 0.8;
}
footer ul li a:active {
  opacity: 0.6;
}
@media (max-width: 1000px) {
  footer ul {
    display: block;
  }
  footer ul li {
    width: 100%;
    text-align: center;
  }
}
