.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-15dc04f */.security-footer {
  --footer-bg: #040406;
  --accent: #E78215;
  --text: #ffffff;
  --muted: rgba(255,255,255,.58);

  position: relative;
  overflow: hidden;

  background: var(--footer-bg);
  color: var(--text);

  padding: 80px 20px 0;

  font-family: 'Plus Jakarta Sans';
}


/* subtle background glow */

.security-footer::before {
  content: "";
  position: absolute;

  width: 450px;
  height: 450px;

  top: -280px;
  left: 50%;

  transform: translateX(-50%);

  border-radius: 50%;

  background: rgba(231,130,21,.08);

  filter: blur(100px);

  pointer-events: none;
}


/* CONTAINER */

.sf-container {
  position: relative;
  z-index: 2;

  max-width: 1180px;
  margin: 0 auto;
}


/* =====================================================
   TOP GRID
===================================================== */

.sf-grid {

  display: grid;

  grid-template-columns:
    1.25fr
    .85fr
    1fr
    1.15fr;

  gap: 70px;

  padding-bottom: 65px;
}


/* =====================================================
   COLUMN
===================================================== */

.sf-column h3 {

  margin: 0 0 25px;

  color: #ffffff;

  font-size: 15px;

  font-weight: 700;

  letter-spacing: 1.2px;

  text-transform: uppercase;
}


/* =====================================================
   LOGO
===================================================== */

.sf-logo {

  display: flex;
  align-items: center;

  gap: 12px;

  margin-bottom: 28px;
}


.sf-logo-text {

  color: #ffffff;

  font-size: 28px;

  font-weight: 800;

  letter-spacing: -.8px;
}


/* CSS LOGO MARK */

.sf-logo-mark {

  position: relative;

  width: 42px;
  height: 48px;

  display: flex;
  justify-content: center;
  align-items: center;

  border: 4px solid var(--accent);

  clip-path: polygon(
    50% 0%,
    100% 25%,
    100% 75%,
    50% 100%,
    0% 75%,
    0% 25%
  );
}


.sf-logo-mark::before {

  content: "";

  position: absolute;

  width: 15px;
  height: 28px;

  border-left: 4px solid var(--accent);
  border-right: 4px solid var(--accent);

  top: 8px;
}


.sf-logo-mark span {
  display: none;
}


/* =====================================================
   ABOUT
===================================================== */

.sf-about > h3 {

  margin-bottom: 15px;
}


.sf-about p {

  max-width: 300px;

  margin: 0;

  color: var(--muted);

  font-size: 14px;

  line-height: 1.9;
}


/* =====================================================
   SOCIAL ICONS
===================================================== */

.sf-socials {

  display: flex;

  align-items: center;

  gap: 12px;

  margin-top: 25px;
}


.sf-socials a {

  width: 38px;
  height: 38px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  color: var(--accent);

  border: 1px solid rgba(231,130,21,.25);

  background: rgba(231,130,21,.05);

  transition: all .3s ease;
}


.sf-socials svg {

  width: 17px;
  height: 17px;

  fill: currentColor;

  stroke: currentColor;

  stroke-width: 1.5;
}


.sf-socials a:hover {

  color: #ffffff;

  background: var(--accent);

  border-color: var(--accent);

  transform: translateY(-5px);

  box-shadow:
    0 10px 25px rgba(231,130,21,.25);
}


/* =====================================================
   LISTS
===================================================== */

.sf-column ul {

  list-style: none;

  padding: 0;
  margin: 0;
}


.sf-column ul li {

  margin-bottom: 16px;
}


.sf-column ul li:last-child {

  margin-bottom: 0;
}


.sf-column ul a {

  position: relative;

  color: var(--muted);

  text-decoration: none;

  font-size: 14px;

  line-height: 1.6;

  transition: all .3s ease;
}


.sf-column ul a::before {

  content: "";

  display: inline-block;

  width: 0;

  height: 1px;

  margin-right: 0;

  vertical-align: middle;

  background: var(--accent);

  transition: all .3s ease;
}


.sf-column ul a:hover {

  color: #ffffff;

  padding-left: 8px;
}


.sf-column ul a:hover::before {

  width: 15px;

  margin-right: 7px;
}


/* =====================================================
   CONTACT
===================================================== */

.sf-contact-item {

  display: flex;

  align-items: flex-start;

  gap: 14px;

  margin-bottom: 21px;

  color: inherit;

  text-decoration: none;
}


.sf-contact-item:last-child {

  margin-bottom: 0;
}


.sf-contact-icon {

  flex-shrink: 0;

  width: 35px;
  height: 35px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 8px;

  background: rgba(231,130,21,.1);

  color: var(--accent);

  transition: all .3s ease;
}


.sf-contact-icon svg {

  width: 17px;
  height: 17px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.7;

  stroke-linecap: round;

  stroke-linejoin: round;
}


.sf-contact-item:hover .sf-contact-icon {

  background: var(--accent);

  color: #ffffff;

  transform: translateY(-2px);
}


.sf-contact-item small {

  display: block;

  margin-bottom: 4px;

  color: rgba(255,255,255,.4);

  font-size: 10px;

  text-transform: uppercase;

  letter-spacing: 1px;
}


.sf-contact-item strong {

  display: block;

  color: var(--muted);

  font-size: 13px;

  font-weight: 400;

  line-height: 1.5;

  transition: color .3s ease;
}


a.sf-contact-item:hover strong {

  color: #ffffff;
}


/* =====================================================
   BOTTOM
===================================================== */

.sf-bottom {

  min-height: 75px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  border-top: 1px solid rgba(255,255,255,.1);
}


.sf-copyright {

  color: rgba(255,255,255,.45);

  font-size: 13px;
}


.sf-bottom-links {

  display: flex;

  align-items: center;

  gap: 20px;
}


.sf-bottom-links a {

  color: rgba(255,255,255,.55);

  text-decoration: none;

  font-size: 13px;

  transition: color .3s ease;
}


.sf-bottom-links a:hover {

  color: var(--accent);
}


.sf-bottom-links span {

  width: 1px;

  height: 14px;

  background: rgba(255,255,255,.25);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {

  .security-footer {

    padding-top: 65px;
  }


  .sf-grid {

    grid-template-columns: 1fr 1fr;

    gap: 50px 45px;
  }


  .sf-about {

    grid-column: span 2;
  }


  .sf-about p {

    max-width: 600px;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

  .security-footer {

    padding: 60px 20px 0;
  }


  .sf-grid {

    grid-template-columns: 1fr;

    gap: 42px;

    padding-bottom: 45px;
  }


  .sf-about {

    grid-column: auto;
  }


  .sf-logo-text {

    font-size: 25px;
  }


  .sf-about p {

    max-width: 100%;

    font-size: 13px;
  }


  .sf-column h3 {

    margin-bottom: 18px;

    font-size: 14px;
  }


  .sf-bottom {

    padding: 25px 0;

    flex-direction: column;

    align-items: flex-start;

    gap: 18px;
  }


  .sf-bottom-links {

    flex-wrap: wrap;

    gap: 12px 16px;
  }


  .sf-bottom-links span {

    display: none;
  }


  .sf-copyright {

    font-size: 12px;
  }

}/* End custom CSS */