
::selection {
    background-color: #88b31c;
    color: #ffffff;
}

.bg-white {
    background-color: #ffffff;
}

.bg-gray {
    background-color: #f2f3f4;
}

.txt-white {
    color: #ffffff;
}

html {
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #000000;
    -webkit-font-smoothing: antialiased; /* Font rendering in Chrome on Mac */
    -moz-osx-font-smoothing: grayscale; /* Font rendering in Firefox on Mac */
}

img {
    max-width: 100%;
}

article img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

a,
a:link,
a:active {
    color: #88b31c;
    text-decoration: none;
}

    a:hover {
        text-decoration: none;
        color: #88b31c;
    }

ul {
    padding-left: 1.25rem;
}

li {
    color: #000000;
    font-size: 1rem;
}

td {
    font-size: 1rem;
}

button,
input,
[type="button"] {
    -webkit-appearance: none;
}

/* 
–––––––––––––––––––––––––––––––––––––––––––––––––
TEXT AND TYPOGRAPHY
–––––––––––––––––––––––––––––––––––––––––––––––––
*/

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    font-weight: normal;
}

h1 {
    font-family: 'Brandon Grotesque W01 Bold', sans-serif;
    font-size: 1.75rem;
    margin-bottom: .5rem;
    text-transform: uppercase;
    line-height: 1.2;
}

h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    margin-bottom: .5rem;
    text-transform: none;
    color: #000000;
    line-height: 1.4;
}

h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 1.125rem;
    margin-bottom: .5rem;
    text-transform: none;
    color: #5e6266;
    line-height: 1.4;
}

h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.125rem;
    margin-bottom: .25rem;
    color: #626A71;
    line-height: 1.4;
}

h5 {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    margin-bottom: .25rem;
    line-height: 1.4;
}

h6 {
    font-family: 'Roboto', sans-serif;
    font-size: .875rem;
    margin-bottom: .25rem;
    line-height: 1.4;
}

h3 + h4 {
    margin-top: .75em;
}

p {
    font-weight: 400;
    line-height: 1.6;
}

img + p, video + p {
    margin-top: 1rem;
}

p + h2, p + h3, p + h4,
ul + h2, ul + h3, ul + h4 {
    margin-top: 1.5em;
}

p.ingress {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
}

/* Breakpoints Text and typography
––––––––––––––––––––––––––––––––– */

@media (min-width: 576px) {
    h1, h2, h3, h4, h5, h6 {
        -webkit-hyphens: manual;
        -ms-hyphens: manual;
        hyphens: manual; /*hyphen only at &hyphen; or &shy; (if needed)*/
    }
}

@media (min-width: 992px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    h4 {
        font-size: 1.125rem;
    }

    p.ingress {
        font-size: 1.25rem;
    }
}

@media screen and (min-width: 1700px) {
    p.ingress {
        font-size: 1.375rem;
    }

    p, li {
        font-size: 1.125rem;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.375rem;
    }
}

/* ______ Spacing utilites X _______ */

.padding-x-row {
    padding-left: 15px;
    padding-right: 15px;
    transition: .5s;
}

