/* 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, 
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.6;
  background: #F1FAEE;
  color: #1D3557;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  margin-left: 1.2em;
}
a {
  color: #1D3557;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #B41623;
  outline: none;
}
button, .btn-primary, .btn-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  border: none;
  outline: none;
}

/* TYPOGRAPHY ------------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.015em;
  color: #1D3557;
  text-transform: none;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.1rem;
}
p, ul, ol, li, address {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #294063;
}
strong {
  font-weight: 700;
  color: #1D3557;
}
small {
  font-size: 0.89rem;
  color: #6D6D6D;
}

/* GEOMETRIC STRUCTURE --------------------------------------------- */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(29,53,87,0.08);
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
    border-radius: 12px;
  }
}

/* NAVIGATION & HEADER --------------------------------------------- */
header {
  background: #1D3557;
  color: #fff;
  box-shadow: 0 4px 16px rgba(29,53,87,0.08);
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 12px 0;
  gap: 24px;
}
header nav img {
  height: 52px;
  margin-right: 32px;
}
header nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  align-items: center;
}
header nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #F1FAEE;
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 600;
  transition: background 0.22s, color 0.22s;
}
header nav ul li a:hover, 
header nav ul li a:focus {
  background: #F1FAEE;
  color: #1D3557;
}
header .btn-primary {
  margin-left: 26px;
}

