* {
    margin: 0;
    padding: 0;
    outline: none;
}

html {
	scroll-behavior: smooth;
}

body {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 0.88rem;
    color: var(--clr-text);
    background-color: var(--clr-background);
}

::-moz-selection { /* Code for Firefox */
    color: var(--clr-text);
    background: var(--clr-primary);
  }
  
  ::selection {
    color: var(--clr-text);
    background: var(--clr-primary);
  }

h1,
h2 {
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    font-style: normal;
}

h1 {
    font-size: 4rem;
    line-height: 4rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.25rem;
    line-height: 1.5rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 400;
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 3rem;
        line-height: 3rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1rem;
        line-height: 1.25rem;
    }
    
    h4 {
        font-size: 0.938rem;
        font-weight: 400;
    }
}

button {
    --background-color: var(--clr-primary);
    --color: var(--clr-text);
    border: none;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-size: 1.25rem;
    background-color: var(--background-color);
    color: var(--color);
    cursor: pointer;
    font-weight: bold;
}

button.calltoaction {
    --background-color: var(--clr-text);
    --color: var(--clr-background);
    font-weight: 700;
    font-size: 1.25rem;
}

@media screen and (max-width: 768px) {
    button.calltoaction {
        font-size:1rem;
        width: 100%;
    }
}

a {
    color: var(--clr-text);
    cursor: pointer;
}

.o-scroll {
    overflow: scroll;
}

.o-auto {
    overflow: auto;
}

.d-flex {
    display: flex;
}

.d-grid {
    display: grid;
}

.grid-2-col {
    grid-template-columns: repeat(2, 1fr);
}

.gap-g {
    gap: 1em;
}

.gap-m {
    gap: .5em;
}

.gap-p {
    gap: .2em;
}

.a-center,
.centro {
    align-items: center;
}

.ac-center {
    align-content: center;
}

.ac-between {
    align-content: space-between;
}

.ac-start {
    align-content: start;
}

.jc-center {
    justify-content: center;
}

.jc-evenly {
    justify-content: space-evenly;
}

.jc-between {
    justify-content: space-between;
}

.row-mc {
    grid-template-rows: min-content;
}

.w-80 {
    width: 80%;
}

.h-100 {
    height: 100%;
}

.w-100 {
    width: 100%;
}

.max-h-80 {
    max-height: 80vh;
}

.of-auto {
    overflow: auto;
}

.bottom-fixed {
    position: fixed;
    bottom: 0;
}

.p-10 {
    padding: 10px;
}

.p-l {
    padding: 1em;
}

.p-m {
    padding: .5em;
}

.p-s {
    padding: .2em;
}

.pl-1 {
    padding-left: 1em;
}