:root {
    --pq-primary: #073d73;
    --pq-primary-2: #04538e;
    --pq-accent: #e7192d;
    --pq-cyan: #35b8d0;
    --pq-dark: #0d2238;
    --pq-text: #394a5c;
    --pq-muted: #6f7d8b;
    --pq-light: #f4f7fa;
    --pq-border: #dfe6ed;
    --pq-white: #fff;
    --pq-container: 1180px;
    --pq-radius: 15px;
    --pq-shadow: 0 14px 34px rgba(10, 42, 73, .10);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--pq-text);
    background: #fff;
   font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--pq-primary-2);
    text-decoration: none;
}

a:hover {
    color: var(--pq-accent);
}

button,
input,
textarea,
select {
    font: inherit;
}

.pq-container {
    width: min(100% - 32px, var(--pq-container));
    margin-inline: auto;
}

.site-main {
    min-height: 60vh;
}

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

.pq-section,
.pq-single-content {
    padding: 60px 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: var(--pq-dark);
    line-height: 1.35;
}

.entry-content img {
    border-radius: 10px;
}

.pq-entry {

    margin-inline: auto;
}

.pq-button,
button[type="submit"],
input[type="submit"] {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 11px 24px;
    border: 0;
    border-radius: 24px;
    background: var(--pq-accent);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

input,
textarea,
select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--pq-border);
    border-radius: 8px;
    outline: none;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--pq-primary-2);
    box-shadow: 0 0 0 3px rgba(4, 83, 142, .10);
}

body,
button,
input,
textarea,
select,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Be Vietnam Pro', sans-serif;
}