/*
Theme Name: Pageking Flex (child)
Template: pk-theme
Author: Pageking
Author URI: https://www.pageking.nl/
Description: Pageking is een thema voor WordPress dat is ontworpen voor Pageking websites.
Requires at least: 5.9
Tested up to: 6.7.2
Requires PHP: 8.3
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
  --text-main: hsla(245, 62%, 15%, 1);

  --white: hsla(0, 0%, 100%, 1);
  --white-opaque: hsla(0, 0%, 100%, 0.25);

  --red: hsla(0, 79%, 43%, 1);

  --kobalt: hsla(245, 62%, 15%, 1);
  --kobalt-opaque: hsla(245, 62%, 15%, 0.25);

  --sky: hsla(210, 52%, 92%, 1);
  --linnen: hsla(32, 100%, 97%, 1);


  --body-large: 1.25rem;
  --body-regular: 1.125rem;
  --body-small: 1rem;
  --body-xtra-small: 0.75rem;

  --heading-xl: max(46px, 5.08vw);
  --heading-1: max(52px, 3.67vw);
  --heading-2: max(42px, 2.68vw);

  --heading-3-xl: max(36px, 2.26vw);
  --heading-3: max(32px, 2.26vw);

  --heading-4: max(24px, 1.98vw);
  --heading-5: max(20px, 1.55vw);
  --heading-6: max(18px, 1.24vw);

}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* SPEED OPTIMIZATIONS */
/* Layout Shift Prevention - CLS Optimization */
img {
  max-width: 100%;
  height: auto;
  /* Preserve aspect ratio to prevent layout shifts */
  aspect-ratio: attr(width) / attr(height);
}

img[width][height] {
  /* Browser calculates aspect-ratio from width/height attributes */
  aspect-ratio: auto;
}

/* Ensure hero images maintain aspect ratio */
.hero-bg {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.wpml-ls-statics-footer.wpml-ls.wpml-ls-legacy-list-horizontal,
.otgs-development-site-front-end {
  display: none;
}

.pk-page {
  overflow: clip;
}

/* FULL WIDTH GRID */
.pk-page-content .pk-row,
.pk-page-content .pk-grid-container {
  max-width: 100%;
  margin-inline: 0;
}

.pk-page-content a {
  text-decoration: none;
  transition: color 180ms ease-in-out;
}

.pk-page-content a:hover {
  color: var(--red);
}

/* HEADINGS */
.pk-page-content h1 {
  letter-spacing: -1.04px;
  font-size: var(--heading-1);
}

.pk-page-content h2 {
  letter-spacing: -0.84px;
  font-size: var(--heading-2);
}

.pk-page-content h3 {
  letter-spacing: -0.64px;
  font-size: var(--heading-3);
}

.pk-page-content h4 {
  letter-spacing: -0.48px;
  font-size: var(--heading-4);
}

.pk-page-content h5 {
  letter-spacing: -0.4px;
  font-size: var(--heading-5);
}

.pk-page-content h6 {
  letter-spacing: -0.32px;
  font-size: var(--heading-6);
}

/* HEADER */
.pk-menu .menu .submenu-toggle {
  border: 0px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.75 0.75L6.75 6.75L12.75 0.75' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-color: transparent;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 1em;
}

.pk-menu ul.menu li:not(.menu-button) a {
  text-decoration: none;
  color: black;
}

.pk-menu .pk-submenu {
  min-width: 200px;
}

/* FOOTER */
.pk-footer {
  padding-inline: var(--pk-site-gutter);
}

/* BUTTONS */
html .pk-button {
  background-color: var(--red);
  border: 1px solid var(--red);
  padding: 8px 8px 8px 20px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 180ms ease-in-out;
}

html .pk-button:active {
  background-color: var(--kobalt);
}

html .pk-button .pk-button-text {
  color: white;
}

html .pk-button .pk-button-icon {
  transition: transform 180ms ease-in-out;
}

html .pk-button .pk-button-icon svg g path {
  transition: fill 180ms ease-in-out;
}

html .pk-button.arrow-right:hover .pk-button-icon {
  transform: rotate(-45deg);
}

html .pk-button.arrow-top:hover .pk-button-icon {
  transform: rotate(45deg);
}

/* PRIMARY */
html .pk-button.primary {
  background-color: var(--red);
  border-color: var(--red);
}

html .pk-button.primary .pk-button-icon svg rect {
  fill: var(--white);
}

html .pk-button.primary .pk-button-icon svg g path {
  fill: var(--red);
}

/* SECONDARY */
html .pk-button.secondary {
  background-color: transparent;
  border: 1px solid var(--kobalt-opaque);
}

html .pk-button.secondary .pk-button-text {
  color: var(--kobalt);
}

html .pk-button.secondary .pk-button-icon svg rect {
  fill: var(--kobalt);
}

html .pk-button.secondary .pk-button-icon svg g path {
  fill: var(--white);
}

html .pk-button.secondary:hover {
  border-color: var(--kobalt);
}

/* TERTIARY */
html .pk-button.tertiary {
  background-color: transparent;
  border: 1px solid var(--white-opaque);
}

html .pk-button.tertiary .pk-button-text {
  color: var(--white);
}

html .pk-button.tertiary .pk-button-icon svg rect {
  fill: var(--white);
}

html .pk-button.tertiary .pk-button-icon svg g path {
  fill: var(--kobalt);
}

html .pk-button.tertiary:hover {
  border-color: var(--white);
}


button {
  font-family: var(--pk-text-font-family);
}

/* DEFAULTS PAGE-CONTENT */
.pk-page-content h1,
.pk-page-content h2,
.pk-page-content h3,
.pk-page-content h4,
.pk-page-content h5,
.pk-page-content h6 {
  margin-top: 0rem;
  margin-bottom: 1rem;
}

.pk-page-content p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.pk-page-content ul,
.pk-page-content ol {
  margin-top: 0;
  margin-bottom: 1.5rem;
  padding-left: 1.1rem;
}

.pk-page-content ul:last-child,
.pk-page-content ol:last-child,
.pk-page-content li:last-child {
  margin-bottom: 0;
}

.pk-page-content li {
  margin-bottom: 0.5rem;
}

.pk-page-content ul {
  list-style: none;
  padding-left: 1.5rem;
}

.pk-page-content ul li {
  position: relative;
}

.pk-page-content ul li:before {
  position: absolute;
  left: -1.25rem;
  top: 7px;
  content: '';
  height: 10px;
  width: 13px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='10' viewBox='0 0 13 10' fill='none'%3E%3Cpath d='M4.44542 9.41979L0 4.97437L0.890833 4.08333L4.44542 7.63792L12.0833 0L12.9742 0.891042L4.44542 9.41979Z' fill='%23130F40'/%3E%3C/svg%3E");
}

.pk-page-content img {
  max-width: 100%;
  height: auto;
  display: block;
}

.pk-page-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.pk-page-content th,
.pk-page-content td {
  padding: 0.75rem 1rem;
  border: 1px solid #e0e0e0;
  text-align: left;
}

.pk-page-content blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
}

