:root {
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    --LightBG: rgb(249, 249, 249);
    --PaleBlue: #B0BDED;
    --LightBlue: #6F86F7;
    --DeepBlue: #2547F5;
    --DarkBlue: #162C7C;
    --MainText: white;
    --secondaryText: rgb(255, 191, 53);
    --Font1: 'Poppins', sans-serif;
    --Font2: 'Spartan', sans-serif;
    --Font3: 'Hind', sans-serif;
    --Font4: 'Nunito', sans-serif;
    --GreyDivBG: #bbbbbb;
    --Button1: #2547F5;
    --Button1Hover: #162C7C;
    --Button2: #2547F5;
    --Button2Hover: #162C7C;
    --TransitionTime: 300ms;
    --Box-Shadow: 0px 4px 10px 0px rgba(0, 0, 0, .1);
    --wide: 0px 5vw 30px 5vw;
    --narrow: 0px 10vw 30px 10vw;
    --largeBottomBorder: 50px;
    --SoftBorder: 5px;
}



html,
body {
    Background-color: var(--LightBG);
    height: 100%;
    position: relative;
    font-family: var(--Font1);
    font-weight:lighter;
    color:var(--DarkBlue);
    font-size: 16px;
}


section{padding: 40px;}
/* section bg colors*/
.s1{background-color:white}
.s2{}
.s3{}
.s4{}
.s5{background-color:rgb(238, 238, 238)}
.s6{
}


* {
    margin: 0px;
    padding: 0px;
    text-decoration: none;
    list-style: none;
}

.main-container {
    min-height: 100vh;
    /* will cover the 100% of viewport */
    overflow: hidden;
    display: block;
    position: relative;
    padding-bottom: 0px;
    /* height of your footer */
}


p {
    font-size: 16px;
    font-family: var(--Font1);
    font-weight:lighter;
}

h1 {
    font-family: var(--Font1);
    font-weight: 500;
}

h2 {
    font-size: 30px;
    font-family: var(--Font2);
    font-weight: 400;
    color: var(--DarkBlue)
}

h3 {
    font-size: 25px;
    font-family: var(--Font1);
    color: var(--LightBlue);
    font-weight: 300;
}

h4 {
    font-size: 25px;
    font-family: var(--Font3);
}

h5 {
    font-size: 20px;
    font-family: var(--Font3);
}

li {
    font-size: 18px;
    font-family: var(--Font1);
    font-weight:lighter;
}

td {
    font-family: var(--Font1);
}

summary {
    font-size: 20px;
    font-family: var(--Font1);
}

details {
    font-size: 20px;
    font-family: var(--Font1);
}




@media(min-width: 768px) {
    .navigation a {
        display: block
    }

    h1 {
        font-size: 50px;
    }

    .subHero {
        display: flex;
        transition: 100ms;
        font-weight:normal;
    }

    .reviews {
        display: flex;
        transition: 100ms;
        padding: var(--wide)
    }

    .Mobile {
        display: block
    }

    .MobileOnly {
        display: none
    }

}



@media(max-width: 769px) {
    .navigation a {
        display: none
    }

    h1 {
        font-size: 35px;
    }

    .subHero {
        transition: 100ms
    }

    .reviews {
        transition: 100ms;
        background-color: var(--LightBG);
        padding: var(--wide)
    }

    .Mobile {
        display: none
    }

    .MobileOnly {
        display: Block
    }

    .navigation div {
        margin: 0px 20px;
        width: 20px;
        text-align: center;
    }

    .navigation i {
        font-size: 23px;
    }
}





.navigation {
    padding: 15px 40px 5px 20px;
    position: fixed;
    top: 0px;
    background-color: var(--MainText);
    height: 65px;
    width: 100vw;
    z-index: 99999;
    box-shadow: 0px 3px 8px rgba(159, 159, 159, 0.675);
    width: 99%;
}

.navlogo {
    height: 70px;
    position: absolute;
    bottom: 10px
}


.navigation a {
    text-decoration: none;
    font-size: 16px;
    padding: 14px;
    color: var(--DeepBlue);
    float: right;
    font-family: var(--Font1);
    font-weight: 500;
    transition: 300ms;
}