/* HAMBURGER & MOBILE NAV ------------------------------------------ */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #F1FAEE;
  position: absolute;
  right: 18px;
  top: 12px;
  z-index: 1201;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover{
  background:#E63946;
  color:#fff;
}
.mobile-menu {
  position: fixed;
  left: 0; top: 0;
  height: 100vh; width: 100vw;
  background: #1D3557;
  color:#fff;
  z-index: 1200;
  transform: translateX(-100vw);
  transition: transform 0.42s cubic-bezier(.7,.2,.1,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 42px 26px 20px 26px;
  box-shadow: 0 10px 32px rgba(0,0,0,0.15);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  align-self: flex-end;
  margin-bottom: 12px;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #B41623;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 16px;
}
.mobile-nav a {
  font-size: 1.2rem;
  color: #F1FAEE;
  padding: 12px 6px;
  margin-bottom: 4px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.18s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E63946;
  color: #fff;
}
@media (max-width: 1024px) {
  header nav ul,
  header nav .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* BUTTONS --------------------------------------------------------- */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 13px 26px 13px 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 24px;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
  box-shadow: 0 2px 8px rgba(29,53,87,0.12);
  border: none;
  outline: none;
  position: relative;
}
.btn-primary {
  background: #E63946;
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: #B41623;
  color: #fff;
}
.btn-secondary {
  background: #fff;
  color: #1D3557;
  border: 2px solid #1D3557;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #F1FAEE;
  color: #E63946;
  border-color: #E63946;
}

/* HERO SECTION ---------------------------------------------------- */
.hero {
  background: linear-gradient(135deg, #F1FAEE 60%, #E63946 180%);
  padding: 50px 0 26px 0;
  margin-bottom: 60px;
  min-height: 320px;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  gap: 26px;
  max-width: 700px;
  background: rgba(255,255,255,0.97);
  padding: 40px 36px;
  border-radius: 22px;
  box-shadow: 0 6px 42px rgba(29,53,87,0.07);
  border: 2.5px solid #E63946;
}
.hero h1 {
  color: #1D3557;
  font-size: 2.6rem;
}
.hero p {
  font-size: 1.2rem;
  color: #294063;
}
@media (max-width: 768px) {
  .hero .content-wrapper {
    padding: 24px 12px;
    border-radius: 11px;
  }
  .hero {
    padding: 22px 0 10px 0;
    margin-bottom: 36px;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

/* FLEXBOX GRIDS --------------------------------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-item {
  flex: 1 1 210px;
  min-width: 220px;
  max-width: 340px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 17px rgba(29,53,87,0.10);
  padding: 28px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  border: 2.5px solid #F1FAEE;
  transition: box-shadow 0.18s, border 0.18s;
  position: relative;
}
.feature-item img {
  height: 44px;
  width: 44px;
  margin-bottom: 4px;
}
.feature-item h3 {
  font-size: 1.1rem;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 8px 24px rgba(29,53,87,.17);
  border-color: #B41623;
}
@media (max-width: 900px) {
  .feature-grid {
    justify-content: flex-start;
    gap: 20px;
  }
  .feature-item {
    min-width: 160px;
    flex: 1 1 90%;
    max-width: none;
  }
}
@media (max-width: 600px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item {
    min-width: 0;
    width: 100%;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2.5px 16px rgba(211, 47, 47, 0.07);
  margin-bottom: 20px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* TESTIMONIALS & CARDS -------------------------------------------- */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  color: #1D3557;
  border-radius: 17px;
  box-shadow: 0 3px 18px rgba(29,53,87,0.11);
  padding: 24px 24px 16px 24px;
  min-width: 250px;
  max-width: 390px;
  border-left: 6px solid #E63946;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border 0.18s;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #294063;
  margin-bottom: 8px;
}
.testimonial-card strong, .testimonial-card span {
  font-size: 1rem;
  color: #1D3557;
}
.testimonial-card .star-rating {
  margin-top: 2px;
  font-size: 1.2rem;
  color: #E63946;
  letter-spacing: 1.5px;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 30px rgba(181,22,35,.16);
  border-left-color: #B41623;
}
@media (max-width: 600px) {
  .testimonial-slider, .testimonial-list {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    max-width: none;
    width: 100%;
  }
}

/* TEAM & ABOUT ---------------------------------------------------- */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.team-member {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 12px rgba(29,53,87,.07);
  padding: 26px 16px;
  min-width: 210px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border: 2.5px solid #F1FAEE;
  transition: box-shadow 0.14s, border 0.14s;
  margin-bottom: 20px;
}
.team-member img {
  height: 56px;
  width: 56px;
  margin-bottom: 6px;
}
.team-member:hover, .team-member:focus-within {
  box-shadow: 0 8px 24px rgba(29,53,87,.14);
  border-color: #E63946;
}
@media (max-width: 700px) {
  .team-grid {
    flex-direction: column;
    gap: 14px;
  }
  .team-member {
    max-width: none;
    width: 100%;
  }
}

/* CTA ------------------------------------------------------------- */
.cta {
  background: #1D3557;
  padding: 56px 0;
  text-align: center;
  color: #fff;
}
.cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 24px;
}
.cta .btn-primary {
  background: #E63946;
  color: #fff;
  border: none;
  margin: 12px 0 0 0;
}
@media (max-width: 768px) {
  .cta {
    padding: 34px 0;
  }
  .cta h2 {
    font-size: 1.4rem;
  }
}

/* COOKIE CONSENT BANNER ------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; width: 100vw;
  background: #fff;
  color: #1D3557;
  border-top: 5px solid #E63946;
  box-shadow: 0 -2px 32px rgba(29,53,87,.13);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1400;
  padding: 22px 12px 20px 12px;
  font-family: 'Roboto', Arial, sans-serif;
  animation: bannerPopIn 0.55s cubic-bezier(.37,1.5,.56,1.01);
  gap: 12px;
}
@keyframes bannerPopIn {
  0% { transform: translateY(60px); opacity: 0; }
  90% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1rem;
  color: #294063;
  margin-bottom: 5px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  margin-top: 0.3em;
  flex-wrap: wrap;
}
.cookie-banner button {
  padding: 8px 18px;
  font-size: 1rem;
  border-radius: 22px;
  border: none;
  background: #F1FAEE;
  color: #1D3557;
  font-weight: 700;
  margin-left: 0;
  margin-right: 0;
  margin-top: 6px;
  margin-bottom: 6px;
  box-shadow: 0 1px 4px rgba(29,53,87,0.08);
  transition: background 0.19s, color 0.19s;
}
.cookie-banner .accept {
  background: #E63946;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #B41623;
  color: #fff;
}
.cookie-banner .settings {
  background: #1D3557;
  color: #fff;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #294063;
  color: #fff;
}
.cookie-banner .reject {
  background: #F1FAEE;
  color: #1D3557;
  border: 2px solid #1D3557;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #fff;
  color: #E63946;
  border-color: #E63946;
}

/* COOKIE SETTINGS MODAL ------------------------------------------- */
.cookie-modal-overlay {
  position: fixed;
  cursor: pointer;
  z-index: 1500;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(29,53,87,0.57);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: modalOverlayFadeIn 0.25s;
}
@keyframes modalOverlayFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #1D3557;
  border-radius: 22px;
  max-width: 420px;
  width: 97vw;
  padding: 32px 28px 18px 28px;
  box-shadow: 0 8px 38px rgba(29,53,87,.21);
  z-index: 1501;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: modalFadeIn 0.28s;
}
@keyframes modalFadeIn {
  0% { transform: scale(.96); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  color: #B41623;
  margin-bottom: 14px;
}
.cookie-modal .modal-close {
  background: none;
  border: none;
  color: #E63946;
  font-size: 2rem;
  position: absolute;
  right: 16px;
  top: 18px;
  cursor: pointer;
  z-index: 3;
  transition: color 0.15s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  color: #B41623;
}
.cookie-modal .cookie-preferences {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
  width: 100%;
  margin-top: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #F1FAEE;
  font-size: 1rem;
}
.cookie-modal .cookie-category label {
  font-weight: 600;
  flex: 1 1 auto;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: #E63946;
  width: 22px;
  height: 22px;
}
.cookie-modal .cookie-category .always-on {
  font-size: 0.97em;
  color: #aaa;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 18px;
  width: 100%;
  margin-top: 12px;
}
.cookie-modal .modal-actions button {
  flex: 1 1 0;
  min-width: 80px;
  padding: 8px 0;
}

/* FAQ ACCORDION -------------------------------------------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #fff;
  border-radius: 10px;
  padding: 18px 15px;
  box-shadow: 0 2px 11px rgba(29,53,87,0.06);
  margin-bottom: 10px;
  border-left: 4px solid #1D3557;
}
.faq-item h3 {
  font-size: 1.07rem;
  cursor: pointer;
  margin-bottom: 7px;
  color: #1D3557;
}
.faq-item p {
  color: #294063;
  font-size: 0.97rem;
}

/* SKILLS BADGES --------------------------------------------------- */
.skill-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 20px 0 0 0;
}
.skill-badges span {
  padding: 7px 16px;
  font-size: 0.96rem;
  background: #F1FAEE;
  color: #1D3557;
  border-radius: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(29,53,87,0.09);
  border: 2px solid #1D3557;
  letter-spacing: 0.01em;
  transition: border 0.18s, background 0.18s, color 0.18s;
}
.skill-badges span:hover, .skill-badges span:focus {
  border-color: #B41623;
  background: #fff0f1;
  color: #B41623;
}

/* MEMBERSHIP LEVELS ----------------------------------------------- */
.membership-levels {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 18px 0 0 0;
}
.membership-levels .level {
  background: #F1FAEE;
  border-radius: 12px;
  padding: 12px 19px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #294063;
  border: 2px solid #1D3557;
  font-size: 1rem;
  box-shadow: 0 1px 8px rgba(29,53,87,0.10);
  min-width: 140px;
  margin-bottom: 12px;
  transition: border 0.17s, color 0.17s, background 0.17s;
}
.membership-levels .level:hover, .membership-levels .level:focus {
  border-color: #B41623;
  color: #E63946;
  background: #fff;
}
@media (max-width: 600px) {
  .membership-levels {
    flex-direction: column;
    gap: 12px;
  }
}

/* CALENDAR -------------------------------------------------------- */
.calendar-widget {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2.5px 15px rgba(29,53,87,0.09);
  padding: 22px 15px 15px 15px;
  margin-bottom: 22px;
  font-family: 'Roboto', Arial, sans-serif;
}
.calendar-widget ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.calendar-widget li {
  font-size: 1rem;
  color: #294063;
  padding-left: 16px;
  position: relative;
  line-height: 1.9;
}
.calendar-widget li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px; height: 8px;
  background: #E63946;
  border-radius: 2px;
  transform: rotate(45deg);
}
.calendar-widget strong {
  color: #B41623;
}

