/* ============================================
   Global Background Color
   ============================================ */

body {
  background-color: #f6f6f6;
  margin: 0;
  padding: 0;
  color: #333;
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
}

/* ============================================
   Typography Base
   ============================================ */

.after-dash {
    display: block;
    margin: 0px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Open Sans', sans-serif;
  /* color: #246; */
  font-weight: 700;
  line-height: 1.3em;
  margin: .1em 0 .4em 0;
}

h2 {
  font-size: 1.5em;
  display: block;
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  unicode-bidi: isolate;
}

p {
  margin: 1em 0;
}

b,
strong {
  color: #28c;
}

/* ============================================
   Global Link Styles
   ============================================ */

a {
  text-decoration: none;
  color: #28c;
  outline: none;
  /* font-weight: 400; */
  transition: color 0.2s;
}

a:hover {
  text-decoration: none;
}

/* ============================================
   Container System
   ============================================ */

.pp-container {
  width: 100%;
}

.pp-container,
.container {
  /* width: 100%; */
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  margin-block-start: 0px;
}

.pp-container-wide {
  max-width: 1400px;
}

.pp-container-narrow {
  max-width: 900px;
}

/* ============================================
   Wrapper and Page Structure
   ============================================ */

.wrapper {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  margin-block-start: 0;
  display: block;
}

.outer-wrapper {
  min-width: 980px;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 1280px;
  margin: 0 auto;
}

