﻿.page-body {
    background-color:#f7f7f7;
}

.blog-body {
    background-color: #fff;
    padding: 1rem;
    border-top: 0.375rem solid var(--grass);
    border-bottom: 0.25rem solid var(--slate);
}

.main-section {
    background-color: #fff;
    padding: 1.5rem 1rem;
}

.block-section {
    padding: 1.875rem 0rem;
}

.two-column-grid {
    grid-template-columns: repeat(2,1fr);
    column-gap: 2rem;
    row-gap: 2rem;
}

.color-stripe {
    padding: 2.5rem;
    background-color:#fff;
}

.color-stripe-light {
    background-color: var(--bg-accent);
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.color-stripe-light + .color-stripe-light {
    border-top: none;
}

.color-stripe-dark {
    background-color: var(--text-accent);
    color: #fff;
}

.color-stripe .row {
    border-left: 3px solid var(--border-accent);
    padding: 8px 16px;
}

.color-stripe-dark .row {
    border-color: rgba(255,255,255,0.5);
}

.color-stripe-light .row {
    border-color: var(--border-accent);
}

.color-stripe-light h1, .color-stripe-light h2, .color-stripe-light h3,
.color-stripe-light h4, .color-stripe-light h5, .color-stripe-light h6 {
    color: var(--midnight);
}

.accent-green {
    --text-accent: var(--green-text);
    --border-accent: var(--green-text);
    --bg-accent: var(--grass-200);
}
.accent-grass {
    --text-accent: var(--green-text);
    --border-accent: var(--grass);
    --bg-accent: var(--grass-200);
}
.accent-meadow {
    --text-accent: var(--green-text);
    --border-accent: var(--meadow);
    --bg-accent: var(--meadow-200);
}
.accent-slate {
    --text-accent: var(--slate-700);
    --border-accent: var(--slate-700);
    --bg-accent: var(--slate-200);
}
.accent-freshwater {
    --text-accent: var(--freshwater);
    --border-accent: var(--freshwater);
    --bg-accent: var(--freshwater-200);
}

.card-content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    background: #FFF;
    height: 100%;
    padding:1.25rem 0rem;
}

.cards-count-2 figure:first-of-type {
    order: 1;
}

.cards-count-2 figure:last-of-type {
    order: 3;
}

.cards-count-2 .card-outer:first-of-type {
    order: 2;
}

.cards-count-2 .card-outer:last-of-type {
    order: 4;
}

.cards-count-3 figure:first-of-type {
    order:2;
}
.cards-count-3 figure:last-of-type {
    order:4;
}
.cards-count-3 .card-outer:first-of-type {
    order:1;
}
.cards-count-3 .card-outer:nth-of-type(2) {
    order: 3;
}
.cards-count-3 .card-outer:last-of-type {
    order: 5;
}

.cards-count-4 figure:first-of-type,
.cards-count-5 figure:first-of-type,
.cards-count-6 figure:first-of-type {
    order: 2;
}
.cards-count-4 figure:last-of-type,
.cards-count-5 figure:last-of-type,
.cards-count-6 figure:last-of-type {
    order: 4;
}
.cards-count-4 .card-outer,
.cards-count-5 .card-outer,
.cards-count-6 .card-outer {
    order: 5;
}
.cards-count-4 .card-outer:first-of-type,
.cards-count-5 .card-outer:first-of-type,
.cards-count-6 .card-outer:first-of-type {
    order: 1;
}
.cards-count-4 .card-outer:nth-of-type(2),
.cards-count-5 .card-outer:nth-of-type(2),
.cards-count-6 .card-outer:nth-of-type(2) {
    order: 3;
}

@media(min-width:992px) {
    /*.d-grid, .d-lg-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
        grid-column-gap: 3.75rem;
        grid-row-gap: 1rem;
    }

    .grid-lg {
        grid-row-start:1;
        grid-column-start:1;
        grid-column-end: span 1;
        grid-row-end: span 1;
    }

    .grid-row-lg-span-2 {
        grid-row-end: span 2;
    }

    .grid-col-lg-start-2 {
        grid-column-start: 2;
    }

    .grid-row-lg-start-2 {
        grid-row-start: 2;
    }

    .d-lg-grid .col-lg-6.row-lg-1 {
        grid-area: 1 / 2 / 3 / 3;
    }*/

    .cards-wrapper figure {
        margin-bottom: -3rem;
    }
        
    .card-outer {
        z-index: 2;
    }
    .card-content {
        padding: 1.25rem 1.5rem;
        box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
    }
    .cards-count-3 figure:first-of-type {
        padding-left: 2.5rem;
    }

    .cards-count-3 figure:last-of-type {
        padding-right: 2.5rem;
    }

    .cards-count-2 .card-outer {
        padding: 0rem 2.5rem;
    }

    .cards-count-2 figure:first-of-type,
    .cards-count-3 figure:first-of-type,
    .cards-count-4 figure:first-of-type,
    .cards-count-5 figure:first-of-type,
    .cards-count-6 figure:first-of-type {
        order: 1;
    }
    .cards-count-2 figure:last-of-type,
    .cards-count-3 figure:last-of-type,
    .cards-count-4 figure:last-of-type,
    .cards-count-5 figure:last-of-type,
    .cards-count-6 figure:last-of-type {
        order: 2;
    }
    .cards-count-2 .card-outer:first-of-type,
    .cards-count-3 .card-outer:first-of-type,
    .cards-count-4 .card-outer:first-of-type,
    .cards-count-5 .card-outer:first-of-type,
    .cards-count-6 .card-outer:first-of-type {
        order: 3;
    }

    .cards-count-2 .card-outer:last-of-type,
    .cards-count-3 .card-outer:nth-of-type(2),
    .cards-count-4 .card-outer:nth-of-type(3),
    .cards-count-5 .card-outer:nth-of-type(4),
    .cards-count-6 .card-outer:nth-of-type(5) {
        order: 4;
    }

    .cards-count-3 .card-outer:last-of-type {
        order: 5;
    }

    .cards-count-4 .card-outer,
    .cards-count-5 .card-outer,
    .cards-count-6 .card-outer {
        order: 5;
    }
}

figcaption {
    color: var(--slate);
    border-bottom: 1px solid var(--slate-200);
    padding-bottom: 0.5rem;
}

.caption-dark figcaption {
    border: none;
}

.caption-dark {
    position:relative;
}

    .caption-dark figcaption {
        position: absolute;
        bottom: 0rem;
        width: 100%;
        background: rgba(35, 35, 47, 0.75);
        backdrop-filter: blur(4px);
        color: #fff;
        padding:0.5rem 1rem;
    }

    @media (min-width:992px){
        figcaption {
            text-align: center;
            border-bottom: none;
            padding-bottom: 0rem;
        }
        .caption-dark figcaption {
            bottom: 3.75rem;
        }
    }

.blog-info {
    font-weight: 600;
    color: var(--slate);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 0rem 0.75rem;
}

.sidebar-widget {
    display:flex;
    flex-direction:column;
    flex-wrap: wrap;
    align-items:start;
    padding:1.25rem 0rem;
    row-gap:0.75rem;
}

.sidebar hr {
    background-color: var(--slate-300);
    margin: 0.25rem 0rem 0rem;
}

.sidebar form {
    border: 1px solid var(--slate-300);
    background-color: transparent;
    transition: all ease 0.3s;
}

.sidebar form input, .sidebar form button {
    background-color: transparent;
    border-radius: 0rem;
    box-shadow: none;
    transition: all ease 0.3s;
}

.sidebar form input {
    font-size: 0.9375rem;
    line-height: 1.375rem;
    border: none;
}

.sidebar button.search-icon {
    display: flex;
    align-items: center;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    border:none;
}

.sidebar button.search-icon svg path {
    fill:var(--freshwater);
    transition: all ease 0.3s;
}

.sidebar button.search-icon:hover svg path {
    fill: var(--deep-sea);
}

.sidebar form.focus {
    background-color: #fff;
    border-color: var(--freshwater);
}

.sidebar form.focus input, .sidebar form.focus button,
.sidebar form input:focus, .sidebar form button:focus {
    box-shadow: none;
}

.sidebar ul li {
    display:flex;
}

.sidebar ul li:before {
    display: flex;
    width: 0.875rem;
    height: 1.625rem;
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 0L6 3L3 6L0 3L3 0Z' fill='%23435363' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center left;
}

.resource-listings {
    display: flex;
    flex-direction: column;
    row-gap: 2.25rem;
}