/* FORMS & TEXT SECTIONS ------------------------------------------- */
.text-section {
  margin-bottom: 22px;
}
.text-section h2 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.text-section ul, .text-section ol {
  margin: 8px 0 16px 1.35em;
  padding-left: 0;
}
.text-section li {
  margin-bottom: 8px;
}
.text-section img {
  vertical-align: middle;
  margin-right: 8px;
  height: 20px;
}

/* ADDRESS & FOOTER ------------------------------------------------ */
footer {
  background: #1D3557;
  color: #fff;
  padding: 36px 0 22px 0;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-bottom: 12px;
}
footer nav a {
  color: #F1FAEE;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 5px 15px;
  border-radius: 10px;
  transition: background 0.18s, color 0.18s;
}
footer nav a:hover, footer nav a:focus {
  background: #B41623;
  color: #fff;
}
footer address {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 8px;
  font-style: normal;
  font-size: 0.99rem;
  color: #F1FAEE;
  flex-direction: row;
}
footer address img {
  height: 18px;
  margin-right: 3.5px;
  vertical-align: middle;
}
footer a {
  color: #fff2;
  text-decoration: underline;
  transition: color 0.19s;
}
footer a:hover, footer a:focus {
  color: #F1FAEE;
  text-decoration: underline;
}
.footer-social {
  margin: 8px 0 0 0;
}
footer small {
  display: block;
  opacity: 0.84;
  color: #F1FAEE;
  margin-top: 5px;
}
@media (max-width: 600px) {
  footer {
    font-size: 0.93rem;
    padding: 18px 0 12px 0;
  }
  footer nav {
    gap: 10px;
  }
}

