/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
   * {
	box-sizing: border-box;
  	}

   :root {
    --gold-color: #C9A45A ;
	--light-gold-color: #d8b163 ;
    --brown-color: #7D6026;
    --chamoisee-color: #96835D;
    --powder-color:#F5F4F2;
    --onyx-color: #27302C;
	--black-color:#3b3b3b;
	--black-olive-color: #38413D;
	--outer-space-color: #3B4742;
    --gunmetal-color:#212926;
	--eerie-black-color:#19201D;
	--font-header: "Playfair Display", Georgia, Garamond, serif;
	--font-paragraph: "Lato", Verdana, Arial, sans-serif;
  }

body::after {
	opacity: 0;
	visibility: hidden;
	content:"";
	position: fixed;
	z-index: 2000;
	left:0; right:0;
	top:0;
	background:white;
	width:100%;
	height:100%;
	transition: opacity .5s, visibility .5s;
}
body.loading::after {
	opacity:1;
	visibility: visible;
}

html {
	font-family: var(--font-paragraph);
	color: var(--black-color);
	font-size: 1em;
	line-height: 1.4;
	overflow-x:hidden;
  }
html.noscroll {overflow-y: hidden;}
  
  h1,h2 {
	font-family:var(--font-header);
	font-weight: normal;
	color: var(--brown-color);
	line-height: 1.6;
	letter-spacing: .0125em;
	margin-top: 0;
	}

	h1 {
		margin-bottom: 1.25em;
		font-size: 1.85rem;
	}

	.main_intro h1 {font-size: 2rem;}

	p {
		line-height: 2.5;
	}
	
  
  ::-moz-selection {
	background: #b3d4fc;
	text-shadow: none;
  }
  
  ::-moz-selection { /* Code for Firefox */
	color:white;
	background: var(--gold-color)
	text-shadow: none;
  }
  
  ::selection {
	color:white;
	background: var(--gold-color);
	text-shadow: none;
  }


  
  hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 1em 0;
	padding: 0;
  }
 
  audio,
  canvas,
  iframe,
  img,
  svg,
  video {
	vertical-align: middle;
  }
  
  fieldset {
	border: 0;
	margin: 0;
	padding: 0;
  }
  
  textarea {
	resize: vertical;
  }
  
