:root {

}

body {
    font-family: 'opensans', sans-serif;
    height: 100%;
    display: flex;
    flex-direction: column;
}

html
{
    font-size: 16px;
    height: 100%;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, a, abbr, acronym, img, ol, ul, li, table, tr, th, td, canvas, embed, video {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

a{
    color: #007a53;
    transition: color .15s ease-in-out, background-color .15s ease-in-out;
}

a:hover {
    color: #008F61;
    text-decoration: none;
}

a:focus, .navbar-toggle:focus {
    color: #006645;
    outline: 2px auto #007bff;
    outline-offset: 5px;
}

.full-width-wrapper {
    width: 100%;
}

p {
    color: #393939;
    font-size: 14px;
    letter-spacing: -0.4px;
    line-height: 1.375;
    margin-top: 0;
    margin-bottom: 6px;
}
.overflow-hidden {
    overflow: hidden!important;
}

.primary-nav {
    height: 60px;
    background-color: #ffffff;
    align-items: center;
    display: flex;
    position: relative;
}

.secondary-nav {
    height: 50px;
    align-items: center;
    display: flex;
    position: relative;
    transition: transform .2s ease-out;
}

.collapsed-nav {
    transform: translateY(-100%);
}

.primary-nav .navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 600;
    color: #007a53;
    margin-right: 12px;
    margin-left: 12px;
    padding: 0;
    transition: color .15s ease-out;
}

.primary-nav .navbar-nav .nav-link:hover {
    color: #008F61;
}

.primary-nav-icon {
    margin-right: 8px;
    vertical-align: middle;
}

.navbar-nav {
    display: flex;
    margin:  auto;
}

.navbar-nav>li {
    float: none;
}
.nav>li {
    display: inline-block;
}

.navbar-brand {
    width: 243px;
    padding: 0;
    display: flex;
    align-items: center;
    z-index: 1031;
    height: 38px;
}

.navbar-brand>img {
    display: inline-block;
}

.primary-nav-links {
    display: flex;
    margin: auto;
    z-index: 1031;
    justify-content: space-between;
    width: 100%;
    max-width: 552px;
}

.nav>li>a:focus, .nav>li>a:hover {
    background-color: unset;
}

.nav-signin {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -.5px;
    color: #007a53;
}

.nav-signin-wrapper {
    width: 243px;
    z-index: 1031;
    text-align: right;
}

.secondary-nav .dropdown-toggle:after {
    content: url(../images/nav_caret.svg);
    display: inline-block;
    margin-left: 12px;
    vertical-align: 1px;
    border: none;
    transform-origin: 50% 58%;
}

.secondary-nav .dropdown.open .dropdown-toggle:after {
    transform: scaleY(-1);
}

.secondary-nav .navbar-nav .dropdown-toggle {
    color: #575757;
    padding: 14px 24px;
    z-index: 1030;
    position: relative;
    transition: color .15s ease-out;
    font-size: 18px;
    letter-spacing: -0.56px;
    background-color: unset !important;
}

.secondary-nav .navbar-nav .dropdown-toggle:hover {
    color: #008F61;
}

.secondary-nav .navbar-nav .dropdown-toggle:focus, .tertiary-scroll .dropdown-item:focus {
    outline: 2px auto #007bff;
    outline-offset: -2px;
}

.secondary-nav .navbar-nav .dropdown-menu {
    margin-top: -1px;
    border: 0;
    box-shadow: 0 6px 25px -3px rgba(153, 153, 153, .4);
    border-radius: 0;
    border-top: solid 2px #eeeeee;
    padding: 8px 0 12px 0;
    min-width: 236px;
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: transform .2s ease-out;
    transform: translateY(-144px);
}

.secondary-nav .navbar-nav .dropdown-item {
    display: block;
    font-size: 16px;
    letter-spacing: -0.5px;
    color: #595959;
    padding: 12px 24px;
    opacity: 0;
    transition: background .15s ease-out;
}

.secondary-nav .navbar-nav .dropdown-item:hover {
    color: #008F61;
    background: #f9f9f9;
}

.secondary-nav .navbar-nav .dropdown-item:active {
    color: #008F61 !important;
    background: #f9f9f9;
}

.secondary-nav .navbar-nav .dropdown-item.bold-item {
    font-weight: 600;
}

.secondary-nav .navbar-nav .dropdown-item.green-item {
    color: #007a53;
}

.secondary-nav .navbar-nav .dropdown-item.green-item:hover {
    color: #008F61;
}

.secondary-nav .navbar-nav .dropdown.open .dropdown-item {
    opacity: 1;
}

.secondary-nav-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #ffffff;
    pointer-events: none;
    z-index: 1029;
    box-shadow: 0 8px 24px -4px rgba(153, 153, 153, .2);
    border-top: solid 2px #f7f7f7;
}