.resource-card {
    display: flex;
    align-items: stretch;
    background-color: #fff;
    min-height: 120px;
    text-decoration: none;
    transition: box-shadow 0.2s ease;
}

.resource-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.resource-card-img {
    width: 240px;
    min-width: 240px;
    flex-shrink: 0;
    overflow: hidden;
}

.resource-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom left;
    display: block;
}

.resource-card-img .fallresourcestyle {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #006631;
    border: 3px solid #006631;
}

.resource-card-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    padding: 20px;
    flex: 1;
    min-width: 0;
}

.resource-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    color: #67717e;
}

.resource-card-diamond {
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: #caced2;
    transform: rotate(45deg);
    flex-shrink: 0;
}

.resource-card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    color: #1b75b0;
    margin: 0;
}

.resource-card-excerpt {
    font-family: 'Montserrat', sans-serif;
    font-weight: 450;
    font-size: 16px;
    line-height: 26px;
    color: #435363;
    margin: 0;
}

@media (max-width: 768px) {
    .resource-card {
        flex-direction: column;
    }

    .resource-card-img {
        width: 100%;
        min-width: unset;
        height: 200px;
    }
}

.figure-wrap, .figure-wrap figure, .figure-wrap figure .image-wrap,
figure .image-wrap, .figure-inner {
    height: 100%;
/*    width: 100%;*/
}

.figure-inner {
    position:relative;
}

figure {
    display:flex;
    flex-direction:column;
    row-gap:0.5rem;
}

.image-wrap {
    display:flex;
}

.image-wrap img {
    width:100%;
    height:100%;
    object-fit:cover;
}

@media(min-width:768px){
    .blog-body {
        padding: 1.25rem;
        border-top-width: 0.5rem;
        border-bottom-width: 0.25rem;
    }
    .sidebar {
        padding-left: 2rem;
        padding-right: 0rem;
    }
    .block-section {
        padding: 3rem 0rem;
    }
}

@media(min-width:992px){
    .blog-body {
        padding: 1.875rem;
        border-top-width: 0.75rem;
        border-bottom-width: 0.375rem;
    }

    .block-section {
        padding:3.75rem 0rem;
    }
}

.homebanner {
    position: relative;
    height: 800px;
    background-size: cover;
}

.commonbanner {
    position: relative;
    height: 500px;
    background-size: cover;
}

.commonheaderWrap h1 {
    color: #fff;
    font-size: 64px;
    line-height: 1;
}

.bannerGraphic {
    position: relative;
    top: 50%;
    width: 40%;
}

.bannerGraphicgenericpage {
    position: relative;
    top: 13%;
    width: 40%;
    right: 1%;
}

.bannerGraphicothergenericpage {
    position: relative;
    top: 16%;
    width: 40%;
}

@media (min-width: 1200px) {
    .section-lg, .section-xl, .section-xxl {
        padding: 55px 0 !important;
    }
}

.call-to-action {
    background-color: var(--graphite);
    color:#fff;
    padding: 40px 0;
}

.cta-icon {
    width:3rem;
    height:3rem;
}

@media(min-width:768px){
    .cta-icon{
        width:3.5rem;
        height:3.5rem;
    }
}

@media(min-width:992px) {
    .cta-icon {
        width: 4rem;
        height: 4rem;
    }
}

@media(min-width:1200px) {
    .cta-icon {
        width: 4.5rem;
        height: 4.5rem;
    }
}

.arrow-right-faq {
    width: 0px;
    height: 0px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #006631;
    position: absolute;
    margin-left: -19px;
    margin-top: 6px;
}

.accordion-header:before {
    content: none !important;
}

.accordion-block img {
    float: left;
    width: 500px;
    margin-top: -9px;
    position:fixed;
    padding: 10px 20px 10px 10px;
}

.accordion-block h2 {
    font-size: 25px;
    color: #455465;
}

.offer-box-thumbnail .offer-box-inner {
    padding: 20px 15px;
    color: #fff;
    background-color: #006631eb !important;
}

.offer-box-title a:hover, .offer-box-title a:focus {
    color: #455465 !important;
}

.alternatingvideocallout a:hover {
    background-color: #006631 !important;
    border-color: #006631;
}

.alternatingvideocallout a {
    background-color: #006631;
    border-color: #006631;
    height: 43px;
}

.alternatingvideocallout .btn-panel {
    padding: 0;
}

.nav-scale-horizontal .nav-link.active {
    color: #455465 !important;
    font-size: 20px;
}

.nav-scale-horizontal .nav-link {
    font-size: 20px;
    color: #1b75bc !important;
}

.tabheading {
    color: #455465 !important;
    font-weight: 500;
}

    .tabheading p {
        font-weight: 500;
    }

.greenbutton a {
    background-color: #006631;
    border-color: #006631;
    height: 43px;
    min-width: 180px;
}

    .greenbutton a:hover {
        background-color: #006631 !important;
        border-color: #006631;
    }


.business-video-block {   
    padding: 50px 0;
}

.business-video {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    height: 55px !important;
    width: 90px !important;
    text-align: center !important;
    line-height: 90px !important;
    background: #006631 !important;
    color: #fff !important;
    border-radius: 10px !important;
    z-index: 1 !important;
    padding: 20px !important;
    opacity: .9 !important;
}

.btn-history {
    background: #006631 !important;
    border: medium none !important;
/*    border-radius: 5px !important;
*/    color: #fff !important;
    cursor: pointer !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    padding: 8px 20px !important;
    text-align: center !important;
    text-transform: uppercase !important;
    margin-bottom: 20px !important;
}

    .btn-history:hover {
        color: #fff !important;
    }

.business-content p {
    font-size: 18px !important;
    line-height: 29px !important;
    font-weight: 500;
    margin-top: 0;
}

.business-content h2 {
    font-size: 34px !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    color: #455465;
}

.video-Header {
    position: absolute;
    top: 66%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff !important;
    z-index: 1;
    padding: 20px;
    font-size: 20px;
    font-weight: 700;
}

.business-img:before {
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    opacity: 0.3;
    position: absolute;
   /* background: #1b192a;*/
}

#mList {
    margin: auto;
}

   
    #mList A DIV {
        visibility: visible;
        background: rgba(0, 0, 0, .8);
    }

   
    #mList A:hover DIV {
        visibility: hidden;
    }


#mPlayer {
    display: none;
    background: rgba(0, 0, 0, .8);
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 20;
    left: 0;
    top: 0;
}

    
    #mPlayer DIV {
        position: fixed;
        background: #000;
        width: 560px; 
        height: 315px; 
        left: calc(50vw - 280px); 
        top: calc(50vh - 157px); 
    }

.playicon {
    position: absolute;
    left: 40%;
}

.alternate-button {
    padding-bottom: 15px;
}

.alternate-button a {
    text-transform: uppercase;
    /*min-width: 510px;*/
}


@media (min-width: 540px) {
    .alternate-button a {
        min-width: 510px;
    }
}

@media (max-width: 540px) {
    .alternate-button a {
        width: 100%;
    }
}

.testimonal_info {
    padding-bottom: 0;
}

    .testimonal_info h3 {
        font-weight: 600;
        font-size: 42px;
        color: #fff;
    }

    .testimonal_info p {
        font-size: 24px;
        line-height: 40px;
        font-weight: 500;
        margin-top: 0;
    }

.app_testimonial_area {
    background: #455465;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
    position: relative;
    color: #fff
}

.app_testimonial_item p {
    font-size: 22px;
    line-height: 30px;
    font-style: italic;
    margin-top: 0;
}

.app_testimonial_slider {
    max-width: 720px;
    margin: 0 auto
}

.nav_container {
    position: relative;
    z-index: 1
}

    .nav_container .owl-prev, .nav_container .owl-next {
        width: 50px !important;
        height: 50px !important;
        border-radius: 50% !important;
        background-color: #fff !important;
        box-shadow: 0 3px 4px 0 rgba(12, 0, 46, .06) !important;
        font-size: 20px !important;
        color: #222d39 !important;
        border: 0 !important;
        line-height: 50px !important;
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        transition: all .2s linear !important;
        cursor: pointer !important;
        display: none !important;
    }

        .nav_container .owl-prev:hover, .nav_container .owl-next:hover {
            background: #4069eb !important;
            color: #fff !important;
            box-shadow: none !important;
        }

    .nav_container .owl-prev {
        left: 15px !important;
    }

    .nav_container .owl-next {
        right: 15px !important;
    }

    .nav_container .owl-dots {
        text-align: center !important;
        margin-top: 0 !important;
        margin-right: 36px !important;
    }

        .nav_container .owl-dots .owl-dot span {
           
            width: 0 !important;
            height: 0 !important;
            border-top: 15px solid transparent !important;
            border-bottom: 15px solid transparent !important;
            border-left: 15px solid #fff !important;
            margin: 0 15px !important;
            display: block !important;
            transition: all .3s linear !important;
            background: none !important;
            border-radius: inherit !important;
        }

        .nav_container .owl-dots .owl-dot.active span {
            background: 0 0 !important;
            transform: scale(1.0) !important;
            border-left: 15px solid #006631 !important;
        }

        .nav_container .owl-dots .owl-dot:focus {
            outline: none !important;
        }

