:root {
  --black: #000;
  --d-gray: #505050;
  --l-green: #5efd84;
  --l-blue: #c2b3ff;
  --l-gray: #e9e9e9;
  --white: #fff;

  --font-family: "Manrope", sans-serif;
  --second-family: "Inter", sans-serif;
  --third-family: "Albert Sans", 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;
  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: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.section-eqs {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.container-eqs {
  position: relative;
  width: 375px;
  padding: 40px 16px;
}

.section-title-eqs {
  font-weight: 800;
  font-size: 36px;
  line-height: 120%;
  margin-bottom: 40px;
}

.link-eqs {
  border-radius: 16px;
  width: 343px;
  height: 51px;
  background: var(--l-green);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  line-height: 150%;
  transition: all 0.3s ease;
}

.link-eqs:hover {
  background: var(--l-blue);
  color: #0b0b0b;
}

@media screen and (min-width: 1440px) {
  .container-eqs {
    width: 1440px;
    padding: 80px 160px;
  }

  .section-title-eqs {
    font-size: 48px;
  }

  .link-eqs {
    width: 256px;
  }
}
