/* ========================================================================
   DBG Data Works Website - Main Stylesheet V2 
   Clean, organized, and optimized CSS
   ======================================================================== */

/* ========================================================================
   1. BASE STYLES & GLOBAL SETTINGS
   ======================================================================== */

body {
  padding-top: 80px;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16pt;
  font-weight: 300;
  line-height: 1.65em;
}

input, select, textarea {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}



/* ========================================================================
   2. HEADER & NAVIGATION
   ======================================================================== */

   /*
#header {
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: white;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  background-image: none;
}
  */

  #header {
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: white;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  background-image: none;
  height: 80px;          /* ← Force exact height */
  max-height: 80px;      /* ← Prevent growing beyond 80px */
  overflow: hidden;      /* ← Hide any overflow content */
}


#header .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*min-height: 60px;
  min-height: 80px;*/
  align-items: center; 
  height: 100%;        
  min-height: auto; 
}

#header h1 {
  padding: 1em;
  font-size: 1.2em;
  margin: 0;
  font-weight: 700 !important;
}

/* Logo Styles */
/*
#dbg-logo {
  position: absolute;
  top: 40%;
  left: 2rem;
  transform: translateY(-50%);
  z-index: 9999;
  margin: 0;
  padding: 0;
}
  */

#dbg-logo {
  position: relative;          /* ← Remove absolute positioning */
  z-index: 9999;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;         /* ← Use flexbox centering */
}

#dbg-logo a {
  display: block;
  opacity: 1;
  transition: opacity 0.2s ease;
  text-decoration: none;
  border-bottom: none;
}

#dbg-logo a:hover {
  opacity: 1;
}

#dbg-logo img {
  height: 50px;
  width: auto;
}

/* Navigation Styles */
#nav {
  background-color: white;
  background-image: none;
  position: relative;
  margin: 0;
  flex: 1;
  display: flex;
  justify-content: center;
}

#nav > ul {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* Submenu Styles */
#nav > ul > li > ul {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 200px;
  z-index: 1000;
  display: none;
  
  /* Rounded bottom corners only */
  border-radius: 0 0 8px 8px;
  
  /* Borders - left, right, bottom (no top) */
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-top: none;
  
  /* Drop shadow for depth */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Show submenu on hover */
#nav > ul > li:hover > ul {
  display: none;
}

/* Submenu items */
#nav > ul > li > ul > li {
  width: 100%;
  margin: 0;
}

#nav > ul > li > ul > li > a {
  display: block;
  padding: 0.75rem 1rem;
  color: #222 !important;           /* ← Changed from #333 to darker #222 */
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
}

/* Remove border from last submenu item */
#nav > ul > li > ul > li:last-child > a {
  border-bottom: none;
}

/* Submenu hover states *//*
#nav > ul > li > ul > li > a:hover {
  background-color: #f8f9fa;
  color: #007acc;
} */

#nav > ul > li > ul > li > a:hover {
  background-color: #f8f9fa;
  color: #111 !important;           /* ← Almost black on hover */
}

/* Position submenu container */
#nav > ul > li {
  position: relative;
}
/*
#nav > ul > li {
  margin: 0 0.25rem;
}
  */

 

#nav > ul > li > a.nav-link,
#nav > ul > li > span.nav-link {
  color: #222;
  font-size: 1.0rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  border-bottom: none;
}
 
#nav > ul > li.current > a.nav-link,
#nav > ul > li.current > span.nav-link,
#nav > ul > li > a.nav-link:hover,
#nav > ul > li > span.nav-link:hover,
#nav > ul > li > a.nav-link:focus,
#nav > ul > li > span.nav-link:focus {
  color: #007acc;
  background-color: transparent;
}

/* 
#nav:after {
  content: '';
  display: block;
  clear: both;
}
 
#nav > ul > li.current:before {
  position: absolute;
  content: '';
  top: 0;
  right: 50%;
  bottom: 0;
}
  */

  /* OVERRIDE EXTERNAL SCSS STYLES - Disable unwanted pseudo-elements */