.pk-page-content hr {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 2rem 0;
}

@media (max-width: 767px) {

  .pk-page-content ul,
  .pk-page-content ol {
    padding-left: 1.1rem;
  }
}

.sidebar {
  padding: var(--pk-row-spacing);
  border-radius: 5px;
}

.gallery-item,
.image {
  border-radius: 5px;
  overflow: hidden;
}

/* OPTIONAL, NO MARGIN 1 PARAGRAPH */
p:only-child,
p:last-child {
  margin: 0;
}

/* OPTIONAL, NO MARGIN TOP EXEPT FIRST ROW */
/* .flex-content > .flex-layout:not(:first-child) > .pk-row {
	padding-top: 0;
} */

/* DIALOG */
body dialog {
  border-radius: 10px;
}

body dialog h3 {
  margin-bottom: 1rem;
}

/* FAQ STYLES */
.faq-items {
  display: flex;
  flex-direction: column;
}

.faq-item:not(:last-child) {
  border-bottom: 1px solid hsla(245, 62%, 15%, 0.15);
}

.faq-item {
  margin-left: 3rem;
}

.faq-item .faq-title {
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.5rem;
  padding-inline: 0;
  margin: 0;
  gap: 1rem;
  font-size: var(--pk-text-desktop-font-size);
  outline: unset;
  border: 0px;
  background: none;
}

.faq-item:first-child .faq-title {
  padding-top: 0;
}

.faq-item .faq-title .faq-title-text {
  width: fit-content;
  text-align: left;
  margin-bottom: 0;
}

.faq-item .faq-icon g path {
  transition: opacity 180ms ease-in-out, transform 180ms ease-in-out;
  transform-origin: center;
}

.faq-item.active .faq-icon g path:nth-child(1) {
  transform: rotate(90deg);
}

.faq-item.active .faq-icon g path:nth-child(2) {
  opacity: 0;
  transform: rotate(90deg);
}

.faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: all 180ms ease-in-out;
}

