/**
* Файл стилей для настройки шаблона.
* Регистрировать этот файл для подключения в шаблоне не нужно
*/
:root {
    --button-color: #c5530c;
    --button-text: #fff;
    --button-color-hover: #c5530c;
    --button-text-hover: #fff;
    --basic-company: #058d27;
    --second-company: #212121;
    --basic-company-text: #fff;
    --second-company-text: #fff;
    --bg: #fff;
    --body-text: #000;
    --body-heading: #2E5DBA;
    --boxed-color: #fff;
    --boxed-text: #222;
    --button-second-color: #222;
    --button-second-text: #fff;
    --shadow-color: 0 2px 5px rgba(0, 0, 0, .3);
    --border-color: #dbdbdb;
    --font-family: sistemlife, sans-serif;
}
html {
    height: 100%;
    font-family: var(--font-family);
}
body {
    height: 100vh;
    font-size: 16px;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    line-height: 1.1;
    font-weight: bold;
    font-family: inherit;
}
h1, .h1 {
    font-size: 40px;
}
.h2 {
    font-size: 32px;
}
.h3 {
    font-size: 28px;
}
.h4 {
    font-size: 24px;
}
.h5 {
    font-size: 22px;
}
p, li {
    line-height: 140%;
    margin-bottom: 1.5rem;
    text-align: justify;
}
a {
    text-decoration: none;
    transition: all 0.3s linear;
    color: var(--body-heading);
    opacity: 1;
}
a:hover {
    opacity: .8;
}
iframe {
    width: 100%;
    max-width: 600px;
    border: none;
}
@media (max-width: 768px) {
    iframe {
        max-width: 100%;
    }
}

/***** #Blocks & boxed ***********************************************/
.block {
    position: relative;
    margin-bottom: 50px;
}
.block__title {
    margin-bottom: 25px;
}
.block__annotation, .block__description {
    margin-bottom: 20px;
    flex: 1 1 50%;
    width: 100%;
    font-size: 18px;
}
.block__description p {
    overflow-wrap: anywhere;
    text-align: justify;
}
.block__banner {
    margin-left: 15px;
    flex: 0 0 300px;
}
.block--boxed {
    position: relative;
    background-color: var(--boxed-color);
    padding: 15px;
}
.block--border {
    border: 1px solid #dbdbdb;
    border-radius: 3px;
}
.error {
    color: rgba(231, 71, 71, 1);
    display: block;
    font-size: 13px;
}
.block__img {
    height: fit-content;
    text-align: center;
    margin-bottom: 20px;
}
.btn, .tiny_button {
    background-color: var(--body-heading);
    color: #fff;
    font-size: 1rem;
    padding: 10px;
    border-radius: 5px;
    line-height: 1;
    text-decoration: none;
    font-weight: 400;
    border: 2px solid var(--body-heading);
    cursor: pointer;
    transition: all 0.3s linear;
    opacity: 1;
}
.btn:hover {
    opacity: .7;
}
.fa-t:before {
    content: "\f2c6";
}
button, input, optgroup, select, textarea {
    font-family: var(--font-family);
}
@media (max-width: 768px) {
    .block__annotation, .block__description {
        font-size: 16px;
    }
}