.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media screen and (min-width: 1000px) {
  .hero {
    flex-direction: row;
  }
}

.hero > * {
  flex-basis: 50%;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}

@media screen and (min-width: 1000px) {
  .hero-left {
    gap: 32px;
  }
}

.hero__heading {
  font-size: var(--font-size-h1);
}

.hero__buttons{
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__btn {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media screen and (min-width: 1000px) {
  .hero__btn {
    padding: 12px 16px;
    font-size: var(--font-size-h5);
  }
}

.yt__btn{
  background-color: red;  
}

.hero-right {
  display: flex;
  justify-content: center;
}

.hero__img {
  width: 100%;
}

/* ------------------------------------------------------------------------------------ */
/* Deprecated */
#services,
.process,
.testimonial,
#contact {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.services__heading,
.process__heading,
.testimonial__heading,
.contact__heading {
  font-size: var(--font-size-h2);
}

/* Container for services__card */
.services__cards {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

@media screen and (min-width: 1000px) {
  .services__cards {
    flex-direction: row;
    gap: 16px;
  }
}

.services__card {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 24px;
  padding: 20px 28px;
  background-color: white;
  border: 1px solid rgba(var(--color-green-dark), 0.25);
  box-shadow: 0px 0px 16px 4px rgba(var(--color-green-dark), 0.1);
}

@media screen and (min-width: 1000px) {
  .services__card {
    max-width: 50%;
  }
}

.services__card__headings {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media screen and (min-width: 1000px) {
  .services__card__headings {
    flex-direction: row;
    gap: 16px;
    justify-content: space-between;
    align-items: start;
  }
}

.services__card__title {
  font-size: var(--font-size-h5);
}

.services__card__price {
  color: rgb(var(--color-green-dark));
  font-size: var(--font-size-h4);
  font-weight: bold;
}

@media screen and (min-width: 1000px) {
  .services__card__price {
    text-wrap: nowrap;
  }
}

.services__card__information > p {
  line-height: 28px;
}

.services__card__btn {
  font-size: var(--font-size-s);
  padding: 8px 12px;
}

/* Container for process__step */
.process__steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media screen and (min-width: 1000px) {
  .process__steps {
    display: flex;
    align-items: center;
    flex-direction: row;
  }
}

.process__steps > svg {
  fill: rgb(var(--color-green-dark));
  width: 24px;
  height: 24px;
  transform: rotate(90deg);
  align-self: center;
}

@media screen and (min-width: 1000px) {
  .process__steps > svg {
    width: 36px;
    height: 36px;
    transform: initial;
  }
}

.process__step {
  padding: 24px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background-color: rgb(var(--color-green-dark));
  box-shadow: 5px 5px 0px 0px #66a38f;
  border-radius: 40px;
}

@media screen and (min-width: 1000px) {
  .process__step {
    height: 300px;
    width: 300px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px;
    gap: 32px;
  }
}

.process__step > p {
  color: white;
}

@media screen and (min-width: 1000px) {
  .process__step > p {
    text-align: center;
  }
}

.process__step__icon {
  flex-shrink: 0;
}

.process__step__icon > svg {
  width: 24px;
  height: 24px;
  fill: white;
}

@media screen and (min-width: 1000px) {
  .process__step__icon > svg {
    width: 48px;
    height: 48px;
  }
}

.testimonial__heading {
  text-align: center;
}

.testimonial__slider {
  display: flex;
  align-items: center;
  gap: 24px;
}

.testimonial__slider__btn {
  background-color: rgb(var(--color-dark));
  border-radius: 40px;
  width: fit-content;
  padding: 8px;
  border: none;
  cursor: pointer;
}

.testimonial__slider__btn > svg {
  fill: rgb(var(--color-light));
  max-width: initial;
}

.testimonial__slider__cards {
  align-items: start;
}

.testimonial__slider__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background-color: white;
  box-shadow: 2px 2px 12px 0px rgba(var(--color-dark), 0.1);
}

.testimonial__slider__card__stars {
  display: flex;
  gap: 12px;
}

.testimonial__slider__card__read-btn{
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.testimonial__slider__card__readmore__texts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hide {
  display: none;
}

.testimonial__slider__card__text {
  line-height: 28px;
}

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

.testimonial__slider__card__bottom > svg {
  width: 32px;
  height: 32px;
  fill: rgba(var(--color-dark), 0.75);
  transform: rotate(4deg);
}

.testimonial__slider__card__person {
  display: flex;
  gap: 12px;
}

.testimonial__slider__card__person > img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: contain;
}

.testimonial__more{
  display: flex;
  justify-content: center;
}

.testimonial__more__btn{
  padding: 12px;
  background-color: rgb(var(--color-green-dark))
}

.person-details__name {
  font-weight: bold;
}

.person-details__more-info {
  font-size: var(--font-size-s);
}

#contact > form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media screen and (min-width: 1000px) {
  #contact > form {
    margin: auto;
    width: 70%;
  }
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__form > button {
  border: none;
  padding: 8px 12px;
  cursor: pointer;
}

@media screen and (min-width: 1000px) {
  .contact__form > button {
    align-self: flex-start;
  }
}

.contact__group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media screen and (min-width: 1000px) {
  .contact__group {
    flex-direction: row;
    gap: 32px;
  }
}

.contact__field-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

textarea.contact__field {
  resize: vertical;
  height: 200px;
}

input.contact__field {
  flex-grow: 1;
}

.contact__field {
  padding: 12px 16px;
  border: solid 1px rgb(var(--color-green));
}
