/*-------------------------------------------------*
  SLICK WHEELER ELEKTRONIK – CREATIVE ARTISTIC CSS
  Style: Vibrant, creative, professional, artistic
  Flexbox mobile-first layouts (no grid, no columns)
  Brand colors: #20294D (Primary), #36BEB7 (Secondary), #F2F2F2 (Accent)
  Fonts: Roboto (display), Open Sans (body)
*--------------------------------------------------*/

/* CSS RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #20294D;
  background: #F2F2F2;
  min-height: 100vh;
  line-height: 1.5;
  font-size: 16px;
  letter-spacing: 0.01em;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}
a {
  color: #36BEB7;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #20294D;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 20px;
}
li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
  color: #20294D;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }
h5, h6 { font-size: 1rem; }
p {
  margin-bottom: 16px;
  font-size: 1rem;
}
strong { font-weight: bold; color: #20294D; }

/* BASE LAYOUTS */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 7px 32px rgba(32,41,77,0.10), 0 1.5px 6px rgba(54,190,183,0.08);
  transition: box-shadow 0.3s;
}
.section:last-child {
  margin-bottom: 0;
}

/*---------------- HEADER + NAVIGATION -----------------*/
header {
  background: linear-gradient(90deg, #36BEB7 10%, #F2F2F2 100%);
  box-shadow: 0 1px 10px rgba(32,41,77,0.04);
  height: auto;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 99;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 20px;
}
.logo img {
  height: 44px;
  width: auto;
  transition: transform 0.2s;
}
.logo:hover img { transform: rotate(-10deg) scale(1.08); }

.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Roboto', 'Open Sans', sans-serif;
  font-size: 1rem;
  color: #20294D;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
  transition: color 0.15s;
}
.main-nav a:after {
  content: '';
  display: block;
  margin: 0 auto;
  width: 0;
  border-radius: 16px;
  height: 2px;
  background: #36BEB7;
  transition: width 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #36BEB7;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}

/* Header CTAs */
.btn {
  background: #20294D;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 12px 28px;
  font-family: 'Roboto', 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 3px 16px rgba(54,190,183,0.08);
  transition: background 0.15s, color 0.2s, box-shadow 0.22s, transform 0.1s;
  margin-left: 20px;
  outline: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn.btn-primary {
  background: #36BEB7;
  color: #20294D;
}
.btn:hover, .btn:focus {
  background: #20294D;
  color: #fff;
  transform: scale(1.052) rotate(-1.5deg);
  box-shadow: 0 6px 24px rgba(32,41,77,0.10);
}
.btn.btn-primary:hover, .btn.btn-primary:focus {
  background: #26b1a2;
  color: #fff;
}

header .mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #20294D;
  border: 2px solid #36BEB7;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.75rem;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border 0.15s;
  margin-left: 20px;
  cursor: pointer;
  z-index: 109;
}
header .mobile-menu-toggle:focus,
header .mobile-menu-toggle:hover {
  background: #36BEB7;
  color: #fff;
  border-color: #20294D;
}

/*----------------- MOBILE NAV MENU ------------------*/
.mobile-menu {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32,41,77,0.93);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transition: transform 0.35s cubic-bezier(.8,-0.01,.3,1);
  transform: translateX(100%);
  box-shadow: -4px 0 32px rgba(32,41,77,0.13);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #36BEB7;
  font-size: 2.4rem;
  margin: 18px 28px 0 0;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.15s;
  z-index: 201;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  margin-top: 40px;
  gap: 20px;
  padding-right: 40px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Roboto', 'Open Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 14px 0 14px 0;
  border-bottom: 2px solid transparent;
  width: 100%;
  transition: border 0.26s, color 0.2s;
  text-align: right;
  letter-spacing: 0.045em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #36BEB7;
  border-bottom: 2px solid #36BEB7;
  background: rgba(54,190,183,0.10);
}

@media (max-width: 1100px) {
  header .main-nav {
    gap: 14px;
  }
  .btn { padding-left: 18px; padding-right: 18px; }
}
@media (max-width: 940px) {
  .container { padding-left: 10px; padding-right: 10px; }
}
@media (max-width: 900px) {
  header .main-nav {
    display: none;
  }
  header .btn {
    display: none;
  }
  header .mobile-menu-toggle {
    display: flex;
  }
}