@media (min-width: 768px) {
    .padding-x-row {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1200px) {
    .padding-x-row {
        padding-left: 8vw;
        padding-right: 8vw;
    }
}

/* _______ Spacing utilites y ________ */
.padding-y-row {
    padding-top: 2rem;
    padding-bottom: 2rem;
    transition: .5s;
}

@media (min-width: 960px) {
    .padding-y-row {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
}

@media (min-width: 1200px) {
    .padding-y-row {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}
/* ______ End spacing utilities _______ */

/* ______ Scroll-to _______ */

.scroll-to {
    display: block;
    position: relative;
    top: -80px;
    visibility: hidden;
}

@media screen and (min-width: 992px) {
    .scroll-to {
        top: -143px;
    }
}

/* ______ END Scroll-to _______ */

/* __________ Buttons _________ */

.theme-btn,
a.theme-btn {
    display: inline-block;
    padding: .75rem 2.5rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    line-height: 1;
    border-radius: 2rem;
    background-color: #88b31c;
    border: 1px solid #88b31c;
    transition: 0.25s;
    cursor: default;
}

    .theme-btn:hover,
    a.theme-btn:hover {
        background-color: #88b31c;
        color: #ffffff;
        opacity: 0.8;
    }

.feature-caption .theme-btn:hover,
.feature-caption a.theme-btn:hover {
    border: 1px solid #fff;
}

.theme-btn.btn-lg,
a.theme-btn.btn-lg {
    padding: 1rem 2rem;
    min-width: 200px;
}

@media screen and (min-width: 768px) {
    .theme-btn,
    a.theme-btn {
        padding: 1rem 3.5rem;
    }
}

/* __________ End buttons _________ */

/* ________ Focus items _________  */

.focus-item {
    flex-basis: 100%;
    flex-grow: 0;
    flex-shrink: 0;
    margin-bottom: 15px;
    margin-right: 15px;
}

    .focus-item > a > div,
    .focus-item > div {
        position: relative;
        background-color: #ffffff;
        transition: 0.5s;
        overflow: hidden;
        padding-bottom: 74%;
    }

    .focus-item img {
        position: relative;
        background-color: #fff;
        transition: 0.5s;
        overflow: hidden;
        padding-bottom: 60%;
    }

    .focus-item .item-img {
        position: absolute;
        top: -1px;
        left: 0;
        bottom: 0;
        right: 0;
        overflow: hidden;
        width: 100%;
        background-size: cover;
        background-position: center;
    }

    .focus-item a:hover {
        box-shadow: none;
        cursor: pointer;
    }

        .focus-item a:hover .item-body h3 {
            color: #fff;
        }

        .focus-item a:hover .item-img img {
        }

    .focus-item .item-img::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        transition: 0.3s;
        background-image: linear-gradient(to top, rgba(0,0,0,0.4) 0, rgba(0,0,0,0) 50%);
    }

    .focus-item a:hover .item-img::after {
        background-color: rgba(255, 255, 255,0.4);
    }

    .focus-item .item-body {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        padding: 1.5rem;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
    }

        .focus-item .item-body h3 {
            font-family: 'Brandon Grotesque W01 Black', sans-serif;
            font-size: 1.375rem;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 0;
        }

        .focus-item .item-body p {
            font-size: 1.125rem;
            color: #fff;
            margin-top: 0.25rem;
            margin-bottom: 0;
            line-height: 1.4;
        }


/* Focus items FW */

.focus-items-fw {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
}

@media screen and (min-width: 600px) {
    .focus-items-fw .focus-item {
        flex-basis: calc(50% - 0.5rem);
        margin-bottom: 1rem;
    }

    .focus-items-fw > .focus-item:nth-child(2n+2) {
        margin-right: 0;
    }
}

@media screen and (min-width: 900px) {
    .focus-items-fw .focus-item {
        flex-basis: calc(33.33% - 10px);
    }

    .focus-items-fw > .focus-item:nth-child(2n+2) {
        margin-right: 15px;
    }

    .focus-items-fw > .focus-item:nth-child(3n+3) {
        margin-right: 0;
    }
}

@media screen and (min-width: 992px) {
    .focus-items-fw .focus-item {
        flex-basis: calc(33.33% - 10px);
    }

        .focus-items-fw .focus-item:nth-child(2n+2) {
            margin-right: 15px;
        }

        .focus-items-fw .focus-item:nth-child(3n+3) {
            margin-right: 0;
        }
}

/* Focus items COL-8 */

.focus-items-8 {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
}

@media screen and (min-width: 600px) {
    .focus-items-8 .focus-item {
        flex-basis: calc(50% - 1rem);
        margin-bottom: 1rem;
    }
}


/* Quote box */

.quote-item > div {
    background-color: #88B31C;
    padding: 1.5rem;
    justify-content: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.quote-item p.quote {
    font-family: 'Brandon Grotesque W01 Regular', sans-serif;
    color: #FFFFFF;
    font-size: 1.125rem;
    line-height: 1.4;
}

.quote-item p.quote-name {
    color: #FFFFFF;
    line-height: 1.2;
}

.quote-item svg {
    font-size: 60px;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    color: rgba(255,255,255,0.3);
}

@media screen and (min-width: 1200px) {

    .quote-item > div {
        padding: 2rem;
    }

    .quote-item p.quote-name {
        font-size: 1.125rem;
    }

    .quote-item p.quote {
        font-size: 1.375rem;
    }

    .quote-item svg {
        font-size: 120px;
    }
}

/* Article links */

.article-links h2 {
    color: #000000;
    margin: 3.5rem 0 2rem;
}

    .article-links h2:first-child {
        margin-top: 0;
    }

/* Plants categories */

@media screen and (min-width: 992px) {

    .plants-categories.focus-items > div {
        flex-basis: calc(50% - 0.5rem);
    }
}

/* ________ END Focus section _________  */



/* __________ Breadcrumb _________ */

.sticky-bread {
    position: sticky;
    top: 80px;
    z-index: 99;
}

.breadcrumb {
    background-color: #f2f3f4;
    padding-top: 1.125rem;
    border-radius: 0;
}

.breadcrumb-item {
    font-size: .75rem;
    font-weight: 500;
    text-transform: uppercase;
}

    .breadcrumb-item a {
        color: #6F7071;
        transition: 0.2s;
    }

        .breadcrumb-item a:hover {
            color: #000000;
        }

.breadcrumb .active {
    color: #00682E;
}

@media screen and (min-width: 992px) {
    .sticky-bread {
        top: 143px;
    }
}

/* _____  HEADER AND NAVBAR _____ */

#site-header {
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.10), 0 3px 1px -2px rgba(0,0,0,0.08), 0 1px 5px 0 rgba(0,0,0,0.2);
    padding-top: 1rem;
    background-color: #f2f3f4;
}

@media screen and (min-width: 992px) {
    #site-header {
        padding-top: 2.5rem;
        background-color: #f2f3f4;
    }
}

/* ____________  Navbar ____________ */

.navbar {
    padding: 1rem 0;
    background-color: #ffffff;
    position: initial;
}

.navbar-expand-lg .navbar-collapse {
    flex-direction: column;
    align-items: flex-end;
}

.navbar-brand {
    padding: 1rem 0;
    height: 32px;
}

    .navbar-brand img {
        width: 70px;
        height: auto;
        position: absolute;
        top: 2px;
        z-index: 11;
    }

@media (min-width: 992px) {

    .navbar {
        padding: 0;
    }

    .navbar-brand img {
        width: 116px;
        top: 16px;
    }
}

