:root {
  --font-family: "DM Sans", sans-serif;
  --second-family: "Spectral", sans-serif;
  --third-family: "Inter", sans-serif;
  --font3: "Albert Sans", sans-serif;
  --black: #25221f;
  --gray: #5b544f;
  --l-gray: #f0f0ec;
  --biege: #e6e6d3;
  --white: #fff;
  --l-red: #f28367;
  --red: #aa5b47;
}

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: var(--black);
  background: var(--l-gray);
}

html {
  scroll-behavior: smooth;
}

.section {
  padding: 80px 16px;
}

.section-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 36px;
  line-height: 120%;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #61544b 0%, #d7c7bd 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.section-description {
  font-family: var(--second-family);
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  line-height: 130%;
  color: var(--red);
  margin-bottom: 40px;
}
.section-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--black);
  margin-bottom: 20px;
}

.image {
  width: 343px;
  margin: 0 auto;
  margin-top: 40px;
}

@media screen and (min-width: 1432px) {
  .section {
    padding: 120px 160px;
  }

  .image {
    width: auto;
    margin: 0;
    flex-shrink: 0;
  }

  .section-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 130px;
  }

  .section-title {
    font-size: 48px;
  }

  .section-description {
    font-size: 32px;
    margin-bottom: 60px;
  }

  .section-text {
    font-size: 18px;
  }
}
