/*! HTML5 Boilerplate v7.1.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 1.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;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * 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;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}




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

html {
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: #f2f2f2;
}

/*Globales*/
.container {
    width: 98%;
    margin: 0 auto;
}
@media only screen and (min-width: 480px) {
    .container {
        width: 95%;
    }
}
@media only screen and (min-width: 768px) {
    .container {
        width: 90%;
    }
}
@media only screen and (min-width: 992px) {
    .container {
        width: 90%;
        max-width: 1200px;
    }
}

h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.6em;
    text-transform: uppercase;
    text-align: center;
    font-weight: lighter;
}

h2::after {
    content: '';
    margin: 0 auto;
    background-image: url(../img/underline.png);
    height: 15px;
    width: 150px;
    display: block;
}
@media only screen and (min-width: 992px) {
    h2::after {
        background-image: url(../img/underline.svg);
        height: 13px;
        width: 110px;
    }
}

h3 {
    font-size: 1.3em;
    color: #fe4918;
    font-family: 'Oswald', sans-serif;
    margin: 0;
    text-transform: uppercase;
    text-align: center;
}

h4 {
    font-size: .9em;
    text-align: center;
    text-transform: uppercase;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

section.container-section {
    padding: 40px 10px;
}

section.container-section > p {
    text-align: center;
    font-size: 1.2em;
}

p.number {
    color: #fe4918;
    font-size: 3.5em;
    display: block;
    margin: 0 0 10px 0;
    font-family: 'Oswald', sans-serif;
}

.button {
    text-decoration: none;
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
    text-transform: initial;
    background-color: rgba(254, 73, 24, 0.70);
    padding: 18px 24px;
    border-radius: 5px;
    cursor: pointer;
}

.button:hover {
    background-color: #fe4918;
}

.button.hollow, .button.hollow:hover {
    background-color: #ffffff;
    color: #fe4918;
    border: 1.5px solid #fe4918;
}

.parallax::before {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    filter: brightness(0.8);
    -webkit-filter: brightness(0.8);
}

.alert {
    padding: 6px;
    margin: 2px 0px;
    color: #ffffff;
    opacity: 1;
    transition: opacity 0.6s;
    border-radius: 5px;
    font-size: .8em;
}

.success {
    background-color: #4caf50;
}

.danger {
    background-color: #f44336;
}


/*Header*/
div.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)), url(../img/bg_header.png);
    height: 100vh;
    background-position: top center;
    background-size: cover;
    position: relative;
}

div.container-header {
    padding: 20px;
    position: absolute;
    top: 30%;
    left: 0%;
    transform: translate(0%, -30%);
}
@media only screen and (min-width: 768px) {
    div.container-header {
        padding: 40px;
    }
}

div.description-header {
    text-align: left;
    color: #ffffff;
}

div.description-header h1 {
    font-size: 8vw;
    font-family: 'Raleway', sans-serif;
    font-weight: lighter;
}
@media only screen and (min-width: 768px) {
    div.description-header h1 {
        font-size: 5.9vw; 
    }
}

div.description-header h1 #typewriter-prefix {
    color: #fe4918;
}

div.description-header p {
    font-size: 1.3em;
    font-family: 'Raleway', sans-serif;
    padding-bottom: 30px;
}

div.description-header .button {
    text-transform: uppercase;
}
  
div.scroll-down {
    display: none;
    position: absolute;
    text-align: center;
    width: 100%;
    top: 80%;
}
@media only screen and (min-width: 768px) {
    div.scroll-down{
        display: block;
    }
}

div.scroll-down a {
    text-decoration: none;
    cursor: pointer;
}
  
div.scroll-down p {
    text-transform: uppercase;
    font-weight: bold;
    color: #ffffff;
    margin: 5px;
}

