<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
:root {
    --green: #78d64b;
    --lightgreen: #9cee74;
    --palegreen: #c6edb3;
    --lightpalegreen: #ddf4d1;
    --darkgreen: #4c8c2b;

    --gray: #d9d9d9;
    --lightgray: #e6e6e6;
    --vlightgray: #f0f0f1;
    --darkgray: #63666a;

    --xgray: #c7c8da;
    --xlightgray: #e1e2ec;

    --purple: #686e9f;
    --darkpurple: #4c517f;
    --lightpalepurple: #e1e2ec;

    --yellow: #f2c446;
    --lightyellow: #fcf3da;
    --blue: #66babf;
    --lightblue: #c2e3e5;
    --red: #e94e1b;

    --coral: #ea9b7f;
    --lightcoral: #f7d7cc;

    --black: #161815;
}


body {
    margin: 0;
    color: var(--black);
    font-family: "stratos", sans-serif;
    font-weight: 400;
    font-style: normal;
}



p {
    font-weight: 400;
    font-size: 1rem;
}

p.feature {
    font-size: 1.5rem;
    font-weight: 500;
}

ul.feature {
    font-size: 1.25rem;
    font-weight: 500;
}

h1 {
    font-size: 6rem;
    font-weight: 500;
    line-height: 1.1;
}

h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

h3, h4 {font-weight: 700;}

a {
    color: var(--green);
    text-decoration: none;
    text-transform: uppercase;
}

a, .button {transition: 250ms;}

a:hover {
    color: var(--darkgreen);
}

p a,
li a {
    text-transform: none;
    color: var(--darkgreen);
}

p a:hover,
li a:hover {
    text-decoration: underline;
}

a.tel,
a.tel:hover {
    color: var(--black);
    cursor: text;
    text-decoration: none;
}

.btn {
    border-radius: 0;
    text-transform: uppercase;
    text-align: center;
    border: 0;
}

.btn-secondary {
    background-color: var(--xgray);
    color: var(--darkgray);
}

.btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
    background-color: var(--black);
}

.btn-check + .btn:hover {
    background-color: var(--darkgray);
}

.button {
    position: relative;    
    display: inline-block;
    letter-spacing: 1;
    font-size: 1.5rem;
    padding: .75rem 1.75rem;
    text-transform: uppercase;
    border: 0;
}

.button.featured {
    font-weight: 700;
    color: var(--black);
    background: var(--green);
}

.button.featured:hover {    
    color: var(--black);
    background: var(--lightgreen);
}

.button.grayed {
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--darkgray);
    background: var(--lightgray);

}

.button.grayed:hover {    
    color: var(--black);
    background: var(--gray);
}

.button.purple {
    color: white;
    background: var(--purple);
}

.button.purple:hover {
    background: var(--darkpurple);
}

.button.black {
    color: white;
    background: var(--black);
}

.button.clear {
    color: var(--black);
}

.button.featured.arrowright:after,
.button.clear.arrowright:after {border-color: var(--black);}



.button.download:after {

    font-family: "Font Awesome 5 Free"; 
    font-weight: 900; 
    content: "\f019";
    position: absolute;
    right: 1.75rem;

}

.button.black:hover,
.button.clear:hover {
    /*box-shadow: inset 0 0 0 5px var(--lightgreen);*/
    color: var(--black);
    background: white;
}

.button.black.arrowright:hover:after {border-color: var(--black);}




.button.featured.curl {
    position: relative;
    display: inline-block;
    line-height: 1;
    letter-spacing: 1;
    font-size: 2rem;
    padding: 1rem 1.5rem;
}

.button.featured.curl:after {
    position: absolute;
    content: '';
    background: url('../images/greencurl.gif') top left no-repeat;
    background-size: contain;
    height: 120%;
    width: 35px;
    bottom: 0;
    left: 100%;
}


.button.featured.curl:hover {
    padding-right: 5.5rem;
}

.button.featured.curl:hover:after {
    position: absolute;
    content: "";
    display: inline-block;

    width: 0.5em;
    height: 0.5em;
    border-right: 0.17em solid black;
    border-top: 0.17em solid black;
    transform: rotate(45deg) translateY(-80%);
    margin-right: 0.5em;

    right: .75rem;
    top: 50%;
    bottom: initial;
    left: initial;
    background: none;
}

.disclaimer  {
    font-size: .85rem; 
    opacity: .85;
}


@media all and (max-width: 1199px) {
    h1 {font-size: 4rem; margin-bottom: 2rem;}
}


