/* RESET & NORMALIZE */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, em, img, q, s, samp, small, strike, strong, sub, sup, 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, main, 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #FAFAFC;
  color: #203752;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* BRAND COLORS & TYPOGRAPHY */
:root {
  --primary: #203752;
  --secondary: #E8EAF6;
  --accent: #F6C744;
  --dark: #17223A;
  --light: #FFFFFF;
  --grey: #F3F3FA;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  color: var(--primary);
  text-shadow: 1px 1px 0 rgba(246, 199, 68, 0.09), 0 2px 8px rgba(32,55,82,0.05);
}
h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
p, li, span {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--dark);
}

strong, b {
  color: var(--primary);
  font-weight: 700;
}

/* CONTAINER & SPACING */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
@media (max-width: 768px) {
  .section, section {
    padding: 28px 10px;
    margin-bottom: 40px;
  }
  .container {
    padding: 0 10px;
  }
  .content-wrapper {
    gap: 20px;
  }
}

/* HEADER & NAVIGATION */
header {
  background: var(--primary);
  color: var(--light);
  width: 100%;
  box-shadow: 0 4px 16px rgba(32,55,82, 0.09);
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}
header img {
  height: 50px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.06));
  margin-right: 24px;
}
header nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--light);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}
header nav a:hover, header nav a:focus {
  color: var(--accent);
}
.btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--accent);
  color: var(--primary);
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 900;
  font-size: 1.1rem;
  border: none;
  box-shadow: 0 4px 16px rgba(246,199,68,0.14);
  transition: background 0.18s, color 0.18s, box-shadow 0.2s, transform 0.15s;
  display: inline-block;
  margin-left: 20px;
  cursor: pointer;
  position: relative;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--primary);
  color: var(--accent);
  box-shadow: 0 8px 32px rgba(246,199,68,0.18);
  transform: scale(1.04) translateY(-3px);
}
@media (max-width: 992px) {
  header .container {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  header nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
  .btn-primary {
    margin-left: 0;
    margin-top: 12px;
    margin-bottom: 4px;
  }
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--primary);
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  box-shadow: 0 4px 18px rgba(246,199,68,0.09);
  z-index: 1021;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.13s;
}
.mobile-menu-toggle:active {
  transform: scale(0.96);
}
@media (max-width: 900px) {
  header nav, header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 88vw;
  max-width: 400px;
  height: 100vh;
  background: var(--secondary);
  box-shadow: -4px 0 24px rgba(32,55,82,0.18);
  z-index: 2005;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.7,0,0.3,1);
  display: flex;
  flex-direction: column;
  padding: 40px 24px 24px 24px;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2rem;
  align-self: flex-end;
  margin-bottom: 20px;
  cursor: pointer;
  transition: color 0.18s, transform 0.13s;
  z-index: 2006;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--accent);
  transform: scale(1.07) rotate(10deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 10px;
}
.mobile-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 14px 0 10px 0;
  margin-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-bottom 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}
@media (max-width: 480px) {
  .mobile-menu {
    width: 99vw;
    padding-left: 6vw;
  }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(110deg, var(--secondary) 55%, var(--accent) 97%, var(--primary) 107%);
  border-radius: 0 0 58px 0;
  box-shadow: 0 10px 22px rgba(32,55,82,0.06);
}
.hero .container { align-items: flex-start; }
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  color: var(--primary);
  letter-spacing: 0.04em;
}
.hero p {
  font-size: 1.18rem;
  color: var(--dark);
  margin-bottom: 20px;
  margin-top: 4px;
}
@media (max-width: 768px) {
  .hero {
    border-radius: 0 0 36px 0;
    padding-bottom: 32px;
  }
  .hero h1 {
    font-size: 2.1rem;
  }
}

/* FLEX LAYOUT UTILITIES (MANDATORY PATTERNS) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(32,55,82,0.06);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  min-width: 260px;
  transition: box-shadow 0.22s, transform 0.19s;
}
.card:hover {
  box-shadow: 0 9px 32px rgba(32,55,82,0.13);
  transform: translateY(-4px) scale(1.015);
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* RESPONSIVE FLEX DIRECTIONS */
@media (max-width: 768px) {
  .text-image-section, .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .card {
    padding: 22px 10px;
  }
}

