.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.55);
    padding-top: 0.8em;
    padding-bottom: 0.3em;
    backdrop-filter: blur(4px);
    z-index: 999;
}

.brand { 
    position: absolute;
    top: 0;
    left: 5%;
    cursor: pointer;
}

.header .brand img {
    width: 200px;
}

.nav {
    width: 90%;
    text-align: right;
    margin: auto;
}

.navItems {
    width: 800px;
    float: right;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color:#052E37;
    margin-left: auto;
}

.navItems li {
    list-style: none;
    text-transform: uppercase;
    font-size: 1.2em;
    cursor: pointer;
    transition: 0.3s;
}

.navItems li:hover {
    text-decoration: none;
    color:#947042 !important;
}

.socials {
    margin-bottom: 0.6em;
    font-size: 20px;
    width: 100%;

    
}

.socials i {
    margin-left: 2em;
    color:#052E37;
}

.rightNav {
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    transition: 0.7s;
    display: none;
    background-color: rgba(255, 255, 255, 0.55);
    
    flex-direction: column;
    align-items: flex-end;
    padding-top: 6em;
    padding-left: 2em;
    padding-right: 2em;
    padding-bottom: 3em;
    backdrop-filter: blur(4px);
    transform: translateX(100%);
}

.rightNav.active {
    transform: translateX(0) !important;
}

.rightNavSocials {
    margin-bottom: 0.6em;
    font-size: 20px;

    
}

.rightNavSocials i {
    margin-left: 1.5em;
    color: #052E37;
}

.rightNavItems {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: column;
}

.rightNavItems li {
    list-style: none;
    text-transform: uppercase;
    font-size: 1.2em;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 1em;
    color: #052E37;
}

.rightNavItems li:hover {
    text-decoration: underline;
}

.burger {
    width: 55px;
    height: 35px;
    float: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-around;
    z-index: 999;
    display: none;
}

.burger .line1 {
    width: 55px;
    height: 4px;
    background-color: #052E37;
    transition: 0.3s;
    transform: rotate(0);
}


.burger .line2 {
    width: 35px;
    height: 4px;
    background-color: #052E37;
    transition: 0.3s;
}

.burger .line1.active {
    transform: rotate(45deg) !important;
    width: 35px !important;
    
}

.burger .line2.active {
    transform: rotate(-45deg) !important;
    margin-top: -33px !important;
}


@media (max-width: 768px) {
    .rightNav {
        display: flex;
        z-index: 1000;
    }

    .header {
        padding: 0.6em 2em;
        height: 55px;
    }

    .header .brand img {
        width: 120px;
    }

    .nav {
        display: none;
    }

    .burger {
        display: flex;
        position: fixed;
        top: 0.6em;
        right: 1em;
        z-index: 1001;
    }
}