:root {
    --primary-color-darken: #081b57;
    --primary-color: #1b4adc;
    --secondary-color-darken: #33086a;
    --secondary-color: #7000ff;
    --accent-color-darken: #9a007a;
    --accent-color: #e700b7;
    --info-color-darken: #00958c;
    --info-color: #00d8be;
    --grey-color-darken: #24252c;
    --grey-color-darken-3: #24252c;
    --grey-color: #a1a7b3;
    --header-text-color: #c8fbf9;

    --plyr-color-main: var(--secondary-color);

    --primary-gradient: linear-gradient(
        116.49deg,
        #0036df 0%,
        #7000ff 66.15%,
        #e700b7 100%
    );
    --secondary-gradient: linear-gradient(
        116.49deg,
        #7000ff 0%,
        #e700b7 47.4%,
        #ffa000 100%
    );
    --info-gradient: linear-gradient(
        116.49deg,
        #7000ff 0%,
        #1953f7 51.56%,
        #00d8be 100%
    );

    --text-primary-font-family: Poppins, sans-serif;
    --text-secondary-font-family: Poppins, sans-serif;
    --text-primary-font-weight: 400;
    --text-secondary-font-weight: 600;

    --heading-size-1: 5rem;
    --heading-size-2: 3.75rem;
    --heading-size-3: 3rem;
    --heading-size-4: 2.25rem;
    --heading-size-5: 1.5rem;
    --heading-size-6: 1.25rem;

    --paragraphs-size-normal: 1rem;
    --paragraphs-size-small: 0.875rem;
    --paragraphs-size-extra-small: 0.75rem;

    --line-height: 1.5;
    --line-height-small: 1.3;

    --shadow-primary: 0px 7px 6px rgba(0, 0, 0, 0.03);

    --shadow-secondary: 0px 7px 6px rgba(0, 0, 0, 0.03),
        0px 15px 16px rgba(0, 0, 0, 0.04), 0px 24px 30px rgba(0, 0, 0, 0.08);

    --boxes-border-radius: 15px;
}

body {
    overflow-x: hidden;
}
.plyr {
    border-radius: var(--boxes-border-radius);
    box-shadow: 0px 38px 80px rgba(1, 7, 81, 0.11),
        0px 45.5427px 33.4221px rgba(1, 7, 81, 0.079074),
        0px 39.1968px 17.869px rgba(1, 7, 81, 0.0655718),
        0px 26.8696px 10.0172px rgba(1, 7, 81, 0.055),
        0px 14.9762px 5.32008px rgba(1, 7, 81, 0.0444282),
        0px 5.89627px 2.21381px rgba(1, 7, 81, 0.030926);
}

.is-radius-large {
    border-radius: var(--boxes-border-radius) !important;
}
.is-borderless {
    border: none !important;
}

.is-hover-shadow-secondary:hover {
    box-shadow: var(--shadow-secondary);
}

.is-shadow-primary {
    box-shadow: var(--shadow-primary);
}

.is-shadow-secondary {
    box-shadow: var(--shadow-secondary);
}

/* Style banner */

.ct-banner {
    --banner-text-color: white;
    --banner-gradient: linear-gradient(
        90deg,
        #1b4adc 0%,
        #7000ff 50%,
        #e700b7 100%
    );
    --banner__title-font-family: var(--text-primary-font-family);
    --banner__title-font-weight: var(--text-secondary-font-weight);
    --banner__title-font-size: 1.875rem;

    --banner__subtitle-font-family: var(--text-primary-font-family);
    --banner__subtitle-font-weight: var(--text-primary-font-weight);
    --banner__subtitle-font-size: 1.125rem;

    --banner__button-font-family: var(--text-primary-font-family);
    --banner__button-font-weight: var(--text-secondary-font-weight);
    --banner__button-font-size: 1.5rem;

    color: var(--banner-text-color);
    display: flex;
    width: 100%;
    border-radius: 10px;
    background: var(--banner-gradient);
    margin-top: 3rem;
    cursor: pointer;
    position: relative;
}

.ct-banner::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: transparent;
}

.ct-banner:hover:after {
    background-color: #ffffff11;
    transition: all 300ms ease-in-out;
    z-index: 1;
}

.ct-banner__container {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    width: 100%;
    position: relative;
    z-index: 0;
}

.ct-banner__container > * {
    flex: 1 1 100%;
}

.ct-banner__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem 1.5rem;
}