div.scroll-down i {
    position: relative;
    font-size: 1.5em;
    color: #fe4918;
    -webkit-animation: efectmove 1s ease 0s infinite alternate; /* Safari 4.0 - 8.0 */
    animation: efectmove 1s ease 0s infinite alternate;
}
@-webkit-keyframes efectmove {
    0%   {top:0px;}
    100%   {top:20px;}
}
@keyframes efectmove {
    0%   {top:0px;}
    100%   {top:20px;}
}

.slogan span {
    font-weight: bold;
}

nav.social-networking {
    position: absolute;
    bottom: 0%;
    left: 0%;
    padding: 20px;
}

nav.social-networking a {
    color: rgba(254, 73, 24, 0.70);
    font-size: 1.3em;
    margin-right: 10px;
}

nav.social-networking a:hover {
    color: rgba(254, 73, 24, 0.40);
}
@media only screen and (min-width: 768px) {
    nav.social-networking {
        padding: 40px;
    }
}

/*Form Contact Modal*/
div.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(53, 53, 53, .70);
    padding-top:60px;
}
@media only screen and  (min-width: 768px) {
    div.modal {
        padding-top:30px;
    }
}

form.modal-content {
    background-color: #fefefe;
    margin: 5% auto 15% auto;
    border: 1px solid #888;
    width: 95%;
}

span.close {
    position: absolute;
    right: 20px;
    top: 60px;
    font-size: 3.5em;
    font-weight: bold;
    color: #f1f1f1;
}
@media only screen and (min-width: 768px) {
    span.close {
        right: 35px;
        top: 15px;
    }
}
@media only screen and (min-width: 992px) {
    span.close {
        right: 25px;
        top: 10px;
    }
}

span.close:hover, .close:focus {
    color: #fe4918;
    cursor: pointer;
}

form.contact-us {
    border:1px solid #fe4918;
    padding: 20px;
}

div.modal {
    z-index: 2;
}

div.modal input#modal-name, input#modal-email, input#modal-phone, textarea#modal-message {
    width: 100%;
    padding: 6px;
    margin: 2px 0px;
    border: 1px solid #ccc;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: none;
    border-radius: 5px;
    resize: vertical;
    color: #353535; 
}

div.modal input#modal-name:focus, input#modal-email:focus, input#modal-phone:focus, textarea#modal-message:focus {
    border: 1px solid rgba(254, 73, 24, 0.70);
}

div.modal textarea#modal-message {
    resize: none;
}

div.modal input[type=submit] {
    background-color:rgba(254, 73, 24, 0.70);
    color: white;
    padding: 10px 20px;
    margin: 20px 0px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: block;
}
  
div.modal input[type=submit]:hover {
background-color: #fe4918;
}

/*Navbar*/
div.navbar {
    background-color: rgba(53, 53, 53, 1);
}

div.logo {
    float: left;
    width: 80%;
}

@media only screen and (min-width: 480px) {
    div.logo {
        width: 50%;
    }
}
@media only screen and (min-width: 768px) {
    div.logo {
        width: 25%;
    }
}

div.logo img {
    width: 30%;
}
@media only screen and (min-width: 768px) {
    div.logo img {
        width: 50%;
    }
}
@media only screen and (min-width: 992px) {
    div.logo img {
        width: 65%;
    }
}
@media only screen and (min-width: 1200px) {
    div.logo img {
        width: 70%;
    }
}

/*Main Navigation*/
div.main-nav {
   display: none;
   width: 100%;
}

div.main-nav a {
    font-family: 'Oswald', sans-serif;
    color: #ffffff;
    font-size: 1.3em;
    text-decoration: none;
    text-transform: uppercase;
    width: 100%;
    display: block;
    text-align: center;
    transition: all .3s ease;
    clear: both;
}

div.main-nav a:last-child {
    color: rgba(254, 73, 24, 0.60);
}


div.main-nav a:hover {
    color: #fe4918;
}

