/* ---- RESET & BASE ---- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #FAFAFA;
  color: #205055;
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #205055;
  letter-spacing: 0.01em;
}
h1 {font-size: 2.4rem; margin-bottom: 24px;}
h2 {font-size: 2rem; margin-bottom: 20px;}
h3 {font-size: 1.25rem; margin-bottom: 10px;}
p, ul, ol {margin-bottom: 12px;}
strong {font-weight: 700; color: #286268;}
a {
  color: #205055;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {color: #F1BC69; outline: none;}
img {
  max-width: 100%;
  display: block;
  border-radius: 6px;
}
ul, ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}

/* ---- CONTAINER & LAYOUT ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 1px 8px rgba(32, 80, 85, 0.04);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ---- NAVIGATION ---- */
header {
  background: #FFFFFF;
  box-shadow: 0 2px 16px rgba(32,80,85,0.04);
  position: sticky;
  top: 0; z-index:99;
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
}
.logo img, .logo-footer img {
  height: 40px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #286268;
  font-size: 1rem;
  position: relative;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #F1BC69;
  transition: width 0.2s;
  position: absolute;
  bottom: -4px; left: 0;
  border-radius: 2px;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}
.btn.primary {
  background: #286268;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(40,98,104,0.06);
}
.btn.primary:hover, .btn.primary:focus {
  background: #205055;
}
.btn.accent {
  background: #F1BC69;
  color: #205055;
  border: none;
  padding: 12px 30px;
  border-radius: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(241,188,105,0.05);
}
.btn.accent:hover, .btn.accent:focus {
  background: #286268;
  color: #fff;
}

/* ---- MOBILE NAVIGATION ---- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #286268;
  z-index: 150;
  cursor: pointer;
  margin-left: 8px;
  transition: color 0.18s;
  padding: 8px 16px 8px 8px;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #F1BC69;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 95vw;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: 4px 0 30px rgba(32, 80, 85, 0.15);
  z-index: 200;
  transform: translateX(-104%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  padding: 32px 28px 20px 28px;
  gap: 24px;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: #286268;
  margin-bottom: 8px;
  cursor: pointer;
  transition: color 0.18s;
  padding: 8px 8px 0 0;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F1BC69;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav a {
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #286268;
  padding: 10px 0;
  border-radius: 8px;
  transition: background 0.15s, color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F1BC69;
  color: #205055;
}

@media (max-width: 1024px) {
  .main-nav { gap: 18px; }
}
@media (max-width: 900px) {
  .main-nav { display: none; }
  .btn.primary { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (max-width: 768px) {
  header { box-shadow: 0 1px 8px rgba(40,98,104,0.09); }
  .container { padding: 0 10px; }
}

/* ---- HERO ---- */
.hero {
  background: #FAFAFA;
  padding: 42px 0 30px 0;
  min-height: 315px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 560px;
  gap: 24px;
}
.hero h1 {
  color: #205055;
  font-size: 2.4rem;
  margin-bottom: 12px;
  line-height: 1.22;
}
.hero p {
  margin-bottom: 16px;
  color: #286268;
  font-size: 1.1rem;
}
@media (max-width:768px) {
  .hero .content-wrapper, .hero {
    padding-top: 32px;
    min-height: 210px;
  }
  .hero h1 { font-size: 2rem; }
}

/* ---- FEATURES ---- */
.features {
  margin-bottom: 60px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1px 10px rgba(32,80,85,0.04);
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 230px;
  min-width: 210px;
  max-width: 340px;
  background: #FAFAFA;
  border-radius: 14px;
  box-shadow: 0 1px 5px rgba(40,98,104,.038);
  padding: 24px 22px 18px 22px;
  transition: box-shadow 0.18s, background 0.2s;
}
.feature-item img {
  width: 44px; height: 44px; margin-bottom: 2px;
}
.feature-item h3 {
  font-size: 1.12rem;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 4px 24px rgba(241,188,105,.09);
  background: #F1BC69;
}
@media (max-width: 980px) {
  .features-grid { gap: 16px; }
  .feature-item { min-width: 180px; max-width: 100%; }
}
@media (max-width: 700px) {
  .features-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}

