@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Open+Sans:wght@400;700&display=swap');

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.2/font/bootstrap-icons.min.css");

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    background-color: #fff;
}

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
    padding-right: 30px;
    padding-left: 30px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    color: #000;
    font-weight: 700;
    margin: 1rem 0;
    letter-spacing: 1px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
    color: #539632;
}

    a:hover {
        text-decoration: none;
        color: #000;
    }

    a:visited {
        color: #539632;
    }

        a:visited:hover {
            color: #000;
        }

.Normal {
    line-height: 1.7em;
    font-size: 16px;
    color: #404040;
}

.bi {
    font-size: 1.5rem;
    margin: 0 5px;
    vertical-align: middle;
}

.green-line {
    height: 1px;
    background: #539632;
    width: 20%;
    margin: 15px auto;
}

.green-line-left {
    height: 1px;
    background: #539632;
    width: 50px;
    margin: 15px 5px;
}

.green-line-full {
    height: 1px;
    background: #539632;
    width: 90%;
    margin: 15px auto;
}

.grey-line {
    height: 1px;
    background-color: #eee;
    width: 90%;
    margin: 2% auto;
}

/*------------------------------------------------*/
/* ANIMATIONS */
/*------------------------------------------------*/

/* slide in from left or right */

@keyframes slideInLeft {
    0% {
        transform: translateX(-80%);
        opacity: 0.2;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(80%);
        opacity: 0.2;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-in-left,
.slide-in-right {
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
    animation-iteration-count: 1;
}

.slide-in-left {
    animation-name: slideInLeft;
}

.slide-in-right {
    animation-name: slideInRight;
}

@keyframes zoomin {
    0% {
        background-size: 100%;
    }

    100% {
        background-size: 120%;
    }
}

/* fade in */

.fade-in {
    opacity: 0;
    transform: translateY(20vh);
    visibility: hidden;
    transition: opacity 1s ease-out, transform 1.2s ease-out;
    will-change: opacity, visibility;
}

    .fade-in.is-visible {
        opacity: 1;
        transform: none;
        visibility: visible;
    }

/*------------------------------------------------*/
/* HEADER */
/*------------------------------------------------*/

#TopBanner {
    background-color: #101010;
    position: relative;
    z-index: 500;
    height: 40px;
}

#TopBanner p {
    margin-top: 5px;
    margin-bottom: 0;
    font-size: 12px;
    color: #fff;
}

#TopBanner p a {
    color: #fff;
}

#TopBanner p a:hover {
    color: #539362;
}

#TopBanner p a:visited {
    color: #fff;
}

#TopBanner p a:visited:hover {
    color: #539362;
}

#TopBanner .bi {
    font-size: 16px;
    vertical-align: middle;
}

/*------------------------------------------------*/
/* NAVBAR */
/*------------------------------------------------*/

.navbar {
    margin-bottom: 0 !important;
    border-radius: 0 !important;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    letter-spacing: 1px;
    border-bottom: 1px solid #e5e5e5;
    padding: 1% 3%;
    height: 130px;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    background-color: #fff;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

#dnn_dnnLOGO_imgLogo {
    max-width: 180px;
    width: 100%;
}

.navbar-brand {
    padding: 0 !important;
}

a.btn-info, a.btn-info:visited, a.btn-primary, a.btn-primary:visited {
    color: #fff;
}

.px-lg-4 {
    padding: 0 .5rem !important;
}

.nav-link {
    color: #000 !important;
    font-size: 16px;
    border-bottom: 1px solid rgba(0,0,0,0);
}

.nav-link:hover {
    color: #000 !important;
    border-bottom: 1px solid rgba(0,0,0,1);
}

.nav-link:visited {
    color: #000 !important;
    border-bottom: 1px solid rgba(0,0,0,0);
}

.nav-link:visited:hover {
    color: #000 !important;
    border-bottom: 1px solid rgba(0,0,0,1);
}

.active .nav-link {
    color: #000 !important;
    border-bottom: 1px solid rgba(0,0,0,1);
}

.navbar-toggler {
    margin: 2%;
}

.dropdown-menu {
    padding: 0;
    border: none;
    border-radius: 2px;
    background-color: #fff;
    min-width: 13rem;
    border: 1px solid #808080;
}

.dropdown-menu .px-lg-4 {
    padding: .5rem !important;
}

.dropdown-menu .nav-link {
    color: #404040 !important;
    font-size: 16px;
    border-bottom: 1px solid rgba(0,0,0,0);
}