.ct-banner__title {
    color: var(--banner-text-color);
    font-family: var(--banner__title-font-family);
    font-size: var(--banner__title-font-size);
    font-weight: var(--banner__title-font-weight);
    line-height: var(--line-height-small);
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem !important;
}

.ct-banner__subtitle {
    color: var(--banner-text-color);
    font-family: var(--banner__subtitle-font-family);
    font-size: var(--banner__subtitle-font-size);
    font-weight: var(--banner__subtitle-font-weight);
    line-height: var(--line-height);
    letter-spacing: -0.02em;
}

.ct-banner__button {
    color: var(--banner-text-color) !important;
    font-family: var(--banner__button-font-family);
    font-size: var(--banner__button-font-size);
    font-weight: var(--banner__button-font-weight);
    line-height: var(--line-height-small);
    letter-spacing: -0.02em;
}

.ct-banner__button:hover svg {
    transition: all 300ms ease-in-out;
    transform: translateX(20%);
}

.ct-banner__image {
    min-height: 100%;
    max-width: 50%;
}

/** Style navegation */
.navegation {
    --navegation__padding: 1rem 0rem;
    --navegation__padding-mobile: 1.5rem;
    --navegation__link-font-family: var(--text-primary-font-family);
    --navegation__link-font-weight: var(--text-primary-font-weight);
    --navegation__link-font-size: var(--paragraphs-size-small);
    --navegation__link-color: var(--grey-color-darken-3);
    --navegation__link-hover-color: #ff3a39;
    --navegation__icon-size: 24px;
    --navegation__button-bar-color: #333;

    position: sticky;
    top: 0px;
    background-color: #ffffff;
    z-index: 99;
    align-items: center;
    padding: var(--navegation__padding);
}

.navegation__background {
    height: 95px;
    min-width: 100% !important;
    background-color: var(--header-text-color);
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
}
.navegation__image {
    width: 180px;
}

.navegation__image a {
    display: block;
    width: 100%;
    height: 100%;
}

.navegation__image img {
    width: 100%;
    height: 100%;
    min-width: 180px;
    margin-top: 1rem;
}

.navegation__link {
    height: fit-content;
    display: flex;
    flex-flow: row;
    align-items: center;
}

.navegation__link-start a {
    margin-right: 1rem;
    font-size: var(--navegation__link-font-size);
    font-weight: var(--navegation__link-font-weight);
    font-family: var(--navegation__link-font-family);
    line-height: var(--line-height);
    padding: 0.5rem 1rem !important;
    border-radius: 5px;
    transition: background-color 200ms ease-in-out !important;
    transition-timing-function: cubic-bezier(0, -0.05, 0.99, 0.96) !important;
}

.navegation__link-start a:hover {
    background-color: #0001;
}

.navegation__link-start a:focus {
    background-color: #00000029;
}

.navegation__link--end {
    display: flex;
    margin-left: auto;
}
.navegation__link--end a {
    height: 2.45rem;
    display: flex;
    align-items: center;
}
.navegation__link--end i {
    font-size: var(--navegation__icon-size);
}
.navegation__link--secondary-cta {
    margin-right: 1rem !important;
    background: var(--secondary-gradient);
    color: #fff !important;
    font-size: var(--paragraphs-size-small);
    font-weight: var(--text-secondary-font-weight);
    font-family: var(--text-primary-font-family);
    line-height: var(--line-height);
}
.navegation__link--primary-cta {
    margin-right: 1rem !important;
    background: var(--primary-gradient);
    color: #fff !important;
    font-size: var(--paragraphs-size-small);
    font-weight: var(--text-secondary-font-weight);
    font-family: var(--text-primary-font-family);
    line-height: var(--line-height);
}

/** Style header */

.header {
    --header__title-font-family: var(--text-primary-font-family);
    --header__title-font-weight: var(--text-primary-font-weight);
    --header__title-font-size: var(--heading-size-4);

    --header__title-section-card-font-family: var(--text-primary-font-family);
    --header__title-section-card-font-weight: var(--text-secondary-font-weight);
    --header__title-section-card-font-size: var(--heading-size-5);

    --header__card-title-font-family: var(--text-primary-font-family);
    --header__card-title-font-weight: var(--text-primary-font-weight);
    --header__card-title-font-size: var(--paragraphs-size-normal);

    padding-top: 38px;
    padding-bottom: 70px;
    background-color: var(--header-text-color);
    width: 100vw;
    margin-left: calc(-1 * ((100vw - 100%) / 2));
}