.secondary-nav .navbar-nav .dropdown.open .dropdown-menu {
    display: block;
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0%);
}

.secondary-nav.collapsed-nav .navbar-nav .dropdown.open .dropdown-menu {
    display: block;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
}

.primary-nav > .container-fluid {
    display: flex;
    align-items: center;
}
.container-fluid-thin {
    max-width: 65.25rem;
}
.primary-nav-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #ffffff;
    pointer-events: none;
    z-index: 1030;
    background-color: #ffffff;
    box-shadow: 0 1px 24px -4px rgba(153, 153, 153, .2);
}

a.underline, a .underline {
    position: relative;
}

a.underline:after, a .underline:after  {
    content: "";
    border-bottom: solid 1px #008F61;
    width: 0%;
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all .15s ease-out;
}

a.underline:hover:after, a:hover .underline:after, a.underline:focus:after, a:focus .underline:after {
    width: 100%;
    opacity: 1;
}

.navbar-brand > span {
    font-size: 22px;
    font-weight: bold;
    color: #000000;
    padding-left: 12px;
}

.navbar-brand > span:before {
    content: "";
    height: 32px;
    border-left: 1px solid #979797;
    margin-right: 12px;
}

.navbar-collapse.collapse, .navbar-collapse.collapsing {
    display: flex !important;
}

.btn {
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn:active {
    box-shadow: none;
}

.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
    outline-offset: 3px;
}

.btn-primary {
    border-color: #007bff;
    width: 100%;
    max-width: 260px;
    padding: 0 32px;
    border-radius: 32px;
    background-color: #007a53;
    border: 0;
    margin: auto;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -.5px;
    color: #ffffff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 58px;
}
.nav-app .btn-primary {
    border-radius: 32px !important;
}
.btn-primary:active {
    background: #006645 !important;
    border-color: #006645 !important;
}

.btn-primary:focus {
    outline: 2px auto #007bff;
    background: #006645;
    border-color: #006645;
}

.btn-primary:hover {
    background: #008f61;
}

.btn-outline {
    max-width: 220px;
    border: solid 2px #ffffff;
    padding: 0 32px;
    background: none;
    background: rgb(1,1,1,0);
    transition: background-color .15s ease-out;
}

.btn-outline:hover {
    border: solid 2px #ffffff;
    background-color: white;
    color: #007a53;
}

.btn-outline:active {
    background: white !important;
    border-color: white !important;
    color: #007a53 !important;
}

.btn-icon-hover {
    display: none;
}

.btn-outline:hover .btn-icon-hover, .btn-outline:focus .btn-icon-hover {
    display: inline-block;
}

.btn-outline:hover .btn-icon, .btn-outline:focus .btn-icon {
    display: none;
}

.btn-outline-green {
    margin: auto;
    border: solid 2px #007a53;
    color: #007a53;
    padding: 0 32px;
    min-width: 168px;
    width: auto;
}

.btn-outline-green:active {
    border: solid 2px #006645 !important;
    background-color: #006645 !important;
    color: #ffffff !important;
}

.btn-outline-green:focus {
    border: solid 2px #006645;
    background-color: #006645;
    color: #ffffff;
}

.btn-outline-green:hover {
    border: solid 2px #007a53;
    background-color: #007a53;
    color: #ffffff;
}

.btn-icon {
    margin-right: 16px;
}

.btn-icon-hover {
    margin-right: 16px;
}

.mobile-nav-bg {
    opacity: 0;
}

.btn-secondary {
    background: none !important;
    border: none;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -.5px;
    color: #007a53;
    position: relative;
    padding: 6px 0;
}

.btn-secondary:focus {
    outline: 2px auto #007bff;
    box-shadow: none!important;
    color: #007a53;
    outline-offset: 2px;
}

.btn-secondary:hover {
    color: #008F61;
}

.btn-secondary:active {
    color: #006645 !important;
}

.btn-secondary:after {
    padding: 0px 0 0px 4px;
    margin-top: 0;
    margin-left: 0;
    margin-right: 1px;
    vertical-align: 0em;
    border: none;
    content: url(../images/cta_arrow.svg);
    transform: scale(.9);
    display: inline-block;
    position: relative;
}

.btn-secondary:before {
    content: "";
    border-bottom: solid 1px #008F61;
    width: 0%;
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all .15s ease-out;
}

