:root {
  --bg-light: #fffaf6;
  --font-base: #2e2e2e;
  --accent-1: #5f7c5b;
  --accent-2: #aec6c5;
  --hovers-accents: #c2b489;
  --googleplay-buttons-googleplay-blue: #00d7fe;
  --common-section-color: #222;

  --font-family: "Manrope", sans-serif;
  --second-family: "Cormorant Garamond", sans-serif;
  --third-family: "Lexend", sans-serif;
  --font3: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  padding: 0;
  color: inherit;
  background-color: transparent;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

*,
::before,
::after {
  box-sizing: border-box;
}

body {
  margin: 0 auto;
  font-family: var(--font-family);
  color: var(--font-base);
  background: var(--bg-light);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.section-mwu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.container-mwu {
  position: relative;
  width: 375px;
  padding: 48px 16px;
}

.section-heading-wrap-mwu {
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 24px;

  .section-heading-line-mwu {
    background: url(/images/line-mob.png);
    background-position: start;
    background-size: cover;

    width: 100%;
    height: 7px;
  }

  .section-heading-line-right-mwu {
    transform: scaleX(-1);
  }

  .section-heading-mwu {
    font-weight: 300;
    font-size: 14px;
    line-height: 150%;
    flex-shrink: 0;
  }
}

.section-title-mwu {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 40px;
  line-height: 150%;
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (min-width: 1440px) {
  .container-mwu {
    width: 1440px;
    padding: 80px;
  }

  .section-heading-wrap-mwu {
    margin-bottom: 64px;

    .section-heading-line-mwu {
      background: url(/images/line-desktop.png);
      background-position: start;
      background-size: cover;

      width: 100%;
      height: 7px;
    }
  }
}
