﻿

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    padding-left: 20px;
    background: linear-gradient(#E8E6E6,#bbbbbb);
    /*background: linear-gradient(#a0a0a0,#E8E6E6 );*/
    /*background-color:*/ /* #9fabd3*/ /*#E8E6E6;*/
    box-shadow: 0 2px 6px 0 rgba(0,0,0,.5);
  
}
.Headerlinks {
    list-style: none;
    display: flex;
}

.FirstLink, .SecondLink, ButtonLink {
    display: inline-block;
    padding: 0px 20px;
}

.Headerlinks li a {
    font-size: 1.25em;
    transition: all .3s ease 0s;
}


.HeaderDropdownContainer {
    display: inline-block;
}

.HeaderMenuButton {
    background: linear-gradient(#65A0E5,#4d74a1);
    /* background-color: #65A0E5; */
    color: white;
    width: 120px;
    height:70px;
    padding: 16px;
    font-size: 1.25em;
    font-family: Verdana;
    border: none;
    border-radius:2px;
    cursor: pointer;
    box-shadow: 0px 8px 10px 0px rgb(0 0 0 / 20%);
    letter-spacing: 0;
    line-height: 1em;
    margin: 0;
    opacity: 1;
    outline: 0;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-rendering: geometricprecision;
    text-transform: uppercase;
    transition: opacity 300ms cubic-bezier(.694, 0, 0.335, 1),background-color 100ms cubic-bezier(.694, 0, 0.335, 1),color 100ms cubic-bezier(.694, 0, 0.335, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    white-space: nowrap;
}

.button-48 {
    appearance: none;
    background-color: #FFFFFF;
    border-width: 0;
    box-sizing: border-box;
    color: #000000;
    cursor: pointer;
    display: inline-block;
    font-family: Clarkson,Helvetica,sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1em;
    margin: 0;
    opacity: 1;
    outline: 0;
    padding: 1.5em 2.2em;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-rendering: geometricprecision;
    text-transform: uppercase;
    transition: opacity 300ms cubic-bezier(.694, 0, 0.335, 1),background-color 100ms cubic-bezier(.694, 0, 0.335, 1),color 100ms cubic-bezier(.694, 0, 0.335, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    white-space: nowrap;
}

.HeaderMenuButton:before {
    animation: opacityFallbackOut .5s step-end forwards;
    backface-visibility: hidden;
    background-color: #65A0E5;
    clip-path: polygon(-1% 0, 0 0, -25% 100%, -1% 100%);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: translateZ(0);
    transition: clip-path .5s cubic-bezier(.165, 0.84, 0.44, 1), -webkit-clip-path .5s cubic-bezier(.165, 0.84, 0.44, 1);
    width: 100%;
}

.HeaderMenuButton:hover:before {
    animation: opacityFallbackIn 0s step-start forwards;
    clip-path: polygon(0 0, 101% 0, 101% 101%, 0 101%);
}

.HeaderMenuButton:after {
    background-color: #FFFFFF;
}

.HeaderMenuButton span {
    z-index: 1;
    position: relative;
}

.MenuButtonContent {
    text-align: center;
    display: none;
    position: absolute;
    right: 10px;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}


.MenuButtonContent a {
    color: #0546E6;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

        .MenuButtonContent a:hover {
            background-color: #f1f1f1
        }

.HeaderDropdownContainer:hover .MenuButtonContent {
    display: block;
}

.HeaderDropdownContainer:hover .HeaderMenuButton {
    background-color: #65A0E5;
}