#nav:after {
  content: none !important;
  display: none !important;
  clear: none !important;
}
 
#nav > ul > li.current:before {
  content: none !important;
  position: static !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  display: none !important;
  background: none !important;
  width: auto !important;
  height: auto !important;
  border: none !important;
}


/*  submenu changes trial
/* More specific submenu selectors with !important */
nav#nav ul li ul,
#nav > ul > li > ul,
#nav ul li ul {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  background-color: white !important;
  min-width: 200px !important;
  z-index: 1000 !important;
  display: none !important;
  border-radius: 0 0 8px 8px !important;
  border-left: 1px solid #ccc !important;
  border-right: 1px solid #ccc !important;
  border-bottom: 1px solid #ccc !important;
  border-top: none !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

 

nav#nav ul li ul li a,
#nav > ul > li > ul > li > a,
#nav ul li ul li a {
  /*display: block !important;
  padding: 0.75rem 1rem !important;
  color: #333 !important;
  background-color: white !important;
  text-decoration: none !important;
  border-bottom: 1px solid #f0f0f0 !important; */
    color: #222 !important;           /* ← Dark gray text */
  background-color: white !important;
}


 /* DROPOTRON OVERRIDE - Force white submenu styling */
#nav .dropotron,
#nav ul.dropotron,
nav#nav .dropotron,
.dropotron.level-0 {
  /* Override background */
  background-image: none !important;
  background-color: white !important;
  
  /* Override colors and styling */
  color: #111 !important;
  min-width: 200px !important;
  padding: 0 !important;
  text-align: left !important;
  
  /* Custom rounded corners - bottom only */
  border-radius: 0 0 8px 8px !important;
  
  /* Custom borders - left, right, bottom only */
  border-left: 1px solid #ccc !important;
  border-right: 1px solid #ccc !important;
  border-bottom: 1px solid #ccc !important;
  border-top: none !important;
  
  /* Softer shadow */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

/* Override dropotron list items */
#nav .dropotron > li,
#nav ul.dropotron > li,
nav#nav .dropotron > li {
  line-height: 1 !important;
  padding: 0 !important;
  text-align: left !important;
}

/* Override dropotron links */
#nav .dropotron > li > a,
#nav ul.dropotron > li > a,
nav#nav .dropotron > li > a {
  color: #222 !important;
  text-decoration: none !important;
  border: none !important;
  border-bottom: 1px solid #f0f0f0 !important;
  padding: 0.75rem 1rem !important;
  display: block !important;
  background-color: transparent !important;
  transition: all 0.3s ease !important;
}

/* Remove border from last item */
#nav .dropotron > li:last-child > a,
#nav ul.dropotron > li:last-child > a {
  border-bottom: none !important;
}

/* Override dropotron hover states */
#nav .dropotron > li:hover > a,
#nav .dropotron > li.active > a,
#nav ul.dropotron > li:hover > a,
#nav ul.dropotron > li.active > a {
  color: #111 !important;
  background-color: #f8f9fa !important;
}

/* Specific override for level-0 dropotron */
#nav .dropotron.level-0,
nav#nav .dropotron.level-0 {
  border-radius: 0 0 8px 8px !important;
  font-size: 0.9em !important;
  padding-top: 0 !important;
  margin-top: -1px !important;
}

.dropotron>li>a
{color: #222 !important;
}

 

 
#nav>ul>li a {

  border-style: none;
  
}

#nav ul ul {
  display: none !important;
}

#nav li ul {
  display: none !important;
}


 @media (max-width: 1024px) {
  body {
    padding-top: 0px !important;
  }
}
 

@media screen and (max-width: 840px) {
    #page-wrapper {
       
        padding-top: 0px
    }
}

/* ========================================================================
   3. BUTTONS & CTA ELEMENTS
   ======================================================================== */


   
 