.app_testimonial_item .author-img {
    width: 120px;
    height: 120px;
    border-radius: 100%;
    overflow: hidden;
    margin: 0 auto 15px
}

    .app_testimonial_item .author-img img {
        width: auto;
        border-radius: 100%;
        max-width: 100%;
        height: 100%;
        border: 1px solid #fff;
    }

.app_testimonial_item .author_info {
    margin-bottom: 35px
}

    .app_testimonial_item .author_info h6 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 5px;
        color: #fff;
    }

    .app_testimonial_item .author_info p {
        color: #fff;
        font-size: 22px;
        margin-bottom: 0;
        font-style: normal;
        margin-top: 0;
    }

@media (max-width: 768px) {
    .testimonal_info {
        padding: 15px;
    }

        .testimonal_info p {
            font-size: 14px;
            line-height: 26px;
            font-weight: 700;
        }

    .app_testimonial_item p {
        font-size: 16px;
    }

    .app_testimonial_item .author_info h6 {
        font-size: 16px;
    }

    .app_testimonial_item .author_info p {
        font-size: 16px;
    }
}

@media screen and ( device-width: 1024px ) {
}

.fullwidth-video {
    padding: 50px 0 !important;
    height: auto;
}

#mListfullWidth {
    margin: auto;
}

   
    #mListfullWidth A DIV {
        visibility: visible;
        background: rgba(0, 0, 0, .8);
    }

   
    #mListfullWidth A:hover DIV {
        visibility: hidden;
    }

.fullwidth-video-header {
    text-align: center;
    color: #fff;
}

    .fullwidth-video-header h2 {
        color: #fff;
    }

.full-width-video-Header {
    position: absolute;
    top: 59%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff !important;
    z-index: 1;
    padding: 20px;
    font-size: 20px;
    font-weight: 700;
}


.fullwidthyoutube-video {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    height: 62px !important;
    width: 108px !important;
    text-align: center !important;
    line-height: 90px !important;
    background: #006631 !important;
    color: #fff !important;
    border-radius: 10px !important;
    z-index: 1 !important;
    padding: 20px !important;
    opacity: .9 !important;
}

.copyListing p {
    margin-top: 0;
}

.list-marked > .list-item::before {
    width: .27em !important;
    height: .27em !important;
}

.list-marked .list-item {
    font-weight: 600 !important;
    font-size: 19px;
}

@media screen and (max-width: 1024px) {
  
    .responsive-iframe {
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
    }
}

.overlaycopy {
    height: 700px;
}

.overlayinnerdiv, .overlayinnerdiv .container, .overlayinnerdiv .row {
    min-height: 700px;
}

    .overlayinnerdiv .header {
        margin-top: 40px;
    }

.centerbutton {
    width: 100%;
    text-align: center;
    padding-top: 20px;
}

    .centerbutton a {
        height: 54px !important;
        min-width: 526px !important;
        font-size: 21px;
    }

@media screen and (max-width: 550px) {
   
    .centerbutton a {
        height: 54px !important;
        min-width: 200px !important;
        font-size: 17px;
    }
}

.copywithList {
   
    padding: 50px 0;
}

.alternate-imageitem {    
    padding: 50px 0 !important;
}

.swiper-container {
    width: 100%;
    height: auto;
}

.dual-slider-wrapper {
    padding: 50px 0;
}

.dual-slider-content h2 {
    font-size: 30px;
}

.dual-slider-wrapper h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 3rem;
    padding: 0 4rem;
    color: #455465;
    padding-left: 161px;
}

.dual-slider-content h2 span {
    font-size: 16px;
    float: right;
    margin-top: 10px
}

.dual-slider-content {
    padding-bottom: 34px;
}

.dualslider-button {
    text-align: center;
}


.dual-slider-image {
    vertical-align: middle;
    border-style: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    max-height: 500px;
}

    .dual-slider-image img {
        max-width: 100%;
        max-height: 100%;
        min-height: 425px;
       
    }

.company-logo {
    margin: 0 auto 40px;
    text-align: center;
}

    .company-logo img {
        max-width: 260px;
        max-height: 80px;
    }

@media (max-width: 768px) {
    .dual-slider-wrapper {
        padding: 20px 0;
    }

    .swiper-wrapper {
        height: auto;
    }

    .swiper-container {
        height: auto;
    }

    .swiper-button-next, .swiper-button-prev {
        top: 50%;
    }

    .dual-slider-wrapper h3 {
        padding: 0 2rem;
        font-size: 22px;
    }

    .dual-slider-content h2 {
        font-size: 20px;
    }

        .dual-slider-content h2 span {
            font-size: 12px;
            float: right;
            margin-top: 5px;
        }

    .swiper-slide {
        background: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        height:300px !important;
    }
    
}


@media screen and (max-width: 992px) {

    .dual-slider-image img {
        min-height: 475px;
    }

    .bottombutton {
        padding-top: 0;
    }

    .swiper-pagination {
        position: relative;
    }

    .dualslider-button {
        padding-bottom: 42px;
    }
}


.app_testimonial_area {
    padding: 50px 0;
}

.banner_area {
    position: relative;
    z-index: 1;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 450px;
}

.banner-fade {
    width: 100%;
    height: 50%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: linear-gradient(to bottom, rgba(39,40,51,0), rgba(39,40,51,0.7));
    mix-blend-mode: multiply;
}

    .banner_area .page-title {
        position: absolute;
        bottom: 2rem;
    }

@media screen and (max-width: 1199px) {
    .banner_area {
        margin:0;      
    }
}
@media screen and (max-width: 1024px) {
    .banner_area {
        height: 315px !important;
      
    }
}


.btn-site-a {
    background-color: #006631 !important;
    border-color: #006631 !important;
}

    .btn-site-a:hover {
        background-color: #006631 !important;
        border-color: #006631 !important;
    }

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1024px) {
    .offer-box-thumbnail-inner {
        height: 100%;
    }

    .offer-box-thumbnail .offer-box-inner {
        min-height: 100%;
    }

    .center {
        position: relative;
        margin-bottom: 22px;
    }

        .center h2 {
            position: absolute;
            padding-top: 100px;
        }
}

@media (min-width: 1024px) {
    .accordion-block h2 {
        margin-top: 0px;
    }

    .rd-navbar-fixed .navbar-logo {
        top: 10px !important;
    }
}

@media (max-width: 768px) {
    .acc-row-header {
        position: relative;
    }

        .acc-row-header .sticky-top {
           
            top: 0px;
        }

    .rd-navbar-fixed .navbar-logo {
        top: 10px !important;
    }
}

.navbar-navigation-root-item .btn-history {
    margin-bottom: 0px !important;
}

.main-div-cta {
    text-shadow:0 0 0.5rem var(--midnight), 0 0 1.5rem var(--midnight);
}

@media (max-width: 768px) {
    .text-center-align {
        text-align: center !important;
    }
}

.sticky-top {
   
    width: 100%;
}

.reso-item-header {
    padding-left: 20px;
    font-size:31px;
}

.blog-list-left, .blog-item-left {
    border-right: none;
}

.blog-item {
    display: inline-block;
    padding-bottom: 15px;
}

.blog-img img {
   
}

.blog-item .blog-img {
    width: 40%;
    float: left;
}

.blog-item .blog-title {
    width: 60%;
    float: right;
    padding: 0 30px 0 15px;
    position: relative;
    height: 100%;
   
    font-weight: 600;
}

.resource-white-paper .blog-item .blog-img {
    width: 20%;
}

    .resource-white-paper .blog-item .blog-img img {
        min-height: 140px;
    }

.resource-white-paper .blog-item .blog-title {
    width: 70%;
}

.blog-item .blog-title a {
    text-align: left;
   
    font-size: 20px;
    letter-spacing: 0px;
    color: #455465;
    opacity: 1;
}

.blog-item .blog-title p {
    text-align: left;
   
    font-size: 20px;
    letter-spacing: 0px;
    color: #455465;
    opacity: 1;
}

