

* {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: #000000;
    position: relative;
}

.cursor-pointer {
    cursor: pointer;
}

a {
    color: #000000;
}

    a:hover {
        color: #0087ff;
    }

    a.blue-color {
        color: #0087ff;
    }

        a.blue-color:hover {
            color: #0087ffbf;
        }

.blue-color {
    color: #0087FF;
}

.green-color {
    color: #1ACD5A;
}

.light-color {
    color: #6E6E6E;
}

.positive-color {
    color: #1EAB50;
}

.negative-color {
    color: #DD2626;
}

.border-blue-color {
    border-color: #0087FF;
}

.border-green-color {
    border-color: #1ACD5A;
}

.border-light-color {
    border-color: #6E6E6E;
}

.border-positive-color {
    border-color: #1EAB50;
}

.border-negative-color {
    border-color: #DD2626;
}

.bg-blue-color {
    background-color: #0087FF;
}

.bg-green-color {
    background-color: #1ACD5A;
}

.bg-light-color {
    background-color: #6E6E6E;
}

.bg-positive-color {
    background-color: #1EAB50;
}

.bg-negative-color {
    background-color: #DD2626;
}

.bg-light-gray {
    background-color: #F8F8F4;
}

.bg-light-blue {
    background-color: #BFE1FF;
}

.bg-dark-blue {
    background-color: #0F5491;
}

input, button {
    outline: none;
}

p {
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 30px;
}

    p:last-child {
        margin-bottom: 0px;
    }

    p.xl-text {
        font-size: 21px;
        line-height: 28px;
    }

    p.md-text {
        font-size: 14px;
        line-height: 19px;
    }

    p.sm-text {
        font-size: 12px;
        line-height: 17px;
    }

ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
    margin-bottom: 30px;
}

    ul li {
        font-size: 17px;
        line-height: 24px;
        display: flex;
    }

    ul.big-text li {
        font-size: 22px;
        line-height: 28px;
    }

    ul.has-dash li:before {
        content: '—';
        margin-right: 5px;
    }

    ul.has-num {
        list-style-type: decimal;
        margin-left: 30px;
    }

        ul.has-num li {
            display: list-item;
        }

            ul.has-num li:before {
                display: none;
            }

    ul.has-dot {
        list-style-type: disc;
        margin-left: 30px;
    }

        ul.has-dot li {
            display: list-item;
        }

            ul.has-dot li:before {
                display: none;
            }

    ul.has-circle {
        list-style-type: circle;
        margin-left: 30px;
    }

        ul.has-circle li {
            display: list-item;
        }

    ul.has-square {
        list-style-type: square;
        margin-left: 30px;
    }

        ul.has-square li {
            display: list-item;
        }

    ul.has-dot ul.has-dash li {
        display: flex;
    }

        ul.has-dot ul.has-dash li:before {
            display: block;
        }

.scrollbar {
    scrollbar-width: thin;
    scrollbar-color: #0087FF #F8F8F4;
}

    .scrollbar::-webkit-scrollbar {
        width: 11px;
        height: 11px;
    }

    .scrollbar::-webkit-scrollbar-track {
        background: #F8F8F4;
    }

    .scrollbar::-webkit-scrollbar-thumb {
        background-color: #0087FF;
        border-radius: 6px;
        border: 3px solid #F8F8F4;
    }

.scrollbar-white {
    scrollbar-width: thin;
    scrollbar-color: #0087FF #FFFFFF;
}

    .scrollbar-white::-webkit-scrollbar {
        width: 11px;
        height: 11px;
    }

    .scrollbar-white::-webkit-scrollbar-track {
        background: #FFFFFF;
    }

    .scrollbar-white::-webkit-scrollbar-thumb {
        background-color: #0087FF;
        border-radius: 6px;
        border: 3px solid #FFFFFF;
    }

.hide-desktop {
    display: none;
}

.hide-mobile {
    display: block;
}

.hide-desktop-767 {
    display: none;
}

.hide-mobile-767 {
    display: block;
}

.section {
    position: relative;
    overflow: hidden;
}


.navbar-container {
    height: 90px;
    /*box-shadow: 0px -2px 5px 1px #000;
    position: sticky;
    top: 0px;*/
}

    .navbar-container .navbar-brand {
        height: 65px;
    }

    .navbar-container .navbar-title {
        color: #000000;
        font-size: 22px;
        line-height: 28px;
    }