.dropdown-menu .nav-link:hover {
    color: #000 !important;
    border-bottom: 1px solid rgba(0,0,0,0);
}

.dropdown-menu .nav-link:visited {
    color: #404040 !important;
    border-bottom: 1px solid rgba(0,0,0,0);
}

.dropdown-menu .nav-link:visited:hover {
    color: #000 !important;
    border-bottom: 1px solid rgba(0,0,0,0);
}

.dropdown-menu .active .nav-link {
    color: #000 !important;
    border-bottom: 1px solid rgba(0,0,0,0);
}

/*------------------------------------------------*/
/* HERO */
/*------------------------------------------------*/

#videoBG {
    object-fit: cover;
    width: 100%;
    height: 100vh;
}

.hero-bg {
    object-fit: cover;
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
    margin-top: -180px;
    top: 0;
    left: 0;
    margin-top: 0;
}

.Page-Home .hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/Portals/134/AdobeStock_293414330-2000.jpg');
    background-size: 120%;
    background-position: center;
    -webkit-animation: zoomin 20s ease-in 1;
    animation: zoomin 20s ease-in 1;
    height: 60vh;
}

/* about us */

.Id2860 .hero-bg,
.Id2861 .hero-bg,
.Id2862 .hero-bg,
.Id2866 .hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5)), url('/Portals/134/samantha-deleo-v4oVgg5Vp5k-unsplash.jpg');
    background-size: 120%;
    background-position: center;
    -webkit-animation: zoomin 20s ease-in 1;
    animation: zoomin 20s ease-in 1;
}

.hero-text {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

#dnn_HeroText {
    padding-left: 5px;
    padding-right: 5px;
}

.hero-text p,
.hero-text h1,
.hero-text h2,
.hero-text h3,
.hero-text h4,
.hero-text h5,
.hero-text h6 {
    margin: .5em;
    color: #fff !important;
}

    .hero-text h1 {
        font-size: 5.5rem;
    }

    .Page-Home .hero-text h1 {
        font-size: 4rem;
    }

/*------------------------------------------------*/
/* MAIN CONTENT */
/*------------------------------------------------*/

#MainContent {
    padding-top: 30px;
    padding-bottom: 30px;
}

#MainContent ul li {
    list-style-type: disc !important;
}

.PageType_Normal #HomeContentUpper,
.PageType_Normal #HomeContentSecond,
.PageType_Normal #HomeContentThird,
.PageType_Normal #HomeContentBottom {
    display: none;
}

/* home */
.Page-Home #MainContent {
    padding-top: 0;
    padding-bottom: 0;
}

#HomeContentUpper {
    background-color: #f5f5f5;
    padding-top: 30px;
    padding-bottom: 30px;
}

#HomeContentSecond {
    background-image: url('/Portals/134/AdobeStock_334390455-2-inverted.jpg');
    background-size: cover;
    background-position: center;
    padding-top: 30px;
    padding-bottom: 30px;
}

#HomeContentThird {
    padding-left: 0;
    padding-right: 0;
}

#HomeContentOneFull,
#HomeContentOne,
#HomeContentTwoFull,
#HomeContentTwoSplit {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

#dnn_ThreeFarLeft {
    background-color: #a5a5a5;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#dnn_ThreeMidLeft,
#dnn_ThreeMidRight,
#dnn_ThreeFarRight {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#dnn_ThreeFarLeft h1,
#dnn_ThreeFarLeft h2,
#dnn_ThreeFarLeft h3,
#dnn_ThreeFarLeft h4,
#dnn_ThreeFarLeft h5,
#dnn_ThreeFarLeft h6,
#dnn_ThreeFarLeft p {
    color: #fff !important;
}

#dnn_ThreeFarLeft h2 {
    font-size: 3.25rem;
    line-height: 150%;
    font-weight: 400;
}

#dnn_ThreeMidLeft img,
#dnn_ThreeMidRight img,
#dnn_ThreeFarRight img {
    padding-top: 20px;
    padding-bottom: 20px;
}

#HomeContentBottom {
    background-color: #000;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/Portals/134/stefan-lehner-8uOZU0kSCaU-unsplash-2000-2.jpg');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom;
    background-attachment: fixed;
    padding-top: 100px;
    padding-bottom: 100px;
}

#HomeContentBottom h1,
#HomeContentBottom h2,
#HomeContentBottom h3,
#HomeContentBottom h4,
#HomeContentBottom h5,
#HomeContentBottom h6,
#HomeContentBottom p {
    color: #fff !important;
}

