.brand-color {
    color: #e97c52;
}

.accent-color {
    color: #2fa8a1;
}

.background-color {
    color: #fefefe;
}

.text-color {
    color: #f5f5f5;
}


* {
    box-sizing: border-box;
}

body {
    font-family: "adobe-garamond-pro", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.4em;
    padding: 0px;
    margin: 0px;
}

.italic {
    font-family: "adobe-garamond-pro", serif;
    font-weight: 400;
    font-style: italic;
}

.semi-bold {
    font-family: "adobe-garamond-pro", serif;
    font-weight: 600;
    font-style: normal;
}

.semi-bold-italic {
    font-family: "adobe-garamond-pro", serif;
    font-weight: 600;
    font-style: italic;
}

.bold {
    font-family: "adobe-garamond-pro", serif;
    font-weight: 700;
    font-style: normal;
}

.bold-italic {
    font-family: "adobe-garamond-pro", serif;
    font-weight: 700;
    font-style: italic;
}

.hidden {
    display: none !important;
}

.hero {
    position: relative;
}

    .hero h1,
    .hero h2,
    .hero h3 {
        font-weight: 500;
    }

h1, h2, h3, h4, div, p {
    color: #181818;
}

ul {
    margin-top: 0px;
}

li {
    margin-bottom: 12px;
}


button {
    color: #f5f5f5;
    font-size:0.9em;
    text-decoration: none;
    cursor: pointer;
    border: none;
    border-radius: 12px;
    background-color: #e97c52;
    padding-top: 7px;
    padding-bottom: 6px;
    padding-left: 12px;
    padding-right: 12px;
    min-width:125px;
    min-height:46px;
}


footer div {
    text-align: center;
    font-size: 0.7em;
    padding-bottom: 12px;
}

.section .content {
    align-content: start;
}

    .section .content > div {
        align-content: start;
    }

    .section .content h2,
    .section .content p {
        margin-top: 0px;
    }

    .section .content h2 {
        margin-bottom: 12px;
    }

    .section .content h3 {
        margin-bottom: 14px;
    }





.form-group {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 500px;
    gap: 6px;
}

    .form-group input {
        font-size: 1em;
        border-radius: 3px;
        padding-left: 6px;
    }



img.cinamatic {
    border: 3px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 255, 255, 0.1); /* soft glow */
    backdrop-filter: blur(8px);
}


a.video {
    width: 250px;
    height: 150px;
    display: grid;
    background-color: #181818;
    justify-content: center;
    align-content: center;
    border-radius: 3px;
}


.alert-view {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 35px auto 46px;
    width: 350px;
    position: fixed;
    z-index: 2;
    left: 50%;
    top: 50px;
    transform: translateX(-50%);
    background-color: #fefefe;
    padding: 20px;
    border-radius: 6px;
    border: 3px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 255, 255, 0.1); /* soft glow */
    backdrop-filter: blur(8px);
    gap: 6px;
}

    .alert-view img {
        justify-self: center;
    }

    .alert-view p {
        color: #181818;
        font-size: 0.9em;
    }

    .alert-view button {
        justify-self: center;
    }
