@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "PT Serif", serif;
}

.pt-serif-regular {
    font-family: "PT Serif", serif;
    font-weight: 400;
    font-style: normal;
}

.pt-serif-bold {
    font-family: "PT Serif", serif;
    font-weight: 700;
    font-style: normal;
}

.pt-serif-regular-italic {
    font-family: "PT Serif", serif;
    font-weight: 400;
    font-style: italic;
}

.pt-serif-bold-italic {
    font-family: "PT Serif", serif;
    font-weight: 700;
    font-style: italic;
}

html {
    scroll-behavior: smooth;
}

main {
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
}

a {
    text-decoration: none;
    color: black;
}

.container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header {
    position: sticky;
    top: 0;
    width: 100%;
    height: 74px;
    line-height: 74px;
    display: flex;
    align-items: center;
    background: #fff;
    z-index: 30;

    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

section {
    margin: 128px 0;
    scroll-margin-top: 90px;
}

.header__logo {
    font-size: 28px;
    display: inline-flex;
    align-items: center;
}

.header__logo img {
    max-height: 54px;
    width: auto;
    display: block;
}

.header__logo span {
    font-size: 16px;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header__nav-item {
    font-size: 18px;
    line-height: normal;
    position: relative;
    transition: color .2s ease;
}

.header__nav-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: black;
    transition: width .25s ease;
}

.header__nav-item:hover {
    color: #555;
}

.header__nav-item:hover::after {
    width: 100%;
}