.header-menu-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 40px;
}

    .header-menu-link ul {
        margin: 0px;
        padding: 0px;
        display: flex;
        align-items: center;
    }

    .header-menu-link li {
        position: relative;
        font-size: 16px;
        line-height: 1;
        padding-left: 10px;
        padding-right: 10px;
    }

        .header-menu-link li:after {
            content: "";
            width: 2px;
            height: 100%;
            background: #fff;
            position: absolute;
            right: 0px;
            top: 0px;
            bottom: 0px;
        }

        .header-menu-link li:first-child {
            padding-left: 0px;
        }

        .header-menu-link li:last-child {
            padding-right: 0px;
        }

            .header-menu-link li:last-child:after {
                display: none;
            }

    .header-menu-link a {
        color: #fff;
        font-size: 16px;
        line-height: 1;
        text-decoration: none;
        cursor: pointer;
    }

        .header-menu-link a:hover {
            text-decoration: underline;
        }

footer {
    position: relative;
    background: #F8F8F4;
    border-top: 1px solid #DCDCDC;
}

.footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0px;
}

    .footer .logo {
        width: 120px;
        order: 2;
    }

        .footer .logo img {
            width: 100%;
        }

    .footer a {
        text-decoration: none;
    }

    .footer .footer-links {
        display: flex;
        justify-content: center;
    }

    .footer .copeia-life {
        margin-right: 15px;
    }

        .footer .copeia-life a {
            display: block;
        }

    .footer .links {
    }

        .footer .links ul {
            margin: 0px;
            padding: 0px;
            list-style-type: none;
            display: flex;
            align-items: center;
        }

            .footer .links ul li {
                font-size: 16px;
                margin-right: 5px;
                padding-right: 5px;
                border-right: 1px solid #B4B4B4;
            }

                .footer .links ul li:last-child {
                    border-right: 0px;
                    margin-right: 0px;
                    padding-right: 0px;
                }

                .footer .links ul li a {
                    display: block;
                }

.heading {
    font-size: 27px;
    line-height: 36px;
}

.subheading {
    font-size: 22px;
    line-height: 28px;
}

.heading-icon {
    max-width: 80px;
    width: 100%;
}

.small-container {
    max-width: 960px;
    margin: 0px auto;
}

.left-right-block {
    display: flex;
    gap: 50px;
}

    .left-right-block .left-block,
    .left-right-block .right-block {
        padding: 20px;
        width: 50%;
        position: relative;
    }

.nav-tab-list-content {
    background: #fff;
    width: 100%;
    border-radius: 10px;
}

    .nav-tab-list-content .tab-bottom-text {
        margin-top: 10px;
        width: 100%;
    }

        .nav-tab-list-content .tab-bottom-text .note-text {
            margin-bottom: 20px;
            font-size: 12px;
            line-height: 1.25;
            color: #000;
        }

.nav-tab-content-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-tab-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

    .nav-tab-content .nav-tab-content-item {
        width: calc(50% - 10px);
        height: 100%;
        display: flex;
        align-items: center;
        gap: 20px;
        background: #F8F8F4;
        border-radius: 8px;
        padding: 20px;
    }

        .nav-tab-content .nav-tab-content-item.item-green {
            background: #EFFAF3;
        }

        .nav-tab-content .nav-tab-content-item.item-blue {
            background: #DCEEFE;
        }

        .nav-tab-content .nav-tab-content-item .tab-item-image {
            width: calc(50% - 10px);
        }

            .nav-tab-content .nav-tab-content-item .tab-item-image img {
                width: 100%;
            }

        .nav-tab-content .nav-tab-content-item .tab-item-content {
            width: calc(50% - 10px);
            color: #000;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

            .nav-tab-content .nav-tab-content-item .tab-item-content h2 {
                font-size: 24px;
                line-height: 1.25;
                margin: 0px;
                font-weight: 300;
            }

            .nav-tab-content .nav-tab-content-item .tab-item-content p {
                font-size: 16px;
                line-height: 1.25;
                margin: 0px;
            }

            .nav-tab-content .nav-tab-content-item .tab-item-content .tab-button {
                display: flex;
                justify-content: flex-end;
            }

                .nav-tab-content .nav-tab-content-item .tab-item-content .tab-button a {
                }

                .nav-tab-content .nav-tab-content-item .tab-item-content .tab-button img {
                    width: 48px;
                }


.form-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    max-width: 380px;
}

    .form-buttons .form-button {
        cursor: pointer;
        margin-bottom: 20px;
    }

        .form-buttons .form-button:last-child {
            margin-bottom: 0px;
        }

        .form-buttons .form-button img {
            display: block;
            max-width: 100%;
        }

            .form-buttons .form-button img:first-child {
                display: block;
            }

            .form-buttons .form-button img:last-child {
                display: none;
            }

        .form-buttons .form-button:hover img:first-child {
            display: none;
        }

        .form-buttons .form-button:hover img:last-child {
            display: block;
        }

        .form-buttons .form-button svg {
            display: block;
            max-width: 100%;
        }

            .form-buttons .form-button svg:first-child {
                display: block;
            }

            .form-buttons .form-button svg:last-child {
                display: none;
            }

        .form-buttons .form-button:hover svg:first-child {
            display: none;
        }

        .form-buttons .form-button:hover svg:last-child {
            display: block;
        }

        .form-buttons .form-button.disabled {
            pointer-events: none;
        }