@media all and (max-width: 767px) {
    h2 {font-size: 2.25rem;}
    h3 {font-size: 1.75rem;}
}

@media all and (max-width: 499px) {
    h2 {font-size: 2rem;}
    h3 {font-size: 1.5rem;}
}





/* ------ ACCORDION ------ */

.accordion h3 {position: relative;}

.accordion .accordion-button.curl {
    position: relative;
    background: var(--palegreen) !important;
    color: var(--black) !important;
}

.accordion .accordion-button.curl:after {
    content: none;
}

.accordion .accordion-button.curl:hover,
.accordion .accordion-button.curl:not(.collapsed) {
    width: calc(100% - 100px);
}

.accordion .accordion-button.curl:hover:before,
.accordion .accordion-button.curl:not(.collapsed):before,
.accordion .accordion-button.curl:not(.collapsed):hover:before {
    position: absolute;
    content: '';
    background: url('../images/lightgreencurl.gif') top left no-repeat;
    background-size: contain;
    height: 120%;
    width: 38px;
    bottom: 0;
    left: 100%;
    z-index: 99999999;
}

.accordion .accordion-button.curl:focus {
    border: 0;
    box-shadow: none;
}

.accordion-button.curl + .arrow {
    position: absolute;
    display: none;
    width: 0.5em;
    height: 0.5em;
    border-right: 0.17em solid var(--black);
    border-top: 0.17em solid var(--black);
    transform: rotate(135deg) translateX(-80%);
    right: 2.75rem;
    top: 50%;
    z-index: 9;
}

.accordion-button.curl:not(.collapsed)+.arrow,
.accordion-button.curl:hover+.arrow {
    display: inline-block !important;
}


.accordion-button.curl+.arrow:before {
    content: '';
    position: absolute;
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border-right: 0.17em solid var(--black);
    border-top: 0.17em solid var(--black);
    transform: translateX(0%);
    top: -0.25rem;
    z-index: 9;
    transition: 50ms linear;
}

.accordion-button.curl+.arrow:after {
    content: '';
    position: absolute;
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border-right: 0.17em solid var(--black);
    border-top: 0.17em solid var(--black);
    transform: translateX(0%);
    top: -0.25rem;
    z-index: 9;
    transition: 50ms linear;
}

.accordion-button.curl.collapsed {
    padding-right: 4.5rem !important;
}

.accordion-button.curl:not(.collapsed) {
    padding-right: 0.25rem !important;
}

.accordion-button.curl:not(.collapsed)+.arrow:before {
    transform: translateX(-65%);
    top: .2em;
}

.accordion-button.curl:not(.collapsed)+.arrow:after {
    transform: translateX(65%);
    top: -.8rem;
}








.arrowdown:after {
    position: absolute;
    content: "";
    display: inline-block;

    width: 0.75em;
    height: 0.75em;
    border-right: 0.25em solid white;
    border-top: 0.25em solid white;
    transform: rotate(135deg) translateX(-100%);
    margin-right: 2em;
    right: .25rem;
    top: 50%;
}

.button.arrowright {
    padding-right: 4rem;
}

.arrowright:after {
    position: absolute;
    content: "";
    display: inline-block;

    width: 0.5em;
    height: 0.5em;
    border-right: 0.17em solid white;
    border-top: 0.17em solid white;
    transform: rotate(45deg) translateY(-80%);


    right: 2.25rem;
    top: 50%;
    bottom: initial;
    left: initial;
    background: none;
}


.accordion-item {
    border: 0;
    margin-bottom: .5rem;
}


.accordion-button {
    border-radius: 0 !important;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 2rem;
    background:var(--palegreen);
    display: block;
}



.accordion-body {
    font-size: 1.5rem;
    padding: 2rem;
}
.accordion-body p:last-of-type {margin-bottom: 0;}




.info {color: var(--purple);}
.info:hover {color: var(--darkpurple);}






@media all and (max-width: 991px) {

    .accordion-button {
        padding: 1rem 1.25rem;
    }

    .accordion-button.curl+.arrow {
        right: 2rem;
    }

}

@media all and (max-width: 575px) {
    .accordion-button.curl+.arrow:before,
    .accordion-button.curl+.arrow:after {
        content: none;
    }
}

@media all and (max-width: 475px) {
    .accordion-button span {display: none;}
    .accordion-button.curl.collapsed {
        padding-right: 3.5rem !important;
    }
}










/* ------ CAROUSEL ------ */