.page-wrapper.en {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

@media (max-width: 1240px) {
  .wrapper {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 640px) {
  .wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ============================================
   Fixed Header Styles
   ============================================ */

#fixheader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #F6F6F6;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  display: none;
}

#fixheader .wrapper {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* ============================================
   Breadcrumbs Container
   ============================================ */

.pp-breadcrumbs {
  max-width: 1280px;   
  width: 100%;         
  margin: 0 auto;
  box-sizing: border-box;
}


.breadcrumb-text {
  margin: 0;
  font-size: 0.875rem;
  color: #6c757d;
  padding: 0px 15px 10px 15px;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

.breadcrumb-text a {
  color: #28c;
  text-decoration: none;
}

.breadcrumb-text a:hover {
  text-decoration: underline;
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .pp-breadcrumbs {
    padding: 10px 0;
    font-size: 13px;
  }
  
  .pp-breadcrumbs .container {
    padding: 0 20px;
  }
  
  .pp-breadcrumbs .breadcrumb-text {
    font-size: 13px;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
  }
}

/* ============================================
   Generic Two-Column Layout
   ============================================ */

.pp-main-sidebar-layout {
  display: grid !important;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  margin: 32px 0;
  align-items: start;
}

.pp-main-content {
  width: 100%;
  min-width: 0;
}

.pp-sidebar-area {
  width: 100%;
  position: sticky;
  top: 20px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}

.pp-sidebar-area::-webkit-scrollbar {
  width: 6px;
}

.pp-sidebar-area::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.pp-sidebar-area::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.pp-sidebar-area::-webkit-scrollbar-thumb:hover {
  background: #999;
}

section.pp-box.box-wrapper img,
section.coad.box-wrapper.pp-contact-cta img {
    width: 100%;
}

.box-row2.bg-11:hover {
    background-color: rgb(0, 102, 187) !important;
}

/* ============================================
   Column Layout System - Using Flexbox
   ============================================ */

.wrapper:has(> article.col-2-3):has(> aside.col-1-3) {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

article.col-2-3 {
  flex: 1 1 calc(66.666% - 10px);
  min-width: 0;
  max-width: calc(66.666% - 10px);
  margin-right: 10px;
}

aside.col-1-3 {
  flex: 1 1 calc(33.33%);
  min-width: 0;
  max-width: calc(33.33%);
}

.wrapper > #orgNav,
.wrapper > #orgRight {
  display: inline-block;
  vertical-align: top;
}

#orgNav.col-2-3 {
  width: calc(66.666% - 12px);
  margin-right: 12px;
}

#orgRight.col-1-3 {
  width: calc(33.333% - 12px);
}

.wrapper > div:not(article):not(aside):not(#orgNav):not(#orgRight) {
  flex: 1 1 100%;
  /* width: 100%; */
  /* max-width: 100%; */
}

.mv-box2 {
  width: 100% !important;
  flex: 1 1 100% !important;
}

.wrapper > div[style*="clear:both"] {
  flex: 1 1 100%;
  width: 100%;
}

@supports not (selector(:has(*))) {
  .wrapper {
    display: block !important;
  }
  
  article.col-2-3 {
    float: left;
    width: calc(66.666% - 12px);
    margin-right: 24px;
  }
  
  aside.col-1-3 {
    float: right;
    width: calc(33.333% - 12px);
  }
  
  .wrapper::after {
    content: "";
    display: table;
    clear: both;
  }
}

/* ============================================
   Content Column Frame Layout System
   ============================================ */

.contentColFrame {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.contentColFrame.sectionContainer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px; 
  max-width: 1280px;                            
  width: 100%;                                 
  column-gap: 10px;
  align-items: start;
  margin: 0 auto;
  box-sizing: border-box;                      
}

.contentBlkWidth1 {
  width: 100%;
  min-width: 0;
  grid-column: 1;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.contentBlkWidth3 {
  width: 420px;       
  min-width: 420px;  
  grid-column: 2;
  position: static;
  max-height: none;
  overflow: visible;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.pp-sidebar-area .contentBlkWidth3 {
  position: sticky;
  top: 20px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}

.pp-sidebar-area .contentBlkWidth3::-webkit-scrollbar {
  width: 6px;
}

.pp-sidebar-area .contentBlkWidth3::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.pp-sidebar-area .contentBlkWidth3::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.pp-sidebar-area .contentBlkWidth3::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* ============================================
   Content Box Base Styles
   ============================================ */

.big-box {
  background: #fff;
  padding: 20px 20px 0 20px;
  border-radius: 8px;
  margin-bottom: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.big-box.w-feature-img {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.big-box h2,
.big-box h3,
.big-box h4 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.3;
  color: #1a202c;
}

.big-box h2:first-child,
.big-box h3:first-child,
.big-box h4:first-child {
  margin-top: 0;
}

.big-box h2 { font-size: 1.75rem; }
.big-box h3 { font-size: 1.5rem; }
.big-box h4 { font-size: 1.25rem; }

.big-box p {
  margin-bottom: 1em;
  line-height: 1.7;
  color: #4a5568;
}

.big-box p strong {
  color: #246;
  line-height: 1.3em;
  margin: .1em 0 .4em 0;
  font-family: "Open Sans", sans-serif, Helvetica, Arial;
}

.big-box ul,
.big-box ol {
  margin: 1em 0;
  padding: 0 0 0 40px;
}

.big-box li {
  /* margin-bottom: 0.5em; */
  line-height: 1.6;
}

.big-box a {
  color: #28c;
  text-decoration: none;
  transition: color 0.2s;
}

.big-box a:hover {
  color: #1a5c8a;
  text-decoration: underline;
}

.big-box a.btn-theme-0,
.big-box a.btn-theme-1,
.big-box a.btn-theme-2,
.big-box a.btn-theme-3,
.big-box a.btn-theme-4,
.big-box a.btn-theme-5,
.big-box a.btn-theme-6,
.big-box a.btn-theme-7,
.big-box a.btn-theme-8,
.big-box a[class*='btn-'],
a.btn-theme-0,
a.btn-theme-1,
a.btn-theme-2,
a.btn-theme-3,
a.btn-theme-4,
a.btn-theme-5,
a.btn-theme-6,
a.btn-theme-7,
a.btn-theme-8 {
  color: #fff !important;
  text-decoration: none !important;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  border-radius: 30px;
  padding: 0 30px 0 20px;
  font-size: 20px;
  font-weight: bold;
  background-image: url('/wp-content/themes/pacificprime/assets/b/arrow_d.png');
  background-position: 95% center;
  background-repeat: no-repeat;
  transition: opacity 0.3s, background-color 0.3s;
}

.big-box a.btn-theme-0:hover,
.big-box a.btn-theme-1:hover,
.big-box a.btn-theme-2:hover,
.big-box a.btn-theme-3:hover,
.big-box a.btn-theme-4:hover,
.big-box a.btn-theme-5:hover,
.big-box a.btn-theme-6:hover,
.big-box a.btn-theme-7:hover,
.big-box a.btn-theme-8:hover,
a.btn-theme-0:hover,
a.btn-theme-1:hover,
a.btn-theme-2:hover,
a.btn-theme-3:hover,
a.btn-theme-4:hover,
a.btn-theme-5:hover,
a.btn-theme-6:hover,
a.btn-theme-7:hover,
a.btn-theme-8:hover {
  opacity: 0.9;
  text-decoration: none !important;
}

.big-box a.btn-theme-0, a.btn-theme-0, .btn-theme-0 { background-color: #28c; }
.big-box a.btn-theme-1, a.btn-theme-1, .btn-theme-1 { background-color: #06b; }
.big-box a.btn-theme-2, a.btn-theme-2, .btn-theme-2 { background-color: #d19; }
.big-box a.btn-theme-3, a.btn-theme-3, .btn-theme-3 { background-color: #360; }
.big-box a.btn-theme-4, a.btn-theme-4, .btn-theme-4 { background-color: #d50; }
.big-box a.btn-theme-5, a.btn-theme-5, .btn-theme-5 { background-color: #507; }
.big-box a.btn-theme-6, a.btn-theme-6, .btn-theme-6 { background-color: #860; }
.big-box a.btn-theme-7, a.btn-theme-7, .btn-theme-7 { background-color: #029; }
.big-box a.btn-theme-8, a.btn-theme-8, .btn-theme-8 { background-color: #f90; }

.btn-theme-8[style*="background: #fff"] {
  background-color: #fff !important;
  color: #28c !important;
}

.btn-theme-8 a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: 40px;
}

.btn-theme-8 a:hover {
  color: inherit;
  text-decoration: none;
}

.btn-theme-8 strong {
  font-weight: bold;
  color: inherit;
}

.big-box hr {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 2em 0;
}

/* ============================================
   Main Content Area Text Styles
   ============================================ */

.contentBlkWidth1 h2,
.contentBlkWidth1 h3,
.contentBlkWidth1 h4 {
  line-height: 1.3em;
  color: #246;
  margin: .1em 0 .4em 0;
  font-family: "Open Sans", sans-serif, Helvetica, Arial;
  font-weight: 700;
}

.contentBlkWidth1 h2:first-child,
.contentBlkWidth1 h3:first-child,
.contentBlkWidth1 h4:first-child {
  margin-top: 0;
}

.contentBlkWidth1 h2 { 
  font-size: 28px;
}

.contentBlkWidth1 h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.contentBlkWidth1 h3 { 
  font-size: 1.5rem; 
}

.contentBlkWidth1 h4 { 
  font-size: 1.25rem; 
}

.contentBlkWidth1 p {
  margin: 5px 0 15px 0;
  line-height: 1.6em;
}

.contentBlkWidth1 ul,
.contentBlkWidth1 ol {
  margin: 1em 0;
  padding-left: 2em;
  line-height: 1.7;
}

.contentBlkWidth1.blog-home ul,
.contentBlkWidth1.blog-home ol {
  padding-left: 0;
}

.contentBlkWidth1 li {
  /* margin-bottom: 0.5em; Bullet points should be closer together */
  color: #4a5568;
}

.contentBlkWidth1.blog-home li {
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #e4e4e4;
}

.contentBlkWidth1 a {
  color: #28c;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 400;
}

.contentBlkWidth1 a:hover {
  color: #1a5c8a;
  text-decoration: underline;
}

.contentBlkWidth1 strong {
  font-weight: 700;
  color: #1a202c;
}

.contentBlkWidth1.blog-post p,
.contentBlkWidth1.blog-post ul,
.contentBlkWidth1.blog-post ol,
.contentBlkWidth1.blog-post li {
  font-size: 18px;
  line-height: 1.7;
}

.contentBlkWidth1.blog-post li {
  margin-right: 3rem;
}

.contentBlkWidth1.blog-post p {
  margin: 5px 0 15px 0;
  font-weight: 100;
}

.contentBlkWidth1.blog-post h2 {
  font-size: 32px;
}

.contentBlkWidth1.blog-post h3 {
  font-size: 24px;
}

.contentBlkWidth1.blog-post h4 {
  font-size: 20px;
}

.contentBlkWidth1.blog-post table {
  font-size: 18px;
}

.contentBlkWidth1.blog-post .featureImgContainer {
  position: relative;
}

.contentBlkWidth1.blog-post .featureImgContainer figure {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  overflow: hidden;
  margin-bottom: 0;
}

.contentBlkWidth1.blog-post .featureImgContainer .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
  color: #e4e4e4;
  padding: 65px 30px 15px 20px;
  font-weight: bold;
}

.contentBlkWidth1.blog-post .featureImgContainer .overlay {
  display: flex;
  justify-content: space-between;
}

.contentBlkWidth1.blog-post .featureImgContainer .overlay div>div {
  display: inline-block;
}

.contentBlkWidth1.blog-post .featureImgContainer .overlay div>.taxonomy-category.wp-block-post-terms {
  margin-right: 25px;
}

.contentBlkWidth1.blog-post .featureImgContainer .overlay div a,
.contentBlkWidth1.blog-post .featureImgContainer .overlay a.right {
  color: #e4e4e4;
  font-weight: bold;
  border-bottom: 1px transparent solid;
}

.contentBlkWidth1.blog-post .featureImgContainer .overlay div a:hover,
.contentBlkWidth1.blog-post .featureImgContainer .overlay a.right:hover {
  color: #e4e4e4;
  text-decoration: none;
  border-bottom: dotted 1px #e4e4e4;
}

.contentBlkWidth1.blog-post .featureImgContainer .overlay a.right .counts {
  display: inline-block;
}

.contentBlkWidth1.blog-post table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
}

.contentBlkWidth1.blog-post table th {
  background-color: #28c;
  font-weight: bold;
  color: #fff;
}

.contentBlkWidth1.blog-post table th strong,
.contentBlkWidth1.blog-post table tr:first-of-type td strong,
.contentBlkWidth1.blog-post table th b,
.contentBlkWidth1.blog-post table tr:first-of-type td b {
  color: #fff !important;
}

.contentBlkWidth1.blog-post table tr:first-child {
  background-color: #28c;
  font-weight: bold;
  color: #fff;
}

.contentBlkWidth1.blog-post table tr:nth-child(even) {
  background-color: #f2f2f2;
}

.contentBlkWidth1.blog-post table td,
.contentBlkWidth1.blog-post table th {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
}

.blog-post .comments-section {
  padding-bottom: 4rem;
}

.blog-post .comments-label {
  padding: 0;
}

.blog-post .comments-label h6 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  margin: 0 0 0.5rem;
}

.blog-post .comments-label hr {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 0 0 1.5rem;
}

.blog-post .comments-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 2rem 0;
}

.blog-post .styled-comments .wp-block-comments-title {
  font-size: 2rem;
  font-weight: 100;
  color: #666600;
  margin-bottom: 1.5rem;
}

.blog-post .comment-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.75rem;
}

.blog-post .comment-author a,
.blog-post .comment-author {
  font-weight: 700;
  font-size: 1rem;
  color: #1a1a1a;
  text-decoration: none;
}

.blog-post .comment-date,
.blog-post .comment-date a {
  font-size: 0.85rem;
  font-weight: 600;
  color: #40454a;
  text-decoration: none;
}

.blog-post .comment-edit-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #40454a;
  margin: 0;
}

.blog-post .comment-edit-link::before {
  content: ' / ';
}

.blog-post .comment-edit-link a {
  color: #5588b5;
  text-decoration: none;
}

.blog-post .comment-edit-link a:hover {
  text-decoration: underline;
}

.blog-post .comment-body p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.65;
  margin: 0;
}

.blog-post .comment-form-title {
  font-size: 1.75rem;
  font-weight: 400;
  color: #2c2c2c;
  margin-bottom: 1.25rem;
}

.blog-post .comment-form-section label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  display: block;
  margin-bottom: 0.4rem;
}

.blog-post .comment-form-section textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  color: #aaa;
  background: #fff;
  box-sizing: border-box;
  min-height: 140px;
  resize: vertical;
}

.blog-post .comment-form-section input[type="submit"] {
  background: #2d6a9f;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1rem;
}

.blog-post .comment-form-section input[type="submit"]:hover {
  background: #245a8a;
}

.blog-post .comment-form-section #reply-title,
.blog-post .comment-form-section .comment-form-author,
.blog-post .comment-form-section .comment-form-email,
.blog-post .comment-form-section .comment-form-url {
  display: none;
}

.blog-post .comment-card {
  background: #f7f8fa;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  margin-left: 12px;
}

.blog-post .comment-card::before {
  content: '';
  position: absolute;
  top: 25%;
  left: -11px;
  transform: translateY(-50%);
  border-width: 10px 11px 10px 0;
  border-style: solid;
  border-color: transparent #ebebeb transparent transparent;
}

.blog-post .comment-card::after {
  content: '';
  position: absolute;
  top: 25%;
  left: -9px;
  transform: translateY(-50%);
  border-width: 9px 10px 9px 0;
  border-style: solid;
  border-color: transparent #f7f8fa transparent transparent;
}

.blog-post #comment-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9900010;
  align-items: center;
  justify-content: center;
}

.blog-post #comment-popup {
  position: fixed;
  top: 30%;
  left: 50%;
  margin: 0 -200px;
  width: 400px;
  overflow: hidden;
  z-index: 9900011;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  background: linear-gradient(180deg, #fce4a6, white 20%);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-post #comment-popup .cp-header {
  width: 100%;
  padding: 30px 40px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.blog-post #comment-popup .cp-header h3 {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  color: #2491ca;
  line-height: 30px;
  margin-bottom: 10px;
}

.blog-post #comment-popup .cp-header h3 span {
  display: block;
}

.blog-post #cp-close {
  position: absolute;
  top: 18px;
  right: 18px;
  color: #ccc;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  line-height: 1;
}

.blog-post #comment-popup .cp-body {
  padding: 10px 80px 40px;
}