.blog-list-right {
    padding: 0 30px 0 15px;
}

/* Legacy pagination (kept for other pages that may still use it) */
.item-pagination {
    padding: 30px 0;
    text-align: center;
    font-size: 20px;
    letter-spacing: 6.25px;
    color: #455465;
}

    .item-pagination ul {
        display: block;
        width: 100%;
        color: #455465;
    }

        .item-pagination ul li {
            list-style: none;
            display: inline;
        }

            .item-pagination ul li a {
                color: #455465;
            }

                .item-pagination ul li a .previous {
                    width: 0px;
                    height: 0px;
                    border-top: 10px solid transparent;
                    border-bottom: 10px solid transparent;
                    border-right: 13px solid #707070;
                    position: absolute;
                    margin-left: -25px;
                    margin-top: 7px;
                }

                .item-pagination ul li a .next {
                    width: 0px;
                    height: 0px;
                    border-bottom: 10px solid transparent;
                    border-top: 10px solid transparent;
                    border-left: 13px solid #707070;
                    position: absolute;
                    margin-left: 10px;
                    margin-top: 7px;
                }

/* New pagination */
.pagination-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.pagination-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 44px;
    text-decoration: none;
    flex-shrink: 0;
}

.pagination-arrow--prev {
    background-color: #068348;
}

.pagination-arrow--next {
    background-color: #068348;
}

.pagination-arrow--disabled {
    pointer-events: none;
}

.pagination-arrow--prev.pagination-arrow--disabled {
    background-color: #e6e8ea;
}

.pagination-arrow--next.pagination-arrow--disabled {
    background-color: #e6e8ea;
}

.pagination-pages {
    display: flex;
    align-items: center;
    height: 44px;
    background-color: #fff;
    padding: 0 8px;
}

.pagination-page {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    color: #068348;
    text-decoration: none;
    border-right: 1px solid #caced2;
}

.pagination-page:last-child {
    border-right: none;
}

.pagination-page:hover {
    color: #068348;
    background-color: #f7f7f8;
}

.pagination-page--current {
    font-weight: 600;
    color: #435363;
    background-color: #e6e8ea;
    pointer-events: none;
}

.pagination-page--current:hover {
    color: #435363;
    background-color: #e6e8ea;
}

.pagination-page--ellipsis {
    color: #a7b0b9;
    background-color: #e6e8ea;
    pointer-events: none;
    border-right: none;
}

.item-details-link {
    height: 66px;
    width: 65px;
    background-color: #006631;
    border-radius: 50%;
    position: absolute;
    
}

    .item-details-link .link-sign-f {
        
        position: absolute;
        width: 0;
        height: 0;
        line-height: 0;
        border: 13px solid #FDFAFA;
        border-bottom-color: #000;
        left: 15px;
        top: 19px;
        border-left-style: solid;
        border-right: none;
        border-top-color: transparent;
        border-bottom-color: transparent;
    }

        .item-details-link .link-sign-f:after {
            content: '';
            position: absolute;
            width: 0;
            height: 0;
            border: 10px solid #006631;
            right: 2px;
            top: -10px;
            border-left-style: solid;
            border-right: none;
            border-top-color: transparent;
            border-bottom-color: transparent;
        }

    .item-details-link .link-sign-s {
       
        position: absolute;
        width: 0;
        height: 0;
        line-height: 0;
        border: 13px solid #FDFAFA;
        border-bottom-color: #000;
        left: 40px;
        top: 19px;
        border-left-style: solid;
        border-right: none;
        border-top-color: transparent;
        border-bottom-color: transparent;
    }

        .item-details-link .link-sign-s:after {
            content: '';
            position: absolute;
            width: 0;
            height: 0;
            border: 10px solid #006631;
            right: 2px;
            top: -10px;
            border-left-style: solid;
            border-right: none;
            border-top-color: transparent;
            border-bottom-color: transparent;
        }

.blog-list-right h3 {
    text-align: center;
    margin: 10px 0;
    color: #455465;
}

