:root {
    --color1: #c84663;
    --color2: #a5c77f;
    --color3: #00464a;
    --color4: #509e83;
    --color5: #FFFFFF;
    --colorLink: var(--color1);
    --colorLink-dark: color-mix(in srgb, var(--colorLink), black 10%);
    --colorFeature1: var(--color5);
    --colorFeature2: #eee;
    --fa-primary-color: var(--color2);
}

html {
    min-height: 100%;
}

html, body {
    height: 100%;
}

.container-page {
    padding-top: 100px;
}

nav {
    .navbar-nav {
        a {
            color: white !important;
            text-transform: lowercase;
            font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
            font-weight: 400;
            letter-spacing: 1px;
            text-decoration: none;

            &:hover, &:active, &:focus {
                color: var(--color2) !important;
                text-decoration: none;
            }

            &:before {
                content: "<";
                color: transparent;
            }

            &:after {
                content: " />";
                color: transparent;
            }

            &.active, &:active, &:focus {
                color: var(--color2) !important;

                &:before {
                    content: "<";
                    color: var(--color1);
                }

                &:after {
                    content: " />";
                    color: var(--color1);
                }
            }
        }
    }
}

a {
    color: var(--color1);
    text-decoration: none;

    &:hover, &:active, &:focus {
        color: var(--color2);
        text-decoration: none;
    }
}

.col-muted {
    filter: grayscale(1);
    opacity: 0.1;
}

.btn-action {
    color: #fff;
    background-color: var(--colorLink);
    border-color: var(--colorLink);

    &:hover, &:active {
        background-color: var(--colorLink-dark);
    }

    &:active, &:focus {
        color: white;
    }
}

.btn-lg {
    font-size: 18px;
    padding: 20px 40px;
    font-weight: bold;
    margin-top: 50px;
    font-family: Consolas, Courier, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter";

    &:hover {
        color: white;
    }
}

.btn:focus, .btn:hover {
    text-decoration: none;
}

.stage {
    background: url(/images/bg6-mobile.jpg) no-repeat center 0;
    background-size: cover;
    align-items: center;
    display: flex;
    height: 100%;
}

.feature {
    position: relative;
    /*content-visibility: auto;*/
    .code10-anchor {
        position: absolute;
        top: -77px;
    }

    &.feature-even {
        background-color: var(--colorFeature1);
        color: black;
    }

    &.feature-odd {
        background-color: var(--colorFeature2);
        color: black;
    }

    &.featute-contact {
        background-color: #222;
        background-image: url(/images/map-image.png);
        background-position: center;
        background-repeat: no-repeat;
        color: white;

        a, h2 {
            color: white;
        }
        /*        .lead {
            margin-bottom: 50px;
        }*/
    }
}

.fa-stack {
    margin-bottom: 30px;
}

.fa-circle {
    color: var(--color1) !important;
}

.ingredients span {
    padding: 20px;
    display: inline-block;
    font-size: 30px;
}

.tools {
    span {
        display: inline-flex;
        font-size: 14px;
        background-color: var(--color1);
        color: white;
        margin: 40px 25px 0 25px;
        width: 128px;
        border-radius: 128px;
        height: 128px;
        align-items: center;
        justify-content: center;
    }

    img {
        max-height: 140px;
        padding: 20px 20px;
    }
}

.btn-go-to-top {
    width: 70px;
    height: 70px;
    line-height: 70px;
    overflow: hidden;
    z-index: 999;
    display: none;
    cursor: pointer;
    position: fixed;
    bottom: 15px;
    right: 15px;
    background-color: var(--color1);
    color: white;
    text-align: center;
    font-size: 30px;
    text-decoration: none;
    border-radius: 50%;
}

footer {
    line-height: 100px;
    /*    position: absolute;
    bottom: -100px;*/
    width: 100%;
    /*    span {
        padding: 0 16px;
    }*/
}

@media (min-width: 992px) {
    .container {
        width: 960px;
        max-width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }

    .stage {
        background: url(/images/bg6.webp) no-repeat center -100px fixed;
        background-size: cover;
    }
}

.field-validation-error {
    font-weight: bold;
    color: var(--color1);
}

.typed-cursor--blink {
    display: inline-block;
    vertical-align: middle;
    animation: caret-blink 1030ms steps(1, end) infinite; /* ~Windows blink rate */
    -webkit-animation: caret-blink 1030ms steps(1, end) infinite;
}

@keyframes caret-blink {
    0%, 49% {
        opacity: 1;
    }

    50%, 100% {
        opacity: 0;
    }
}