.button-cta {
  background-color: #0073e6;
  color: white;
  padding: 1px 40px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-weight: 500 !important;
}
  

  
 
.button-cta:hover {
  background-color: #005bb5;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 115, 230, 0.3);
}

.button-cta:active {
  transform: translateY(0);
}






/* ========================================================================
   5. LAYOUT WRAPPERS & CONTAINERS
   ======================================================================== */

.wrapper {
  padding: 3em 0;
}

.wrapper.style1 {
  background-color: aliceblue;
}

.wrapper.style1 .row {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.wrapper.style1 .row > section {
  display: flex;
  flex-direction: column;
}

.wrapper.style1 .box.post-abstract {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.wrapper.style1 .box.post-abstract .inner {
  flex: 1;
}

/* ========================================================================
   6. SERVICE PAGES & CONTENT SECTIONS
   ======================================================================== */

.servicesTextL {
  flex: 0 0 40%;
  padding-right: 50px;
}

.servicesImageR {
  flex: 0 0 60%;
  padding-right: 50px;
}

.servicesTextR {
  flex: 0 0 40%;
  padding-right: 50px;
}

.servicesImageL {
  flex: 0 0 60%;
  padding-right: 50px;
  justify-content: center;
}

/* Service page font overrides */
.services-page, .service-section, .service-area, .service-content, 
.service-hero, .service-header, .service-main, .service-body {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

body.services {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

/* ========================================================================
   7. BLOG & POST LAYOUTS
   ======================================================================== */

header.major {
  margin: 0 0 -3em 0;
}

.blog-major {
  text-align: left;
  margin: 0 0 3rem 0;
  padding-bottom: 0.75rem;
}

.blog-major h1 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.25;
  text-align: left;
  margin-bottom: 0.5em;
}

.blog-major p,
header.blog-major p {
  font-size: 0.9rem !important;
  max-width: 40rem;
  margin: 0;
  text-align: left;
  border-top: none;
  padding-top: 0;
  position: static;
  top: 0;
  color: #4B5563;
}

.post-abstract {
  background: #fff;
  padding: 1rem;
  margin: 1.5rem 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

.box.post .image {
  width: 100%;
}

.box.post .inner {
  margin: 2em;
}

.image.top img {
  width: 100%;
}

/* Blog Flex Layouts */
.flex-override {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.wrapper.style1 .box.post-abstract.responsive-post {
  display: flex !important;
  flex-direction: row;
  align-items: center;
}

/* ========================================================================
   8. IMAGE & MEDIA STYLES
   ======================================================================== */

/* Rounded corners and hover effects */
.box.highlight .rounded-image {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box.highlight .hover-effect:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.post-thumb .rounded-image {
  border-radius: 12px;
}

.box.post.post-abstract.post-flex .post-thumb img.rounded-image {
  max-width: 100%;
  height: auto;
  display: block;
}

.centered-thumb {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  box-sizing: border-box;
}

/* ========================================================================
   9. HIGHLIGHTS & CARDS
   ======================================================================== */

.highlights-boxed {
  padding: 60px 0;
}

.highlights-boxed .container {
  max-width: 1400px;
}

.highlights-boxed .row {
  justify-content: center;
  align-items: stretch;
}

.highlights-boxed [class*="col-"] {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.highlight-card {
  background: white;
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  padding: 40px 20px 30px;
  text-align: center;
  height: 425px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.highlight-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.highlight-icon {
  margin-bottom: 20px;
}

.highlight-icon i {
  font-size: 48px;
  color: #333;
  display: block;
}

.highlight-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.highlight-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
}

.highlight-description {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ========================================================================
   10. PAGINATION
   ======================================================================== */

.pagination {
  text-align: center;
  margin: 20px 0 3rem;
}

.pagination.pagination-default {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 0.5rem;
  padding: 0;
  margin: 2.5rem 0 1.5rem;
}

.pagination.pagination-default .page-item {
  list-style: none;
}

.page-link,
.page-number {
  display: inline-block;
  padding: 8px 12px;
  margin: 0;
  text-decoration: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #333;
  line-height: 1;
}

.page-number.current,
.pagination .page-item.active .page-link {
  font-weight: 700;
  background-color: #0073e6;
  color: #fff;
  border-color: #0073e6;
}

.page-link:hover,
.page-number:hover {
  background-color: #f0f0f0;
}

/* ========================================================================
   11. COOKIE CONSENT & MISC COMPONENTS
   ======================================================================== */

.cookie-consent-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #333;
  color: white;
  padding: 15px;
  text-align: center;
  font-size: 16px;
  display: none;
  z-index: 9999;
}

.cookie-consent-container {
  max-width: 900px;
  margin: 0 auto;
}

.cookie-consent-popup a {
  color: #ffd700;
  text-decoration: none;
}

.accept-cookies-button {
  background-color: #4caf50;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
}

.accept-cookies-button:hover {
  background-color: #45a049;
}

/* FAQ Styles */
h3.faq {
  margin-bottom: 0px;
}

/* Contact Form Styles */
.contact-form h3 {
  font-size: 2.2em !important;
  margin-bottom: 0.5em;
}

/* Title Bar */
#titleBar .title a {
  color: #fff !important;
}

#titleBar .title a:hover,
#titleBar .title a:focus {
  color: #fff !important;
}



/* ========================================================================
   12. FOOTER STYLES
   ======================================================================== */

#footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.service-area {
  flex: 1;
  min-width: 300px;
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

#footer .footer-key-links .service-area {
  text-align: center;
}

#footer .footer-key-links .service-area a {
  display: inline-block;
  margin: 0.25em 0;
}

#footer .row > section.footer-key-links,
#footer .row > section.footer-contact-form {
  display: flex;
  flex-direction: column;
}

#footer .row > section.footer-key-links {
  order: 1;
}

#footer .row > section.footer-contact-form {
  order: 2;
}

