:root {
  --font-family: "Afacad", sans-serif;
  --second-family: "Inter", sans-serif;
  --third-family: "Plus Jakarta 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;
  background-color: transparent;
  padding: 0;
}

button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

*,
::before,
::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  margin: 0 auto;
  background: #f0f0f0;
  color: #0d1615;
}

html {
  scroll-behavior: smooth;
}

.section {
  padding: 64px 0;
}

.container {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.sub-title {
  width: fit-content;
  border-radius: 50px;
  padding: 8px 16px;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 50px;
  background: #f0f0f0;
  margin-bottom: 36px;

  div {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #5c913b;
    animation: blink 1.2s ease-in-out infinite;
  }

  p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: #0d1615;
  }
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}

.title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 44px;
  line-height: 109%;
  text-transform: capitalize;
  text-align: center;
  color: #0d1615;
  margin-bottom: 40px;
}

.text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 28px;
  line-height: 114%;
  color: #696969;

  span {
    color: #0d1615;
  }
}

@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: 100px;
  }

  .container {
    width: 1436px;
    padding: 0 84px;
  }

  .title {
    font-size: 64px;
    margin-bottom: 60px;
  }

  .text {
    font-size: 48px;
  }
}
