html{
    scroll-behavior: smooth;
}
html, body {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%
}
body {
    min-width: 240px;
    font-size: 100%;
    line-height: 1.5;
    font-size: 16px;
    font-family: 'Nunito',  sans-serif;
    font-weight: 400;
    color: #3a3a3b;
}
* {
    margin: 0;
    padding: 0;
    border: 0;
}
*, *::before, *::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    outline: none;
}
nav, footer, header, aside {
    display: block;
}
a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
a:focus, a:active {
    outline: none;
}
a:visited, a:hover {
    text-decoration: none;
}
ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}
img {
    -o-object-fit: cover;
    object-fit: cover;
}
input, button, textarea {
    font-family: inherit;
}
input::-ms-clear {
    display: none;
}
button {
    cursor: pointer;
    text-align: center;
    outline: none;
}
button::-moz-focus-inner {
    padding: 0;
    border: 0;
}
textarea {
    resize: none;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    margin: 0;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0px 10px;
}
.content__wrapper {
    background-image: url(../images/bg.jpg);
    background-size: contain;
    background-repeat: repeat;
    background-position: top center;
}
.breadcrumbs__items {
    margin-bottom: 20px;
    padding: 15px 15px 13px;
    border: 1px solid #224b9b;
    border-radius: 15px;
    color: #224b9b;
    font-weight: 600;
    overflow-x: hidden;
}
.breadcrumbs__items li {
    display: inline-block;
}
.breadcrumbs__items span {
    font-size: 14px;
}
.breadcrumbs__items li:first-child {
    text-transform: uppercase;
}
.breadcrumbs__items li+li {
    padding-left: 20px;
    position: relative;
}
.breadcrumbs__items li+li::before {
    position: absolute;
    content: '';
    left: 4px;
    top: 9px;
    width: 9px;
    height: 5px;
    background-image: url(../images/icons/arrow-right.svg);
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}
.content-info__title {
    position: relative;
    padding-left: 47px;
}
.content-info__title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 32px;
    height: 32px;
    background-image: url(../images/icons/h1.svg);
}
.content-info__subtitle {
    position: relative;
    padding-left: 32px;
}
.content-info__subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 26px;
    height: 26px;
    background-image: url(../images/icons/pills.svg);
}