:root {
  --font-family: "Manrope", sans-serif;
  --second-family: "Space Grotesk", sans-serif;
  --style: #0c0c0c;
  --styles: #f2ff37;
}

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 {
  font-family: var(--font-family);
  margin: 0 auto;
  background: #fff;
  color: #0c0c0c;
}

html {
  scroll-behavior: smooth;
}

.section {
  padding: 68px 0;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.3s ease-out;
}

.container {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.section-description {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 14px;
  line-height: 143%;
  text-align: right;
  color: var(--style);
  margin-bottom: 28px;
}
.section-title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 44px;
  line-height: 118%;
  text-align: right;
  padding-bottom: 27px;
  border-bottom: 4px solid var(--styles);
  color: var(--style);
  margin-bottom: 40px;
}

@media screen and (min-width: 375px) {
  .container {
    width: 375px;
  }
}

@media screen and (min-width: 768px) {
  .section {
    /* padding: 64px 0; */
  }

  .container {
    width: 768px;
    padding: 0 32px;
  }
}

@media screen and (min-width: 1436px) {
  .section {
    padding: 108px 0;
  }

  .container {
    width: 1436px;
    padding: 0 88px;
  }

  .section-description {
    font-size: 20px;
    margin-bottom: 44px;
  }

  .section-title {
    font-size: 68px;
    margin-bottom: 60px;
  }
}
