* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*:not(:focus-visible) {
    outline: none;
}

*:not(input, textarea, select):focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px #ffffff,
        /* Inner: visible on dark (#343288) */ 0 0 0 6px #000000;
    /* Outer: visible on light (#f9f9f9) */
    border-radius: 4px;
    /* Optional, for rounded elements */
}

body {
    margin: 0;
    font-family: var(--zm-font-family-secondary);
    font-size: 17px;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
}

strong {
    font-weight: bold;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    font-size: inherit;
    font-family: inherit;
    font-weight: 600;
    /* letter-spacing: 0.02em; */
    line-height: 1.58em;
}

p {
    letter-spacing: 0.02em;
    line-height: 1.58em;
}

a {
    color: inherit;
}

.block-title {
    margin-top: 0;
}

.container {
    width: 100%;
    max-width: 1330px;
    padding-inline: 80px;
    margin-inline: auto;
}

@media (max-width: 1199px) {
    .container {
        padding-inline: 64px;
    }
}

@media (max-width: 1023px) {
    .container {
        padding-inline: 48px;
    }
}

@media (max-width: 767px) {
    .container {
        padding-inline: 30px;
    }
}
