@charset "UTF-8";

/*Обнуление*/

* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
main,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html,
body {
  width: 100%;
  height: 100%;
  font-size: 100%;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
  font-size: 100%;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:hover,
a:visited {
  text-decoration: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0;
}

/*---------------------------------------------------------*/

body {
  font-family: 'Lato', sans-serif;
  color: #0f0e0e;
  background: #ffffff;
}

.wrapper {
  min-height: 100%;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.container {
  max-width: 1170px;
  padding: 0 15px;
  margin: 0 auto;
}

.section {
  padding: 75px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  background: url("../images/decor-image.png") center bottom/40px auto no-repeat;
  position: relative;
}

.section-title::before,
.section-title::after {
  content: '';
  width: 100px;
  height: 3px;
  background-color: #0066cc;
  position: absolute;
  bottom: 8px;
}

.section-title::before {
  right: 50%;
  -webkit-transform: translateX(-30px);
  -ms-transform: translateX(-30px);
  transform: translateX(-30px);
}

.section-title::after {
  left: 50%;
  -webkit-transform: translateX(30px);
  -ms-transform: translateX(30px);
  transform: translateX(30px);
}

body {
  font-weight: 400;
  font-size: 22px;
  line-height: 1.35;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

h1 {
  font-size: 62px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 26px;
}

ul {
  list-style: none;
}

ul li {
  padding-left: 27px;
  margin-bottom: 10px;
  position: relative;
}

ul li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #0066cc;
  position: absolute;
  left: 12px;
  top: 13px;
}

ol {
  list-style: none;
  counter-reset: item;
}

ol li {
  padding-left: 36px;
  position: relative;
  margin-bottom: 10px;
}

ol li::before {
  content: counter(item) ". ";
  counter-increment: item;
  font-weight: 700;
  font-size: 21px;
  position: absolute;
  left: 12px;
  top: 1px;
}

.header {
  padding: 10px 0;
  position: relative;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__logo {
  display: inline-block;
  max-width: 100px;
}

.header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.header__list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__list-item {
  padding: 0 15px;
}

.header__list-item::before {
  display: none;
}

.header__list-item:first-child {
  padding-left: 0;
}

.header__list-item:last-child {
  padding-right: 0;
}

.header__list-link {
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  color: #333333;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding-bottom: 5px;
  position: relative;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.header__list-link::after {
  content: '';
  width: 0;
  height: 3px;
  background-color: #0066cc;
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.header__list-link.header__list-link--active {
  color: #0066cc;
}

.header__list-link.header__list-link--active::after {
  width: 100%;
}

.header__burger {
  display: none;
}

.header__burger.header__burger--active span {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.header__burger.header__burger--active span:first-child {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: calc(50% - 1px);
}

.header__burger.header__burger--active span:last-child {
  width: 30px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: calc(50% - 1px);
  bottom: auto;
}

.top-section {
  position: relative;
}

.top-section__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.top-section__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.top-section__bg.top-section__bg--topedge img {
  -o-object-position: center top;
  object-position: center;
}

.top-section__bg::after {
  content: '';
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 102, 204, 0.5)), to(rgba(0, 102, 204, 0.9)));
  background: -o-linear-gradient(top, rgba(0, 102, 204, 0.5) 0%, rgba(0, 102, 204, 0.9) 100%);
  background: linear-gradient(to bottom, rgba(0, 102, 204, 0.5) 0%, rgba(0, 102, 204, 0.9) 100%);
  position: absolute;
  left: 0;
  top: 0;
}

.top-section__inner {
  height: 50vh;
  min-height: 400px;
  position: relative;
  padding: 100px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.top-section__title {
  max-width: 900px;
  color: #ffffff;
  text-align: center;
}

.content-logo {
  padding: 30px 0;
}

.content-logo__image {
  max-width: 300px;
  margin: 0 auto;
}

.content-logo__image img {
  display: block;
  width: 100%;
  height: auto;
}

.main-content {
  padding: 75px 0;
}

.main-content__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.main-content__image {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}

.main-content__image img {
  display: block;
  width: 100%;
  height: auto;
}

.main-content__info {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  -ms-flex-item-align: center;
  align-self: center;
  padding-left: 40px;
}

.main-content__text {
  margin-bottom: 20px;
}

.main-content__text:last-child {
  margin-bottom: 0;
}

.footer {
  background-color: #333333;
  padding: 20px 0;
}

.footer__inner {
  text-align: center;
}

.footer__copyright {
  font-size: 14px;
  color: #eeeeee;
}

.trustees-content__text {
  margin-bottom: 25px;
}

.trustees-content__block {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 -40px;
}

.trustees-content__column {
  -ms-flex-preferred-size: 33.333%;
  flex-basis: 33.333%;
  margin-bottom: 50px;
  padding: 0 40px;
}

.trustees-content__item {
  height: 100%;
  padding: 15px 15px 25px;
  border-radius: 5px;
  -webkit-box-shadow: 0 10px 20px rgba(15, 14, 14, 0.3);
  box-shadow: 0 10px 20px rgba(15, 14, 14, 0.3);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  text-align: center;
}

.trustees-content__item-image {
  overflow: hidden;
  position: relative;
  padding-bottom: 133%;
  margin-bottom: 20px;
}

.trustees-content__item-image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.trustees-content__item-name {
  padding: 0 15px;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 10px;
}

.trustees-content__item-position {
  padding: 0 15px;
  font-size: 18px;
}

.news-content__item {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.news-content__item-info {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-right: 40px;
}

.news-content__item-title {
  margin-bottom: 20px;
}

.news-content__item-description {
  margin-bottom: 10px;
}

.news-content__item-address {
  margin-bottom: 10px;
}

.news-content__item-address span {
  display: block;
}

.news-content__item-image {
  -ms-flex-preferred-size: 400px;
  flex-basis: 400px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.news-content__item-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
}

.contact__subtitle {
  text-align: center;
  margin-bottom: 40px;
  text-decoration: underline;
}

.contact__agents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -40px;
}

.contact__agents-item {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  padding-left: 30px;
  padding-right: 40px;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.contact__agents-title {
  color: #0066cc;
  margin-bottom: 10px;
  margin-left: -30px;
}

.contact__agents-address,
.contact__agents-mail,
.contact__agents-phone {
  position: relative;
}

.contact__agents-address::before,
.contact__agents-mail::before,
.contact__agents-phone::before {
  content: '';
  width: 20px;
  height: 20px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: -30px;
  top: 4px;
}

.contact__agents-address {
  margin-bottom: 20px;
}

.contact__agents-address span {
  display: block;
}

.contact__agents-address::before {
  background-image: url("../images/icons/icon-location.svg");
}

.contact__agents-name {
  font-weight: 700;
}

.contact__agents-mail::before {
  background-image: url("../images/icons/icon-mail.svg");
  top: 7px;
}

.contact__agents-phone::before {
  background-image: url("../images/icons/icon-phone.svg");
}

.contact__agents-mail,
.contact__agents-phone {
  display: inline-block;
  margin-top: 5px;
  color: #0f0e0e;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.contact__agents-position {
  font-size: 20px;
  color: rgba(15, 14, 14, 0.7);
  margin-bottom: 5px;
}

.contact__agents-toll,
.contact__agents-fax {
  position: relative;
  padding-right: 25px;
}

.contact__agents-link {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../images/icons/icon-phone.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 10px auto;
  position: absolute;
  right: 0;
  top: 4px;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.loss__block {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.loss__info {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-right: 40px;
}

.loss__image {
  height: 450px;
  margin-bottom: 30px;
}

.loss__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.loss__text {
  margin-bottom: 20px;
}

.loss__list {
  margin-bottom: 20px;
}

.loss__disclaimer {
  margin-top: 30px;
  font-size: 18px;
  color: rgba(15, 14, 14, 0.5);
}

.loss__sidebar {
  -ms-flex-preferred-size: 300px;
  flex-basis: 300px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.loss__sidebar-link {
  display: inline-block;
  font-weight: 700;
  color: #0f0e0e;
  letter-spacing: 0.2px;
  margin-bottom: 15px;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.loss__sidebar-description {
  font-size: 16px;
  margin-bottom: 15px;
}

.loss__sidebar-description:last-of-type {
  margin-bottom: 0;
}

.claims__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.claims__info {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-item-align: center;
  align-self: center;
  padding-right: 40px;
}

.claims__text {
  margin-bottom: 20px;
}

.claims__text:last-child {
  margin-bottom: 0;
}

.claims__link {
  font-weight: 700;
  color: #0f0e0e;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.claims__image {
  -ms-flex-preferred-size: 40%;
  flex-basis: 40%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.claims__image img {
  display: block;
  width: 100%;
  height: auto;
}

.information__search {
  margin-bottom: 40px;
}

.information__search .information__search-form {
  margin-left: auto;
}

.information__search-form {
  max-width: 250px;
  margin-right: 22px;
  border: 1px solid #333333;
  border-radius: 5px;
  -webkit-box-shadow: 0 3px 5px rgba(15, 14, 14, 0.3);
  box-shadow: 0 3px 5px rgba(15, 14, 14, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.information__search-input {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  border-radius: 5px;
  padding: 5px 30px 5px 10px;
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  line-height: 1.3;
  color: #0f0e0e;
}

.information__search-input::-webkit-input-placeholder {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  line-height: 1.3;
  color: rgba(15, 14, 14, 0.3);
}

.information__search-input::-moz-placeholder {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  line-height: 1.3;
  color: rgba(15, 14, 14, 0.3);
}

.information__search-input:-ms-input-placeholder {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  line-height: 1.3;
  color: rgba(15, 14, 14, 0.3);
}

.information__search-input::-ms-input-placeholder {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  line-height: 1.3;
  color: rgba(15, 14, 14, 0.3);
}

.information__search-input::placeholder {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  line-height: 1.3;
  color: rgba(15, 14, 14, 0.3);
}

.information__search-input:focus {
  outline: 2px solid #0066cc;
}

.information__search-button {
  position: absolute;
  right: 0;
  top: 50%;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #333333;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translate(50%, -50%) scale(1.2);
  -ms-transform: translate(50%, -50%) scale(1.2);
  transform: translate(50%, -50%) scale(1.2);
  -webkit-box-shadow: 3px 3px 5px rgba(15, 14, 14, 0.3);
  box-shadow: 3px 3px 5px rgba(15, 14, 14, 0.3);
}

.information__search-button svg {
  display: block;
  width: 15px;
  height: 15px;
  fill: #0f0e0e;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.information__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.information__triggers-wrap {
  -ms-flex-preferred-size: 250px;
  flex-basis: 250px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 40px;
}

.information__triggers-title {
  margin-bottom: 10px;
}

.information__triggers-item {
  margin-bottom: 0;
  padding-left: 15px;
}

.information__triggers-item::before {
  display: none;
}

.information__triggers-link {
  display: inline-block;
  padding: 5px;
  font-size: 16px;
  color: #0f0e0e;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.information__triggers-link--active {
  font-weight: 700;
}

.information__tabs {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-height: 400px;
}

.information__tab {
  display: none;
}

.information__tab--active {
  display: block;
}

.information__tab-link {
  display: inline-block;
  font-size: 14px;
  color: #0f0e0e;
  border-bottom: 1px solid transparent;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  margin-bottom: 20px;
}

.information__tab-search {
  margin-bottom: 20px;
}

.information__tab-item {
  padding: 7px 10px 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.information__tab-item:first-of-type .information__tab-type {
  background-image: url("../images/icons/icon-document.svg");
}

.information__tab-item:first-of-type .information__tab-name {
  font-weight: 700;
  font-size: 18px;
}

.information__tab-item:first-of-type .information__tab-download a {
  width: 100%;
  pointer-events: none;
  font-weight: 700;
  font-size: 18px;
  color: #0f0e0e;
  background-image: none;
}

.information__tab-type {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: inline-block;
  -ms-flex-preferred-size: 20px;
  flex-basis: 20px;
  height: 20px;
  background: url("../images/icons/icon-file-pdf.svg") center center/contain no-repeat;
  margin-right: 10px;
  margin-top: 2px;
}

.information__tab-name {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 16px;
}

.information__tab-download {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: 100px;
  flex-basis: 100px;
  text-align: center;
}

.information__tab-download a {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("../images/icons/icon-download.svg") center center/contain no-repeat;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.information__tab-type--doc {
  background-image: url("../images/icons/icon-file-doc.svg");
}

.information__tab-type--txt {
  background-image: url("../images/icons/icon-file-txt.svg");
}

.tab-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.tab-categories__column {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  padding: 0 10px;
  margin-bottom: 20px;
}

.tab-categories__item {
  display: block;
  width: 100%;
  height: 195px;
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}

.tab-categories__item-content {
  position: absolute;
  left: 0;
  top: 140px;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 14, 14, 0.6);
  padding: 5px 10px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.tab-categories__item-title {
  font-size: 16px;
  color: #ffffff;
  height: 2.7em;
  overflow: hidden;
}

@media (min-width: 992px) {
  .header__list-link:hover,
  .header__list-link:focus {
    color: #0066cc;
  }

  .header__list-link:hover::after,
  .header__list-link:focus::after {
    width: 100%;
    right: auto;
    left: 0;
  }

  .trustees-content__item:hover {
    -webkit-box-shadow: 0 10px 20px rgba(15, 14, 14, 0.5);
    box-shadow: 0 10px 20px rgba(15, 14, 14, 0.5);
  }

  .trustees-content__item:hover .trustees-content__item-image img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  .contact__agents-mail:hover,
  .contact__agents-mail:focus,
  .contact__agents-phone:hover,
  .contact__agents-phone:focus {
    color: #0066cc;
  }

  .contact__agents-link:hover,
  .contact__agents-link:focus {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
  }

  .loss__sidebar-link:hover,
  .loss__sidebar-link:focus {
    color: #0066cc;
    border-bottom-color: #0066cc;
  }

  .claims__link:hover,
  .claims__link:focus {
    color: #0066cc;
    border-bottom-color: #0066cc;
  }

  .information__search-button:hover,
  .information__search-button:focus {
    border-color: #0066cc;
    background-color: #0066cc;
  }

  .information__search-button:hover svg,
  .information__search-button:focus svg {
    fill: #ffffff;
  }

  .information__triggers-link:hover,
  .information__triggers-link:focus {
    color: #0066cc;
  }

  .information__tab-link:hover,
  .information__tab-link:focus {
    color: #0066cc;
    border-bottom-color: #0066cc;
  }

  .information__tab-item:hover,
  .information__tab-item:focus {
    background-color: #eeeeee;
  }

  .information__tab-item:first-of-type:hover,
  .information__tab-item:first-of-type:focus {
    background-color: transparent;
  }

  .information__tab-download a:hover,
  .information__tab-download a:focus {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
  }

  .tab-categories__item:hover .tab-categories__item-content,
  .tab-categories__item:focus .tab-categories__item-content {
    top: 0;
  }
}

@media (min-width: 993px) {
  .header__navigation {
    display: block !important;
  }
}

@media (max-width: 1400px) {
  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 36px;
  }

  .top-section__inner {
    height: 37vh;
  }

  .content-logo__image {
    max-width: 200px;
  }
}

@media (max-width: 1200px) {
  .trustees-content__block {
    margin: 0 -20px;
  }

  .trustees-content__column {
    padding: 0 20px;
    margin-bottom: 40px;
  }
}

@media (max-width: 1100px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  .header__list-item {
    padding: 0 10px;
  }

  .top-section__title {
    max-width: 700px;
  }

  .loss__image {
    height: 400px;
  }

  .tab-categories__item {
    height: 180px;
  }

  .tab-categories__item-content {
    top: 125px;
  }
}

@media (max-width: 992px) {
  .section {
    padding: 50px 0;
  }

  .section-title {
    margin-bottom: 20px;
  }

  body {
    font-size: 18px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 20px;
  }

  ul li {
    padding-left: 21px;
  }

  ul li::before {
    width: 5px;
    height: 5px;
    left: 9px;
    top: 11px;
  }

  ol li {
    padding-left: 25px;
  }

  ol li::before {
    font-size: 17px;
    left: 8px;
    top: 2px;
  }

  .header__navigation {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 5;
    width: 100%;
    height: calc(100vh - 89px);
    background-color: rgba(15, 14, 14, 0.7);
  }

  .header__list {
    width: 100%;
    max-width: 400px;
    height: 100%;
    background-color: #ffffff;
    border-top: 1px solid #333333;
    display: block;
    padding: 50px 30px;
    overflow-y: auto;
  }

  .header__list-item {
    padding: 0;
    margin-bottom: 10px;
  }

  .header__list-item:last-child {
    margin-bottom: 0;
  }

  .header__list-link {
    font-size: 22px;
  }

  .header__burger {
    display: block;
    width: 40px;
    height: 40px;
    padding: 10px;
    position: relative;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    z-index: 10;
  }

  .header__burger span {
    display: block;
    width: 30px;
    height: 2px;
    background: #333333;
    position: absolute;
    left: 5px;
    top: calc(50% - 1px);
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }

  .header__burger span:first-child {
    top: 10px;
  }

  .header__burger span:last-child {
    width: 22px;
    left: auto;
    right: 5px;
    top: auto;
    bottom: 10px;
  }

  .top-section__inner {
    height: 30vh;
    min-height: 320px;
    padding: 50px 0;
  }

  .top-section__title {
    max-width: 600px;
  }

  .content-logo {
    padding: 20px 0;
  }

  .content-logo__image {
    max-width: 170px;
  }

  .main-content {
    padding: 50px 0;
  }

  .trustees-content__column {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 400px;
  }

  .trustees-content__item-name {
    font-size: 20px;
  }

  .news-content__item {
    margin-top: 30px;
  }

  .news-content__item-image {
    -ms-flex-preferred-size: 300px;
    flex-basis: 300px;
  }

  .contact__agents {
    margin-right: -20px;
  }

  .contact__agents-item {
    padding-left: 22px;
    padding-right: 20px;
    margin-bottom: 30px;
  }

  .contact__agents-title {
    margin-left: -22px;
  }

  .contact__agents-address::before,
  .contact__agents-mail::before,
  .contact__agents-phone::before {
    width: 16px;
    height: 16px;
    left: -22px;
  }

  .loss__block {
    margin-top: 30px;
  }

  .loss__info {
    padding-right: 25px;
  }

  .loss__disclaimer {
    font-size: 16px;
  }

  .loss__sidebar {
    -ms-flex-preferred-size: 220px;
    flex-basis: 220px;
  }

  .information__search-form {
    max-width: 200px;
  }

  .information__search-input {
    font-size: 14px;
  }

  .information__search-input::-webkit-input-placeholder {
    font-size: 14px;
  }

  .information__search-input::-moz-placeholder {
    font-size: 14px;
  }

  .information__search-input:-ms-input-placeholder {
    font-size: 14px;
  }

  .information__search-input::-ms-input-placeholder {
    font-size: 14px;
  }

  .information__search-input::placeholder {
    font-size: 14px;
  }

  .information__search-button {
    width: 30px;
    height: 30px;
  }

  .information__triggers-wrap {
    -ms-flex-preferred-size: 200px;
    flex-basis: 200px;
    margin-right: 30px;
  }

  .information__tab-item:first-of-type .information__tab-name {
    font-size: 16px;
  }

  .information__tab-item:first-of-type .information__tab-download a {
    font-size: 16px;
  }

  .information__tab-name {
    font-size: 14px;
  }

  .information__tab-download a {
    font-size: 14px;
  }

  .tab-categories__column {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
  }

  .tab-categories__item-content {
    top: 132px;
  }

  .tab-categories__item-title {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 24px;
  }

  ul li::before {
    top: 10px;
  }

  ul li::before {
    top: 9px;
  }

  ol li {
    padding-left: 22px;
  }

  ol li::before {
    left: 2px;
  }

  ol li::before {
    font-size: 15px;
    left: 7px;
    top: 1px;
  }

  .top-section__inner {
    height: 25vh;
    min-height: 250px;
  }

  .top-section__title {
    max-width: 500px;
  }

  .main-content__inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .main-content__image {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -ms-flex-preferred-size: 400px;
    flex-basis: 400px;
  }

  .main-content__info {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding-left: 0;
    margin-bottom: 30px;
  }

  .footer__copyright {
    font-size: 13px;
  }

  .news-content__item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .news-content__item-info {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding-right: 0;
    text-align: center;
  }

  .news-content__item-title {
    margin-bottom: 5px;
  }

  .news-content__item-description {
    margin-bottom: 5px;
  }

  .news-content__item-address {
    margin-bottom: 5px;
  }

  .news-content__item-image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -ms-flex-preferred-size: 400px;
    flex-basis: 400px;
    height: 270px;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    margin-bottom: 20px;
  }

  .loss__block {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .loss__info {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding-right: 0;
    margin-bottom: 30px;
  }

  .loss__image {
    margin-bottom: 20px;
  }

  .loss__disclaimer {
    font-size: 14px;
  }

  .loss__sidebar {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -ms-flex-negative: 1;
    flex-shrink: 1;
  }

  .loss__sidebar-description {
    font-size: 14px;
  }

  .claims__block {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .claims__info {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding-right: 0;
    margin-bottom: 30px;
  }

  .claims__image {
    -ms-flex-preferred-size: 400px;
    flex-basis: 400px;
    -ms-flex-negative: 1;
    flex-shrink: 1;
  }

  .information__search {
    margin-bottom: 20px;
  }

  .information__block {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .information__triggers-wrap {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin-bottom: 20px;
  }

  .information__triggers-link {
    font-size: 14px;
    padding: 3px;
  }

  .information__tabs {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    min-height: auto;
  }

  .information__tab-item:first-of-type .information__tab-name {
    font-size: 14px;
  }

  .information__tab-item:first-of-type .information__tab-download a {
    font-size: 14px;
  }

  .information__tab-item {
    padding: 7px 0 3px 5px;
  }

  .information__tab-item:nth-child(even) {
    background-color: #eeeeee;
  }

  .information__tab-type {
    margin-right: 5px;
    -ms-flex-preferred-size: 16px;
    flex-basis: 16px;
    height: 16px;
  }

  .information__tab-name {
    font-size: 13px;
  }

  .information__tab-download a {
    font-size: 13px;
    width: 16px;
    height: 16px;
  }

  .information__tab-download {
    -ms-flex-preferred-size: 80px;
    flex-basis: 80px;
  }
}

@media (max-width: 650px) {
  .contact__subtitle {
    margin-bottom: 10px;
  }

  .contact__agents-item {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin-bottom: 20px;
  }

  .contact__agents-title {
    margin-bottom: 10px;
  }

  .contact__agents-address {
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  body {
    font-size: 14px;
    line-height: 1.5;
  }

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 18px;
  }

  h4 {
    font-size: 16px;
  }

  ol li::before {
    font-size: 13px;
    left: 8px;
    top: 2px;
  }

  .header__list-link {
    font-size: 18px;
  }

  .top-section__inner {
    min-height: 200px;
  }

  .top-section__title {
    max-width: 400px;
  }

  .main-content {
    padding-top: 20px;
  }

  .main-content__text {
    margin-bottom: 10px;
  }

  .footer__copyright {
    font-size: 12px;
  }

  .trustees-content__column {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 350px;
  }

  .trustees-content__item-name {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .trustees-content__item-position {
    font-size: 14px;
  }

  .loss__image {
    height: 300px;
  }

  .loss__text {
    margin-bottom: 10px;
  }

  .loss__list {
    margin-bottom: 10px;
  }

  .loss__disclaimer {
    font-size: 13px;
  }

  .loss__sidebar-link {
    margin-bottom: 10px;
  }

  .loss__sidebar-description {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .claims__text {
    margin-bottom: 10px;
  }

  .tab-categories__column {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }

  .tab-categories__item {
    max-width: 180px;
    margin: 0 auto;
  }

  .tab-categories__item-content {
    top: 128px;
  }
}

@media (max-width: 400px) {
  .news-content__item-image {
    -ms-flex-preferred-size: 300px;
    flex-basis: 300px;
    height: 200px;
  }

  .loss__image {
    height: 250px;
  }

  .tab-categories {
    margin: 0 -5px;
  }

  .tab-categories__column {
    padding: 0 5px;
    margin-bottom: 10px;
  }

  .tab-categories__item {
    height: 160px;
  }

  .tab-categories__item-content {
    top: 108px;
  }
}

@media (max-width: 350px) {
  .tab-categories__item {
    height: 150px;
  }

  .tab-categories__item-content {
    top: 98px;
  }
}