/*--------------------------------------------------------
	FONT ASSIGNMENTS
--------------------------------------------------------*/

:root {
    --pink: #f7efef;
    --gray: #f1f1f1;
    --red: #AE0E0D;
    --green: #469164;
    --light-green: #e4f3ea;
    --text: #4D4D4D;
    --radius: 12px;
    --gray: #eee;
    --gap: 80px;
    --side-margin: calc((100vw - var(--page-width) - 17px) / -2);
    --header-height: 85px;
    --footer-height: 730px;
    /* font-size: 16px;    */
}


@media (max-width: 768px) {
    :root {
       --page-width: 100vw;
       --side-margin: 0px;
   }
}

@media (min-width: 768px) and (max-width: 991px) {
    :root {
       --page-width: 750px;
   }
}

/* this is only used on the capterra page but no longer needed */
/* @media (max-width:990px) {
   :root {
       --side-margin: 0px;
   }
} */

@media (min-width:992px) and (max-width: 1201px) {
    :root {
       --page-width: 970px;
   }
}

@media (min-width:1201px) {
    :root {
       --page-width: 1170px;
   }
}

body,
html {
    /*height: 100%;*/
}

body {
    background-color: white;
    font-size: 18px;
    font-family: 'PT Sans', sans-serif;
}

p {
    margin: 5px 0 10px;
}


/*This style says that anytime that a <p> is the last item or is followed by another <p> it will have 10px of space below it*/

p+div,
p+table {
    margin-top: 30px;
}


/*This style says that anytime a div or table follows a <p> there will be 30px below the paragraph*/

p+ul {
    margin-top: -5px;
}


/*Pulls <ul> closer to paragraph making text look like it belongs with <p>*/

.row+.row {
    margin-top: 1em;
}


/*--------------------------------------------------------
	H1 - H6
--------------------------------------------------------*/

h1,
h2,
h3,
h4 {
    margin: 0px;
    padding: 0px;
    font-family: 'PT Sans', sans-serif;
    font-weight: bold;
    color: #6D6E71;
}

@media (max-width: 450px) {
    h1,
    h2,
    h3,
    h4 {
        line-height: 1;
    }
}

h1 {
    font-size: 30px;
    color: var(--green);
    margin-bottom: 30px;
}

h2 {
    font-size: 26px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 22px;
}

@media (max-width: 450px) {
    h1 {
        font-size: 28px;
    }
    h2 {
        font-size: 24px;
    }
    h3 {
        font-size: 22px;
    }
    h4 {
        font-size: 20px;
    }
}

h1.title {
    margin-top: 50px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    h1.title {
        margin-top: 30px;
    }
}


/*--------------------------------------------------------
	LINKS
--------------------------------------------------------*/

a {
    text-decoration: underline;
    color: var(--green);
}

a:hover,
a:focus {
    color: inherit;
}

/* buttons */

/* white button */

a.ml-button {
    background-color: white;
    color: var(--green);
    box-shadow: 0 0 0 1px var(--green);
    font-size: 20px;
    font-size: inherit;
    font-family: inherit;
    font-weight: 700;
    font-weight: inherit;
    padding: .75em 1ch;
    border-radius: 5px;
    display: inline-block;
    line-height: 1;
    transition: .125s color ease-in-out, .125s background-color ease-in-out, box-shadow ease-in-out;
    text-decoration: none;
}

a.ml-button:is(:focus, :hover) {
    background-color: var(--green);
    color: #FFFFFF;
    text-decoration: none;
}

/* green button */

.button-link {
    background-color: var(--green);
    color: #FFFFFF;
    font-size: 20px;
    font-family: inherit;
    font-weight: 700;
    padding: .75em 2ch;
    border-radius: 5px;
    display: inline-block;
    line-height: 1;
    transition: .125s color ease-in-out, .125s background-color ease-in-out, box-shadow ease-in-out;
    text-decoration: none;
}

.button-link:is(:focus, :hover) {
    text-decoration: none;
    color: var(--green);
    background-color: white;
    box-shadow: 0 0 0 1px var(--green);
    /* border-radius: 9px;
    border: 1px solid #ae0e0d; */
}

/* button list for when there are buttons next to each other */

