/* змінні кольорів та шрифтів ------------------------------------------*/
:root {
    --color-primary: #2E88CC;
    --color-dark: #1a6ba8;
    --color-text: #3C3C3B;
    --font-main: Arial, Helvetica, sans-serif;
}

/* основа ----------------------------------------------------------------*/
html, body, h1, h2, h3, h4, h5, h6, p {
    padding: 0;
    margin: 0;
    border: 0;
    font-family: var(--font-main);
    font-size: 16px;
}
/* лапки -----------------------------------------------------------------*/
q:lang(en) {
    quotes: "\201C" "\201D";
}
q:lang(uk) {
    quotes: "\00AB" "\00BB";
}
/* посилання  ------------------------------------------------------------*/
a {
    color: #1a73e8;
    text-decoration: none;
}
a:hover {
    color: #1558b0;
    text-decoration: underline;
}
a:focus:not(:focus-visible), button:focus:not(:focus-visible) {
    outline: none;
}
a:focus-visible, button:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}
/* html -----------------------------------------------------------------*/
html {
    height: 100%;
}
/* body -----------------------------------------------------------------*/
body {
    height: 100%;
    background-color: #F8F8F8;
    color: #000000;
    font-style: normal;
    line-height: 1.5;
    font-weight: normal;
}
/* wrapper --------------------------------------------------------------*/
.wrapper {
    display: block;
    max-width: 1200px;
    min-height: 100%;
    margin: 0 auto;
    width: 100%;
    background-color: #FFFFFF;
    box-shadow: 0 0 4px rgba(0,0, 0, 0.15);
    overflow: hidden;
}
/* block -----------------------------------------------------------------*/
.block {
    display: block;
    width: 100%;
    box-sizing: border-box;
}
/*-----------------------------------------------------------------------*/
.container_home {
    position: relative;
    text-align: center;
    width: 100%;
    min-height: 55px;
    height: auto;
    padding: 15px 0;
    color: #ffffff;
    background: var(--color-primary);
    font-family: var(--font-main);
    font-size: clamp(16px, 2.5vw, 24px);
    overflow: hidden;
}
/*-----------------------------------------------------------------------*/