/* Toggle button */

.navbar .navbar-toggler {
    width: 32px;
    height: 24px;
    position: relative;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
    padding: 0;
    outline: none !important;
    box-shadow: none !important;
    border: none;
    z-index: 11;
}

.navbar-toggler span {
    display: block;
    position: absolute;
    height: 2px;
    width: 32px;
    background: #000;
    opacity: 1;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

    .navbar-toggler span:nth-child(1) {
        top: 0;
        transform-origin: right center;
    }

    .navbar-toggler span:nth-child(2) {
        top: 12px;
    }

    .navbar-toggler span:nth-child(3) {
        top: 24px;
        transform-origin: right center;
    }

.navbar-toggler:not(.collapsed) span:nth-child(1) {
    transform: rotate(-45deg);
    top: 0px;
    right: 0;
    background-color: #000;
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
    transform: rotate(45deg);
    top: 23px;
    right: 0;
    background-color: #000;
}


/* Mobile menu */


#mobileMenu {
    margin-top: 80px;
    width: 100%;
    overflow-x: hidden;
    z-index: 10;
    background-color: #ffffff;
    padding: 0;
    box-shadow: none;
    background-color: #ffffff;
    height: calc(100% - 80px);
    overflow-y: scroll;
    border-top: 1px solid #B2B3B4;
}

.mobile-menu-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    border-bottom: 1px solid #B2B3B4;
    z-index: 10;
}

#secondary-menu .dropdown-toggle::after {
    display: none;
}

#main-nav-mobile .nav-link {
    color: #3B454E;
    text-transform: uppercase;
    font-family: 'Brandon Grotesque W01 Bold', sans-serif;
    font-size: 1rem;
    font-weight: normal;
    border-top: 1px solid #B2B3B4;
    padding: 0.875rem;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
}

#secondary-menu-mobile .nav-link {
    padding: 0.875rem;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
}


#main-nav-mobile .nav-item:first-child .nav-link {
    border-top: none;
}

span.nav-link {
    cursor: default;
}

#main-nav-mobile .nav-link svg {
    color: #88b31c;
}

#main-nav-mobile .back-button,
#secondary-menu-mobile .offcanvas-submenu-collapse .back-button {
    font-family: 'Brandon Grotesque W01 Regular', sans-serif;
    justify-content: flex-start;
}

    #main-nav-mobile .back-button svg,
    #secondary-menu-mobile .offcanvas-submenu-collapse .back-button svg {
        margin-right: 4px;
    }

#main-nav-mobile .submenu .nav-link.submenu-title,
#secondary-mobile-menu .submenu .nav-link.submenu-title {
    background-color: #f2f3f4;
    border-top: 1px solid #B2B3B4;
    border-bottom: 1px solid #B2B3B4;
}

#secondary-menu-mobile .nav-link {
    color: #7a7a7a;
    text-transform: uppercase;
    font-family: 'Brandon Grotesque W01 Bold', sans-serif;
    font-weight: normal;
    border-top: 1px solid #B2B3B4;
    padding: 0.875rem;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    #secondary-menu-mobile .nav-link svg {
        color: #88b31c;
    }


#secondary-menu-mobile .offcanvas-submenu-collapse .nav-link {
    color: #000000;
}


#secondary-menu-mobile .nav-item:last-child .nav-link {
    border-bottom: 1px solid #B2B3B4;
}

.offcanvas-collapse {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    overflow-y: auto;
    transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

    .offcanvas-collapse.open {
        -webkit-transform: translateX(-15px);
        transform: translateX(-15px);
    }

#mobileMenu .offcanvas-submenu-collapse {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    overflow-y: auto;
    transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    z-index: 10;
    background-color: #ffffff;
    padding: 0;
}

    #mobileMenu .offcanvas-submenu-collapse.open {
        -webkit-transform: translateX(-15px);
        transform: translateX(0);
    }

#mobileMenu .submenu {
    list-style: none;
    padding-left: 0;
}

#mobileMenu .submenu-submenu {
    list-style: none;
    padding-left: 0;
}

#main-nav-mobile .submenu-submenu .nav-item .nav-link {
    border-top: 1px solid #B2B3B4;
}

#main-nav-mobile .submenu-submenu .nav-item:first-child .nav-link {
    border-top: none;
}

#mobileMenu .submenu-submenu .nav-item:first-child .nav-link,
#secondary-mobile-menu .submenu-submenu .nav-item:first-child .nav-link {
    border-top: none;
}

#mobileMenu .submenu-submenu > .nav-item:last-child {
    border-bottom: 1px solid #B2B3B4;
}

#mobileMenu .submenu .submenu .nav-item:last-child .nav-link {
    border-bottom: none;
}

#mobileMenu .submenu-item .nav-link {
    padding-left: 1.5rem;
}

#mobileMenu .submenu-submenu .submenu .nav-link {
    font-family: 'Roboto', sans-serif;
    text-transform: none;
    border-top: none;
    padding-left: 3rem;
    padding: 0.5rem 1.5rem;
}

#mobileMenu .submenu-submenu .submenu .nav-item:first-child .nav-link {
    padding-top: 0;
}

#mobileMenu .submenu-submenu .submenu .nav-item:last-child .nav-link {
    padding-bottom: 1rem;
}

#mobileMenu .submenu-submenu .submenu .nav-item:last-child .nav-link {
    border-bottom: none;
}

