nav#main {
    position: absolute;
    right: 10px;
    display: flex;
    margin-bottom: 30px;
}
nav#main ul {
    font-weight: 400;
    font-family: source-sans-pro, sans-serif;
    list-style-type: none;
    margin: 0;
    padding: 34px 0 0;
    margin-right: 10px;
    /*overflow: hidden;*/
}
nav#main ul li {
    float: left;
}
nav#main ul li a {
    color: #000;
    text-align: center;
    padding: 5px 0;
    margin: 0 12px;
    font-size: 0.9rem;
}
nav#main ul li a,
nav#main ul li a:hover {
    text-decoration: none;
}
nav#main ul li a:hover {
    color: #36a9e1;
}

nav#main .search-btn {
    background: none;
    border: 0;
    width: 24px;
    height: 24px;
    margin-top: 32px;
    margin-right: 10px;
}
nav#main .search-btn:hover {
    cursor: pointer;
}
nav#main .search-btn svg {
    width: 24px;
    height: 24px;
}
.mobile-search-btn {
    position: absolute;
    background: none;
    border: 0;
    width: 24px;
    height: 24px;
    right: 60px;
    top: 20px;
    display: block;
    z-index: 999;
}
.mobile-search-btn:hover {
    cursor: pointer;
}
.mobile-search-btn svg {
    width: 24px;
    height: 24px;
    fill: #fff;
    stroke: #fff;
}
nav#mobile {
    z-index: 10;
    background-color: #36a9e1;
    box-shadow: inset 3px 0 10px 0 rgba(0, 0, 0, 0.35);
}
.pricing-hero .mobile-header-wrap {
    height: 68px;
    background: black;
}
nav#mobile div {
    margin-top: 10px;
}
nav#mobile ul {
    list-style: none;
    padding-left: 0;
}
nav#mobile ul li a {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #fff;
}
nav#mobile ul li a:hover {
    text-decoration: none;
    background-color: #fff;
    transition: all 0.3s ease;
    color: #36a9e1;
}
nav#mobile ul li a i {
    font-size: 24px;
}
.header {
    display: none;
}
.header .logo {
    position: absolute;
    top: 24px;
    left: 5px;
    height: 40px;
    width: auto;
}
@media (min-width: 1024px) {
    header {
        height: 85px;
        background-color: #fff;
        color: #000;
        position: fixed;
        z-index: 10;
        right: 0;
        left: 0;
        top: 0;
    }
    .header {
        display: block;
        position: fixed;
        top:0px;
    }
    header nav#main .button {
        margin-top: 25px;
        position: relative;
        font-size: 0.8rem;
        margin-left: 5px!important;
    }
    .container {
        width: calc(100% - 40px);
    }
    nav#mobile {
        display: none;
    }
    .mobile-search-btn {
        display: none;
    }
}