.navigation a:hover {
    color: var(--DarkBlue);
}

.navigationApplyButton {
    padding: 14px 14px;
    text-decoration: none;
    font-size: 14px;
    color: var(--MainText);
    float: right;
    font-family: sans-serif;
    font-weight: bold;
    background-color: var(--DeepBlue);
    border-radius: var(--SoftBorder);
    transition: 300ms;
    background-color: var(--DeepBlue);
    position: relative;
    bottom: 10px;
    margin-right: 20px;
}

.navigation div:hover {
    background-color: var(--DarkBlue);
}


.MobileNavButton {
    padding: 14px 25px;
    text-decoration: none;
    font-size: 14px;
    color: var(--MainText);
    float: right;
    font-weight: bold;
    border-radius: var(--SoftBorder);
    transition: 300ms;
    background-color: var(--DeepBlue);
}

.mobileNavigationClosed {
    position: fixed;
    top: -300px;
    transition: 500ms;
    width: 100%;
}

.mobileNavigationOpen {
    position: fixed;
    top: 60px;
    right: 0px;
    background-color: var(--DarkBlue);
    height: 400px;
    width: 100%;
    z-index: 99998;
    display: block;
    transition: 500ms;
    font-family: var(--Font1);
    box-shadow: 0px 10px 10px rgba(46, 46, 46, 0.675);
}

.mobileNavigationOpen a {
    font-family: var(--Font2);
    font-size: 15px;
    text-decoration: none;
    margin: 25px;
    line-height: 60px;
    color: var(--MainText);
    transition: 300ms
}

.mobileNavigationOpen a:hover {
    color: var(--secondaryText)
}







.hero {
    display: flex;
    background-image: url(Media/small-business-owner2.jpg);
    background-size: cover;
    background-position: top left;
    background-repeat: no-repeat;
    padding-bottom: 110px;
    text-align: center;

}

.hero div {
    padding: 100px 5vw 50px 5vw;
    width: 100%;
}


.hero p {
    font-size: 30px;
    color: var(--DarkBlue)
}



.hero B {
    color: var(--DeepBlue);
    text-shadow: 0px 1px 1px var(--DarkBlue);
    font-size: 30px;
    font-family: var(--Font1);
}

.heroButton {
    background-color: var(--DeepBlue);
    color: var(--MainText);
    border: solid 0px white;
    padding: 20px 40px;
    font-size: 22px;
    border-radius: var(--SoftBorder);
    margin: auto;
    box-shadow: 0px 3px 3px var(--LightBlue);
    transition: 200ms;
}

.heroButton:hover {
    background-color: var(--DarkBlue)
}

.getSmarter{padding:100px 0px 300px 0px;text-align:center;background-image: url(Media/officeWorkers.jpg);background-size: 100%;background-repeat:none;}




.ISOhero {
    display: flex;
    background-image: url(Media/onlineMerchant.jpg);
    background-size: cover;
    background-position: top left;
    background-repeat: no-repeat;
    padding-bottom: 110px;
    text-align: center;
    margin-bottom: 30px;

}

.ISOhero div {
    padding: 100px 5vw 50px 5vw;
    width: 100%;
    line-height: 300px;
}

.ISOhero p {
    font-size: 30px;
    color: var(--DarkBlue)
}

.ISOhero h1{color:var(--DarkBlue)}


.ISOWhy {
    display: flex;
    flex-wrap: wrap;
    transition: 100ms;
    margin: var(--narrow);
    padding-bottom: 20px;

}


.ISOWhy div {
    text-align: left;
    padding: 0px;
    flex: 1;
    padding: 0px;
    background-color: var(--MainText);
}

.ISOWhy p {
    font-size: 20px;
    line-height: 40px;
}

.ISOWhy ul {

    list-style-type: none;
}

.ISOWhy li {
    text-align: left;
    line-height: 40px;
    color: var(--DarkBlue);
}

.ISOWhy li::before {
    font-family: "Font Awesome 5 Pro";
    font-weight: 100;
    content: "\f058";
    padding: 0px 20px;
    color: var(--secondaryText);
    font-weight: 900;
}

.handshake {
    height: 100%;
}