.header__container {
    display: flex;
    justify-content: stretch;
    align-items: center;
}

.header__title {
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex: 1 1 100%;
    position: relative;
    top: 18px;

    font-size: var(--header__title-font-size);
    font-weight: var(--header__title-font-weigh);
    font-family: var(--header__title-font-family);
    line-height: var(--line-height-small);
    letter-spacing: -0.02em;
}

.header__description {
    font-size: 1.25rem;
}

.header__content--centered {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.new-header-cards-content {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(275px, 0fr));
    width: 100%;
}
@media (max-width: 1024px) {
    .new-header-cards-content {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}
@media (max-width: 1264px) {
    .header__content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .header__description {
        font-size: var(--paragraphs-size-normal);
    }

    .header__title {
        font-size: var(--heading-size-5) !important;
    }
}

.header__card-section {
    position: relative;
    flex: 1 1.3 100%;
    display: flex;
    flex-direction: column;
}

.header__card-section-title {
    display: flex;
    flex-direction: row;
    justify-content: start;
    font-family: var(--header__title-section-card-font-family);
    font-size: var(--header__title-section-card-font-size);
    font-weight: var(--header__title-section-card-font-weight);
    margin-left: 1.5rem;
}

.header__card-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.card {
    width: 268px;
    height: 174px;
    max-width: 268px;
    max-height: 174px;
    margin: 0.5rem;
    background: #ffffff;
    box-shadow: 0px 8px 25px -5px rgb(0 0 0 / 15%);
    border-radius: var(--boxes-border-radius);
}
.card:hover {
    cursor: pointer;
    transform: scale(1.02);
    transition: all 300ms;
    transition-timing-function: ease-in-out;
}
.card__image {
    display: block;
    position: relative;
    border-radius: var(--boxes-border-radius);
    width: 100%;
    height: 62%;
    padding: 0.5rem;
}
.card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card__content {
    padding: 0.5rem 1rem;
}
.card__title {
    font-family: var(--header__card-title-font-family);
    font-weight: var(--header__card-title-font-weight);
    font-size: var(--header__card-title-font-size);
}

@media screen and (max-width: 1355px) {
    .header__title {
        flex: 1 1 85% !important;
    }
}

@media screen and (max-width: 1263px) {
    .header {
        padding-top: 55px;
    }
    .header .container {
        flex-direction: column;
    }
    .header__title {
        align-items: center;
        text-align: center;
    }
    .header__card-section {
        margin-top: 4rem;
    }
    .header__card-section-title {
        justify-content: center !important;
        margin-top: 1.5rem;
    }
}

@media screen and (max-width: 1136px) {
    .navegation__link {
        margin-top: 15px;
        flex-flow: row wrap;
    }
    .navegation__link--end .button__become-premium {
        display: none !important;
    }
    .navegation__link--end .button__editor {
        display: none !important;
    }
}
@media screen and (max-width: 959px) {
    .navegation {
        margin-bottom: 0;
        justify-content: space-between;
    }

    .navegation__button--bar1,
    .navegation__button--bar2,
    .navegation__button--bar3 {
        width: 35px;
        height: 2px;
        background-color: var(--navegation__button-bar-color);
        margin: 7px 0;
        transition: 0.4s;
    }
    /* Rotate first bar */
    .change .navegation__button--bar1 {
        -webkit-transform: rotate(-45deg) translate(-8px, 6px);
        transform: rotate(-45deg) translate(-7px, 6px);
    }
    /* Fade out the second bar */
    .change .navegation__button--bar2 {
        opacity: 0;
    }
    /* Rotate last bar */
    .change .navegation__button--bar3 {
        -webkit-transform: rotate(45deg) translate(-8px, -8px);
        transform: rotate(45deg) translate(-6px, -7px);
    }

    .navegation__link {
        padding: 1rem 1.5rem;
        margin-top: 88px;
        display: flex;
        flex-flow: column;
        align-items: flex-start;
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: 65%;
        z-index: 1;
        background-color: white;
    }
    .navegation__link-start {
        display: flex;
        flex-flow: column;
        align-items: flex-start;
        position: fixed;
        justify-content: space-evenly;
    }
    .navegation__link-start a {
        margin-bottom: 0.4rem;
    }

    .navegation__link--end {
        margin-left: 0px !important;
        flex-direction: column-reverse;
        display: flex !important;
        align-items: flex-start;
        position: absolute;
        bottom: 0;
    }
    .navegation__link--end a {
        margin-bottom: 1rem;
    }
    .navegation__link--end .button__become-premium {
        display: flex !important;
    }
    .navegation__link--end .button__editor {
        display: flex !important;
    }
    .header {
        padding-top: 60px;
    }
    .header__title {
        flex: 1 1 100%;
        top: 0px;
    }
}
.features-sliders.feature-cards {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}
@media (max-width: 425px) {
    .features-sliders.feature-cards {
        grid-template-columns: repeat(auto-fit, minmax(335px, 1fr));
    }

}
.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    --border-radius: 15px;

    background-color: white;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 3px 4px -2px rgba(0, 0, 0, 0.05),
        0px 6px 14px -2px rgba(0, 0, 0, 0.05);

    border-radius: 17px;
}