/* ========================================================================
   13. RESPONSIVE BREAKPOINTS
   ======================================================================== */

/* Large Desktop (1240px and below) */
@media (max-width: 1240px) {
  #header .container {
    max-width: 95%;
    padding: 0 1rem;
  }
  
  .hero-text-area {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .hero-image-area {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .hero-text {
    margin-left: 0;
  }
  
  .banner-content {
    padding: 0 1rem;
  }
  
  .banner-headline {
    font-size: 2.5rem;
  }
}

/* Tablet (980px and below) */
@media (max-width: 980px) {
  #header .container {
    justify-content: space-between;
  }
  
  #nav > ul {
    margin-left: 0.5rem;
  }
  
  .row > .col-6-narrower {
    width: 100%;
  }
  
  #banner {
    padding: 2rem;
  }
  
  .hero-text-area {
    padding: 2rem 1rem;
    max-width: 100%;
  }
  
  .hero-image-area {
    padding: 2rem 1rem;
    max-width: 100%;
  }
  
  .hero-text {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .banner-headline {
    font-size: 2rem;
  }
  
  .banner-subheadline {
    font-size: 1.1rem;
  }
}

/* Mobile Large (840px and below) */
@media screen and (max-width: 840px) {
  .row > .col-6-narrower {
    width: 50%;
  }
  
  .wrapper.style1 .box.highlight {
    padding-left: 0;
    text-align: center;
  }
  
  .wrapper.style1 .box.highlight img,
  .wrapper.style1 .box.highlight h3,
  .wrapper.style1 .box.highlight p {
    margin-left: auto;
    margin-right: auto;
  }
  
  #navPanel .link {
    height: auto;
    line-height: 1.4;
    padding-top: 0.75em;
    padding-bottom: 0.75em;
    white-space: normal;
    font-size: 0.65em;
  }
}