#internalcarousel img {
    display: block;
    width: 80%;
    margin: 0 auto;
}

.carousel &gt; button &gt; span:first-child {
    background: none;
}

.carousel &gt; button &gt; span:first-child:before {
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900; 
    color: var(--black);
    font-size: 2rem;
}

.carousel &gt; button.carousel-control-prev &gt; span:first-child:before {
    content: "\f104";
}


.carousel &gt; button.carousel-control-next &gt; span:first-child:before {
    content: "\f105";
}








/* ----------------------- HEADER ----------------------- */
header {
    padding: 1rem 2rem;
    position: relative;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    max-width: 2000px;
    margin: 0 auto;
}

header .left img {
    width: 250px;
}

header .right ul {
    list-style-type: none;
    list-style-type: none;
    margin: 0;
}

header .right ul li {
    position: relative;
}




header a {
    letter-spacing: 1;
    display: inline-block;
    position: relative;
    font-weight: 500;
    font-size: 1.65rem;
    color: var(--darkgray);
    line-height: 1;
    padding: .75rem 1rem;
    text-decoration: none !important;
    text-transform: uppercase !important;
}

header .left a {padding-left: 0;}

header a:hover {color: black;}

header a.featured {
    /*padding-right: 4rem;*/
    margin-left: 1.25rem;
}

/*header a.featured:after {
    position: absolute;
    content: "";
    display: inline-block;

    width: 0.5em;
    height: 0.5em;
    border-right: 0.17em solid black;
    border-top: 0.17em solid black;
    transform: rotate(45deg) translateY(-80%);
    margin-right: 0.5em;

    right: .75rem;
    top: 50%;
}*/




@media all and (min-width: 1200px) {
    header .right ul {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
    }
    
    #sidenav {width: initial !important;}

    .hamburger-button {display: none;}






    
    header .right ul li ul {
        z-index: 9;
        min-width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        position: absolute;
        background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.25);
        top: 100%;
        left: 0%;
        padding: 0;
        margin: 0;
    }

    header .right ul li ul:before {
        content: "";
        position: absolute;
        top: -10px;
        left: 0;
        width: 100%;
        height: 10px;
        background: white;
        display: block;
    }

    header .right ul li ul li a {
        text-align: left;
        font-size: 1.2rem;
        display: block;
        width: 100%;
    }

    header .right ul li a:hover + ul,
    header .right ul li a + ul:hover {
        display: flex;

    }
}








@media all and (max-width: 1199px) {

    header .right ul li ul {
        padding-left: 1.25rem;
    }

    header .right ul li ul a {
        font-size: 1.25rem;
    }


    
    .sidenav {
        height: 100%;
        width: 0;
        position: fixed;
        z-index: 95;
        top: 0;
        right: 0;
        background-color: #fff!important;
        overflow-x: hidden;
        transition: 0.3s;
        padding-top: 60px;
        box-shadow: 0px 0px 8px #888888;
      }

      .sidenav.opened {
        width: 250px;
      }

      .sidenav &gt; ul {
        position: fixed;
        overflow-x: hidden;
      }
      
      .sidenav a {
        padding: 8px 8px 8px 16px;
        text-decoration: none;
        font-size: 25px;
        display: block;
        transition: 0.3s;
      }
      
      .sidenav a:hover {
        color: #f1f1f1;
      }
      
      .sidenav::-webkit-scrollbar { 
        display: none; 
      } 
      
      .animated-icon:hover &gt; * {
        background: var(--green);
      }

      .animated-icon.open {
        position: fixed;
        top: 43px;
        right: 2rem;
      }

      .animated-icon {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
        margin: 0px;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        -o-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        cursor: pointer;
      }
        
        .animated-icon span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        border-radius: 9px;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
        }
        
        .animated-icon span {
        background: var(--darkgray);
        }
        
        .animated-icon span:nth-child(1) {
        top: 0px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
        }
        
        .animated-icon span:nth-child(2) {
        top: 10px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
        }
        
        .animated-icon span:nth-child(3) {
        top: 20px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
        }
        
        .animated-icon.open span:nth-child(1) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 0px;
        left: 8px;
        }
        
        .animated-icon.open span:nth-child(2) {
        width: 0%;
        opacity: 0;
        }
        
        .animated-icon.open span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 21px;
        left: 8px;
        }
    
        button.hamburger-button {position: relative;}

    }
    
    
    @media all and (max-width: 676px) {   
        header {padding: 0 1rem 1rem;} 
        header .left img {width: 200px;}
        .animated-icon.open {
            top: 22px;
            right: 1rem;
        }

    }



