/* Base
--------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background-color: #fff;
    color: #222;
    /* width: 900px;
    margin: 0 auto; */
    padding: 0 0;
}

a {
    text-decoration: none;
    color: #DADADB;
}

li {
    list-style: none;
}

/* Header
--------------------------------------------- */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    background-color: #fff;
}

.nav-container .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-container .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 2rem;
}

.link {
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.5s ease-in-out;
}

.cta-btn {
    background-color: #FFCC1A;
    color: #1D1E20;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
    display: inline-block;
}

.cta-btn:hover {
    background-color: #DADADB;
}

/* Footer
--------------------------------------------- */
hr {
    border: none;
    background-color: #9B9C9D;
    height: 1px;
    width: 80%;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    hr {
        width: 100%;
    }
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 2rem 0;
    background-color: #fff;
}

.footer-container p {
    font-size: 0.8rem;
    color: #9B9C9D;
}

.footer-container .social_icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 1rem;
}

.footer-container .social_icons a {
    color: #9B9C9D;
    font-size: 1.5rem;
    transition: all 0.5s ease-in-out;
}

.footer-container .social_icons a:hover {
    color: #DADADB;
}

/* Start Brian Code
--------------------------------------------- */


/* Base
--------------------------------------------- */
:root {
    --container-width: 1280px;
    --container-width-small: 600px;
}

:root {
    --trm-block-padding-md: 128px;
    --trm-block-padding-lg: 240px;

    --global-content-edge-padding: 1rem;

    --spacing-default: 32px;
    --button-spacing: 20px;
    --gap-spacing: 20px;
}

:root {
    --trm-color-white: #FFF;
    --trm-color-primary: #D66B2A;
    --trm-color-black: #343434;
    --trm-bg-gray: #F9F9F9;
    --trm-border-gray: #D9D9D9;
    --trm-text-gray: #818181;
}

/* Containers, Rows, and Columns */
.container {
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--global-content-edge-padding);
    padding-right: var(--global-content-edge-padding);
}

.column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-default);
}

/* Paragraphs, Headings, and Lists - Spacing, etc. */
ul {
    offset-position: 10px;
    margin-block-start: 1em;
    padding-inline-start: 1em;
}

ul:not(:last-child) {
    margin-block-end: 1em;
}

li {
    list-style: disc outside;
}

p:not(:last-of-type) {
    margin-bottom: 1em;
}