.elementor-3686 .elementor-element.elementor-element-29c3376{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-3686 .elementor-element.elementor-element-56ce023 > .elementor-element-populated{margin:0px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;padding:0px 0px 0px 0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS *//* ============================
   VARIABLES
============================ */

:root {
  --pp-teal: #043f56;
  --pp-teal-dark: #01364b;
  --pp-orange: #ffad25;
  --pp-orange-strong: #ff9800;

  --pp-white: #ffffff;
  --pp-text: #082d43;
  --pp-muted: #647783;
  --pp-border: #e5edf1;
  --pp-soft: #f3f7f9;

  --pp-radius: 18px;

  --pp-shadow:
    0 18px 45px rgba(1, 48, 67, 0.15);
}


/* ============================
   RESET
============================ */

.pp-header,
.pp-header * {
  box-sizing: border-box;
}

.pp-header a {
  text-decoration: none;
}

.pp-header button {
  font-family: inherit;
}

.pp-container {
  width: min(1380px, calc(100% - 50px));
  margin-inline: auto;
}


/* ============================
   TOP BAR
============================ */

.pp-topbar {
  background: var(--pp-orange);
  color: var(--pp-text);
  font-size: 14px;
  font-weight: 600;
}

.pp-topbar-inner {
  min-height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 45px;
}

.pp-top-item {
  display: flex;
  align-items: center;
  gap: 8px;

  color: inherit;
}

.pp-dot {
  margin-inline: 4px;
}


/* ============================
   MAIN HEADER
============================ */

.pp-main-header {
  position: relative;
  z-index: 1000;

  background:
    linear-gradient(
      115deg,
      var(--pp-teal-dark),
      var(--pp-teal)
    );

  color: var(--pp-white);
}

.pp-header-top {
    display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}


/* ============================
   LOGO
============================ */

.pp-logo {
  display: block;
  flex-shrink: 0;
}

.pp-logo img {
  display: block;

  width: 330px;
  max-height: 125px;

  object-fit: contain;
  object-position: left center;
}


/* ============================
   HEADER ACTIONS
============================ */

.pp-header-actions {
  display: flex;
  align-items: center;

  gap: 22px;
}

.pp-phone {
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  padding: 0 25px;

  border: 1px solid rgba(255,255,255,.7);
  border-radius: 6px;

  color: white;

  font-size: 16px;
  font-weight: 600;

  transition: .25s ease;
}

.pp-phone:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
  color:white;
}

.bi-instagram, .bi-facebook {
  width: 25px;
  height: 38px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: white;

  font-size: 28px;
  font-weight: 600;
}

.pp-quote-btn {
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  gap: 20px;

  padding: 0 30px;

  border-radius: 999px;

  background:
    linear-gradient(
      135deg,
      #ffb32c,
      var(--pp-orange-strong)
    );

  color: var(--pp-text);

  font-weight: 600;
  font-size: 14px;

  transition: .25s ease;
}

.pp-quote-btn:hover {
  transform: translateY(-2px);

  box-shadow:
    0 10px 25px rgba(255,153,0,.3);
}


/* ============================
   NAV
============================ */

.pp-navigation {
  position: relative;
}

.pp-menu {
  list-style: none;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 10px;

  margin: 0;
  padding: 0;
}

.pp-menu-item {
  position: relative;
}

.pp-menu-link {
  position: relative;

  min-height: 65px;

  display: flex;
  align-items: center;

  gap: 7px;

  padding: 0 20px;

  border: 0;
  background: transparent;

  color: var(--pp-white);

  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;

  cursor: pointer;

  transition: .2s ease;
}

.pp-menu-link::after {
  content: "";

  position: absolute;
  bottom: 7px;
  left: 20px;
  right: 20px;

  height: 3px;

  background: var(--pp-orange);

  transform: scaleX(0);
  transform-origin: center;

  transition: .25s ease;
}

.pp-menu-link:hover,
.pp-menu-item:hover > .pp-menu-link {
  color: var(--pp-orange);
}

.pp-menu-link:hover::after,
.pp-menu-item:hover > .pp-menu-link::after {
  transform: scaleX(1);
}

.pp-chevron {
  color: var(--pp-orange);
}


/* ============================
   DROPDOWNS
============================ */

.pp-dropdown {
  position: absolute;

  top: calc(100% - 1px);

  opacity: 0;
  visibility: hidden;

  pointer-events: none;

  transform:
    translateY(12px)
    scale(.985);

  transition:
    opacity .18s ease,
    transform .22s ease,
    visibility .18s ease;

  background: white;

  color: var(--pp-text);

  border-radius: var(--pp-radius);

  box-shadow: var(--pp-shadow);
}


/* Triangle */

.pp-dropdown::before {
  content: "";

  position: absolute;
  top: -14px;

  width: 28px;
  height: 28px;

  background: white;

  transform: rotate(45deg);
}


/* Hover open */

.pp-has-dropdown:hover > .pp-dropdown,
.pp-has-dropdown:focus-within > .pp-dropdown {
  opacity: 1;
  visibility: visible;

  pointer-events: auto;

  transform:
    translateY(0)
    scale(1);
}


/* ============================
   ABOUT DROPDOWN
============================ */

.pp-about-dropdown {
  left: 0;

  width: 400px;

  padding: 28px;
}

.pp-about-dropdown::before {
  left: 42px;
}


/* ============================
   OTHER SERVICES DROPDOWN
============================ */

.pp-services-dropdown {
  right: 0;

  width: min(500px, 80vw);

  padding: 30px 36px;
}

.pp-services-dropdown::before {
  right: 90px;
}

.pp-services-title {
  display: inline-block;

  margin-bottom: 15px;
  padding-bottom: 10px;

  border-bottom: 3px solid var(--pp-orange);

  font-size: 22px;
  font-weight: 800;

  text-transform: uppercase;
}


/* ============================
   DROPDOWN ITEMS
============================ */

.pp-dropdown-card,
.pp-service-row {
  display: flex;
  align-items: center;

  gap: 20px;

  color: var(--pp-text);

  transition: .2s ease;
}

.pp-dropdown-card {
  padding: 10px;
}

.pp-service-row {
  min-height: 105px;

  padding: 14px 5px;

  border-bottom: 1px solid var(--pp-border);
}

.pp-service-row:last-child {
  border-bottom: 0;
}

.pp-dropdown-card:hover,
.pp-service-row:hover {
  transform: translateX(4px);
}


/* ============================
   ICON
============================ */

.pp-icon-circle {
  width: 72px;
  height: 72px;

  flex: 0 0 72px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--pp-soft);
}