@media (min-width: 768px) {

    .offcanvas-collapse.open {
        transform: translateX(-2rem);
    }
}

@media (min-width: 992px) {

    #mobileMenu {
        display: none !important;
    }
}

/* Desktop menu */

#main-nav .dropdown-toggle::after {
    display: none;
}

#main-nav .nav-link {
    color: #3B454E;
    text-transform: uppercase;
    font-family: 'Brandon Grotesque W01 Bold', sans-serif;
    font-size: 1rem;
    font-weight: normal;
}

#main-nav .nav-item:last-child .nav-link,
#secondary-menu .nav-link:last-child {
    padding-right: 0;
}

#secondary-menu li.nav-item:hover .dropdown-menu {
    display: block;
}

#secondary-menu .nav-link {
    color: #7a7a7a;
    text-transform: uppercase;
    font-family: 'Brandon Grotesque W01 Medium', sans-serif;
    font-weight: normal;
}

#secondary-menu > .nav-item > .nav-link {
    padding-right: 0;
}


#secondary-menu .dropdown-menu {
    background-color: #ffffff;
    border: none;
    border-radius: 0;
    min-width: 200px;
    border-top: 1px solid #dddfe1;
    box-shadow: -1px 1px 3px rgba(0,0,0,0.1);
    margin: 0;
    padding: 0;
}

    #secondary-menu .dropdown-menu .nav-link {
        text-align: left;
        white-space: nowrap;
        border-bottom: 1px solid #dddfe1;
        font-family: 'Brandon Grotesque W01 Regular', sans-serif;
        text-transform: none;
    }

#desktopMenu {
    display: none;
}

#main-nav .dropdown-menu {
    border: none;
    border-radius: 0;
    background-color: #f2f3f4;
    border: none;
    border-radius: 0;
    top: calc(100% - 2px);
    min-width: 330px;
    border-top: 1px solid #dddfe1;
    box-shadow: -1px 1px 3px rgba(0,0,0,0.1);
}

    #main-nav .dropdown-menu .nav-link {
        font-family: 'Brandon Grotesque W01 Bold', sans-serif;
        text-align: left;
        white-space: nowrap;
        border-bottom: 1px solid #dddfe1;
    }

@media (min-width: 992px) {
    #desktopMenu {
        display: flex;
        overflow-y: inherit;
        height: auto !important;
        align-items: flex-end;
    }

    #main-nav .megadrop .nav-link {
        padding: 1rem 0;
    }

    #secondary-menu .nav-link {
        font-size: .875rem;
    }

    #main-nav .nav-link,
    #secondary-menu .nav-link {
        padding-right: .75rem;
        padding-left: .75rem;
    }
}

/* Mega menu */

#main-nav li.mega {
    position: initial;
}

#main-nav .mega > .dropdown-menu {
    width: 100vw;
    z-index: 5;
    background-color: #f2f3f4;
}

    #main-nav .mega > .dropdown-menu > .nav-item > .nav-link {
        padding-top: 0;
    }

#main-nav li.nav-item:hover .dropdown-menu {
    display: block;
}

#main-nav li.mega.nav-item:hover .dropdown-menu {
    display: flex;
    flex-wrap: wrap;
}

#main-nav .mega > .dropdown-menu > .dropdown {
    flex-basis: calc(25% - 1rem);
    margin-right: 1.33rem;
    flex-grow: 0;
    flex-shrink: 0;
    border-bottom: 1px solid #dddfe1;
}

#main-nav .mega .dropdown-menu .dropdown:nth-child(4n+4) {
    margin-right: 0;
}

#main-nav .mega-submenu {
    list-style: none;
    margin-bottom: 0;
    padding: 0;
}

#main-nav .mega .dropdown-menu .nav-link {
    padding: 0.5rem 0;
}

#main-nav .mega-submenu .nav-link {
    font-family: 'Roboto', sans-serif;
    text-transform: none;
}

#main-nav .mega-submenu .nav-item:last-child .nav-link {
    border-bottom: none;
}

.see-all a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: none;
}

/* Plants menu */

.menu-plants {
    background-image: url(/media/yrdhu2w1/flowers-bg.png);
    background-size: 240px auto;
    background-repeat: no-repeat;
    background-position: bottom 1rem right 1rem;
}

/* Gardeners menu */

.menu-gardeners {
    background-image: url(/media/jbje0ekc/gardeners-bg.png);
    background-size: 240px auto;
    background-repeat: no-repeat;
    background-position: bottom 1rem right 1rem;
}

/* ____________ End Navbar ____________ */

/* ____________ End Navbar ____________ */



/* ________ Hero image _________  */

.feature-block {
    height: calc(100vh - 80px);
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
}

    .feature-block svg.fa-chevron-down {
        color: rgba(255,255,255,0.8);
        position: absolute;
        bottom: 4rem;
        font-size: 40px;
        right: calc(50% - 20px);
    }

        .feature-block svg.fa-chevron-down:hover {
            color: rgba(255,255,255,1)
        }

.feature-caption {
    padding: 1rem;
}

    .feature-caption h1 {
        font-family: 'Brandon Grotesque W01 Black', sans-serif;
        color: #ffffff;
        text-shadow: 0 0 5px rgba(0,0,0,0.3),0 0 15px rgba(0,0,0,0.3);
    }