.auth-title {
    padding: 15px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.right-auth-heading {
}

.right-auth-details {
    background-color: #6CC04A;
    color: #FFFFFF;
    border: solid 10px #6cc04a;
}

.right-auth-bio {
}

.icon-m {
    color: #43586C;
    margin-right: 8px;
}

.page-header-style h2 {
    color: #455465;
    font-size: 31px;
    font-weight: 700;
}

.page-header {
    margin: 45px 0;
}


.brochure-item {
    margin-bottom: 45px;
}

.brochure-img img {
   
}

.brochure-item .brochure-img {
    width: 50%;
    float: left;
}

.brochure-item .brochure-title {
    width: 50%;
    float: right;
    padding: 0 30px 0 15px;
    position: relative;
   
    height: 100%;
    font-weight: 600;
}

.brochure-title .item-details-link {
    right: 0;
}

.brochure-item-content {
    color: #FFFFFF;
    padding: 0 125px;
}

.brochure-item-main {
    padding: 90px 0;
}

.brochure-item-left {
    margin-top: 30px;
}

    .brochure-item-left .download {
        margin: 15px 0;
    }

.brochure-item-right {
    margin-top: -30px;
    margin-bottom: 200px;
}

    .brochure-item-right img {
        height: 320px;
    }

.btn-download {
    background: #006631 !important;
    border-radius: 0px !important;
    color: #fff !important;
    cursor: pointer !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    padding: 5px 25px !important;
    text-align: center !important;
    text-transform: uppercase !important;
}

@media (max-width: 768px) {
    .brochure-item-right {
        margin: 30px 0;
    }
    .offer-box-title {
        min-height: 52px !important;
    }
        .brochure-item-right img {
            width: 100%;
            text-align: center;
        }
}

@media (max-width: 425px) {

    .brochure-item-content {
        padding: 0 30px;
    }

    .brochure-item-main {
        padding: 0;
    }

    .brochure-item-right img {
        width: 100%;
        text-align: center;
    }

    .blog-item .blog-img {
        width: 100%;
    }

    .blog-item .blog-title {
        width: 100%;
        margin-top: 15px;
    }

    .blog-img img {
        width: 100%;
        height: auto;
    }
}

.weninar-subheader {
    padding: 10px 0;
    font-size: 21px;
    font-weight: 700;
}

.bg-6EBE4B {
    background-color: #006631;
}

.bg-C3BFBF {
    background-color: #C3BFBF;
}

.arrow-right-blue::after {
    background-color: #1B75BC;
    border-radius: 50%;
    content: "\e901";
    color: #fff;
    float: right;
    font-family: 'Intense Icons';
    font-size: 22px;
    height: 51px;
    line-height: 51px;
    text-align: center;
    width: 51px;
}

.int-arrow-right.blue {
    background-color: #1B75BC;
    border-radius: 50%;
    bottom: 15px;
    color: #fff;
    font-size: 22px;
    height: 51px;
    line-height: 51px;
    position: absolute;
    right: 15px;
    text-align: center;
    width: 51px;
}

.int-arrow-right.green {
    background-color: #6CC04A;
    border-radius: 50%;
    bottom: 15px;
    color: #fff;
    font-size: 22px;
    height: 51px;
    line-height: 51px;
    position: absolute;
    right: 15px;
    text-align: center;
    width: 51px;
}

.offer-box-thumbnail .offer-box-inner.blue {
    background-color: #1B75BCeb !important;
}

.offer-box-title {
    min-height: 87px;
    line-height: 1.2;
}
.offer-box-text {
    min-height: 100px;
}
@media (max-width: 991.5px) {
    .offer-box-title {
        min-height: 48px;
        line-height: 1.2;
    }
    .offer-box-text {
        min-height: 50px;
    }
}

.thumbnail-josip * {
    transition-duration: 0.4s !important;
}

.thumbnail-josip-caption.blue {
    background-color: #1B75BC !important;
}

.thumbnail-josip-caption.green {
    background-color: rgba(0, 102, 49, .75) !important
}

.thumbnail-josip-description {
    width: calc(100% - 51px);
}

.triangle-right {
    border-top: 12.5px solid transparent;
    border-bottom: 12.5px solid transparent;
    border-left: 25px solid #fff;
    display: inline-block;
    height: 0;
    width: 0;
}

@media (min-width: 769px) {
    .border-right-green {
        border-right: 4px solid #6CC04A;
    }
   
}

.view-all {
    margin-top: 65px;
    margin-bottom: 65px;
    text-align: center;
}

.view-all-resource {
}

.view-all-a {
    background: #006631 !important;
    border-radius: 0px !important;
    color: #fff !important;
    cursor: pointer !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    padding: 5px 50px !important;
    text-align: center !important;
    text-transform: uppercase !important;
}

.bg-455465 {
    background-color: #455465;
}

.bg-C3BFBF {
    background-color: #C3BFBF;
}

.text-6EBE4B {
    color: #006631;
}

.right-0 {
    right: 0;
}

.h-30 {
    height: 30px;
}


@media (max-width: 768px) {
    .banner_area .banner_content h1 {
        width: 100%;
        font-size:2rem;
    }
}

.home-page-resource .blog-item .blog-title {
    height: auto;
}

.home-page-resource .blog-item {
    margin-bottom: 25px;
}

.resource-library .blog-item {
    margin-bottom: 30px;
}

@media (min-width: 426px) {
    .brochure-list {
        width: 100%;
    }

    .item-details-link {
        bottom: 0;
    }
}

@media (max-width: 425px) {
    .blog-item .blog-title {
        padding: 0;
    }

        .blog-item .blog-title a {
            top: 0;
            right: 0;
        }

    .resource-white-paper .blog-item .blog-title a {
        top: auto;
        right: 0;
    }

    .brochure-item .brochure-title {
        padding: 15px 0;
    }

        .brochure-item .brochure-title a {
            top: 10px;
            right: 0;
        }


    .i-header {
        width: 83%;
        display: block;
    }

    .resource-library .blog-item {
        margin-top: 10px;
    }

    .brochure-item .brochure-img {
        width: 100%;
    }

    .brochure-item .brochure-title {
        width: 100%;
    }
}

.post-meta.left {
    align-items: start;
    flex-direction: column;
}

.page-loader-logo {
    margin-top: 0;
}

.home-page-resource-part {
    padding-bottom: 20px;
}

.m-t-40 {
    margin-top: 40px;
}

.copy-basic-feature p {
    margin-top: 0;
    margin-bottom:1.25rem;
}

.owl-style-2 .owl-stage-outer {
    margin: 0 !important;
    padding: 0 !important;
}

div.form-group:nth-child(1) > label:nth-child(1) {
    max-width: 100%;
}

div.form-group:nth-child(1) > div:nth-child(2) {
    max-width: 100%;
}

div.form-group:nth-child(2) > label:nth-child(1) {
    max-width: 100%;
}

div.form-group:nth-child(2) > div:nth-child(2) {
    max-width: 100%;
}

div.form-group:nth-child(3) > label:nth-child(1) {
    max-width: 100%;
}

div.form-group:nth-child(3) > div:nth-child(2) {
    max-width: 100%;
}

div.form-group:nth-child(4) > label:nth-child(1) {
    max-width: 100%;
}

div.form-group:nth-child(4) > div:nth-child(2) {
    max-width: 100%;
}

div.form-group:nth-child(5) > label:nth-child(1) {
    max-width: 100%;
}

div.form-group:nth-child(5) > div:nth-child(2) {
    max-width: 100%;
}

div.form-group:nth-child(6) > label:nth-child(1) {
    max-width: 100%;
}

div.form-group:nth-child(6) > div:nth-child(2) {
    max-width: 100%;
}

div.form-group:nth-child(7) > label:nth-child(1) {
    max-width: 100%;
}

div.form-group:nth-child(7) > div:nth-child(2) {
    max-width: 100%;
}

div.form-group:nth-child(8) > label:nth-child(1) {
    max-width: 100%;
}

div.form-group:nth-child(8) > div:nth-child(2) {
    max-width: 100%;
}

div.form-group:nth-child(9) > label:nth-child(1) {
    max-width: 100%;
}

div.form-group:nth-child(9) > div:nth-child(2) {
    max-width: 100%;
}

.blurb-header img {
    width: calc(100% - 20px);
}

.copy-basic-feature ol, .copy-basic-feature ul, .three-col-copy ol, .three-col-copy ul, .copy ol, .copy ul{
    margin: 14px 0;
    padding-left: 40px !important;
    list-style: disc !important;
    font-size: 1rem;
}

/* BEGIN RTE TEXT STYLES */

/* The following text styles are important to keep here
    even if they aren't found in the solution because
    they have been added to some RTEs and we only include
    RTEstyles.css in the back office
*/

.whitetext {
    color: #ffffff;
}

.blacktext {
    color: var(--midnight);
}

.graytext {
    color: var(--slate);
}

.greentext, .green-text {
    color: var(--green-text);
}

.darkgreentext {
    color: var(--deep-forest);
}

.whitetext a,
.blacktext a,
.graytext a {
    color: inherit !important;
}

/* END RTE TEXT STYLES */

.state-abreviation {
    font-size: 37px;
    text-align: center;
}
.bg-secondary {
    background-color:#455465
}

.tnk-flex-container {
    display: flex;
}

.tnk-flex-child {
    flex: 1;
}

.tnk-flex-child:first-child {
    margin-right: 20px;
    margin-left: 20px;
}
@media (max-width: 768px) {

    .full-width-video-Header {
        top: 65%;
        width: 100%;
    }
    .overlaycopy {
        height: auto;
        
    }
    .overlayinnerdiv {
        padding-bottom: 20px;
    }
}

@media (max-width: 425px) {
    .video-Header {
        top: 70%;
        width: 100%;
    }
    .full-width-video-Header {
        top: 70%;
        width:100%;
    }
    
}


@media (max-width: 320px) {
    .video-Header {
        top: 75%;
        width:100%;
    }
    .full-width-video-Header {
        top: 75%;
        width: 100%;
    }
    
}
.dtsc .slick-creative .slider-nav .slick-slide {
    width: inherit;
}

.event-info, .event-info > * {
    gap: 8px;
}
.event-info .icon-box-icon {
    width:26px;
}

.project-background {
    background-color: #ecedef;
    padding: 30px 15px;
}

.project-background .project-box {
    background-color:#fff;
    padding:15px; 
    min-height:530px;
    max-height:530px;
    overflow:hidden;
    margin-bottom: 20px;
}

    .project-background .project-box .project-text {
        padding-top:15px;
        padding-bottom: 15px;
    }
        .project-background .project-box .project-text .post-text {
            padding-bottom: 15px;
        }
            .project-background .project-box .project-text .post-text h6, .project-background .project-box .project-text .post-text div {
                line-height: 1.5;
                padding-bottom: 10px;
                display: inline;
            }


    .project-background .project-box .post-title {
    line-height:1;
}

@media(max-width:768px){
    .project-background .project-box {
        min-height: 450px;
    }
}
@media(max-width:576px) {
    .project-background .project-box {
        min-height: unset;
    }
}

@media (min-width: 768px) {
    .person {
        min-height: 300px;
    }
}

@media (min-width: 1024px) {
    .mt-100 {
        margin-top: 100px;
    }
}

@media(max-width:767px) {
    .isotope-filters {
        flex-direction: column;
    }
    .person-subtitle {
        display: none;
    }
    .btn, .select-wrap {
        margin-bottom: 1em;
    }
    .btn {
        text-align: center;
    }
    .brochure-item-right img {
        height: auto;
    }
    .media-xl {
        margin-left: 0;
    }
    .blog-list-left {
        border-right: none;
    }
    .mobile-mb-17 {
        margin-bottom: 17px;
    }
    .media-xl, .media-xl > * {
        margin-left: 0 !important;
    }
}

.isotope-line .isotope-filter::before {
    background-color: #006631 !important;
}

.person-title a:hover, .person-title a:focus {
    color: #006631 !important;
}

.tech-bucket{
    padding:30px 0;
}
    .tech-bucket h2 a:hover, .tech-bucket h5 a:hover{
        color:#006631;
    }

    @media (min-width: 1200px) {
        .technology-buck {
/*        position: absolute;
*/        /*min-height: 550.422px;*/
        height: 550.422px;
    }
}

.partner {
    min-height: 120px;
    max-height:120px;
    width: 100%;
    border-radius: .375rem;
    box-shadow: 5px 8px 28px rgb(23 23 36 / 10%);
}

.partner-image {
    margin: 20px auto;
    max-height: 80px;
}

.isotope {
    height: auto !important;
}

.isotope-item {
    position: relative !important;
    left: auto !important;
    top: auto !important;
}

.btn-lg {
    padding: 1rem;
}

.imagesliderHeader {
    padding-top: 11px;
}

.slick-creative .slider-nav .slick-dot {
    line-height: 1.2 !important;
}

.context-dark .rights-link:hover {
    color: #006631;
    
}

.i-45 i {
    font-size: 45px;
}

.blog-area {
    width: 87%;
}

.select2-container--default .select2-results__option[aria-selected=true], .select2-container--default .select2-results__option:hover {
    background-color: #006631 !important;
}

.fadeInUpBig {
    min-height: 150px;
}

.cattext, .reso-right-side h4{
    color: #455465 !important;
}

.brochure-title a {
    color: #455465 !important;
}

.overlaycopy {
    background-repeat: no-repeat;
}

@media (min-width:768px) and (max-width:991px) {
    .form-inline .form-control {
        width: 100px !important;
    }
}

@media (min-width:768px) and (max-width:1199px) {
    .alternate-button a {
        min-width: 100% !important;
    }
}

.fallbackpoststyle {
    height: 123px;
    width: 180px;
    border: solid 3px #006631;
    font-size: 45px;
    padding: 20% 0px;
    text-align: center;
}
@media (max-width:479.5px) {
    .fallbackpoststyle {
        height: 123px;
        width: 180px;
        border: solid 3px #006631;
        font-size: 45px;
        padding: 9% 0px;
        text-align: center;
    }
}
@media (max-width:375.5px) {
    .fallbackpoststyle {
        height: 123px;
        width: 180px;
        border: solid 3px #006631;
        font-size: 45px;
        padding: 10.5% 0px;
        text-align: center;
    }
}

@media (max-width:320.5px) {
    .fallbackpoststyle {
        height: 123px;
        width: 180px;
        border: solid 3px #006631;
        font-size: 45px;
        padding: 12% 0px;
        text-align: center;
    }
}

.fallbackEventstyle {
    height: 163px;
    width: 253px;
    border: solid 3px #006631;
    font-size: 45px;
    padding: 20% 0px;
    text-align: center;
}


.fallresourcestyle {
    height: 170px;
    width: 248px;
    border: solid 3px #006631;
    font-size: 45px;
    padding: 20% 0px;
    text-align: center;
}

.rightsidecol {
    padding-top: 39px;
}
.backtohomebtn:hover {
    background-color: #006631 !important;
    border-color: #006631 !important;
}

.umbraco-forms-navigation .btn-primary:hover, umbraco-forms-navigation .btn-primary.hover, umbraco-forms-navigation .btn-primary:active, umbraco-forms-navigation .btn-primary.active {
    color: #fff;
    border-color: #006631 !important;
    background-color: #006631 !important;
}

.list-item .link.link-secondary {
    color: #1B75BC;
}

.list-item .link.link-secondary:hover {
    color: #1B75BC;
}
.contat-us .h5 a:hover{
    color: #006631 !important;
}

.overlaycopy {
    height: auto;
}

.centerbutton {
    padding-bottom: 20px;
}

@media (min-width:768px) and (max-width:1199px) {
    .alternate-button a {
        min-width: 100% !important;
    }
}

@media (max-width: 768px) {
    .i-header {
        width: 100% !important;
    }
}

.overlaycopy {
    background-size: cover;
}

.fallresourcestyle {
    max-width: 100%;
}

@media (max-width: 768px) {
    .fallresourcestyle {
        height: auto;
        width: auto;
    }
    .accordion-block img {
        display: block;
        position:unset;
    }
}


.fallrelatedresourcestyle {
    height: 116px;
    width: 180px;
    border: solid 3px #006631;
    font-size: 45px;
    padding: 11% 0px;
    text-align: center;
}
@media (min-width: 1200px) {
    .resource-library-child .blog-item .blog-img img {
        width: 82%;
    }

    .resource-container .blog-item .blog-img img {
        width: 82%;
    }
}

@media (min-width: 769px) and (max-width:991px) {
    .resource-library-child .blog-item .blog-img img {
        width: 90%;
    }

    .resource-container .blog-item .blog-img img {
        width: 90%;
    }
}


.mobile .isotope-filters::-webkit-scrollbar, .isotope-filters:hover::-webkit-scrollbar {
    height: 10px !important;
}
.specialClass{
    font-size:2rem !important;
}
.searchheader{
    line-height:2.7;
}

.copy-content ul {
    list-style-type: disc;
    margin-left: 30px;
    font-size: 1rem;
}
.copy-content ol {
    list-style-type: decimal;
    margin-left: 30px;
    font-size: 1rem;
}
#allevents {
    margin-top: 2em;
}
.rd-navbar-fixed .navbar-navigation-root-link:hover, .rd-navbar-fixed .navbar-navigation-megamenu-link:hover, .rd-navbar-fixed .navbar-navigation-dropdown-link:hover {
    color: #006631;
}
.widget.filter {
    position: relative;
}
    .widget.filter::before {
        background-color: #000000B3;
        content: "";
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
    }
