/* ==========================================================================
   main.css
   1. Components - layout, nav, dropdown, slider, forms
   2. Site styles - page design
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. COMPONENTS
   -------------------------------------------------------------------------- */

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  background-color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #333;
}

img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}

/* Touch devices can't render fixed background attachment smoothly. */
html.is-touch * {
  background-attachment: scroll !important;
}

/* Typography defaults -------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  margin-bottom: 10px;
}

h1 { font-size: 38px; line-height: 44px; margin-top: 20px; }
h2 { font-size: 32px; line-height: 36px; margin-top: 20px; }
h3 { font-size: 24px; line-height: 30px; margin-top: 20px; }
h4 { font-size: 18px; line-height: 24px; margin-top: 10px; }
h5 { font-size: 14px; line-height: 20px; margin-top: 10px; }
h6 { font-size: 12px; line-height: 18px; margin-top: 10px; }

p {
  margin-top: 0;
  margin-bottom: 10px;
}

blockquote {
  margin: 0 0 10px 0;
  padding: 10px 20px;
  border-left: 5px solid #e2e2e2;
  font-size: 18px;
  line-height: 22px;
}

figure {
  margin: 0 0 10px;
}

figcaption {
  margin-top: 5px;
  text-align: center;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

.ui-list-unstyled {
  padding-left: 0;
  list-style: none;
}

.ui-embed:before,
.ui-embed:after {
  content: " ";
  display: table;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.ui-embed:after {
  clear: both;
}

/* Layout helpers ------------------------------------------------------- */

.ui-inline-block {
  max-width: 100%;
  display: inline-block;
}

.ui-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 940px;
}

