/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */

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

/* ==========================================================================
   Author's custom styles
   @import url("https://fonts.googleapis.com/css?family=Montserrat:700&#124;Open+Sans&display=swap");
   
/* Reset styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global styles */
body {
  margin: 0;
  padding-top: 50px;
  font-family: "Open Sans", sans-serif;
}

/* Sections styles */
.section {
  margin: 50px 0;
  padding: 50px;
}

header,
footer {
  padding: 20px;
}
h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
h2 {
  font-size: 48px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
}
h3 {
  font-size: 24px;
  font-weight: 500;
  color: #333;
  margin-bottom: 20px;
}

p {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  line-height: 1.5;
  margin-bottom: 40px;
}

/* Button styles */
.button {
  display: inline-block;
  background-color: #800080;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.2s ease-in-out;
}

.button:hover {
  background-color: #333;
  color: #fff;
  transform: translateY(-5px);
}
/* Navigation styles */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 100px;
  background-color: #fff;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

section div {
  margin-bottom: 20px;
}


/* Navbar Styles */
.custom-navbar {
  background-color: #800080;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  padding: 0.5rem 1rem;
  height: 80px;
  z-index: 1;
  position: fixed; 
  width: 100%; 
}

.custom-navbar .navbar-toggler-icon {
  background-color: #ffffff;
}

.custom-navbar .navbar-nav .nav-link {
  color: #ffffff;
  font-weight: 600;
  margin-right: 20px;
  transition: color 0.3s ease-in-out;
}

.custom-navbar .navbar-nav .nav-link:hover {
  color: #00d4ff;
}

.custom-navbar .navbar-nav .active {
  color: #00d4ff !important;
}

.custom-navbar .navbar-nav .nav-link:hover {
  text-decoration: none;
}

.whatsapp-link {
  background-color: #25d366;
  border-radius: 3px;
  color: #ffffff;
  font-weight: 600;
  padding: 8px 12px;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
}

.whatsapp-link img {
  margin-right: 5px;
}

.whatsapp-link:hover {
  background-color: #128c7e;
}

@media (max-width: 991.98px) {
  .custom-navbar {
    padding: 0.5rem;
    height: auto;
  }

  .navbar-collapse {
    margin-top: 1rem;
    border-top: 1px solid #ffffff;
    text-align: center;
  }

  .navbar-nav {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
  }

  .navbar-nav .nav-link {
    margin-right: 0;
    margin-bottom: 1rem;
    text-align: center;
  }

  .navbar-toggler {
    margin-right: 0;
  }

  .navbar-brand img {
    height: 40px;
    width: auto;
    margin: 0 auto;
    display: block;
  }
}

@media (max-width: 991.98px) {
  .custom-navbar {
    padding: 0.5rem;
  }
}


/* Hero Section */
.hero {
  height: 90vh; /* Ensures the hero section takes 70% of the viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the video fills the section */
  filter: brightness(50%) blur(2px); /* Adds a dark, blurred effect to the video */
  z-index: -1; /* Positions the video behind the content */
}

.hero-content {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1rem;
  color: #fff;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #800080;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7); /* Adds a subtle shadow to make text stand out */
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 1rem;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6); /* Adds a shadow to subtitle for readability */
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.hero-button {
  background-color: #800080;
  color: #128c7e;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}

.hero-button:hover {
  background-color: #25d366;
  color: #fff;
  border-color: #25d366;
  transform: translateY(-2px); /* Slight hover animation */
}

/* Media Queries for responsiveness */
@media only screen and (max-width: 1024px) {
  .hero-title {
    font-size: 2rem; /* Slightly smaller font size for medium screens */
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .hero-buttons {
    margin-top: 2rem;
    gap: 1rem;
  }
  .hero-button {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }
}

@media only screen and (max-width: 768px) {
  .hero-title {
    font-size: 1.75rem; /* Smaller font size for mobile screens */
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-content {
    padding: 2rem 1rem;
  }
  .hero-buttons {
    gap: 0.75rem;
    margin-top: 1.5rem;
  }
  .hero-button {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}

/* About Us Section */

#about-us {
  background-color: #f5f5f5;
  padding: 30px 0;
  margin-bottom: 40px;
  margin-top: -20px;
}

#about-us h2 {
  color: #800080;
  font-size: 40px;
  text-align: center;
  margin-bottom: 40px;
}

#about-us p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: justify;
  padding: 0 30px;
}

@media (max-width: 768px) {
  #about-us h2 {
    font-size: 30px;
  }

  #about-us p {
    font-size: 16px;
  }
}