.widget-title {
    position: relative;
}
.techsubheader{
    margin-top:0px !important;
}

.cat-link {
    color: #006631;
}

.cat-item :hover {
    color: #006631 !important;
}
,alternate-button .btn {
    max-width: 100%;
}

@media (max-width: 1199px) {
    .navbar-navigation-megamenu-item {
        padding-left: 30px;
    }
    .navbar-navigation-megamenu-heading + .navbar-navigation-megamenu-item {
        padding: 14px 30px 7px;
    }
    .rd-navbar-fixed .navbar-navigation-megamenu-heading {
        padding: 0;
    }
    .rd-navbar-fixed .navbar-switch:hover, .rd-navbar-fixed .navbar-switch.active, .rd-navbar-fixed .navbar-navigation-back-btn {
        color: #006631;
    }
    .navbar-navigation-root-item .btn {
        margin-left: 30px;
    }
    .navbar-navigation-megamenu-link {
        font-size: 1.46rem
    }
    .offer-box {
        height: 100%;
    }
    .offer-box-inner {
        min-height: 100%;
    }
}
@media (min-width: 768px) {
    .mobile .isotope-filters::-webkit-scrollbar, .isotope-filters::-webkit-scrollbar {
        width: 3px;
        height: 10px !important;
    }

    .isotope-filters {
        height: 60px;
    }

    .isotope-line .isotope-filter:before {
        bottom: 20px !important;
    }
}


@media (max-width: 1024px) {
    .fallbackEventstyle {
        height: auto;
        width: auto;
    }

    .post-img-link {
        display: block !important;
    }
}

@media (min-width: 1024px) {

    .event-container-widget {
        border-left: 1px solid #707070;
    }
    
}

.event-container-widget .widget {
    width: 100%;
}

    .event-container-widget .widget::before {
        background-color: #fff;
    }

.event-container-widget .widget-list > li {
    color: #006631;
}

    .event-container-widget .widget-list > li::before {
        border: none;
    }

.event-container-widget .cattext {
    color: #000000 !important;
}

.whittext-content {
    width: 100% !important;
}
@media (min-width: 768px) {
    .cta-link p {
        padding: 0 38px;
    }
    .location-container .widget-area {
        border-left: 1px solid #707070;
        margin-bottom:15px;
    }
}
@media (min-width: 1024px) {
    .cta-link p {
        padding:0 110px;
    }

}

.category-header h3{
    padding:20px 0;
}

.category-header .select-wrap {
    position:absolute;
    min-width:100%;
}

.icon-wrap {
    margin-top: 30px !important;
}

  .icon-wrap i {
        font-size: 2em
    }

 .icon-text p {
    margin: 0
}

.list-header{
    padding-left:9px;
    font-weight:700;
}

.partner {
    display: flex;
    justify-content: center;
}

.badge-primary {
    background-color: #006631;
}

.btn-padding {
    padding: 16px;
}

@media (min-width: 768px) {
    .btn-padding {
        padding: 16px 8px;
    }
    .justified {
        display: flex;
        justify-content: space-between;
    }
    .justified button {
        width: 45%;
    }
}

@media (min-width: 576px) {
    #resourceLibrarySearch .form-inline .form-control {
        width: 100% !important;
    }
}


.bullet-style ul {
    list-style-type: disc;
    margin-left: 30px;
    font-size:1rem;
}

.bullet-style ul, .bullet-style ol {
    list-style-type: disc;
    margin-left: 30px;
}

    .bullet-style ul span, .bullet-style ol span {
        font-size: 1rem !important;
    }

/*
@media (min-width: 1440px) {
    .banner_area {
        height: 600px;
    }
}*/
/*@media (max-width: 1439px) {
    .banner_area {
        height: 400px;
    }
}*/

@media (max-width: 500px) {
    .banner_area {
        height: 200px;
       /* background-size: contain;*/
        background-position: unset;
        padding: unset;
    }
}

        .copy-basic-feature .btn-primary a {
    margin-bottom: 10px;
}

.mobile-requestbutton {
    display: none;
}

@media (max-width: 1200px) {
    .desktop-requestbutton {
        display: none !important;
    }
}