/* ----------------------- BODY ----------------------- */
.body {
    position: relative;
    min-height: calc(100vh - 400px);
    width: 100%;
}

.section {
    padding: 5rem 0;
    position: relative;
}

.section.palegreen {background: var(--palegreen);}
.section.yellow {background: var(--yellow);}
.section.lightyellow {background: var(--lightyellow);}
.section.lightblue {background: var(--lightblue);}
.section.coral {background: var(--coral);}
.section.lightcoral {background: var(--lightcoral);}





/* ----------------------- HOME ----------------------- */



/* --------- INTRO --------- */



.flip-vertical {
    position: absolute;
    display: inline-block;
    border: 0;
}
    
.flip-vertical&gt;.front,
.flip-vertical&gt;.back {
    display: inline-block;
    width: inherit;
    background: #fff;
    height: 140px;
    transition-timing-function: cubic-bezier(.175, .885, .32, 1.275);
    transition-duration: .5s;
    transition-property: transform, opacity;
}
.flip-vertical&gt;.front {
    transform: rotateY(0deg);
}
.flip-vertical&gt;.back {
    position: absolute;
    opacity: 0;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    transform: rotateY(-180deg);
}

.flip-vertical.flipped&gt;.front {
    transform: rotateY(180deg);
}
.flip-vertical.flipped&gt;.back {
    opacity: 1;
    transform: rotateY(0deg);
}
    
.flip-vertical.flip-vertical&gt;.back {
    transform: rotateX(-180deg);
}

.flip-vertical.flip-vertical.flipped&gt;.front {
    transform: rotateX(180deg);
}

.flip-vertical.flip-vertical.flipped&gt;.back {
    transform: rotateX(0deg);
}
     








.intro {padding-bottom: 0;}

.intro &gt; div {position: relative;}

.introtext {
    padding: 3rem 0 6rem;
}


.introtext .featuretext-big {
    font-size: 7rem;
    font-weight: 500;
    line-height: 1.1;
}


.introtext .featuretext-big strong {
    font-weight: 800;
}

.introtext .featuretext-big.green strong {
    color: var(--green);
}
.introtext .featuretext-big.yellow strong {
    color: var(--yellow);
}
.introtext .featuretext-big.blue strong {
    color: var(--blue);
}
.introtext .featuretext-big.coral strong {
    color: var(--coral);
}



.introtext .featuretext-small {
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.25;
    margin: 2rem 0 3rem;
}

.introtext .featuretext-small:last-child {margin-bottom: 0px !important;}

.introtext .featuretext-big &gt; span,
.introtext .featuretext-small &gt; span {display: block;}






.intrographic {
    position: relative;
    display: block;
    bottom: 0;
    padding: 0;
    width: 422px;
    height: 689px;
}

.intrographic &gt; div {
    display: block;
    width: 100%;
    position: absolute;
    transition: 1000ms;
}


.intrographic img {width: 100%;}


.intrographic .cloud {
    top: 0;
}

.intrographic .organized {
    background: url('../images/cloud-organized.svg') no-repeat top center;
    background-size: 100%;
    height: 0%;
    top: 25%;
}

.intrographic .disorganized {
    background: url('../images/cloud-mess.svg') no-repeat bottom center;
    background-size: 100%;
    height: 80%;
    bottom: 0;
}









.intrographic.slide .cloud {
    top: calc(100% - 250px);
}

.intrographic.slide .organized {
    height: 80%;
    top: 10%;
}

.intrographic.slide .disorganized {
    height: 0%;
    bottom: 50px;
}

















/* @media all and (max-width: 1599px) {

    .introtext .featuretext-big {font-size: 6rem;}

    .flip-vertical&gt;.front,
    .flip-vertical&gt;.back {height: 120px}
}*/

@media all and (max-width: 1399px) {
    .introtext .featuretext-big {font-size: 5rem;}
    .introtext .featuretext-small {font-size: 1.5rem;}
    .flip-vertical&gt;.front, .flip-vertical&gt;.back {height: 100px;}
    .intrographic {height: 615px;}
    .intrographic .disorganized {height: 78%;}
    .intrographic.slide .cloud {top: 65%;}

}

@media all and (max-width: 1199px) {
    .section.intro {padding-top: 0;}
    .intrographic {height: 510px;}
    .flip-vertical&gt;.front, 
    .flip-vertical&gt;.back {height: 80px;}
    .introtext .featuretext-big {font-size: 4rem;}
    .introtext .featuretext-small {font-size: 1.15rem;}
    
}


