:root {
  --bg1: #f0eadf;
  --bg2: #475a45;
  --text-black: #010101;
  --text-white: #fff;
  --bg-white: #fff;
  --text-gray: #6a7282;

  --font-family: "Inter", sans-serif;
  --second-family: "Manrope", sans-serif;
  --third-family: "Fredoka", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

dl,
dt,
dd,
figure,
p {
  margin: 0;
}

dt,
dd {
  display: inline;
}

dd::after {
  content: "";
  display: block;
}

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(--text-black);
  background: var(--bg1);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.section-sts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.container-sts {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 375px;
  padding: 40px 24px;
}

.section-title-sts {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 30px;
  line-height: 133%;
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (min-width: 1440px) {
  .container-sts {
    width: 1440px;
    padding: 64px;
  }

  .section-title-sts {
    font-weight: 600;
    font-size: 50px;
    line-height: 130%;
    margin-bottom: 40px;
  }
}