.button-list {
    padding-inline-start: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


/*--------------------------------------------------------
	IMAGES, Objects
--------------------------------------------------------*/

img {
    border: 0px;
}

.center-block {
    display: block;
    margin-right: auto;
    margin-left: auto;
}


/* full-width row and background-row */

.full-width,
.background-row {
    position: relative;
    padding-top: 25px;
    padding-bottom: 25px;
}

.full-width {
    /* Make an element span the width of the viewport */
    position: relative;
    left: var(--side-margin);
    right: var(--side-margin);
    width: calc(100vw + var(--scrollbarWidth));
}

main:is(#homepage-main, #subpage-main) .full-width>.column {
    padding-left: 0;
    padding-right: 0;
}

#gm-canvas .full-width,
#gm-canvas .background-row {
    left: unset;
    right: unset;
    width: unset;
}

.background-row:not(#mycanvas .background-row)::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--side-margin);
    right: var(--side-margin);
    display: block;
    background: var(--light-green);
}

.background-row.gray-row:not(#mycanvas .background-row)::before {
    background: var(--gray);
}

#subpage-main:has(.background-row:last-child) {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
    padding-bottom: 0;
}

#subpage-main>.background-row:last-child {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
}

/* if you remove the title from a page and apply this class to the top row, it will move the row up so there is no whitespace above it. */

.row.moveup {
    margin-top: -50px;
    padding-top: 50px;
    padding-bottom: 50px;
}

/*--------------------------------------------------------
						HEADER
--------------------------------------------------------*/

#sticky-header {
    background: white;
    height: 85px;
    padding-bottom: 13px;
    /*margin-bottom: 30px;*/
    box-shadow: 2.08px 3.12px 20.8px rgba(0, 0, 0, 0.2);
    filter: progid: DXImageTransform.Microsoft.dropshadow(OffX=2.08, OffY=3.12, Color='#000000');
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1005;
}

#body-container {
    margin-top: 0;
}

#logo-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#logo-col svg {
    position: relative;
    /* top: 38px; */
    display: block;
    max-width: 100%;
    height: auto;
    width: 210px;
}

#sticky-header>.container,
#sticky-header>.container>.row,
#sticky-header>.container>.row>div,
#sticky-header>.container>.row>div>#nav_menu {
    height: inherit !important;
}

@media (max-width: 990px) {
    #logo-col,
    #menu-col {
        display: inline-block;
        float: none;
    }
    #logo-col {
        width: 280px;
        margin-right: 15px;
    }
    #menu-col {
        width: calc(750px - 280px - 25px);
    }
    button#mobile-toggle {
        bottom: calc(50% - 37px / 2) !important;
    }
}

@media (max-width: 767px) {
    #sticky-header {
        height: 85px;
        padding-top: 20px;
    }
    #menu-col {
        width: calc(100vw - 280px - 75px);
    }
    #body-container {
        margin-top: 85px;
    }
    button#mobile-toggle {
        bottom: unset !important;
    }
    #logo-col svg {
        position: relative;
        top: 0px;
        left: -15px;
        max-width: calc( 100% - 22px);
        /*Width of the containing div minus the width of the mobile toggle plus 15px padding*/
        width: 200px;
    }
}


/*----------------------------------Search Bar*/


/*--------------------------------------------------------
					Desktop Navigation
--------------------------------------------------------*/

#nav_menu .navbar-nav {
    position: absolute;
    right: 0;
    bottom: calc(50% - 21px);
}

#nav_menu .navbar-nav>li a {
    color: var(--green);
    font-family: 'PT Sans', sans-serif;
    text-decoration: none;
    font-size: 18px;
    padding-top: 10px;
    padding-bottom: 10px;
}

#nav_menu .navbar-nav>li:last-of-type a:is(:hover, :focus) {
    color: #469164;
    background-color: white;
    border-radius: 9px;
    border: 1px solid var(--green);
}

#nav_menu .navbar-nav>li:last-of-type a {
    color: white;
    background-color: var(--green);
    border-radius: 9px;
    border: 1px solid var(--green);
}

.nav>li>a:hover,
.nav>li>a:focus {
    background-color: transparent;
    color: var(--green);
}

.dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus {
    background-color: var(--gray);
    color: var(--text);
}

.nav .caret {
    border-top-color: var(--green);
    border-bottom-color: var(--green);
}

.nav a:hover .caret {
    border-top-color: var(--green);
    border-bottom-color: var(--green);
}


/*--------------------------------------------------------
					Mobile Navigation
--------------------------------------------------------*/

