header {
    position: absolute;
    left: 0;
    right: 0;
    top: 40px;
}

header.fixed {
    position: fixed;
    top: 10px;
    z-index: 99;
}

header.fixed .container {
    backdrop-filter: blur(40px);
    background: rgba(255, 255, 255, 0.80);
}

header.fixed .container nav ul li a {
    color: #000;
    font-weight: 500;
}

header .container {
    display: grid;
    grid-template-columns: 1fr 10fr 1fr;
    align-items: center;
    grid-gap: 20px;
    border-radius: 40px;
    border: 1px solid #9A9A9A;
    background: rgba(255, 255, 255, 0.20);
    box-shadow: 0px 4px 4px 0px rgba(89, 83, 83, 0.15);
    backdrop-filter: blur(7.5px);
    padding-right: 20px;
}

header .logo a img {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    margin-bottom: -3px;
}

header nav ul {
    display: flex;
    justify-content: space-between;
}

header nav ul li {
    display: inline-block;
}

header nav ul li a:hover {
    padding-bottom: 5px;
    border-bottom: 1px solid var(--color1);
}

header .social {
    text-align: right;
}

header .social a img {
    width: 35px;
    margin-bottom: -3px;
}

/*menu*/
.menu {
    text-align: right;
    z-index: 998;
    display: none;
    position: fixed;
    right: 15px;
    top: 0px;
    padding: 5px 5px 0px 5px;
    background-color: #fff;
    border-radius: 10px;
}

.menu p {
    color: #fff;
    display: inline-block;
}

.menu .line {
    width: 30px;
    height: 3px;
    background-color: #071021;
    border-radius: 10px;
    margin-bottom: 5px;
}

.menu.active .line:nth-child(1) {
    display: none;
}

.menu.active .line:nth-child(2) {
    transform: rotateZ(-45deg);
    margin-bottom: -3px;
    background-color: #F43F3F;
}

.menu.active .line:nth-child(3) {
    transform: rotateZ(45deg);
    background-color: #F43F3F;
}

.menu.active {
    padding: 10px 5px;
}

.burger {
    display: inline-block;
    vertical-align: middle;
    margin-left: 3px;
    padding: 10px;
}

.mob {
    display: none;
}

/*menu*/