/* ---- SERVICE PREVIEW / DETAILED ---- */
.services-preview {
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(32,80,85,0.04);
}
.service-list-short {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}
.service-detailed-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.service-item {
  background: #FAFAFA;
  border-radius: 15px;
  box-shadow: 0 1px 7px rgba(32,80,85,0.028);
  padding: 28px 22px 18px 22px;
  margin-bottom: 20px;
  flex: 1 1 230px;
  min-width: 210px;
  max-width: 345px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 2px solid transparent;
  transition: box-shadow 0.15s, border 0.2s;
}
.service-item strong {
  margin-top: 6px;
}
.service-item:hover, .service-item:focus-within {
  border: 2px solid #F1BC69;
  box-shadow: 0 8px 28px rgba(241,188,105,.07);
}
@media (max-width: 800px) {
  .service-detailed-list { flex-direction: column; gap: 18px; }
  .service-item { max-width: 100%; }
}

/* ---- PRICING TABLE ---- */
.pricing-table {
  width: 100%;
  margin-top: 10px;
  border-collapse: separate;
  border-spacing: 0 10px;
  font-size: 1rem;
}
.pricing-table th, .pricing-table td {
  padding: 14px 14px;
  text-align: left;
}
.pricing-table thead th {
  background: #286268;
  color: #fff;
  border-radius: 7px 7px 0 0;
}
.pricing-table tbody tr {
  background: #F9F9F9;
  border-radius: 0 0 7px 7px;
  box-shadow: 0 1px 6px rgba(40,98,104,0.04);
}
.pricing-table tbody td {
  border-top: 1px solid #EEEEEE;
  color: #205055;
}

/* ---- TESTIMONIALS ---- */
.testimonials, .testimonial-grid, .testimonial-slider {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(32,98,104,0.07);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 26px;
  margin-bottom: 20px;
  max-width: 730px;
  transition: box-shadow 0.18s;
}
.testimonial-card img {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #FAFAFA;
  flex-shrink: 0;
}
.testimonial-card p {
  color: #205055;
  font-size: 1.03rem;
  margin-bottom: 4px;
}
.testimonial-info span {
  color: #286268;
  font-size: 0.98rem;
  font-weight: 500;
  display: inline-block;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 4px 32px rgba(241,188,105,0.10);
}
@media (max-width: 760px) {
  .testimonial-card { flex-direction: column; align-items: flex-start; gap: 12px; padding: 16px 14px; }
}
.testimonial-slider {
  gap: 28px;
  flex-direction: column;
}

/* ---- CASE STUDIES ---- */
.case-studies-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 16px;
}
@media (max-width:740px) {
  .case-studies-list { flex-direction: column; gap: 18px; }
}

/* ---- CARDS / TEXT SECTIONS ---- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(40,98,104,0.04);
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.16s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 36px rgba(241,188,105,0.10);
}
.text-section {
  margin-bottom: 16px;
  background: #FAFAFA;
  border-radius: 10px;
  padding: 16px 14px;
  box-shadow: 0 1px 5px rgba(32,80,85,0.025);
}

/* ---- GRID / WRAPPERS ---- */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
@media (max-width: 800px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/******** CTA ******/
.cta {
  background: #286268;
  border-radius: 22px;
  box-shadow: 0 2px 18px rgba(32,80,85,0.07);
  margin-bottom: 46px;
  padding: 40px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}
.cta h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 2rem;
}
.cta .btn.primary, .cta .btn.accent {
  margin-top: 0;
}

/* ---- FAQ + LEGAL ---- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #F9F9F9;
  border-radius: 12px;
  box-shadow: 0 1px 5px rgba(32,80,85,0.022);
  padding: 18px 14px;
  margin-bottom: 14px;
}
.legal-text-content {
  background: #F9F9F9;
  border-radius: 10px;
  padding: 18px 14px;
  margin-bottom: 14px;
  color: #205055;
  font-size: 1rem;
}

/* ---- BLOG LIST ---- */
.blog-post-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.blog-post-teasers .text-section {
  min-width: 210px;
  max-width: 340px;
  flex: 1 1 230px;
}
@media (max-width: 800px) {
  .blog-post-teasers { flex-direction: column; gap: 14px; }
}