@media all and (max-width: 991px) {
    .introtext {padding: 3rem 1rem 4rem;}

    .intrographic {height: 374px;}
    .flip-vertical&gt;.front, 
    .flip-vertical&gt;.back {height: 80px;}

}

@media all and (max-width: 575px) {
    .introtext .featuretext-big {font-size: 3.5rem;}
    .introtext .featuretext-small {font-size: 1rem;}
    
    .flip-vertical&gt;.front, 
    .flip-vertical&gt;.back {height: 70px;}
    header a.featured {display: none;}
    
    .introtext .featuretext-small &gt; span {display: inline;}
}


@media all and (max-width: 475px) {
    .introtext .featuretext-big {font-size: 2.75rem;}   
    
    .flip-vertical&gt;.front, 
    .flip-vertical&gt;.back {height: 53px;}

}
@media all and (max-width: 375px) {
    .introtext .featuretext-big {font-size: 2.25rem;}  

    .flip-vertical&gt;.front, 
    .flip-vertical&gt;.back {height: 43px;}
}





/* --------- SECTOR --------- */

.sector .row.sectorMain &gt; div {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    position: relative;
}

.sector .row.sectorMain &gt; div .icon {
    height: 100px;
    max-width: 200px;
    display: flex;
    margin: 1rem auto 2rem;
    align-items: center;
    justify-content: center;
}

.sector .row.sectorMain &gt; div .icon img {
    max-width: 100%;
    max-height: 100%;
}

.sector .row.sectorMain &gt; div &gt; div {
    background-color: #fff;
    padding: 2rem;
    position: relative;
    flex-grow: 2;
}

.sector h3 {
    font-weight: 500;
    font-size: 3rem;
}

.sector p {margin-bottom: 0;}

.sector button {
    text-transform: uppercase;
    line-height: 1;
    text-align: left;
    display: block;
    width: 100%;
    padding: 2rem;
    font-size: 1.25rem;
    font-weight: 600;
    bottom: 0px;
    left: 0px;
    border: none;
}




.sector .sectormain .button:not(.collapsed) {
    color: var(--black);
}


.sector .sectormain .button:not(.collapsed):before {
    content: "";
    display: block;
    height: 3px;
    border-radius: 100%;
    width: 60%;
    opacity: 20%;
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&amp;1+0,0+100 */
background: -moz-radial-gradient(center, ellipse cover, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
background: -webkit-radial-gradient(center, ellipse cover, rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
background: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}


.sector .button.arrowdown:not(.collapsed):after {
    position: absolute;
    content: "";
    display: inline-block;
    width: 0.75em;
    height: 0.75em;
    border-right: 0.25em solid var(--black);
    border-top: 0.25em solid var(--black);
    transform: rotate(-45deg) translateX(50%);
    margin-right: 1.25em;
    right: 0.85rem;
    top: 50%;
}


.sector .button.k12button:not(.collapsed),
#collapseK12&gt;div {
    background: var(--yellow);
}

.sector .button.enterprisebutton:not(.collapsed),
#collapseEnterprise&gt;div {
    background: var(--blue);
}

.sector .button.governmentbutton:not(.collapsed),
#collapseGovernment&gt;div {
    background: var(--coral);
}











.sector .row.accordions {margin-top: -1rem;}
.row.accordions &gt; div {padding: 0 !important;}

#sectorTabs .accordion-collapse {
    margin: 0 1rem 0;
}

#sectorTabs .accordion-body {
    padding: 2rem;
    background-position: 102% 50%;
    background-repeat: no-repeat;
    background-size: 35%;
}



#sectorTabs .accordion-body .container &gt; div  {
    padding: 2rem;
}


.sector .accordion-body h3 {
    font-size: 5rem;
    font-weight: 700;
}

.sector .accordion-body ul,
.sector .accordion-body ul li {
    margin-left: .5rem;
    font-size: 1rem;
    line-height: 1.5;
}

.sector .accordion-body ul {
    margin: 2rem 0 2.25rem;
    padding: 0;
}


.sector .accordion-body ul li {
    margin-bottom: .25rem;
}

.sector .accordion-body .button {
    font-weight: 600;
}






@media all and (max-width: 1199px) {
    .sector h3 {
        font-weight: 600;
        font-size: 2rem;
    }
}