/* Lenis Smooth Scroll */

  html.lenis, html.lenis body {
	height: auto;
  }
  
  .lenis.lenis-smooth {
	scroll-behavior: auto !important;
  }
  
  .lenis.lenis-smooth [data-lenis-prevent] {
	overscroll-behavior: contain;
  }
  
  .lenis.lenis-stopped {
	overflow: hidden;
  }
  
  .lenis.lenis-smooth iframe {
	pointer-events: none;
  }

  /* ==========================================================================
	 Author's custom styles
	 ========================================================================== */

	#header_nav {
		display: flex;
		position: absolute;
		z-index: 100;
		top:0; left:0;
		width:100%;
		border-bottom:1px solid hsl(0,0%,100%,.35);
  		background: hsla(0,0%,0%,.15);
		backdrop-filter:blur(2px);
	}
	#header_nav.v2 {
		border:none;
  		background: none;
	    backdrop-filter: none;
	} 

	#header_nav .navigation_logo {
		max-width: 7.5em;
	}

	#header_nav .left {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0 calc(1.25vw + 1.5rem);
		border-right:1px solid hsl(0,0%,100%,.35);}
	#header_nav .ico-instagram {
		font-size: 1.125rem;
	}
	#header_nav .right {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0 calc(1.25vw + 1.25rem);
		border-left:1px solid hsl(0,0%,100%,.35);}
	#header_nav ul {
		margin: 0 auto;
		padding:0;
	 }
	 #header_nav.v2 ul:first-child {
		width: 100%;
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		max-width: 70em;
	 }
	#header_nav li {
		display: inline-block;
		position: relative;
		margin: 0 clamp(.5rem,.5rem + 1vw, 1.5rem);
		padding:2em 0;
	 }

	 #header_nav.v2 li {
		margin:0 auto;
		padding:1.5em 0;
	 }

	 #header_nav.v2 li.contact a {
		background-color: var(--gold-color);
		padding: 1.25em 2.25em;
		border-radius: 3.5em;
	 }

	 #header_nav li.has-children {
		padding-right: .5em;
	 }
	#header_nav a {
		text-decoration: none;
		color:#fff;
		font-size: clamp(.75rem, .5rem + .5vw, .85rem);
		font-weight: 500;
		letter-spacing: .0625rem;
		text-transform: uppercase;
		transition: color .5s cubic-bezier(0,0,0.3,1), background-color .5s cubic-bezier(0,0,0.3,1);
	}

	#header_nav.v2 .contact a:hover {
		background-color: var(--light-gold-color);
		color:white}
	
	
	#header_nav .has-children > a:hover, #header_nav .with-children > a:hover {
		color:white
	}
	#header_nav .has-children:hover > a::after, #header_nav .with-children:hover > a::after {
		border-color: var(--gold-color);
	} 

	
	/* multilevel menu */
	#header_nav .has-children:hover > .first-level-menu, #header_nav .first-level-menu .with-children a:hover + ul,
	#header_nav .first-level-menu .with-children a + ul:hover {
		opacity: 1;
		visibility: visible;
		transform:none
	}
	#header_nav .has-children > a {
		position: relative;
		cursor: default;
		padding-right: .5em;
	}
	
	/* dropdown arrows */
	#header_nav .has-children > a:after, #header_nav .with-children > a:after {
		content:"";
		border: solid hsla(0,0%,100%,.85);
		border-width: 0 2px 2px 0;
		padding: .185em;
		transform: translate3d(0,-70%,0) rotate(45deg);
		position: absolute;
		top: 50%; right: -.5em;
		transition: border-color .5s cubic-bezier(0,0,0.3,1)
	}
	#header_nav .destinations > a:after {
		right: -.125em;
	}

	#header_nav .with-children > a:after {
		right:1.25em;
		transform: translate3d(0,-50%,0) rotate(-45deg);
	}
	
	#header_nav .first-level-menu a {
		display: block;
		position: relative;
		padding: .85em 1.25em;
		min-width:14em;
		text-transform: capitalize;
		font-size: .9375rem;
		font-weight: 300;
		letter-spacing: 0;
	}
	#header_nav .first-level-menu a:hover {
		color: white;
		background:var(--black-olive-color)
	}
	#header_nav .first-level-menu li:hover a:after {
		border-color: var(--gold-color);
	}

	#header_nav .first-level-menu, #header_nav .second-level-menu {
		opacity: 0; 
		visibility: hidden; 
		display:flex;
		flex-direction: column;
		position: absolute;
		top:100%;
		background:var(--onyx-color);
		box-shadow: 2px 2px 15px hsla(0,0%,0%,.1);
		transform:translate3d(0,1em,0);
		transition: transform .25s ease,opacity .25s ease, visibility .25s ease;
	}
	#header_nav.v2 .second-level-menu {top:0}
	#header_nav .second-level-menu {
		left:100%;
		top:0;
		background:var(--black-olive-color);
	}
	#header_nav .second-level-menu a:hover {
		color: var(--light-gold-color);
		background-color: var(--outer-space-color);
	}

	#header_nav .first-level-menu > li, #header_nav .second-level-menu > li{
		position: relative;
		padding:0;
		margin:0;
	}
	#header_nav .first-level-menu > li:last-child, #header_nav .second-level-menu > li:last-child {
		border:none
	}

	#hero{
		display: flex;
		flex-direction: column;
		position: relative;
		width: 100vw;
		height: 100vh;
		color:#fff;
		text-align: center;
		overflow:hidden;
	}

	#hero.short {
		height:70vh;
		min-height:0
	}
	#hero.short .background {
		max-height:70vh
	}
	
	#hero.short:before {
		opacity:.9;
		background-color:var(--onyx-color);
	}


	#hero .background {
		position: absolute;
		top:0; left:0; right:0;
		height: 100%;
		width: 100vw;
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
	#hero:before{
		position: absolute;
		top:0; left: 0;
		content:"";
		z-index: 1;
		width:100%;
		height:100%;
		background: rgba(0,0,0,.25);
		background: linear-gradient(180deg,rgba(0,0,0,.35),hsla(0,0%,0%,.1) 50%);
	}
	.hero-container{
		display: flex;
		position: relative;
		height: 100%;
	}
	#hero .text-wrapper {
		display: flex;
		flex-direction: column;
		position: relative;
		z-index: 1;
		width:100%;
		max-width: 83rem;
		padding:calc(5vw + 4em) 1.5em;
		margin:0 auto;
		text-align: left;
		align-items: flex-start;
		justify-content: center;
	}

	#hero .text-wrapper h1{
		font-size: clamp(1.85rem,1.85rem + 1.5vw,3rem);
		line-height: 1.4;
		margin-bottom: .5em;
		color:white
	}
	#hero .text-wrapper h3 {
		font-weight: 600;
		text-transform: none;
		color:white;
	}
	
	#hero .text-wrapper p {
		font-size: calc(1rem + .125vw);
		line-height: 1.8;
		font-weight: 300;
	}
	#hero .text {max-width: 37rem;}

	.scrolldown {
		position: absolute;
		right: clamp(2em,1.5em + 3vw,5.5em);
		bottom: 4em;
		z-index: 2;
		font-size: .65rem;
		text-transform: uppercase;
		letter-spacing: .125em;
		transform: rotate(90deg);
		transform-origin: right bottom;
		padding-right: 5em;
	}
	.scrolldown:after {
		position: absolute;
		content: "";
		bottom: 50%;
		right: 0;
		height: 1px;
		width: 4em;
		background: white;
	}

	.container {
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		padding:clamp(2.5em,3.5em + 5vw,7.5em) 1.5em;
		margin:0 auto;
		max-width: 94em;
	}
	.spacing-top {padding-top: clamp(2.5em,3.5em + 5vw,7.5em);}
	.spacing-bottom {padding-bottom: clamp(2.5em,3.5em + 5vw,7.5em);}
	.spacing-left {margin-left: 7.5%;}
	.spacing-right {margin-right: 7.5%;}

	.flex-column {flex-direction: column;}
	.text-wrapper {
		max-width: 30em;
	}
	
	.text-wrapper.center {
		text-align: center;
		max-width: 45em;
	}
	.text-wrapper.left {margin-left: 7.5%;}
	.text-wrapper.right {margin-right: 7.5%;}
	
	.text-wrapper h2, h2.subheading {
		font-size: clamp(1.75rem, 1.5rem + 1vw, 2rem);
		font-weight: 500;
		line-height: 1.5;
		color:var(--brown-color);
	}
	
	#intro .text-wrapper h2, .text-wrapper.main h2, h2.heading {
		font-size: clamp(1.85rem, 1.5rem + 1.25vw, 2.25rem);
		line-height: 1.5;
	}
	.text-wrapper h3 {
		margin-top: 0;
		text-transform: uppercase;
		color:var(--gold-color);
		font-size: clamp(.9375rem, .5rem + .75vw, 1rem);
		letter-spacing: .075em;
	}
	.text-wrapper p {
		margin: 0;
		font-size: clamp(.9375rem, .5rem + .5vw, 1.05rem);
	}

	.text-wrapper a:not(.button) {
		color: var(--gold-color);
  		font-weight: 600;
		text-decoration: underline;
	}
	br {margin-bottom: 1em;}
	
	a.instagram_ {
		position: absolute;
		bottom:0; right:0;
		display: inline-block;
		color:white;
	}
	a.instagram_::before {
		position: absolute;
		left:1em; top:50%;
		font-family: "mandala";
		content:"\61";
		color:var(--gold-color);
		transform:translate3d(0,-50%,0)
	}
	a.instagram_ figcaption {
		background-color: var(--onyx-color);
		padding:.65em 1.25em .85em;
		padding-left: 2.5em;
	}

	section.olive {
		background-color:var(--black-olive-color);
	}
	section.powder {
		background-color:var(--powder-color);
	}

	.button {
		display: inline-block;
		position: relative;
		overflow: hidden;
		color: white;
		font-weight: 700;
		text-transform: uppercase;
		font-size: .825em;
		background: var(--gold-color);
		padding: 1.5em 1.75em;
		text-align: center;
		letter-spacing: .075em;
		margin-top: 4.5em;
		cursor: pointer;
	}
	.button::after {
		content:"";
		position: absolute;
		left:0; top:0;
		width:0;
		height:100%;
		background:var(--light-gold-color);
		transition: .35s cubic-bezier(0,0,0.3,1);
	}
	.button:hover::after {
		width:100%;
	}
	.button span {
		position: relative;
		z-index: 2;
	}

	.arrowButton {
		display: inline-block;
		position: relative;
		width: auto;
		height: 3.75em;
		padding-right: 1.75em;
		margin-top:3em;
		background:none;
		border:none;
		cursor: pointer;
		font-size: 1rem
	  }

	.arrowButton::before {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		height: 3.5em;
		width: 3.5em;
		border: 2px solid white;
		border-radius: 3.5em;
		transition: all 0.45s cubic-bezier(0.65,0,0.076,1);
	  }

	.arrowButton.gold::before {border: 2px solid var(--gold-color);}

	.arrowButton b {
		position: relative;
		z-index: 2;
		display: inline-block;
		color:white;
		margin-left: 1.25em;
		vertical-align: middle;
		text-transform: uppercase;
		font-size: .825em;
		letter-spacing: .125em;
		font-weight: 800;
		transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
	}
	
	.arrowButton.gold b {color:var(--gold-color);}

	.arrowButton .arrow {
		display: inline-block;
		position: relative;
		vertical-align: middle;
		width: 60px;
		height: 100%;
	}
	.arrowButton .arrow::before {
		position: absolute;
	  content: "";
	  top: 50%;
	  left: 50%;
	  width: 8px;
	  height:8px;
	  border-top: 2px solid white;
	  border-right: 2px solid white;
	  transform: translate3d(-50%,-50%,0) rotate(45deg);
	  transition: all 0.45s cubic-bezier(0.65,0,0.076,1);
	}
	.arrowButton.gold .arrow::before {
		
		border-top: 2px solid var(--gold-color);
		border-right: 2px solid var(--gold-color);
	}
	.arrowButton .arrow::after {
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		width: 21px;
		height: 2px;
		background: none;
		transform: translate3d(14px,-50%,0);
		transition: all 0.45s cubic-bezier(0.65,0,0.076,1);
	  }
	.arrowButton:hover b {
		color: white;
	}
	.arrowButton:hover:before {
		width: 100%;
		background-color: var(--gold-color);
		border-color: var(--gold-color);
	}
	.arrowButton:hover .arrow::before {
		transform: translate3d(8px, -50%, 0) rotate(45deg);
		border-color: white;
	}

	.arrowButton:hover .arrow::after {
		background: white;
		transform: translate3d(26px, -50%, 0);
	}

	footer .top {
		display: flex;
		background-color: var(--onyx-color);
	}
	footer .bottom {background-color: var(--gunmetal-color);}
	footer .subscription-wrapper {
		z-index: 1;
		display: flex;
		flex-direction: column;		
		align-items: center;
		justify-content: center;
		width:50%;
		padding: 0 1.5em;
		background-color: var(--onyx-color);
	}
	footer .subscription {max-width: 27em;}
	footer h2 {
		color:white;
		font-size: clamp(1.75rem, 1rem + 1vw, 2rem)
	}


	#ic_signupform {
		margin-top:3em;
	}
	#ic_signupform input {
		border:none;
		height:100%;
		width:100%;
		padding: 0 1.25em;
		color:white;
		background-color: var(--black-olive-color);
	}
	.sortables {display: flex;}


	#ic_signupform button {
		background-color: var(--gold-color);
		border: none;
		font-weight: 900;
		text-transform: uppercase;
		font-size: 0.825em;
		color: white;
		letter-spacing: .075em;
		padding: 1.5em 1.75em;
		cursor: pointer;
		transition: color .5s cubic-bezier(0,0,0.3,1), background-color .5s cubic-bezier(0,0,0.3,1);
	}

	#ic_signupform button:hover {
		background-color: var(--light-gold-color);
	}


	footer .logo {
		display: flex;
		margin-bottom:1.5em;}
	footer .logo img {
		width:100%;
		max-width:14em
	}
	footer .navigation .container {
		color:white;
		align-items: self-start;
		justify-content: space-between;
		padding: calc(2vw + 3.5em) 2.5em 0;
	}
	footer .emblems .container {
		padding: calc(3em + 2vw) 2.5em;
		justify-content: flex-start;
	}
	footer .emblems .container a {
		margin-right: 4em;
	}
	footer .emblems .container a:last-child {
		margin-right: 0;
	}
	footer .emblems img {
		height: calc(.5vw + 5.75em);
	}
	footer .emblems img.serendipians {
		height: calc(.5vw + 2.75em);
	} 


	footer a {
		color:rgba(255, 255, 255, 0.726);
		transition: color .25s
	}
	footer .links {
		display: flex;
		width: calc(90% - 13.5em);
		max-width: 38em;
		color: white;
		justify-content: space-between;
	}
	footer .column {
		align-items: stretch;
		justify-content: space-between;
	}
	footer .column:first-child {
		margin-right: 5%;}
	footer .column:last-child {margin-left: 7%;}
	footer .links li {
		margin-top:.5em
	}
	footer .links li:first-child {margin-top:0}

	footer .links h3 {
		text-transform: uppercase;
		font-size: .85rem;
		font-weight: 800;
		color:white;
		letter-spacing: .125em;
		margin:0 0 1.5em
	}
	footer .links a {
		font-size: .9375rem;
		font-weight: 300;
	}
	footer .links a:hover {color:var(--gold-color)}
	
	footer .contact-info {
		width:13.125em;
		font-weight: 300;
		width: auto;
	}

	footer .contact-info p {
		margin:0;
		font-size: .9375rem;
		line-height: 1.6;
	}
	footer .address {
		margin-bottom:1.5em
	}
	footer .address p {
		margin-bottom: .125em;
	}
	footer b {
		font-weight: 900;
	}
	footer .contact-info b {
		margin-right: .75em;
	}
	footer .copyright .container {
		color:white;
		padding:1.5em 2.5em;
		justify-content: space-between;
	}

	 /* ==========================================================================
	 Helper classes
	 ========================================================================== */
  
  .clearfix::before,
  .clearfix::after {
	content: "";
	display: table;
  }
  
  .clearfix::after {
	clear: both;
  }

  .hidden {
	display: none;
  }
  
  .white h1, .white h2, .white p {color:white}
  .space-around {justify-content: space-around;}
  /* ==========================================================================
	 EXAMPLE Media Queries for Responsive Design.
	 These examples override the primary ('mobile first') styles.
	 Modify as content requires.
	 ========================================================================== */

	 