/* Services Section */
#services {
  background-color: #f5f5f5;
  padding: 50px 0;
  margin-top: -20px;
}

/* Title with fade-in effect */
#services h2 {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  color: #800080;
  animation: fadeIn 1s ease-out;
}

/* List of Services */
.services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Service Item Styling */
.services-list li {
  flex: 1 1 400px;
  margin: 20px;
  background-color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.5s ease-out forwards;
  animation-delay: 0.2s;
}

/* Hover effect on Service Item */
.services-list li:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Image Styling with Hover Effect */
.services-list li img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.services-list li img:hover {
  transform: scale(1.1); /* Slight zoom effect */
  filter: brightness(1.1); /* Slight brightness increase on hover */
}

/* Service Title Styling with Color Change on Hover */
.services-list li h3 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin: 20px;
  color: #128c7e;
  transition: color 0.3s ease;
}

/* Service Description Text Styling */
.services-list li p {
  font-size: 18px;
  line-height: 1.5;
  text-align: justify;
  margin: 20px;
  color: #666;
  transition: color 0.3s ease;
}

/* Hover Effects on Text */
.services-list li:hover h3,
.services-list li:hover p {
  color: #800080; /* Change text color on hover */
}

/* Animation for Service Items */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade-in Animation for Section */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Design */
@media only screen and (max-width: 992px) {
  #services h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .services-list li {
    flex-basis: calc(33.33% - 40px);
    animation-delay: 0.3s;
  }

  .services-list li h3 {
    font-size: 20px;
    margin: 10px;
  }

  .services-list li p {
    font-size: 16px;
    margin: 10px;
  }
}

@media only screen and (max-width: 768px) {
  #services h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .services-list li {
    flex-basis: calc(50% - 20px);
    animation-delay: 0.4s;
  }

  .services-list li h3 {
    font-size: 18px;
    margin: 10px;
  }

  .services-list li p {
    font-size: 14px;
    margin: 10px;
  }
}


 /* Overall styling for the contact links section */
.contact-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px;
  position: relative;
  overflow: hidden; /* To ensure floating effect doesn’t go out of bounds */
}

/* Individual link styling */
.contact-links a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-family: 'Helvetica', sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 10px 15px;
  border-radius: 6px;
  background-color: #fff;
  border: 2px solid #ddd;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

/* Hover effect to add interactivity */
.contact-links a:hover {
  background-color: #0078D4; /* Blue color */
  color: #fff;
  border-color: #0078D4;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.contact-links a img {
  width: 30px; /* Slightly larger icon */
  height: 30px;
  margin-right: 12px;
  transition: transform 0.2s ease-in-out;
}

/* Icon hover effect */
.contact-links a:hover img {
  transform: scale(1.1);
}

/* Tooltips */
.contact-links a::after {
  content: attr(data-tooltip);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s, opacity 0.2s;
  z-index: 2;
}

.contact-links a:hover::after {
  visibility: visible;
  opacity: 1;
}

/* Floating Action Button (FAB) for Mobile */
@media (max-width: 768px) {
  .contact-links {
    flex-direction: column;
    align-items: center;
  }

  .contact-links a {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
  }

  .contact-links a:last-child {
    margin-bottom: 0;
  }

 

  .contact-links::after:hover {
    transform: scale(1.1);
  }
}

/* Smooth background animation */
.contact-links a {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.8), rgba(200, 200, 200, 0.8));
  background-size: 200% 200%;
  transition: all 0.4s ease-in-out;
}

.contact-links a:hover {
  background-position: 100% 100%;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Subtle icon animation on hover */
.contact-links a img {
  transition: transform 0.3s ease-in-out, filter 0.3s ease;
}

.contact-links a:hover img {
  transform: rotate(360deg);
  filter: brightness(1.2);
}



/* Testimonials Section Styling */
#testimonials {
  background-color: #f5f5f5;
  padding: 50px 0;
}

.section-title {
  font-size: 36px;
  font-weight: bold;
  color: #800080;
}

.testimonial-item {
  padding: 30px;
}

.testimonial-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-text {
  font-size: 18px;
  color: #666;
  font-style: italic;
  margin-top: 20px;
}

.client-name {
  font-weight: bold;
  color: #128c7e;
}

.client-title {
  font-size: 14px;
  color: #999;
}

/* Bootstrap Carousel Customizations */
.carousel-inner {
  text-align: center;
}

.carousel-item {
  transition: transform 0.5s ease;
}