.pp-icon-circle svg {
  width: 40px;
  height: 40px;

  fill: none;

  stroke: var(--pp-text);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ============================
   DROPDOWN TEXT
============================ */

.pp-dropdown-content {
  flex: 1;

  display: flex;
  flex-direction: column;

  gap: 7px;
}

.pp-dropdown-content strong {
  color: var(--pp-text);

  font-size: 16px;
  font-weight: 800;
}

.pp-dropdown-content span {
  color: var(--pp-text);

  font-size: 14px;
  line-height: 1.5;
}

.pp-arrow {
  margin-left: auto;

  color: var(--pp-orange-strong);

  font-size: 32px;
  font-weight: 300;

  transition: .2s ease;
}

.pp-service-row:hover .pp-arrow,
.pp-dropdown-card:hover .pp-arrow {
  transform: translateX(5px);
}


/* ============================
   MOBILE BUTTON
============================ */

.pp-mobile-toggle {
  display: none;

  width: 48px;
  height: 48px;

  padding: 11px;

  border: 0;
  border-radius: 50%;

  background: var(--pp-orange);

  cursor: pointer;
}

.pp-mobile-toggle span {
  display: block;

  height: 2px;

  margin: 5px 0;

  background: var(--pp-text);

  transition: .25s ease;
}


/* ============================
   MOBILE CTA
============================ */

.pp-mobile-quote {
  display: none;
}


/* ============================
   TABLET
============================ */

@media (max-width: 1100px) {

  .pp-container {
    width: min(100% - 32px, 1000px);
  }

  .pp-topbar-inner {
    gap: 18px;

    justify-content: space-between;
  }

  .pp-logo img {
    width: 270px;
  }

  .pp-header-actions {
    gap: 12px;
  }

  .pp-social {
    display: none;
  }

  .pp-menu {
    justify-content: space-between;
  }

  .pp-menu-link {
    padding-inline: 10px;

    font-size: 12px;
  }

  .pp-menu-link::after {
    left: 10px;
    right: 10px;
  }

}


/* ============================
   MOBILE / TABLET NAV
============================ */

@media (max-width: 900px) {

  .pp-topbar {
    display: none;
  }

  .pp-header-top {
    min-height: 100px;
  }

  .pp-logo img {
    width: 220px;
    max-height: 85px;
  }

  .pp-header-actions {
    display: none;
  }

  .pp-mobile-toggle {
    display: block;
  }


  /* MENU PANEL */

  .pp-navigation {
    position: absolute;

    top: 100%;
    left: 0;
    right: 0;

    padding: 0 20px 25px;

    background: var(--pp-teal-dark);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-10px);

    transition: .25s ease;
  }

  .pp-navigation.pp-open {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
  }

  .pp-menu {
    display: block;
  }

  .pp-menu-item {
    width: 100%;

    border-bottom:
      1px solid rgba(255,255,255,.12);
  }

  .pp-menu-link {
    width: 100%;

    min-height: 56px;

    justify-content: space-between;

    padding: 0;

    font-size: 14px;
  }

  .pp-menu-link::after {
    display: none;
  }


  /* MOBILE DROPDOWNS */

  .pp-dropdown {
    position: static;

    width: 100%;

    max-height: 0;

    padding: 0;

    overflow: hidden;

    opacity: 1;
    visibility: visible;

    pointer-events: auto;

    transform: none;

    border-radius: 10px;

    box-shadow: none;

    transition:
      max-height .35s ease,
      padding .35s ease,
      margin .35s ease;
  }

  .pp-dropdown::before {
    display: none;
  }


  .pp-menu-item.pp-submenu-open > .pp-dropdown {
    max-height: 700px;

    margin-bottom: 15px;

    padding: 15px;
  }


  .pp-about-dropdown,
  .pp-services-dropdown {
    width: 100%;
  }

  .pp-services-title {
    font-size: 18px;
  }

  .pp-dropdown-card,
  .pp-service-row {
    min-height: auto;

    padding: 12px 5px;
  }

  .pp-icon-circle {
    width: 55px;
    height: 55px;

    flex-basis: 55px;
  }

  .pp-icon-circle svg {
    width: 30px;
    height: 30px;
  }

  .pp-dropdown-content strong {
    font-size: 14px;
  }

  .pp-dropdown-content span {
    font-size: 12px;
  }

  .pp-arrow {
    font-size: 26px;
  }


  /* CTA */

  .pp-mobile-quote {
    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 50px;

    margin-top: 20px;

    border-radius: 999px;

    background: var(--pp-orange);

    color: var(--pp-text);

    font-weight: 800;
    text-transform: uppercase;
  }

}


/* ============================
   SMALL MOBILE
============================ */

@media (max-width: 520px) {

  .pp-container {
    width: calc(100% - 24px);
  }

  .pp-header-top {
    min-height: 84px;
  }

  .pp-logo img {
    width: 185px;
  }

  .pp-mobile-toggle {
    width: 44px;
    height: 44px;
  }

  .pp-navigation {
    padding-inline: 12px;
  }

  .pp-service-row {
    gap: 12px;
  }

  .pp-icon-circle {
    width: 48px;
    height: 48px;

    flex-basis: 48px;
  }

  .pp-icon-circle svg {
    width: 26px;
    height: 26px;
  }

  .pp-dropdown-content span {
    line-height: 1.35;
  }

}


[type=button]:focus, [type=button]:hover, [type=submit]:focus, [type=submit]:hover, button:focus, button:hover{
    background-color:transparent;
}/* End custom CSS */