.ui-container:before,
.ui-container:after {
  content: " ";
  display: table;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.ui-container:after {
  clear: both;
}

@media screen and (max-width: 991px) {
  .ui-container { max-width: 728px; }
}

@media screen and (max-width: 767px) {
  .ui-container { max-width: none; }
}

/* Forms ---------------------------------------------------------------- */

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

button,
[type='button'],
[type='reset'] {
  border: 0;
  cursor: pointer;
  -webkit-appearance: button;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.ui-form {
  margin: 0 0 15px;
}

.ui-form-done {
  display: none;
  padding: 20px;
  text-align: center;
  background-color: #ddd;
}

.ui-form-fail {
  display: none;
  margin-top: 10px;
  padding: 10px;
  background-color: #ffdede;
}

/* Shown by main.js after a submit resolves. */
.ui-form-done.is-visible,
.ui-form-fail.is-visible {
  display: block;
}

.ui-input {
  display: block;
  width: 100%;
  height: 38px;
  padding: 8px 12px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #ccc;
}

.ui-input::placeholder {
  color: #999;
}

.ui-input:focus {
  border-color: #3898ec;
  outline: 0;
}

.ui-input[disabled],
.ui-input[readonly] {
  cursor: not-allowed;
  background-color: #eee;
}

textarea.ui-input {
  height: auto;
}

.ui-button {
  display: inline-block;
  padding: 9px 15px;
  background-color: #3898ec;
  color: #fff;
  border: 0;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
}

input.ui-button {
  -webkit-appearance: button;
}

/* Visually hidden, still announced by screen readers. */
.ui-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

/* Navbar --------------------------------------------------------------- */

.ui-nav {
  position: relative;
  background: #ddd;
  z-index: 1000;
}

.ui-nav:before,
.ui-nav:after {
  content: " ";
  display: table;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.ui-nav:after {
  clear: both;
}

.ui-nav-brand {
  position: relative;
  float: left;
  text-decoration: none;
  color: #333;
}

.ui-nav-menu {
  position: relative;
  float: right;
}

.ui-nav-button {
  position: relative;
  float: right;
  padding: 18px;
  font-size: 24px;
  display: none;
  cursor: pointer;
  background: none;
  color: inherit;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  user-select: none;
}

.ui-nav-button:focus {
  outline: 0;
}

.ui-nav-button.is-open {
  background-color: #c8c8c8;
  color: #fff;
}

.ui-nav-icon {
  display: block;
  width: 1em;
  height: 1em;
}

/* Collapses to the hamburger at the medium breakpoint. */
@media screen and (max-width: 991px) {
  .ui-nav-menu {
    display: none;
  }

  .ui-nav-button {
    display: block;
  }

  .ui-nav.is-open .ui-nav-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    text-align: center;
    overflow: visible;
    min-width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .ui-nav-brand {
    padding-left: 10px;
  }
}

/* Dropdown ------------------------------------------------------------- */

.ui-dropdown {
  display: inline-block;
  position: relative;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  z-index: 900;
}

.ui-dropdown-toggle,
.ui-dropdown-link {
  position: relative;
  vertical-align: top;
  text-decoration: none;
  color: #222;
  padding: 20px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
}

.ui-dropdown-toggle {
  user-select: none;
  display: inline-block;
  cursor: pointer;
  padding-right: 40px;
  background: none;
  border: 0;
  font: inherit;
}

.ui-dropdown-toggle:focus {
  outline: 0;
}

.ui-dropdown-icon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto 20px auto auto;
  width: 1em;
  height: 1em;
  transition: transform 200ms ease;
}

.ui-dropdown-toggle.is-open .ui-dropdown-icon {
  transform: rotate(180deg);
}

.ui-dropdown-list {
  position: absolute;
  background: #ddd;
  display: none;
  min-width: 100%;
}

.ui-dropdown-list.is-open {
  display: block;
}

.ui-dropdown-link {
  padding: 10px 20px;
  display: block;
  color: #222;
}

.ui-dropdown-link.is-current {
  color: #0082f3;
}

.ui-dropdown-link:focus {
  outline: 0;
}

/* Slider --------------------------------------------------------------- */

.ui-slider {
  position: relative;
  height: 300px;
  text-align: center;
  background: #ddd;
  clear: both;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.ui-slider-mask {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
  height: 100%;
}

/* Slides are stacked and cross-faded; only .is-active is visible. */
.ui-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1000ms ease;
  pointer-events: none;
}

.ui-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* Service tiles -------------------------------------------------------- */

/* The title sits on the image until hover, then swaps for the description
   and its button. Replaces twelve pairs of scripted hover animations. */
.service-grid-div .service-grid-text-title,
.service-grid-div .service-grid-text-titlealt,
.service-grid-div .service-grid-text,
.service-grid-div .button {
  transition: opacity 500ms ease;
}

.service-grid-div:hover .service-grid-text-title,
.service-grid-div:hover .service-grid-text-titlealt,
.service-grid-div:focus-within .service-grid-text-title,
.service-grid-div:focus-within .service-grid-text-titlealt {
  opacity: 0;
}

.service-grid-div:hover .service-grid-text,
.service-grid-div:hover .button,
.service-grid-div:focus-within .service-grid-text,
.service-grid-div:focus-within .button {
  opacity: 1;
}

/* Scroll reveals ------------------------------------------------------- */

/* Elements start hidden and are revealed by main.js when scrolled into
   view. .no-js keeps them visible when scripting is unavailable. */
.reveal {
  opacity: 0;
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal-from-right { transform: translateX(100px); }
.reveal-from-bottom { transform: translateY(100px); }

.reveal.is-revealed {
  opacity: 1;
  transform: translate(0, 0);
}

.no-js .reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .ui-slide {
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   2. SITE STYLES
   -------------------------------------------------------------------------- */

:root {
  --groupphoto: 0;
}

.ui-block-container {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.ui-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.ui-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.ui-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {
  .ui-block-container {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .ui-block-container {
    max-width: none;
  }
}

body {
  color: #333;
  max-width: 100%;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

a {
  color: #fff;
  font-family: Signika, sans-serif;
  font-weight: 600;
  text-decoration: none;
}

em {
  font-style: italic;
  font-weight: 400;
}

.navbar-logo-left-container {
  z-index: 5;
  background-color: #0000;
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 20px;
}

.navbar-logo-left-container.shadow-three {
  width: 100%;
  max-width: 1440px;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

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

.navbar-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-menu-two {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.nav-link {
  color: #1a1b1f;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  text-decoration: none;
}

.nav-link:hover {
  color: #1a1b1fbf;
}

.nav-link:focus-visible {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-link.is-current {
  color: #1e7397;
  font-weight: 700;
}

.nav-dropdown {
  margin-left: 5px;
  margin-right: 5px;
  font-family: Signika, sans-serif;
  font-weight: 300;
}

.nav-dropdown-toggle {
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 16px;
  line-height: 20px;
}

.nav-dropdown-toggle:hover {
  color: #1a1b1fbf;
}

.nav-dropdown-toggle:focus-visible {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-icon {
  margin-right: 10px;
}

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list.is-open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-list.shadow-three.mobile-shadow-hide {
  background-color: #ddd;
}

.nav-dropdown-link {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 16px;
  font-weight: 300;
}

.nav-dropdown-link:focus-visible {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-divider {
  background-color: #e4ebf3;
  width: 1px;
  height: 22px;
  margin-left: 15px;
  margin-right: 15px;
}

.nav-link-accent {
  color: #1a1b1f;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 20px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-accent:hover {
  color: #1a1b1fbf;
}

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary:active {
  background-color: #43464d;
}

.footer-dark {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 50px 30px 15px;
  position: relative;
}

.container-2 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.footer-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer-content {
  grid-column-gap: 70px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: auto auto 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.footer-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.title-small {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}

.footer-link {
  color: #1a1b1f;
  margin-top: 12px;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
}

.footer-link:hover {
  color: #1a1b1fbf;
}

.footer-social-block {
  justify-content: flex-start;
  align-items: center;
  margin-top: 12px;
  margin-left: -12px;
  display: flex;
}

.footer-social-link {
  margin-left: 12px;
}

.footer-divider {
  background-color: #e4ebf3;
  width: 100%;
  height: 1px;
  margin-top: 70px;
  margin-bottom: 15px;
}

.footer-copyright-center {
  text-align: center;
  font-size: 14px;
  line-height: 16px;
}

.padding-global {
  color: #fff;
  width: 100vw;
  max-width: 1440px;
  padding-left: 15px;
  padding-right: 15px;
}

.section-hero {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: center start;
  height: 550px;
  position: relative;
}

.section-hero.home {
  background-image: url('../images/herographic50.svg'), linear-gradient(90deg, #00000094 39%, #0000 70%);
  background-position: 0%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: cover, auto;
}

.section-hero.fire-extinguisher {
  background-image: url('../images/herographic50.svg'), linear-gradient(90deg, #00000094 39%, #0000 68%), url('../images/banner-fire-extinguisher.webp');
  background-position: 0%, 0 0, 0 100%;
  background-repeat: no-repeat, repeat, no-repeat;
  background-size: cover, auto, cover;
}

.section-hero.fire-alarm {
  background-image: url('../images/herographic50.svg'), linear-gradient(90deg, #00000094 39%, #0000 70%), url('../images/fire-alarms.webp');
  background-position: 0%, 0 0, 100%;
  background-repeat: no-repeat, repeat, repeat;
  background-size: cover, auto, cover;
}

.section-hero.fiberoptic {
  background-image: linear-gradient(90deg, #00000094 39%, #0000 76%), url('../images/herographic50.svg'), url('../images/fiber-optics.jpg');
  background-position: 0 0, 0%, 100%;
  background-repeat: repeat, no-repeat, no-repeat;
  background-size: auto, cover, cover;
}

.section-hero.fire-sprinklers {
  background-image: url('../images/herographic50.svg'), linear-gradient(90deg, #00000094 39%, #0000 70%), url('../images/sprinkler-services-1.webp');
  background-position: 0%, 0 0, 50%;
  background-repeat: no-repeat, repeat, no-repeat;
  background-size: cover, auto, cover;
}

.section-hero.data-cabling {
  background-image: linear-gradient(90deg, #000, #0000 78%), url('../images/herographic50.svg'), url('../images/openart-image_1772499470978_cac1047e_1772499471570_a8e38dc0.webp');
  background-position: 0 0, 0%, 100%;
  background-repeat: repeat, no-repeat, repeat;
  background-size: auto, cover, cover;
}

.section-hero.telecom {
  background-image: url('../images/herographic50.svg'), linear-gradient(90deg, #000 10%, #0000), url('../images/networking3.webp');
  background-position: 0%, 0 0, 100%;
  background-repeat: no-repeat, repeat, no-repeat;
  background-size: cover, auto, cover;
}

.section-hero.security {
  background-image: url('../images/herographic50.svg'), linear-gradient(90deg, #000, #0000), url('../images/security.jpg');
  background-position: 0%, 0 0, 100%;
  background-repeat: no-repeat, repeat, no-repeat;
  background-size: cover, auto, cover;
}

.section-hero.access-control {
  background-image: url('../images/herographic50.svg'), linear-gradient(90deg, #000, #0000), url('../images/accesscontrol.webp');
  background-position: 0%, 0 0, 50%;
  background-repeat: no-repeat, repeat, no-repeat;
  background-size: cover, auto, cover;
}

.section-hero.surveillance {
  background-image: url('../images/herographic50.svg'), url('../images/networking-hero.webp');
  background-position: 0%, 100%;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
}

.section-hero.errcs {
  background-image: url('../images/herographic50.svg'), linear-gradient(90deg, #000, #0000), url('../images/ERRCS2.webp');
  background-position: 0%, 0 0, 50%;
  background-repeat: no-repeat, repeat, repeat;
  background-size: cover, auto, cover;
}

.body {
  font-family: Signika, sans-serif;
}

.hero-heading {
  text-align: left;
  text-shadow: none;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Lato, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 3rem;
}

.image {
  height: 40px;
  margin-top: -1px;
}

.image-2 {
  width: 300px;
}

.section-home-summery {
  background-image: linear-gradient(#1e7397, #1e7397);
}

.home-summery-heading {
  text-align: center;
  text-shadow: 0 1px 1px #00000075;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Lato, sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
}

.italic-text {
  font-style: normal;
}

.italic-text-2 {
  text-shadow: none;
  margin-left: auto;
  margin-right: auto;
  line-height: 2rem;
}

.section-home-servicegrid {
  padding-top: 40px;
  padding-bottom: 40px;
  display: none;
}

.grid {
  grid-template: ". Area"
                 ". ."
                 ". ."
                 / 1fr 1fr 1fr 1fr;
  place-items: center;
  max-width: 1920px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.service-grid-div {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.service-grid-2 {
  background-image: url('../images/fire-extinguisher.jpg');
  background-position: 50%;
  background-size: cover;
  width: 23vw;
  height: 23vw;
}

.service-grid-3 {
  background-image: url('../images/fiber-optic.jpg');
  background-position: 50%;
  background-size: cover;
  width: 23vw;
  height: 23vw;
}

.service-grid-4 {
  background-image: url('../images/sprinkler.jpg');
  background-position: 50%;
  background-size: cover;
  width: 23vw;
  height: 23vw;
}

.service-grid-5 {
  background-image: url('../images/camera.jpg');
  background-position: 50%;
  background-size: cover;
  width: 23vw;
  height: 23vw;
}

.service-grid-6 {
  background-image: url('../images/cloud.jpg');
  background-position: 50%;
  background-size: cover;
  width: 23vw;
  height: 23vw;
}

.service-grid-7 {
  background-image: url('../images/data-cable.jpg');
  background-position: 50%;
  background-size: cover;
  width: 23vw;
  height: 23vw;
}

.service-grid-8 {
  background-image: url('../images/world-network.jpg');
  background-position: 50%;
  background-size: cover;
  width: 23vw;
  height: 23vw;
}

.service-grid-9 {
  background-image: url('../images/access-control.jpg');
  background-position: 50%;
  background-size: cover;
  width: 23vw;
  height: 23vw;
}

.service-grid-10 {
  background-image: url('../images/alarm-system.jpg');
  background-position: 50%;
  background-size: cover;
  width: 23vw;
  height: 23vw;
}

.service-grid-11 {
  background-image: url('../images/audio-video.jpg');
  background-position: 50%;
  background-size: cover;
  width: 23vw;
  height: 23vw;
}

.service-grid-12 {
  background-image: url('../images/industrial-controls.jpg');
  background-position: 50%;
  background-size: cover;
  width: 23vw;
  height: 23vw;
}

.service-grid-text-title {
  opacity: 1;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  font-family: Lato, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2rem;
  display: block;
  position: absolute;
  inset: 35% 0 auto;
}

.service-grid-text-title.grid1 {
  opacity: 1;
}

.service-grid-text-title.grid2 {
  opacity: 1;
}

.service-grid-text-title.grid3 {
  opacity: 1;
}

.service-grid-text-title.grid4 {
  opacity: 1;
}

.service-grid-text-title.grid7 {
  opacity: 1;
}

.service-grid-text-title.grid8 {
  opacity: 1;
}

.service-grid-text-title.grid9 {
  opacity: 1;
}

.service-grid-text-title.grid10 {
  opacity: 1;
}

.service-grid-text-title.grid11 {
  opacity: 1;
}

.service-grid-text-title.grid12 {
  opacity: 1;
}

.service-grid-images {
  filter: brightness(50%);
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.text-block {
  position: absolute;
  inset: 0% 0% auto;
}

.call-us-cta-button {
  text-align: center;
  background-color: #b50000;
  border-radius: 10px;
  width: 200px;
  margin: 10px 0 10px auto;
  font-family: Lato, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5rem;
  display: block;
  box-shadow: 0 2px 5px #00000061;
}

.homehero-buttonwrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: #b50000;
  border-radius: 10px;
  justify-content: space-between;
  align-items: stretch;
  width: 230px;
  height: 50px;
  padding-left: 10px;
  padding-right: 10px;
  text-decoration: none;
  transition: background-color .2s;
  display: flex;
}

.homehero-buttonwrapper:hover {
  outline-offset: 0px;
  background-color: #5c0000;
  border-width: 1px;
  border-color: #000;
  outline: 3px solid #fff;
}

.homehero-ctatext {
  color: #fff;
  text-align: left;
  align-self: center;
  font-family: Lato, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5rem;
}

.image-3 {
  align-self: center;
  width: 30px;
  height: 30px;
}

.div-block {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 40rem;
  height: 550px;
  display: flex;
}

.padding-services {
  color: #fff;
  max-width: 100vw;
}

.service-grid-text-titlealt {
  opacity: 1;
  text-align: center;
  word-break: break-all;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  font-family: Lato, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2rem;
  display: block;
  position: absolute;
  inset: 35% 0 auto;
}

.service-grid-text-titlealt.grid6 {
  opacity: 1;
}

.section-home-contact {
  background-image: url('../images/techbg.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  height: 550px;
}

.field-label {
  color: #990f0d;
  font-family: Lato, sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.2rem;
}

.text-field {
  color: #000;
  background-color: #fff;
}

.contact-block-div {
  background-color: #fff;
  border-radius: 20px;
  width: auto;
  height: auto;
  min-height: 380px;
  margin-top: 1rem;
  padding: 1rem;
}

.submit-button {
  background-color: #811614;
  border-radius: 20px;
  font-size: 1.2rem;
  line-height: 1.2rem;
}

.heading {
  text-shadow: 1px 1px 1px #000;
  font-family: Lato, sans-serif;
  font-size: 3rem;
  line-height: 3rem;
}

.div-block-3 {
  width: 500px;
}

.div-block-4 {
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.contact-text-block {
  color: #3b3b3b;
  text-align: right;
  font-family: Lato, sans-serif;
  font-weight: 700;
}

.contact-block-div2 {
  background-color: #fff;
  border-radius: 20px;
  width: 250px;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
}

.section-home-summery2 {
  background-image: linear-gradient(90deg, #b50000, #ff470f 39%, #2eace1);
}

.section-fireextinguisher-hero {
  height: 550px;
}

.fireextinguisher-hero-div {
  background-color: #1a1a1af0;
  border-radius: 10px;
  width: 37rem;
  margin-top: 120px;
  margin-bottom: 120px;
  padding: 1rem;
}

.hero-heading-fireextinguisher {
  text-align: right;
  text-shadow: 2px 2px 1px #00000061;
  width: 35rem;
  margin-left: auto;
  margin-right: auto;
  font-family: Lato, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 3rem;
}

.homehero-ctacontainer-copy {
  margin-top: 2rem;
}

.fireextinguisher-summery-heading {
  color: #313131;
  text-align: left;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
  font-family: Lato, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.section-fireextinguisher-summery {
  padding-top: 40px;
  padding-bottom: 40px;
}

.subheading {
  color: #990f0d;
  font-family: Signika, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5rem;
}

.subheading.blue {
  color: #497296;
}

.list {
  color: #313131;
  font-family: Lato, sans-serif;
  font-size: 1.1rem;
  line-height: 1.5rem;
  list-style-type: square;
}

.fireextinguisher-summery-heading-2 {
  color: #313131;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  font-family: Lato, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.section-firealarm-hero {
  background-image: url('../images/fire-alarm.jpg');
  background-position: 15%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  height: 550px;
}

.firealarm-hero-div {
  background-color: #3d3d3dd9;
  border-radius: 20px;
  width: 37rem;
  margin-top: 120px;
  margin-left: auto;
  padding: 1rem;
}

.hero-heading-firealarm {
  text-align: right;
  text-shadow: 2px 2px 1px #00000061;
  width: 35rem;
  margin-left: auto;
  margin-right: auto;
  font-family: Lato, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 3rem;
}

.firealarmhero-ctacontainer {
  margin-top: 2rem;
}

.firealarm-summery-heading {
  color: #313131;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  font-family: Lato, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.section-fiberoptic-hero {
  background-image: url('../images/fiber-optics.jpg');
  background-position: 15%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  height: 550px;
}

.section-fireoptic-summery {
  padding-top: 40px;
  padding-bottom: 40px;
}

.fireoptic-hero-div {
  background-color: #3d3d3dd9;
  border-radius: 20px;
  width: 37rem;
  margin-top: 120px;
  margin-left: auto;
  padding: 1rem;
}

.hero-heading-fireoptic {
  text-align: right;
  text-shadow: 2px 2px 1px #00000061;
  width: 35rem;
  margin-left: auto;
  margin-right: auto;
  font-family: Lato, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 3rem;
}

.fiberoptic-summery-heading {
  color: #313131;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  font-family: Lato, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.fiberoptic-summery-heading2 {
  color: #313131;
  text-align: left;
  margin: 0 auto 10px;
  padding-top: 0;
  padding-bottom: 10px;
  font-family: Lato, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.section-datawireless-hero {
  background-image: url('../images/data-cable.webp');
  background-position: 15%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  height: 550px;
}

.datawireless-hero-div {
  background-color: #3d3d3dd9;
  border-radius: 20px;
  width: 37rem;
  margin-top: 120px;
  margin-left: auto;
  padding: 1rem;
}

.hero-heading-datawireless {
  text-align: right;
  text-shadow: 2px 2px 1px #00000061;
  width: 35rem;
  margin-left: auto;
  margin-right: auto;
  font-family: Lato, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 3rem;
}

.section-datawireless-summery {
  padding-top: 40px;
  padding-bottom: 40px;
}

.datawireless-summery-heading {
  color: #313131;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  font-family: Lato, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.datawireless-summery-heading2, .firealarm-summery-heading2, .security-summery-heading {
  color: #313131;
  text-align: left;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 10px;
  font-family: Lato, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.section-security-hero {
  background-image: url('../images/security.jpg');
  background-position: 15%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  height: 550px;
}

.section-security-summery {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-alarm-hero {
  background-image: url('../images/accesscontrol.webp');
  background-position: 15%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  height: 550px;
}

.section-alarm-summery {
  padding-top: 40px;
  padding-bottom: 40px;
}

.alarm-hero-div {
  background-color: #3d3d3dd9;
  border-radius: 20px;
  width: 37rem;
  margin-top: 120px;
  margin-left: auto;
  padding: 1rem;
}

.hero-heading-alarm {
  text-align: right;
  text-shadow: 2px 2px 1px #00000061;
  width: 35rem;
  margin-left: auto;
  margin-right: auto;
  font-family: Lato, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 3rem;
}

.alarm-summery-heading {
  color: #313131;
  text-align: left;
  margin: 10px auto;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Lato, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.section-tele-hero {
  background-image: url('../images/tele.jpg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  height: 550px;
}

.section-tele-summery {
  padding-top: 40px;
  padding-bottom: 40px;
}

.tele-summery-heading {
  color: #313131;
  text-align: left;
  margin: 10px auto;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Lato, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.hero-heading-tele {
  text-align: right;
  text-shadow: 2px 2px 1px #00000061;
  width: 35rem;
  margin-left: auto;
  margin-right: auto;
  font-family: Lato, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 3rem;
}

.section-av-hero {
  background-image: url('../images/audiovisual.jpg');
  background-position: 15%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  height: 550px;
}

.section-controls-hero {
  background-image: url('../images/controls.webp');
  background-position: 15%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  height: 550px;
}

.service-text-div {
  width: 24vw;
  height: 24vw;
  position: absolute;
  top: 0;
}

.service-text-div2 {
  width: 24vw;
  height: 24vw;
  display: block;
  position: absolute;
  top: 0;
}

.service-grid-text {
  opacity: 0;
  text-align: center;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  font-family: Lato, sans-serif;
  font-size: 1vw;
  font-weight: 400;
  line-height: 1vw;
  display: block;
  position: absolute;
  inset: 0% 0 auto;
}

.service-grid-text.grid1 {
  opacity: 0;
}

.service-grid-text.grid2 {
  opacity: 0;
}

.service-grid-text.grid3 {
  opacity: 0;
}

.service-grid-text.grid4 {
  opacity: 0;
}

.service-grid-text.grid5 {
  opacity: 0;
}

.service-grid-text.grid6 {
  opacity: 0;
}

.service-grid-text.grid7 {
  opacity: 0;
}

.service-grid-text.grid8 {
  opacity: 0;
}

.service-grid-text.grid9 {
  opacity: 0;
}

.service-grid-text.grid10 {
  opacity: 0;
}

.service-grid-text.grid11 {
  opacity: 0;
}

.service-grid-text.grid12 {
  opacity: 0;
}

.service-grid-text-title-copy {
  opacity: 1;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  font-family: Lato, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2rem;
  display: block;
  position: absolute;
  inset: 35% 0 auto;
}

.pagend-cta-container {
  justify-content: flex-start;
  align-items: center;
  display: block;
}

.pageend-buttonwrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: #b50000;
  border-radius: 12px;
  width: 230px;
  height: 50px;
  padding-left: 10px;
  padding-right: 10px;
  text-decoration: none;
  display: flex;
}

.button {
  text-align: center;
  background-color: #990f0d;
  border-radius: 20px;
  width: 200px;
  height: 30px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 4px;
  padding-bottom: 0;
  display: inline-block;
  position: absolute;
  inset: 85% 0% 0%;
}

.button.grid1 {
  opacity: 0;
}

.button.grid2 {
  opacity: 0;
}

.button.grid3 {
  opacity: 0;
}

.button.grid4 {
  opacity: 0;
}

.button.grid5 {
  opacity: 0;
}

.button.grid6 {
  opacity: 0;
}

.button.grid7 {
  opacity: 0;
}

.button.grid8 {
  opacity: 0;
}

.button.grid9 {
  opacity: 0;
}

.button.grid10 {
  opacity: 0;
}

.button.grid11 {
  opacity: 0;
}

.button.grid12 {
  opacity: 0;
}

.bottom-page-emph {
  background-color: #ffe2e2;
  border-radius: 10px;
  margin-top: 60px;
  padding: 20px;
}

.bottom-page-emph.fire-alarms {
  background-image: linear-gradient(90deg, #ffc0c0 47%, #0000), url('../images/WorkerWalking.webp');
  background-position: 0 0, 100%;
  background-size: auto, cover;
  border-radius: 20px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.firealarm-summery-heading3 {
  color: #313131;
  text-align: left;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  font-family: Lato, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.fireextinguisher-summery-heading3 {
  color: #313131;
  text-align: left;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 10px;
  font-family: Lato, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.fiberoptic-summery-heading3 {
  color: #313131;
  text-align: left;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  font-family: Lato, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.datawireless-summery-heading3 {
  color: #313131;
  text-align: left;
  font-family: Lato, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.security-summery-heading2 {
  color: #313131;
  text-align: left;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  font-family: Lato, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.section-map {
  background-image: url('../images/mapbg.webp');
  background-position: 50%;
  background-size: cover;
  height: 600px;
}

.padding-map {
  color: #fff;
  max-width: 100vw;
}

.map {
  height: 700px;
}

.code-embed {
  width: 100vw;
  height: 300px;
}

.testimonial-text {
  color: #313131;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  font-family: Lato, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.div-block-5 {
  background-color: #f5f5f5;
  padding: 20px;
}

.image-4 {
  width: 40px;
  height: 40px;
  margin-left: 81px;
}

.div-block-6 {
  display: flex;
}

.text-block-2 {
  color: #000;
}

.div-block-7, .div-block-8 {
  margin-left: auto;
}

.testimonial-text-sub {
  color: #313131;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  font-family: Lato, sans-serif;
  font-size: .8rem;
  font-weight: 400;
  line-height: .8rem;
}

.div-block-9 {
  padding: 20px;
}

.testimonial-text-sub2 {
  color: #313131;
  text-align: right;
  margin-left: auto;
  margin-right: auto;
  font-family: Lato, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.section-testimonial {
  background-color: #fff;
  padding-bottom: 20px;
}

.div-block-10 {
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 11% 0% auto;
}

.text-block-3 {
  color: #fff;
  text-align: center;
  font-family: Lato, sans-serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 5rem;
}

.text-span {
  font-size: 3rem;
  font-weight: 400;
  line-height: 3rem;
  -webkit-text-decoration: underline #990f0d;
  text-decoration: underline #990f0d;
}

.error-message {
  margin-top: 27px;
  margin-left: auto;
  margin-right: auto;
  position: static;
}

.text-block-4 {
  color: #000;
}

.fireextinguisher-summery-header {
  color: #313131;
  text-align: left;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
  font-family: Lato, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.fireextinguisher-summery-header2 {
  color: #313131;
  text-align: left;
  margin: 0 auto 10px;
  padding-bottom: 10px;
  font-family: Lato, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.div-block-11 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  display: flex;
}

.div-block-12 {
  border-radius: 10px;
  width: 400px;
  min-width: 400px;
  max-width: 400px;
  overflow: hidden;
}

.text-block-5 {
  color: #99110d;
  font-size: 16px;
  font-weight: 300;
}

.text-span-2 {
  color: #fff;
}

.heading2 {
  color: #99110d;
  text-align: left;
  text-shadow: none;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Lato, sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 3rem;
}

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

.heading2.center.white, .heading2.white {
  color: #fff;
}

.text-block-5-copy {
  color: #000;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
}

.div-block-13 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}

.slider {
  z-index: -1;
  object-fit: contain;
  width: 100%;
  max-width: 100%;
  height: 550px;
  position: absolute;
  overflow: hidden;
}

.image-6 {
  object-fit: cover;
  min-height: 100%;
}

.image-7 {
  height: 550px;
}

.div-block-14 {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 550px;
  display: flex;
}

.image-8 {
  object-fit: cover;
  object-position: 100% 50%;
  width: 100%;
  height: 550px;
}

.slide-nav {
  display: none;
  overflow: hidden;
}

.right-arrow, .left-arrow {
  display: none;
}

.mask {
  max-width: 100%;
}

.slide {
  overflow: hidden;
}

.image-9, .image-10 {
  object-fit: cover;
  width: 100vw;
  height: 550px;
}

.slide-2, .slide-3 {
  overflow: hidden;
}

.section-home-servicecards {
  padding-top: 40px;
  padding-bottom: 40px;
}

.div-block-15 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: wrap;
  justify-content: center;
  align-items: flex-start;
  margin-top: 30px;
  display: flex;
}

.heading-2 {
  color: #fff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 400;
}

.div-block-16 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: #575757;
  border-radius: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 450px;
  padding-bottom: 20px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 2px 8px 7px #0003;
}

.text-block-6 {
  padding: 15px;
  font-size: 20px;
  font-weight: 300;
  line-height: 20px;
}

.div-block-17 {
  background-image: linear-gradient(90deg, #990f0d 35%, #5e4a8b 77%, #497296);
  border-radius: 20px;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  transition: padding .25s, filter .45s;
  display: flex;
}

.div-block-17:hover {
  filter: saturate(0%);
  outline-offset: 0px;
  background-image: linear-gradient(90deg, #990f0d 35%, #5e4a8b 77%, #497296);
  outline: 3px solid #fff;
  padding-right: 15px;
}

.image-11 {
  height: 60px;
}

.image-12 {
  object-fit: cover;
  min-width: 100%;
  height: 200px;
  overflow: hidden;
}

.div-block-18 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.image-13 {
  object-fit: cover;
  border-radius: 20px;
  width: 35%;
  min-width: 35%;
}

.uplift-logo {
  height: 30px;
}

.div-block-19 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.section-introduction {
  padding-top: 40px;
  padding-bottom: 40px;
}

.content-container {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}

.group-image {
  object-fit: cover;
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
  min-width: 100%;
  height: 500px;
  box-shadow: 0 2px 8px 10px #0003;
}

.slide-4 {
  overflow: hidden;
}

.image-14 {
  width: 50%;
  margin-top: -163px;
  margin-left: auto;
  margin-right: auto;
}

.div-block-20 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.call-us-cta {
  background-image: linear-gradient(90deg, #990f0d 35%, #5e4a8b 77%, #497296);
  border-radius: 20px;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  width: 300px;
  transition: filter .45s;
  display: flex;
}

.call-us-cta:hover {
  filter: saturate(0%);
  outline-offset: 0px;
  background-image: linear-gradient(90deg, #990f0d 35%, #5e4a8b 77%, #497296);
  outline: 3px solid #fff;
}

.div-block-21 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.div-block-22 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: column;
  width: 50%;
  display: flex;
}

.parallax-team-image-wrapper {
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
  justify-content: flex-end;
  align-items: center;
  min-width: 100%;
  max-width: 100%;
  height: 500px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.image-15 {
  mix-blend-mode: lighten;
  width: 100%;
}

.flex-block {
  justify-content: center;
  align-items: flex-end;
}

.section-home-servicearea {
  padding-top: 40px;
  padding-bottom: 40px;
}

.div-block-23 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-image: radial-gradient(circle, #131313, #471617);
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  padding: 15px 15px 15px 35px;
  display: flex;
  box-shadow: 0 2px 8px 7px #0003;
}

.div-block-24 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.image-16 {
  object-fit: cover;
  border-radius: 20px;
  width: 35%;
  min-width: 35%;
}

.section-home-designbuild {
  padding-top: 40px;
  padding-bottom: 40px;
}

.image-17 {
  object-fit: cover;
  height: 200px;
}

.div-block-25 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  background-color: #575757;
  background-image: linear-gradient(131deg, gray, #a5a5a5);
  border-radius: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 400px;
  padding: 30px;
  display: flex;
}

.div-block-26 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-27 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.grid1 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: grid;
}

.body-white {
  color: #fff;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  font-family: Lato, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.flex-block-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: center;
}

.facebook-logo {
  height: 30px;
}

@media screen and (max-width: 991px) {
  .container {
    max-width: 728px;
  }

  .nav-menu-wrapper {
    background-color: #0000;
  }

  .nav-menu-two {
    background-color: #fff;
    border-radius: 50px;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
    padding: 20px;
    display: flex;
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-link {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-dropdown-list.shadow-three.is-open {
    position: absolute;
  }

  .menu-button {
    padding: 12px;
  }

  .menu-button.is-open {
    color: #fff;
    background-color: #a6b1bf;
  }

  .container-2 {
    max-width: 728px;
  }

  .footer-content {
    grid-column-gap: 60px;
  }

  .padding-global {
    min-width: 90vw;
    max-width: 90vw;
  }

  .section-hero {
    background-image: none;
  }

  .section-hero.home {
    background-image: url('../images/herographic50.svg'), linear-gradient(90deg, #00000094 76%, #0000);
    background-position: 0%, 0 0;
    background-repeat: no-repeat, repeat;
    background-size: cover, auto;
    background-attachment: scroll, scroll;
  }

  .section-hero.fire-extinguisher {
    background-position: 0%, 0 0, 50% 100%;
  }

  .grid {
    grid-template: "."
                   "."
                   "."
                   "."
                   "."
                   "."
                   / 1fr 1fr;
  }

  .service-grid-div.grid1, .service-grid-div.grid2, .service-grid-div.grid3, .service-grid-div.grid4, .service-grid-div.grid5, .service-grid-div.grid6, .service-grid-div.grid7, .service-grid-div.grid8, .service-grid-div.grid9, .service-grid-div.grid10, .service-grid-div.grid11, .service-grid-div.grid12 {
    width: 32vw;
    height: 32vw;
  }

  .service-grid-text-title {
    top: 18%;
  }

  .service-grid-text-titlealt {
    top: 25%;
  }

  .section-home-contact {
    height: auto;
    padding-bottom: 20px;
  }

  .contact-block-div {
    margin-bottom: 1rem;
  }

  .div-block-3 {
    margin-top: 40px;
  }

  .div-block-4 {
    flex-flow: wrap;
  }

  .service-grid-text {
    font-size: 1.3vw;
    line-height: 1.3vw;
    top: 0%;
  }

  .service-grid-text-title-copy {
    top: 25%;
  }

  .button.grid1 {
    opacity: 0;
    margin-left: auto;
    margin-right: auto;
    padding: 7px 0 0;
  }

  .button.grid2 {
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
  }

  .bottom-page-emph.fire-alarms {
    background-image: linear-gradient(#ffc0c0 47%, #0000);
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .div-block-10 {
    top: 21%;
  }

  .text-block-3 {
    font-size: 4rem;
    line-height: 4rem;
  }

  .div-block-11 {
    flex-flow: column;
    align-items: center;
  }

  .div-block-12 {
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: auto;
    max-width: none;
    height: 200px;
    display: flex;
  }

  .div-block-17:hover {
    padding-right: 0;
  }

  .div-block-18 {
    flex-flow: column;
  }

  .image-13 {
    width: 100%;
    height: 200px;
  }

  .group-image {
    height: 300px;
  }

  .div-block-22 {
    width: 100%;
  }

  .div-block-23 {
    flex-flow: column;
    padding-left: 15px;
  }

  .image-16 {
    width: 100%;
    height: 400px;
  }

  .grid1 {
    flex-flow: column;
  }
}

@media screen and (max-width: 767px) {
  .navbar-logo-left-container {
    max-width: 100%;
  }

  .navbar-brand {
    padding-left: 0;
  }

  .nav-menu-two {
    border-radius: 20px;
    flex-direction: column;
    padding-bottom: 30px;
  }

  .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list.shadow-three.is-open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .nav-divider {
    width: 200px;
    max-width: 100%;
    height: 1px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .nav-link-accent {
    margin-right: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .mobile-margin-top-10 {
    margin-top: 10px;
  }

  .footer-dark {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .footer-block {
    align-items: center;
  }

  .footer-link:hover {
    color: #1a1b1fbf;
  }

  .footer-social-block {
    margin-top: 20px;
    margin-left: -20px;
  }

  .footer-social-link {
    margin-left: 20px;
  }

  .footer-divider {
    margin-top: 60px;
  }

  .padding-global {
    min-width: 100vw;
  }

  .section-hero {
    height: 400px;
  }

  .hero-heading {
    width: 27rem;
    font-size: 2rem;
    font-weight: 700;
  }

  .home-summery-heading {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .italic-text-2 {
    font-size: 1.25rem;
    line-height: 1rem;
  }

  .grid {
    grid-template-rows: auto auto auto auto auto auto;
    grid-template-columns: 1fr 1fr;
    padding-left: 1vw;
  }

  .service-grid-div, .service-grid-div.grid1, .service-grid-div.grid2, .service-grid-div.grid3, .service-grid-div.grid4, .service-grid-div.grid5, .service-grid-div.grid6, .service-grid-div.grid7, .service-grid-div.grid8, .service-grid-div.grid9, .service-grid-div.grid10, .service-grid-div.grid11, .service-grid-div.grid12 {
    width: 48vw;
    height: 48vw;
  }

  .service-grid-2, .service-grid-3, .service-grid-4, .service-grid-5, .service-grid-6, .service-grid-7, .service-grid-8, .service-grid-9, .service-grid-10, .service-grid-11, .service-grid-12 {
    width: 45vw;
    height: 45vw;
  }

  .hero-ctacontainer {
    margin-top: 1rem;
  }

  .homehero-buttonwrapper {
    margin-right: auto;
  }

  .div-block {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    width: 29rem;
    height: 400px;
    padding: 1rem;
  }

  .contact-block-div {
    margin-left: auto;
    margin-right: auto;
  }

  .div-block-3 {
    width: 90vw;
  }

  .fireextinguisher-hero-div {
    width: auto;
    padding: 1rem;
  }

  .hero-heading-fireextinguisher {
    text-align: center;
    width: auto;
    font-size: 2rem;
    font-weight: 700;
  }

  .homehero-ctacontainer-copy {
    margin-top: 1rem;
  }

  .fireextinguisher-summery-heading-2 {
    padding-bottom: 20px;
  }

  .firealarm-hero-div {
    width: 29rem;
    padding: 1rem;
  }

  .hero-heading-firealarm {
    width: 27rem;
    font-size: 2rem;
    font-weight: 700;
  }

  .firealarmhero-ctacontainer {
    margin-top: 1rem;
  }

  .fireoptic-hero-div {
    width: 29rem;
    padding: 1rem;
  }

  .hero-heading-fireoptic {
    width: 27rem;
    font-size: 2rem;
    font-weight: 700;
  }

  .datawireless-hero-div {
    width: 29rem;
    padding: 1rem;
  }

  .hero-heading-datawireless {
    width: 27rem;
    font-size: 2rem;
    font-weight: 700;
  }

  .alarm-hero-div {
    width: 29rem;
    padding: 1rem;
  }

  .hero-heading-alarm, .hero-heading-tele {
    width: 27rem;
    font-size: 2rem;
    font-weight: 700;
  }

  .service-text-div, .service-text-div2 {
    width: 48vw;
    height: 48vw;
  }

  .service-grid-text.grid1, .service-grid-text.grid2, .service-grid-text.grid3, .service-grid-text.grid4, .service-grid-text.grid5, .service-grid-text.grid6, .service-grid-text.grid7, .service-grid-text.grid8, .service-grid-text.grid9, .service-grid-text.grid10, .service-grid-text.grid11, .service-grid-text.grid12 {
    font-size: 2vw;
    line-height: 2vw;
  }

  .fireextinguisher-summery-heading3 {
    padding-bottom: 20px;
  }

  .div-block-10 {
    top: 23%;
  }

  .text-block-3 {
    font-size: 3.5rem;
    line-height: 3.5rem;
  }

  .fireextinguisher-summery-header2 {
    padding-bottom: 20px;
  }

  .heading2 {
    width: 27rem;
    font-size: 2rem;
  }

  .slider, .div-block-14, .image-8 {
    height: 400px;
  }

  .uplift-logo {
    height: 20px;
  }

  .image-16 {
    height: 300px;
  }

  .grid1 {
    grid-template-rows: auto auto;
    grid-template-columns: auto;
  }

  .facebook-logo {
    height: 20px;
  }
}

@media screen and (max-width: 479px) {
  .container {
    max-width: none;
  }

  .nav-menu-two {
    flex-direction: column;
  }

  .container-2 {
    max-width: none;
  }

  .hero-heading {
    width: auto;
    line-height: 2.5rem;
  }

  .home-summery-heading {
    width: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 1rem;
    line-height: 1rem;
  }

  .italic-text-2 {
    font-size: 1rem;
    line-height: 1rem;
  }

  .grid {
    grid-column-gap: 1vw;
    grid-row-gap: 1vw;
    grid-template: "."
                   "."
                   "."
                   "."
                   "."
                   "."
                   "."
                   "."
                   "."
                   "."
                   "."
                   "."
                   / 1fr;
  }

  .service-grid-div, .service-grid-div.grid1, .service-grid-div.grid2, .service-grid-div.grid3, .service-grid-div.grid4, .service-grid-div.grid5, .service-grid-div.grid6, .service-grid-div.grid7, .service-grid-div.grid8, .service-grid-div.grid9, .service-grid-div.grid10, .service-grid-div.grid11, .service-grid-div.grid12 {
    width: 98vw;
    height: 98vw;
  }

  .service-grid-text-title {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 7vw;
    line-height: 7vw;
    top: 35%;
  }

  .call-us-cta-button {
    margin-right: auto;
  }

  .homehero-buttonwrapper {
    justify-content: center;
    align-items: center;
    width: 170px;
    margin-right: auto;
  }

  .homehero-ctatext {
    font-size: 1rem;
  }

  .image-3 {
    width: 20px;
    height: 20px;
  }

  .div-block {
    width: 90vw;
    margin-right: auto;
  }

  .service-grid-text-titlealt {
    font-size: 7vw;
    line-height: 7vw;
  }

  .div-block-3 {
    margin-top: 60px;
  }

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

  .contact-block-div2 {
    width: auto;
  }

  .fireextinguisher-hero-div {
    width: 90vw;
    margin-top: 10vw;
    margin-right: auto;
  }

  .hero-heading-fireextinguisher {
    text-align: center;
    width: auto;
  }

  .fireextinguisher-summery-heading {
    padding-top: 10px;
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .list {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .fireextinguisher-summery-heading-2 {
    padding-bottom: 10px;
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .firealarm-hero-div {
    width: 90vw;
    margin-top: 10vw;
    margin-right: auto;
  }

  .hero-heading-firealarm {
    text-align: center;
    width: auto;
  }

  .firealarm-summery-heading {
    padding-top: 10px;
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .fireoptic-hero-div {
    width: 90vw;
    margin-top: 30vw;
    margin-right: auto;
  }

  .hero-heading-fireoptic {
    text-align: center;
    width: auto;
  }

  .fiberoptic-summery-heading {
    padding-top: 10px;
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .fiberoptic-summery-heading2 {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .datawireless-hero-div {
    width: 90vw;
    margin-top: 10vw;
    margin-right: auto;
  }

  .hero-heading-datawireless {
    text-align: center;
    width: auto;
  }

  .datawireless-summery-heading {
    padding-top: 10px;
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .datawireless-summery-heading2, .firealarm-summery-heading2 {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .security-summery-heading {
    padding-top: 10px;
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .alarm-hero-div {
    width: 90vw;
    margin-top: 10vw;
    margin-right: auto;
  }

  .hero-heading-alarm {
    text-align: center;
    width: auto;
  }

  .alarm-summery-heading, .tele-summery-heading {
    padding-top: 10px;
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .hero-heading-tele {
    text-align: center;
    width: auto;
    font-size: 8vw;
  }

  .service-grid-text {
    padding-left: 10px;
    padding-right: 10px;
  }

  .service-grid-text.grid1, .service-grid-text.grid2, .service-grid-text.grid3, .service-grid-text.grid4, .service-grid-text.grid5, .service-grid-text.grid6, .service-grid-text.grid7, .service-grid-text.grid8, .service-grid-text.grid9, .service-grid-text.grid10, .service-grid-text.grid11, .service-grid-text.grid12 {
    font-size: 4vw;
    line-height: 4vw;
  }

  .service-grid-text-title-copy {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 7vw;
    line-height: 7vw;
  }

  .pagend-cta-container {
    margin-left: auto;
    margin-right: auto;
  }

  .pageend-buttonwrapper {
    justify-content: center;
    align-items: center;
    width: 170px;
    margin-left: auto;
    margin-right: auto;
  }

  .button {
    margin-right: auto;
  }

  .button.grid1 {
    opacity: 0;
  }

  .button.grid3 {
    opacity: 0;
  }

  .button.grid4 {
    opacity: 0;
  }

  .button.grid5 {
    opacity: 0;
  }

  .button.grid6 {
    opacity: 0;
  }

  .button.grid7 {
    opacity: 0;
  }

  .button.grid8 {
    opacity: 0;
  }

  .button.grid9 {
    opacity: 0;
  }

  .button.grid10 {
    opacity: 0;
  }

  .button.grid11 {
    opacity: 0;
  }

  .button.grid12 {
    opacity: 0;
  }

  .firealarm-summery-heading3 {
    padding-top: 10px;
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .fireextinguisher-summery-heading3 {
    padding-bottom: 10px;
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .fiberoptic-summery-heading3, .datawireless-summery-heading3, .security-summery-heading2 {
    padding-top: 10px;
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .section-map {
    height: 500px;
  }

  .testimonial-text, .testimonial-text-sub, .testimonial-text-sub2 {
    padding-top: 10px;
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .text-block-3 {
    font-size: 10vw;
    line-height: 10vw;
  }

  .text-span {
    font-size: 2rem;
    line-height: 2rem;
  }

  .fireextinguisher-summery-header {
    padding-top: 10px;
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .fireextinguisher-summery-header2 {
    padding-bottom: 10px;
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .text-block-5 {
    font-size: 12px;
    line-height: 16px;
  }

  .heading2 {
    text-align: center;
    width: auto;
  }

  .div-block-14 {
    justify-content: flex-end;
    align-items: center;
  }

  .group-image {
    height: auto;
  }

  .div-block-23 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
  }

  .div-block-24 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .image-16 {
    height: 200px;
  }

  .image-17 {
    height: auto;
    max-height: 200px;
  }

  .div-block-25 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    width: 90vw;
    padding: 10px;
  }

  .div-block-27 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .grid1 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
  }

  .body-white {
    padding-top: 10px;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  #design-build-callout {
    grid-area: 1 / 1 / 2 / 2;
  }
}