@media all and (max-width: 991px) {
    #sectorTabs .accordion-body {background-image: none !important;}
    .sector .row.sectorMain &gt; div &gt; div {padding: 1rem;}
    .sector .sectorMain h3 {font-size: 1.5rem;}
    .sector .sectorMain button {padding: 1rem;}
    .sector .arrowdown:after {right: -.5rem;}
    .sector .button.arrowdown:not(.collapsed):after {right: 0;}
}


@media all and (max-width: 767px) {
    .sector .row.sectorMain &gt; div .icon {
        margin: 0 0 1rem;
        height: 60px;
    }
    .sector .sectorMain h3 {
        font-size: 1.2rem;
        text-align: center;
    }
    .sectorMain p {display: none;}

    .sector .sectorMain button {padding: 1.5rem 1rem;}

    .sector .sectorMain button span {display: none;}


    .sector .arrowdown:after {
        right: 50%;
        margin: 0;
    }

    .sector .button.arrowdown:not(.collapsed):after {
        right: calc(50% - 5px);
        margin: 0;
    }


    #sectorTabs .accordion-body {padding: 0;}
    .sector .accordion-body h3 {font-size: 3rem;}

}


@media all and (max-width: 575px) {
    #sectorTabs .accordion-body .container &gt; div {padding: 2rem 0;}
    
    #sectorTabs .accordion-body {padding: 0;}
    #sectorTabs .accordion-collapse {margin: 0;}
    .sector .row.sectorMain &gt; div {padding: initial;}

    .sector .row.sectorMain &gt; div:not(:last-of-type) {
        border: solid rgba(0,0,0,.0);
        border-width: 0 1px 0 0;
    }

    .sector .row.accordions {margin-top: 0;}

    .sector p.feature {font-size: 1.2rem;}
    .sector .accordion-body .button {margin-bottom: 1rem;}
}

@media all and (max-width: 420px) {
    
    .sector .sectorMain h3 {font-size: 1rem;}
}
















/* --------- APART --------- */
.apart .row &gt; div {
    padding: 0 2rem;
}
.apart .row &gt; div img {
    width: 50px;
    margin-bottom: 1rem;
}

@media all and (max-width: 991px) {
    .apart .row &gt; div {
        padding: 0 2rem 2rem;
    }
}


@media all and (max-width: 767px) {
    .apart .row &gt; div {
        padding: 0 1rem 1rem;
    }
}



/* --------- REVIEWS --------- */
.reviews .owl-stage-outer {
    padding: 2rem 0;
}

.reviews .owl-stage {
    display: flex;
}


.reviews .owl-item {
    background: white;
    padding: 2rem;
    display: flex;
    align-items: stretch;
    transition: 500ms;
    display: flex;
    justify-content: center;
}


.reviews .owl-item:not(.active.center) {
    opacity: .5;
    transform: scale(.95,.95);
}

.reviews .owl-item.active.center {
    transform: scale(1.15,1.15);
    margin-right: 0 !important;
    box-shadow: 0px 0px 30px 15px var(--palegreen);
    z-index: 1;
    
}

.reviews .owl-item &gt; div {
    display: flex;
    flex-direction: column;
    max-width: 80vw;
}

.reviews .owl-item .quote {
    flex-grow: 2;
    display: flex;
    align-items: center;
}


.reviews blockquote {
    text-align: center;
    font-weight: 700;
    margin: 3rem 0 5rem;
    font-size: 1rem;
    position: relative;
    line-height: 1.35;
}


.reviews blockquote:before,
.reviews blockquote:after {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;

}


.reviews .owl-item:nth-child(3n-2) blockquote:before,
.reviews .owl-item:nth-child(n-2) blockquote:after {
    color: var(--yellow);
}
.reviews .owl-item:nth-child(3n-1) blockquote:before,
.reviews .owl-item:nth-child(3n-1) blockquote:after {
    color: var(--blue);
}
.reviews .owl-item:nth-child(3n) blockquote:before,
.reviews .owl-item:nth-child(3n) blockquote:after {
    color: var(--red);
}


.reviews blockquote:before {
    content: "â€œ";
    top: -2rem;
}

.reviews blockquote:after {
    content: "â€";
    bottom: -3.25rem;
}


.reviews p {
    margin: 0;
    text-align: center;
    font-size: .75rem;
    font-weight: 500;
}








/* --------- FITS --------- */

.fits .row &gt; div {display: flex;}