#mobileMenuWrapper {
    box-shadow: 2.08px 3.12px 20.8px rgba(0, 0, 0, 0.4);
    filter: progid: DXImageTransform.Microsoft.dropshadow(OffX=2.08, OffY=3.12, Color='#000000');
}


/* All Mobile Menu Links*/

#mobileMenuWrapper #mobile-menu a {
    display: inline-block;
    width: 100%;
    min-height: 32px;
    margin-bottom: 6px;
    background-color: transparent;
    padding-left: 8px;
    padding-top: 10px;
    padding-right: 5px;
    display: inline-block;
    font-size: inherit;
    font-weight: 400;
    color: #333;
    text-decoration: none;
}


/*Top Level Mobile Menu Links*/

#mobileMenuWrapper #mobile-menu>li>a {
    color: #469164;
}


/* Mobile Menu Dropdown Only */

#mobileMenuWrapper .mDropdown a {
    padding: 8px;
    margin-bottom: 10px;
}

#mobile-menu>li>ul {
    background-color: rgba(0, 0, 0, .04);
}


/*-------------------------------------toggle*/

button#mobile-toggle {
    width: 37px;
    height: 37px;
    position: absolute;
    right: 0px;
    bottom: 0px;
    border: none;
    border-radius: 4px;
    padding: 10px 5px;
    background-color: white;
    box-shadow: 0px 1.5px 1px rgba(0, 0, 0, 0.3);
}

@media (max-width: 990px) {
    button#mobile-toggle {
        display: inline-block;
    }
}

button#mobile-toggle:focus {
    outline: none;
}

button#mobile-toggle:active {
    box-shadow: 0px -1.5px 0px rgba(0, 0, 0, 0.1);
}

button#mobile-toggle svg * {
    fill: #469164;
}


/*--------------------------------end--toggle*/


/*--------------------------------------------------------
	INDEX / MAIN BODY
--------------------------------------------------------*/



/* ------Home Page Styling ------- */


/* #welcome-row */

#welcome-row {
    position: relative;
    padding: 75px 0px;
    margin-bottom: var(--gap);
}

#welcome-row:not(#mycanvas #welcome-row)::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--side-margin);
    right: var(--side-margin);
    display: block;
    background: url(../images/vieth-pink-background.png);
    background-size: cover;
    background-position: center center;
    /* background: var(--pink); */
}

#gm-canvas #welcome-row {
    left: unset;
    right: unset;
    width: unset;
}

#subpage-main:has(#welcome-row:last-child) {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
    padding-bottom: 0;
}

#subpage-main>#welcome-row:last-child {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
}

@media (max-width: 991px) {
    #welcome-row .column:not(:first-child) {
        margin-top: var(--gap);
    }
}

#welcome-row h1 {
    font-size: 42px;
    color: black;
}

#welcome-row p {
    font-size: 20px
}


/* #org-row */

#org-row:not(#gm-canvas #org-row) {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-bottom: var(--gap);
}

#org-row:before {
    display: none;
}

@media (min-width: 600px) and (max-width: 1201px) {
    #org-row:not(#gm-canvas #org-row) {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    #org-row:not(#gm-canvas #org-row) {
        grid-template-columns: repeat(1, 1fr);
    }
}

#org-row .column:not(#gm-canvas #org-row .column) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 5px;
    border: 2px solid var(--gray);
    border-radius: var(--radius);
    width: 165px;
    margin: 0px auto;
}

@media (max-width: 991px) {
    #org-row {
        flex-wrap: wrap;
    }
    #org-row .column {
        margin: 0px auto;
    }
}


/* #quote-row */

#quote-header-row {
    position: relative;
    padding: 75px 0px;
}

#quote-header-row:not(#mycanvas #quote-header-row):before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--side-margin);
    right: var(--side-margin);
    display: block;
    background: #333333;
    background: url(../images/vieth-black-background.png);
    background-size: cover;
    background-position: center center;
}



#gm-canvas #quote-header-row {
    left: unset;
    right: unset;
    width: unset;
}

#subpage-main:has(#quote-header-row:last-child) {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
    padding-bottom: 0;
}

#subpage-main>#quote-header-row:last-child {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
}

#quote-header-row .column:not(#gm-canvas #quote-header-row .column) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width: 770px) {
    #quote-header-row .column:not(#gm-canvas #quote-header-row .column) {
        flex-direction: column;
        gap: 25px;
    }
}