@media only screen and (min-width: 992px) {
    div.main-nav {
        width: 75%;
        float: right;
        text-align: right;
        display: block;
    }

    div.main-nav a {
        display: inline-block;
        text-align: center;
        width: 180px;
        padding: 20px 0px;
    }
}

/*Movil Menu*/
div.movil-menu {
    color: #ffffff;
    float: right;
    text-align: center;
    padding: 2% 0;
}
@media only screen and (min-width: 992px) {
    div.movil-menu {
        display: none;
    }
}

div.movil-menu:hover {
    cursor: pointer;
}

div.movil-menu i {
    font-size: 3em;
}

/*Go Up*/
div.goUp {
    background-color: rgba(254, 73, 24, 0.70);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    line-height: 20px;
    padding: 13px 15px;
    font-size: 1.1rem;
    display: none;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
    transition: all .3s ease visibility .5s;
    position: fixed;
    bottom: 50px;
    right: 15px;
    z-index: 1;
}
@media only screen and (min-width: 768px) {
    div.goUp {
        bottom: 40px;
    }
}
@media only screen and (min-width: 992px) {
    div.goUp {
        bottom: 15px;
    }
}

div.goUp:hover {
    background-color: #fe4918;
}

/*About*/
section.bg-about {
    background-image: url(../img/bg_about.jpg);
}

div.about-description {
    text-align: justify;
}

div.about-image {
    text-align: center;
}

div.about-image img {
    width: 250px;
}

@media only screen and (min-width:768px) {
    div.about-description {
        padding: 0px 20px;
        float: left;
        width: 70%;
    }

    div.about-image {
        padding: 36px 20px;
        float: left;
        width: 30%;
    }
}

/*Works*/
div.services {
    text-align: center;
    margin-top: 40px;
}

div.service {
    padding: 0px 30px;
}
@media only screen and (min-width:768px) {
    div.service {
        float: left;
        width: 33.3%;
    }
}

div.service i {
    font-size: 3em;
    color: #fe4918;
}

div.service p {
    text-align: left;
    line-height: 1.5em;
}


/*Testimonials*/
div.testimonials {
    margin-top: 40px;
}

div.testimony {
    padding: 5px;
}
/* @media only screen and (min-width:768px) {
    div.testimony {
        float: left;
        width: 33.3%;
    }
} */

blockquote {
    background-color: #ffffff;
    border: 1px solid #e1e1e1;
    position: relative;
    margin: 0 0 10px 0;
}
  
blockquote p {
    text-align: justify !important;
    font-size: 1em !important;
    font-family: 'PT Sans', sans-serif;
    padding: 0 20px 0 50px;
}

blockquote p::before {
    content: '\201c';
    position: absolute;
    left: 13px;
    top: 8px;
    font-size: 6rem;
    margin: 0;
    padding: 0;
    line-height: 1;
    color: #fe4918;
}

footer.testimony-info {
    padding: 0;
}

footer.testimony-info img {
    float: left;
    width: 20%;
    border-radius: 50%;
    margin-left: 20px;
}

footer.testimony-info cite {
    text-align: left;
    color: #fe4918;
    text-transform: uppercase;
    font-size: 12px;
    padding-top: 20px;
    width: 66.6%;
    float: right;
    font-weight: bold;
    font-style: normal;
}

footer.testimony-info cite span {
    color: #000000;
    display: block;
    text-transform: none;
    margin-top: 5px;
}

/*Counter*/
div.counter {
    position: relative;
    height: auto;
}

div.counter::before {
    background-image: url(../img/bg_summary.jpg);
    content: '';
}

div.summary-header {
    position: relative;
    text-align: center;
    padding-top: 60px;
}

div.summary-header p {
    font-size: 1.2em;
    color: #ffffff;
}

ul.customer-summary {
    position: relative;
    padding: 40px 0 80px 0;
}

ul.customer-summary li {
    width: 50%;
    float: left;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-size: 1.4em;
}
@media only screen and (min-width: 768px) {
    ul.customer-summary li {
        width: 25%;
    }
}

