:root {
  --font-family: "Inter", sans-serif;
  --second-family: "Manrope", sans-serif;
  --third-family: "Outfit", 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;
  background-color: transparent;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

*,
::before,
::after {
  box-sizing: border-box;
}

body {
  margin: 0 auto;
  color: #484848;
  background: #fff;
}

html {
  scroll-behavior: smooth;
}

.section {
  padding: 64px 20px;
}

.title {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 44px;
  line-height: 118%;
  text-align: center;
  color: #0f0e0e;
  margin-bottom: 40px;
}

.text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  color: #0f0e0e;
  margin-bottom: 32px;
}

@media screen and (min-width: 1438px) {
  .section {
    padding: 92px 80px;
  }

  .title {
    font-size: 56px;
    margin-bottom: 60px;
  }

  .text {
    font-size: 20px;
    margin-bottom: 48px;
  }

  .title-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 48px;

    .title {
      margin: 0;
      flex-shrink: 0;
    }

    .text {
      margin: 0;
    }
  }
}
