* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html,body {
    width: 100%;
    line-height: 1.15;
    color: #000;
    font-family: "Petersburg W01 Book",sans-serif,Arial,Helvetica;
    font-size: 13px;
    line-height: 150%;
    position: relative
}

img {
    max-width: 100%
}

a {
    cursor: pointer
}

.header {
    /* position: absolute; */
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 1260px;
    width: 100%;
    margin: 0 auto;
    /* height: 180px; */
    /* z-index: 2; */
    background: #fff;
    /* transform: translateX(-50%); */
    /* top: 0; */
    /* left: 50% */
}

.header__logo {
    /* margin-top: 75px; */
    display: flex;
    justify-content: center
}

.header__logo img {
    max-width: 362px
}

.header__nav {
    width: 100%;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #162b48
}

.header__nav a {
    color: #162b48;
    font-size: 16px;
    font-family: "Fira Sans",sans-serif;
    font-weight: 300;
    padding: 10px 0 16px 34px;
    display: block
}

.header__nav a:hover {
    color: #cb0000
}

.active {
    font-weight: 700!important;
    color: #cb0000!important
}

.content {
    max-width: 940px;
    width: 100%;
    margin: 0 auto;
    margin-top: 200px
}

.header__menu {
    display: none
}

@media screen and (max-width: 700px) {
    .header__nav {
        display:none
    }

    .header {
        height: 80px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding-right: 20px
    }

    .header__logo img {
        width: 330px;
        height: 70px;
        object-fit: cover;
    }

    .header__menu {
        display: block
    }

    .content {
        margin-top: 100px
    }
}