/* Style for Previous and Next Buttons */
.carousel-control-prev,
.carousel-control-next {
  width: 40px;
  height: 40px;
  padding: 10px;
  background-color: rgba(128, 0, 128, 0.7); /* Transparent purple background */
  border-radius: 50%; /* Circular buttons */
  color: white; /* White text color for arrows */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Make sure no text is in the buttons */
.carousel-control-prev,
.carousel-control-next {
  font-size: 0; /* Remove text content */
}

/* Arrow icon styles */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #fff; /* White arrows */
  border-radius: 50%; /* Circular arrows */
  width: 20px;
  height: 20px;
  background-size: 15px; /* Smaller arrows */
  transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition for hover effect */
}

.carousel-control-prev-icon {
  background-image: url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/icons/chevron-left.svg');
}

.carousel-control-next-icon {
  background-image: url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/icons/chevron-right.svg');
}

/* Hover Effects */
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: #800080; /* Dark purple background on hover */
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: #fff; /* White arrows on hover */
  transform: scale(1.1); /* Slight zoom on hover */
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 35px;
    height: 35px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 18px;
    height: 18px;
    background-size: 13px;
  }
}

/* General Contact Us Section */
#contact-us {
  background-color: #f5f5f5;
  padding: 50px 0;
}

#contact-us h2 {
  color: #800080;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 50px;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.content {
  display: flex;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  width: 100%;
  margin-bottom: 50px;
}

.left-side, .right-side {
  padding: 50px;
}

.left-side {
  background-color: #f5f5f5;
  border-radius: 10px 0 0 10px;
  flex: 1;
}

.right-side {
  flex: 1;
}

/* About Me Section Styling */
.about-me {
  margin-bottom: 40px;
}

.about-title {
  color: #800080;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.about-me p {
  color: #333;
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.8;
}

/* Contact Info Styling */
.address, .phone, .email {
  margin-bottom: 30px;
}

.address i, .phone i, .email i {
  color: #800080;
  font-size: 20px;
  margin-right: 10px;
}

.topic {
  color: #800080;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.text-one {
  color: #333;
  font-size: 18px;
}

.text-two {
  color: #333;
  font-size: 16px;
  opacity: 0.7;
}

.text-one a {
  color: #333;
  text-decoration: none;
}

.text-one a:hover {
  color: #800080;
}

/* Form Styling */
.right-side .topic-text {
  color: #800080;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.right-side p {
  color: #333;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 40px;
}

input[type="text"], input[type="email"], textarea {
  background-color: #f5f5f5;
  border: none;
  border-radius: 5px;
  color: #333;
  font-size: 16px;
  margin-bottom: 20px;
  padding: 10px;
  width: 100%;
}

.message-box textarea {
  height: 150px;
}

.button {
  text-align: center;
}

.button input[type="submit"] {
  background-color: #800080;
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 20px;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
}

.button input[type="submit"]:hover {
  background-color: #666;
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
  .content {
    flex-direction: column;
  }

  .left-side, .right-side {
    padding: 30px;
  }

  .left-side {
    border-radius: 10px 10px 0 0;
  }

  .right-side {
    border-radius: 0 0 10px 10px;
  }

  .about-title {
    font-size: 20px;
  }

  input[type="text"], input[type="email"], textarea {
    margin-bottom: 15px;
  }

  .button input[type="submit"] {
    font-size: 16px;
    padding: 8px 16px;
  }
}


/* Footer Section */
footer {
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  background-image: url("/images/abstract-room-sun-card-blank_1258-263.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: 0px -10px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow for elegance */
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
  z-index: -1;
}

/* Footer Content */
.footer-bottom {
  font-size: 1rem;
  color: #ccc;
  margin-top: 20px;
  font-family: "Montserrat", sans-serif;
}

.footer-bottom p {
  margin: 0;
  font-weight: 300;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #e67e22; /* Orange color on hover */
}

/* Disclaimer Heading */
.disclaimer-heading {
  font-size: 1.5rem; /* Slightly larger for emphasis */
  font-weight: 600;
  color: #800080; /* Use brand blue */
  margin-bottom: 10px;
}

/* Disclaimer Text */
.disclaimer-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
  padding: 0 15px; /* Add some horizontal padding for readability */
  opacity: 0.9; /* Slight transparency for modern feel */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .footer-content {
    padding: 15px;
  }

  .disclaimer-heading {
    font-size: 1.3rem;
  }

  .disclaimer-text {
    font-size: 1rem;
  }
}


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

.sr-only {
  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 .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.sr-only.focusable:active,
.sr-only.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
 *
 * 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: " ";
  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;
  }

  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/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;
  }
}
