/* ============================================
   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;
  }
}


/* ============================================
   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;
  }
}


/* ============================================
   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);
}


/* ============================================
   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;
}


/* ============================================
   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;
  }
}
