:root {
  --font-family: "Open Sans", sans-serif;
  --second-family: "Inter", 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: #fff;
  background: #020202;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.section-nvs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.container-nvs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 375px;
  padding: 32px 16px;
}

.section-title-nvs {
  font-weight: 400;
  font-size: 36px;
  line-height: 100%;
  text-align: center;
  margin-bottom: 48px;
}

@media screen and (min-width: 1440px) {
  .container-nvs {
    width: 1440px;
    padding: 60px 72px;
  }

  .section-title-nvs {
    font-size: 48px;
    margin-bottom: 80px;
  }
}
