@import url('https://fonts.googleapis.com/css2?family=Wix+Madefor+Display:wght@400..800&display=swap');
/*! HTML5 Boilerplate v9.0.1 | MIT License | https://html5boilerplate.com/ */

/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
  scroll-behavior: smooth;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
:root {
  --primary-dark: #00473c;
  --btn-primary: #225c40;
  --primary-light: #faf9f6;
  --button-secondary: #eeebda;
  --white: #fff;

  --hover-button: #00a310;
  --primary: #00b011;

  --borders: #e1dcd4;
  --dark: #082b24;
  --black: #000;
  --hover-light-button: #e6e1c8;
  --light-green: #d6f1a2;
}

/* .meetings-iframe-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; 
     min-height: 800px;
  }
  .meetings-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 800px!important;
    border: 0;
  } */
* {
  box-sizing: border-box;
}

body {
  font-family: "Wix Madefor Display", sans-serif;
  font-size: 16px;
  color: var(--primary-dark);
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.ml-auto {
  margin-left: auto !important;
}

.mr-auto {
  margin-right: auto !important;
}

h1 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
}

h3 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
}

h5 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2em;
}

.para-lg {
  font-size: 18px;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-4 {
  margin-top: 2rem !important;
}

.mt-2 {
  margin-top: 1rem !important;
}

.mb-2 {
  margin-bottom: 1rem !important;
}

.d-flex {
  display: flex !important;
}

.gap-2 {
  gap: 2rem !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.d-block {
  display: block !important;
}

.btn {
  background-color: var(--button-secondary);
  color: var(--primary-dark);
  text-align: center;
  border-radius: .25rem;
  padding: .75rem 1.5rem;
  font-weight: 600;
  transition: border-color .2s, background-color .2s;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  line-height: 1.3em;
}

.btn:hover {
  background: var(--hover-light-button);
}

.btn.btn-default {
  background-color: var(--primary);
  color: var(--white);
}

.btn.btn-default:hover {
  background-color: var(--hover-button);
  color: var(--white);
}

.btn.is-large {
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.justify-content-center {
  justify-content: center;
}

/* Small: ≥576px */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

/* Medium: ≥768px */
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

/* Large: ≥992px */
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

/* Extra Large: ≥1200px */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* XXL: ≥1400px */
@media (min-width: 1340px) {
  .container {
    max-width: 1280px;
  }

  header .container {
    max-width: 1200px;
  }
}

@media (min-width: 1420px) {
  .container {
    max-width: 1360px;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: all 0.3s ease-in-out;
}

.headerFixed header {
  background: var(--dark);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.navbar .logo {
  color: var(--white);
  font-size: 24px;
}

.mainBannerHolder .mainBannerImgSec {
  background-image: url('../img/banner-bg.webp');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.25;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  animation: scaleAnimation 15s ease-in-out infinite;
  transform: translate3d(0px, 0px, 0px) scale3d(1.19, 1.19, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  will-change: transform;
}

.mainBannerHolder {
  padding: 12rem 0 8rem 0;
  background-color: var(--dark);
  overflow: hidden;
  position: relative;
}

.mainBannerSec {
  display: flex;
  gap: 2rem;
  position: relative;
  z-index: 1;
  color: var(--white);
}

@keyframes scaleAnimation {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

.mainBannerFormSec {
  width: 562px;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--black);
  border-radius: 1rem;
  padding: 2rem 1.2rem;
  color: var(--white);
  text-align: center;
}

.mainBannerFormSp {
  max-width: 90%;
  margin: 0 auto;
}

.mainBannerFormSec h3 {
  margin: 15px 0 0 0;
  font-weight: 600;
  font-size: 25px;
}

.mainBannerContent {
  width: calc(100% - 2rem - 562px - 2%);
}

.mainBannerContent img {
  max-width: 100%;
  width: 428px;
  border-radius: 10px;
}

.mainBannerContent h1 {
  margin: 0;
}


.text-center {
  text-align: center !important;
}

.powerCombineHolder {
  padding: 8rem 0;
  overflow: hidden;
  background: var(--dark);
  color: var(--white);
}

.powerCombineCounterSec {

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  justify-content: center;
  margin: 0 auto;
}

.powerCombineCounterSec .powerCombineCounterBlock {
  position: relative;
}

.powerCombineCounterSec .powerCombineCounterBlock p {
  margin: 0;
}

.powerCombineCounterSec .powerCombineCounterBlock strong {
  color: var(--light-green);
  font-size: 5rem;
  font-weight: 500;
  line-height: 1.3;
}

.powerCombineSec .powerCombineContent {
  width: 100%;
}

.powerCombineSec .powerCombineContent p strong {
  font-weight: 500;
}

.powerCombineSec .powerCombineContent h2 {
  margin: 0;
}

.testimonialsHolder {
  padding: 2rem 0;
  overflow: hidden;
}

.testimonialSec {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.testimonialSliderSec .paraLg {
  letter-spacing: -1.3px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3em;
}

.testimonialSliderSec.swiper-horizontal .swiper-pagination-bullet {
  background-color: var(--button-secondary);
  border-radius: 5px;
  width: 50px;
  height: 10px;
  opacity: 1;
  padding: 0;
}

.testimonialSliderSec.swiper-horizontal {
  padding-bottom: 3rem;
  margin-top: 2rem;
}

.testimonialSliderSec.swiper-horizontal .swiper-pagination-bullet-active {
  background-color: var(--primary);
}


.scheduleDemoDialog {
  position: fixed;
  left: 10px;
  bottom: 10px;
  background: var(--primary);
  padding: 15px 20px 15px 15px;
  border-radius: 5px;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 500;
  max-width: 290px;
  color: var(--white);
  z-index: 12;
}

.scheduleDemoDialog .closeTrigger svg {
  width: 18px;
  height: 18px;
  position: absolute;
  top: 4px;
  right: 4px;
}

.scheduleDemoDialog p {
  margin-top: 0;
}

.scheduleDemoDialog .closeTrigger svg path {
  fill: var(--white)
}

.scheduleDemoDialog .btn.btn.btn-default {
  font-size: 12px;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 5px 15px;
  color: var(--white);
}

.leasinggameHolder {
  padding: 8rem 0;
  overflow: hidden;
}

.leasinggameSec .leasinggameContent {
  max-width: 967px;
}

.leasinggameContent h2 {
  margin: 0;
}

.leasinggameSec .btn {
  white-space: nowrap;
}

.leasinggameContent strong {
  font-weight: 500;
}

.leasinggameSec .leasingGameCalloutSecSp {
  background: var(--black);
  padding: 20px 0;
  border-radius: 5px;
  color: var(--white);
  margin-top: 3rem;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.leasingGameCalloutSecSp .leasingGameCalloutSec {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.leasingGameCalloutSec .leasingGameCallout {
  padding: 10px 30px;
}

.leasingGameCalloutSec .leasingGameCallout+.leasingGameCallout {
  border-left: 1px solid var(--white);
}

.leasingGameCalloutSec .leasingGameCallout img {
  max-width: 120px;
  margin-bottom: 10px;
}

.leasingGameCalloutSec .leasingGameCallout h5 {
  margin: 0;
}


.showMojoHolder {
  padding: 8rem 0;
  overflow: hidden;
}

.showMojoSec .showMojoContent {
  max-width: 967px;
}

.showMojoContent h2 {
  margin: 0;
}

.showMojoSec .btn {
  white-space: nowrap;
}

.showMojoContent .bigNumber {
  color: var(--primary);
  font-size: 60px;
  font-weight: 500;
  line-height: 1em;
}

.showMojoContentSp {
  margin-top: 2rem;
}

.showMojoContentSp .showMojoImgSec {
  width: calc(100% - 2rem - 427px);
}

.showMojoImgSec>img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  object-position: 50% 73%;
  border-radius: 7px;
}

.showMojoContentSp .showMojoContent {
  width: 427px;
  margin-right: auto;
  padding-top: 3rem;
}

.showMojoContentSp .showMojoContent hr {
  margin: 2.5rem 0;
  border-color: var(--borders);
}

.showMojoContentSp .showMojoContent ul {
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 20px;
}

.faqHolder {
  padding: 5rem 0;
  overflow: hidden;
}

.faqSec {
  display: flex;
  gap: 5rem;
}

.faqSec .faqImgSec {
  width: 50%;
}

.faqSec .faqImgSec img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-style: preserve-3d;
  border-radius: 5px;
}

.faqContentSec {
  width: 50%;
}

.faqContentSec p strong {
  font-weight: 500;
}

.faqContentSec h2 {
  margin: 0;
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  width: 100%;
}

.accordion-item:first-child {
  border-bottom: 1px solid var(--borders);
}

.accordion-item {
  border-bottom: 1px solid var(--borders);
  padding: 1rem 0;
}

.accordion-item button {
  width: 100%;
  border: 0;
  background: transparent;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2em;
  color: var(--black);
  text-align: left;
  font-style: italic;
  padding: 1.5rem 0 1.5rem 0;
  cursor: pointer;
  display: flex;
  gap: 1rem;
  transition: all 0.2s ease;

}

.accordion-item button::after {
  content: '';
  width: 16px;
  height: 24px;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNi4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iMjRweCIgaGVpZ2h0PSIxNC44M3B4IiB2aWV3Qm94PSIxMiAxNi45MiAyNCAxNC44MyIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAxMiAxNi45MiAyNCAxNC44MyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8cGF0aCBkPSJNMTQuODMsMTYuOTJMMjQsMjYuMDlsOS4xNy05LjE3TDM2LDE5Ljc1bC0xMiwxMmwtMTItMTJMMTQuODMsMTYuOTJ6Ii8+DQo8cGF0aCBmaWxsPSJub25lIiBkPSJNNDgtMC4yNXY0OEgwdi00OEg0OHoiLz4NCjwvc3ZnPg0K");
  background-repeat: no-repeat;
  background-size: 16px auto;
  background-position: center;
  margin-left: auto;
  transition: all 0.2s ease;
  flex: 0 0 16px;
  max-width: 16px;
}

.accordion-panel>p:first-child {
  margin-top: 0;
}

.accordion-panel.open {
  max-height: 200px;
}

.accordion-header.active {
  color: var(--primary);
}

.accordion-header.active::after {
  transform: rotate(180deg);
  filter: invert(37%) sepia(91%) saturate(1515%) hue-rotate(101deg) brightness(98%) contrast(101%);
}

footer {
  width: 100%;
  background: var(--black);
  padding: 20px 0;
  margin-top: 3rem;
}

.footerSec {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 3rem;
}

.footerSec p {
  color: var(--primary);
}

.footerSec .btn {
  white-space: nowrap;
}



@media only screen and (min-width: 1200px) and (max-width: 1339px) {
  .mainBannerContent {
    width: calc(100% - 2rem - 500px);
  }

  .powerCombineCounterSec .powerCombineCounterBlock strong {
    font-size: 4rem;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mainBannerContent {
    width: calc(100% - 2rem - 300px);
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  h3 {
    font-size: 1.8rem;
  }

  .mainBannerFormSec h3 {
    font-size: 1.8rem;
  }

  .powerCombineCounterSec .powerCombineCounterBlock strong {
    font-size: 3rem;
  }

  .faqSec {
    gap: 2rem;
  }

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .scheduleDemoDialog {
    display: none;
  }

  .mainBannerHolder {
    padding: 8rem 0 2rem 0;
  }

  .mainBannerFormSp>.d-flex {
    flex-direction: row !important;
  }

  .mainBannerContent {
    width: 100%;
  }

  .mainBannerFormSec {
    width: 100%;
  }

  .mainBannerSec {
    flex-direction: column;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  h3 {
    font-size: 1.8rem;
  }

  .mainBannerFormSec h3 {
    font-size: 1.8rem;
  }

  .powerCombineCounterSec .powerCombineCounterBlock strong {
    font-size: 3rem;
  }

  .d-flex {
    flex-direction: column !important;
  }

  .d-flex.align-items-center {
    align-items: flex-start !important;
  }

  .powerCombineHolder {
    overflow: hidden;
  }

  .powerCombineCounterSec {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .leasinggameSec .leasingGameCalloutSecSp {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .leasinggameHolder,
  .powerCombineHolder,
  .showMojoHolder {
    padding: 5rem 0;
  }

  .showMojoContentSp .showMojoContent {
    width: 100%;
  }

  .showMojoContentSp .showMojoImgSec {
    width: 100%;
  }

  .faqSec {
    gap: 2rem;
    flex-direction: column;
  }

  .faqSec .faqImgSec {
    width: 100%;
  }

  .faqSec .faqImgSec img {
    height: 350px;
  }

  .faqContentSec {
    width: 100%;
  }

  footer {
    margin-top: 0;
  }
}

@media only screen and (max-width: 767px) {

  .scheduleDemoDialog {
    display: none;
  }

  .mainBannerHolder {
    padding: 8rem 0 2rem 0;
  }

  .mainBannerContent {
    width: 100%;
  }

  .mainBannerFormSec {
    width: 100%;
  }

  .mainBannerSec {
    flex-direction: column;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

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

  .powerCombineCounterSec .powerCombineCounterBlock strong {
    font-size: 2rem;
  }

  .d-flex {
    flex-direction: column !important;
  }


  .d-flex.align-items-center {
    align-items: flex-start !important;
  }

  .powerCombineHolder {
    overflow: hidden;
  }

  .powerCombineSec {
    flex-direction: column;
    gap: 0;
  }

  .powerCombineCounterSec {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }


  .btn.is-large {
    padding: .75rem 1.5rem;
    font-size: 1rem;
  }

  .testimonialSliderSec.swiper-horizontal {
    margin-top: 0;
  }

  .powerCombineHolder,
  .testimonialsHolder {
    padding: 2rem 0;
  }


  .leasinggameSec .leasingGameCalloutSecSp {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .leasinggameHolder,
  .powerCombineHolder,
  .showMojoHolder {
    padding: 2rem 0;
  }

  .showMojoContentSp .showMojoContent {
    width: 100%;
  }

  .showMojoContentSp .showMojoImgSec {
    width: 100%;
  }

  .faqSec {
    gap: 2rem;
    flex-direction: column;
  }

  .faqSec .faqImgSec {
    width: 100%;
  }

  .faqSec .faqImgSec img {
    height: 350px;
  }

  .faqContentSec {
    width: 100%;
  }

  footer {
    margin-top: 0;
  }
}

@media only screen and (max-width: 575px) {
  .mainBannerFormSec {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.5rem;
  }

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

  .leasingGameCalloutSecSp .leasingGameCalloutSec {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .powerCombineCounterSec {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .mainBannerFormSp {
    justify-items: center;
    margin-bottom: 20px;
  }

  header .btn {
    display: none;
  }

  .accordion-item {
    padding: 0;
  }
}


/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {

  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " ("attr(href) ")";
  }

  abbr[title]::after {
    content: " ("attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}