#quote-header-row:not(#gm-canvas #quote-header-row) .column h2 {
    color: white;
    margin-top: 0px;
    margin-bottom: 10px;
}

#quote-header-row:not(#gm-canvas #quote-header-row) .column p {
    color: white;
    margin-top: 0px;
    margin-bottom: 0px;
    max-width: 700px;
}

#quote-row:not(#gm-canvas #quote-row) {
    margin-top: -60px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 991px) {
    #quote-row:not(#gm-canvas #quote-row) {
        flex-wrap: wrap;
        margin-top: -80px;
    }
}

#quote-row .column {
    background-color: var(--light-green);
    border-radius: var(--radius);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 800px) {
    #quote-row .column {
        margin: 0px 25px;
    }
}

#quote-row img {
    margin-bottom: 25px;
}

#quote-row .column div:first-of-type p{
    margin-bottom: 70px;
}


/* capterra-row */

#capterra-row {
    margin-bottom: 80px;
}

#capterra-row .footer-badges {
    border: none;
}


/* #metrics-row */

#metrics-row:not(#gm-canvas #metrics-row) {
    position: relative;
    padding: 75px 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: var(--gap);
}

@media (max-width: 991px) {
    #metrics-row {
        flex-wrap: wrap;
    }
}

#metrics-row:not(#mycanvas #metrics-row)::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--side-margin);
    right: var(--side-margin);
    display: block;
    background: url(../images/vieth-red-background.png);
    background-size: cover;
    background-position: center center;
    /* background: var(--red); */
}

#gm-canvas #metrics-row {
    left: unset;
    right: unset;
    width: unset;
}

#subpage-main:has(#metrics-row:last-child) {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
    padding-bottom: 0;
}

#subpage-main>#metrics-row:last-child {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
}

#metrics-row .column {
    background-color: white;
    border-radius: var(--radius);
    padding: 30px;
    margin: 0px 20px;
}

#metrics-row .column p:first-child {
    font-size: 55px;
    color: var(--green);
    white-space: nowrap;
}


/* #feature-row */

#feature-row:not(#mycanvas #feature-row) {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: var(--gap);
}

#feature-row .column {
    background-color: var(--light-green);
    border-radius: var(--radius);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 991px) {
    #feature-row {
        flex-wrap: wrap;
    }
    #feature-row .column {
        margin: 0px 10px;
    }
    #feature-row .column img {
        max-width: 150px;
        max-height: 50px;
    }
}

@media (min-width: 480px) and (max-width: 991px) {
    #feature-row:not(#mycanvas #feature-row) .column {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    #feature-row .column {
        display: block;
    }
}

#feature-row h3 {
    margin-bottom: 25px;
}

#feature-row ul {
    padding-inline-start: 0;
    margin-bottom: 50px;
}


/* Check-list - red check marks for bullets in lists*/

.check-list ul {
    /* list-style-image: url('../images/check-marker.svg'); */
    list-style-type: none;
}

.check-list svg {
    margin-right: .5ch;
}


/* Check-list Animations */

.check-list li:nth-child(1) {
    --delay: 1;
}

.check-list li:nth-child(2) {
    --delay: 2;
}

.check-list li:nth-child(3) {
    --delay: 3;
}

.check-list li:nth-child(4) {
    --delay: 4;
}

.check-list li:nth-child(5) {
    --delay: 5;
}

.check-list li:nth-child(6) {
    --delay: 6;
}

.check-list li:nth-child(7) {
    --delay: 7;
}

.check-list li:nth-child(8) {
    --delay: 8;
}

.check-list li:nth-child(9) {
    --delay: 9;
}

.check-list li:nth-child(10) {
    --delay: 10;
}

.check-list li:nth-child(11) {
    --delay: 11;
}

.check-list li:nth-child(12) {
    --delay: 12;
}

.check-list li:nth-child(13) {
    --delay: 13;
}

.check-list li:nth-child(14) {
    --delay: 14;
}

.check-list li:nth-child(15) {
    --delay: 15;
}

.check-marker polyline {
    stroke-dasharray: 20;
    transition: .25s stroke-dashoffset ease-in-out;
    transition-delay: calc(.125s * var(--delay));
    stroke-dashoffset: -20;
}

.onscreen .check-marker polyline {
    stroke-dashoffset: 0;
}