/*Plans*/
section#plans > div.container {
    margin-top: 40px;
}

ul.price-list > li {
    padding: 10px;
}
@media only screen and (min-width: 768px) {
    ul.price-list > li {
        float: left;
        width: 33.3%;
    }
}

div.price-table {
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    background-color: #575e6b;
    padding: 40px 0;
    text-align: center;
    transition: all .3s ease;
}

div.price-table h3 {
    font-size: 1.5em;
    color: #ffffff;
}

div.price-table:hover {
    transform: scale(1.002);
    border-color: #fe4918;
    box-shadow: 0 0 50px #666;
}

div.price-table ul {
    text-align: left;
    padding: 30px 20px 0px 30px;
}

div.price-table ul:last-of-type {
    padding: 0px 20px 20px 30px;
}

div.price-table ul li {
    font-family: 'PT-Sans', sans-serif;
    font-size: 1em;
    margin-bottom: 10px;
    color: #ffffff;
    line-height: 20px;
}

div.price-table ul li::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    display: inline-block;
    vertical-align: top;
    padding: 0 5px;
    font-size: 15px;
    color: rgb(0, 255, 0);
    -webkit-font-smoothing: antialiased;
    content: '\f00c';
}

div.price-table p.number {
    color: #000000;
    margin: 20px 0;
}

div.price-table a.button {
    padding: 15px 30px;
}

div.price-table ul.sb-table {
    display: none;
}

div.price-table div.flip {
    padding: 0px 0px 40px 0px;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
}

div.price-table div.flip:hover {
    font-weight: bold;
}

div.price-table div.flip:hover i {
    color: #fe4918;
}

blockquote.fine-print {
    background-color: rgba(0, 0, 0, 0);
    border: none;
    margin: 0px 15px 0px 0px;
  }

blockquote p#fine-print::before {
    content: '*';
    position: absolute;
    left: 20px;
    top: -3px;
    font-size: 3rem;
    margin: 0;
    padding: 0;
    line-height: 1;
    color: #fe4918;
  }

blockquote p#fine-print {
    padding-left: 45px;
    font-size: .9em !important;
    margin: 0px;
}

/* Support */
section#support {
    padding-top: unset;
}

section#support > div.container {
    margin-top: 40px;
}

ul.support-list > li {
    padding: 10px;
}
@media only screen and (min-width: 768px) {
    ul.support-list > li {
        float: left;
        width: 33.3%;
    }
}

div.support-plan {
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    background-color: #575e6b;
    padding: 40px 0;
    text-align: center;
    transition: all .3s ease;
}

div.support-plan h3 {
    font-size: 1.5em;
    color: #ffffff;
}

div.support-plan ul {
    text-align: left;
    padding: 30px 20px 0px 30px;
}

div.support-plan ul li {
    font-family: 'PT-Sans', sans-serif;
    font-size: 1em;
    margin-bottom: 10px;
    color: #ffffff;
    line-height: 20px;
}

div.support-plan ul li::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    display: inline-block;
    vertical-align: top;
    padding: 0 5px;
    font-size: 15px;
    color: rgb(0, 255, 0);
    -webkit-font-smoothing: antialiased;
    content: '\f00c';
}

/* Banner e-Commerce */
section#ecommerce img {
    max-width: 100%;
}

/*Footer*/
.footer-site {
    background-color: #353535;
    padding-top: 40px;
    margin-top: 20px;
    text-align: justify;
}

.footer-site .container > div {
    color: #ffffff;
    padding: 0 20px;
    font-size: 1em;
}
@media only screen and (min-width: 768px) {
    .footer-site .container > div {
        width: 33.3%;
        float: left;
    }
}

.footer-site h3 {
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-site h3 span {
    color: #fe4918;
}

.footer-site .about p i {
    color: #fe4918;
}

.footer-site .institutional a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin: 16px 0px;
}

