html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 0;
}

.navbar {
    padding-bottom: 0;
    padding-top: 0;
}

.navbar-light .navbar-brand,
.navbar-light .navbar-nav .nav-link {
    color: #000000;
}

.dark .navbar-light .navbar-brand,
.dark .navbar-light .navbar-nav .nav-link {
    color: #e6e6e6;
}

.navbar-light .navbar-brand {
    background-image: url(/images/logo.png);
    background-repeat: no-repeat;
    background-size: auto 60%;
    padding-left: 30px;
    background-position-y: center;
    text-indent: -4000px;
    min-width: 150px;
    min-height: 60px;
}

footer .container {
    text-wrap: auto;
    line-height: 1.5;
    max-width:1220px;
    margin:0 auto;
}

.form-input {
    width: 100%;
    min-height: 40px;
}

.form-row label {
    display: block;
    margin-bottom: 5px;
}

.form-captcha {
    margin: 10px;
}

.form-row .drawrpallete-wrapper {
    display: flex !important;
}

.form-notes {
    color: orangered;
    margin: 10px 0;
}

.form-row {
    margin: 5px 0;
}

.form-notes, .field-validation-error {
    color: orangered;
    margin: 5px 0;
    display: block;
}

.form-text {
    width: 100%;
}

.form-input input {
    width: 100%;
    height: 36px;
}

.form-row textarea {
    width: 100%;
}

.email-message {
    font-size: 20px;
    margin: 20px 0;
}

.content-page .shell{
    padding-top:20px;
}

.breadcrumb {
    max-width: 1220px;
    margin: 10px auto;
    padding: 0 20px;
}

    .breadcrumb ol {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
        align-items: end;
        font-size: 14px;
    }

    .breadcrumb li:not(:last-child)::after {
        display: inline-block;
        margin: 0 0.25rem;
        content: "/";
    }

.site-head {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(244,241,232,.9);
    border-bottom: 1px solid rgba(25,67,46,.1);
    backdrop-filter: blur(16px)
}

.nav {
    max-width: 1220px;
    min-height: 50px;
    margin: auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    font-size: 10px;
    line-height: 1.05;
    letter-spacing: .09em;
    text-transform: uppercase
}

    .brand b {
        font-size: 14px;
        letter-spacing: .02em
    }

.logo {
    display: grid;
    grid-template-columns: repeat(2,10px);
    gap: 3px;
    padding: 7px;
    background: var(--green);
    border-radius: 10px
}

    .logo i {
        width: 10px;
        height: 10px;
        background: #fff;
        border-radius: 2px
    }

        .logo i:nth-child(2), .logo i:nth-child(3) {
            background: var(--lime)
        }

.nav > nav {
    display: flex;
    gap: 31px
}

    .nav > nav a, .nav.nav a {
        position: relative;
        text-decoration: none;
        color: #46574f;
        font-size: 13px;
        font-weight: 750
    }

        .nav > nav a:hover, .nav > nav a.active,
        .nav.nav a:hover, .nav.nav a.active {
            color: var(--green)
        }

            .nav > nav a.active:after,
            .nav.nav a.active:after {
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                bottom: -14px;
                height: 2px;
                background: var(--lime)
            }

.find {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 13px;
    border: 1px solid #cad6cc;
    border-radius: 11px;
    text-decoration: none;
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
    text-indent:-3000px;
}

    .find span, .glass {
        width: 14px;
        height: 14px;
        border: 2px solid currentColor;
        border-radius: 50%;
        position: relative;
        display: inline-block
    }

        .find span:after, .glass:after {
            content: "";
            position: absolute;
            width: 6px;
            height: 2px;
            background: currentColor;
            right: -5px;
            bottom: -2px;
            transform: rotate(45deg)
        }

@media (min-width: 768px) {
    find {
       text-indent:initial;
    }
}