﻿@charset "utf-8";
/* CSS Document */

/* COLOURS */
/* Examples on how to use: 

    color: var(--dark);
    backgound: var(--blue);

*/

:root {
    --black: #000000;
    --grey: #333333;
    --white: #ffffff;
    --lightgrey: #F5F5F5;
    --lightpurple: #F8F7F9;
    --darkpurple: #352F4E;
    --purple: #B1A2EE;
    --gwhite: #F1F8F8;
    --green: #008C8C;
    --teal: #DBFCFC;
    --gwhite25: #EBFFFF;
    --gwhite50: #DBFCFC;
    --gwhite75: #C7FBFB;
    --gwhite100: #ACFBFB;
    --orange: #F98A39;
}


/* GLOBAL Styles */

body {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-size: 18px;
    color: var(--grey);
    /*background: var(--gwhite);*/
}

img {
    max-width: 100%;
    height: auto;
}

.pb-10 {
    padding-bottom: 100px;
}

.wrapper {
    background-image: url("../images/homebg.png");
    background-repeat: no-repeat;
    background-position: top center;
    min-height: 1080px;
}

.bwrapper {
    background: var(--darkpurple);
    background-image: url("../images/businessbg.png");
    background-repeat: no-repeat;
    background-position: top center;
    min-height: 1080px;
    color: var(--white);
}

/* backgrounds */

.top {
    background: var(--darkpurple);
    color: var(--white);
    font-size: 0.75em;
    font-weight: bold;
}

    .top a {
        color: var(--white);
        text-decoration: none;
    }

        .top a:hover {
            color: var(--teal);
            text-decoration: none;
        }

.btop {
    background: var(--green);
    color: var(--white);
    font-size: 0.75em;
    font-weight: bold;
}

    .btop a {
        color: var(--white);
        text-decoration: none;
    }

        .btop a:hover {
            color: var(--darkpurple);
            text-decoration: none;
        }

.bgpurple {
    background: var(--darkpurple);
}