@media screen and (min-width: 800px) {
    .feature-caption {
        width: 750px;
        padding: 0;
    }
}

@media screen and (min-width: 992px) {
    .feature-block {
        height: calc(100vh - 144px);
    }

    .feature-caption h1 {
        font-size: 2.75rem;
    }
}

@media screen and (min-width: 1200px) {

    .feature-caption {
        width: 800px;
    }

        .feature-caption h1 {
            font-size: 3rem;
        }

    .feature-block svg.fa-chevron-down {
        font-size: 50px;
    }
}

@media screen and (min-width: 1700px) {

    .feature-caption {
        width: 960px;
    }

        .feature-caption h1 {
            font-size: 3.5rem;
        }

    .feature-block svg.fa-chevron-down {
        font-size: 60px;
    }
}


/* ________ END Hero image _________  */


.focus-section h2,
.section-header h2 {
    font-family: 'Brandon Grotesque W01 Bold', sans-serif;
    text-transform: uppercase;
    color: #5f6266;
}


/* ________ Instagram _________  */

.ig-start,
.ig-subpage {
    margin: -.5rem;
}

.insta-follow-text {
    color: #6F7071;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}


/* ________ END Instagram _________  */



/* ________ News list _________  */

.news-list-item {
    position: relative;
    display: block;
    padding: 1.5rem 0;
    border: none;
    border-top: 1px solid #B2B3B4;
}

a.news-list-item {
    color: #3B454E;
}

.news-list-item h3 {
    font-size: 1.125rem;
    font-family: 'Brandon Grotesque W01 Bold', sans-serif;
    text-transform: uppercase;
    color: #5f6266;
    font-weight: normal;
    margin-top: 0.25rem;
}

.read-more {
    text-transform: uppercase;
    color: #88B31C;
    display: inline-block;
    font-weight: 500;
    font-size: 0.875rem;
}

.news-list-item .news-date {
    margin-bottom: 0;
    font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
    .news-list-item h3 {
        font-size: 1.25rem;
    }
}

/* Paginator */

a.page-link {
    height: 40px;
    width: 40px;
    background-color: #f2f3f4;
    color: #5e6266;
    margin: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
}

    a.page-link:hover {
        background-color: #f2f3f4;
        color: #5e6266;
    }

    a.page-link:focus {
        outline: none;
        box-shadow: none;
    }

a.page-arrow {
    background-color: transparent;
}

.active a.page-link {
    background-color: #88b31c;
    color: #ffffff;
    font-weight: 500;
}

/* ________ END News list _________  */
/*Publications*/

.publication-item {
    background-color: #FFFFFF;
    margin-bottom: 1.5rem;
    position: relative;
}

    .publication-item figure {
        margin: 0;
        overflow: hidden;
        position: relative;
        background-color: #ebf0f0;
        /*padding-bottom: 141%;*/
    }

        .publication-item figure img {
            /*position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;*/
            height: 100%;
            width: 100%;
            object-fit: cover;
        }

    .publication-item .publication-body {
        padding: 0;
    }

        .publication-item .publication-body h3 {
            margin-top: .75rem;
            margin-bottom: 0.5rem;
            font-size: 1.25rem;
        }

        .publication-item .publication-body p {
            margin-top: 0;
            margin-bottom: 0;
            border: none;
            font-size: 1rem;
            line-height: 1.2;
        }

.access-container {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    margin-bottom: .5rem;
    border-bottom: 1px solid #5F6266;
    margin-bottom: 4rem;
    padding-bottom: .5rem
}

    .access-container a {
        font-weight: 800;
    }


@media screen and (min-width: 768px) {


    .publication-item {

    }

        .publication-item .publication-body {
            padding: 0;
            min-height: 6.5rem;
        }
}

@media screen and (min-width: 992px) {

    .publication-item {
        margin-bottom: 1rem;
        margin-left: 2rem;
    }


        .publication-item .publication-body {
            padding: 0;
            min-height: 8rem;
        }
}

@media screen and (min-width: 1200px) {
    .publication-item .publication-body {
        padding: 0;
        min-height: 7rem;
    }
}

@media screen and (min-width: 1700px) {
    .publication-item .publication-body {
        padding: 0;
        min-height: 6.5rem;
    }
}

/* ________ Logos _________  */

#start-logos > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#start-logos .logo-box {
    flex-basis: auto;
    flex-shrink: 0;
    flex-grow: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}


    #start-logos .logo-box img {
        height: 90px;
        width: auto;
        filter: grayscale(100%);
        transition: 0.2s;
    }

        #start-logos .logo-box img:hover {
            filter: grayscale(0);
        }

@media screen and (min-width: 1700px) {
    #start-logos .logo-box {
        padding: 1.5rem;
    }

        #start-logos .logo-box img {
            height: 130px;
        }
}


/* ________ END Logos _________  */


/* ________ Contact boxes _________  */

/* Gardener */

#contact-box {
    background-color: #88b31d;
}

    #contact-box > .container > div {
        flex-direction: column;
    }

    #contact-box .contact-image {
        flex-basis: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

        #contact-box .contact-image img {
            border-radius: 50%;
            width: 240px;
            height: 240px;
            object-fit: cover;
        }

@media screen and (min-width: 1700px) {

    #contact-box .contact-image img {
        width: 300px;
        height: 300px;
    }
}

