@font-face {
    font-family: 'Trebuchet MS';
    src: url("../fonts/TrebuchetMS.woff2") format("woff2"), url("../fonts/TrebuchetMS.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Trebuchet MS';
  src: url("../fonts/TrebuchetMS-Bold.woff2") format("woff2"), url("../fonts/TrebuchetMS-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}

@font-face {
    font-family: 'Helveticrap';
  src: url("../fonts/Helveticrap.woff2") format("woff2"), url("../fonts/Helveticrap.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
    font-family: 'From Where You Are';
  src: url("../fonts/FromWhereYouAre.woff2") format("woff2"), url("../fonts/FromWhereYouAre.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

html {
    font-size: 16px;
}

body {
    padding-top: 140px;
    color: #777777;
    font-family: 'Trebuchet MS', Arial, sans-serif;
}

a {
    color: inherit;
}

a:hover, a:focus {
    color: #02355E;
}

.min-height-none {
    min-height: initial !important;
}

.container {
    max-width: 100%;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.color-ui-blue {
    color: #02355E;
}

.btn-ui-primary {
    border-radius: 0;
    text-transform: uppercase;
    color: #fff;
    background-color: #02355E;
    border-color: #02355E;
}

.btn-ui-primary:hover {
    color: #fff;
    background-color: #012039;
    border-color: #01192c;
}

.btn-ui-primary:focus, .btn-ui-primary.focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(2, 53, 94, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(2, 53, 94, 0.5);
}

.btn-ui-primary.disabled, .btn-ui-primary:disabled {
    color: #fff;
    background-color: #02355E;
    border-color: #02355E;
}

.btn-ui-primary:not(:disabled):not(.disabled):active, .btn-ui-primary:not(:disabled):not(.disabled).active,
  .show > .btn-ui-primary.dropdown-toggle {
    color: #fff;
    background-color: #01192c;
    border-color: #011220;
}

.btn-ui-primary:not(:disabled):not(.disabled):active:focus, .btn-ui-primary:not(:disabled):not(.disabled).active:focus,
    .show > .btn-ui-primary.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(2, 53, 94, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(2, 53, 94, 0.5);
}

.btn-outline-ui {
    color: #02355E;
    background-color: transparent;
    background-image: none;
    border-color: #02355E;
}

.btn-outline-ui:hover {
    color: #fff;
    background-color: #02355E;
    border-color: #02355E;
}

.btn-outline-ui:focus, .btn-outline-ui.focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(2, 53, 94, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(2, 53, 94, 0.5);
}

.btn-outline-ui.disabled, .btn-outline-ui:disabled {
    color: #02355E;
    background-color: transparent;
}

.btn-outline-ui:not(:disabled):not(.disabled):active, .btn-outline-ui:not(:disabled):not(.disabled).active,
  .show > .btn-outline-ui.dropdown-toggle {
    color: #fff;
    background-color: #02355E;
    border-color: #02355E;
}

.btn-outline-ui:not(:disabled):not(.disabled):active:focus, .btn-outline-ui:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-ui.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(2, 53, 94, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(2, 53, 94, 0.5);
}

p {
    margin-bottom: 1.5rem;
}

b, strong {
    color: #02355E;
}

h2 {
    font-size: 1.5rem;
    color: #02355E;
}

.section {
    position: relative;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.section-light-gray {
    background-color: #EBEBEB;
}

.section-title {
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.section-title > span {
    background-color: #02355E;
    color: #fff;
    display: inline-block;
    padding: 0.5rem 1rem;
}

@media (max-width: 991.98px) {
    body.navbar-open:after {
        content: '';
        display: block;
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
        z-index: 1000;
        background: rgba(0, 0, 0, 0.7);
    }

    body.navbar-open {
        overflow-y: hidden;
    }
}

.navbar {
    display: block;
    background-color: #fff;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9999;
    padding: 40px 15px 0;
    -webkit-box-shadow: 0 0 5px rgba(2, 53, 94, 0.5);
    box-shadow: 0 0 5px rgba(2, 53, 94, 0.5);
}

.navbar > .container {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

@media (max-width: 991.98px) {
    .navbar > .container {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media (max-width: 991.98px) {
    .navbar {
        max-height: 100%;
        overflow-y: auto;
    }
}

.navbar-brand {
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 25px;
}

@media (max-width: 575.98px) {
    .navbar-brand {
        max-width: 200px;
    }
}

.navbar-brand-logo {
    display: block;
    max-height: 60px;
    max-width: 100%;
}

.navbar-toggler {
    border-radius: 0;
    border-color: #02355E;
    background-color: #02355E;
    color: #fff;
    padding: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 3.5rem;
    height: 2.5rem;
    font-size: 0.95rem;
}

@media (max-width: 991.98px) {
    .navbar-toggler {
        margin-bottom: 25px;
    }
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-item.active .nav-link {
    background-color: #02355E;
    color: #fff;
}

.navbar-nav .nav-link {
    font-weight: bold;
    text-transform: uppercase;
    padding: 1rem 1rem 1.5rem;
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link:focus {
    background-color: #02355E;
    color: #fff;
}

.navbar-nav-social {
    margin-left: 1.5rem;
}

.navbar-expand-lg .navbar-collapse {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.navbar-expand-lg .navbar-nav .nav-link {
    font-size: 0.9rem;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 1rem 1rem 1.5rem;
    }
}

.navbar-expand-lg .navbar-nav-social .nav-link i {
    -webkit-transform: scale(1.25);
    -ms-transform: scale(1.25);
    transform: scale(1.25);
}

.navbar .dropdown-menu {
    border-radius: 0;
    color: inherit;
    padding-bottom: 0;
}

@media (min-width: 992px) {
    .navbar .dropdown-menu {
        -webkit-box-shadow: inset 0px 4px 5px -3px rgba(0, 0, 0, 0.5);
        box-shadow: inset 0px 4px 5px -3px rgba(0, 0, 0, 0.5);
        margin-top: 0.5rem;
    }

    .navbar .dropdown:hover .dropdown-menu,
    .navbar .dropdown .dropdown-menu:hover {
        display: block !important;
    }

    .navbar .dropdown .dropdown-menu {
        background-color: #fff;
    }

    .navbar .dropdown .dropdown-menu:after {
        bottom: 100%;
        position: absolute;
        left: 0;
        width: 100%;
        height: 0.65rem;
        content: " ";
        display: block;
    }
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-left: -15px;
        margin-right: -15px;
    }

    .navbar .navbar-nav .nav-link {
        padding: 1rem;
    }
}

.navbar .has-sub-nav .sub-nav-toggle {
    display: block;
    background-color: #02355E;
    width: 3.5rem;
    height: 3rem;
    line-height: 3rem;
    text-align: center;
    position: absolute;
    top: 0;
    right: 1rem;
    z-index: 10;
    cursor: pointer;
}

@media (min-width: 992px) {
    .navbar .has-sub-nav .sub-nav-toggle {
        display: none;
    }
}

.navbar .has-sub-nav .sub-nav-toggle:after {
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    content: " ";
    height: 0.75rem;
    width: 0.75rem;
    border-style: solid;
    border-width: 0 2px 2px 0;
    border-color: #fff;
    display: inline-block;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.navbar .has-sub-nav.sub-nav-open .sub-nav-toggle:after {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

@media (max-width: 991.98px) {
    .navbar .has-sub-nav.sub-nav-open .megamenu-menu {
        display: block;
    }
}

@media (min-width: 992px) {
    .megamenu:hover {
        position: static;
        background-color: #02355E;
        color: #fff;
    }

    .megamenu:hover .megamenu-menu {
        display: block;
    }
}

.megamenu-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background-color: #02355E;
    color: #fff;
}

@media (max-width: 991.98px) {
    .megamenu-menu {
        position: relative;
        left: auto;
        top: auto;
    }
}

.megamenu-menu > .container {
    max-width: 1540px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

@media (max-width: 991.98px) {
    .megamenu-menu > .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.megamenu-menu-left, .megamenu-menu-right {
    position: relative;
    padding: 45px 45px;
    width: 50%;
}

@media (max-width: 991.98px) {
    .megamenu-menu-left, .megamenu-menu-right {
        width: 100%;
        padding: 15px;
    }
}

.megamenu-menu-right:before {
    display: block;
    content: " ";
    height: 100%;
    width: 4px;
    position: absolute;
    left: -2px;
    top: 0;
    background-color: #fff;
}

@media (max-width: 991.98px) {
    .megamenu-menu-right:before {
        display: none;
    }
}

.megamenu-links {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.8rem;
    margin-top: 15px;
}

.megamenu-links-group-title {
    font-size: 3rem;
    text-transform: uppercase;
    line-height: normal;
}

.megamenu-links-title {
    color: #B3C2CE;
    border-bottom: 1px solid #fff;
    padding-bottom: 15px;
    margin-top: 15px;
    margin-bottom: 0;
    line-height: 1;
    min-height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.megamenu-links li + li {
    margin-top: 5px;
}

.megamenu-links li a {
    display: block;
}

.megamenu-links li a:hover, .megamenu-links li a:focus {
    color: #fff;
}

.think-green-link {
    position: relative;
    color: #fff;
    display: block;
    overflow: hidden;
}

.think-green-link:hover, .think-green-link:focus {
    text-decoration: none;
    color: #fff;
}

.think-green-link img {
    position: relative;
    width: 100%;
}

.think-green-link-text {
    font-family: "From Where You Are";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.25rem 1rem 1.25rem 3.5rem;
    z-index: 1;
    font-size: 0.8rem;
}

.think-green-link-text > .fa {
    position: absolute;
    left: 1rem;
    top: 50%;
    -webkit-transform: translatey(-50%);
    -ms-transform: translatey(-50%);
    transform: translatey(-50%);
    display: block;
    border-radius: 100%;
    background-color: #fff;
    color: #99BB33;
    height: 2rem;
    width: 2rem;
    text-align: center;
    line-height: 2rem;
    font-size: 1.25rem;
}

@media (max-width: 991.98px) {
    .think-green-link:not(.think-green-link-square) img {
        position: absolute;
        top: 0;
        left: 0;
        min-width: 100%;
        min-height: 100%;
    }

    .think-green-link:not(.think-green-link-square) .think-green-link-text {
        position: relative;
        top: auto;
        left: auto;
    }
}

.banner {
    overflow: hidden;
    min-height: 26rem;
    background-size: cover;
    background-position: center center;
}

.banner:not(.carousel-item) {
    position: relative;
}

.banner-container {
    min-height: 26rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-bottom: 3rem;
}

.banner-contents {
    width: 100%;
}

@media (max-width: 991.98px) {
    .banner-contents {
        text-align: center;
    }
}

.banner-contents-title-inner, .banner-contents-desc-inner {
    display: inline-block;
    background-color: #02355E;
    color: #fff;
    padding: 0.5rem;
}

.banner-contents-title {
    font-size: 3rem;
    font-weight: normal;
    margin-bottom: 0.5rem;
}

.banner-contents-desc {
    font-size: 1rem;
    font-weight: normal;
    margin-bottom: 0;
}

.home-carousel .carousel-control-next, .home-carousel .carousel-control-prev {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 10%;
    opacity: 1;
}

.home-carousel .carousel-control-next > img, .home-carousel .carousel-control-prev > img {
    width: 40px;
    max-width: 100%;
}

@media (max-width: 1199.98px) {
    .home-carousel .carousel-control-next > img, .home-carousel .carousel-control-prev > img {
        width: 20px;
    }
}

.home-carousel .carousel-control-next {
    padding-right: 25px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media (max-width: 767.98px) {
    .home-carousel .carousel-control-next {
        padding-right: 15px;
    }
}

.home-carousel .carousel-control-prev {
    padding-left: 25px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

@media (max-width: 767.98px) {
    .home-carousel .carousel-control-prev {
        padding-left: 15px;
    }
}

.home-carousel .carousel-indicators {
    bottom: 0;
}

.home-carousel .carousel-indicators li {
    cursor: pointer;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    background-color: #7D8184;
}

.home-carousel .carousel-indicators li.active {
    background-color: #02355E;
}

.gridder {
    padding: 0;
    margin: 0 -15px;
    list-style: none;
    font-size: 0;
}

.gridder-list {
    padding-left: 15px;
    padding-right: 15px;
    display: inline-block;
    vertical-align: top;
    width: 25%;
    font-size: 1rem;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .gridder-list {
        width: 33.3333%;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .gridder-list {
        width: 50%;
    }
}

@media (max-width: 575.98px) {
    .gridder-list {
        width: 100%;
    }
}

.gridder-show {
    font-size: 1rem;
    display: block;
    float: left;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
}

.gridder-content {
    display: none;
}

.product {
    position: relative;
    padding-bottom: 1.5rem;
}

.product-title {
    font-size: 1.15rem;
    font-weight: bold;
    color: #02355E;
    margin-bottom: 0;
    min-height: 45px;
    text-align: center;
    word-break: break-all;
}

.product-image {
    position: relative;
    padding-bottom: 70%;
    margin-top: 15px;
    margin-bottom: 5px;
}

.product-image img {
    position: absolute;
    max-width: 75%;
    max-height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translatey(-50%) translatex(-50%);
    -ms-transform: translatey(-50%) translatex(-50%);
    transform: translatey(-50%) translatex(-50%);
}

.product-contents-image {
    display: block;
    max-width: 100%;
    margin: auto;
    width: 250px;
}

.product:after {
    display: block;
    font: normal normal normal 14px/1 FontAwesome;
    text-align: center;
    font-size: inherit;
    text-rendering: auto;
    content: "\f078";
    color: #02355E;
    font-size: 1.5rem;
}

.product-gridder .gridder-list {
    padding-top: 1.5rem;
    position: relative;
    cursor: pointer;
}

.product-gridder .gridder-list.selectedItem:after {
    background-color: #02355E;
}

.product-gridder .gridder-list:after {
    position: absolute;
    content: " ";
    height: 5px;
    background-color: transparent;
    display: block;
    width: calc(100% - 30px);
    left: 15px;
    z-index: 100;
}

.product-gridder .gridder-expanded-content {
    color: #02355E;
    background-color: #fff;
    padding: 1.5rem;
}

.product-gridder:after {
    content: " ";
    clear: both;
    display: block;
    height: 0;
}

.footer-top {
    background-color: #02355E;
    color: #fff;
    text-align: center;
    padding: 0.75rem 0;
    font-size: 0.9rem;
}

.footer-top .container > a {
    display: inline-block;
    margin: 0.25rem;
    color: inherit;
    position: relative;
}

.footer-top .container > a:hover, .footer-top .container > a:focus {
    color: inherit;
}

.footer {
    background-color: #EBEBEB;
    color: #777777;
    font-size: 0.9rem;
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links-title {
    font-size: 1.25rem;
    text-transform: uppercase;
    color: #02355E;
    margin-bottom: 1rem;
}

.footer-links > li {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.footer-links > li + li {
    border-top: 1px solid #fff;
}

.language-select-dropdown {
    margin: 0.25rem;
    position: relative;
    display: inline-block;
}

.language-select-dropdown > a {
    color: inherit;
    position: relative;
}

.language-select-dropdown > a:hover, .language-select-dropdown > a:focus {
    color: inherit;
}

.language-select-dropdown .dropdown-item img {
    border: 1px solid #ccc;
    padding: 2px;
    border-radius: 2px;
    display: inline-block;
    width: 25px;
    margin-right: 5px;
}