/******** NEWSLETTER SIGNUP ******/
.newsletter-signup {
  background: #FAFAFA;
  border-radius: 12px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 2px 8px rgba(32, 80, 85, 0.035);
}
.newsletter-signup form {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.newsletter-signup input[type=email] {
  font-size: 1rem;
  padding: 12px 16px;
  border-radius: 28px;
  border: 1px solid #E4E4E4;
  outline: none;
  flex: 1 1 180px;
  min-width: 120px;
  transition: border-color 0.18s;
}
.newsletter-signup input[type=email]:focus { border-color: #F1BC69; }

/* ---- CONTACT FORM ---- */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 2px;
}
input[type="text"], input[type="email"], textarea {
  background: #FAFAFA;
  border-radius: 10px;
  padding: 12px 14px;
  border: 1px solid #E4E4E4;
  font-size: 1rem;
  color: #205055;
  font-family: 'Roboto', Arial, sans-serif;
  outline: none;
  transition: border-color 0.18s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #F1BC69;
  background: #fff;
}
textarea {
  min-height: 82px;
  resize: vertical;
}

/* ---- CONTACT INFO ---- */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 22px;
}
.contact-info > div {
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #205055;
}
.map-embed {
  margin-top: 16px;
  border-radius: 10px;
  overflow: hidden;
}
.map-embed img { width: 100%; border-radius: 10px; }

/* ---- FOOTER ---- */
footer {
  background: #FAFAFA;
  border-top: 1.5px solid #E8E8E8;
  margin-top: 50px;
  padding: 0 0 10px 0;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 26px 0 12px 0;
}
.logo-footer img {
  height: 44px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #205055;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding-bottom: 2px;
}
.footer-nav a:hover { color: #F1BC69; }
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.98rem;
}
.footer-contact-info img {
  width: 22px; height: 22px; margin-right: 6px;
  border-radius: 0; background: none;
}
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.footer-social a img {
  width: 28px; height: 28px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 1px 5px rgba(32,80,85,.06);
  transition: box-shadow 0.18s, background 0.18s;
}
.footer-social a:hover img, .footer-social a:focus img {
  background: #F1BC69;
  box-shadow: 0 3px 14px rgba(241,188,105,.09);
}
.copyright {
  padding: 16px 0 2px 0;
  text-align: center;
  color: #899698;
  font-size: 0.97rem;
  font-family: 'Roboto', Arial, sans-serif;
}
@media (max-width: 900px) {
  .footer-content { flex-direction: column; gap: 22px; align-items: flex-start; }
}

/* ---- THANK YOU PAGE ---- */
.thank-you {
  text-align: center;
  margin-top: 40px;
}

