/**
 *  En un clic wrapper- Paragraph
 */

 .en-un-clic__wrapper {
  display: flex;
  flex-direction: column;
  background-color: var(--color-brand--1);
  border-radius: 10px;
  z-index: 9;
  position: relative;
  align-items: center;
  padding: 2rem;
  margin-top: -24px;
  max-width: 990px;
  margin: 0 auto;
 }

.en-un-clic__wrapper-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}

.en-un-clic__wrapper-items a:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  justify-self: center;
}

.en-un-clic__wrapper-items a {
  color: var(--color-neutral--6);
  text-decoration: none;
}


@media screen and (min-width: 500px){
  .en-un-clic__wrapper-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .en-un-clic__wrapper-items a:last-child:nth-child(odd) {
    grid-column: inherit;
    justify-self: inherit;
  }
}




@media screen and (min-width: 1100px){
  .en-un-clic__wrapper {
    flex-direction: row;
    margin-top: -4rem;
    padding: 2rem;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
   }
  .en-un-clic__wrapper-items {
    display: flex;
    flex-wrap: inherit;
    flex-direction: row;
    justify-content: center;
    align-items: baseline;
    gap: 2rem;
  }
}
@media screen and (min-width: 1400px){
  .en-un-clic__wrapper {
    margin-top: -5rem;
   }
}

