a {
  font-family: var(--font-main);
  color: inherit;
  text-decoration: none;
  font-weight: 300;
  color: var(--color-text);
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

a:hover {
  transition: all 0.3s ease-in-out;
  opacity: 0.5;
}

p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 140%;
}

h1 {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 500;
  max-width: 60%;
}

h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

img {
  max-width: 100%;
}

.sm-text {
  font-size: 0.9rem;
}

.bottom-text {
  margin-bottom: 0;
}

ul:not(.main-menu) {
  padding: 1rem 0;
}

ul:not(.main-menu) li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 1rem;
  line-height: 140%;
}

ul:not(.main-menu) li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background-color: var(--gray);
  border-radius: 50%;
}

@media (max-width: 1024px) {
    h2 {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    h2 {
        font-size: 1.3rem;
        margin-bottom: 0.7em;
    }

    p {
        font-size: 0.8rem;
    }
    
}