/* Global */
:root {
  --container: 1364px;
  --primary: #004D48;
  --secondary: #8AC43F;
  --tertiary: #8AC43F;
  --copy: #102F2D;
   
}

header {
    background: #004d48;
    width: 100%;
    display: flex;
    justify-content: center;
    position: sticky;
    z-index: 11;
    top: 0;
}
#main-content {
    padding-top: 0;
}
.block-spacing {
    padding: 3rem 0;
}
.container {
    max-width: var(--container);
    margin: 0 auto;
}
.page-node-type-business-pages .color-light-green, .page-node-type-business-pages .color-light-green > * {
    color: var(--secondary) !important;
}
a {
    color: var(--primary);
    text-decoration: underline;
}
a:hover {
    color: var(--secondary);
}
/* Hero Blocks */
.hero-block {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: end;
    justify-content: flex-start;
    position:relative;
    margin-bottom: 1rem;
    padding: 16rem 0 3rem;
}
.hero-block:before {
    content: '';
    background: rgb(21,21,21);
    background: linear-gradient(270deg, rgba(21,21,21,0) 30%, rgba(21,21,21,0.5) 70%);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9;
}
.hero-block.dark_mode:before {
    content: '';
    background: linear-gradient(180deg,rgba(255,255,255,0) 30%,rgba(255,255,255,0.95) 70%);
    opacity: 1;
}
@media screen and (min-width: 978px) {
    .hero-block {
        min-height: 350px;
        align-items: center;
        padding: 0 1rem;
    }  
    .hero-block:before {
        background: linear-gradient(270deg, rgba(21,21,21,0) 50%, rgba(21,21,21,0.5) 80%);
    }
    .hero-block.dark_mode:before {
        background: linear-gradient(270deg,rgba(255,255,255,0) 50%,rgba(255,255,255,0.75) 80%);
    }
}

.hero-block .hero-content {
    flex: 1;
    position:relative;
}
@media screen and (min-width: 978px) {
    .hero-block .hero-content .column {
      padding: 0;   
    }
    .hero-block.small .hero-content .column {
        max-width: 475px;
    }
    .hero-block.medium .hero-content .column {
        max-width: 545px;
    }
    .hero-block.large .hero-content .column {
        max-width: 545px;
    }
    .hero-block.extra_large .hero-content .column {
        max-width: 545px;
    }
}

@media screen and (min-width: 1100px) {
    .hero-block.small .hero-content .column {
        max-width: 475px;
    }
    .hero-block.medium .hero-content .column {
        max-width: 545px;
    }
    .hero-block.large .hero-content .column {
        max-width: 600px;
    }
    .hero-block.extra_large .hero-content .column {
        max-width: 745px;
    }
}

.hero-block h1.hero-title {
    font-size: 38px;
    color: #fff;
    line-height: 1.1;
    text-shadow: 0px 3px 6px #00000029;
}
.hero-block.dark_mode h1.hero-title {
    color: #004D48;
}

@media screen and (min-width: 978px) {
    .hero-block h1.hero-title {
        font-size: 50px;
    }  
}
.hero-block.highlight_last_word h1.hero-title span, .hero-block.dark_mode.highlight_last_word h1.hero-title span {
    color: var(--secondary);
}

.hero-block .hero-description {
    font-size: 18px;
    color: #fff;
    text-shadow: 0px 3px 6px #00000029;
}
.hero-block.dark_mode .hero-description {
    color: #102F2D;
}

.hero-block .hero-cta {
    color: var(--secondary);
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: underline;
}

/*.hero-block.dark_mode .hero-cta {*/
/*    color: var(--primary);*/
/*}*/
/* Cards Layout Block */

