body {
    margin: 0;
    font-family: 'Heebo', sans-serif;
    padding-top: 80px;
}

.container {
    width: 1440px;
    max-width: 90%;
    margin: auto;
    padding: 0 16px;
}


ul {
    margin: 0;
    padding: 0;
}

header {
    background-color: #FFF;
    box-shadow: 0 1px 6px 0 rgba(0,0,0,0.15);
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

    header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 100%;
    }

    header .logo {
        display: inline-block;
        font-size: 27px;
    }

        header .logo a {
            text-decoration: none;
            color: black;
        }

        header .logo .blue-dot {
            background-color: #3E50E5;
            width: 10px;
            height: 10px;
            display: inline-block;
            vertical-align: middle;
            border-radius: 6px;
        }

    header nav {
        display: inline-block;
    }

        header nav ul li {
            display: inline-block;
        }

            header nav ul li.menu-icon {
                display: none;
            }

                header nav ul li.menu-icon img {
                    vertical-align: middle;
                    width: 24px;
                    height: auto;
                }

            header nav ul li a {
                color: #3E3E3E;
                font-size: 15px;
                letter-spacing: 0.37px;
                margin-right: 24px;
                text-decoration: none;
            }

                header nav ul li a:hover {
                    color: #3E50E5;
                    cursor: pointer;
                }

            header nav ul li:last-of-type a {
                margin-right: 0;
            }

section.hero {
    position: relative;
}

    section.hero img {
        width: 100%;
        height: auto;
    }

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

    .hero-content .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        align-items: end;
    }

    .hero-content h1 {
        max-width: 495px;
        color: #FFF;
        font-size: 44px;
        letter-spacing: 1.25px;
        line-height: 56px;
        margin-bottom: 16px;
        margin-top: 0;
        font-weight: normal;
    }

    .hero-content p {
        max-width: 518px;
        color: #FFF;
        font-weight: 300;
        font-size: 20px;
        letter-spacing: 0.5px;
        line-height: 28px;
        margin-bottom: 21px;
        margin-top: 0;
    }


    .hero-content button {
        height: 50px;
        width: 220px;
        max-width: 100%;
        border-radius: 92px;
        background-color: #3E50E5;
        color: #FFF;
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 0.4px;
        line-height: 24px;
        text-align: center;
        border: none;
        text-transform: uppercase;
        cursor: pointer;
    }

        .hero-content button:hover {
            color: #3E50E5;
            background-color: #FFF;
            border: 1px solid #3E50E5;
        }


#btninup {
    padding-right: 40px;
}

/*........................................................*/

footer .bottom-nav {
    padding: 60px 0;
    background-color: #3E3E3E;
}

    footer .bottom-nav .container {
        max-width: 955px;
        display: flex;
        justify-content: space-between;
    }

    footer .bottom-nav ul {
        list-style: none;
    }

        footer .bottom-nav ul li a {
            color: #E0E0E0;
            font-size: 16px;
            letter-spacing: 0.4px;
            line-height: 22px;
            margin-top: 0;
            margin-bottom: 10px;
            text-decoration: none;
            display: block;
        }

            footer .bottom-nav ul li a:hover {
                color: #3E50E5;
            }

        footer .bottom-nav ul li.list-title {
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 0.5px;
            line-height: 26px;
            margin-top: 0;
            margin-bottom: 20px;
            color: #FFF;
        }

footer .copyright-text {
    color: white;
    background-color: #2B2B2B;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    letter-spacing: 0.4px;
    line-height: 22px;
}