.fits .row &gt; div &gt; div {
    position: relative;
    background: var(--lightpalepurple);
    padding: 4rem 2rem 2.5rem;
    width: 100%;
    display: block;

}

.fits .mostpopular {
    position: absolute;
    width: 100%;
    display: block;
    margin: 0;
    top: 0;
    left: 0;
    background: var(--black);
    color: white;
    text-align: center;
    font-weight: 400;
    padding: .25rem 0;
}

.fits h3 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.fits .note {font-weight: 800;}

.fits p,
.fits li {font-weight: 600;}

.fits ul {
    padding-left: 1.15rem;
}

.fits .button {
    width: 100%;
}




@media all and (max-width: 1199px) {
    .fits .row &gt; div:not(:last-of-type) {
        padding-bottom: 1.5rem;
    }
}


@media all and (max-width: 767px) {
    .fits p:last-child {margin-bottom: 0;}
    .fits .row &gt; div &gt; div {padding: 3rem 2rem 2rem;}
}









/* --------- CTA --------- */
.cta {margin-bottom: 2rem;}

.cta .btn-group {
    display: table;
    margin: 0 auto;
    text-align: center;
}

.cta .btn-group .button {
    margin: 0 1rem 1rem;
}






/* ----------------------- FOOTER ----------------------- */
footer {
    position: relative;
    display: table;
    width: 100%;
    background-color: var(--darkgray);
    padding: 5rem 2rem 3rem;
    color: white;
}

footer .footer-logo {
    display: block;
    max-width: 275px;
}