.cards-block {
    grid-gap: 4rem;
    display:grid;
    grid-template-columns: 1fr;
    padding-left: 2rem;
    padding-right: 2rem;
}
@media screen and (min-width: 978px) {
    .cards-block {
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .cards-block.cards-count-2  {
        grid-template-columns: 1fr 1fr;
    }
    .cards-block.cards-count-3  {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .cards-block.cards-count-4  {
        grid-template-columns: 1fr 1fr;
    }
    .cards-block.cards-count-5  {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .cards-block.cards-count-6  {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
.card {
  position:relative;
  border-radius: 40px;
  padding: 2rem;
  overflow:hidden;
}

.card .card-content {
    position: relative;
    z-index: 2;
}

.card.simple_text_card {
    background: #fff;
    box-shadow: 0px 0px 16px #00000021;
    border: 1px solid #004D4843;
}

.card.background_image_card {
    background-size: cover;
    background-position: center;
    padding: 14rem 2rem 3rem 2rem;
}
.card.background_image_card:before {
    content: '';
     position: absolute;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     z-index: 1;
     background: #000;
     opacity: 0.3;
}


.card.simple_text_card .card-title {
    color: #004D48;
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.card.background_image_card  .card-title {
    color: #fff;
    font-size: 29px;
        line-height: 1.2;
    margin-bottom: 1rem;
}
.card .card-subtitle {
    color: var(--secondary);
    font-style: italic;
    font-size:16px;
    font-weight:700;
    border-bottom: 1px solid #ccc;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}
.card.background_image_card .card-subtitle {
    color: var(--secondary);
}

.card-body {
    letter-spacing: 0.02px;
    color: #102F2D;
    font-size:16px;
}
.card.background_image_card .card-body {
    color: #fff;
}

.card a, .card button {
    color: var(--secondary);
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: underline;
}

@media screen and (min-width: 978px) {
    .card.background_image_card  .card-title {
        font-size: 30px;
    }
    .card .card-subtitle {
        font-size:18px;
    }
    
    .card-body {
        font-size:18px;
    }
}

/* Closer Blocks */
.closer-block {
    margin-top: 3rem;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: end;
    justify-content: flex-start;
    position:relative;
    padding: 16rem 0 3rem;
}

.closer-block:before {
  content: '';
    background: rgb(21,21,21);
    background: linear-gradient(270deg, rgba(21,21,21,0) 30%, rgba(21,21,21,0.5) 70%);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9;
}

.closer-block.dark_mode:before {
    content: '';
    background: linear-gradient(180deg,rgba(255,255,255,0) 30%,rgba(255,255,255,0.95) 70%);
    opacity: 1;
}

@media screen and (min-width: 978px) {
    .closer-block {
        min-height: 700px;
        align-items: center;
        padding: 0 1rem;
    }  
    .closer-block:before {
        background: linear-gradient(270deg, rgba(21,21,21,0) 50%, rgba(21,21,21,0.5) 80%);
    }
    .closer-block.dark_mode:before {
        background: linear-gradient(270deg,rgba(255,255,255,0) 50%,rgba(255,255,255,0.75) 80%);
    }
}

.closer-block .closer-content {
    flex: 1;
    position: relative;
}
@media screen and (min-width: 978px) {
    .closer-block .closer-content .column {
        max-width: 40%;
    }
}
.closer-block .closer-title {
    font-size: 38px;
    color: #fff;
    text-shadow: 0px 3px 6px #00000029;
}
.closer-block.dark_mode .closer-title {
    color: #004D48;
}

.closer-block .closer-description {
    font-size: 18px;
    color: #fff;
    text-shadow: 0px 3px 6px #00000029;
}
.closer-block.dark_mode .closer-description {
    color: #102F2D;
}

.closer-block .closer-content a {
    color: var(--secondary);
    text-transform: uppercase;
    font-weight: 700;
    text-decoration:underline;
}

/* Two Column */
.two-column {
    display: grid;
    grid-template-columns: 1fr;
    max-width: var(--container);
    margin: 0 auto;
    grid-gap: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
        color: var(--primary);

}
@media screen and (min-width: 978px) {
    .two-column {
        grid-template-columns: 0.45fr 1fr;
        padding-left: 0rem;
        padding-right: 0rem;
        grid-gap: 2rem;
    }
}

.two-column.even_columns {
    grid-template-columns: 1fr;
}
@media screen and (min-width: 978px) {
    
    .two-column.add_divider .column-one {
        border-right: 1px solid;
            padding-right: 3rem;
    }
    .two-column.even_columns {
        grid-template-columns: 1fr 1fr;
    }
    
}

.two-column.extra_spacing {
    padding: 4rem 0;
}
@media screen and (min-width: 978px) {
    .two-column.extra_spacing {
        padding: 6rem 0;
    }
    
}
.two-column .cards-block  { 
 grid-gap: 1.5rem;   
 padding:0;
}

@media screen and (min-width: 978px) {
    .two-column .cards-block  {
        grid-template-columns: 1fr 1fr;
    }
}



/* Three Column */
.three-column {
    display: grid;
    grid-template-columns: 1fr;
    max-width: var(--container);
    margin: 0 auto;
    grid-gap: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
        color: var(--primary);

}
@media screen and (min-width: 978px) {
    .three-column {
        grid-template-columns: 1fr 1fr 1fr;
        padding-left: 0rem;
        padding-right: 0rem;
        grid-gap: 2rem;
    }
}

.three.even_columns {
    grid-template-columns: 1fr;
}
@media screen and (min-width: 978px) {
    
    .three-column.add_divider .column-one {
        border-right: 1px solid;
            padding-right: 3rem;
    }
    .three-column.even_columns {
        grid-template-columns: 1fr 1fr;
    }
    
}

.three-column.extra_spacing {
    padding: 4rem 0;
}
@media screen and (min-width: 978px) {
    .three-column.extra_spacing {
        padding: 6rem 0;
    }
    
}
.three-column .cards-block  { 
 grid-gap: 1.5rem;   
 padding:0;
}

@media screen and (min-width: 978px) {
    .three-column .cards-block  {
        grid-template-columns: 1fr 1fr;
    }
}

.cannabis {margin-top: -25px;}
.cannabis .info-row {margin: 0 auto; width: 90%; padding: 15px 0;}
.cannabis .info-row p {font-size: 12px;}
.green-column {padding: 25px; background-color:#004d48; border-radius: 10px; color:#fff!important;}
.green-column strong, .green-column p {color: #fff!important;}
.cannabis, .page-cannabis-banking strong {color:#004d48;}
.cannabis h2 {display: block; width: 100%; text-align: center;}
.cannabis .shrink {vertical-align: center!important; text-align: center;}
.page-cannabis-banking #main-content 
{background-color:#f6ebde;color:#004d48!important;}
.cannabis a.button {padding: 20px;
  background-color: #004d48;
  color: white;
  border-radius: 10px;
}
.page-cannabis-banking .hero-block {min-height: 300px;}
.icon-float {float: left;height: 75px; font-size: 12px;}
.page-cannabis-banking .custom-thirds ul {margin-top: -15px;}
.page-cannabis-banking .custom-thirds a {font-weight: normal; color:#004d48;text-decoration: none;}
.page-cannabis-banking .custom-thirds hr.gold {border-bottom-color: #baa184;}
.page-cannabis-banking .custom-thirds p {color:#004d48; }
.webform-confirmation__back {display: none;}



@media only screen and (max-width: 978px) {

.page-cannabis-banking .hero-block {min-height: 125px!important;padding: 3rem 0!important;}
.page-cannabis-banking .three-column {padding: inherit!important;}
}

.column-title {
    font-size: 30px;
    line-height: 1.3;
}
@media screen and (min-width: 978px) {
    .column-title {
        font-size: 34px;
    }
}

.column-subtitle {
        color: var(--secondary);
    font-style: italic;
    font-size:18px;
    font-weight:700;
}
.column-link {
    color: var(--secondary);
    text-decoration: underline;
        font-weight:700;

    text-transform: uppercase;
}
.accordion--block {
    padding-bottom: 3rem;
}
.accordion-item-content {
  display: none;
  padding: 0rem 2rem 1rem;
}
.accordion-item-content a {
    color: var(--secondary);
    font-weight: 700;
        text-decoration: underline;

}
.accordion-item {
    border: 1px solid #004D4843;
    border-radius: 30px;
    margin-bottom: 1rem;
    
}
.accordion-item-header {
  border: none;
  cursor: pointer;
  padding: 1rem;
  width: 100%;
  text-align: left;
  outline: none;
  padding: 1rem 2rem;
      display: flex;
    justify-content: space-between;
}

.accordion-item-header .accordion-item-title {
    font-size: 30px;
    font-weight:800;
    color: var(--primary);
    margin: 0;

}
.accordion-item-header.active .accordion-item-title {
 color: var(--secondary);
}

.accordion-item-header   span {
    font-weight: 800;
    font-size: 30px;
    color: var(--primary);
}
.accordion-item-header.active  span {
 color: var(--secondary);

}


/* Slider Content */
.slider-block {
    padding-left: 2rem;
    padding-right: 2rem;
}
.slider-block .splide__pagination {
    left: auto;
    right: auto;
    bottom: auto;
    position: relative;
    margin-top: 1rem;
}
.slider-block .splide__pagination li {
    left: auto;
    right: 2rem;
    bottom: 2rem;
}
.slider-block .splide__pagination li .splide__pagination__page {
    background: transparent;
    height: 14px;
    margin: 5px;
    opacity: 1;
    width: 14px;
    border: 2px solid var(--primary);
}
.slider-block .splide__pagination li .splide__pagination__page.is-active {
    background: var(--primary);
    transform: scale(1);
}
.slider-block .splide__slide {
        background-size: cover;
    border-radius: 30px;
    position: relative;
    overflow:hidden;
        background-position: 75%;
}

@media screen and (min-width: 978px) {
    .slider-block {
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .slider-block .splide__pagination {
        position: absolute;
        margin-top: 0;
            left: auto;
    right: 2rem;
    bottom: 2rem;
    }
    .slider-block .splide__pagination li .splide__pagination__page {
    border: 2px solid #fff;
}
.slider-block .splide__pagination li .splide__pagination__page.is-active {
    background: #fff;
}
    .slider-block .image-slider img {
       display:none; 
    }
    .slider-block .splide__slide::before {
      content: '';
        background: rgb(21,21,21);
        background: linear-gradient(270deg,rgba(21,21,21,0.15) 0%,rgba(21,21,21,0.5) 70%);
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        opacity: 0.9;
    }
}
@media screen and (max-width: 977px) {
    .slider-block .splide__slide {
       background: #efefef !important;
    }
}
.slider-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
    display:flex;
flex-direction: column;
    justify-content: end;
    background: #efefef;
    border-radius: 0 0 20px 20px;
}

.slider-content h3.slider-title {
    font-size: 22px;
}
.slider-content .slider-body {
    font-size: 16px;
}


@media screen and (min-width: 978px) {
    .splide__slide img {display: none;}

    .slider-content {
        max-width: 50%;
        padding: 0 0 3rem 3rem;
            min-height: 400px;
        background: transparent;
            border-radius: 0 0;

    }
    .slider-content h3.slider-title {
        font-size: 40px;
    }
    .slider-content .slider-body {
        font-size: 20px;
    }
    .slider-content * {
        color: #fff;
    }
}


.slider-content a, .slider-content button {
        text-transform: uppercase;
    font-weight: 700;
    text-decoration:underline;
        color: var(--secondary);
        text-align: left;

}

.webform-button--submit {
    background: var(--secondary);
    text-transform: uppercase;
    font-weight: 800;
    margin-top: 1rem;
}


.webform-submission-form .fieldset-legend {
    font-size: 1rem;
    display: inline;
    font-weight: bold;
    color: #333;
}
@media screen and (max-width: 768px) {
    .webform-options-display-side-by-side > div {
        display: block;
    }
}
.webform-submission-form input[type="email"], .webform-submission-form input[type="text"], .webform-submission-form input[type="tel"], .webform-submission-form input[type="date"], .webform-submission-form input[type="number"], .webform-submission-form select, .webform-submission-form textarea {
    color: #666666;
    background-color: #ffffff;
    height: auto !important;
    padding: 1rem !important;
    border: 1px solid #004D4843;
    border-radius: 10px;
}
.webform-submission-form input[type="email"]:hover, .webform-submission-form input[type="email"]:focus, .webform-submission-form input[type="text"]:hover, .webform-submission-form input[type="text"]:focus, .webform-submission-form input[type="tel"]:hover, .webform-submission-form input[type="tel"]:focus, .webform-submission-form input[type="date"]:hover, .webform-submission-form input[type="date"]:focus, .webform-submission-form input[type="number"]:hover, .webform-submission-form input[type="number"]:focus, .webform-submission-form select:hover, .webform-submission-form select:focus, .webform-submission-form textarea:hover, .webform-submission-form textarea:focus {
    border: 1px solid #000;
}
@media screen and (min-width: 978px) {
    .webform-submission-form  {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-gap: 0 2rem;
    }
    .webform-submission-form .form-item {
        grid-column: span 2;
    }
    .webform-submission-form .form-item.form-item-email, .webform-submission-form .form-item.form-item-name, .webform-submission-form .form-item-company, .webform-submission-form .form-item-phone-number {
        grid-column: span 1;
    }
}
.grecaptcha-badge {
    display: none !important;
}
/* Testimonials */
.testimonial-block {
    background: #F7F7F7;
    padding: 3rem 1.5rem;
}
@media screen and (min-width: 978px) {
    .testimonial-block {
        padding: 5rem 1.5rem;
    }
    .testimonial-block .container {
        display: grid;
        grid-template-columns: 225px 1fr;
        grid-gap: 4rem;
    }
}

.testimonial-block .splide__pagination {
    position: relative;
    justify-content: start;
    padding: 1rem 0;
}

.testimonial-block .splide__pagination .splide__pagination__page {
    background: #F7F7F7;
    border: 2px solid var(--primary);
    opacity: 1;
    height: 12px;
    width: 12px;
}
.testimonial-block .splide__pagination .splide__pagination__page.is-active {
    background: var(--primary);
    transform: scale(1);
    
}
.testimonial-content .testimonial-body {
    font-style: italic;
    font-size: 20px;
    color: var(--primary);
    line-height: 1.2;
}
.testimonial-block .testimonial-title {
    font-size: 18px;
}
.testimonial-block h6 {
    font-size: 36px;
    color: var(--primary);
    font-weight: 700;
    line-height: 1.1;
}
.testimonial-block h6 span{
    color: var(--secondary);
}

.default-block {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.default-block p {
    color: #6E6E6E;
}

.default-block a {
    color: var(--secondary);
    font-weight: 700;
    text-decoration: underline;
}



body:has(dialog[open]) {
    overflow: hidden;
 }
.custom-dialog {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    max-width: 100%;
    width: calc(100% - 3rem);
    background: #fff;
    margin: auto 1.5rem;
}
@media screen and (min-width: 800px) {
    .custom-dialog {
        margin: auto ;
            max-width: 800px;
            width: 100%;
                min-height: none;


    }
}
.custom-dialog::backdrop {
    background: rgba(0, 0, 0, 0.5);
}
.custom-dialog-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    grid-gap: 1rem;
        padding: 0 1.25rem 1rem;
    border-bottom: 1px solid #ccc;
    margin-bottom: 2rem;
    margin: 0 -1.25rem 2rem;
}
.custom-dialog-header h6{
    margin:0;
    font-size: 2rem;
}
button.dialog-cta, button.live-chat-cta {
    color: var(--secondary);
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: underline;
    display: block;
}

.closer-buttons {
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    grid-gap: 1.5rem;
}

#two-column {
      scroll-margin-top: 4rem;

}
.oflows-link {
    cursor: pointer;
}