.syndication {
    display: flex;
    flex-wrap: wrap;
    transition: 100ms;
    margin: var(--wide);
    padding-bottom: 20px;

}


.syndication div {
    text-align: left;
    padding: 0px;
    flex: 1;
    padding: 0px;
    background-color: var(--LightBlue);
}

.chart {
    height: 100%;
    width: 100%;
}


.ISOSub {
    display: flex;
    flex-wrap: wrap;
    transition: 100ms;
    margin: var(--wide);
    padding-bottom: 20px;
}


.ISOSub div {
    text-align: center;
    padding: 10px;
    flex: 1;
    background-color: var(--MainText);
    padding: 20px;
    text-align: center;
    font-family: var(--Font1);
    font-size: 20px;
    margin: 10px 10px;
}

.ISOSub i {
    font-size: 50px;
    font-weight: lighter;
    color: var(--DeepBlue)
}




.contact {
    display: flex;
    background-color: var(--LightBG);
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    transition: 100ms;
    margin: var(--wide);
    padding-bottom: 60px;
    padding-top: 0px;


}


.contact div {
    align-content: center;
    background-color: var(--MainText);
    padding: 0px;
    flex: 0 0 400px;
    border-radius: 5px;
    min-width: 300px;
    margin: 10px;

}

.contacttable {
    height: 100%;
}

.contacttable {
    text-align: left;
    font-family: var(--Font3);
}

.contacttable td {
    transition: 400ms;
    padding: 30px;
    cursor: pointer;
    width: 100%;
}

.contacttable td:hover {
    background-color: var(--LightBlue)
}

.contacttable a {
    text-decoration: none;
}

.contact h3 {
    font-size: 20px;
}

.contact h4 {
    font-size: 16px;
    font-family: var(--Font2);
    font-weight: lighter;
}


.Login {
    display: flex;
    background-color: var(--LightBG);
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    transition: 100ms;
    margin: var(--wide);
    padding-bottom: 60px;
    padding-top: 0px;
}

.LoginForm {
    align-content: center;
    background-color: var(--MainText);
    padding: 0px;
    flex: 0 0 400px;
    border-radius: 5px;
    margin: 10px;
}


.Faqhero {

    text-align: center;
    line-height: 80px;
    margin: 80px 0px 0px 0px;
}

.Faqhero h2,
h3 {
    color: var(--DarkBlue);
}

.Faqhero h3 {
    font-size: 18px
}

.searchBar {
    height: 50px;
    width: 50vw;
    border-radius: 20px;
    font-size: 20px;
    padding-left: 10px;
    font-family: "Font Awesome 5 Pro";
    border: solid 1px var(--DarkBlue);
    outline: none
}



.subHero {
    margin: var(--narrow);
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: -110px;
}

.subHero div {
    text-align: center;
    padding: 25px;
    margin: 0px;
    flex: 1;
    color: var(--MainText);
    background-color: var(--MainText);
}

.subHero div a {
    color: var(--MainText)
}

.subHero h4 {
    color: var(--DarkBlue);
    padding: 10px;
    font-size: 50px;
}

.subHero p {
    color: var(--DarkBlue);
    padding: 10px;
    font-size: 25px;
}

.subHero div i {
    font-size: 0px;
    width: 100%;
    color: var(--DeepBlue);
    margin-bottom: 10px;
}


.sectionHeadWide {
    text-align: center;
    margin: var(--wide);
    padding-bottom: 20px;
}

.sectionHeadNarrow {
    text-align: center;
    margin: var(--narrow);
    padding-bottom: 20px
}






.whatIs{ display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    flex-direction: row;
    transition: 100ms;
    margin: var(--wide);
    padding:0px;
    margin-top:100px;
    margin-bottom:50px;
    background-color: white;
    box-shadow: 0px 2px 5px -3px rgb(198, 198, 198);
  
    
}

.whatIs div{

    text-align: left;
    flex:1;
    margin:0px;
    transition: 300ms;
    background-color:white;
    min-height:50%;
    min-width: 400px;
}





.whatIs img {height:400px;position: relative;bottom:-25px;}

.whatIs h3,.whatIs h2 {padding:15px}