@media only screen and (max-width: 64rem) {

	#header_nav,.scrolldown {display:none}

    footer .subscription-wrapper {
        padding:calc(2vw + 3em) 1.5em;
    }
	footer .navigation .container {
		padding:calc(2.5vw + 4em) 1.5em 0;
	}
	footer .emblems .container {
		padding: calc(5em + 2vw) 2.5em calc(4em + 2vw);
		font-size: .9375rem;
	}
	footer .emblems .container a {
		margin-right: 8.5%;
	}

	footer .top {
		flex-direction: column;
	}
	footer .copyright .container {
		padding:1.5em;
	}

}

@media only screen and (max-width:60rem) {
	
	footer .links {flex-direction: column;}
	footer .links h3 {
		position: relative;
		padding:1.125em 3.5em 1.125em .25em;
		font-size: .825rem;
		margin-bottom:0;
		transition: color .25s
	}
	footer .navigation .container {
		justify-content: space-around;
	}
	
	#footer_accordion {
		flex-basis: calc(70% - 7.5%);
		margin-right: 7.5%;
		max-width: 28em;
	}
	footer .contact-info {
		flex-basis: 30%;
		min-width: 12em;
		max-width: 14em;
	}
	#footer_accordion .column.active h4,#footer_accordion .links h4:hover,
	#footer_accordion a:hover {color:var(--gold-color)}
	footer .navigation ul {
		opacity: 0;
		visibility: hidden;
		overflow: hidden;
		max-height:0;
		padding-left:1em;
	}
	footer .column.active ul {
		opacity: 1;
		visibility: visible;
		position: relative;
		max-height:13em;
		margin-bottom:1.25em;
	}
	footer .links {
		width: calc(100% - 17.9375em - 1.5em);
	}
	footer .navigation .container {
		align-items: flex-start;
	  }


	footer .column {
		overflow:hidden;
		margin:0!important;
		border-bottom:1px solid hsla(0, 0%, 100%,.25);
	}

	.plus-minus {
		display: inline-block;
		height: 12px;
		position: absolute;
		right:1em;
		width: 12px;
		min-width: 12px;
		margin-right: 0;
		margin-left: 1em;
	}
	.plus-minus:before,	.plus-minus:after {
		background: hsl(0,0%,45%);
		content: '';
		height: 2px;
		left: 0;
		position: absolute;
		top: 70%;
		width: 100%;
		transform: translate3d(0,-50%,0) rotate(180deg) ;
		transition: transform 500ms ease, background-color .5s ease;
	}
	.plus-minus:after {
		transform-origin: center;
		transform: translate3d(0,-50%,0) rotate(90deg);
	}
	footer .column.active .plus-minus:before, footer .column.active .plus-minus:after {
		transform:none;
		background: hsl(0,0%,75%);
	}

	#footer_accordion.animate ul {transition: opacity .25s, visibility .25s, max-height .5s, margin-bottom .5s;}
	#footer_accordion.animate .active ul {transition: opacity .5s .25s, visibility .5s .25s, max-height .5s, margin-bottom .5s;}
	footer .emblems .container {
		justify-content: center;
	}
}