@media (max-width: 1199.5px) {

    .mobile-requestbutton {
        display: block !important;
        margin-left: 35px !important;
    }

        .mobile-requestbutton .btn-history {
            margin-left: 0px !important;
        }
}

@media (min-width: 768px) {
    .media-lg > * {
        margin-left: 18px !important;
    }
}

.copy-basic-feature h2 {
    font-size: 2.3125rem;
}
.copy-basic-feature h3 {
    font-size: 1.6875rem;
}
.copy-basic-feature h4 {
    font-size: 1.4375rem;
}

.copy-basic-feature h2, .copy-basic-feature h3, .copy-basic-feature h4, .copy-basic-feature h5, .copy-basic-feature h6 {
    color: #5d5d66;
}

.copy-basic-feature h2, .copy-basic-feature h4, .copy-basic-feature h3, .copy-basic-feature h5, .copy-basic-feature h6 {
    margin-bottom: 20px;
}

.copy-basic-feature p img {
    padding:10px;
}

.footer-col ul {
    font-size: 1rem;
}

.divider.footer-divider {
    margin-top:2rem!important;
}

.bolderFont {
    font-weight: 700 !important;
    font-size:1rem !important;
}
.image-slide-show {
    color: #455465;
}

.three-col-copy h4 {
    min-height: 60px;
    color: #5d5d66;
    line-height:1;
}
@media (max-width:991px){
    .three-col-copy h4 {
        min-height: unset;
    }
}

footer .socialHeader {
    font-size:1.5rem;
}
.author-details a{
    color:#ffffff !important;
}

.post-area, .post-title.h5 {
    line-height:1 !important;
}
.p-15 img {
    padding:15px!important;
}
.banner-area-noimage {
    min-height: 100% !important;
   
    height: auto !important;
}
    .banner-area-noimage .banner_content h1 {
        position:relative !important;

    }
/*@media screen and (max-width: 1024px) {
    .banner-area-noimage {
        height: 136px !important;
    }
}
@media screen and (max-width: 768px) {
    .banner-area-noimage {
        height: 70px !important;
    }
}
@media screen and (max-width: 430px) {
    .banner-area-noimage {
        height: 96px !important;
    }
}*/

/*.page-loaded .page-loader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 17;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 1;
    visibility: visible;
    transition: .3s;
    background: #fff;
}

.page-loader-inner {
    width: 112px;
    height: 112px;
}



.page-loader-item-1 {
    width: 112px;
    height: 48px;
    margin-top: 64px;
    margin-left: 0px;
    animation: anime1 4s 0s forwards ease-in-out infinite !important;
   }

    .page-loader-item-2 {
        width: 48px;
        height: 48px;
        margin-top: 0px;
        margin-left: 0px;
        animation: anime2 4s 0s forwards ease-in-out infinite !important;
    }

    .page-loader-item-3 {
        width: 48px;
        height: 48px;
        margin-top: 0px;
        margin-left: 64px;
        animation: anime3 4s 0s forwards ease-in-out infinite !important;
    }



.page-loader-item-1 {
    border: 24px solid #455465;
    box-sizing: border-box;
    position: absolute;
    display: block;
}
.page-loader-item-2 {
    border: 24px solid #006631;
    box-sizing: border-box;
    position: absolute;
    display: block;
}
.page-loader-item-3 {
    border: 24px solid #1b75bc;
    box-sizing: border-box;
    position: absolute;
    display: block;
}

@keyframes anime1 {
    0% {
        width: 112px;
        height: 48px;
        margin-top: 64px;
        margin-left: 0px
    }

    12.5% {
        width: 48px;
        height: 48px;
        margin-top: 64px;
        margin-left: 0px
    }

    25% {
        width: 48px;
        height: 48px;
        margin-top: 64px;
        margin-left: 0px
    }

    37.5% {
        width: 48px;
        height: 48px;
        margin-top: 64px;
        margin-left: 0px
    }

    50% {
        width: 48px;
        height: 48px;
        margin-top: 64px;
        margin-left: 0px
    }

    62.5% {
        width: 48px;
        height: 48px;
        margin-top: 64px;
        margin-left: 0px
    }

    75% {
        width: 48px;
        height: 112px;
        margin-top: 0px;
        margin-left: 0px
    }

    87.5% {
        width: 48px;
        height: 48px;
        margin-top: 0px;
        margin-left: 0px
    }

    100% {
        width: 48px;
        height: 48px;
        margin-top: 0px;
        margin-left: 0px
    }
}

@keyframes anime2 {
    0% {
        width: 48px;
        height: 48px;
        margin-top: 0px;
        margin-left: 0px
    }

    12.5% {
        width: 48px;
        height: 48px;
        margin-top: 0px;
        margin-left: 0px
    }

    25% {
        width: 48px;
        height: 48px;
        margin-top: 0px;
        margin-left: 0px
    }

    37.5% {
        width: 48px;
        height: 48px;
        margin-top: 0px;
        margin-left: 0px
    }

    50% {
        width: 112px;
        height: 48px;
        margin-top: 0px;
        margin-left: 0px
    }

    62.5% {
        width: 48px;
        height: 48px;
        margin-top: 0px;
        margin-left: 64px
    }

    75% {
        width: 48px;
        height: 48px;
        margin-top: 0px;
        margin-left: 64px
    }

    87.5% {
        width: 48px;
        height: 48px;
        margin-top: 0px;
        margin-left: 64px
    }

    100% {
        width: 48px;
        height: 48px;
        margin-top: 0px;
        margin-left: 64px
    }
}

@keyframes anime3 {
    0% {
        width: 48px;
        height: 48px;
        margin-top: 0px;
        margin-left: 64px
    }

    12.5% {
        width: 48px;
        height: 48px;
        margin-top: 0px;
        margin-left: 64px
    }

    25% {
        width: 48px;
        height: 112px;
        margin-top: 0px;
        margin-left: 64px
    }

    37.5% {
        width: 48px;
        height: 48px;
        margin-top: 64px;
        margin-left: 64px
    }

    50% {
        width: 48px;
        height: 48px;
        margin-top: 64px;
        margin-left: 64px
    }

    62.5% {
        width: 48px;
        height: 48px;
        margin-top: 64px;
        margin-left: 64px
    }

    75% {
        width: 48px;
        height: 48px;
        margin-top: 64px;
        margin-left: 64px
    }

    87.5% {
        width: 48px;
        height: 48px;
        margin-top: 64px;
        margin-left: 64px
    }

    100% {
        width: 112px;
        height: 48px;
        margin-top: 64px;
        margin-left: 0px
    }
}*/