.blog-post .cp-field {
  margin-bottom: 10px;
}

.blog-post .cp-field label {
  font-size: 13px;
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 600;
  width: 100%;
}

.blog-post .cp-field input {
  width: 100%;
  display: block;
  background-color: #f8f9fa;
  font-family: 'Open Sans', sans-serif;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 6px 10px;
  font-size: 13px;
  box-sizing: border-box;
  line-height: 1.7;
}

.blog-post .cp-field input:focus {
  outline: none;
  border-color: #2491ca;
}

.blog-post .cp-error {
  display: block;
  color: #e53e3e;
  font-size: 12px;
  min-height: 5px;
}

.blog-post #cp-submit {
  width: 100%;
  display: block;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  font-family: 'Lato', sans-serif;
  padding: 8px 16px;
  margin: 15px auto 0;
  color: white;
  border-color: #4a669e;
  background: #4a669e;
  cursor: pointer;
  box-sizing: border-box;
  line-height: 1.7;
}

.blog-post #cp-submit:hover {
  background: #3a5a8a;
}

.blog-post #cp-cancel {
  display: none;
}

/* ============================================
   Generic Sidebar Styles
   ============================================ */

.pp-sidebar-area .widget,
.pp-sidebar-area .pp-box,
.pp-sidebar-area .pp-block-placeholder,
.contentBlkWidth3 > div:not([style*="height:"]),
.contentBlkWidth3 > .widget,
.contentBlkWidth3 > section,
.contentBlkWidth3 [class*='sidebar'],
.contentBlkWidth3 [class*='SideBar'] {
  background: transparent;
  border-radius: 8px;
  /* margin-bottom: 40px; */
}

aside.col-1-3 > div[style*="height:"],
.contentBlkWidth3 > div[style*="height:"] {
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.pp-sidebar-area .widget-title,
.pp-sidebar-area .pp-box h3,
.contentBlkWidth3 h2,
.contentBlkWidth3 h3,
.contentBlkWidth3 h4,
.contentBlkWidth3 .widget-title {
  margin: 0 0 12px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a202c;
  line-height: 1.3;
}

.pp-sidebar-area ul,
.contentBlkWidth3 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pp-sidebar-area li,
.contentBlkWidth3 li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9375rem;
}

.pp-sidebar-area li:last-child,
.contentBlkWidth3 li:last-child {
  border-bottom: none;
}

.pp-sidebar-area a,
.contentBlkWidth3 a {
  text-decoration: none;
  transition: color 0.2s;
}

.pp-sidebar-area a:hover,
.contentBlkWidth3 a:hover {
  color: #1a5c8a;
  text-decoration: underline;
}

.ppPDPBookMeeting .container{
  max-width: 480px;
}

.ppPDPBookMeeting div.pp-popup-container > div > div > div > div > div {
  padding: 20px;
  background-color: transparent;
  position: relative;
}

.ppPDPBookMeeting div.pp-popup-container > div > div > div > div > div > div.titleGroup > div {
    font-size: 32px;
    font-weight: 400;
    max-width: 320px;
    line-height: 34px;
    color: #28c;
}

.ppPDPBookMeeting div.floatLayer div.container div.contentGroup div.descUpper {
    padding-left: 25px;
    background-image: url(/wp-content/themes/pacificprime/assets/pp2020/images/common/yes1.png);
    background-repeat: no-repeat;
    background-position: left 12%;
    color: #28c;
    font-size: 15px;
    font-weight: 700;
}

/* ============================================
   Generic Hero Area Styles
   ============================================ */

.pp-hero p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

.pp-hero .wp-block-post-excerpt {
  margin-bottom: 20px;
}

.pp-hero .wp-block-post-excerpt p {
  color: rgba(255, 255, 255, 0.95);
}

