@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
    --green: #296036;
    --darkgreen: #073511;
    --lightgreen: #649970;
    --darkgrey: #303030;
    --lightgrey: #e5e5e5;
    --white: #fff;
    --black: #000;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    color: var(--black);
    font-weight: 400;
    margin-top: .5rem;
    margin-bottom: 1.5rem;
}

.Normal {
    font-size: 16px;
    line-height: 1.5;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    color: var(--black);
}

p {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--green);
    text-decoration: none;
    -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;
}

a:hover {
    text-decoration: none;
    color: var(--black);
}

a:visited {
    color: var(--green);
}

a:visited:hover {
    text-decoration: none;
    color: var(--black);
}

.bi {
    font-size: 1.4em;
    padding: 0 10px;
}

/*------------------------------------------------*/
/* NAVBAR */
/*------------------------------------------------*/

.navbar {
    padding: 0;
    letter-spacing: 1px;
}

.bg-dark {
    background-color: var(--black) !important;
    padding-top: 5px;
    padding-bottom: 5px;
}

#dnn_dnnLOGO_imgLogo {
    max-height: 80px;
    margin-left: 20px;
    margin-right: 5px;
}

.nav-item {
    text-align: center;
}

.nav-link {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--lightgreen) !important;
    display: inline-block;
    text-decoration: none;
    line-height: 20px;
    -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;
}

.nav-link:hover {
    text-decoration: none;
    color: var(--white) !important;
}

.nav-link:visited {
    color: var(--lightgreen);
}

.nav-link:visited:hover {
    text-decoration: none;
    color: var(--white) !important;
}

.dropdown-menu {
    background-color: var(--black);
    border-color: var(--darkgrey);
    margin: 0;
    min-width: 10rem;
    border-radius: 0;
}

.dropdown-menu .nav-link {
    line-height: initial;
}

.dropdown-menu .nav-link:hover {

}

.dropdown-menu .nav-link:visited {

}

.dropdown-menu .nav-link:visited:hover {

}

.dropdown-menu .active {
    border-radius: 0px;
}

/*------------------------------------------------*/
/* HERO */
/*------------------------------------------------*/

.hero-bg {
    object-fit: cover;
    width: 100%;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
}

.hero-bg {
    background-size: cover;
    background-position: center;
    height: 500px;
}

.PageType_Home .hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('/Portals/162/AdobeStock_55504592-2000.jpg');
    height: 100vh;
}

.PageType_Normal .hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('/Portals/162/AdobeStock_55504592-2000.jpg');
}

.hero-text {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.hero-text h1,
.hero-text h2,
.hero-text h3,
.hero-text h4,
.hero-text h5,
.hero-text h6 {
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: .5rem;
    text-shadow: 2px 2px 2px rgba(0,0,0,.5)
}

.hero-text h1 {
    font-size: 4.75rem;
    font-weight: 600;
}

.header-logo {
    max-width: 200px;
    width: 100%;
}

/*------------------------------------------------*/
/* MAIN CONTENT */
/*------------------------------------------------*/

#MainContent {
    padding-bottom: 3rem;
    padding-top: 3rem;
}

.slider {
    width: 100%;
    margin: 0;
    padding: 0;
}

.slider p {
    margin-top: 0;
    margin-bottom: 0;
}

#MainContent li {
    list-style-type: disc;
}

.image-border {
    border-radius: 10px;
}

.black {
    background-color: var(--black);
    padding: 1rem .25rem;
}

.black p,
.black li,
.black h1,
.black h2,
.black h3,
.black h4,
.black h5,
.black h6 {
    color: var(--white);
}

.black li,
.black p {
    font-size: .85rem;
}

.lightgreen {
    background-color: var(--lightgreen);
    padding: 1rem .25rem;
}

.lightgreen li,
.lightgreen p {
    font-size: .85rem;
}

.green-button {
    display: inline-block;
    margin: 10px 0;
    padding: 10px 30px;
    background-color: var(--green);
    color: var(--white) !important;
    text-shadow: none;
    -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 {
    background-color: var(--lightgreen);
    color: var(--white) !important;
    text-decoration: none;
}

.white-button {
    display: inline-block;
    margin: 10px 0;
    padding: 10px 30px;
    background-color: transparent;
    color: var(--white) !important;
    border: 2px solid var(--white);
    text-shadow: none;
    -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 {
    background-color: var(--white);
    color: var(--black) !important;
    text-decoration: none;
}

.black-button {
    display: inline-block;
    margin: 10px 0;
    padding: 10px 30px;
    background-color: transparent;
    color: var(--black) !important;
    border: 2px solid var(--black);
    text-shadow: none;
    -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;
}

.black-button:hover {
    background-color: var(--black);
    color: var(--white) !important;
    text-decoration: none;
}

/* home */

.PageType_Home #MainContentBottom {
    background-color: var(--black);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.PageType_Home #MainContentBottom p,
.PageType_Home #MainContentBottom h1,
.PageType_Home #MainContentBottom h2,
.PageType_Home #MainContentBottom h3,
.PageType_Home #MainContentBottom h4,
.PageType_Home #MainContentBottom h5,
.PageType_Home #MainContentBottom h6,
.PageType_Home #MainContentBottom li {
    color: var(--white);
}

/* 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 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
}

.text-overlay h2 {
    text-shadow: 2px 2px 4px rgba(0,0,0,.5);
    color: #fff;
    text-transform: uppercase;
}

.text-overlay a {
    color: #fff !important;
    text-decoration: none;
}

/* pricing */

.Id3518 #MainContentBottom {
    background-color: var(--lightgrey);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.Id3518 #dnn_FullWidthBottom {
    padding-left: 0;
    padding-right: 0;
}


/*------------------------------------------------*/
/* FOOTER */
/*------------------------------------------------*/

footer {
    background-color: var(--lightgrey);
    padding-top: 2%;
    padding-bottom: 2%;
}

footer p {
    font-size: 14px;
}

/*------------------------------------------------*/
/* MEDIA QUERIES */
/*------------------------------------------------*/

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1400px
    }
}

@media screen and (min-width: 996px) {

    .dropdown-menu {
        border-radius: 0;
    }

    .text-overlay h2 {
        font-size: 4rem;
    }
}

@media screen and (max-width: 997px) {

    #dnn_dnnLOGO_imgLogo {
        max-height: 70px;
        margin-left: 20px;
        margin-right: 5px;
    }

    .navbar-toggler {
        margin: 10px;
    }

    .nav-item {
        margin: 0;
        text-align: center;
    }

    .header-logo {
        max-width: 150px;
    }
}

@media screen and (max-width: 768px) {

    .hero-bg {
        background-size: cover;
        background-position: center;
        height: 400px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }
}
