.headerWrapper {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 5%;
    display: flex;
    align-items: center;
    align-content: center;
    align-self: center;
    color: #FFFFFF;
    transition: .5s ease;
}

.headerBlur {
    background-color: rgba(245, 245, 245, 0.7);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 20px rgba(0, 17, 26, 0.07);
    color: var(--text-color);
}

.headerBlur > .headerContactBtnWrapper > .headerContactBtn{
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.headerLogoWrapper {
    position: relative;
    top: -10px;
}

.headerLogo {
    position: absolute;
    width: 120px;
    opacity: 1;
    visibility: visible;
    transition: .3s ease;
}

.headerLogoHidden {
    opacity: 0;
    visibility: hidden;
}

.headerBtnWrapper {
    flex: 1;
    text-align: center;
    padding-left: 100px;
}

.headerBtnWrapper {
    font-family: sans_regular;
    font-size: 15px;
    flex: 1;
    text-align: center;
}

.headerBtnWrapper > li{
    display: inline-block;
    margin: 0 20px;
    transition: .3s ease;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    padding: 5px 0;
    border-radius: 0 0 1px 1px;
}

.headerBtnWrapper > li:hover{
    transform: scale(1.2);
    box-shadow: 0 3px 0 var(--primary-color);
}

.headerBtnWrapper > li > a {
    color: #FFFFFF;
    transition: 1.5s ease;
}

.headerBlur > .headerBtnWrapper > li > a {
    color: var(--text-color);
}

.headerContactBtnWrapper {
    width: 120px;
}

.headerContactBtn {
    position: relative;
    display: block;
    border-radius: 100px;
    border: 1px solid #FFFFFF;
    text-align: center;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    cursor: pointer;
    perspective: 1px;
}

.headerContactBtnBack {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transform: translateY(100%);
    background: #FFFFFF;
    transition: .3s ease;
}

.headerContactBtnTxt {
    position: relative;
    z-index: 3;
    padding: 6px 0;
    font-family: sans_regular;
    font-size: 15px;
    transition: .3s ease;
}

.headerContactBtn:hover > .headerContactBtnTxt{
    color: var(--primary-color);
}

.headerContactBtn:hover > .headerContactBtnBack{
    transform: translateY(0);
}

/*-----------------Mobile---------------------*/
.headerMobileWrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

/*-----------------BurgerMenu---------------------*/
.burgerMenu{
    display:flex;
    flex-direction:column;
    width: 32px;
    top: 25px;
    left: 20px;
    cursor:pointer;
    position: absolute;
    z-index: 100000;
    user-select: none;
    -webkit-user-select: none;
}

.burgerMenu > .burgerInside{
    background: #fff;
    border-radius: 100px;
    height: 3px;
    margin: 2px 0;
    transition: .4s  cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.burgerInside:nth-of-type(1){
    width:50%;

}

.burgerInside:nth-of-type(2){
    width:100%;
}


.burgerInside:nth-of-type(3){
    width:75%;

}

.burgerCheck[type="checkbox"]{
    display: none;
}

.burgerCheck[type="checkbox"]:checked ~ .burgerInside{
    background: #000000;
}

.burgerCheck[type="checkbox"]:checked ~ .burgerInside:nth-of-type(1){
    transform-origin:bottom;
    transform:rotatez(45deg) translate(2px,-1px)
}


.burgerCheck[type="checkbox"]:checked ~ .burgerInside:nth-of-type(2){
    transform-origin:top;
    transform:rotatez(-45deg)
}


.burgerCheck[type="checkbox"]:checked ~ .burgerInside:nth-of-type(3){
    transform-origin:bottom;
    width:50%;
    transform: translate(14px,-2px) rotatez(45deg);
}

.mobileMenuMainWrapper{
    background-color: rgba(239, 239, 239, 0.5);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
    transition: .6s ease;
    z-index: 1000;
}


.mobileMenuItemsWrapper{
    transition: all .375s;
    margin-top: 30vh;
}

.mobileMenuItemsWrapper li{
    opacity: 0;
    margin: 25px 0;
    transform: translateX(-50%);
}

.mobileMenuItemsWrapper.is-open li{
    opacity: 1;
    transform: translateX(0);
}

.mobileMenuItem{
    font-family: bellega;
    font-size: 20px;
    color: #000000;
    opacity: .6;
    transition: .4s ease;
    padding-left: 50px;
    user-select: none;
    -webkit-user-select: none;
}

.mobileMenuItem > a{
    color: #000000;
}

.mobileMenuItemsWrapper li:nth-child(1)  {
    transition: all 275ms 175ms
}
.mobileMenuItemsWrapper li:nth-child(2)  {
    transition: all 275ms 225ms
}
.mobileMenuItemsWrapper li:nth-child(3)  {
    transition: all 275ms 275ms
}
.mobileMenuItemsWrapper li:nth-child(4)  {
    transition: all 275ms 325ms
}
.mobileMenuItemsWrapper li:nth-child(5)  {
    transition: all 275ms 375ms
}
.mobileMenuItemsWrapper li:nth-child(6)  {
    transition: all 275ms 425ms
}

.mobileHeaderLogo {
    height: 25px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 20px;
    z-index: 10;
}


@media screen and (max-width: 900px){

    .headerBtnWrapper {
        font-size: 14px;
    }

    .headerBtnWrapper > li{
        margin: 0 6px;
    }
}

@media screen and (max-width: 700px){
    .headerWrapper {
        display: none;
    }
}