#contact-box .contact-text {
    flex-basis: 100%;
    display: flex;
    flex-direction: column;
}

#contact-box h3 {
    font-family: 'Brandon Grotesque W01 Bold', sans-serif;
    font-weight: normal;
    text-transform: uppercase;
}

.contact-text svg {
    margin-right: 0.25rem;
}

.contact-text h3,
.contact-text p,
.contact-text a,
.contact-text li {
    color: #ffffff;
}


#contact-box .contact-text > * {
    color: #ffffff;
}

.contact-text ul {
    list-style: none;
    padding-left: 0;
}

#contact-box .single-person .contact-text > * {
    text-align: left;
}

#contact-box .two-person > div:first-child {
    margin-bottom: 2rem;
}

@media screen and (min-width: 768px) {

    #contact-box > .container > div {
        flex-direction: row;
    }


    #contact-box .contact-image {
        flex-basis: 300px;
        flex-grow: 0;
        flex-shrink: 0;
    }


    #contact-box .contact-text {
        flex-basis: calc(50% - 1rem);
        flex-grow: 0;
        flex-shrink: 0;
    }


    #contact-box .single-person .contact-text {
        flex-basis: auto;
        flex-grow: 1;
        margin-left: 3.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

        #contact-box .single-person .contact-text > * {
            text-align: left;
        }

    #contact-box .two-person > div:first-child {
        margin-bottom: 0;
    }
}

@media screen and (min-width: 992px) {

    #contact-box .single-person .contact-text {
        margin-left: 4.5rem;
    }
}


@media screen and (min-width: 992px) {

    #contact-box .two-person {
        max-width: 950px;
        margin: 0 auto;
    }
}

/*
Contact card –––––––––––––––––––––– */

#contact-cards {
    background-color: #f2f3f4;
}

.contact-card {
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.18);
    margin-bottom: 1.75rem;
    padding: 1rem;
}

    .contact-card img {
        width: 100%;
        min-height: 120px;
        max-height: 260px;
        object-fit: cover;
    }

    .contact-card svg {
        color: #31733d;
        margin-right: .5rem;
    }

    .contact-card p:first-child {
        margin-top: 0;
    }

    .contact-card h3 {
        font-size: 1.125rem;
    }

    .contact-card ul {
        list-style-type: none;
        margin: 0.5rem 0;
        padding: 0;
    }

    .contact-card li {
        line-height: 1.2rem;
        margin: .125rem 0;
    }

        .contact-card li a,
        .contact-card li {
            color: #3B454E;
        }

            .contact-card li a:hover {
                color: #88b31c;
            }

/* _________ END Contact Card _________ */

/* Plants */


#contact-box-plants {
    background-color: #88b31d;
    flex-direction: column;
}


    #contact-box-plants .contact-text:first-child {
        margin-bottom: 1.5rem;
    }

    #contact-box-plants h3 {
        margin-bottom: 1rem;
    }

@media screen and (min-width: 768px) {

    #contact-box-plants {
        flex-direction: row;
        justify-content: space-between;
    }

        #contact-box-plants .contact-text {
            flex-basis: calc(50% - 1rem);
        }

            #contact-box-plants .contact-text:first-child {
                margin-bottom: 0;
            }
}

@media screen and (min-width: 1200px) {

    #contact-box-plants .contact-text {
        flex-basis: calc(50% - 3rem);
    }
}


/* ________ END Contact boxes _________  */

/* ________ Gardeners main page _________  */

.gardeners-intro {
}

/* ________ Gardener presentation page _________  */

.gardener-preamble {
    background-color: #88B31C;
}

    .gardener-preamble .ingress p {
        color: #FFFFFF;
        margin: 0;
    }


@media screen and (min-width: 1700px) {
    .gardener-preamble .ingress p {
        font-size: 1.75rem;
        line-height: 1.4;
    }
}

.certificates > div {
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
    margin: 0 0.5rem;
}

.certificates img {
    height: 120px;
    display: block;
    margin: 0 auto;
}


.image-carousel {
    background-color: #dadcde;
}

.carousel-item {
    background-size: cover;
    background-postition: center;
}


    .carousel-item::after {
        content: "";
        display: block;
        padding-bottom: 100%;
    }


a.carousel-control {
    color: rgba(255,255,255,0.8);
    width: 10%;
}

    a.carousel-control:hover {
        color: #ffffff;
    }

.carousel-control svg {
    font-size: 1.5rem;
}


.carousel-indicators {
    bottom: -50px;
}


    .carousel-indicators li {
        height: 16px;
        width: 16px;
        margin: 0 0.5rem;
        border-radius: 50%;
        border: 1px solid #444444;
    }

#imageCarousel .carousel-caption {
    margin-bottom: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    left: 0;
    right: 0;
    color: #ffffff;
    padding: 0.5rem 1rem;
    text-align: left;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.5;
    height: 40px;
}


@media screen and (min-width: 992px) {
    #imageCarousel {
        max-width: 400px;
        margin: 0 auto;
    }

    .carousel-control svg {
        font-size: 2.5rem;
    }
}

@media screen and (min-width: 1700px) {
    #imageCarousel {
        max-width: 600px;
        margin: 0 auto;
    }

        #imageCarousel .carousel-caption {
            height: 45px;
        }


    .carousel-control svg {
        font-size: 3rem;
    }
}