/* UTILITIES AND ACCESSIBILITY ------------------------------------- */
.visually-hidden {
  position:absolute;
  clip: rect(1px,1px,1px,1px);
  padding:0; border:0; height:1px;
  width:1px; overflow:hidden;
}
.focus-visible {
  outline: 3px solid #B41623;
  outline-offset: 2px;
}

/* MICRO-INTERACTIONS ---------------------------------------------- */
.btn-primary, .btn-secondary, .feature-item, .skill-badges span, .testimonial-card, .card, .membership-levels .level, .team-member {
  transition: 
    box-shadow 0.20s cubic-bezier(.4,0,.2,1),
    transform 0.15s cubic-bezier(.4,0,.2,1),
    background 0.16s linear, 
    color 0.16s linear, 
    border 0.16s linear;
}
.btn-primary:active, .btn-secondary:active, .feature-item:active, .testimonial-card:active {
  transform: scale(.97);
}
.skill-badges span:active, .membership-levels .level:active {
  transform: scale(.98);
}

/* SCROLL BAR ------------------------------------------------------ */
::-webkit-scrollbar {
  width: 10px;
  background: #F1FAEE;
}
::-webkit-scrollbar-thumb {
  background: #1D3557;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #B41623;
}

/* GEOMETRIC DECOR ------------------------------------------------- */
.section {
  position: relative;
}
.section::after {
  content: "";
  display: none;
}
@media (min-width: 1100px) {
  .hero .container::before {
    content: "";
    position: absolute;
    left: -65px; top: 16%;
    width: 120px; height: 120px;
    background: #E63946;
    opacity: 0.055;
    border-radius: 20% 68% 19% 51%/39% 32% 79% 41%;
    z-index: 1;
    pointer-events: none;
  }
}

/* MEDIA QUERIES --------------------------------------------------- */
@media (max-width: 1000px) {
  .container {
    padding: 0 10px;
  }
  .content-wrapper {
    gap: 15px;
  }
}
@media (max-width: 600px) {
  .container {
    max-width: 100vw;
    min-width: 0;
    padding: 0 3px;
  }
  h1 {
    font-size: 1.62rem;
    margin-bottom: 14px;
  }
  h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  section {
    padding: 19px 0 10px 0;
  }
  .section {
    padding: 11px 4px;
    margin-bottom: 22px;
  }
}

/* IMPORTED FONTS -------------------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