footer h4 {
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

footer a {
    color: white;
    font-weight: 400;
    text-transform: none;
    font-size: 1rem;
}

footer a:hover {
    color: var(--lightgreen);
}

footer ul {padding: 0;}
footer ul li {
    list-style-type: none;
    margin-bottom: .5rem;
}

footer ul.footer-sm {
    margin: 0;
}

footer ul.footer-sm li {
    display: inline;
    margin: 0;
}


footer ul.footer-sm li a {
    font-size: 2rem;
    padding: 0 1rem 0 0;
}


@media all and (max-width: 767px) {

    footer {padding: 4rem 2rem 2rem;}

    footer .footer-logo {margin-bottom: 0;}
    footer h4 {margin-bottom: .5rem;}
    footer .row &gt; div {margin-bottom: 2rem;}
    footer .row ul {padding-left: .5rem;}
    .footer-sm {text-align: center;}
}













/* ----------------------- INTERNAL PAGES ----------------------- */



.intro.internal {
    overflow-x: hidden;
}


.internal-intrographic {
    position: relative;
    display: block;
    bottom: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.internal-intrographic &gt; div {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    transition: 1000ms;
}





.internal-intrographic .cloud-graphic {
    background: no-repeat center calc(100% - 6rem);
    width: 140%;
    right: -30%;
}



.internal-intrographic.k-12 .cloud-graphic {
    background-image: url('../images/K-12-Page-Cloud-Graphic.svg');
}
.internal-intrographic.business .cloud-graphic {
    background-image: url('../images/Business-Page-Cloud-Graphic.svg');
}
.internal-intrographic.government .cloud-graphic {
    background-image: url('https://w3dev.intellinetics.com/demo/images/Government-Page-Cloud-Graphic.svg');
}
.internal-intrographic.jobs .cloud-graphic {
    background-image: url('../images/Jobs-Page-Cloud-Graphic.svg');
}








.table &gt; :not(caption) &gt; * &gt; * {
    padding: 1rem;
}

.table-striped &gt; tbody &gt; tr:nth-of-type(odd) &gt; * {
    background: var(--xlightgray);
}


.table thead th {
    padding-top: calc(2rem + 26px);
    padding-bottom: 2rem;
}

.table thead th:first-of-type,
.table tbody th {width: 250px; border-right: 15px solid #fff;}

.table thead th:not(:first-of-type), 
.table tbody td {
    text-align: center;
    width: 360px;
    vertical-align: middle;
}

.table thead th:first-of-type,
.table tbody th,
.table thead th:not(:first-of-type), 
.table tbody td {
    min-width: 190px;
}

.table thead th.most-popular {
    position: relative;
}
.table thead th.most-popular:after {
    content: 'Most popular';
    text-align: center;
    font-size: .85rem;
    font-weight: 400;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--black);
    color: white;
    padding: .25rem 0;
}



.table thead th.most-popular.yellow {
    background: var(--lightyellow);
}
.table thead th.most-popular.blue {
    background: var(--lightblue);
}
.table thead th.most-popular.coral {
    background: var(--lightcoral);
}




@media all and (min-width: 1200px) {
    .table thead {font-size: 1.5rem;}

}










/* ----------------------- ABOUT PAGE ----------------------- */

.image-holder {
    width: 100%;
    height: 400px;
    background-color: white;
    margin-bottom: 1rem;
}


.about .team &gt; div {margin-bottom: 3rem;}









/* ----------------------- CONTACT PAGE ----------------------- */

.contact-page ul {
    font-size: 1.5rem;
    font-weight: 500;

    margin-bottom: 4rem;
    list-style-type: none;
    padding: 0;
}

.contact-page ul li {
    position: relative;
    padding-left: 2.5rem;
    line-height: 1.1;
    margin-bottom: .75rem;
}

.contact-page ul li:before {
    content: '\f00c';
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900; 
    margin-right: 1rem;
    color: var(--green);
    position: absolute;
    left: 0;
}

.contact-page h2 {
    text-align: left;
    font-size: 1.5rem;
    margin: 0;
}

.contact-page p a {
    display: inline-block;
}



.contact-form {
    padding: 2rem;
    background: var(--xlightgray);
}

.contact-form form {  
    margin: 0;
}

.contact-form .button {width: 100%;}

.contact-form .form-group:not(:last-child) {
    margin-bottom: 1rem;
}

.contact-form .checks &gt; div {
    width: 33.333333333333%;
    display: block;
    float: left;
}

.contact-form .checks &gt; div .btn {
    width: 100%;
    padding: 1rem 0;
    font-size: 1.25rem;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    border-radius: 0;
    padding: 1rem;

}


@media all and (min-width: 992px) {
    .contact-page .left { padding-right: 8rem;}
    
}

@media all and (max-width: 991px) {

    .section.contact-page {padding-top: 3rem;}

    .contact-page .left { margin-bottom: 3rem;}
    
}
@media all and (max-width: 575px) {
    .contact-page p.feature,
    .contact-page ul {font-size: 1.2rem;}
    .contact-page ul li {padding-left: 2rem;}
    .contact-form {padding: 1rem;}
    .contact-form .checks &gt; div .btn {font-size: .9rem; font-weight: 500;}
}









/* ----------------------- BLOG PAGE ----------------------- */

.blog-archive .blog-item {
    margin-bottom: 3rem;
}
.blog-archive .blog-item.blog-feature {
    margin-top: 3rem;
    margin-bottom: 5rem;
}


.blog-items a {
    color: var(--black) !important;
    display: block;
    text-transform: none;
}

.blog-items a:hover .blog-item-content {
    background-color: var(--vlightgray);
}

.blog-archive .blog-item .blog-image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


.blog-archive .blog-item .blog-item-content {
    padding: 2rem 3rem;
}


.blog-archive h2 {
    text-align: left;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0;
}



.blog-archive .blog-feature .blog-featured-label {
    text-transform: uppercase;
    background-color: var(--black);
    color: white;
    padding: .5rem .75rem;
    margin-bottom: 1rem;
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 600;
}

.blog-archive .blog-feature h2 {
    text-transform: uppercase;
    font-size: 2.5rem;
    font-weight: 800;
}





.blog-item .category {
    display: inline-block;
    margin: 1.25rem 0 0;
    font-weight: 700;
    padding: .25rem .5rem;
    text-transform: uppercase;
}


.blog-item .category.company {background-color: var(--green);}
.blog-item .category.k12 {background-color: var(--yellow);}
.blog-item .category.business {background-color: var(--blue);}
.blog-item .category.government {background-color: var(--coral);}


.blog-item .category.company:before {content: 'Company';}
.blog-item .category.k12:before {content: 'K-12';}
.blog-item .category.business:before {content: 'Business';}
.blog-item .category.government:before {content: 'Government';}







/* ----------------------- JOBS PAGE ----------------------- */

.whyintellinetics .icon img {
    height: 40px;
    margin-bottom: .5rem;
}

.whyintellinetics .row &gt; div {
    padding: 0 3rem 0;
}










/* ----------------------- PRIVACY PAGE ----------------------- */

.privacy h1 {
    font-size: 5rem;
    margin: 0 0 1.5rem;
}

.privacy h2 {
    font-size: 1.75rem;
    text-align: left;
    margin: 3rem 0 1rem;
    font-weight: 600;
}

.privacy h3 {
    font-size: 1.25rem;
    text-align: left;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.privacy a {text-transform: none;}











</pre></body></html>