﻿.tpnavbar {
    position:absolute;
    display: flex;
    align-items: center;
    top:0;
    width: 100%;
    height: 60px;
    background-color: white;
    padding: 0px 32px;
    gap: 24px;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0px 1px 2px 0px #2E2D3026;
}

.tpnavbar-desktop {
    display: flex;
    align-items: center;
    width:100%;
}

.tpnavbar-mobile {
    display: flex;
    align-items: center;
    justify-content:end;
    width: 100%;
}

.tppages {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tppages-link {
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    color: #2E2D30;
    padding: 8px 12px;
}

.tppages-link:hover {
    text-decoration: none;
    background-color: #eee;
    color: #2E2D30;
}

.tppages-link:focus {
    text-decoration: none;
    background-color: #eee;
    color: #2E2D30;
}

.tpend{
    margin-left: auto;
}

.toibutton {
    background-color: #24BD76;
    height:40px;
    padding: 0px 24px;
    font-weight:600;
    border-radius: 4px;
    border:none;
}

#mobile-menu-dropdown {
    position: relative;
    display: none;
    flex-wrap: wrap;
    align-items: center;
    padding: 0px 32px;
    box-shadow: 0px 1px 2px 0px #2E2D3026;
}


.landingpage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    gap: 24px;
    height: calc(100vh - 160px);
}

@media (max-width:930px) {
    .hide-on-mobile {
        display:none !important
    }
}

@media (min-width:931px) {
    .hide-on-desktop {
        display: none !important
    }
}