/* Explain: Base reset, typography defaults, and smooth scroll for the courier service site. - */
* {
    box-sizing: border-box;
}

html {
    background: var(--background-color);
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    color: var(--text-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-navy);
}

[x-cloak] {
    display: none !important;
}

::selection {
    background: var(--primary-blue);
    color: var(--white-color);
}

button, a {
    -webkit-tap-highlight-color: transparent;
}