.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 50;
}
.header::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(60, 63, 92);
    z-index: 2;

}
.header__body {
    position: relative;
    /* z-index: 2; */
    display: flex;
    justify-content: space-between;
    height: 80px;
    align-items: center;
}
.header__logo{
    flex: 0 0 60px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 3;

}

.header__logo  img{
   max-width: 100%;
   display: block;
}
.header__burger{
    display: none;
}
.header__menu{
    font-size: 14px;
}

.header__list {
    /* display: flex; */
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}
.header__list li{
    list-style: none;
    margin-left: 30px;
}
.header__link{
    color: #ffffff;
    text-transform: uppercase;
    font-size: 18px;
    text-decoration: none;
}

@media(max-width: 767px){
    body.lock {
        overflow: hidden;
    }

    .header__logo{
        flex: 0 0 40px;
    }
    .header__body {
        height: 50px;
        top: 25px;
    }
    .header__burger {
        display: block;
        position: relative;
        width: 30px;
        height: 20px;
        position: relative;
        z-index: 3;
    }
    .header__burger span {
        position: absolute;
        background-color: #ffffff;
        width: 100%;
        height: 2px;
        left: 0;
        top: 9px;
        transition: all 0.3s ease 0s;
    }
    .header__burger::before,
    .header__burger::after{
        content: '';
        background-color: #ffffff;
        position: absolute;
        width: 100%;
        height: 2px;
        left: 0;
        top: px;
        transition: all 0.3s ease 0s;
    }
    .header__burger::after{
        bottom: 0;
    }

    .header__burger.active::before {
        transform: rotate(45deg);
        top: 9px;
    }
    .header__burger.active::after {
        transform: rotate(-45deg);
        bottom: 9px;
    }
    .header__burger.active span {
        transform: scale(0);
    }
    .header__menu {
        position: fixed;
        top: -150%;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        transition: all 0.3s ease 0s;
        background-color: rgba(0, 0, 0, 0.95);
        padding: 70px 10px 20px 10px;

     }

     .header__menu.active {
         top: 0;
     }

     .header__list{
         display: block;
     }

     .header__list li{
         margin:0px 0px 20px 0px;
     }

     .header__link {
         font-size: 24px;
     }
}



header {
  width: 100%;
  /* background: linear-gradient(to top right, #060628, #1F245A, #682359); */
  /* border-bottom: 3px solid #e1e1e1; */
  /* animation magic */
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  z-index: 9999;
  top: 0px;
  position: fixed;
  color:#fff;
}

.shrink {padding: 0px 0;top: 0px;/* background: #ffffff8c; */backdrop-filter: saturate(100%) blur(2px);/* border-bottom: 1px solid #ffffff17; */box-shadow: inset 0px 2px 4px #00000012;}


.shrink .logo {
    width: 80px;
}

.shrink .menu {
    padding: 0px;
}

.shrink .menu li a {
    color: #1e1e1e;
}

.shrink .menu li a.filled-1 {
    color: #fff;
}