@media only screen and (max-width:40rem) {
	body::before {
		display: none;
		content:"640px"}

	#footer_accordion {
		flex-basis: 100%;
		margin-right: 0;
		max-width: 35em;
		margin-bottom: 5em;
	}
	footer .contact-info {
		flex-basis: 100%;
		max-width: none;
		padding: calc(2vw + 1em) 0;
	}
	footer .copyright .container {flex-direction: column;}
	footer .copyright small:first-child {margin-bottom:.75em}

	footer .navigation .container {
		flex-direction: column;
		align-items: center;
		padding-right: 1.5em;
		padding-bottom: 0;
	}

	footer .navigation .links {
		width:100%;
	}	
}

@media only screen and (max-width: 32rem) {
	.hero-container {min-height: 70vh;}

	
	footer .emblems {margin:5vw 0}
	footer .emblems .container {
		flex-direction: column;
		padding: calc(3em + 2.5vw) 2.5em calc(2em + 2vw);
		font-size: calc(.75vw + 1em);
	}
	footer .emblems .container a {
		margin-right:0;
		margin-bottom: calc(5vw + 2em);
	}
	
	footer .emblems .container a:last-child {margin-bottom:0;}
	footer .emblems img.serendipians {
		height: calc(1vw + 2.5em);
	  }
	footer .copyright {text-align: center;}
}

@media only screen and (max-width: 28.75rem) {
	.sortables {flex-direction: column;}

	#ic_signupform input {
		padding: 1.25em 1.75em;
	}
	#ic_signupform button {
		width:100%;
	}
    .formEl {margin-bottom:.5em}
}
  @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;
	}
  }
  
  