/* Mobile Medium (768px and below) */
@media (max-width: 768px) {
  #header .container {
    max-width: 100%;
    padding: 0 0.5rem;
  }
  
  #nav > ul {
    margin-left: 0;
  }
  
  .row > .col-6-narrower {
    width: 100%;
  }
  
  #banner {
    padding: 2rem;
  }
  
  .banner-content {
    padding: 0 0.5rem;
  }
  
  .hero-text-area {
    padding: 1.5rem 0.5rem;
    max-width: 100%;
  }
  
  .hero-image-area {
    padding: 1.5rem 0.5rem;
    max-width: 100%;
  }
  
  .hero-text {
    max-width: 100%;
    margin: 0;
  }
  
  .banner-headline {
    font-size: 1.75rem;
  }
  
  .banner-subheadline {
    font-size: 1rem;
  }
  
  .banner-button {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .wrapper.style1 .box.post-abstract.responsive-post {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
  }
  
  .post-thumb-responsive {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .post-text-responsive {
    width: 100%;
  }
  
  .centered-thumb {
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: center;
  }
  
  .centered-thumb img {
    margin-left: auto;
    margin-right: auto;
  }
  
  .highlight-card {
    max-width: 280px;
    height: 260px;
    padding: 30px 15px 25px;
  }
  
  .highlight-icon i {
    font-size: 40px;
  }
  
  .highlight-icon img {
    width: 40px;
    height: 40px;
  }
  
  .highlight-title {
    font-size: 18px;
  }
  
  .highlight-description {
    font-size: 13px;
  }
  
  #dbg-logo img {
    height: 60px !important;
  }
}

/* Mobile Small (736px and below) */
@media (max-width: 736px) {
  .hero-text-area {
    padding: 1rem 0.5rem;
  }
  
  .hero-image-area {
    padding: 1rem 0.5rem;
  }
  
  .hero-text {
    margin: 0;
  }
  
  .banner-content {
    padding: 0 0.5rem;
  }
  
  .content-wrapper.services {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  
  .content-wrapper.services-reverse {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  
  .servicesImageL {
    padding-right: 50px;
    justify-content: center;
  }
  
  #footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  
  #footer .row {
    justify-content: center;
  }
  
  #footer .row > section.footer-contact-form,
  #footer .row > section.footer-key-links {
    align-items: center;
    text-align: center;
  }
  
  #footer .row > section.footer-contact-form {
    order: 1;
  }
  
  #footer .footer-contact-form form {
    width: 100%;
    max-width: 28rem;
  }
  
  #footer .row > section.footer-key-links {
    order: 2;
  }
  
  #footer .footer-key-links .service-area {
    width: 100%;
  }
}

/* Mobile Extra Small (480px and below) */
@media (max-width: 480px) {
  #dbg-logo img {
    height: 40px !important;
  }
}


/* ========================================================================
   BreadCrumb
   ======================================================================== */
/* ========================================================================
   BreadCrumb
   ======================================================================== */
.breadcrumb {
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 400;
  background-color: transparent;
}

.breadcrumb-list {
  display: flex !important;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  counter-reset: none !important;
}

.breadcrumb-list .breadcrumb-item {
  display: inline-flex !important;
  align-items: center;
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.breadcrumb-list .breadcrumb-item::marker {
  content: none !important;
}

.breadcrumb-list .breadcrumb-item + .breadcrumb-item::before {
  content: "›" !important;
  margin-right: 4px;
  color: #9ca3af;
  display: inline;
}

.breadcrumb-list .breadcrumb-item a {
  color: #1e40af;
  text-decoration: none;
  border-bottom: none !important;
}

.breadcrumb-list .breadcrumb-item a:hover {
  color: #1d4ed8;
  
}

.breadcrumb-list .breadcrumb-item--current {
  color: #374151;
  font-weight: 500;
}


@media (max-width: 600px) {
  .pricing-section .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
/* ========================================================================
   END OF STYLESHEET
   ======================================================================== */