/*--------------------- HERO & SECTION BASES --------------------*/
.hero, .blog-hero, .contact-hero, .confirmation {
  background: linear-gradient(120deg, #36BEB7 6%, #F2F2F2 100%);
  border-radius: 0 0 48px 48px;
  padding: 64px 0 44px 0;
  margin-bottom: 0;
  box-shadow: 0 6px 50px rgba(54,190,183,0.09);
}
.hero .content-wrapper, .blog-hero .content-wrapper, .contact-hero .content-wrapper, .confirmation .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 24px;
}
.hero h1, .blog-hero h1, .contact-hero h1, .confirmation h1 {
  font-size: 2.8rem;
  font-family: 'Roboto', 'Open Sans', sans-serif;
  font-weight: 900;
  color: #20294D;
  letter-spacing: 0.03em;
  margin-bottom: 2px;
}
.hero p, .blog-hero p, .contact-hero p, .confirmation p {
  color: #20294D;
  font-size: 1.2rem;
  margin-bottom: 0;
}

/*------------------- FLEXBOX LAYOUTS -------------------*/
.feature-grid, .service-list, .service-grid, .team-overview, .post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 12px;
}
.feature, .service, .team-member, .post {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 18px rgba(54,190,183,0.09);
  padding: 28px 22px;
  flex: 1 1 280px;
  min-width: 280px;
  max-width: 390px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  transition: box-shadow 0.22s, transform 0.13s;
}
.feature:hover,
.team-member:hover,
.service:hover,
.post:hover {
  box-shadow: 0 12px 40px rgba(32,41,77,0.08);
  transform: translateY(-4px) scale(1.025) rotate(-0.2deg);
  z-index: 2;
}
.feature img, .team-member img, .service img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
}

.feature h3, .team-member h3, .service h3, .post h3 {
  color: #36BEB7;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
}
.feature p, .team-member p, .service p, .post p {
  color: #20294D;
  font-size: 1rem;
}
.service-price {
  font-size: 1.12rem;
  color: #20294D;
  font-weight: 600;
  margin-top: 12px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(32,41,77,0.08);
  margin-bottom: 20px;
}
.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;
}

@media (max-width: 900px) {
  .feature-grid, .service-list, .service-grid, .team-overview, .post-list {
    flex-direction: column;
    gap: 20px;
  }
  .hero .content-wrapper, .blog-hero .content-wrapper, .contact-hero .content-wrapper, .confirmation .content-wrapper {
    padding: 0 5vw;
  }
}

@media (max-width: 768px) {
  .feature-grid, .service-list, .service-grid, .team-overview, .post-list,
  .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/*------------------ FAQ ACCORDION -------------------*/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 18px 0;
}
.faq-item {
  background: #F2F2F2;
  border-radius: 18px;
  box-shadow: 0 1px 6px rgba(32,41,77,0.08);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.14s;
}
.faq-item h3 {
  color: #36BEB7;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.faq-item p {
  color: #20294D;
  margin-bottom: 4px;
  font-size: 1rem;
}