.side-box {
    display: flex;
    flex-direction: column;
    width: 300px;
    margin: 0 auto;
}

.side-box-image a {
    display: block;
    margin: 2rem auto;
    width: 80%;
}

.side-box-image {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-box-caption {
    flex-grow: 0;
    width: 100%;
    background-color: #88B31C;
    padding: 1rem;
}

    .side-box-caption p {
        color: #ffffff;
        text-transform: uppercase;
        font-size: 0.875rem;
        margin: 0;
    }

    .side-box-caption a {
        color: #ffffff;
    }

    .side-box-caption svg.svg-inline--fa {
        margin-right: 0.5rem;
        width: 20px;
        display: inline-flex;
        justify-content: center;
        font-size: 13px;
    }

@media screen and (min-width: 400px) {
    .side-box {
        max-width: 350px;
        margin: 0 auto;
    }
}

@media screen and (min-width: 768px) {
    .side-box {
        max-width: none;
    }
}

/* ________ Alternating text sections _________  */


.text-section {
    display: flex;
    flex-direction: column;
}

  .text-section > div {
        flex-basis: 100%;
    }

    .text-section .text-section-image {
        min-height: 60vw;
        background-size: cover;
        background-position: center;
    }

    .text-section.square-section .text-section-image {
        min-height: 100vw;
        background-size: cover;
        background-position: center;
    }

    .text-section .text-section-quote {
        background-color: #88B31C;
    }

.text-section-quote {
    position: relative;
}



.text-section .text-section-quote p.quote {
    font-family: 'Brandon Grotesque W01 Regular', sans-serif;
    color: #FFFFFF;
    font-size: 1.25rem;
    line-height: 1.4;
}

.text-section .text-section-quote p small {
    color: #FFFFFF;
    line-height: 1.2;
}

.text-section h2 {
    font-family: 'Brandon Grotesque W01 Bold', sans-serif;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.text-section-small-image > img {
    width: 200px;
}

.text-section .text-section-video {
    background-color: #5e6266;
}

    .text-section .text-section-video .embed-responsive-16by9::before {
        padding-top: 55%;
    }

@media screen and (min-width: 768px) {


    .text-section {
        flex-direction: row;
        min-height: 30vw;
    }
    





        .text-section.square-section {
            min-height: auto;
        }

        .text-section > div {
            flex-basis: 50%;
            flex-grow: 0;
            flex-shrink: 0;
        }

        .text-section.square-section .text-section-image,
        .text-section .text-section-image {
            min-height: auto;
        }

            .text-section.square-section .text-section-image:after {
                display: block;
                content: '';
                padding-bottom: 100%;
            }


        .text-section .text-section-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .text-section:nth-child(even) .text-section-text {
            order: 2;
        }

        .text-section:nth-child(even) .text-section-image {
            order: 1;
        }

        .text-section.text-video-section {
            min-height: 0;
        }

    .text-section-video {
        min-height: 0;
        display: flex;
        align-items: center;
    }
}

@media screen and (min-width: 992px) {
    
 


    .text-section-small-image > img {
        width: 300px;
    }
}

@media screen and (min-width: 1700px) {

    .text-section h2 {
        font-size: 1.875rem;
    }

    .text-section .text-section-text p {
        font-size: 1.25rem;
    }

    .text-section .text-section-quote p.quote {
        font-size: 1.75rem;
    }

    .text-section-small-image > img {
        width: 400px;
    }
}


.text-section-quote svg {
    font-size: 5rem;
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    color: rgba(255,255,255,0.3);
    right: 15px;
    bottom: 2rem;
}

.text-section-quote .quote-name {
    padding-bottom: 1rem;
}

@media (min-width: 768px) {
    .text-section-quote svg {
        right: 2rem;
    }
}

@media (min-width: 960px) {
    .text-section-quote svg {
        bottom: 4rem;
    }

    .text-section-quote .quote-name {
        padding-bottom: 1.25rem;
    }
}

@media (min-width: 1200px) {
    .text-section-quote svg {
        font-size: 7rem;
        right: 8vw;
        bottom: 5rem;
    }

    .text-section-quote .quote-name {
        padding-bottom: 3rem;
    }
}

@media (min-width: 1700px) {
    .text-section-quote svg {
        font-size: 160px;
        right: 8vw;
        bottom: 5rem;
    }

    .text-section-quote .quote-name {
        padding-bottom: 4.5rem;
    }
}


/* ________ END Alternating text sections _________  */




/* ________ Subpage _________  */


#sidebar {
    display: none;
}

@media screen and (min-width: 992px) {

    #sidebar {
        display: block;
    }
}

#sidebar h3 {
    margin: 0.375rem 0 1rem;
    font-family: 'Brandon Grotesque W01 Bold', sans-serif;
    text-transform: uppercase;
}

#sidebar a.nav-link {
    padding: 0.75rem 0;
}

#sidebar .nav .nav {
    margin: 0 0 0.25rem 1rem;
    display: none;
}

#sidebar .nav .active .nav {
    display: flex;
}

#sidebar .nav-link {
    color: #000000;
    font-size: .875rem;
    line-height: 1.1;
    text-transform: uppercase;
}

#sidebar .selected > .nav-link {
    color: #88b31c;
}

#sidebar .nav .nav a.nav-link {
    font-size: .875rem;
    border-top: none;
    padding: .5rem 0;
    text-transform: none;
}