.btn.disabled, .btn:disabled {
    cursor: inherit;
}


.standard-btn {
    background-color: #F8F8F4;
    background-position: center;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    box-shadow: none;
    outline: none !important;
    transition: all 0.25s;
    border: none;
    padding: 12px 18px;
    min-width: 160px;
    color: #000000 !important;
    text-decoration: none !important;
    display: block;
    width: 100%;
    max-width: 250px;
    text-align: center;
}

    .standard-btn.btn-sm {
        padding: 8px 12px;
        max-width: 200px;
    }

    .standard-btn.btn-green {
        background-color: #1ACD5A;
        color: #ffffff !important;
    }

    .standard-btn.btn-blue {
        background-color: #0087FF;
        color: #ffffff !important;
    }

    .standard-btn:hover {
        background-color: #DCDCDC;
        box-shadow: 0px 1px 4px 0px #000;
    }

    .standard-btn.btn-green:hover {
        background-color: #1ACD5Abf;
    }

    .standard-btn.btn-blue:hover {
        background-color: #0087ffbf;
    }

button.standard-btn:hover {
    background: #DCDCDC radial-gradient(circle, transparent 1%, #DCDCDC 1%) center/15000%;
}

button.standard-btn.btn-green:hover {
    background: #1ACD5Abf radial-gradient(circle, transparent 1%, #1ACD5Abf 1%) center/15000%;
}

button.standard-btn.btn-blue:hover {
    background: #0087ffbf radial-gradient(circle, transparent 1%, #0087ffbf 1%) center/15000%;
}

button.standard-btn:active {
    background-color: #000000;
    background-size: 100%;
    transition: background 0s;
}

.standard-btn.disabled,
button.standard-btn.disabled,
button.standard-btn:disabled {
    background-color: #DCDCDC;
}

.coming-soon {
    min-height: calc(100vh - 393px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .coming-soon h1 {
        font-size: 48px;
    }

.page-not-found {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .page-not-found h1 {
        font-size: 48px;
        margin-bottom: 30px;
    }

datalist {
    position: fixed;
    max-height: 20em;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #fff;
    z-index: 9999;
    box-shadow: 0px 2px 3px -1px #898989;
}

    datalist option {
        padding: 0.3em 1em;
        cursor: pointer;
        white-space: normal;
        font-weight: 300;
    }

        /* active option styling */
        datalist option:hover, datalist option:focus {
            color: #fff;
            background-color: #0069d9;
            outline: 0 none;
        }


@media screen and (max-width:960px) {
    .hide-desktop {
        display: block;
    }

    .hide-mobile {
        display: none;
    }

    .section-image {
        order: 1;
    }

    .section-content {
        order: 2;
    }

    .left-right-block {
        flex-direction: column;
        gap: 50px;
    }

        .left-right-block .left-block,
        .left-right-block .right-block {
            padding: 0px;
            width: 100%;
        }

    .nav-tab-content .nav-tab-content-item {
        width: 100%;
        height: auto;
    }
}


@media screen and (max-width:767px) {
    .hide-desktop-767 {
        display: block;
    }

    .hide-mobile-767 {
        display: none;
    }

    .footer {
        flex-direction: column;
        justify-content: center;
    }

        .footer .logo {
            text-align: center;
            margin: 0px;
            order: 1;
        }

        .footer .footer-links {
            order: 2;
            margin-top: 20px;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .footer .copeia-life {
        }

        .footer .links {
            margin: 15px 0px;
        }

    .heading {
        font-size: 24px;
        line-height: 32px;
    }

    .subheading {
        font-size: 20px;
        line-height: 24px;
    }

    .heading-icon {
        max-width: 60px;
        width: 100%;
    }
}


@media screen and (max-width:600px) {
    .navbar-container {
        height: inherit;
    }

        .navbar-container .navbar-link {
            /*flex-direction: column;
            justify-content: center;*/
            width: 100%;
        }

    .nav-tab-content .nav-tab-content-item {
        flex-direction: column;
    }

        .nav-tab-content .nav-tab-content-item .tab-item-image,
        .nav-tab-content .nav-tab-content-item .tab-item-content {
            width: 100%;
        }

    .nav-tab-container {
        padding: 10px 5px;
    }

        .nav-tab-container .nav-tab-list {
            flex-wrap: wrap;
            justify-content: flex-start;
        }

            .nav-tab-container .nav-tab-list li {
                width: auto;
                padding: 5px;
            }

            .nav-tab-container .nav-tab-list .nav-tab {
                width: auto;
                padding: 8px;
                font-size: 14px;
            }
}