.feature-card.feature-card--premium {
    padding: 3px;
    width: calc(100% + 3px);
    height: calc(100% + 3px);
    margin-top: -1.5px;
    margin-left: -1.5px;
    background: var(--secondary-gradient);
}

.feature-card__image {
    border-radius: 12px;
}

.feature-card__image img {
    border-radius: 15px;
    /* max-height: 240px; */
}

.feature-card__premium {
    display: none;
    visibility: hidden;
}

.feature-card.feature-card--premium .feature-card__premium {
    display: flex;
    visibility: visible;
    border-radius: 15px;
    background: var(--secondary-gradient);
    color: white;
    font-weight: 600;
    box-shadow: 0 0 0px 10px white;
    padding: 0.5rem 1rem;
    margin: auto;
    margin-top: -1rem;
}

.feature-card__container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border-radius: 15px;
}

.feature-card__content {
    padding: 24px;
    padding-bottom: 36px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card__title {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.025rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    max-width: 320px;
}

.feature-card.feature-card--premium .feature-card__title {
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card__description {
    font-size: 16px;
}
.feature-card__description a:hover{
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 960px) {
    .ct-banner__image {
        display: none;
    }

    .ct-banner__title {
        font-size: 24px;
    }

    .ct-banner__subtitle {
        font-size: 16px;
    }

    .ct-banner__button {
        font-size: 18px;
    }
}
@media screen and (max-width: 768px) {
    .navegation {
        justify-content: space-between;
        padding: var(--navegation__padding-mobile);
        margin-top: 0;
        margin-bottom: 0;
        z-index: 1;
        width: 100vw;
        position: fixed !important;
        left: 0;
        top: 0;
    }
    .navegation__button {
        display: flex;
    }
    .navegation__link a {
        margin-bottom: 0.5rem !important;
    }

    .header {
        padding-top: 150px;
    }

    .header__title {
        flex: 1 1 100%;
        text-align: center;
        font-size: var(--heading-size-6);
        padding: 0rem 1.2rem;
    }
    .header__card-section {
        margin-top: 3rem;
    }
    .card {
        min-width: 310px;
        max-width: 310px;
    }
}
@media (max-width: 600px) {
    .header .container {
        max-width: fit-content !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

@media (max-width: 720px) {
    .container {
        max-width: 100%;
    }

    .header-home .container {
        display: flex;
        flex-direction: column;
    }

    .header-home .header-text {
        text-align: center;
        margin-bottom: 1rem;
    }
}

.button {
    border-radius: var(--boxes-border-radius);
    min-height: 48px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    background: var(--primary-gradient);
}

.input {
    font-size: 1rem;
    min-height: 48px;
    border-radius: 10px;
    box-shadow: 0px 3px 4px -2px rgba(0, 0, 0, 0.05),
        0px 6px 14px -2px rgba(0, 0, 0, 0.05);
}

.tag {
    display: flex;
    align-items: center;
    min-height: 48px;
    font-size: 1rem;
    font-weight: 600;
    width: max-content;
    background: white;
    border-radius: var(--boxes-border-radius);
}

.tag__content {
    color: var(--primary-color);
}

.tag--primary .tag__content {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tag--large,
.input--large,
.button--large {
    min-height: 64px;
    font-size: 1.25rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.tag--small,
.input--small,
.button--small {
    min-height: 36px;
    font-size: 0.875rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.button--primary {
    background: var(--primary-gradient);
}

.subscribe-form {
    display: flex;
    max-width: 720px;
    width: 100%;
}

.subscribe-form__input {
    width: 100%;
}

.subscribe-form__button {
    flex: 0 0;
    margin-left: -1.25rem;
}

.section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
}

.section__title {
    font-size: var(--heading-size-4);
    letter-spacing: -0.02rem;
}

.section__description {
    font-size: var(--heading-size-6);
}
@media (min-width: 1400px) {
    .features-card-center:nth-last-child(2):nth-child(3n + 1) {
      left: 50%;
    }
    .features-card-center:last-child:nth-child(3n - 1)  {
      left: 50%;
    }
    .features-card-center:last-child  {
        grid-column: 2 / span 1;
    }

}


@media (max-width: 1264px) {
    .section__title {
        font-size: var(--heading-size-5);
    }

    .section__description {
        font-size: var(--paragraphs-size-normal);
    }
}

.carousel {
  overflow:hidden;
  border-radius: 15px;
}
.image-container {
    display:flex;
    transform: translateX(0);
    transition:transform 0.5s ease-in-out;
}

/* ----- Next/Prev buttons ----- */
button.prev-btn {
    left: 6px;
    margin: 0 0 0 .25em;
  }
.prev-btn--hidden, .next-btn--hidden {
    display: none !important;
  }


  button.next-btn {
    right: 6px;
    margin: 0 .25em 0 0;
  }

  button.carousel-btns {
    width: 45px;
    height: 45px;
    padding: .4em;
    position: absolute;
    top: 50%;
    transform: translate(-0%, -50%);
    z-index: 9;
    display: flex;
    justify-content: center;
    vertical-align: middle;
    cursor: pointer;
    background-color: rgba(40, 40, 40, .8);
    border-radius: 50%;
    filter: contrast(110%);
  }

  button.carousel-btns > svg {
    width: 30px;
    height: 30px;
    top: 0;
    left: 0;
    transform: translate(0% -50%);
    margin: auto;
    position: relative;
    fill: rgba(255, 255, 255, .85);
  }

  button.carousel-btns:hover {
    background-color: rgba(40, 40, 40, 1);
    transition: .2s ease-out;
  }

  button.carousel-btns:hover svg {
    fill: rgba(255, 255, 255, 1);
  }

.footer-content {
    display:  flex;
    gap: 80px
}
.footer__content-logos {
    max-width: 360px;
}
  .footer-title__logo {
    font-weight: 700;
    display: inline-block;
    margin-block-start: 0px;
    font-family: Poppins;
    font-size: 14.4px;
}
.footer__description {
    font-size: 16px;
    font-family: Poppins, sans-serif;
    line-height: 1.5;
}
.footer-logo__img {
    vertical-align: middle;
    border-style: none;
}
.quick-links {
    display: flex;
}
.quick-links li:not(:first-of-type) {
    margin-left: 2rem;
}
.quick-links a:hover {
    color: #5f4aeb !important;
}
.footer_cr {
    display: flex;
    justify-content: center;
}
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    .quick-links {
        flex-direction: column;
    }
    .quick-links li:not(:first-of-type) {
        margin-left: 0rem;
    }
    .footer-content {
        gap: 38px;
    }
}

.section_features_artify2 {
    background: #FFFFFF;
    border: 1px solid #7000FF;
    box-shadow: 0px 21px 50px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 40px;
}
.feature-cards-artify2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 2rem;
}

.feature-card_artify2 {
    background-color: white;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 15px;
    margin-bottom: 15px;
}
.feature-card__container-artify2 {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
}
.feature-card__image-artify2 {
    border-radius: 15px;
}
.feature-card_hr-artify2--hidden {
    display: none;
}

.feature-card_hr-artify2 {
    margin-top: 65px;
    border: none !important;
    border-left: 1px solid #000000 !important;
    height: 25vh !important;
    width: 1px !important;
    position: absolute;
    left: 296px;
    /* left: 305px; */
}
.feature-card__image-artify2 img {
    border-radius: 15px;
}

.feature-card__content-artify2 {
    padding: 24px;
    padding-bottom: 0px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card__title-artify2 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.025rem;
    line-height: 1.3;
    margin-bottom: 0.6rem;
    max-width: 320px;
    color: #7000FF;

}

.feature-card__description-artify2 {
    font-size: 16px;
}

@media screen and (max-width: 1400px) {
    .feature-card_hr-artify2 {
        display: none;
    }
}
@media screen and (max-width: 1024px) {
    .feature-cards-artify2 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280PX, 1fr));
        gap: 2rem;
    }
}
@media screen and (max-width: 600px) {
    .feature-cards-artify2 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260PX, 1fr));
        gap: 2rem;
    }
}