.whatIs h3{font-size:18px;}



.UseFunds {
    display: flex;
    transition: 100ms;
    flex-wrap: wrap;
    margin: var(--wide);
   
}

.UseFunds div {
    flex: 1;
    text-align: center;
    color: white;
    padding: 20px;
    line-height: 35px;
    min-width: 330px;
    transition: 300ms;
    font-size: 30px;
    background-size: 120%;
    background-repeat: none;
    background-position: center;
    box-shadow: 0px 2px 5px -3px rgb(198, 198, 198);
    min-height: 200px;
    text-transform: uppercase;
    font-family: var(--Font1);
    font-weight: normal;
    text-shadow: 2px 2px 3px black;
    margin: 10px;
    background-color: rgb(68, 210, 254);
    box-shadow: 0px 5px 3px -2px rgb(184, 184, 184);
   
}


.UseFunds div:hover {
    background-size: 150%;
    background-color: rgb(210, 210, 210);
    transform: translateY(-5px);
    transition: 300ms;
}


.inventory {
    background-image: url(Media/inventory.png);
}


.hire {
    background-image: url(Media/hire.png);
}

.repairs {
    background-image: url(Media/repairs.png);
}

.location {
    background-image: url(Media/newBusiness.png);
}

.payroll {
    background-image: url(Media/payroll.png);
}

.save {
    background-image: url(Media/save.png);
}





.whyTSM {
    display: flex;
    transition: 100ms;
    margin: var(--wide);
    padding-bottom: 20px;
    
}

.whyTSM div {

    text-align: center;
    padding: 0px;
    flex: 1;
    background-color: var(--MainText);
    box-shadow: 0px 2px 5px -3px rgb(198, 198, 198);
}

.whyTSM ul {
    padding: 20px;
    color:var(--DarkBlue);
    list-style-type: none;
}

.whyTSM li {
    text-align: left;
    line-height: 60px;
    color:var(--DarkBlue);
}

.whyTSM li::before {
    font-family: "Font Awesome 5 Pro";
    font-weight: 100;
    content: "\f058";
    padding: 0px 20px;
    color: var(--secondaryText);
    font-weight: 900;
}