.btn-secondary:hover:before, .btn-secondary:focus:before {
    width: calc(100% - 20px);
    opacity: 1;
    left: calc(50% - 10px);
}
.btn-secondary.feedback-trigger, .contact-dropdown-items .btn-secondary.feedback-trigger {
    width: auto;
}
.secondary-nav-icon {
    display: inline-flex;
    vertical-align: middle;
    width: 32px;
    margin-right: 8px;
    justify-content: center;
}

.text-lg-center {
    text-align: center !important;
}

.navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse {
    max-height: none;
}

.main {
    overflow: hidden;
    width: 100%;
}

svg {
    vertical-align: middle;
}

.tertiary-scroll {
    list-style-type: none;
    padding-left: 0;
}
.dropdown-item:focus {
    background-color: transparent !important;
    background-image: none !important;
}

/*Medium desktop (desktops, less than 1440px)*/
@media (max-width: 1439.98px) {

}

/*Large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {

}

/*Medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
    .mobile-hide {
        display: none;
    }
    .navbar-left,.navbar-right {
        float: none !important;
    }
    .navbar-toggle {
        display: block;
    }
    .navbar-fixed-top {
        top: 0;
        border-width: 0 0 1px;
    }
    .navbar-collapse.collapse {
        display: none!important;
    }
    .navbar-nav {
        float: none!important;
    }
    .navbar-nav>li {
        float: none;
    }
    .navbar-nav>li>a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .collapse.in{
        display:block !important;
    }

    .thegeneral-logo {
        width: 90px !important;
    }

    .navbar-brand {
        margin: auto;
        justify-content: center;
        width: auto;
    }

    .primary-nav-links {
        position: absolute;
        left: 0;
        top: 50px;
        width: 100%;
        height: 50px;
        z-index: 1028;
        background-color: #ffffff;
        box-shadow: 0 8px 24px -4px rgba(153, 153, 153, .2);
        border-top: solid 2px #f7f7f7;
        align-items: center;
        padding: 0 8px;
        max-width: inherit;
        transition: transform .2s ease-out;
    }

    .primary-nav .navbar-nav .nav-link {
        font-size: 12px;
        margin-left: 4px;
        margin-right: 4px;
    }

    .primary-nav-icon {
        width: 22px;
    }

    .primary-nav {
        height: 50px;
        transition: transform .2s ease-out;
    }

    .nav-signin {
        font-size: 14px;
    }

    .nav-signin-wrapper {
        width: auto;
    }

    .nav-icon {
        transform: rotateZ(90deg);
        position: relative;
        height: 2px;
        width: 24px;
        z-index: 20;
        transition: all 0.16s ease-out;
        transition: all 0.16s ease-out;
    }

    .nav-icon:before {
        position: absolute;
        content: "";
        height: 2px;
        background-color: #111111;
        transition: all 0.16s ease-out;
        transition: all 0.16s ease-out;
        transform: rotateZ(45deg);
        bottom: 0px;
        left: 1px;
        width: 22px;
        border-radius: 2px;
    }

    .nav-icon:after {
        position: absolute;
        content: "";
        height: 2px;
        background-color: #111111;
        transition: all 0.16s ease-out;
        transition: all 0.16s ease-out;
        transform: rotateZ(-45deg);
        top: 0px;
        left: 1px;
        width: 22px;
        border-radius: 2px;
    }

    .nav-line {
        position: absolute;
        height: 2px;
        width: 22px;
        border-radius: 2px;
        background-color: #111111;
        transition: all 0.16s ease-out;
        transition: all 0.16s ease-out;
        opacity: 0;
    }

    .collapsed .nav-icon {
        transform: rotateZ(0deg);
    }

    .collapsed .nav-icon:before {
        bottom: 8px;
        left: 0px;
        transform: rotateZ(0deg);
        background-color: #111111;
    }

    .collapsed .nav-icon:after {
        top: 8px;
        left: 0px;
        transform: rotateZ(0deg);
        background-color: #111111;
    }

    .collapsed .nav-line {
        opacity: 1;
    }

    .navbar-toggle {
        color: inherit;
        border: none;
        outline: none;
        padding: 0;
        height: 24px;
        z-index: 1031;
        width: 24px;
        margin-right: 26px;
        background: unset;
    }

    .secondary-nav .navbar-nav .dropdown-menu {
        left: 0px;
        height: calc(100vh - 50px);
        z-index: 1029;
        margin-top: 0;
        border-top: 0;
        width: 100%;
        max-width: 310px;
        transform: translateX(0%);
        background: none;
        overflow-y: scroll;
        padding: 0;
        transition: .2s ease-out, opacity 0s ease .2s;
        position: fixed;
        top: 50px;
    }

    .secondary-nav .navbar-nav .dropdown-item {
        opacity: 1;
        font-size: 16px;
        padding: 16px 24px;
    }

    .secondary-nav {
        height: calc(100vh - 50px);
        position: fixed;
        width: 100%;
        max-width: 310px;
        z-index: 1029;
        overflow-x: hidden;
        overflow-y: scroll;
        transition: left .2s ease-out;
        left: 0px;
    }

    .collapsed .secondary-nav {
        visibility: hidden;
        left: -310px;
    }

    .secondary-nav .navbar-nav {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        position: relative;
        z-index: 1030;
        flex-direction: column;
    }

    .mobile-nav-bg {
        width: 100vw;
        height: 100vh;
        position: fixed;
        background: #000000;
        top: 0;
        left: 0;
        opacity: .4;
        z-index: 1028;
        transition: opacity .16s ease-out;
        background-image: url();
    }

    .collapsed .mobile-nav-bg {
        opacity: 0;
        transition: none;
        visibility: hidden;
    }

    .secondary-nav .dropdown-toggle:after {
        transform: rotate(-90deg) !important;
        position: absolute;
        right: 36px;
        transform-origin: 50% 50%;
    }

    .secondary-nav .navbar-nav .nav-link {
        font-size: 18px;
        position: static;
    }

    .secondary-nav .container-fluid {
        width: 100%;
        height: 100%;
        padding: 0;
        transition: .2s ease-out;
        position: absolute;
        left: 0px;
        top: 0px;
    }

    .tertiary-expanded {
        left: -310px !important;
    }

    .secondary-nav .nav-item:first-of-type .dropdown-menu .dropdown-item {
        opacity: 1;
        font-size: 16px;
        letter-spacing: -0.44px;
        padding: 14px 24px;
        color: #595959;
    }

    .secondary-nav .nav-item:first-of-type .dropdown-menu .dropdown-item.green-item {
        color: #007a53;
    }

    .secondary-nav .nav-item:first-of-type .dropdown-menu .dropdown-item:hover {
        color: #008F61;
    }

    .secondary-nav .nav-item:first-of-type .dropdown-menu .dropdown-item.green-item:hover {
        color: #008F61;
    }

    .secondary-nav .nav-item:first-of-type {
        padding-top: 16px;
    }

    .secondary-nav .nav-item:last-of-type {
        border-bottom: solid 2px #eeeeee;
        padding-bottom: 16px;
    }

    .secondary-nav .navbar-collapse {
        overflow: visible !important;
        height: auto !important;
        position: inherit;
        width: 100%;
        min-height: calc(100vh - 50px);
        padding: 0;
        margin: 0;
        border-top: none;
    }

    .secondary-nav .dropdown {
        position: static;
    }

    .secondary-nav .navbar-nav .dropdown.open .dropdown-menu {
        display: block;
        pointer-events: auto;
        opacity: 1;
        left: 0;
        transition: .2s ease-out, opacity 0s;
        -ms-overflow-style: none;
        overflow: auto;
    }

    .collapsed .navbar-nav .dropdown-menu {
        left: -310px !important;
    }

    .dropdown-menu-wrapper {
        height: 100vh;
        z-index: 1029;
        width: 100%;
        max-width: 310px;
        transform: translateX(0%);
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        overflow: hidden;
    }

    .mobile-nav-back {
        font-size: 18px;
        font-weight: 400;
        letter-spacing: -0.56px;
        color: #575757;
        padding: 28px 24px;
        display: block;
        background: #ffffff;
        border-bottom: solid 2px #eeeeee;
    }

    .mobile-nav-back:before {
        margin-right: 12px;
        vertical-align: 0em;
        border: none;
        content: url(../images/nav_caret.svg);
        transform: rotate(90deg);
        display: inline-block;
    }

    .tertiary-scroll {
        overflow-y: scroll;
        height: calc(100vh - 137px);
        padding: 16px 0px;
        -ms-overflow-style: none;
        overflow: auto;
        display: flex;
        flex-direction: column;
    }

    .nav-link-small {
        font-size: 14px;
        font-weight: normal;
    }

    .navbar-brand > span {
        font-size: 16px;
        padding-left: 8px;
    }

    .navbar-brand > span:before {
        margin-right: 8px;
    }

    .nav-icon {
        transform: rotateZ(90deg);
        position: relative;
        height: 2px;
        width: 24px;
        z-index: 20;
        transition: all 0.16s ease-out;
        transition: all 0.16s ease-out;
    }

    .nav-icon:before {
        position: absolute;
        content: "";
        height: 2px;
        background-color: #111111;
        transition: all 0.16s ease-out;
        transition: all 0.16s ease-out;
        transform: rotateZ(45deg);
        bottom: 0px;
        left: 1px;
        width: 22px;
        border-radius: 2px;
    }

    .nav-icon:after {
        position: absolute;
        content: "";
        height: 2px;
        background-color: #111111;
        transition: all 0.16s ease-out;
        transition: all 0.16s ease-out;
        transform: rotateZ(-45deg);
        top: 0px;
        left: 1px;
        width: 22px;
        border-radius: 2px;
    }

    .nav-line {
        position: absolute;
        height: 2px;
        width: 22px;
        border-radius: 2px;
        background-color: #111111;
        transition: all 0.16s ease-out;
        transition: all 0.16s ease-out;
        opacity: 0;
    }

    .collapsed .nav-icon {
        transform: rotateZ(0deg);
    }

    .collapsed .nav-icon:before {
        bottom: 8px;
        left: 0px;
        transform: rotateZ(0deg);
        background-color: #111111;
    }

    .collapsed .nav-icon:after {
        top: 8px;
        left: 0px;
        transform: rotateZ(0deg);
        background-color: #111111;
    }

    .collapsed .nav-line {
        opacity: 1;
    }

    .nav-app {
        padding: 32px 22px !important;
        display: flex !important;
        flex-flow: wrap;
        justify-content: space-between;
    }

    .nav-app p {
        font-size: 16px;
        line-height: 1.06;
        letter-spacing: -0.25px;
        color: #595959;
        flex: 0 0 100%;
        margin-bottom: 18px;
    }

    .nav-app .btn-outline {
        font-size: 14px;
        font-weight: normal;
        line-height: 1;
        letter-spacing: -.39px;
        color: #575757;
        height: 48px;
        border: solid 1px #949494;
        max-width: 128px;
        padding: 0;
        margin: 0;
        margin-bottom: 16px;
        display: flex !important;
    }

    .nav-app .btn-outline:focus {
        background: none;
        border: solid 1px #008F61 !important;
    }


    .nav-app .btn-outline:hover {
        border: solid 1px #008F61 !important;
        color: #008F61;
    }

    .nav-app .btn-icon, .nav-app .btn-icon-hover  {
        width: 16px;
        margin-right: 8px;
    }

    .secondary-nav .navbar-nav .contact-dropdown-items .dropdown-item {
        font-weight: 600;
        color: #007a53;
    }

    .secondary-nav .navbar-nav .contact-dropdown-items .dropdown-item:hover {
        color: #008F61;
        background: none;
    }

    .contact-dropdown-items {
        flex: 1;
        margin-bottom: -16px;
        background: #ffffff;
        padding-top: 20px;
        margin-top: 16px;
        border-top: solid 2px #eeeeee;
    }

    .main-nav {
        z-index: 2010;

    }
    .main-nav.collapsed {
        z-index: 1030;
        transition: z-index 0s ease .2s;
    }
    .secondary-nav .navbar-nav .dropdown-toggle {
        padding: 20px 24px;
    }

    .navbar-collapse.collapse, .navbar-collapse.collapsing {
        display: block !important;
    }

    .secondary-nav .navbar-nav .dropdown.open .dropdown-inner {
        display: block;
        pointer-events: auto;
        opacity: 1;
        left: 0;
        transition: .2s ease-out, opacity 0s;
    }
    .dropdown-inner {
        height: calc(100vh - 50px);
        z-index: 1029;
        left: 310px;
        margin-top: 0;
        border-top: solid 2px #f7f7f7;
        width: 100%;
        max-width: 310px;
        transform: translateX(0%);
        background-color: #fafafa;
        overflow-y: scroll;
        padding: 0;
        transition: .2s ease-out, opacity 0s ease .2s;
        position: absolute;
        top: 0;
    }
    .nav-app {
        margin-top: 20px;
        border-top: 2px solid #e6e6e6;
    }

}

/*Small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {

}

/*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {


}

/*iPhone 5 (older portrait phones, less than 375px)*/
@media (max-width: 374.98px) {
    .hide-320 {
        display: none;
    }

    .container-fluid {
        padding-right: 16px;
        padding-left: 16px;
    }

    .navbar-toggle {
        margin-right: 0px;
    }
}

/* Safari 10.1+ */

@media not all and (min-resolution:.001dpcm) { @media {

    .side-bar-link:focus {
        outline-offset: -3px;
    }

    .side-bar-link-sm:focus {
        outline-offset: -3px;
    }
}}