@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

img {
  width: 100%;
  height: auto;
}

body {
  background-color: #121212;
  font-family: "Manrope", sans-serif;
  color: #fff;
}
body.blocked {
  overflow: hidden;
}

a {
  text-decoration: none;
}

section {
  margin-bottom: 140px;
}

h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 68px;
  letter-spacing: -1%;
  margin-bottom: 68px;
}

.container {
  max-width: 1440px;
  margin: auto;
  padding: 0 120px;
}

.flex-wrapper {
  display: flex;
  justify-content: space-between;
}

textarea {
  resize: none;
}

@media screen and (max-width: 1450px) {
  .container {
    padding: 0 30px;
  }
}
@media screen and (max-width: 600px) {
  h2 {
    font-size: 24px;
    line-height: 68px;
    margin-bottom: 40px;
  }
  .container {
    padding: 0 20px;
  }
  section {
    margin-bottom: 80px;
  }
}