/* p.onscreen {
    color: blue;
} */



/* #estimate-row  */


#estimate-row{
    position: relative;
    padding: 100px 0px;
    margin-bottom: calc(2rem + 10px);
}

#estimate-row:not(#mycanvas #estimate-row)::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--side-margin);
    right: var(--side-margin);
    display: block;
    /* background: var(--pink); */
    background: url(../images/memberleap-laptop-background.png);
    background-size: cover;
    background-position: center center;
    box-shadow: inset 0 0 0 1000px rgb(229 232 235 / 85%);
}

#gm-canvas #estimate-row {
    left: unset;
    right: unset;
    width: unset;
}

#subpage-main:has(#estimate-row:last-child) {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
    padding-bottom: 0;
}

#subpage-main>#estimate-row:last-child {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
}

#estimate-row h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

#estimate-row p:not(p:last-of-type) {
    margin-bottom: 50px;  
}

#estimate-row p:last-of-type {
    margin-bottom: 0;
}



/* Support Row */

#support-row {
    display: flex;
    gap: 30px;
}

@media (max-width: 700px) {
    #support-row {
        flex-direction: column;
    }
}

#support-row h2 {
    font-size: 42px;
    margin-bottom: 35px !important;
}

#support-row .column:first-of-type {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

#support-row .column:first-of-type p {
    font-size: 1.1em;
}

#support-row .column:last-of-type {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    background-color: var(--light-green);
    border-radius: var(--radius);
    padding: 50px 30px;
}

#support-row .column:last-of-type img{
    margin-bottom: 20px;
}

#support-row .column:last-of-type div:first-of-type p {
    font-size: 20px;
}



/* demo-row */

#demo-row {
    position: relative;
    padding: 80px 0px;
    /* margin-bottom: -39px; */
}

#demo-row:not(#mycanvas #demo-row)::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--side-margin);
    right: var(--side-margin);
    display: block;
    /* background: var(--pink); */
    background: url(../images/memberleap-laptop-background.png);
    background-size: cover;
    background-position: center center;
    box-shadow: inset 0 0 0 1000px rgb(229 232 235 / 85%);
}

#gm-canvas #demo-row {
    left: unset;
    right: unset;
    width: unset;
}

#subpage-main:has(#demo-row:last-child) {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
    padding-bottom: 0;
}

#subpage-main>#demo-row:last-child {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
}

#demo-row h2 {
    font-size: 42px;
    margin-bottom: 42px;
}


/* hide the embed rows on the page */

.embed-row:not(#gm-canvas .embed-row) {
    margin-bottom: 0;
    display: none;
}

.embed-row::after, .embed-row::before {
    display: none;
}

/* Animations */


/* CONTAINER SLIDE IN FROM LEFT */

.slide-in-left {
    /* opacity: 0; */
    transition: .8s all ease;
    transform: translate3d(-100%, 0, 0);
}

.slide-in-left.active {
    opacity: 1;
    transform: none;
}


/* CONTAINER SLIDE IN FROM RIGHT */


/* commmented out because it causes horizontal scroll bar currently */

.slide-in-right {
    opacity: 0;
    transition: .8s all ease;
    transform: translate3d(100%, 0, 0);
}

.slide-in-right.active {
    opacity: 1;
    transform: none;
}


/* delay for use in a row with more than one column */

.delay-two {
    transition: 1s all ease;
}

.delay-three {
    transition: 1.2s all ease;
}


/* pulse throb */

.pulse:not(#mycanvas .pulse) {
    transition: .8s transform ease, .125s background-color ease-in-out, box-shadow ease-in-out;
    /* transform: scale(.8); */
}

.pulse.active {
    animation: pulse .5s;
    animation-delay: .5s;
}

@keyframes pulse {
    25% {
        transform: scale(.8)
    }
    50% {
        transform: none;
    }
    75% {
        transform: scale(.8)
    }
    100% {
        transform: none;
    }
}


/* Badges */

.footer-badges {
    display: flex;
    list-style: none;
    gap: 1em;
    align-items: center;
    margin: 35px auto 0;
    padding: 0;
    padding-top: 35px;
    justify-content: center;
    flex-wrap: wrap;
    border-top: 1px solid #eee;
    padding-inline: 15px;
}

.footer-badges img {
    width: 120px;
    max-width: 100%;
    display: block;
    max-height: 100px;
    object-fit: contain;
}



