html {
  font-size: 16px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 0px;
    /*background-color: #F1FFD8;*/
    background: linear-gradient(0deg, #f5fffa, #e3fff2, #ffffff);
    font-family: 'Poppins', sans-serif;
}

h1 {
    font-family: 'Poppins';
    font-weight: 800;
    margin-bottom: 20px;
}

.display-4 {
    font-weight: 800;
}

h2 {
    font-family: 'Poppins';
    font-weight: 800;
    margin-bottom: 20px;
}


h3 {
    margin-bottom: 10px;
}

header {
    margin-bottom: 30px;
}

.lead {
    font-family: 'Poppins';
    font-weight: 500;
}

.flexcontainer {
    display: flex;
}

.u-logo-image-2 {
    max-width: 100px;
}

.download_button {
    margin: 10px;
    padding: 15px;
    text-align: center;
    background-color: #7db9b3;
    color: #FFF;
    opacity: 1;
    flex: 1 1 100%;
    min-height: 56px;
}

#intro-example {
    height: 75px;
    margin-bottom: 25px;
}

#intro-example-header {
    height: 400px;
    margin-bottom: 25px;
}

.banner-video-small {
    min-width: 100%;
    height: 75px;
    left: 0;
    top: 0;
    object-fit: cover;
    z-index: -1;
}

.banner-video {
    min-width: 100%;
    height: 400px;
    left: 0;
    top: 0;
    object-fit: cover;
    z-index : -1;
}

.main-banner-mask {
    width: 100%;
    top: 75px;
}

.nav-link {
    color: white;
    border-radius: 8px;
    padding: 8px;
    margin: 5px;
}

a.nav-link {
    color: white;
}

    a.nav-link:focus {
        color: white;
    }
a.nav-link:hover {
    color: #198754;
    background-color: #FFF;
}

@media (min-width: 1200px) {
    .nav-link {
        font-size: 1.1rem;
    }
}
.navbar-toggler-icon  {
    background-color: #fff;
}
.navbar-toggler  {
    background-color: #fff;
}
.nav-pills {
    background-color: #2A896C;
    --bs-nav-pills-link-active-color: #2A896C;
    --bs-nav-pills-link-active-bg: #fff;
    /* --bs-nav-pills-link-active-color: #F1FFD8;
    --bs-nav-pills-link-active-bg: #198754;
*/
}

.btn-header {
    width: 140px;
}

.btn-next {
    color: #2A896C;
}

.img-inheal {
    margin-top: 30px;
    margin-bottom: 30px;
}

.slide-in-fwd-center {
    -webkit-animation: slide-in-fwd-center 2s cubic-bezier(.25,.46,.45,.94) both;
    animation: slide-in-fwd-center 2s cubic-bezier(.25,.46,.45,.94) both;
}

@media (max-width: 575px) {
    .navbar-collapse {
        z-index: 10;
        background-color: #2A896C;
        border-radius : 10px;
        /*background: linear-gradient(90deg, #2A896C, #2A896C);*/
        margin: 0;
    }
}

.card-header {
    background-color: #2A896C;
    font-family: 'Poppins';
    font-weight: 800;
}

    .boardcard {
        border-radius: 4px;
        background: #fff;
        box-shadow: 0 6px 10px rgba(0,0,0,.08), 0 0 6px rgba(0,0,0,.05);
        transition: .3s transform cubic-bezier(.155,1.105,.295,1.12),.3s box-shadow,.3s -webkit-transform cubic-bezier(.155,1.105,.295,1.12);
        padding: 14px 80px 18px 36px;
        cursor: pointer;
        margin-top: 10px;
        margin-bottom: 10px;
    }

        .boardcard:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
        }

        .boardcard h3 {
            font-weight: 800;
        }

        .boardcard img {
            position: absolute;
            top: 20px;
            right: 15px;
            max-height: 120px;
        }

    /* Image */

    .image {
        position: relative;
        display: inline-block;
        border: 0;
        outline: 0;
    }

    .vertical-middle {
        vertical-align: middle;
    }

    .image img {
        display: block;
        width: 100%;
    }

    .image.fit {
        display: block;
        width: 100%;
    }

    .image.featured {
        display: block;
        width: 100%;
        margin: 0 0 1em 0;
    }

    .image.left {
        float: left;
        margin: 0 2em 2em 0;
    }

    .image.right {
        float: right;
        margin: 0 2em 2em 0;
    }

    .image.centered {
        display: block;
        margin: 0 0 2em 0;
    }

        .image.centered img {
            margin: 0 auto;
            width: auto;
        }