.faq-item.active .faq-content {
  padding-block: 0 2rem;
  grid-template-rows: 1fr;
}

.faq-item .faq-inner {
  overflow: hidden;
  max-width: 90%;
  width: fit-content;
}


/* LABEL STYLES */
.pk-module.pk-label {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 9px;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.pk-module.pk-label .pk-label-image img {
  height: 24px;
  width: 24px;
  aspect-ratio: 1/1;
  object-fit: contain;
  flex-shrink: 0;
}

.pk-module.pk-label .pk-label-text {
  font-weight: 600;
}

/* READ MORE STYLES */
.pk-page-content .read-more {
  position: absolute;
  left: 0;
  bottom: -1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pk-page-content .read-more svg {
  transition: transform 180ms ease-in-out;
}

.pk-page-content .read-more:hover svg {
  transform: translateY(4px);
}

.pk-page-content .read-more .read-more-text {
  color: var(--kobalt);
  font-size: 8px;
  line-height: 100%;
  letter-spacing: -0.16px;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* link card */
.link-card {
  height: 100%;
  position: relative;
  display: flex;
  transform-style: preserve-3d;
  will-change: transform;
}

.link-card .link-card-content {
  position: relative;
  z-index: 1;
}

.link-card .link-card-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: clip;
}

.link-card .link-card-overlay:after {
  position: absolute;
  top: -50px;
  right: -50px;
  content: '';
  width: 100px;
  height: 100px;
  background-color: var(--white);
  --mask-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' viewBox='0 0 101 101' fill='none'%3E%3Ccircle cx='50.5' cy='50.5' r='50.5' fill='white'/%3E%3C/svg%3E");
  mask: var(--mask-url) no-repeat center / contain;
  -webkit-mask: var(--mask-url) no-repeat center / contain;
  pointer-events: none;
}

.link-card .link-card-svg {
  position: absolute;
  top: 0;
  right: 0;
  transition: transform 180ms ease-in-out;
}

.link-card:hover .link-card-svg {
  transform: rotate(45deg);
}

/* IMAGE CARD */
.image-card {
  position: relative;
}

.image-card .image-card-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: clip;
}

.image-card .image-card-overlay::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  height: 100px;
  width: 100px;
  background-color: var(--white);
  --mask-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' viewBox='0 0 101 101' fill='none'%3E%3Ccircle cx='50.5' cy='50.5' r='50.5' fill='white'/%3E%3C/svg%3E");
  mask: var(--mask-url) no-repeat center / contain;
  -webkit-mask: var(--mask-url) no-repeat center / contain;
  pointer-events: none;
}

/* advisers images */
.advisers-images {
  display: flex;
  border-radius: 9999px;
  background: var(--white);
  padding: 4px;
  align-items: center;
  height: fit-content;
}

.advisers-images .advisers-image:not(:first-child) {
  margin-left: -20px;
}

.advisers-images .advisers-image img {
  aspect-ratio: 1/1;
  border-radius: 40px;
  width: 40px;
  height: 40px;
  object-fit: cover;
}


/* BREADCRUMBS */
.pk-breadcrumbs .breadcrumb {
  padding: 0;
}

.pk-breadcrumbs .breadcrumb .breadcrumb-item {
  color: var(--white);
  font-size: 12px;
  line-height: 100%;
  text-transform: uppercase;
}

.pk-breadcrumbs .breadcrumb .breadcrumb-item:after {
  content: '/';
  margin-inline: 4px;
}

.pk-breadcrumbs .breadcrumb .breadcrumb-item a {
  color: var(--white);
  transition: opacity 180ms ease-in-out;
}

.pk-breadcrumbs .breadcrumb .breadcrumb-item a:hover {
  opacity: 0.55;
}

.pk-breadcrumbs .breadcrumb .breadcrumb-item.active {
  opacity: 0.55;
}

/* Sticky CTA */
.pk-page-content .cta-sticky-container {
  display: flex;
  justify-content: flex-end;
}

.pk-page-content .cta-sticky {
  max-width: 90%;
  width: fit-content;
  height: fit-content;
  position: sticky;
  top: calc(var(--pk-header-height) + 2rem);
}

.pk-page-content .cta-sticky .link-card-overlay {
  background-color: var(--red);
}

.pk-page-content .cta-sticky .link-card-content {
  padding: 2.5rem;
  color: var(--white);
}

.pk-page-content .cta-sticky .link-card-content h4,
.pk-page-content .cta-sticky .link-card-content h5 {
  color: var(--white);
}

