.section:not(.section.hero) {
  padding-top: 10rem;
  padding-bottom: 20rem;
}
.hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.hero-img {
  pointer-events: none;
  object-fit: cover;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  filter: contrast(70%) brightness(70%);
  z-index: -1;
}
.content {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
}
.hero .content {
  position: absolute;
  text-align: center;
}
.hero .title,
.hero .text {
  color: var(--text-light);
}
.hero .title {
  font-family: var(--title-font);
  font-size: 3.7rem;
  margin-bottom: 1rem;
}
.hero .text {
  font-size: 1.7rem;
  margin-bottom: 2.4rem;
  line-height: 2.5rem;
}



/* ABOUT */
h2 {
  text-align: center;
  font-size: 2.4rem;
  font-family: var(--title-font);
  margin-bottom: 2rem;
}
.img-name-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 3rem;
  width: fit-content;
  max-width: 100%;
}
.owner-img {
  aspect-ratio: 1 / 1;
  width: 200px;
  border-radius: 50%;
}
.name {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 0.7rem;
  color: var(--text-light);
  background: linear-gradient(to bottom, var(--button-gradient-start), var(--button-gradient-end));
  border-radius: 4px;
  font-size: 1.4rem;
  font-family: var(--title-font);
}
.text:not(.hero .text) {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 2.5rem;
}
.support-list-ctn {
  margin: 0 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.support-list {
  font-size: 1.5rem;
  list-style: none;
  padding-left: 2.2rem;
  position: relative;
  margin-bottom: 1rem;
}
.support-list::before {
  content: "✔ ";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1.1;
  font-size: 2rem;
  color: var(--primary-color);
}



/* SERVICES */
.section.services {
  background-color: var(--secondary-color);
  color: var(--text-light);
}
.cards-wrapper {
  margin-top: 4rem;
  width: 80%;
  margin: 0 auto;
  display: flex;
  gap: 5rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.card-ctn {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  background-color: var(--background-color);
}
.card-ctn.rdr-btn {
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  filter: contrast(80%) brightness(80%);
}
.card-content {
  padding: 1rem;
}
.card-title {
  color: var(--primary-color);
  font-size: 2rem;
  font-family: var(--title-font);
  margin-bottom: 1rem;
}
.card-text {
  font-size: 1.5rem;
  color: var(--text-color);
}



/* CONTACT */
.form-and-direct-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.form-wrapper {
  border: 2px solid black;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  width: 100%;
}
.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
}
label {
  font-size: 1.5rem;
}
input, textarea {
  font-family: var(--text-font);
  font-size: 1.2rem;
  padding: 1rem;
  margin-top: 0.4rem;
  margin-bottom: 1.4rem;
}
textarea {
  resize: vertical;
}
.direct-contact-option {
  display: flex;
  justify-content: center;
  align-items: center;
}
.svg-icon {
  width: 1.7rem;
  fill: var(--primary-color);
  margin: 1rem;
}
.email-text > a,
.phone-text > a {
  font-size: 1.4rem;
  color: var(--secondary-color);
}



/* MIN OF 600PX */
@media only screen and (min-width: 600px ) {
  .card-ctn {
    width: 600px;
  }
  .form-and-direct-wrapper {
    flex-direction: row;
  }
}

/* MIN OF 1024PX */
@media only screen and (min-width: 1040px) {
  .cards-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .card-ctn {
    width: 500px;
    height: 600px;
  }
}