:root {
  --font-family: "Roboto", sans-serif;
  --second-family: "Poppins", sans-serif;
  --third-family: "Fredoka", sans-serif;
  --font3: "Montserrat", 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;
  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: #fff;
  background: #ff9501;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.section-mmu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.container-mmu {
  position: relative;
  width: 375px;
  padding: 58px 20px 32px;
}

.content-mmu {
  position: relative;
  border: 4px solid #fff;
  border-radius: 24px;
  padding: 50px 24px 24px 24px;
  width: 100%;
  background: #1a9acd;

  background: url(/images/scales-mob.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.section-title-mmu {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  text-align: center;

  border-radius: 26px;
  padding: 8px 16px;
  background: #081736;
  width: max-content;

  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 1440px) {
  .container-mmu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1440px;
    padding: 142px 72px 90px;
  }

  .content-mmu {
    border: 6px solid #fff;
    border-radius: 40px;
    padding: 92px 40px 40px 40px;

    background: url(/images/scales-desk.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .section-title-mmu {
    font-size: 48px;

    border-radius: 50px;
    padding: 16px 24px;

    top: -52px;
  }
}