.pk-page-content .cta-sticky .adviseur-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.pk-page-content .cta-sticky .adviseur-badge img {
  width: 56px;
  height: 56px;
  aspect-ratio: 1/1;
  border-radius: 56px;
}

.pk-page-content .cta-sticky .adviseur-badge .adviseur-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;

}

.pk-page-content .cta-sticky .adviseur-badge .adviseur-info h5 {
  margin-bottom: 0;
}

.pk-page-content .cta-sticky .adviseur-badge .adviseur-info span {
  opacity: 0.55;
}

/* GRAVITY FORMS STYLES */
.pk-page-content .pk-module.pk-contact-form .gform_fields {
  gap: 1rem;
}

.pk-page-content .pk-module.pk-contact-form .gform_wrapper .gform_heading,
.pk-page-content .pk-module.pk-contact-form .gform_wrapper .gfield_required,
.pk-page-content .pk-module.pk-contact-form .gform_wrapper .gform_fileupload_rules {
  display: none;
}

.pk-page-content .pk-module.pk-contact-form .gform_wrapper form .gform_fields .gfield {
  position: relative;
}

.pk-page-content .pk-module.pk-contact-form .gform_wrapper form .gfield_checkbox .gchoice label {
  font-weight: 400;
}

.pk-page-content .pk-module.pk-contact-form .gform_wrapper form .gfield_checkbox .gchoice a {
  color: var(--kobalt) !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pk-page-content .pk-module.pk-contact-form .gform_wrapper form .gform_fields .gfield:not(:has(.gchoice, input[type=checkbox])) label {
  color: var(--kobalt);
  font-weight: 400;
  font-size: 16px;
  position: absolute;
  left: 1.5rem;
  top: 0.9rem;
  transition: all 180ms ease-in-out;
  opacity: 0.55;
}

.pk-page-content .pk-module.pk-contact-form .gform_wrapper form .gform_fields .gfield.is-focused:not(:has(.gchoice))>label,
.pk-page-content .pk-module.pk-contact-form .gform_wrapper form .gform_fields .gfield.is-filled:not(:has(.gchoice))>label {
  background: #fff;
  top: 0px;
  translate: 0% -50%;
  font-size: 14px;
  padding-inline: 6px;
  opacity: 1;
}

#form .ginput_complex>span>label {
  padding-top: 0px;
}

#form .ginput_complex>span.is-focused>label,
#form .ginput_complex>span.is-filled>label {
  top: -10px;
  font-size: 14px;
  background: var(--white);
  padding: 0 6px;
  position: absolute;
  left: 1rem;
}

.pk-page-content .pk-module.pk-contact-form .gform_wrapper form .gform_fields .gfield.gfield--input-type-select label {
  display: none;
}

.pk-page-content .pk-module.pk-contact-form .gform_wrapper form .gform_fields .gfield.gfield--input-type-select select {
  padding: 14px 24px;
  font-size: 16px;
  outline: none;
  height: auto;
  border-radius: 4px;
  border: 1px solid var(--kobalt);
  line-height: 1;
}

.pk-page-content .pk-module.pk-contact-form .gform_wrapper form .gform_fields .gfield input,
.pk-page-content .pk-module.pk-contact-form .gform_wrapper form .gform_fields .gfield textarea {
  background: none;
  border-radius: 4px;
  border: 1px solid var(--kobalt);
  padding: 14px 24px;
  font-size: 16px;
  outline: none;
  height: 52px;
}

.pk-page-content .pk-module.pk-contact-form .gform_wrapper form .gform_fields .gfield select {
  background: transparent;
  padding-block: 14px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-size: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7' fill='none'%3E%3Cpath d='M5.65375 6.7075L0 1.05375L1.05375 0L5.65375 4.6L10.2537 0L11.3075 1.05375L5.65375 6.7075Z' fill='%23130F40'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
}

.pk-page-content .pk-module.pk-contact-form .gform_wrapper form .gform_fields .gfield select:focus-visible {
  outline: 0;
  box-shadow: none;
}

.pk-page-content .pk-module.pk-contact-form .gform_wrapper form .gform-footer input[type="submit"] {
  text-align: left;
  padding: 12px 40px 12px 20px;
  line-height: 1;
  color: var(--white);
  background-color: var(--red);
  border-radius: 999px;
  width: fit-content;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Crect width='24' height='24' rx='12' fill='white'/%3E%3Cmask id='mask0_682_5068' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='4' y='4' width='16' height='16'%3E%3Crect x='4' y='4' width='16' height='16' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_682_5068)'%3E%3Cpath d='M13.2308 15.769L12.5282 15.046L15.0743 12.4999H7V11.4999H15.0743L12.5282 8.95371L13.2308 8.23071L17 11.9999L13.2308 15.769Z' fill='%23C51717'/%3E%3C/g%3E%3C/svg%3E");
  background-position: calc(100% - 8px) center;
  background-repeat: no-repeat;
  transition: background-color 180ms ease-in-out;
  margin: 0px;
  border: none;
  font-size: 16px;
}