/*------------------ TESTIMONIALS -------------------*/
.testimonials, .testimonials-list {
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 2px 20px rgba(54,190,183,0.05);
  margin-bottom: 40px;
  padding: 40px 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F2F2F2;
  border-radius: 22px;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 6px rgba(32,41,77,0.06);
  color: #20294D;
  font-size: 1.07rem;
  transition: box-shadow 0.16s, transform 0.09s;
}
.testimonial-card blockquote {
  color: #20294D;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-style: italic;
  line-height: 1.6;
  quotes: "\201C" "\201D";
}
.testimonial-card blockquote:before { content: "\201C"; color: #36BEB7; font-size: 2.4rem; vertical-align: top; }
.testimonial-card blockquote:after { content: "\201D"; color: #36BEB7; font-size: 2.4rem; vertical-align: bottom; }
.testimonial-card p {
  color: #20294D;
  font-weight: 700;
  margin-bottom: 0;
  font-size: 1rem;
}
.star-rating {
  color: #FFD600;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 0;
}

/*------------------ CASE STUDIES -------------------*/
.case-studies {
  margin-bottom: 60px;
}
.case-study {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 20px;
  padding: 20px 18px 14px 18px;
  box-shadow: 0 1.5px 8px rgba(32,41,77,0.055);
}
.case-study h3 {
  color: #36BEB7;
  font-size: 1.15rem;
  margin-bottom: 3px;
}
.case-study ul {
  margin-left: 2em;
  margin-bottom: 0;
  color: #20294D;
  font-size: 1rem;
}

/*------------------ BLOG CATEGORIES -------------------*/
.category-filter {
  font-size: 1rem;
  font-family: 'Roboto', 'Open Sans', sans-serif;
  margin-bottom: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.category-filter a {
  display: inline-block;
  border-radius: 22px;
  padding: 6px 18px;
  background: #36BEB7;
  color: #fff;
  font-weight: 500;
  transition: background 0.18s, color 0.13s;
}
.category-filter a:hover, .category-filter a:focus {
  background: #20294D;
  color: #fff;
}

/*---------------- NEWSLETTER + CTA SECTIONS -----------------*/
.newsletter-cta, .cta-products, .contact-short, .contact-service {
  background: #36BEB7;
  border-radius: 38px;
  color: #fff;
  box-shadow: 0 2.5px 14px rgba(54,190,183,0.08);
  padding: 40px 20px;
  margin-bottom: 60px;
}
.newsletter-cta .btn,
.cta-products .btn,
.contact-short .btn,
.contact-service .btn { background: #fff; color: #20294D; }
.newsletter-cta .btn:hover,
.cta-products .btn:hover,
.contact-short .btn:hover,
.contact-service .btn:hover { background: #20294D; color: #fff; }
.contact-summary {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  margin: 12px 0 24px 0;
  flex-wrap: wrap;
}
.contact-summary span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1.1rem;
}
.contact-summary img {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .contact-summary { flex-direction: column; gap: 10px; align-items: flex-start; }
}

/*----------------- ABOUT PAGE SPECIAL ------------------*/
.about .text-section {
  background: #F2F2F2;
  border-radius: 20px;
  box-shadow: 0 1.5px 7px rgba(54,190,183,0.09);
  padding: 36px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/*------------------ TEAM MEMBERS ----------------------*/
.team-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.team-member span {
  color: #36BEB7;
  font-size: 0.96rem;
  margin-bottom: 6px;
}

/*--------- LEGAL / INFO (RESET UL/OL in .legal) -----------*/
.legal ul, .legal ol {
  margin-bottom: 16px;
}
.legal li {
  margin-bottom: 7px;
  color: #20294D;
  font-size: 1rem;
}

/*------------------- FOOTER ----------------------*/
footer {
  background: #20294D;
  color: #fff;
  padding: 40px 0 20px 0;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -3px 30px rgba(32,41,77,0.14);
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #36BEB7;
  font-family: 'Roboto', 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.footer-contact img {
  height: 26px;
  width: auto;
}
.footer-copy {
  text-align: center;
  color: #C8CFE2;
  font-size: 0.98rem;
  margin-top: 12px;
}
@media (max-width: 600px) {
  .footer-nav, .footer-contact {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/*----------------- COOKIE CONSENT BANNER -------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  color: #20294D;
  border-top: 4px solid #36BEB7;
  box-shadow: 0 -2px 32px rgba(32,41,77,0.18);
  z-index: 800;
  padding: 22px 30px 18px 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.cookie-banner p {
  flex: 1 1 240px;
  font-size: 1.05rem;
  color: #20294D;
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.cookie-btn {
  background: #36BEB7;
  color: #fff;
  border: none;
  border-radius: 22px;
  font-size: 1rem;
  padding: 8px 20px;
  font-family: 'Roboto', 'Open Sans', sans-serif;
  font-weight: 600;
  cursor: pointer;
  margin: 0 1px;
  transition: background 0.15s, color 0.13s, box-shadow 0.1s;
  box-shadow: 0 1px 6px rgba(54,190,183,0.09);
}
.cookie-btn:focus, .cookie-btn:hover {
  background: #20294D;
  color: #36BEB7;
}
.cookie-btn.settings {
  background: #fff;
  color: #20294D;
  border: 1px solid #36BEB7;
}
.cookie-btn.settings:focus, .cookie-btn.settings:hover {
  background: #36BEB7;
  color: #fff;
  border: 1px solid #20294D;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  z-index: 900;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(32,41,77,0.73);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.32s;
}
.cookie-modal-content {
  background: #fff;
  color: #20294D;
  border-radius: 28px;
  box-shadow: 0 4px 48px rgba(32,41,77,0.24);
  min-width: 340px;
  max-width: 95vw;
  padding: 36px 30px 22px 30px;
  position: relative;
}
.cookie-modal-content h3 {
  color: #36BEB7;
  margin-top: 0;
  font-size: 1.25rem;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 14px 0 20px 0;
}
.cookie-toggle-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
.cookie-modal-category {
  flex: 1 1 auto;
  font-weight: 500;
}
.cookie-toggle {
  width: 36px; height: 22px;
  border-radius: 16px;
  background: #C8CFE2;
  position: relative;
  margin-left: auto;
  transition: background 0.14s;
  cursor: pointer;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle:before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 17px;
  background: #36BEB7;
  position: absolute;
  left: 1px;
  top: 1px;
  transition: left 0.13s, background 0.13s;
}
.cookie-toggle input:checked + label, .cookie-toggle input:checked ~ .cookie-toggle:before {
  background: #36BEB7;
}
.cookie-toggle input:checked + .cookie-toggle:before {
  left: 15px;
  background: #36BEB7;
}
.cookie-toggle[aria-checked="true"]:before {
  left: 15px;
  background: #36BEB7;
}
.cookie-modal-close {
  position: absolute;
  right: 19px;
  top: 18px;
  font-size: 2.1rem;
  color: #36BEB7;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #20294D;
}

@media (max-width: 520px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-left: 10px; padding-right: 10px;
  }
  .cookie-modal-content { min-width: 0; padding: 18px 8vw 18px 8vw; }
}

/*-------------------- MISC --------------------------*/
::-webkit-scrollbar {
  width: 8px;
  background: #F2F2F2;
}
::-webkit-scrollbar-thumb {
  background: #C8CFE2;
  border-radius: 8px;
}

/*-------------------- ANIMATIONS --------------------*/
.btn, .feature, .service, .team-member, .post, .testimonial-card, .faq-item, .case-study {
  transition: box-shadow 0.22s, background 0.17s, color 0.13s, transform 0.13s;
}

/*------------------- TYPOGRAPHY SCALE ----------------------*/
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }
p, ul, ol, li, td, th { font-size: 1rem; }
@media (max-width: 600px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.12rem; }
  p, ul, ol, li, td, th { font-size: 0.98rem; }
}

/*--------------- UNIQUE ARTISTIC ACCENTS -------------*/
.section, .hero, .newslette r-cta, .cta-products, .contact-short {
  border-bottom: 8px solid #36BEB7;
  border-radius: 34px 34px 52px 52px;
  position: relative;
  overflow: visible;
}
.section:before, .hero:before {
  content: '';
  position: absolute;
  left: 38px; top: 30px;
  width: 100px; height: 100px;
  background: rgba(32,41,77, 0.04);
  border-radius: 48% 52% 60% 41%;
  z-index: 0;
  filter: blur(2.5px);
  pointer-events: none;
  /* only for decoration */
}
.section:after, .hero:after {
  content: '';
  position: absolute;
  right: 30px; bottom: 38px;
  width: 60px; height: 68px;
  background: rgba(54,190,183, 0.08);
  border-radius: 39% 88% 52% 55%;
  z-index: 0;
  filter: blur(2.5px);
  pointer-events: none;
}

/* Hide decorations on small screens */
@media (max-width:650px) {
  .section:before, .section:after, .hero:before, .hero:after { display: none; }
}

/*------------------ FORM & INPUTS FOR CTA ---------------*/
input, textarea, select {
  background: #F2F2F2;
  border: 1px solid #36BEB7;
  border-radius: 10px;
  padding: 10px 14px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
  box-shadow: none;
  outline: none;
  color: #20294D;
  transition: border 0.14s;
}
input:focus, textarea:focus, select:focus {
  border-color: #20294D;
}

/*------------------ MEDIA QUERIES: MOBILE ADJUSTMENTS ---------------*/
@media (max-width: 720px) {
  .hero, .blog-hero, .contact-hero, .confirmation { padding: 24px 0 24px 0; }
  .section, .newsletter-cta, .cta-products, .contact-short { padding: 25px 6vw; }
  .faq-item, .case-study { padding: 14px 8px; }
}

/*---------------------- VISIBILITY UTILS ---------------------------*/
.hidden { display: none !important; }
.flex { display: flex !important; }

/*----------------- ARTISTIC FONTS LOADER (FONTS FALLBACK) -------*/
@font-face {
  font-family: 'Roboto';
  src: local('Roboto'), local('Roboto-Regular'), url('https://fonts.googleapis.com/css?family=Roboto:400,700,900&display=swap');
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: local('Open Sans'), local('OpenSans-Regular'), url('https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap');
  font-display: swap;
}

/**** END OF SLICK WHEELER CREATIVE ARTISTIC CSS ****/
