.max-width-1140,
.max-width-1280,
.max-width-1440 {
  display: flex;
  justify-content: center;
}

.max-width-1140 .vc_column-inner {
  max-width: 1140px;
  margin: auto;
  padding: 0 !important;
}

.max-width-1280 .vc_column-inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 !important;
}

.max-width-1440 .vc_column-inner {
  max-width: 1440px;
  margin: auto;
  padding: 0 !important;
}

.has-dropdown {
  overflow: visible !important;
  z-index: 9999;
}

/* Container styles */
.ppf-container {
  background-color: transparent;
}

/* Image styles */
.ppf-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.ppf-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ppf-image-overlay.right.white {
  background: linear-gradient(to right, rgb(255, 255, 255) 5px, rgba(255, 255, 255, 0) 190px);
}
.ppf-image-overlay.right.primary {
  background: linear-gradient(to right, #2991bd 5px, rgba(255, 255, 255, 0) 190px);
}
.ppf-image-overlay.right.primary-dark {
  background: linear-gradient(to right, #0e2834 5px, rgba(255, 255, 255, 0) 190px);
}
.ppf-image-overlay.right.sg-gold {
  background: linear-gradient(to right, #ffc43e 5px, rgba(255, 255, 255, 0) 190px);
}
.ppf-image-overlay.left.white {
  background: linear-gradient(to left, rgb(255, 255, 255) 5px, rgba(255, 255, 255, 0) 190px);
}
.ppf-image-overlay.left.primary {
  background: linear-gradient(to left, #2991bd 5px, rgba(255, 255, 255, 0) 190px);
}
.ppf-image-overlay.left.primary-dark {
  background: linear-gradient(to left, #0e2834 5px, rgba(255, 255, 255, 0) 190px);
}
.ppf-image-overlay.left.sg-gold {
  background: linear-gradient(to left, #ffc43e 5px, rgba(255, 255, 255, 0) 190px);
}

/* Feature icon styles */
.ppf-icon-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}
.ppf-icon-container i {
  font-size: 2.5rem;
}
.ppf-icon-container img {
  max-width: 100px;
  /* Adjust as needed */
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Feature text styles */
.ppf-icon-text {
  line-height: 1.2;
  padding: 20px 0;
}

/* Responsive styles */
@media (max-width: 991.98px) {
  .order-1 {
    min-height: 300px;
  }
  .ppf-image {
    min-height: 300px;
  }
}
@media (min-width: 992px) {
  .order-lg-2 {
    min-height: auto;
  }
  .ppf-image {
    min-height: auto;
  }
}
@media (max-width: 767.98px) {
  .ppf-image {
    min-height: 250px;
  }
}
/* Inner Navigation Styles */
/* Container and background */
.sg-wpbc-inner-nav-container {
  position: relative;
}

.sg-wpbc-inner-nav-background {
  position: relative;
}

.sg-wpbc-inner-nav-background > * {
  position: relative;
}

/* Desktop Navigation */
.sg-wpbc-inner-nav-desktop {
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.sg-wpbc-btn {
  background-color: transparent;
  border: none;
  color: white;
  padding: 15px 25px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  flex: 1;
  white-space: nowrap;
  border-radius: 8px;
  margin: 0 5px;
  text-align: center;
}
.sg-wpbc-btn.primary {
  background-color: #2991bd;
  color: #fff;
}
.sg-wpbc-btn.primary-dark {
  background-color: #0e2834;
  color: #fff;
}
.sg-wpbc-btn.sg-gold {
  background-color: #ffc43e;
  color: #000;
}
.sg-wpbc-btn:hover, .sg-wpbc-btn:active, .sg-wpbc-btn.active {
  color: #000000;
  background-color: #ffc43e;
}
.sg-wpbc-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.5);
}

/* Mobile Dropdown */
.sg-wpbc-inner-nav-mobile {
  display: flex;
  justify-content: center;
}
.sg-wpbc-inner-nav-mobile .dropdown {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.sg-wpbc-inner-nav-dropdown-btn {
  background-color: #0e2834;
  border: 1px solid #ccc;
  color: #ffc43e;
  padding: 15px 25px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 8px;
  width: 100%;
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
}
.sg-wpbc-inner-nav-dropdown-btn::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.sg-wpbc-inner-nav-dropdown-btn[aria-expanded=true]::after {
  transform: translateY(-50%) rotate(180deg);
}
.sg-wpbc-inner-nav-dropdown-btn:hover {
  background-color: #ffc43e;
  transform: translateY(-2px);
  color: #000;
}

.sg-wpbc-inner-nav-mobile .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #0e2834;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}
.sg-wpbc-inner-nav-mobile .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sg-wpbc-inner-nav-mobile .dropdown-item {
  display: block;
  width: 100%;
  padding: 15px 20px;
  background: none;
  border: none;
  color: #ffc43e;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
  transition: all 0.3s ease;
  border-bottom: 1px solid #eee;
}
.sg-wpbc-inner-nav-mobile .dropdown-item:last-child {
  border-bottom: none;
}
.sg-wpbc-inner-nav-mobile .dropdown-item:hover {
  background-color: #21607e;
  color: #ffc43e;
}
.sg-wpbc-inner-nav-mobile .dropdown-item.active {
  background-color: #ffc43e;
  color: #1a4d4d;
  font-weight: 700;
}

/* Responsive styles */
@media (max-width: 1199.98px) {
  .sg-wpbc-inner-nav-container h2 {
    font-size: 2.5rem;
  }
  .sg-wpbc-inner-nav-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}
@media (max-width: 991.98px) {
  .sg-wpbc-inner-nav-container h2 {
    font-size: 2rem;
  }
  .clearshield-subtitle {
    font-size: 1.1rem;
  }
}
@media (max-width: 767.98px) {
  .sg-wpbc-inner-nav-container h2 {
    font-size: 1.75rem;
    letter-spacing: 0.5px;
  }
  .sg-wpbc-inner-nav-container h3 {
    font-size: 1rem;
  }
}
@media (max-width: 575.98px) {
  .sg-wpbc-inner-nav-container h2 {
    font-size: 1.5rem;
  }
  .sg-wpbc-inner-nav-container h3 {
    font-size: 0.95rem;
  }
  .sg-wpbc-inner-nav-dropdown-btn {
    font-size: 0.9rem;
    padding: 12px 20px;
  }
  .sg-wpbc-inner-nav-mobile .dropdown-item {
    font-size: 0.9rem;
    padding: 12px 18px;
  }
}
/* Container styles */
.sg-wpbc-icon-grid-container {
  /* Feature item styles */
  /* Responsive styles */
}
.sg-wpbc-icon-grid-container .text-highlight {
  /* Remove color styling */
}
.sg-wpbc-icon-grid-container .feature-item {
  align-items: flex-start;
}
.sg-wpbc-icon-grid-container .feature-icon-container {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}
.sg-wpbc-icon-grid-container .feature-icon {
  /* Remove font-size and color */
}
.sg-wpbc-icon-grid-container .feature-title {
  line-height: 1.2;
  margin-bottom: 1rem;
}
.sg-wpbc-icon-grid-container .feature-description {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .sg-wpbc-icon-grid-container .feature-icon-container {
    width: 60px;
    height: 60px;
    margin-right: 1rem !important;
  }
}
@media (max-width: 767.98px) {
  .sg-wpbc-icon-grid-container .feature-item {
    flex-direction: column;
    text-align: center;
  }
  .sg-wpbc-icon-grid-container .feature-icon-container {
    margin-right: 0 !important;
    margin-bottom: 1rem;
    align-self: center;
  }
  .sg-wpbc-icon-grid-container .feature-content {
    text-align: center;
  }
}/*# sourceMappingURL=cpt-style.css.map */