.pp-hero .banner-image {
  border-radius: 8px;
  overflow: hidden;
  margin: 24px 0 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.pp-hero .banner-image img {
  width: 100%;
  height: auto;
  display: block;
}

.pp-hero .mv-layer-box,
.pp-hero .mv-layer-form {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

/* ============================================
   Top Action Bar
   ============================================ */

.pp-top-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.pp-org-nav {
  flex: 1;
  min-width: 0;
}

.pp-top-right-btn {
  flex-shrink: 0;
}

/* ============================================
   Extra Content Areas
   ============================================ */

.pp-extra-chunk-2,
.pp-extra-chunk-3,
.pp-group-box {
  margin-bottom: 24px;
}

.pp-extra-chunk-3 {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 2px solid #e2e8f0;
}

/* ============================================
   Testimonials Styles
   ============================================ */

.pp-testimonials {
  margin: 32px 0;
  padding: 32px;
  background: #f8f9fa;
  border-radius: 12px;
}

.pp-testimonials h2 {
  margin: 0 0 24px;
  text-align: center;
  font-size: 2rem;
  color: #1a202c;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-item {
  background: white;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.testimonial-item blockquote {
  margin: 0;
  padding: 0;
}

.testimonial-item p {
  font-style: italic;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 16px;
}

.testimonial-item footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-item cite {
  font-style: normal;
  font-weight: 600;
  color: #1a202c;
}

.testimonial-item .position {
  font-size: 0.875rem;
  color: #718096;
}

/* ============================================
   Text Block Component Styles
   ============================================ */

[class*='ppBlkText'] {
    background: #fff;
    /* width: 100%; */
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    margin-block-start: 0px;
}

/* ============================================
   Special Component Containers
   ============================================ */

[class*='component:'] {
  margin: 24px 0;
}

.greyBox,
[class*='GreyBox'] {
  margin: 0;
}

.greyBox h3,
.greyBox h4,
[class*='GreyBox'] h3,
[class*='GreyBox'] h4 {
  margin-top: 0;
  color: #1a202c;
}

/* ============================================
   Banner Area Styles
   ============================================ */

.ppBlkBanner1 .titleGroup,
.ppBlkBanner1 .contentGroup,
.ppBlkSubPageBannerWithContentBox .titleGroup,
.ppBlkSubPageBannerWithContentBox .contentGroup {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.ppBlkBanner1 .contentGroup img.icon,
.ppBlkSubPageBannerWithContentBox .contentGroup img.icon {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.ppBlkBanner1 .contentGroup > *,
.ppBlkSubPageBannerWithContentBox .contentGroup > * {
  margin-left: 0;
  margin-right: 0;
}

.ppBlkBanner1 .sectionContainer,
.ppBlkSubPageBannerWithContentBox .sectionContainer {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.ppBlkSubPageBannerWithContentBox > div:first-child {
  max-width: none;
  padding: 0;
  width: 1280px;
  margin: 0 auto;
}

.ppBlkBanner1 .titleGroup .title,
.ppBlkSubPageBannerWithContentBox .titleGroup .title {
  margin: 0 0 12px;
  font-size: 2.5rem;
  line-height: 1.3em;
  color: white;
  font-weight: 700;
}

.ppBlkBanner1 .titleGroup .subTitle,
.ppBlkSubPageBannerWithContentBox .titleGroup .subTitle {
  margin: .1em 0 .4em 0;
  font-size: 1.25rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
}

.ppBlkBanner1 button,
.ppBlkSubPageBannerWithContentBox button {
  height: 40px;
  font-size: 20px;
  padding: 0 20px;
}

/* ============================================
   MV Box Styles
   ============================================ */

.mv-box,
.mv-box2 {
  background: #28c;
  padding: 20px 30px;
  color: white;
  box-sizing: border-box;
  position: relative;
}

.mv-box h1,
.mv-box2 h1 {
  margin: 0px;
  color: white;
  font-weight: 400;
  font-size: 48px;
}

.mv-box p,
.mv-box2 p {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  overflow: hidden;
}

/* ============================================
   MV Layer Box Styles
   ============================================ */

.mv-layer-box {
  position: absolute;
  bottom: 25px;
  right: 10px;
  width: 360px;
  height: 180px;
  background-image: url('../b/banner_box_bg.png');
  background-size: cover;
  background-position: center;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.mv-layer-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.mv-layer-box-wapper {
  padding: 20px 30px 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mv-layer-box-point {
  line-height: 100%;
}

section.ppBlkBanner1.ppBlkSubPageBannerWithContentBox div.container div.contentGroup div.blkItem div.itemContainer div.itemDesc .mv-layer-box-point:before {
    background-image: url(/wp-content/themes/pacificprime/assets/pp2020/images/common/arrow_d.png);
}

 div.wrapper div.mv-layer-box div.mv-layer-box-point {
    background-image: url('../b/arrow_d.png');
    background-repeat: no-repeat;
    background-position: 0 4px;
    font-weight: 300;
    font-size: 16px;
    color: #fff;
    padding-left: 22px;
    padding-bottom: 10px;
    line-height: 1.4;
 }

.mv-layer-box .btn-20-ar-white {
  margin-top: auto;
  margin-bottom: 25px;
}

.bannerForm .floatLayer {
  max-width: 100%;
  overflow: hidden;
}

/* ============================================
   Form Styles
   ============================================ */

.ppBlkSubPageBannerWithContentBox form,
[class*='ppBlkBanner'] form {
  margin-top: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.ppBlkSubPageBannerWithContentBox input,
.ppBlkSubPageBannerWithContentBox select,
.ppBlkSubPageBannerWithContentBox textarea,
[class*='ppBlkBanner'] input,
[class*='ppBlkBanner'] select,
[class*='ppBlkBanner'] textarea {
  width: 100%;
  padding: 10px 15px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.ppBlkSubPageBannerWithContentBox input:focus,
.ppBlkSubPageBannerWithContentBox select:focus,
.ppBlkSubPageBannerWithContentBox textarea:focus,
[class*='ppBlkBanner'] input:focus,
[class*='ppBlkBanner'] select:focus,
[class*='ppBlkBanner'] textarea:focus {
  outline: none;
  border-color: #28c;
  background: #fff;
}

/* ============================================
   Unified Button Styles
   ============================================ */

button {
  display: inline-block;
  margin: 0;
  font-family: "Open Sans", sans-serif, Helvetica, Arial;
  font-size: 100%;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: background 125ms ease-in-out, transform 75ms ease;
  vertical-align: middle;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

button span {
  vertical-align: middle;
}

button img {
  vertical-align: middle;
}

.butImgLeft {
  margin-right: 10px;
  vertical-align: middle;
}

.butImgRight {
  margin-left: 10px;
  vertical-align: middle;
}

.butRound {
  border: none;
  border-radius: 30px;
}

.butSquare {
  border: 1px solid #FFF;
}

.butRoundBorder {
  border: 1px solid #FFF;
  border-radius: 30px;
}

.butSquareBorder {
  border: 1px solid #FFF;
}

.butXLarge {
  height: 60px;
  font-size: 34px;
  padding: 0 30px;
  font-weight: 600;
}

.butXLarge span,
.butXLarge img {
  margin-top: -8px;
}

.butLarge {
  height: 50px;
  font-size: 25px;
  padding: 0 25px;
}

.butNormal {
  height: 40px;
  font-size: 20px;
  padding: 0 20px;
}

.butSmall {
  height: 30px;
  font-size: 16px;
  padding: 0 15px;
}

.butXSmall {
  height: 20px;
  font-size: 12px;
  padding: 0 10px;
}

.butFreeSize {
  height: auto;
  font-size: 20px;
  padding: 0;
}

.butWhite {
  background-color: #FFF;
  color: #666;
  border-color: #AAA;
}

.butWhite:hover {
  background-color: #CCC;
}

.butGray {
  background-color: #AAA;
  color: #FFF;
}

.butGray:hover {
  background-color: #CCC;
}

.butBlack {
  background-color: #000;
  color: #FFF;
}

.butBlack:hover {
  background-color: #666;
}

.butSkyBlue {
  background-color: #39F;
  color: #FFF;
}

.butSkyBlue:hover {
  background-color: #6CF;
}

.butBlue {
  background-color: #06F;
  color: #FFF;
}

.butBlue:hover {
  background-color: #09F;
}

.butDeepBlue {
  background-color: #009;
  color: #FFF;
}

.butDeepBlue:hover {
  background-color: #03C;
}

.butRed {
  background-color: #C00;
  color: #FFF;
}

.butRed:hover {
  background-color: #F00;
}

.butOrange {
  background: #F90;
  color: white;
}

.butOrange:hover,
.butOrange.butRoundBorder:hover {
  background: #FC0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.4);
}

.butBrown {
  background-color: #930;
  color: #FFF;
}

.butBrown:hover {
  background-color: #c60;
}

.butYellow {
  background-color: #FC0;
  color: #FFF;
}

.butYellow:hover {
  background-color: #FF0;
}

.butLightGreen {
  background-color: #0C0;
  color: #FFF;
}

.butLightGreen:hover {
  background-color: #0F0;
}

.butGreen {
  background-color: #060;
  color: #FFF;
}

.butGreen:hover {
  background-color: #090;
}

.butPink {
  background-color: #F69;
  color: #FFF;
}

.butPink:hover {
  background-color: #F99;
}

.butViolet {
  background-color: #90F;
  color: #FFF;
}

.butViolet:hover {
  background-color: #93F;
}

.butPurple {
  background-color: #C39;
  color: #FFF;
}

.butPurple:hover {
  background-color: #F39;
}

.butNoColor {
  background-color: transparent;
  color: #06b;
  border: 0;
  padding: 0;
}

.hpgetaquoteonline {
  background: #ff9800;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hpgetaquoteonline:hover {
  background: #f57c00;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transform: translateY(-1px);
}

/* ============================================
   Background Colors
   ============================================ */

.bg-f { background-color: #fff; }
.bg-0 { background-color: #28c; }
.bg-1 { background-color: #06b; }
.bg-2 { background-color: #d19; }
.bg-3 { background-color: #360; }
.bg-4 { background-color: #d50; }
.bg-5 { background-color: #507; }
.bg-6 { background-color: #860; }
.bg-7 { background-color: #029; }
.bg-8 { background-color: #f90; }
.bg-11 { background-color: #4ad; }

/* ============================================
   Miscellaneous Utilities
   ============================================ */

.cover-image > img {
  width: 100%;
  height: auto;
}

.pp-header > p {
  display: contents; 
}

article.content,
article.contentFrame {
  width: 100%;
  max-width: 100%;
  line-height: 1.6;
  color: #4a5568;
}

.text1 p {
  font-size: 16px;
  color: #292929;
  font-weight: 500;
  margin: 0 0 20px;
  text-align: justify;
}

.sectionContainer {
  position: relative;
}

article.col-2-3 img,
aside.col-1-3 img,
.contentBlkWidth1 img,
.contentBlkWidth3 img {
  max-width: 100%;
  height: auto;
}

.clearfix::after,
.contentColFrame::after,
.contentBlkWidth1::after,
#orgNav + #orgRight::after,
#fixNav + #fixRight::after {
  content: "";
  display: table;
  clear: both;
}

div[style*="clear:both"]::after {
  content: "";
  display: table;
  clear: both;
}

div[style*="clear:both"] {
  clear: both;
  display: block;
  width: 100%;
}

/* ============================================
   Consent Button Styles
   ============================================ */

[class*='ppConsentBut']{
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ============================================
   Accordion List Styles
   ============================================ */

.accordion-list-div {
  background-color: #e5e5e5;
  margin-bottom: 30px;
}

.accordion-list-div ul {
  padding: 0;
}

.accordion-list-title {
  background-color: #2288cc;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  padding: 10px;
}

.accordion-list-desc {
  padding: 0 10px 10px;
}

.accordion-list-lv1 {
  background-color: #f8f8f8;
  font-size: 16px;
  list-style: none;
  padding: 10px;
  display: none;
}

.accordion-list-lv1-title {
  cursor: pointer;
}

.accordion-list-lv2 {
  font-size: 14px;
  list-style: none;
  margin-left: 15px;
  display: none;
}

/* ============================================
   03-Content Template Specific Styles
   ============================================ */

.content-box1 {
  margin-bottom: 10px;
  background-color: #fff;
  position: relative;
}

.content-box1 h2 {
  margin: 0px;
  padding: 10px 20px 0;
  line-height: 30px;
  font-size: 22px;
  color: #246;
  font-weight: 600;
}

.content-box1 img {
  float: right;
  /* width: 160px; */
  height: auto;
}

.content-box-text {
  padding: 20px 20px 10px;
  font-size: 13px;
  color: #555;
}

.content-box-text p {
  padding-top: 0px;
  margin-top: 0px;
}

.content-box-text p:has(> a.btn-theme-0),
.content-box-text p:has(> a[class^="btn-"]) {
  clear: both;
  display: block;
}

.content-box-btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.content-box2 {
  background-color: #fff;
  margin-bottom: 10px;
}

.content-box2-main {
  padding: 15px 20px 40px;
  color: #246;
}

.content-box2-main h2 {
  margin: 0 0 20px 0;
  padding: 0px;
  font-size: 18px;
  font-weight: 600;
}

.content-box2-main p {
  margin-top: 0px;
}

.contentColFrame.posts {
  padding-top: 2em;
}

.contentColFrame.posts .wp-block-query > div > ul {
  padding-left: 0;
}

.post-box1 {
  margin-bottom: 20px;
  background-color: #fff;
}

.post-box1 .img-area {
  position: relative;
  min-height: 200px;
}

.post-box1 .img-area .meta {
  cursor: pointer;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
  color: #e4e4e4;
  padding: 65px 30px 15px 20px;
  font-weight: bold;
}

.post-box1 .img-area .meta .wp-block-post-author-name,
.post-box1 .img-area .meta .taxonomy-category,
.post-box1 .img-area .meta .wp-block-post-date {
  display: inline-block;
}

.post-box1 .img-area .meta .wp-block-post-author-name a,
.post-box1 .img-area .meta .taxonomy-category a,
.post-box1 .img-area .meta .wp-block-post-date a {
  font-weight: bold;
  color: #e4e4e4;
}

.post-box1 .img-area .meta .wp-block-post-author-name a:hover,
.post-box1 .img-area .meta .taxonomy-category a:hover,
.post-box1 .img-area .meta .wp-block-post-date a:hover {
  border-bottom: dotted 1px #e4e4e4;
  text-decoration: none;
}

.post-box1 .img-area .meta .taxonomy-category {
  margin-right: 25px;
}

.post-box1 .content {
  padding: 20px 25px;
}

.post-box1 .readmore {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding-top: 20px;
  border-top: solid #e4e4e4 1px;
  cursor: pointer;
  color: #28c;
}

.post-box1 .readmore a {
  font-weight: bold;
}

.post-box1 .readmore a:hover {
  text-decoration: none;
}

.contentColFrame.posts > .query-title {
  font-size: 2em;
  padding-bottom: 1em;
}

.contentColFrame.posts > .query-title .wp-block-query-title {
  display: inline;
}

.contentColFrame.posts > .query-title b {
  color: inherit;
}

.contentColFrame.posts .post-pagination {
  display: flex;
  justify-content: center;
}

.contentColFrame.posts .post-pagination > * {
  display: flex;
  justify-content: center;
}

.contentColFrame.posts .post-pagination > .page-numbers,
.contentColFrame.posts .post-pagination > .pagination__page-numbers > .page-numbers {
    color: #28c;
  font-size: 13px;
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 10px 16px;
  font-family: "Lato", sans-serif;
  border-right: none;
}

.contentColFrame.posts .post-pagination .page-numbers:hover {
  text-decoration: none;
  background-color: #f8f9fa;
}

.contentColFrame.posts .post-pagination > .page-numbers {
  border: 1px solid #ddd;
  margin: 0 10px;
}

.contentColFrame.posts .post-pagination > * > .page-numbers:last-child {
  border: 1px solid #ddd;
}

.abh_tab_content .abh_image img {
  aspect-ratio: 1;
}

.col-2-3 {
  width: 650px;
  float: left;
}

.col-1-3 {
  width: 400px;
  float: left;
}

.col-first,
.space-mr-10 {
  margin-right: 10px;
}

/* ============================================
   404 Error Page Styles
   ============================================ */

.error-oops {
  font-weight: 300;
  font-size: 120px;
  height: 190px;
  width: 100%;
  text-align: center;
  display: inline-block;
  line-height: 190px;
  color: #fff;
}

.error-message {
  width: 100%;
  height: 100px;
  text-align: center;
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 20px;
}

.error-divider {
  width: 100%;
  height: 100px;
  text-align: center;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
}

/* ============================================
   Traditional Testimonials Box Styles
   ============================================ */

.testimonials-wrapper {
  padding: 20px 40px;
}

.testimonials-box {
  margin-bottom: 10px;
  background-color: #fff;
}

.testimonials-box h2 {
  margin: 0px;
  padding: 10px 20px 0;
  line-height: 30px;
  font-size: 22px;
  color: #246;
  font-weight: 600;
}

.testimonials-row {
  font-size: 16px;
  line-height: 24px;
  padding: 30px 40px;
  margin-bottom: 40px;
  width: 70%;
  position: relative;
}

.testimonials-row p {
  margin-top: 0px;
}

.testimonials-row-gray {
  background: none repeat scroll 0 0 #eee;
  color: #555;
}

.testimonials-row-blue {
  background: none repeat scroll 0 0 #28c;
  color: #fff;
}

.testimonial-row-quote {
  color: #999;
  font-size: 40px;
  position: absolute;
}

.testimonials-row-blue .testimonial-row-quote {
  color: #fff;
}

.testimonial-row-quote-start {
  top: 20px;
  left: 20px;
}

.testimonial-row-quote-end {
  bottom: 20px;
  right: 20px;
}

.testimonials-left {
  float: left;
}

.testimonials-right {
  float: right;
}

.testimonials-ar {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  height: 0;
  margin: 0 auto;
  width: 0;
  position: absolute;
  bottom: -15px;
  left: 50%;
}

.testimonials-row-gray .testimonials-ar {
  border-top: 15px solid #eee;
}

.testimonials-row-blue .testimonials-ar {
  border-top: 15px solid #28c;
}

.outer-wrapper .testimonials-row {
  width: 41%;
}

.testimonial-row-name {
  position: absolute;
  bottom: 20px;
  right: 50px;
  font-size: 18px;
}

/* ============================================
   Extra Contact Group - Office Locations
   ============================================ */

.pp-extra-contact-group {
  padding: 0;
  clear: both;
  background-color: #f6f6f6;
}

.pp-extra-contact-group .extra-content-box-heading {
  font-size: 28px;
  color: #246;
  font-weight: 400;
  margin-bottom: 10px;
  height: 30px;
  line-height: 30px;
  text-align: left;
}

.office-cards-wrapper {
  display: block;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.pp-extra-contact-group .address-box {
  width: 320px;
  float: left;
  margin-bottom: 10px;
  padding: 0;
  box-sizing: content-box;
}

.pp-extra-contact-group .address-box {
  margin-right: 10px;
}

.pp-extra-contact-group .address-box-main {
  padding: 20px;
  color: #fff;
  cursor: pointer;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  height: 229px;
  transition: none;
}

.pp-extra-contact-group .address-box-main:hover {
  transform: none;
  box-shadow: none;
}

.pp-extra-contact-group .address-box-title {
  font-size: 34px;
  font-weight: 300;
  line-height: 30px;
  height: 40px;
  margin-bottom: 10px;
  color: #fff;
  background-image: url('../b/arrow_d.png');
  background-repeat: no-repeat;
  background-position: right center;
}

.pp-extra-contact-group .address-box-img {
  float: left;
  width: 120px;
  height: auto;
  border-radius: 0;
  margin-bottom: 0;
}

.pp-extra-contact-group .address-box-text {
  font-size: 11px;
  margin-left: 130px;
  color: #fff;
  line-height: normal;
}

.pp-extra-contact-group .address-box-text p {
  margin: 0 0 10px 0;
  color: #fff;
}

.pp-extra-contact-group .bg-0 .address-box-main {
  background-color: #28c;
}

.pp-extra-contact-group .bg-1 .address-box-main {
  background-color: #06b;
}

/* ============================================
   Popup Modal Styles
   ============================================ */

.dim-layer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.7;
  filter: alpha(opacity=70);
  z-index: 9998;
}

.pp-extra-contact-group ~ .dim-layer ~ .address-box-pop,
.pp-extra-contact-group ~ .address-box-pop,
.address-box-pop {
  position: fixed !important;
  display: none;
  outline: 0 none;
  top: 5% !important;
  left: 25% !important;
  z-index: 9999 !important;
  background-color: #06b;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  width: auto;
  max-width: none;
  max-height: none;
  overflow: visible;
  transform: none;
}

.address-box-pop.col-2-3 {
  width: 650px;
}

.address-box-pop .btn-close-layer {
  float: right;
  margin: 40px 30px 0 0;
  font-size: 16px;
  color: #fff !important;
  cursor: pointer;
  position: static;
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  padding: 0;
  display: block;
  line-height: normal;
}

.address-box-pop .btn-close-layer:hover {
  background: transparent;
  color: #fff !important;
}

.address-box-pop .btn-close-layer::before {
  content: 'Close ';
  display: inline;
}

.address-box-pop .btn-close-layer::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url('../b/close.png');
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-left: 5px;
}

.address-box-pop .btn-close-layer {
  font-size: 0;
}

.address-box-pop .btn-close-layer::before {
  font-size: 16px;
}

.address-box-pop-title {
  padding: 20px 30px 10px;
  font-size: 34px;
  line-height: 40px;
  font-weight: 400;
  color: #fff !important;
  margin: 0;
}

.address-box-pop-desc {
  padding: 0 30px 40px;
  font-size: 14px;
  font-weight: 400;
  color: #fff !important;
  margin: 0;
  line-height: normal;
}

.address-box-pop-img {
  min-height: 320px;
  margin: 0;
  padding: 0;
}

.address-box-pop-img iframe {
  width: 650px;
  height: 320px;
  border: none;
  border-radius: 0;
  display: block;
}

.address-box-pop-btn {
  margin: 20px auto;
  text-align: center;
  padding: 0;
}

.address-box-pop-btn.col-1-3 {
  width: 320px;
  float: none;
  margin: 20px auto;
}

.address-box-pop-btn .btn-34-ar {
  background-color: #f90 !important;
  background-image: none !important;
  color: #fff !important;
  display: inline-block;
  width: auto;
  min-width: 200px;
  height: 50px;
  line-height: 45px;
  border-radius: 30px;
  padding: 0 30px 0 20px;
  font-size: 34px;
  font-weight: bold;
  text-shadow: 1px 1px #444;
  border: 1px solid #fff;
}

.address-box-pop-btn .btn-34-ar:hover {
  background-color: #f70 !important;
  color: #fff !important;
}

.address-box-pop,
.address-box-pop * {
  color: #fff !important;
}

.address-box-pop-btn .btn-34-ar {
  color: #fff !important;
}

.office-cards-wrapper::after {
  content: "";
  display: table;
  clear: both;
}

.btn-20-ar-white {
    height: 40px;
    line-height: 40px;
    border-radius: 30px;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    background-image: url(../b/arrow_d.png);
    background-position: 95% center;
    background-repeat: no-repeat;
    width: 100%;
    display: inline-block;
    text-align: center;
    border: 1px solid #fff;
}

img.banner-image {
  width: 100%;
}

.content-box1 ul.travel-quote-logos li {
  display: block;
}

.content-box1 ul.travel-quote-logos img {
  float: none !important;
}

.cat-box-img {
    margin-right: 20px;
}

.cat-box-img {
    width: 160px;
    height: 160px;
    float: right;
    margin-left: 10px;
    margin-right: 0px !important;
    vertical-align: middle;
}

/* ============================================
   Blog Home
   ============================================ */

.blog-home .wp-block-group.BLOG_INFO {
  padding: 1em;
}

.blog-home .wp-block-group.BLOG_INFO .BLOG_CONTENT {
  position: relative;
}

.blog-home .wp-block-group.BLOG_INFO .BLOG_CONTENT .wp-block-post-excerpt__excerpt::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  height: 35px;
  background: linear-gradient(rgba(255, 255, 255, 0), rgb(255, 255, 255));
}

.blog-home .wp-block-group.BLOG_INFO .BLOG_CONTENT .wp-block-post-excerpt__excerpt {
  margin-bottom: 35px;
}

.blog-home .BLOG_INFO_H .wp-block-group.BLOG_INFO .BLOG_CONTENT .wp-block-post-excerpt__excerpt::after {
  height: 100px;
}

.blog-home .wp-block-group.BLOG_INFO .readmore {
  padding: 1em;
  margin-top: -20px;
}

.blog-home .BLOG_INFO_H li {
  position: relative;
}

.blog-home .BLOG_INFO_H li .readmore {
  position: absolute;
  bottom: 15px;
  left: 1em;
}

.blog-home .blog_cat_name .wp-block-columns {
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.blog-home .blog_cat_name .BLOG_CAT_READMORE .wp-block-button__link.wp-element-button {
  background-color: transparent;
}

.contentBlkWidth1.blog-home .BLOG_TITLE {
  font-size: 1.625rem;
}

.contentBlkWidth1.blog-home .BLOG_TITLE a {
  color: #246;
  font-weight: bold;
}

.contentBlkWidth1.blog-home .BLOG_TITLE a:hover {
  text-decoration: none;
}

.contentBlkWidth1.blog-home .Blog_CAT_TITLE {
  font-size: 2rem;
}

.contentBlkWidth1.blog-home .BLOG_CONTENT p,
.contentBlkWidth1.blog-home .wp-block-post-excerpt__excerpt {
  font-size: 1.125rem;
  line-height: 1.7em;
}

.contentBlkWidth1.blog-home .BLOG_AUTHOR,
.contentBlkWidth1.blog-home .BLOG_DTL_AUTHOR,
.contentBlkWidth1.blog-home .BLOG_DATE,
.contentBlkWidth1.blog-home .BLOG_DTL_DATE {
  font-size: 1rem;
}

.contentBlkWidth1.blog-home .readmore a {
  font-size: 0.9375rem;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media screen and (max-width: 1279px) {
  .pp-container,
  .container,
  .wrapper,
  .contentColFrame,
  .contentColFrame.sectionContainer,
  .sectionContainer,
  .page-wrapper,
  .ppBlkBanner1 .sectionContainer,
  .ppBlkSubPageBannerWithContentBox .sectionContainer,
  .ppBlkSubPageBannerWithContentBox > div:first-child {
    max-width: 100%;
    /* width: 100%; */
  }
}

@media (max-width: 990px) {
  .pp-main-sidebar-layout,
  .contentColFrame.sectionContainer {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  
  .pp-sidebar-area,
  .contentBlkWidth3 {
    position: static;
    max-height: none;
    width: 100%;      
    min-width: 0;     
  }
  
  .contentBlkWidth1,
  .contentBlkWidth3 {
    grid-column: 1;
    width: 100%;      
  }
  
  #orgNav.col-2-3,
  #orgRight.col-1-3 {
    width: 100%;
    display: block;
    margin-right: 0;
    margin-bottom: 16px;
  }
  
  article.col-2-3,
  aside.col-1-3 {
    flex: 1 1 100%;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    margin-bottom: 24px;
  }
  
  @supports not (selector(:has(*))) {
    article.col-2-3,
    aside.col-1-3 {
      float: none;
      width: 100%;
      margin-right: 0;
    }
  }
  
  .mv-layer-box {
    position: static;
    width: 100%;
    height: auto;
    min-height: 150px;
    margin-top: 20px;
  }
  
  .mv-layer-box-wapper {
    padding: 20px;
  }
  
  .mv-layer-box-point:nth-child(3) {
    display: none;
  }
  
  .pp-extra-contact-group .address-box {
    width: 48%;
    margin-right: 0;
  }
  
  .pp-extra-contact-group .address-box:nth-child(odd) {
    margin-right: 10px;
  }
  
  .pp-extra-contact-group .address-box:nth-child(3n+1),
  .pp-extra-contact-group .address-box:nth-child(3n+2) {
    margin-right: 0;
  }
}

@media (max-width: 960px) {
  .big-box {
    padding: 0px 20px 0 20px;
  }
  
  .pp-hero {
    padding: 32px 24px;
  }
  
  .pp-hero h1 {
    font-size: 3rem;
  }
  
  .pp-testimonials {
    padding: 24px;
  }
  
  .mv-box,
  .mv-box2 {
    padding: 32px 24px;
  }
  
  .mv-box h1,
  .mv-box2 h1 {
    font-size: 3rem;
  }
  
  [class*='ppBlkText'] {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .pp-extra-contact-group .address-box {
    width: 48%;
  }
  
  .pp-extra-contact-group .address-box-img,
  .pp-extra-contact-group .address-box-main {
    width: 50%;
  }
  
  .pp-extra-contact-group .address-box-title {
    font-size: 27px;
  }
}

@media (max-width: 640px) {
  .pp-main-sidebar-layout {
    margin: 16px 0;
  }
  
  .big-box,
  .pp-sidebar-area .widget,
  .pp-sidebar-area .pp-box,
  .contentBlkWidth3 > div:not([style*="height:"]),
  .contentBlkWidth3 > .widget,
  .contentBlkWidth3 > section {
    padding: 16px;
    border-radius: 6px;
  }
  
  .pp-hero {
    padding: 24px 16px;
    border-radius: 8px;
  }
  
  .pp-hero h1 {
    font-size: 2.75rem;
  }
  
  .pp-testimonials {
    padding: 20px 16px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .pp-top-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .pp-top-right-btn {
    width: 100%;
  }
  
  .mv-box,
  .mv-box2 {
    padding: 24px 16px;
  }
  
  .mv-box h1,
  .mv-box2 h1 {
    font-size: 2.75rem;
  }
  
  .mv-box p,
  .mv-box2 p {
    font-size: 1rem;
  }
  
  [class*='ppBlkText'] {
    padding: 16px;
  }
  
  .greyBox,
  [class*='GreyBox'] {
    padding: 16px;
    margin: 16px 0;
  }
  
  [class*='ppConsentBut']{
    bottom: 10px;
    right: 10px;
    left: 10px;
    padding: 10px 16px;
  }
  
  article.col-2-3,
  aside.col-1-3 {
    margin-bottom: 16px;
  }
  
  .mv-layer-box {
    display: none;
  }
  
  .col-2-3.col-first.col-fix {
    width: 100%;
    margin-top: 10px;
    position: relative;
  }
  
  .col-1-3 {
    width: 100%;
    margin-left: 0;
  }
  
  .space-mr-10 {
    margin-bottom: 10px;
    margin-right: 0px;
  }
  
  .pp-extra-contact-group .address-box-title {
    font-size: 24px;
    line-height: 35px;
    margin-bottom: 0;
  }
  
  .pp-extra-contact-group .address-box-main {
    padding-bottom: 30px;
  }
  
  .address-box-pop {
    left: 0 !important;
    right: 0 !important;
    width: 90% !important;
    margin: 0 auto;
  }
  
  .address-box-pop-img iframe {
    width: 100%;
    height: 250px;
  }
}

@media (max-width: 480px) {
  .mv-box h1,
  .mv-box2 h1 {
    font-size: 25px;
    line-height: 30px;
  }
  
  .error-oops {
    font-size: 60px;
    height: 100px;
    line-height: 100px;
  }
  
  .error-message {
    font-size: 13px;
  }
  
  .error-divider {
    font-size: 16px;
  }
  
  .btn-theme-0,
  .btn-theme-1,
  .btn-theme-2,
  .btn-theme-3,
  .btn-theme-4,
  .btn-theme-5,
  .btn-theme-6,
  .btn-theme-7,
  .btn-theme-8 {
    font-size: 16px;
    padding: 0 15px 0 10px;
    height: 32px;
    line-height: 32px;
    display: block;
    width: 90%;
    margin: 10px auto;
  }
  
  .content-box2 {
    width: 100%;
    margin-right: 0;
  }
  
  .testimonials-row p {
    font-size: 13px;
  }
  
  .pp-extra-contact-group .address-box {
    width: 100%;
    margin-right: 0;
    margin-left: 1px;
  }
  
  .pp-extra-contact-group .address-box:nth-child(odd) {
    margin-right: 0;
  }
  
  .pp-extra-contact-group .address-box-title {
    font-size: 18px;
    line-height: 35px;
  }
  
  .pp-extra-contact-group .address-box-main {
    height: auto;
  }
  
  .address-box-pop-title {
    font-size: 22px;
  }
  
  .address-box-pop .btn-close-layer {
    margin-top: 30px;
  }
  
  .address-box-pop-img {
    min-height: 145px;
  }
  
  .address-box-pop-btn .btn-34-ar {
    font-size: 22px;
    width: 60%;
  }
}

@media (max-width: 414px) {
  .pp-extra-contact-group .address-box {
    height: auto !important;
  }
  
  .pp-extra-contact-group .address-box:last-child .address-box-main {
    padding-bottom: 0;
  }
  
  .address-box-pop-btn .btn-34-ar {
    font-size: 22px;
    width: 60%;
  }
}

@media (max-width: 375px) {
  .pp-extra-contact-group .address-box-title {
    font-size: 16px;
  }
  
  .address-box-pop-title {
    font-size: 22px;
  }
  
  .address-box-pop .btn-close-layer {
    font-size: 0;
    margin-top: 30px;
  }
  
  .address-box-pop .btn-close-layer::before {
    font-size: 14px;
  }
  
  .address-box-pop .btn-close-layer::after {
    width: 15px;
    height: 15px;
  }
  
  .address-box-pop-desc {
    padding: 0 30px 15px;
    font-size: 12px;
  }
  
  .address-box-pop-btn .btn-34-ar {
    font-size: 16px;
    height: 35px;
    line-height: 35px;
  }
}

@media (max-width: 320px) {
  .mv-box h1,
  .mv-box2 h1 {
    font-size: 20px;
  }
  
  .mv-box,
  .mv-box2 {
    padding-top: 15px;
  }
  
  .content-box1 h2 {
    font-size: 20px;
  }
  
  .content-box2-main h2 {
    font-size: 16px;
  }
  
  .btn-theme-0 {
    font-size: 17px;
    height: 36px;
    line-height: 35px;
  }
  
  .error-oops {
    font-size: 48px;
    height: 80px;
    line-height: 80px;
  }
  
  .error-message,
  .error-divider {
    font-size: 14px;
    line-height: 24px;
  }
}

/*=====================================================
   PP Button Navigation Styles
   Based on ppPDBBlueHalfBlock structure
   ===================================================== */

.pp-button-nav-.ppPDBBlueHalfBlock .floatLayer {
  margin: 0;
  position: relative;
}

.pp-button-nav-.ppPDBBlueHalfBlock .floatLayer .container {
  background-color: transparent;
  margin: 40px auto;
}

@media screen and (max-width: 991px) {
  .pp-button-nav-.ppPDBBlueHalfBlock .floatLayer .container {
    padding: 0 10px;
  }
}

@media screen and (max-width: 767px) {
  .pp-button-nav-.ppPDBBlueHalfBlock .floatLayer .container {
    display: block;
    margin: 20px 0;
  }
}

/* Title Group */
.pp-button-nav-.ppPDBBlueHalfBlock .floatLayer .container .titleGroup {
  margin: 10px 10px 0 10px;
  padding: 0;
}

.pp-button-nav-.ppPDBBlueHalfBlock .floatLayer .container .titleGroup .title {
  font-size: 28px;
  color: #246;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 10px;
  height: 30px;
}

/* Content Group */
.pp-button-nav-.ppPDBBlueHalfBlock .floatLayer .container .contentGroup {
  padding: 0;
}

.pp-button-nav-.ppPDBBlueHalfBlock .floatLayer .container .contentGroup .blkItemRow {
  padding-bottom: 10px;
  background-color: transparent;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  container-type: inline-size;
  container-name: cardContainer;
}

@media screen and (max-width: 640px) {
  .pp-button-nav-.ppPDBBlueHalfBlock .floatLayer .container .contentGroup .blkItemRow {
    display: grid;
  }
}

/* Block Item */
.pp-button-nav-.ppPDBBlueHalfBlock .floatLayer .container .contentGroup .blkItemRow .blkItem {
  background-color: #28c;
  position: relative;
}

/* init: 4 cols */
.pp-button-nav-.ppPDBBlueHalfBlock .blkItemRow[data-layout="full"] .blkItem{
  flex: 0 0 calc(25% - 8px);         
}

/* Sidebar Layout: Force 2 columns */
.pp-button-nav-.ppPDBBlueHalfBlock .blkItemRow[data-layout="sidebar"] .blkItem{
  flex: 1 1 calc(49%);      
}

/* Container Query: 4 columns → 2 columns */
@container cardContainer (max-width: 1131px){
  .pp-button-nav-.ppPDBBlueHalfBlock 
  .blkItemRow[data-layout="full"] .blkItem{
    flex: 0 0 calc(50% - 5px); 
  }
}

/* Container Query: 2 columns → 1 column */
@container cardContainer (max-width: 568px){
  .pp-button-nav-.ppPDBBlueHalfBlock .blkItemRow .blkItem{
    flex: 0 0 100%;           
  }
}

.pp-button-nav-.ppPDBBlueHalfBlock .blkItemRow{
  align-items: stretch;
}
.pp-button-nav-.ppPDBBlueHalfBlock .blkItem .itemContainer{
  height: 100%;
}

/* Item Container */
.pp-button-nav-.ppPDBBlueHalfBlock .floatLayer .container .contentGroup .blkItemRow .blkItem .itemContainer {
  color: #fff;
  min-height: 0;
  margin-bottom: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Item Title Group */
.pp-button-nav-.ppPDBBlueHalfBlock .floatLayer .container .contentGroup .blkItemRow .blkItem .itemContainer .itemTitleGroup {
  margin: 0;
  padding: 16px 10px 0px;
}

.pp-button-nav-.ppPDBBlueHalfBlock .floatLayer .container .contentGroup .blkItemRow .blkItem .itemContainer .itemTitleGroup .itemTitle {
  color: #fff;
  font-size: 22px;
  font-weight: 300;
  margin: 0;
  line-height: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

/* Item Content Group */
.pp-button-nav-.ppPDBBlueHalfBlock .floatLayer .container .contentGroup .blkItemRow .blkItem .itemContainer .itemContentGroup {
  margin: 0;
  display: flex;
  flex-direction: column;
}

/* Image Box */
.pp-button-nav-.ppPDBBlueHalfBlock .floatLayer .container .contentGroup .blkItemRow .blkItem .itemContainer .itemContentGroup .item-img-box img {
  width: 100%;
  height: auto !important;
  display: block;
}

/* Item Description */
.pp-button-nav-.ppPDBBlueHalfBlock .floatLayer .container .contentGroup .blkItemRow .blkItem .itemContainer .itemContentGroup .itemDesc {
  padding: 0 16px 70px;
  font-size: 14px;
  flex: 1;
  line-height: 19px;
}

/* Button Frame */
.pp-button-nav-.ppPDBBlueHalfBlock .floatLayer .container .contentGroup .blkItemRow .blkItem .itemContainer .itemContentGroup .itemButFrame {
  position: absolute;
  width: calc(100% - 100px);
  left: 50px;
  bottom: 16px;
}

.pp-button-nav-.ppPDBBlueHalfBlock .floatLayer .container .contentGroup .blkItemRow .blkItem .itemContainer .itemContentGroup .itemButFrame a {
  text-decoration: none;
  display: block;
}

.pp-button-nav-.ppPDBBlueHalfBlock .floatLayer .container .contentGroup .blkItemRow .blkItem .itemContainer .itemContentGroup .itemButFrame .butNormal {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  border-radius: 25px;
  border: 0;
  position: relative;
  cursor: pointer;
  background-color: #fff;
  color: #333;
  transition: all 0.3s ease;
}

.pp-button-nav-.ppPDBBlueHalfBlock .floatLayer .container .contentGroup .blkItemRow .blkItem .itemContainer .itemContentGroup .itemButFrame .butNormal:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.pp-button-nav-.ppPDBBlueHalfBlock .floatLayer .container .contentGroup .blkItemRow .blkItem .itemContainer .itemContentGroup .itemButFrame .butNormal img {
  display: none;
}

/* Alternating Colors */
.pp-button-nav-.ppPDBBlueHalfBlock .floatLayer .container .contentGroup .blkItemRow .blkItem:nth-child(even) {
  background-color: #06b;
}

/* Orange Button Variant */
.pp-button-nav-.ppPDBBlueHalfBlock .floatLayer .container .contentGroup .blkItemRow .blkItem .itemContainer .itemContentGroup .itemButFrame .butNormal.butOrange {
  background-color: #ff9933;
  color: #fff;
}

.pp-button-nav-.ppPDBBlueHalfBlock .floatLayer .container .contentGroup .blkItemRow .blkItem .itemContainer .itemContentGroup .itemButFrame .butNormal.butOrange:hover {
  background-color: #fc0;
}

.pp-button-nav-.ppPDBBlueHalfBlock .floatLayer .container .contentGroup .blkItemRow .blkItem .itemContainer .itemContentGroup .itemButFrame .butNormal.butOrange:after {
  color: #fff;
}

/* Responsive: Prevent title wrapping in 4-column layout */
@container cardContainer (min-width: 1132px) {
  .pp-button-nav-.ppPDBBlueHalfBlock .floatLayer .container .contentGroup .blkItemRow[data-layout="full"] .blkItem .itemContainer .itemTitleGroup .itemTitle {
    font-size: 18px;
    /* min-height: 44px; */
  }
}

/* Additional responsive adjustment for very narrow 4-column items */
@container cardContainer (max-width: 1300px) {
  .pp-button-nav-.ppPDBBlueHalfBlock .floatLayer .container .contentGroup .blkItemRow[data-layout="full"] .blkItem .itemContainer .itemTitleGroup .itemTitle {
    font-size: 20px;
    line-height: 1.3em;
    font-weight: 400;
  }
}

.insurerQuoteBoxContainer .insurerQuoteBox {
  box-sizing: border-box;
}

.insurerQuoteBoxContainer .boxContent p {
  padding: 0px 10px;
}

.insurerQuoteBoxContainer .boxContent h2 {
  padding: 0px 20px !important; 
}

/* FAQ Pagination Styles */
.faq-pagination {
    margin: 40px 0;
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.faq-pagination ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.faq-pagination li {
    margin: 0;
}

.faq-pagination a,
.faq-pagination span {
    display: inline-block;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    min-width: 38px;
    text-align: center;
    font-size: 13px;
    box-sizing: border-box;
}

.faq-pagination a:hover {
    background-color: #f5f5f5;
    border-color: #999;
}

.faq-pagination .current {
    background-color: #28c;
    color: #fff;
    font-weight: bold;
}

.faq-pagination .prev,
.faq-pagination .next {
    font-weight: 500;
}

.faq-pagination .dots {
    border: none;
    padding: 12px 10px;
}

.btn-theme-0{
  height: 40px;
  line-height: 40px;
  border-radius: 30px;
  padding: 0 30px 0 20px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  display: inline-block;
  background-image: url(/wp-content/themes/pacificprime/assets/pp2020/images/common/arrow_d.png);
  background-position: 95% center;
  background-repeat: no-repeat;
}

.cat-box {
    margin-bottom: 10px;
    background-color: #eee;
    position: relative;
}

.cat-box h2 {
    font-size: 16px;
    font-weight: 600;
    background-color: #fff;
    padding-left: 15px;
    height: 40px;
    line-height: 40px;
    margin: 0px;
    color: #246;
}

.cat-box h2 a {
    display: block;
    color: #246;
}

.cat-box-main {
    margin-right: 160px;
    height: 160px;
    position: relative;
}

.cat-box-main p {
    margin-top: 0px;
}

.cat-box-btn {
    position: absolute;
    bottom: 10px;
    left: 15px;
}

.btn-24 {
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    padding: 0 20px;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    display: inline-block;
}

.cat-box-main {
    margin-right: 160px;
    height: 160px;
    position: relative;
}

.cat-box-content{position:absolute;height:90px;overflow:hidden;left:15px;top:20px;width:135px;}

section.ppBlkText1:not(.boxes-list):not(.boxes-list-2):not(.bannerForm):not(.text1):not(.ppBlkTextDLGuide1) div.titleGroup {
    padding: 20px 0px 0 0px;
}

section.ppBlkText1:not(.boxes-list):not(.boxes-list-2):not(.bannerForm):not(.text1):not(.ppBlkTextDLGuide1) div.contentGroup div.blkItem div.itemContainer {
    position: relative;
    min-height: 120px;
    margin-bottom: 30px;
}

section.ppBlkText1:not(.boxes-list):not(.boxes-list-2):not(.bannerForm):not(.text1):not(.ppBlkTextDLGuide1) div.contentGroup div.blkItem div.itemContainer img.itemIcon {
    width: 120px;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
}

section.ppBlkText1:not(.boxes-list):not(.boxes-list-2):not(.bannerForm):not(.text1):not(.ppBlkTextDLGuide1) div.contentGroup div.blkItem div.itemContainer div.itemTitleGroup {
    margin-left: 140px;
}

section.ppBlkText1:not(.boxes-list):not(.boxes-list-2):not(.bannerForm):not(.text1):not(.ppBlkTextDLGuide1) div.contentGroup div.blkItem div.itemContainer div.itemTitleGroup .itemTitle {
    font-size: 14px;
    color: #246;
    font-weight: 700;
}

section.ppBlkText1:not(.boxes-list):not(.boxes-list-2):not(.bannerForm):not(.text1):not(.ppBlkTextDLGuide1) div.contentGroup div.blkItem div.itemContainer div.itemContentGroup {
    margin-left: 140px;
}

@media screen and (max-width: 767px) {
    section.ppBlkText1:not(.boxes-list):not(.boxes-list-2):not(.bannerForm):not(.text1):not(.ppBlkTextDLGuide1) div.contentGroup div.blkItem div.itemContainer img.itemIcon {
        position: relative;
        top: auto;
        left: auto;
        display: block;
        margin-bottom: 10px;
    }

    section.ppBlkText1:not(.boxes-list):not(.boxes-list-2):not(.bannerForm):not(.text1):not(.ppBlkTextDLGuide1) div.contentGroup div.blkItem div.itemContainer div.itemTitleGroup,
    section.ppBlkText1:not(.boxes-list):not(.boxes-list-2):not(.bannerForm):not(.text1):not(.ppBlkTextDLGuide1) div.contentGroup div.blkItem div.itemContainer div.itemContentGroup {
        margin-left: 0;
    }
}

section.ppBlkText1.ppBlkTextDLGuide1 div.contentGroup div.blkItem div.itemContainer div.itemContentGroup {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    margin-left: 0;
}

section.ppBlkText1.ppBlkTextDLGuide1 div.contentGroup div.blkItem div.itemContainer img.itemIcon {
    width: 250px;
    height: auto;
    position: relative;
    top: auto;
    left: auto;
    flex-shrink: 0;
}

section.ppBlkText1.ppBlkTextDLGuide1 div.contentGroup div.blkItem div.itemContainer div.itemDesc {
    flex: 1;
    padding-top: 0;
}

@media screen and (max-width: 767px) {
    section.ppBlkText1.ppBlkTextDLGuide1 div.contentGroup div.blkItem div.itemContainer div.itemContentGroup {
        flex-direction: column;
    }

    section.ppBlkText1.ppBlkTextDLGuide1 div.contentGroup div.blkItem div.itemContainer img.itemIcon {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

section.ppBlkHalfText1 div.floatLayer {
    margin: 0;
    position: relative
}
section.ppBlkHalfText1 div.floatLayer div.container {
    background-color: transparent;
    display: table;
    width: 100%
}
section.ppBlkHalfText1 div.floatLayer div.container div.contentGroup {
    padding: 0
}
section.ppBlkHalfText1 div.floatLayer div.container div.contentGroup div.blkItemRow {
    padding-bottom: 10px;
    background-color: transparent;
    display: table-row
}
section.ppBlkHalfText1 div.floatLayer div.container div.contentGroup div.blkItemRow div.blkItem {
    display: table-cell;
    margin: 0;
    vertical-align: top;
    width: 50%;
    position: relative
}
section.ppBlkHalfText1 div.floatLayer div.container div.contentGroup div.blkItemRow div.blkItem div.itemContainer {
    height: 100%;
    background-color: #fff;
    margin: 0 5px 10px 0
}
section.ppBlkHalfText1 div.floatLayer div.container div.contentGroup div.blkItemRow div.blkItem div.itemContainer div.itemTitleGroup {
    margin: 0;
    padding: 20px 20px 0 20px
}
section.ppBlkHalfText1 div.floatLayer div.container div.contentGroup div.blkItemRow div.blkItem div.itemContainer div.itemContentGroup {
    margin: 0;
    padding: 0 20px 20px 20px
}
section.ppBlkHalfText1 div.floatLayer div.container div.contentGroup div.blkItemRow div.blkItem[col="1"] div.itemContainer {
    margin: 0 0 10px 5px
}
@media screen and (max-width: 767px) {
    section.ppBlkHalfText1 div.floatLayer div.container {
        display: block
    }
    section.ppBlkHalfText1 div.floatLayer div.container div.contentGroup div.blkItemRow {
        display: block;
        padding-bottom: 0
    }
    section.ppBlkHalfText1 div.floatLayer div.container div.contentGroup div.blkItemRow div.blkItem {
        display: block;
        width: 100%
    }
    section.ppBlkHalfText1 div.floatLayer div.container div.contentGroup div.blkItemRow div.blkItem[col="1"] div.itemContainer {
        margin: 0 0 10px 0
    }
}

@media (max-width: 768px) {
  .blog-post #comment-popup {
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 318px;
    margin: 0;
  }

  .blog-post #cp-close {
    right: 18px;
  }

  .blog-post #comment-popup .cp-header {
    padding: 30px 30px 10px 30px;
  }

  .blog-post #comment-popup .cp-header h3 {
    font-size: 19px;
    line-height: 28px;
    font-weight: 700;
  }

  .blog-post #comment-popup .cp-body {
    padding: 10px 30px 40px;
  }

  .blog-post .cp-field input {
    padding: 0;
    font-size: 17px;
  }

  .blog-post .cp-error {
    min-height: 2px;
  }
}
