#header.header {
    display: flex;
    padding: 10px;
    background-color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    justify-content: space-between;
    margin-right: 8rem;
    color: #428bca;
}

#header.header a {
    color: #428bca;
}

#header.header img {
    list-style: none;
    cursor: pointer;
    width: 12rem;
    transition: fill 250ms ease-in;
    fill: #f06292;
    padding-right: 10px;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-right: auto;
}

.nav_listitem {
    list-style: none;
    position: relative;
    padding: 1.5rem 1rem;
    cursor: pointer;
}

.nav_listitem:hover::after, .nav_listitem:focus::after {
    width: 80%;
}

.nav_listitem:hover ul, .nav_listitem:focus ul {
    opacity: 1;
    visibility: visible;
}

.nav_listitemdrop {
    position: absolute;
    top: 4rem;
    left: -1rem;
    box-shadow: 0 0 10px #e1e5ee;
    background-color: white;
    border-radius: 0.2rem;
    width: 18rem;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 200ms ease-in-out;
    z-index:1;
}

.nav_listitemdrop li {
    list-style: none;
    padding: 0.5rem 0.6rem;
    border-radius: 0.2rem;
    transition: background-color 200ms ease-in-out;
}

.nav_listitemdrop li:hover, .nav_listitemdrop li:focus {
    background-color: #e4ecfc;
    }

/*font-size: 36px;
    line-height: 44px;
    max-width: 748px;
    font-family: 'Montserrat-SemiBold', sans-serif !important;
    font-weight: normal !important;
    font-style: normal !important;*/

/*button swarvete
    margin-bottom: 20px;
    width: 243px;
    height: 48px;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.07em;
    font-weight: 900;
    padding: 9px 25px;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    padding: 8px 15px;
    border: 1px solid transparent;
    border-radius: 20px;
    line-height: 100%;
    transition: all 0.2s ease;
    text-decoration: none;
    text-transform: uppercase;
    color: #FFF;
    background-color: #FFA000;
*/