body {
    margin: 0;
}

/*nav*/

.nav i {
    padding-right: 16px;

}

.logo {
    color: #36394A;
}

.nav__link {
    color: #36394A;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    height: 52px;
    white-space: nowrap;
    overflow: hidden;
}

.nav__link:hover,
.menu-dropdown:hover {
    font-weight: bold;
    border-bottom: 2px solid #36394A;
    align-items: center;
    margin: 0;

}

.nav__link::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 0%;
}


.nav {
    margin-top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 52px;
    box-shadow: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: #FFF;
    
}

.nav__center {
    display: flex;
    align-items: center;
    margin: 0 10px;
}

.nav__left {
    display: flex;
    align-items: center;
    margin: 0 10px;
    margin-left: 7%;
}

.nav__right {
    display: flex;
    align-items: center;
    margin-right: 7%;
}


.button-small {
    background-color: #031732;
    border-radius: 99px;
    width: 105px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

@media (max-width: 768px) {

    .nav {
        justify-content: space-between;
    }

        .nav__center {
                display: none;
            }
    .nav__left {
        justify-content: space-between;
        width: 100%;
        margin-left: 10px;
    }

    .nav__right {
        width: 100%;
        margin-right: 10px;
    }

    .nav__toggle {
        display: block;
        cursor: pointer;
    }

    .nav__left {
        justify-content: space-between;
        width: 100%;
    }

    .nav__toggle {
        display: block;
        cursor: pointer;
    }

    .mobile {
        color: white;
        display: inline;
    }
}


@media (min-width: 769px) and (max-width: 1024px) {
        .nav {
                justify-content: space-between;
            }
        
            .nav__center {
                display: none;
            }
        
            .nav__left {
                justify-content: space-between;
                width: 100%;
                margin-left: 10px;
            }
        
            .nav__right {
                width: 100%;
                margin-right: -300px;
            }

}