.bizOwner {
    background-image: url(Media/2-Business-Owners_dreamstime.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.process {
    display: flex;
    align-content: center;
    align-items: center;
    flex-direction: row;
    margin:var(--wide);
    color: var(--DarkBlue);
    min-width: 350px;
    padding:40px;
    background-image: url(Media/tablewphone.jpg);background-size:cover;background-repeat: none;background-position: top left;
    
    
}

.process div{text-align: center;
    padding: 0px;
    flex: 1;
    align-items: center;
    align-content: center;
    text-align: left;
    min-width: 350px;
    }

.process table {
    margin: 0px;
    padding:0px;
    height:100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    min-width: 350px;
    background-color: white;
    box-shadow: 0px 2px 5px -3px rgb(198, 198, 198);
}

.process img {
   height: 400px;padding 0px 100px;margin: auto;
}



.process td:nth-child(1) {
    width: 100px;
    color: var(--Button1);
    text-align: center;
    font-size: 40px;
}

.process td:nth-child(2) {
    padding: 10px;
}

@media(max-width: 768px) {
    .faq {
        margin: var(--wide);
        position: relative;
        bottom: 40px;
        min-height: 450px;
    }
}

@media(min-width: 768px) {
    .faq {
        margin: var(--wide);
        position: relative;
        bottom: 40px;
        min-height: 415px;
    }
}



.faqCase {
    background-color: var(--DarkBlue);
}

details {
    width: calc(100% - 33px);
}

details[open] summary~* {
    animation: sweep .3s ease-in-out;
}

@keyframes sweep {
    from {
        opacity: 0;
        margin-top: -10px;
    }

    to {
        opacity: 1;
        margin-top: 0px;
    }
}

summary {
    width: 100%;
    background-color: var(--DeepBlue);
    color: var(--MainText);
    margin: 3px 0px;
    padding: 10px;
    cursor: pointer;
    outline: none;
}

.summaryContent {
    padding: 0px;
    font-size: 16px;
    width: 100%;
}


.qualify {
    padding: var(--narrow)
}


.qualify p {
    color: var(--DarkBlue);
    font-size: 30px;
}

.qualify img {
    width: 25vw;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.qualify table {
    background-color: var(--DeepBlue);
    margin: 0px;
    border-collapse: collapse;
    margin-bottom: var(--largeBottomBorder);
}

.qualify td {
    width: 33%;
    text-align: left;
    padding: 0PX 15px;
    white-space: nowrap;
    color: var(--secondaryText)
}


.qualify td:nth-child(2) {
    background-color: var(--DarkBlue);
    var(--MainText);
    width: 33%;
    color: var(--MainText)
}



.qHolder {
    background-color: var(--PaleBlue);
    text-align: center;
}

.Map {
    margin: var(--narrow);
    text-align: center;
    
}

.Map img {
    background-color: var(--MainText);
    box-shadow: 0px 2px 5px -3px rgb(198, 198, 198);
}

.Map h1 {
    color: var(--DarkBlue);
    padding: 30px
}



.reviews div {
    text-align: center;
    padding: 30px;
    margin: 25px 10px;
    border-radius: var(--SoftBorder);
    flex: 1;

    background-color: rgba(255, 255, 255, 0.53);
    box-shadow: 0px 6px 6px rgba(177, 136, 93, 0.1);
}

.reviews div section {
    display: flex;
    text-align: left;
    margin: 0px 5px;
}

.reviews div section p {
    font-weight: bold;
    padding-left: 10px;
}

.reviews i {
    color: var(--secondaryText);
}

.reviews p,
h1,
h4,
h5,
li {
    color: black;
}

.reviews H5 {
    text-align: left;
    font-size: 15px;
}





.disclaimer {
    background-color:grey;
    padding: 20px;
    color: var(--MainText);
    font-family: var(--Font1);
    font-size: 14px;
}

/* for short height pages. wrap page with main container class */
.footerContainer {
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* for_full_height_pages */

.footerContainerTall {
    position: relative;
    bottom: 0;
    width: 100%;
}



.footer {
    display: flex;
    flex-wrap: wrap;
    background-color: black;
    padding: 10px 10px;
    color: var(--MainText);
    font-family: var(--Font1);
    font-size: 12px;
    text-align: center;
    align-content: center;
    align-items: center;

}

.footer div {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    text-align: center;
}

.footer a {
    color: white
}



.footer table {
    width: 100%
}

.footer td {
    white-space: nowrap;
    padding: 0px 10px;
    text-align: left;
}


.footerLinks a {
    width: 100px;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--LightBlue);
    transition: 300ms
}

.footerLinks a:hover {
    color: white
}

.footer img {
    height: 80px;
}

.subfooter {
    background-color: rgb(48, 48, 48);
    padding: 10px;
    color: white;
    text-align: center;
    font-family: var(--Font1);
    font-size: 12px;
}


.footerBottom {
    position: fixed;
    bottom: 80px;
    left: 0px
}

.subFooterBottom {
    position: fixed;
    bottom: 0px;
    left: 0px
}

.chartSection {
    display: flex;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(8, 2, 149, 1) 71%);
    margin: var(--wide);
    flex-wrap: wrap;
    padding: 20px 0px
}

@media(max-width: 768px) {
    .chartSection div {
        flex: 0 100%;
    }
}

@media(min-width: 769px) {
    .chartSection div {
        flex: 0 49%;
    }
}



.chartSection table {
    background-color: var(--GreyDivBG);
    width: 100%;
    height: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.chartSection th {
    background-color: var(--secondaryText);
    padding: 1vw;
    text-align: left;
}

.chartSection td {
    padding: 0px 1vw;
}

.chartSection tr {
    transition: 300ms
}

.chartSection tr:hover {
    background-color: var(--LightBlue);
}

/* apply page*/



.apply {
    display: flex;
    background-color: var(--MainText);
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    transition: 100ms;
    margin: var(--narrow);
    PADDING-TOP: 20PX;
    padding-bottom: 60px;
    width: 400px;
    margin-top: 200px;
    align-content: center;
    box-shadow: 5px 5px 8px 0px grey;


}