/*----------------Slideshow----------*/

#index-slideshow-container {
    padding: 0px;
}

@media (max-width: 767px) {
    #index-slideshow-container {
        /*border-bottom: 1px solid #6D6E71;*/
    }
}

div#index-slideshow-container img {
    width: 100%;
}

#index-slideshow-container .carousel-indicators {
    display: none;
}

.carousel-inner a {
    color: inherit;
}

.carousel-control.left,
.carousel-control.right {
    background-image: none;
    width: 25px;
    top: 25%;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 100px;
    opacity: 1;
    font-family: Arial, sans-serif;
    text-shadow: 0px 0px 10px rgba(51, 51, 51, 0.4);
}

@media (max-width: 767px) {
    .carousel-control.left,
    .carousel-control.right {
        top: 0px;
        font-size: 50px;
    }
}

.carousel-control.right {
    right: 10px;
}

.carousel-control.left:hover,
.carousel-control.right:hover {
    color: #469164;
    text-decoration: none;
    text-shadow: none;
}


/*----------------Slideshow Caption----------*/

.carousel-caption {
    top: 50%;
    bottom: 50%;
    right: initial;
    left: 50%;
    width: 100%;
}

@media (max-width: 990px) {
    .carousel-caption {
        top: unset;
        bottom: 0;
        padding-bottom: 0;
    }
}

@media (max-width: 767px) {
    .carousel-caption {
        position: relative;
        padding: 0px;
        text-shadow: none;
    }
}

.carousel-caption p {
    font-size: 33px;
    font-weight: bold;
    background: rgba(35, 31, 32, .5);
    padding: 10px 20px;
    left: -50%;
    position: relative;
    display: block;
    margin: 0;
    line-height: 1.1;
}

.carousel-caption p+p {
    padding-top: 0;
}

@media (max-width: 990px) {
    .carousel-caption p {
        font-size: 25px;
    }
}

@media (max-width: 767px) {
    .carousel-caption p {
        font-size: 20px;
        margin: 0px;
        min-height: 110px;
        color: #6D6E71;
        background: white;
        text-shadow: none;
    }
}


/*----------------End Slideshow------*/


/*----------------------------------Primary-Content*/

#content-boxes-row {
    margin-top: -30px;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

@media (max-width: 990px) {
    #content-boxes-row {
        margin-top: 0px;
        display: block;
    }
}

.content-box-container {
    background-color: white;
    box-shadow: 2.08px 3.12px 20.8px rgba(0, 0, 0, 0.2);
    filter: progid: DXImageTransform.Microsoft.dropshadow(OffX=2.08, OffY=3.12, Color='#000000');
    padding: 30px 30px 40px;
    height: 100%;
    /* In browsers supporting Flexbox, this will make all of the columns equal height */
    min-height: 322px;
    /*Fallback for browsers without Flexbox support. This value will have to be updated based on the longest line of content*/
}

@media (max-width: 990px) {
    .content-box-container {
        padding: 30px 0px 0px;
        box-shadow: none;
        min-height: inherit;
    }
}

#content-boxes-row svg {
    margin: 0px auto;
    display: block;
}

.content-box svg * {
    fill: #6D6E71;
}

.content-box:hover svg * {
    fill: #469164;
}

.content-box h1 {
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    margin: 15px 0px 20px;
}

.content-box:nth-of-type(2) h1 {
    padding-top: 4px;
    /*Adjusts for the size difference in the SVGs*/
}

@media (max-width: 767px) {
    .content-box h1 {
        margin-bottom: 15px;
    }
}

.content-box-container ul {
    padding-left: 10px;
}


/*--------------------------------------------------------
	CSS STYLE FOR INNER PAGES
--------------------------------------------------------*/

#subpage-content {
    min-height: calc(100vh - 319px);
    margin-top: 50px;
}

#subpage-content .row:not(.row.embed-row, .row#demo-row, .row#capterra-row, .row#capterra-section, #capterra-section .capterra-contact-form .row, #estimate-row, #software-row, .row.primary-capterra-section, .row#welcome-row, .background-row, #video-row, .estimator-page #modules_included_id .row, .estimator-page #modules_carte_id, .estimator-page .submission-area, .estimator-page .row .row:has(#modules_included_display_id)) {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