.footer-site .social a {
    font-size: 1.5em;
    margin-right: 10px;
    color: rgba(254, 73, 24, 0.70);
}

.footer-site .social a:hover {
    color: rgba(254, 73, 24, 0.40);
}

input[type=tel], input[type=text], input[type=Email], textarea {
    width: 100%;
    padding: 6px;
    margin: 2px 0px;
    border: none;
    border-radius: 5px;
    resize: vertical;
    background-color: rgba(255, 255, 255, 0.15);
    outline: none;
    color: #ffffff;
}

.footer-site textarea {
    resize: none;
}

input[type=submit] {
    background-color:rgba(254, 73, 24, 0.70);
    color: white;
    padding: 10px 20px;
    margin: 2px 0px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
  
input[type=submit]:hover {
background-color: #fe4918;
}

.footer-site p.copyright {
    background-color: #2e2e2e;
    color: #ffffff;
    padding: 10px 0;
    margin: 20px 0 0 0;
    text-align: center;
}

/*Other footer pages*/
.contact-social {
    text-align: center;
}

.footer-logo {
    margin: 16px auto;
    width: 80%;
}

@media only screen and (min-width: 480px) {
    .footer-logo {
        width: 50%;
    }
}
@media only screen and (min-width: 768px) {
    .footer-logo {
        width: 60%;
    }
}

.footer-logo img {
    width: 100%;
}

/*Politics and Terms*/
.page {
    text-align: justify;
}

.page ol li {
    text-transform: capitalize;
    font-size: 1.3em;
    color: #fe4918;
    font-family: 'Oswald', sans-serif;
}

/*Send Message*/
div.result {
    text-align: center;
}

div.result .contact-logo {
    width: 70%;
    margin: 20px auto 0px auto;
}

@media only screen and (min-width: 480px) {
    div.result .contact-logo {
        width: 50%;
    }
}
@media only screen and (min-width: 768px) {
    div.result .contact-logo {
        width: 25%;
    }
}

div.contact-logo img {
    width: 100%;
}

/* Newsletter */
.newsletter {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
}

.newsletter div#mc_embed_signup_scroll p {
    text-transform: uppercase;
    font-weight: bold;
}

.newsletter .mc-field-group {
    padding-bottom: 0px !important;
    /* width: 70% !important; */
    float: left;
    margin-right: .5rem;
}
@media only screen and (min-width: 768px) {
    .newsletter .mc-field-group {
        width: 70% !important;
    }
}

.newsletter form#mc-embedded-subscribe-form #mce-EMAIL {
    border: 1px solid #3535354f;
    color: #000000;
    padding: 10px 20px;
    text-indent: 0%;
    margin: 0px;

}

.newsletter form#mc-embedded-subscribe-form #mce-EMAIL:hover {
   border-color: #fe4918;
}

div#main-submit input#mc-embedded-subscribe {
    display: inline;
    margin: 0px;
}

blockquote p#fine-print-newsletter::before {
    content: '*';
    position: absolute;
    left: 0px;
    top: 7px;
    font-size: 2.5rem;
    margin: 0;
    padding: 0;
    line-height: 1;
    color: #fe4918;
  }

blockquote p#fine-print-newsletter {
    padding: 10px 20px 20px 20px;
    font-size: .8em !important;
    margin: 0px;
}





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

/*
 * Hide visually and from screen readers
 */

 .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
*/

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

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

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

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

.invisible {
  visibility: hidden;
}

/*
* Clearfix: contain floats
*
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
*    `contenteditable` attribute is included anywhere else in the document.
*    Otherwise it causes space to appear at the top and bottom of elements
*    that receive the `clearfix` class.
* 2. 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: " "; /* 1 */
  display: table; /* 2 */
}

.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: transparent !important;
        color: #000 !important; /* Black prints faster */
        -webkit-box-shadow: none !important;
        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;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

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

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

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