#HomeContentBottom h2 {
    font-size: 3rem;
}

/* home page buttons */

.zoom-button {
    cursor: pointer;
    width: 100%;
    overflow: hidden;
    position: relative;
    text-align: center;
}

    .zoom-button img {
        width: 100%;
        transition: transform .5s ease;
    }

    .zoom-button:hover img {
        transform: scale(1.3);
    }

.text-overlay {
    background-color: #fff;
    z-index: 1020;
    position: relative;
    width: 90%;
    margin: -40px auto 40px;
    padding: 10px;
}

.text-overlay a {
    color: #606060 !important;
    text-decoration: none;
}

.text-overlay a:hover {
    color: #000 !important;
    text-decoration: none;
}

.text-overlay a:visited {
    color: #606060 !important;
    text-decoration: none;
}

.text-overlay a:visited:hover {
    color: #000 !important;
    text-decoration: none;
}

.logos img {
    margin: 10px;
}

.green-button {
    display: inline-block;
    margin: 10px 0;
    padding: 10px 30px;
    background-color: #337414;
    color: #fff !important;
    font-weight: 400;
    text-transform: uppercase;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.green-button:hover {
    color: #fff !important;
    background-color: #539632;
    text-decoration: none;
}

.white-button {
    display: inline-block;
    margin: 10px 0;
    padding: 10px 30px;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff !important;
    font-weight: 400;
    text-transform: uppercase;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.white-button:hover {
    color: #000 !important;
    background-color: #fff;
    text-decoration: none;
}

.anchor {
    display: block;
    height: 150px;
    margin-top: -150px;
    visibility: hidden;
}

/*------------------------------------------------*/
/* FOOTER */
/*------------------------------------------------*/

footer {
    background-color: #101010;
    padding: 2% 3% !important;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), url('/Portals/134/AdobeStock_371560352-2.png');
    background-size: cover;
    background-position: center;
}

footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6 {
    color: #fff;
    font-weight: 400;
    color: #AADD92;
}

#Footer p {
    color: #fff !important;
    margin-top: 1rem;
}

#FooterContent p {
    color: #e5e5e5 !important;
}

#Footer p a {
    color: #AADD92;
    text-decoration: none;
}

#Footer p a:hover {
    color: #fff;
}

#Footer p a:visited {
    color: #AADD92;
}

#Footer p a:visited:hover {
    color: #fff;
}

#Footer .bi {
    vertical-align: top;
    font-size: 1.25em;
}

/*------------------------------------------------*/
/* MEDIA QUERIES */
/*------------------------------------------------*/

@media screen and (max-width: 992px) {
    .navbar {
        padding: 1%;
        height: auto;
        background-color: rgba(255,255,255,1);
    }

    #dnn_dnnLOGO_imgLogo {
        max-width: 150px;
    }

    .navbar-dark .navbar-toggler {
        margin: 0;
        color: rgba(255,255,255,1) !important;
        border: none;
    }

    .nav-link {
        text-align: center;
        border-bottom: none;
    }

    .nav-link:hover {
        border-bottom: none;
    }

    .nav-link:visited:hover {
        border-bottom: none;
    }

    .active .nav-link {
        border-bottom: none;
    }

    .px-lg-4 {
        padding: 0 !important;
    }

    .dropdown-menu .px-lg-4 {
        padding: 0 !important;
    }

    .dropdown-menu {
        border: none;
        background-color: #f0f0f0;
    }

    .hero-bg {
        height: 400px;
        margin-top: 0px;
    }

    .Page-Home .hero-bg {
        height: 400px;
        background-size: cover;
        -webkit-animation: none;
        animation: none;
    }

    .Id2860 .hero-bg,
    .Id2861 .hero-bg,
    .Id2862 .hero-bg,
    .Id2866 .hero-bg {
        height: 300px;
        background-size: cover;
        -webkit-animation: none;
        animation: none;
    }

    .hero-text {
        padding: 0;
        top: 50%;
    }

    .hero-text h1 {
        font-size: 3rem;
        margin: 0 !important;
    }

    .Page-Home .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text h2 {
        font-size: 1.75rem;
    }

    .hero-text h3 {
        font-size: 1.25rem;
    }

    #HomeContentBottom {
        background-attachment: scroll;
        background-position: bottom;
        background-size: cover;
    }
}

@media screen and (max-width: 767px) {
    #TopBanner p {
        font-size: 12px;
    }

    #TopBanner .bi {
        font-size: 14px;
    }
}
