a {
    text-decoration: none;
    color: initial;
}
h2, ul, li, p, a, span {
    margin: 0;
}

.font-mermaid {
    font-family: 'Mermaid', sans-serif;
}

.font-gotham-medium {
    font-family: 'Gotham-Medium', sans-serif;
}

.font-gotham-bold {
    font-family: 'Gotham-Bold', sans-serif;
}

.font-gotham-book {
    font-family: 'Gotham-Book', sans-serif;
}

.overflow-hidden {
    overflow: hidden;
}

.color-primary{
    color:#1F3D3B
}
.h-screen {
    height: 100vh;
}
.flex{
    display: flex;
}
.flex-col {
    flex-direction: column;
}
.flex-col {
    flex-direction: column;
}
.justify-center {
    justify-content: center;
}
.items-center {
    align-items: center;
}
.h-full{
    height: 100%;
}
.grid {
    display: grid;
}
.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1rem;
}

.font-mermaid {
    font-family: 'Mermaid', sans-serif;
}

.text-8xl {
    font-size: 6rem;
}

.text-7xl {
    font-size: 5rem;
}

.text-6xl {
    font-size: 4rem;
}

.text-5xl {
    font-size: 3rem;
}

.text-4xl {
    font-size: 2.5rem;
}

.text-3xl {
    font-size: 2rem;
}

.text-2xl {
    font-size: 1.8rem;
}

.text-xl {
    font-size: 1.5rem;
}

.text-lg {
    font-size: 1.2rem;
}
.text-sm {
    font-size: 0.8rem;
}

.uppercase {
    text-transform: uppercase;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.px-32{
    padding-left: 8rem;
    padding-right: 8rem;
}

.py-10{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}
.py-20{
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.mt-10{
    margin-top: 2.5rem;
}

.list-none{
    list-style-type: none;
}
.gap-5{
    gap: 1.25rem;
}

.items-end{
    align-items: flex-end;
}
.justify-end{
    justify-content: flex-end;
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.span-2 {
    grid-column: span 2;
}

.w-full {
    width: 100%;
}
.text-2xl{
    font-size: 1.8rem;
}

.text-lowercase {
    text-transform: lowercase;
}



/* Tamaños sm: */

@media screen and (min-width: 640px) {


    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .sm\:px-32{
        padding-left: 8rem;
        padding-right: 8rem;
    }
    .sm\:text-7xl {
        font-size: 5rem;
    }
    .sm\:text-8xl{
        font-size: 6rem;
    }
}

/* Tamaños md: */
@media screen and (min-width: 768px) {

}

/* Tamaños xl: */

@media screen and (min-width: 1280px) {
   

    .xl\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .xl\:flex{
        display: flex;
    }
    .xl\:text-start {
        text-align: start;
    }
    .xl\:text-7xl{
        font-size: 5rem;
    }
    .xl\:text-8xl{
        font-size: 6rem;
    }
}

/* Tamaño 2xl: */

@media screen and (min-width: 1536px) {
    
}


