.head {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    width: 100%;
    padding: 40px 0;
}

.head .nav {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-content: center;
    align-items: flex-end;
    width: 100%;
    font-size: 14px;
    font-size: 14px;
}
.head .nav .cart,
.head .nav .checkout,
.head .nav .confirmation {
    max-width: 290px;
    text-align: center;
    position: relative;
    padding-bottom: 8px;
    border-bottom: 2px solid #E1E4F5;
    width: 33.3%;
}
.head .nav .active {
    border-bottom: 2px solid #1865FF;
}
.head .nav .cart::after,
.head .nav .checkout::after,
.head .nav .confirmation::after {
    content: " ";
    position: absolute;
    left: calc(50% - 10px);
    bottom: -1px;
    transform: translate(50%, 50%);
    width: 10px;
    height: 10px;
    background-color: #E1E4F5;
    border-radius: 50%;
}
.head .nav .active::after {
    background-color: #1865FF;
}
.back {
    left: 0;
    position: absolute;
}
.back img {
    position: relative;
    top: 3.5px;
    margin-right: 5px;
}
.back a {
    color: #1865FF;
    background-color: white;
    border-radius: 15px;
    padding: 5px 20px;
    font-size: 14px;
    font-weight: 500;
    font-family: "Albert Sans";
}

@media (max-width: 1024px) {
    .head .back {
        display: none;
    }
}
