@font-face {
    font-family: dream-avenue;
    src: url('/fonts/dream-avenue.woff2');
}

@font-face {
    font-family: della-respira;
    src: url('/fonts/della-respira.woff2');
}

:root {
    --main-color: #241800;
    --main-accent: #170f00;
    --text-on-white: #744D00;
    --clr-white: white;
    --clr-accent: #00ff5e;
    --fs-xxl: 2.25rem;
    --fs-xl: 2rem;
}

ul {
    list-style: none;
}

section,
footer {
    padding: 80px 0px;
}

.first {
    padding-top: 111px !important;
}

@media (min-width:768px) {
    :root {
        --fs-xxl: 3.875rem;
    }
}

* {
    margin: 0;
    padding: 0;
    transition: all .3s;
    font-family: della-respira, sans-serif;
    box-sizing: border-box;
}

button {
    background-color: transparent;
    border: none;
    outline: none;
    border-radius: 40px;
    font-weight: bolder;
    font-size: 16px;
}

button,
a {
    cursor: pointer;
}

a {
    text-decoration: none;
}

.btn {
    padding-inline: 24px;
    padding-block: 16px;
    border-radius: 24px;
    font-weight: bolder;
}

.white-button {
    background: white;
    color: var(--main-color);
}


button:not(.white-button) {
    color: white;
    background-color: var(--main-color);
}

.btn-on-white {
    background-color: var(--text-on-white) !important;
}

button:hover {
    background: transparent;
    color: var(--main-color);
}

.white-button:hover {
    background: transparent;
    color: white;
}

.bg-main {
    background-color: var(--main-color);
    color: var(--clr-white)
}

.bg-main-accent {
    background-color: var(--main-accent);
    color: var(--clr-white)
}

.section-heading {
    text-align: center;
}

.section-heading.left {
    text-align: left;
}

.section-heading-2 {
    font-size: var(--fs-xl);
    margin-bottom: 2.625rem;
}

.grid {
    display: grid;
}

@media (min-width:768px) {
    .grid-even-3 {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (min-width:992px) {
    .grid-even-3 {
        grid-template-columns: repeat(3, 1fr);
    }

}

footer {
    text-align: center;
}