.header nav {
    position: fixed;
    z-index: 10;
    left: 0;
    right: 0;
    top: 0;
    padding: 0 5%;
    height: 90px;
    background-color: var(--main-color);
    box-shadow: 0px 3px 7px rgb(44, 44, 44);
    transition: all 0.5s;
}

.header nav .logo{
    float: left;
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.header nav .logo img{
    position: relative;
    height: 60px;
    width: auto;
}

.header nav .links{
    float: right;
    padding: 0;
    margin: 0;
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}


.header nav .links li{
    list-style: none;
    display: flex;
}

.header nav .links ul{
    display: flex;
}

.header nav .links  a{
    display: flex;
    padding: 1em;
    font-size: 17px;
    font-weight: 400;
    color: white;
    text-decoration: none;
}

.header nav .links  a:hover{
    display: block;
    padding: 1em;
    font-size: 17px;
    font-weight: 400;
    color: rgb(192, 192, 192);
    text-decoration: none;
}

.header nav .links .cta a{
    margin: 10px;
    background-color: transparent;
    color: white;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid white ;
}

.header nav .links .cta a:hover{
    margin: 10px;
    background-color: transparent;
    color: white;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: var(--secondary-color);
    border: 2px solid var(--secondary-color) ;
}

.header .fa-shopping-cart::before {
    font-size: 20px;
}

.header nav #cart{
    position: relative;
}

.header nav .cart-count{
    border-radius: 50%;
    background-color: red;
    width: 18px;
    height: 18px;
    position: absolute;
    right: 10px;
    top: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header nav .cart-count p{
    font-size: 10px;
}

.header .fa-user-circle::before {
    font-size: 20px;
}

.header nav .burger-trigger{
    display:none;
    width: auto;
    height: 100%;
    float: right;
    justify-content: flex-end;
    align-items: center;
}
.header nav .burger-trigger svg {
  width: auto;
  height: 50%;
  fill: #FFF;
  cursor: pointer;
  transition: 0.3s all ease;
}
.header nav .burger-trigger svg:hover {
  opacity: 0.7;
}
.header nav .links .close{
    display: none;
    width: 35px;
    height: 35px;
    position: absolute;
    right: 40px;
    top: 30px;
    z-index: 10;
    cursor: pointer;
    transition: 0.3s all ease;
}
.header nav .links .close:hover {
  opacity: 0.7;
}
.header nav .links .close svg {
  width: 100%;
  height: 100%;
  fill: #FFF;
}
@media (max-width: 780px){
    .header nav .links {
        display: none;
        position: fixed;
        width: 100%;
        height: 100%;
        left: 0px;
        top: 0px;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        background: rgba(0,0,0,0.85);
        z-index: 100;
    }
    .header nav .links ul {
      flex-direction: column;
    }
    .header nav .burger-trigger{
        display: flex;
    }
    .header nav .links.triggered {
        display: flex;
    }
    .header nav .links.triggered .close{
        display: flex;
    }
}