.bannerslider_area .bannerslider_content h1 {
    background-color: #006631;
    padding: 15px 10px 15px 40px;
    position: relative;
   /* opacity:.7;*/
    color: #fff;
    bottom: 0%;
    font-size: 3rem;
}
.swiper-container {
    min-height: 75vh !important;
}
.slider-item-align{
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.swiper-slide {
    justify-content: normal !important;
}
.swiper-slide-item .container {
    margin-left: 0 !important;
    padding-left: 0 !important;
    margin-right: 0 !important;
    padding-right: 0 !important;
}

.header-border-top {
    position: absolute;
    border-top: 25px #349e4f solid;
    width: 90%;
    top:3px;
}

.header-border-buttom {
    position: absolute;
    border-bottom: 20px #349e4f solid;
    bottom: -7px;
    width: 86%;
}

@media (max-width: 767.50px) {
    .bannerslider_area .bannerslider_content h1 {
        width: 100%;
        font-size: 1.6rem;
    }
    .swiper-container {
        min-height: unset !important;
    }
    .slider-item-align {
        margin-left: -1.25rem !important;
        margin-right: -1.25rem !important;
    }
}
@media (max-width: 768px) {
    .bannerslider_area .bannerslider_content h1 {
      
        font-size: 1.6rem;
    }
    .swiper-container {
        min-height: unset !important;
    }

    
}

@media (max-width: 500px) {
    .bannerslider_area {
        background-position: unset;
      /*  padding: unset;*/
        margin-left:15px;
    }
    .brands img {
        margin-bottom: 5px;
    }
}


.swiper-button-prev:hover, .swiper-button-next:hover {
    color: #fff!important;
    cursor:pointer; 
}

.five-columnnav {
    flex: 1 0 20% !important;
}
.six-columnnav {
    flex: 1 0 16.66% !important;
}

.brands img {
    max-height: 80px;
    max-width: 225px;
}

footer .brands a {
    display:inline;
}

@media (max-width: 768px) {
    .footer-col li {
        padding-bottom: 10px;
    }
    .footer-col h5 {
        padding-bottom: 10px;
    }
}
.three-col-collout h5.offer-box-title a {
    color: #455465;
}

@media (max-width: 991.5px) {
    .three-col-collout h5.offer-box-title {
        min-height:87px!important;
    }
}

@media (min-width: 1600px) {
    .widget + .widget {
        margin-top: 1.75rem !important;
        padding-top: 1.125rem !important;
    }
}

@media (min-width: 768px){
    .view-all-resource{
        margin-left:-25px;
    }
    .home-footer {
        min-height: 165px;
        margin-bottom: -40px!important;
    }
}

.divider-layout int-phone {
    /*margin: 8px;*/
}
.int-phone:before {
    margin: 8px;
}
.int-marker:before {
    margin: 8px;
}
.divider-layout .align-items-center {
    margin: 8px;
}
.media-body a {
    padding: 8px 0;
}

.divider-layout .d-block {
    padding: 8px 5px !important;
    position: relative;
}

.brands .d-inline {
    display: inline-flex !important;
}

.d-inline a:last-child {
    padding: 0 5px;
}

.int-email:before {
    margin: 8px;
}


@media (min-width: 1025px) {
    .address p {
        font-size: 21px !important;
    }
}
.inline-f {
    display: inline-flex !important;
}
.pt-lbl{
    padding-top:1.25rem;
}
@media (max-width: 1025px) {
    .pt-lbl {
        padding-top: 1rem;
    }
}

@media (max-width: 320px) {
    .contact-header h5 {
        font-size:1.4rem;
    }
}

@media (max-width: 767px) {
    .isotope-filter {
        font-size: 1rem;
    }

    .isotope-scale-vertical .isotope-filter.active {
        transform: scale(1.08) !important;
        transform-origin: left center;
    }
}

[data-preset='{"title":"Our Team"}'] .isotope-item {
    transform: none !important;
}
.imgcaption {
    padding: 20px 20px 20px 20px !important;
}
.imgcaptionheader {
/*    width: 74% !important;
*/    margin-top: 0 !important;
      max-width:300px;
}

.owl-carousel .owl-dot.active span {
    background: #006631 !important;
}

.owl-carousel .owl-dot:hover span {
    background: #006631 !important;
}

.owl-carousel .owl-dot:hover span {
    background: transparent !important;
    border-left-color: #006631 !important;
}

.nav_container.on-white .owl-dots .owl-dot:not(.active) span {
    border-left: 15px solid #455465 !important;
}

.nav_container.on-white .owl-dots .owl-dot:hover span {
    border-left-color: #006631 !important;
}

.nav_container.on-white .owl-dots {
    margin-top: 2.5rem !important;
}

.right-resource {
    padding: 1rem 2rem !important;
}
.right-resource .widget-body.post-area {
    width: 100%;
}
.right-resource:before {
    background-color: #006631!important;
}
.right-resource .post-simple {
    display: flex;
    justify-content: center;
}
.btn-right-res {
    border: 2px solid #fff;
    padding: 5px 30px;
    border-radius: 10px;
    text-transform: uppercase;
    font-size: 21px;
    
}
@media (max-width: 991px) {
    .right-resource {
        width: 350px !important;
    }
    .right-resource .widget-title {
        text-align:left;

    }
}

@media (max-width: 768px) {
    .right-resource {
        width: 320px !important;
    }
}

@media (min-width: 1200px) {
    .right-resource .widget-title {
        font-size: 20px;
    }
}

@media (max-width: 425px) {
    .right-resource {
        display: flex;
        flex-flow: row wrap;
        font-weight: bold;
        text-align: center;
        margin: 0px auto;
    }
}

.av-item p {
    font-size: 1rem !important;
}

.av-item h2 {
    font-size: 2.3125rem !important;
}

.newsletter-section {
    padding: 144px 0 30px 0;
}

.newsletter-body {
    color: #fff;
    text-align: center;
    max-width: 610px;
}

.newsletter-body a {
    color: #fff;
}

.newsletter-body .umbraco-forms-form input.text,
.newsletter-body .umbraco-forms-form textarea {
    max-width: unset !important;
    width: 100%;
}

.newsletter-p1 {
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.newsletter-header {
    font-size: 107px
}

.newsletter-privacy {
    background: #23232F;
    opacity: 0.75;
    border-radius: 10px;
    border-left: 10px #6DBE4B solid;
    margin: auto;
    position: relative;
    margin-bottom: 60px;
}

.newsletter-privacy a {
    color: #fff;
}

.newsletter-privacy img {
    position: absolute;
    left: 0;
    margin: 12px;
}

.newsletter-privacy p {
    padding: 11px 5px 11px 50px;
    font-size: 12px !important;
}

@media (max-width: 600px) {
    .newsletter-section {
        padding: 100px 0 30px 0;
    }

    .newsletter-body {
        width: 100%;
    }

    .newsletter-header {
        font-size: 65px;
    }

    .newsletter-privacy {
        width: 320px;
        height: 78px;
        margin-bottom: 70px;
    }

        .newsletter-privacy img {
            margin: 15px 13px
        }
}

@media (max-width: 320px) {
    .newsletter-header {
        font-size: 53px;
    }

    .newsletter-privacy {
        width: 287px;
        height: 95px;
    }
}

.sign-up-form {
    width:100%;
    background-color:var(--slate);
    background-size:cover;
    background-position:center center;
    text-align:center;
    color:#fff;
    padding-top:16px;
    padding-bottom:16px;
    min-height:600px;
    position:relative;
}

.dark-overlay {
    position:absolute;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
    background-color:rgba(35,35,47,0.25);
}

    .dark-overlay:before,.dark-overlay:after {
        position:absolute;
        left:0px;
        width: 100%;
        height: 200px;
        display: block;
        content: '';
        opacity:0.4;
    }

    .dark-overlay:before {
        top:0px;
        background: linear-gradient(180deg, #23232F 0%, rgba(35, 35, 47, 0.00) 100%);
    }
    .dark-overlay:after {
        bottom:0px;
        background: linear-gradient(180deg, rgba(35, 35, 47, 0.00) 0%, #23232F 100%);
    }

.sign-up-inner {
    row-gap:22px;
    padding:40px 0px;
}

@media(min-width:768px){
    .sign-up-inner {
        padding: 80px 0px 40px 0px;
    }
}

.sign-up-form .privacy-policy {
    background: rgba(35, 35, 47, 0.75);
    border-left: 8px solid var(--meadow);
    display: flex;
    padding: 10px 18px;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    column-gap: 16px;
}

.sign-up-form .sign-up-logo {
    width:100%;
    max-width:700px;
}

.sign-up-form .p-md {
    font-weight:600;
}

.sign-up-form a {
    font-weight:700;
    border-bottom:2px solid #fff;
    color:#fff;
    padding-bottom:2px;
}

.sign-up-form a:hover {
    border-color:var(--meadow);
    color: #D7EECE;
    padding-bottom: 2px;
}

.text-dark-shadow {
    text-shadow: 0px 0px 10px #23232F, 0px 0px 20px #23232F;
}

.dark-shadow {
    filter: drop-shadow(0px 0px 20px #23232F) drop-shadow(0px 0px 10px #23232F);
}

.small-caps {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.twoColumnCard .imgs-wrap {
    padding: 0;
}

@media(min-width: 768px) {

    .threeColumnCard .card,
    .threeColumnCard .img-wrap {
        flex-grow: 1;
        width: calc(50% - 15px);
    }

    .twoColumnCard .card,
    .twoColumnCard .img-wrap {
        flex-grow: 1;
        width: calc(50% - 15px);
    }

    .twoColumnCard .card {
        padding: 0 20px;
    }
}


@media(min-width: 1200px) {

    .threeColumnCard .card {
        width: calc(33% - 15px);
    }

}

* + .row {
    margin-top: 2.5rem;
}

.condensed {
    background-color:#fff;
    padding: 2.5rem 0;
    gap:1.75rem;
}

.condensed-inner {
    padding: 0 2rem;
}

.calloutImage {
    height:100%;
    width:auto;
}

.topic-primary {
    padding-top: 70px;
    padding-bottom: 70px;
}

.topic-primary ~ .topic-primary{
    border-top: 1px solid var(--slate-300);
}

.topic-details {
    gap:1.75rem;
}

.callout a + p {
    margin-top: 0.3125rem;
}

.callouts-mini {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2.5rem;
    row-gap: 1.5rem;
}

@media (min-width:1400px){
    .callouts-mini {
        column-gap: 4rem;
    }
}