.container {
    width: 100%;
}

.container .head {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: #6b86ca;
    height: 90px;
}

.container .head .img2 img {
    width: 100%;
    transform: translateY(15%);
}

.menu {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    gap: 50px;
    align-items: center;
    padding : 0 20px
}

.head .menu a {
    color: #fff;
    font-size: 17px;
}

.head .menu a.active {
    text-decoration: underline;
    font-weight: bold;
}



@media screen and (max-width: 768px) {
    .content {
        padding-top: 72px;
    }

    .container .head {
        height: 72px;
    }

    .container .head .img2 {
        width: 87.5px;
    }

}

@media screen and (min-width: 769px) {
    .content {
        padding-top: 90px;
    }

    .container .head {
        height: 90px;
    }

    .container .head .img2 {
        width: 110px;
    }
}