a.button {
    color: #469164;
    background-color: white;
    border-radius: 9px;
    border: 1px solid #469164;
    display: inline-block;
    font-size: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    min-width: 220px;
    max-width: 100%;
    text-align: center;
    margin-bottom: 20px;
    text-decoration: none;
}

a.button:hover {
    color: white;
    background-color: #469164;
}

#subpage-content *+h1,
#subpage-content *:not(h1)+h2,
#subpage-content *:not(h2)+h3,
#subpage-content *:not(h3)+h4:not(.estimator-page h4) {
    margin-top: 30px;
}

#subpage-content h2:not(#subpage-content .review-row h2, #software-row h2, #demo-row h2, #estimate-row h2, .estimator-page h2),
#subpage-content h3,
#subpage-content h4:not(.estimator-page h4, #accordion-row h4) {
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    #overview-page img/*Add other pages if it makes sense*/
    {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 10px;
    }
}

.important {
    color: #469164;
    font-weight: 700;
}

ul.long-list {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
}

ul.long-list li {
    white-space: nowrap;
}

@media (max-width: 1200px) {
    ul.long-list {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
    }
}

@media (max-width: 990px) {
    ul.long-list {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }
}

@media (max-width: 767px) {
    ul.long-list {
        -webkit-column-count: inherit;
        -moz-column-count: inherit;
        column-count: inherit;
        overflow-y: scroll;
        max-height: 50vh;
        padding-top: 10px;
        /*padding-bottom: 10px;*/
    }
    ul.long-list::-webkit-scrollbar {
        -webkit-appearance: none;
        width: 10px;
    }
    ul.long-list::-webkit-scrollbar-thumb {
        border-radius: 0px;
        background-color: rgba(109, 110, 113, .2);
        /*-webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);*/
    }
}

ul.long-list-detailed {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 80px;
    -moz-column-gap: 80px;
    column-gap: 80px;
}

@media (max-width: 990px) {
    ul.long-list-detailed {
        -webkit-column-gap: 60px;
        -moz-column-gap: 60px;
        column-gap: 60px;
    }
}

@media (max-width: 767px) {
    ul.long-list-detailed {
        -webkit-column-count: inherit;
        -moz-column-count: inherit;
        column-count: inherit;
        overflow-y: scroll;
        max-height: 50vh;
        padding-top: 10px;
        /*padding-bottom: 10px;*/
    }
    ul.long-list-detailed::-webkit-scrollbar {
        -webkit-appearance: none;
        width: 10px;
    }
    ul.long-list-detailed::-webkit-scrollbar-thumb {
        border-radius: 0px;
        background-color: rgba(109, 110, 113, .2);
        /*-webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);*/
    }
}

#demo-request-page form {
    margin-top: 50px;
}


/*----------Table Styles----------*/

.table {
    margin-top: 10px;
}

p+.table {
    margin-top: 30px;
}


/*Changes margin-top from 10px to 30px when .table follows a <p>*/

.table em {
    margin-left: -1px;
}


/*Adjusts for the perceived gap with the slanted text*/

.table-striped {
    border-bottom: 1px solid #dddddd;
}

.table>tbody>tr:first-of-type {
    font-weight: 700;
}


/*Table labels row*/

.table img {
    display: block;
    margin: 0px auto;
}

@media (max-width: 450px) {
    .table {
        font-size: 14px;
    }
    .table>tbody>tr>td {
        padding-left: 3px;
        padding-right: 3px;
    }
    .table>tbody>tr>td,
    .table>tbody>tr>th,
    .table>tfoot>tr>td,
    .table>tfoot>tr>th,
    .table>thead>tr>td,
    .table>thead>tr>th {
        line-height: 16px;
        min-width: 49px;
    }
    .table img {
        width: 18px;
        height: auto;
        margin: 0px;
        margin-left: 8px;
    }
    .table ul {
        padding-left: 10px;
    }
    .table li {
        margin-top: 10px;
        list-style-type: none;
    }
    .table li:before {
        content: "\2022";
        font-size: 14px;
        margin-left: -8px;
        margin-right: 3px;
    }
}


/*----------Client Websites Page----------*/


/*----------Responsive Nivo*/

#slider-container-FD6,
#slider_FD6,
.nivoSlider img {
    max-width: 100% !important;
    height: auto !important;
}


/*----------Nivo Controls*/