/* FEATURES & VALUE LISTS */
.feature-grid, .value-list, .article-list, .category-list, .case-studies-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.feature-grid > li, .category-list > li, .case-studies-list > li {
  background: var(--grey);
  border-radius: 18px;
  box-shadow: 0 4px 14px rgba(32,55,82,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 22px;
  min-width: 240px;
  flex: 1 0 220px;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.17s;
  border-left: 6px solid var(--accent);
}
.feature-grid > li:hover, .category-list > li:hover, .case-studies-list > li:hover {
  box-shadow: 0 8px 36px rgba(246,199,68,0.12);
  transform: translateY(-3px);
}
.feature-grid img, .value-list img {
  width: 42px;
  margin-bottom: 4px;
  filter: drop-shadow(0 2px 7px rgba(246,199,68,0.25));
}
.value-list {
  flex-direction: column;
  gap: 18px;
}
.value-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--primary);
  font-size: 1.06rem;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--secondary);
  border-radius: 13px;
  padding: 18px 22px;
  box-shadow: 0 2px 8px rgba(32,55,82,0.05);
}
.value-list li img {
  width: 36px;
}
@media (max-width: 900px) {
  .feature-grid, .category-list, .case-studies-list {
    flex-direction: column;
    gap: 14px;
  }
  .feature-grid > li, .category-list > li, .case-studies-list > li {
    min-width: unset;
    width: 100%;
    align-items: stretch;
  }
}

/* SERVICE/PRODUCT CARDS (about, oferta, realiacje) */
.service-tiles, .short-tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.service-tiles > div, .short-tips-grid > div {
  background: var(--secondary);
  box-shadow: 0 2px 10px rgba(246,199,68,0.06);
  border-radius: 14px;
  padding: 22px 20px 20px 20px;
  min-width: 165px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  transition: box-shadow 0.17s, transform 0.17s;
  font-family: 'Montserrat', Arial, sans-serif;
}
.service-tiles > div:hover, .short-tips-grid > div:hover {
  box-shadow: 0 8px 36px rgba(32,55,82,0.15);
  transform: translateY(-4px) scale(1.018);
}
.short-tips-grid img {
  width: 36px;
  margin-bottom: 6px;
}
@media (max-width: 900px) {
  .service-tiles, .short-tips-grid {
    flex-direction: column;
    gap: 13px;
  }
}

/* CTAs & SPECIAL SECTIONS */
.cta {
  background: var(--accent);
  border-radius: 36px 6px 36px 0;
  box-shadow: 0 7px 20px rgba(246,199,68,0.13);
  text-align: center;
}
.cta h2 {
  color: var(--primary);
  margin-bottom: 22px;
  font-weight: 900;
}
.cta .btn-primary {
  margin-top: 0;
}

/* TESTIMONIALS */
.testimonials, .testimonial-quotes, .testimonial-slider {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.testimonial-slider, .testimonial-quotes {
  flex-direction: row;
  gap: 28px;
  flex-wrap: wrap;
}
.testimonial-card {
  background: var(--light);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(32,55,82,0.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-width: 230px;
  max-width: 370px;
  flex: 1 1 290px;
  padding: 26px 20px 16px 26px;
  margin-bottom: 24px;
  border-left: 5px solid var(--accent);
  position: relative;
  transition: box-shadow 0.18s, transform 0.14s;
  color: var(--dark);
}
.testimonial-card img {
  height: 28px;
  margin-bottom: 4px;
}
.testimonial-card p {
  color: var(--dark);
  font-size: 1.05rem;
}
.testimonial-author {
  display: block;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-size: 1.03rem;
  margin-top: 10px;
}
.testimonial-card:hover {
  box-shadow: 0 10px 36px rgba(246,199,68,0.20);
  transform: translateY(-6px) scale(1.012);
}
@media (max-width: 900px) {
  .testimonial-slider, .testimonial-quotes {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    min-width: unset;
    max-width: unset;
  }
}

/* CONTACT SECTIONS */
.contact-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 20px;
}
.contact-info img {
  width: 32px;
  margin-right: 8px;
}
.contact-info > div, .contact-info > p {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    gap: 10px;
  }
  .contact-info > div {
    padding-bottom: 8px;
  }
}
.map-embed {
  margin: 24px 0 18px 0;
  background: var(--secondary);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.map-embed img { width: 36px; }

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(100deg, var(--secondary) 60%, var(--accent) 100%);
  border-radius: 0 0 56px 0;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 48px;
}
.thank-you-message {
  font-size: 1.1rem;
  color: var(--dark);
  margin: 16px 0 14px 0;
}
.next-steps-info ul {
  margin: 0 auto 18px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.next-steps-info li {
  color: var(--primary);
  font-size: 1.03rem;
  font-weight: 500;
}

/* FOOTER */
footer {
  background: var(--primary);
  color: var(--secondary);
  padding: 26px 0 10px;
  margin-top: 44px;
}
footer .container
{
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
footer nav {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
footer nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: color 0.16s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--secondary);
}
footer span {
  font-size: 0.95rem;
  color: var(--secondary);
}

/* ARTICLE AND POLICY SECTIONS */
.text-section {
  padding: 8px 0 15px 0;
  font-size: 1.05rem;
  color: var(--dark);
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.7;
}
.text-section ul, .text-section ol {
  margin-top: 9px;
  margin-left: 22px;
  padding-left: 10px;
  list-style: disc;
  color: var(--primary);
}
.text-section li {
  padding-bottom: 5px;
  font-size: 1rem;
}

/* ACCORDION (for policy/faq if needed later) */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* COOKIE BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  color: var(--secondary);
  padding: 24px 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 2100;
  box-shadow: 0 -4px 24px rgba(32,55,82,0.17);
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(48px);
  transition: opacity 0.35s, transform 0.38s;
}
.cookie-banner.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner p {
  flex: 1 1 280px;
  margin-right: 16px;
  font-size: 1rem;
  color: var(--secondary);
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 29px;
  padding: 11px 22px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s, color 0.17s, box-shadow 0.18s, transform 0.13s;
  margin-right: 0;
}
.cookie-banner .accept {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(246,199,68,0.10);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--primary);
  color: var(--accent);
}
.cookie-banner .reject {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(32,55,82,0.10);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--accent);
  color: var(--primary);
}
.cookie-banner .settings {
  background: var(--primary);
  color: var(--accent);
  border: 1px solid var(--accent);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--accent);
  color: var(--primary);
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 7px 14px;
  }
  .cookie-banner p {
    margin-right: 0;
    margin-bottom: 8px;
  }
}
/* Cookie Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32,55,82,0.74);
  z-index: 3000;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.show {
  display: flex;
  animation: fadeIn 0.25s 1;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: var(--light);
  color: var(--primary);
  border-radius: 25px;
  box-shadow: 0 6px 36px rgba(32,55,82,0.21);
  max-width: 420px;
  width: 94vw;
  padding: 38px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.cookie-modal h2 {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 18px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Roboto', Arial, sans-serif;
  justify-content: space-between;
  padding: 8px 0;
}
.cookie-category input[type='checkbox'] {
  accent-color: var(--accent);
  width: 21px;
  height: 21px;
}
.cookie-category .essential {
  color: var(--primary);
  font-weight: 600;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 29px;
  padding: 11px 22px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  margin-right: 0;
}
.cookie-modal .accept {
  background: var(--accent);
  color: var(--primary);
}
.cookie-modal .accept:hover, .cookie-modal .accept:focus {
  background: var(--primary);
  color: var(--accent);
}
.cookie-modal .close {
  background: var(--secondary);
  color: var(--primary);
  border: 1px solid var(--accent);
}
.cookie-modal .close:hover, .cookie-modal .close:focus {
  background: var(--accent);
  color: var(--primary);
}

/* ANIMATION CLASSES */
.fade-in {
  animation: fadeIn 0.5s ease-in;
}
.slide-in-right {
  animation: slideInRight 0.38s cubic-bezier(0.7,0,0.3,1);
}
@keyframes slideInRight {
  0% { transform: translateX(100%); }
  100% { transform: translateX(0); }
}