#sidebar .nav-link:hover {
    color: #88b31c !important;
}

@media screen and (min-width: 576px) {
    #sidebar .nav-link {
        font-size: 1rem;
    }
}

@media screen and (min-width: 1700px) {
    #sidebar h3 {
        font-size: 1.5rem;
    }
}

#header-img {
    background-size: cover;
    background-position: center;
}

    #header-img .header-overlay {
        height: 100%;
        width: 100%;
        height: 34vw;
        min-height: 220px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        position: relative;
        background-image: linear-gradient(to top, rgba(0,0,0,0.4) 0, rgba(0,0,0,0) 50%);
    }


    #header-img h1 {
        color: #ffffff;
        font-family: 'Brandon Grotesque W01 Black', sans-serif;
    }

    #header-img p {
        color: #ffffff;
    }

    #header-img .header-caption {
        max-width: 100%;
    }

@media screen and (min-width: 576px) {

    #header-img p {
        font-size: 1.125rem;
    }
}

@media screen and (min-width: 768px) {

    #header-img .header-overlay {
        background-image: linear-gradient(to top, rgba(0,0,0,0.4) 0, rgba(0,0,0,0) 50%);
    }

    #header-img p {
        font-size: 1.25rem;
    }
}

@media screen and (min-width: 992px) {

    #header-img p {
        font-size: 1.25rem;
    }
}

@media screen and (min-width: 1200px) {

    #header-img .header-caption {
        width: 70%;
    }
}

@media screen and (min-width: 1700px) {

    #header-img h1 {
        font-size: 3.25rem;
    }

    #header-img p {
        font-size: 1.75rem;
    }
}

#subpage .col-lg-4 {
    order: 2;
}

#subpage .col-lg-8 {
    order: 1;
}

@media screen and (min-width: 992px) {

    #subpage .col-lg-4 {
        order: 1;
    }

    #subpage .col-lg-8 {
        order: 2;
    }
}

/* --- Footer --- */

#footer {
    background-color: #dadcde;
    color: #000;
    margin-bottom: 0;
    position: relative;
}

    #footer .col-lg-3 {
        margin-bottom: 1.25rem;
    }

    #footer .sm-icons img {
        margin-right: 1rem;
        margin-bottom: 1rem;
        width: 67px;
        height: auto;
        max-width: calc(33.33% - 3rem);
    }

    #footer h3 {
        margin-bottom: .75em;
        font-size: 1.25rem;
        text-transform: uppercase;
        color: #5e6266;
        font-family: 'Brandon Grotesque W01 Bold', sans-serif;
        font-weight: normal;
    }

    #footer ul + h3 {
        margin-top: 2rem;
    }

    #footer p {
        color: #5e6266;
    }

    #footer a {
        color: #5e6266;
        transition: 0.2s;
    }

    #footer ul {
        padding-left: 0;
    }

    #footer li {
        list-style: none;
        color: #5e6266;
    }

    #footer form {
        margin-top: 1.5rem;
        width: 100%;
        max-width: 380px;
    }

@media screen and (min-width: 992px) {
    #footer .col-lg-3 {
        margin-bottom: 0;
    }
}

/* --- End footer --- */

/* --- Prenumerationsformulär --- */

#subscribe-form .i-cannot-be-spotted {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

#subscribe-form input[type="text"] {
    width: 100%;
    border: none;
    padding: 0.5rem;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    border: 1px solid #ffffff;
    box-sizing: border-box;
}

    #subscribe-form input[type="text"]:active,
    #subscribe-form input[type="text"]:focus,
    #subscribe-form input[type="text"]:focus-visible {
        outline: none;
        border: 1px solid #999999;
    }

#subscribe-form label {
    display: block;
    text-transform: uppercase;
    margin: 1rem 0 0;
    color: #5e6266;
    font-size: 0.875rem;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

#subscribe-form input[type="submit"] {
    display: inline-block;
    padding: .75rem 2.5rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    line-height: 1;
    border-radius: 2rem;
    background-color: #88b31c;
    border: 1px solid #88b31c;
    transition: 0.25s;
    cursor: pointer;
    transition: 0.2s;
    float: right;
    margin-top: 1.5rem;
}

    #subscribe-form input[type="submit"]:hover {
        background-color: #88b31c;
        color: #ffffff;
        opacity: 0.8;
    }

#subscribe-form .d-none {
    display: none;
}

@media screen and (min-width: 768px) {

    #subscribe-form input[type="submit"] {
        padding: 1rem 3.5rem;
    }
}

/* --- END Prenumerationsformulär --- */


.grid-block p.caption {
    position: absolute;
    bottom: 0;
    padding: 0.5rem 1rem;
    font-weight: 500;
    width: 100%;
    background-color: rgba(255,255,255,0.85);
    color: #000000;
}

.umbraco-forms-form select {
    max-width: 400px !important;
    padding: 5px;
    display: block;
    width: 95%;
}

.umbraco-forms-field label.umbraco-forms-label {
    font-weight: 500;
}

.umbraco-forms-field-wrapper input[type=checkbox] {
    -webkit-appearance: checkbox;
    appearance: checkbox;
}

/* --- IE bug fix --- */

@media all and (-ms-high-contrast: none) {

    #contact-box .contact-image img {
        height: auto;
    }
}