.nivo-prevNav,
.nivo-nextNav {
    background-image: none !important;
    width: 25px !important;
    top: 25% !important;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 75px;
    font-family: Arial, sans-serif;
    text-shadow: 0px 0px 10px rgba(51, 51, 51, 0.4);
}

.nivo-prevNav:hover,
.nivo-nextNav:hover {
    text-decoration: none;
    color: #469164;
    text-shadow: none;
}

.nivo-prevNav {
    left: 10px !important;
}

.nivo-nextNav {
    right: 10px !important;
}

.nivo-prevNav:after {
    content: "‹";
}

.nivo-nextNav:after {
    content: "›";
}


/*----------Slides*/

#slider-container-FD2 {
    margin-top: 30px !important;
}

@media (max-width: 450px) {
    #slider-container-FD2 {
        margin-top: 20px !important;
    }
}

.nivoSlider img {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
}


/*----------Testimonials Page----------*/

#testimonials .review-site-wrapper {
    position: absolute;
    top: 30px;
    right: 15px;
}

@media (max-width: 990px) {
    #testimonials .review-site-wrapper {
        top: 0px;
        right: 15px;
    }
}

@media (max-width: 690px) {
    #testimonials .review-site-wrapper {
        position: relative;
        left: -10px;
        margin-bottom: 10px;
    }
}

#testimonials img.review-img {
    width: auto;
    height: 70px;
    margin-left: 10px;
    display: inline-block;
}

#testimonials .testimonial-wrapper {
    /*border-top: 1px solid #eee;*/
    border-bottom: 1px solid #eee;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
}


/*#testimonials .testimonial-wrapper:nth-of-type(2) {
	margin-top: 50px;
}*/

#testimonials .testimonial-text {
    padding-left: 0px;
}

#testimonials .testimonial-image {
    padding-right: 0px;
    max-height: 180px;
    overflow-y: hidden;
    float: right;
}

#testimonials .testimonial-image img {
    width: 100%;
}

@media (max-width: 767px) {
    #testimonials .testimonial-image {
        width: 25%;
        margin-left: 10px;
        margin-bottom: 20px;
    }
}

@media (max-width: 500px) {
    #testimonials .testimonial-image {
        float: left;
        width: 100%;
    }
    #testimonials .testimonial-image img {
        width: 150px;
        margin: 5px auto;
        left: -15px;
        position: relative;
    }
    #testimonials .testimonial-text {
        width: 100%;
    }
}

@media (max-width: 500px) {
    #testimonials .testimonial-image img {
        /*display: none;*/
    }
}

#testimonials .testimonial-author {
    clear: both;
    margin-top: 20px;
    font-weight: 600;
    color: #6D6E71;
}

a.img-links {
    text-decoration: none;
}


/*----------Templates Page----------*/


/*#templates .row{
	margin-bottom: 45px;
}
@media (max-width: 767px) {
	#templates .row{
		margin-bottom: 0px;
	}	
	#templates .col-md-3{
		margin-bottom: 20px;
	}
}
#templates img{
	border: 1px solid #ccc;
	border-radius: 5px;
	padding: 5px;
}*/


/*----------Description Pages----------*/


/*#template-descriptions img{
	border: 1px solid #ccc;
	border-radius: 5px;
	padding: 5px;
}
@media (max-width: 990px){
	#template-descriptions img{
		margin-bottom: 20px;
	}
}
@media (max-width: 767px){
	#template-descriptions img{
		max-height: 420px;
		margin: 0px auto 20px;
	}
}
#template-descriptions #description p {
	margin-bottom: 20px;
}
#template-descriptions #description a:last-of-type {
	display: block;
}*/


/*----------Contact Page----------*/

@media (max-width: 767px) {
    label[for="contactName"],
    label[for="contactPhone"],
    label[for="contactEmail"] {
        display: none;
    }
}


/*--------------------------------------------------------
	FOOTER
--------------------------------------------------------*/

#footer-row {
    color: ;
    position: relative;
    bottom: 0px;
    width: 100%;
    padding: 70px 0px 20px;
    left: 15px;
}

#footer-row p {}

#footer-row a {
    color: #469164;
}


/*--------------------------------------------------------
	UTILITIES
--------------------------------------------------------*/


/*----------Nivo Slider----------*/

#slider-container-FD6,
#slider_FD6,
#slider_FD6 img {
    max-width: 100% !important;
    height: auto !important;
}