/*** COOKIE CONSENT BANNER & MODAL ****/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #FFFFFF;
  color: #205055;
  border-top: 2px solid #F1BC69;
  box-shadow: 0 -1px 16px rgba(40,98,104, 0.11);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 900;
  padding: 20px 10px 16px 10px;
  animation: fadeInUp 0.32s cubic-bezier(.4,.77,.2,1);
}
.cookie-banner p {
  color: #205055;
  font-size: 1rem;
  margin-bottom: 0;
  text-align: center;
}
.cookie-banner .cookie-btn-row {
  display: flex;
  gap: 16px;
  margin-top: 5px;
  flex-wrap: wrap;
}
.cookie-banner .btn {
  font-size: 1rem;
  padding: 8px 22px;
  border-radius: 24px;
}
.cookie-banner .btn.accept {
  background: #F1BC69;
  color: #205055;
}
.cookie-banner .btn.accept:hover,
.cookie-banner .btn.accept:focus {
  background: #286268;
  color: #fff;
}
.cookie-banner .btn.reject {
  background: #E4E4E4;
  color: #205055;
  border: 1px solid #DDDDDD;
}
.cookie-banner .btn.reject:hover,
.cookie-banner .btn.reject:focus {
  background: #fff;
  color: #286268;
}
.cookie-banner .btn.settings {
  background: none;
  color: #205055;
  text-decoration: underline;
  border: 1px solid #DDDDDD;
}
.cookie-banner .btn.settings:hover,
.cookie-banner .btn.settings:focus { color: #F1BC69; }

@keyframes fadeInUp {
  from { opacity:0; transform:translateY(20px); }
  to { opacity:1; transform:translateY(0); }
}

.cookie-modal {
  position: fixed;
  z-index: 910;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(32,80,85,0.17);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInMd 0.18s cubic-bezier(.72,0,.19,1);
}
@keyframes fadeInMd {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal-box {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 32px rgba(32,80,85,0.15);
  padding: 36px 24px 26px 24px;
  min-width: 330px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: popMd 0.22s cubic-bezier(.73,0,.18,1);
}
@keyframes popMd {
  from { transform:scale(0.93); opacity:0; }
  to { transform:scale(1); opacity:1; }
}
.cookie-modal-box h3 { font-size: 1.18rem; margin-bottom: 10px; }
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.cookie-category label {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.cookie-category input[type=checkbox] {
  accent-color: #F1BC69;
  width: 20px; height: 20px;
}
.cookie-modal-cta-row {
  display: flex;
  gap: 15px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.cookie-modal .btn {
  padding: 9px 22px;
  border-radius: 22px;
}
.cookie-modal .btn:last-child {
  background: #E4E4E4;
  color: #205055;
}
.cookie-modal .btn:last-child:hover, .cookie-modal .btn:last-child:focus {
  background: #fff;
  color: #286268;
}

@media (max-width:460px) {
  .cookie-modal-box { padding: 22px 8px 16px 8px; min-width: 0; }
}

/***** UTILITIES: GAPS & FLEX ******/
.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }
.gap-20 { gap: 20px !important; }
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-column { display: flex; flex-direction: column; }
.flex-row { display: flex; flex-direction: row; }

/***** RESPONSIVE: FLEX DIRECTION CHANGES *****/
@media (max-width:900px) {
  .content-grid { flex-direction: column; align-items: stretch; }
  .blog-post-teasers { flex-direction: column; }
  .footer-content { flex-direction: column; gap: 18px; }
}

/***** SPACING FOR SECTIONS & CARDS *****/
@media (max-width:650px) {
  .section, .cta {
    padding: 26px 6px;
    margin-bottom: 30px;
    border-radius: 10px;
  }
}

/***** Z-INDEX LAYERING FOR OVERLAYS *****/
header { z-index: 99; }
.mobile-menu { z-index: 200; }
.cookie-banner { z-index: 900; }
.cookie-modal { z-index: 910; }

/***** SCROLLBAR - CLEAN *****/
::-webkit-scrollbar { width: 10px; background: #F1F1F1; }
::-webkit-scrollbar-thumb { background: #E8E8E8; border-radius: 10px; }

/***** INPUTS, BUTTONS CLOSE & CONSISTENT ******/
input, textarea, button {
  font: inherit;
}
button { cursor: pointer; }

/***** TRANSITIONS & INTERACTIONS ******/
.btn, a, input, textarea {
  transition: background 0.17s, color 0.18s, box-shadow 0.17s, border 0.18s;
}

/***** OVERRIDE UNWANTED LIST STYLE *****/
ul, ol {list-style: disc;}

/***** ENSURE NO DISPLAY: grid or COLUMNS *****/
/* NO grid/column properties - FLEX ONLY (already ensured above) */

/***** FOCUS STYLES FOR ACCESSIBILITY *****/
a:focus, button:focus, input:focus, textarea:focus {
  outline: 2px solid #F1BC69;
  outline-offset: 1px;
}

/***** MISCELLANEOUS *****/
.hide { display: none!important; }
.show { display: block!important; }

/***** END OF STYLE.CSS ****/