/* ARTSY DECORATIVE MODS */
section {
  position: relative;
  z-index: 1;
}
section:before {
  content: '';
  display: block;
  position: absolute;
  top: -30px;
  right: -70px;
  width: 110px;
  height: 88px;
  border-radius: 58% 42% 40% 60%/50% 70% 30% 60%;
  background: var(--accent);
  opacity: 0.07;
  z-index: 0;
  pointer-events: none;
}
section:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -36px;
  left: -58px;
  width: 70px;
  height: 70px;
  border-radius: 48% 52% 31% 69%/63% 35% 65% 37%;
  background: var(--primary);
  opacity: 0.045;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 660px) {
  section:before, section:after {
    display: none;
  }
}

/* MICRO-INTERACTIONS */
li, .feature-item, .card, .service-tiles > div, .short-tips-grid > div, .testimonial-card {
  transition: box-shadow 0.17s, transform 0.13s;
}
li:active, .card:active, .service-tiles > div:active, .short-tips-grid > div:active {
  transform: scale(0.97);
}

/* FOCUS VISIBLE FOR ACCESSIBILITY */
a:focus, button:focus, .btn-primary:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* SCROLLBARS */
::-webkit-scrollbar {
  width: 9px;
  background: var(--secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 6px;
}

/* MEDIA QUERIES FOR RESPONSIVENESS */
@media (max-width: 500px) {
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .btn-primary, .cookie-banner button, .cookie-modal button {
    font-size: 0.96rem;
    padding: 10px 15px;
  }
  .testimonial-card {
    padding: 15px 6px 10px 10px;
  }
}

/* PREVENT OVERLAPPING - GAPS & MARGINS */
.card, .testimonial-card, .feature-grid > li, .category-list > li, .case-studies-list > li, .service-tiles > div, .short-tips-grid > div {
  margin-bottom: 20px !important;
}
section, .section {
  margin-bottom: 60px !important;
  padding-bottom: 24px !important;
}

/* SPECIAL: ENSURE NO OVERLAP EVEN ON EDGE CASES */
@media (max-width: 375px) {
  .container, .content-wrapper {
    padding-right: 0;
    padding-left: 0;
  }
}

/* END */
