/* Wrapper for top bar and navbar */

body {
    font-family: 'Inter', sans-serif;
}

.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    background-color: #fff;
    border-bottom: 1px solid #dee2e6;
}

/* Top Bar */
.top-bar {
    background-color: #39B54A;
    color: white;
    text-align: center;
    padding: 8px 0;
}

/* Logo */
.logo-image {
    height: 35px;
    margin-top: 18px;
    margin-bottom: 10px;
}

/* Navbar */
.navbar {
    background-color: #ffffff;
    padding-top: 0;
    padding-bottom: 0;
}

/* Remove border on toggler */
.navbar-toggler {
    border: none;
    box-shadow: none;
}

.nav-item {
    margin-left: 25px;
}

/* Hero Section */
.hero {
    padding-top: 50px;
    display: flex;
    min-height: 900px;
    align-items: center;
}

.sub-hero {
    padding-top: 120px;
    display: flex;
    align-items: center;
}

h1 {
    font-weight: 400;
    font-size: 4rem;
    font-family: 'Inter', sans-serif;
}

h2 {
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.hero-image {
    max-width: 100%;
    height: auto;
}

/* Button Styling */
.btn-primary {
    background-color: #39B54A;
    border-color: #39B54A;
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.show > .btn-primary.dropdown-toggle {
    background-color: #2e9e3e;
    border-color: #2e9e3e;
    color: #fff;
}

.btn {
    border-radius: 25px;
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

/* Grey Section */
.section-dark {
    background-color: #f9f9f1;
}

.navbar-nav {
    margin-top: 2px;
}

.demo-image {
    height: 600px;
    border: 1px solid #eee;
    border-radius: 15px;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.08);

}

.second-demo {
    margin-top: 90px;
    margin-left: -40px;
}





.container {
    overflow: hidden;
    .slider {
        margin-top: 50px;
        margin-bottom: 50px;
        animation: slidein 90s linear infinite;
        white-space: nowrap;
        .logos {
            width: 1625px;
            display: inline-block;
            margin: 0px 0;
            .protocol-image {
                height: 50px;
                margin-right: 150px;
            }
        }
    }
}

@keyframes slidein {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

footer {
    border-top: 1px solid #dee2e6;
    /*color: #ffffff;*/
    margin-top: 100px;
    padding: 100px 0px;
    /*background-color: #2e9e3e;*/
}

.logo-footer {
    margin-top: 0px;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

li {
    margin-bottom: 5px;
}

h3 {
    font-size: 18px;
    margin-bottom: 14px;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
    text-decoration: none;
}

.social-link {
    color: #39B54A;
}

.social-link:hover,
.social-link:focus,
.social-link:active {
    color: #2e9e3e;
}