.pk-page-content .pk-module.pk-contact-form .gform_wrapper form .gform-footer input[type="submit"]:hover {
  background-color: var(--kobalt);
}

.pk-page-content .pk-module.pk-contact-form .gform_wrapper form #field_submit {
  position: relative;
  justify-content: flex-end;
  height: fit-content;
  margin-top: auto;
}

.pk-page-content .pk-module.pk-contact-form .gfield--type-consent .gfield_label {
  display: none;
}

.pk-page-content .pk-module.pk-contact-form .gform_wrapper form .gform_fields .gfield input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid var(--kobalt);
  border: none;
  border-radius: 0px;
  width: 21px;
  height: 21px;
  position: relative;
  cursor: pointer;
  transition: all 180ms ease-in-out;
  padding: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='21' viewBox='0 0 21 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='19.9795' height='19.9795' rx='1.99756' fill='white' stroke='%23130F40'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.pk-page-content .pk-module.pk-contact-form .gform_wrapper form .gform_fields .gfield input[type=checkbox]::after {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  opacity: 0;
  transition: opacity 180ms ease-in-out;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='8' viewBox='0 0 11 8' fill='none'%3E%3Cpath d='M3.59648 7.79238C3.41666 7.79238 3.29678 7.73244 3.17689 7.61256L0.179824 4.61549C-0.0599414 4.37572 -0.0599414 4.01607 0.179824 3.77631C0.41959 3.53654 0.779238 3.53654 1.019 3.77631L3.59648 6.35379L9.77045 0.179824C10.0102 -0.0599414 10.3699 -0.0599414 10.6096 0.179824C10.8494 0.41959 10.8494 0.779238 10.6096 1.019L4.01607 7.61256C3.89619 7.73244 3.77631 7.79238 3.59648 7.79238Z' fill='%23130F40'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pk-page-content .pk-module.pk-contact-form .gform_wrapper form .gform_fields .gfield input[type=checkbox]:checked::after {
  opacity: 1;
}

.pk-page-content .pk-module.pk-contact-form .gform_wrapper form .gform_fields .gfield input[type=checkbox]::before {
  display: none;
}


.pk-page-content .pk-module.pk-contact-form .gform_wrapper.gravity-theme .gfield_validation_message,
.pk-page-content .pk-module.pk-contact-form .gform_wrapper.gravity-theme .validation_message,
.pk-page-content .pk-module.pk-contact-form .gform_wrapper.gravity-theme .gform_validation_errors {
  background: transparent !important;
  border: 1px solid var(--kobalt) !important;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: none;
}

#searchPopup button {
  background: transparent;
  padding: 0;
  height: 26px;
  width: 26px;
  top: 4px;
  right: 4px;
}

#searchPopup .dialog-wrapper {
  padding: 0;
  width: 600px;
}

#searchPopup form input[type="search"] {
  font-size: 20px !important;
  padding: 1.25em 1.5em;
  border: none !important;
  height: auto;
}

#searchPopup .is-ajax-search-result {
  position: static;
  padding: 0;
  width: 100% !important;
  overflow: hidden;
  border-top: 1px solid #e2e2e2;
}

#searchPopup .is-ajax-search-result .is-title a {
  font-size: 16px;
}


@media screen and (max-width: 992px) {
  .pk-page-content .read-more {
    bottom: 0;
  }

  .read-more .read-more-text {
    display: none;
  }

  .faq-item {
    margin-left: 0;
  }

  .pk-page-content .cta-sticky-container {
    justify-content: flex-start;
  }

  .pk-page-content .cta-sticky {
    max-width: 100%;
  }

  .pk-page-content .cta-sticky .link-card-content {
    padding: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  body .flex-layout {
    padding-inline: 0.5rem;
  }

  .faq-item .faq-title {
    padding: 1rem;
  }

  .faq-item .faq-content {
    padding-inline: 1rem;
  }

  .faq-item .faq-title {
    font-size: var(--pk-text-mobile-font-size);
  }

  .pk-module.pk-label {
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 479px) { 
    .pk-page-content h1,
    .pk-page-content h2,
    .pk-page-content h3,
    .flex-layout.testimonials_switcher-layout .text {
      hyphens: auto;
    }
}