.footerbg {
    background: var(--darkpurple);
    background-image: url("../images/footerbg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--white);
    font-size: 0.75em;
    padding: 60px 0;
}

    .footerbg a {
        color: var(--lightgrey);
        text-decoration: none;
    }

.homehead {
    padding: 100px 0 50px 0;
}

.whitebg {
    background: var(--white);
    padding: 30px 0 30px 0;
    color: var(--darkpurple);
}

.gwhitebg {
    background: var(--gwhite);
    padding: 80px 0;
}

.purplebg {
    background: var(--purple);
    padding: 80px;
}

.darkpurplebg {
    background: var(--darkpurple);
    padding-top: 80px;
    padding-bottom: 80px;
}

.lpurplebg {
    background: var(--lightpurple);
    padding: 80px 0;
    color: var(--darkpurple);
}

.lgreybg {
    background: var(--lightgrey);
    padding: 80px 0;
    color: var(--darkpurple);
}

.pagebg {
    background-image: url("../images/titlebg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding-top: 50px;
    padding-bottom: 70px;
}

.bpagebg {
    /*background-color: var(--darkpurple);*/
    background-image: url("../images/btitlebg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding-top: 50px;
    padding-bottom: 70px;
    color: var(--white);
}

    .bpagebg h1 {
        color: var(--white);
    }

    .bpagebg h3 {
        color: var(--white);
    }

.purple {
    color: var(--purple);
}

.green {
    color: var(--green);
}

.teal {
    color: var(--teal);
}

.whitebox {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    border: solid 1px var(--grey);
    color: var(--darkpurple);
    margin-bottom: 20px;
    box-shadow: 0 1px 10px rgb(0 0 0 / 0.2);
}

.mobimage {
    width: 180px;
    height: auto;
    margin: 10px
}

/* navigation */

.navbar {
    font-weight: bold;
    box-shadow: 0 1px 10px rgb(0 0 0 / 0.2);
}

.navbar-dark {
    font-weight: bold;
    background-color: var(--green);
    box-shadow: none;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0.75rem;
        padding-left: 0.75rem;
    }

    
}



.accordion-button {
    padding: 2rem 1.25rem;
}

/* FONTS */

h1 {
    font-size: 36px;
    font-weight: 800;
}

h2 {
    font-size: 28px;
    font-weight: 800;
}
h3 {
    font-size: 24px;
    font-weight: 800;
}

h4 {
    font-size: 21px;
    font-weight: 800;
}

/* buttons */

.btn-green {
    color: #fff;
    background-color: var(--green);
    border-color: var(--green);
    border-radius: 10px;
    padding: 0.375rem 2rem;
}


.btn-teal {
    color: #fff;
    background-color: var(--teal);
    border-color: var(--teal);
    border-radius: 10px;
    padding: 0.375rem 2rem;
}


/* drop down */

.dropdown-item {
    display: block;
    width: 100%;
    padding: 1rem 1rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.dpurplepanel {
    background-color: var(--darkpurple);
    padding: 20px;
    color: var(--white);
    border-radius: 10px;
    margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {

    .navbar-brand img {
        max-width: 230px !important;
    }

    .homehead {
        padding: 30px 0 30px 0;
    }

    .pt-5 {
        padding-top: 1rem !important;
    }

    .pb-10 {
        padding-bottom: 10px;
    }

    .pagebg {
        background-image: url("../images/titlebg.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .bpagebg {
        /*background-color: var(--darkpurple);*/
        background-image: url("../images/btitlebg.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top;
        padding-top: 30px;
        padding-bottom: 30px;
        color: var(--white);
    }

    .gwhitebg {
        background: var(--gwhite);
        padding: 30px 0;
    }

    .footerbg {
        text-align:center;
    }

    .btn-green {
        color: var(--white);
        background-color: var(--green);
        border-color: var(--green);
        border-radius: 10px;
        padding: 0.375rem 2rem;
        margin-bottom: 20px;
    }


    .btn-teal {
        color: var(--white);
        background-color: var(--teal);
        border-color: var(--teal);
        border-radius: 10px;
        padding: 0.375rem 2rem;
        margin-bottom: 20px;
    }

}

.btn-pill {
    border-radius: 30px;
}

/* added 140923 */

.no-gutter {
    margin-right: 0;
    margin-left: 0;
}

    .no-gutter > [class*="col-"] {
        padding-right: 0;
        padding-left: 0;
    }

.gwhite25 {
    background: var(--gwhite25);
    padding-bottom: 20px;
}

.gwhite50 {
    background: var(--gwhite50);
    padding-bottom: 20px;
}

.gwhite75 {
    background: var(--gwhite75);
    padding-bottom: 20px;
}

.gwhite100 {
    background: var(--gwhite100);
    padding-bottom: 20px;
}

.tealbg {
    background: var(--teal);
    padding: 50px;
}

/* Integration Styles */

.integrationbg {
    background: var(--black);
    background-image: url("../images/integration-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--white);
    font-size: 0.75em;
    padding: 0;
}

.greybox {
    background-color: var(--lightgrey);
    border: solid 1px #666666;
    padding: 20px;
}

/* landing styles */

.landingbg {
    background: var(--darkpurple);
    background-image: url("../images/landingbg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    color: #ffffff;
}

@media only screen and (max-width: 768px) {

    .landingbg {
        padding: 40px 0;
    }
}

.greybox {
    background-color: var(--lightgrey);
    border: solid 1px #666666;
    padding: 20px;
}


ul.nobullet {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

li.bullet {
    background: url("../images/li-pp.png") no-repeat left top;
    padding-left: 30px;
    padding-top: 0;
    margin-bottom: 5px;
}


/* carousel */

.slider {
    background: none;
    height: 75pt;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    cursor: default;
    user-select: none;
    touch-action: none;
}

    .slider:before {
        left: 0;
        top: 0;
    }

    .slider:after,
    .slider:before {
        background: linear-gradient( to right, none 0%, hsla(0, 0%, 100%, 0) 100% );
        content: "";
        height: 75pt;
        position: absolute;
        width: 200px;
        z-index: 2;
    }

    .slider:after {
        right: 0;
        top: 0;
        transform: rotateZ(180deg);
    }

    .slider:after,
    .slider:before {
        background: linear-gradient( to right, none 0%, hsla(0, 0%, 100%, 0) 100% );
        content: "";
        height: 75pt;
        position: absolute;
        width: 200px;
        z-index: 2;
    }

    .slider .slide-track-1 {
        animation: scroll-l 30s linear infinite;
        display: flex;
        width: 2000px;
    }

    .slider .slide-track-2 {
        animation: scroll-r 30s linear infinite;
        display: flex;
        width: 2000px;
    }

    .slider .slide {
        height: 75pt;
        width: 200px;
        display: flex;
        align-items: center;
        text-align: center;
    }

        .slider .slide img {
            width: 150px;
            padding: 1pc;
            vertical-align: middle;
            margin: 0 auto;
            display: inline-block;
            max-width: 100%;
            height: auto;
        }

@keyframes scroll-l {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
    }
}

@keyframes scroll-r {
    100% {
        transform: translateX(0);
    }

    0% {
        transform: translateX(calc(-250px * 7));
    }
}

/* added october 30th */

.greenpanel {
    background-color: var(--green);
    padding: 20px;
    color: var(--white);
    border-radius: 10px;
    margin-bottom: 20px;
}

/* added december 12th 2024 */

.lgpanel {
    background-color: var(--teal);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.btn-orange {
    color: #fff;
    background-color: var(--orange);
    border-color: var(--orange);
    border-radius: 30px;
    padding: 0.375rem 2rem;
}

.bg-home {
    background-color: var(--green);
    background-image: url("../images/bg-green.png");
    background-repeat: no-repeat;
    background-position: top center;
    min-height: 600px;
    color: var(--white);
    padding: 100px 0 0 0;
}

.bg-home-bottom {
    background-image: url("../images/bg-green-bottom.png");
    background-repeat: no-repeat;
    background-position: top center;
    min-height: 100px;
    color: var(--white);
    padding: 100px 0 0 0;
}

.bg-home-bottom-w {
    background-image: url("../images/bg-green-bottom-w.png");
    background-repeat: no-repeat;
    background-position: top center;
    min-height: 100px;
    color: var(--white);
    padding: 100px 0 0 0;
}

.purplebox {
    background-color: var(--darkpurple);
    padding: 30px;
    border-radius: 10px;
    color: var(--white);
    margin-bottom: 20px;
    box-shadow: 0 1px 10px rgb(0 0 0 / 0.2);
}

.bg-bot-wave {
    background-image: url("../images/bg-green-bot.png");
    background-repeat: no-repeat;
    background-position: bottom center;
    min-height: 100px;
}

.bg-teal-top {
    background-image: url("../images/bg-green-low.png");
    background-repeat: no-repeat;
    background-position: top center;
    min-height: 100px;
    color: var(--white);
    padding: 100px 0 0 0;
}

.whitebgnp {
    background: var(--white);
    padding: 0 0 0 0;
    color: var(--darkpurple);
}

.tealbgnp {
    background: var(--teal);
    padding: 0;
}

.testimonialbg {
    background-image: url("../images/testimonialbg.webp");
    background-repeat: no-repeat;
    background-position: center;
    min-height: 200px;
    color: var(--darkpurple);
    padding: 30px 0 30px 0;
    font-style: italic;
    font-weight: bold;
}

/* new carousel */

.carousel {
    margin: 0 auto;
    padding: 20px 0;
    max-width: 100%;
    overflow: hidden;
    display: flex;
}

.card {
    width: 200px;
    color: white;
    border-radius: 0;
    box-shadow: rgba(0, 0, 0, 5%) 5px 5px 20px 0;
    padding: 0;
    font-size: xx-large;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    &:nth-child(1)

{
    background: none;
}

&:nth-child(2) {
    background: none;
}

&:nth-child(3) {
    background: none;
}

}

.carousel {
    /* ... */
    > *

{
    flex: 0 0 100%;
}

}

/* Group the cards for better structure. */
.group {
    display: flex;
    gap: 20px;
    /* Add padding to the right to create a gap between the last and first card. */
    padding-right: 20px;
}

.group {
    /* ... */
    will-change: transform; /* We should be nice to the browser - let it know what we're going to animate. */
    animation: scrolling 20s linear infinite;
}

@keyframes scrolling {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@media only screen and (max-width: 768px) {

    .mobimage {
        width: 60px;
        height: auto;
        margin: 5px
    }

    .mobcenter {
        text-align: center;
    }

    .bg-home {
        padding: 30px 0 0 0;
    }

    .mobhide {
        display: none;
    }
}

@media only screen and (min-width: 768px) {

    .deskhide {
        display: none;
    }
}


@media only screen and (max-width: 768px) {

    body {
        font-size: 1em;
    }


    /* FONTS */

    h1 {
        font-size: 1.4em;
        font-weight: 800;
        
    }

    h2 {
        font-size: 1.2em;
        font-weight: 800;
        
    }

    h3 {
        font-size: 1em;
        font-weight: 800;
    }

    h4 {
        font-size: 1em;
        font-weight: 800;
    }

    .purplebox {
        background-color: var(--darkpurple);
        padding: 20px;
        border-radius: 10px;
        color: var(--white);
        margin-bottom: 30px;
    }

}

.textlink {
    color: var(--green);
    text-decoration: none;
}

/*new styles august 2025 */

.homebg {
    background-color: var(--white);
    background-image: url("../images/headbg-0825.jpg");
    background-repeat: no-repeat;
    background-position: top center;
    color: var(--white);
    padding: 250px 0 0 0;
    min-height: 800px;
}

.featurebox {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    border: solid 1px var(--grey);
    color: var(--darkpurple);
    margin-bottom: 20px;
    box-shadow: 0 1px 10px rgb(0 0 0 / 0.2);
    min-height: 250px;
}

.blackbg {
    background: var(--black);
    padding: 30px 0 30px 0;
    color: var(--white);
}



@media only screen and (max-width: 768px) {

    .homebg {
        background-color: var(--white);
        background-image: url("../images/headbg-0825-mob2.jpg");
        background-position: top center;
        background-size: cover;
        color: var(--white);
        padding: 140px 0 150px 0;
        min-height: 600px;
    }
}


.shadow {
    text-shadow: 1px 1px 6px #000000;
}

* {
    box-sizing: border-box;
}

.zoombox {
    padding: 30px;
    background-color: white;
    border: solid 1px #333333;
    border-radius: 10px;
    transition: transform .2s;
    min-height: 220px;
    margin: 0 auto;
}

    .zoombox:hover {
        -ms-transform: scale(1.2); /* IE 9 */
        -webkit-transform: scale(1.2); /* Safari 3-8 */
        transform: scale(1.2);
        background-image: linear-gradient(#514376, #352F4E);
        color: #ffffff;
    }
