@charset "UTF-8";

*,
input:focus,
textarea:focus,
select:focus {
  outline: none !important;
}

.main iframe {
  max-width: 100%;
}

@media (max-width: 768px) {
  .main iframe {
    max-height: calc((100vw - 40px) * 0.56);
  }
}

.modal-m {
  width: 100%;
  max-width: 536px;
  padding: 56px;
  overflow-y: auto;

  background: #f7f7fb;
  border-radius: 8px;

  scrollbar-width: thin;
}

.modal-m::-webkit-scrollbar {
  width: 5px;

  background-color: #f9f9fd;
}

.modal-m::-webkit-scrollbar-thumb {
  background-color: #00a88e;
  border-radius: 5px;
}

.modal-m::-webkit-scrollbar-track {
  background-color: #f9f9fd;
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
}

.modal-m__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: center;

  -webkit-box-align: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-align: center;
  row-gap: 16px;
}

.modal-m__title {
  align-self: flex-start;

  font-weight: bold;
  font-size: 28px;
  line-height: 32px;
  color: #444444;

  -ms-flex-item-align: start;
}

.modal-m__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;

  font-size: 16px;
  line-height: 24px;
  color: #444444;

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  row-gap: 8px;
}

.modal-m__input {
  width: 100%;
  height: 48px;
  padding: 5px 10px;

  font-size: 16px;
  line-height: 24px;
  color: #444444;

  background: #ffffff;
  border-bottom: 1px solid #cccccc;
  border-radius: 3px;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.modal-m__privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;

  column-gap: 8px;

  -webkit-box-align: start;
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  -ms-flex-align: start;
}

.modal-m__checkbox {
  margin-top: 4px;
}

.modal-m__text {
  margin: 0;

  font-size: 14px;
  line-height: 21px;
  color: #444444;
}

.modal-m__text--line {
  padding-bottom: 24px;

  border-bottom: 1px solid #dfe2e3;
}

.modal-m__link {
  color: #00a88e;
  text-decoration: none;
}

.modal-m__btn {
  width: 222px;
  height: 48px;
  margin-top: 8px;
  padding: 12px 24px;

  font-size: 18px;
  line-height: 24px;
  color: #ffffff;
  text-transform: uppercase;

  background: #00a88e;
  border-radius: 4px;
}

.modal-m .select {
  position: relative;
  z-index: 1000;

  width: 100%;
}

.modal-m .select__trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 48px;
  padding: 0.375rem 0.75rem;

  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  color: #444444;

  background-color: #ffffff;
  border-bottom: 1px solid #cccccc;
  border-radius: 3px;
  cursor: pointer;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
}

.modal-m .select__trigger::after {
  content: '';

  width: 0.75rem;
  height: 0.75rem;

  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" height="100" width="100"%3E%3Cpath d="M97.625 25.3l-4.813-4.89c-1.668-1.606-3.616-2.41-5.84-2.41-2.27 0-4.194.804-5.777 2.41L50 52.087 18.806 20.412C17.223 18.805 15.298 18 13.03 18c-2.225 0-4.172.804-5.84 2.41l-4.75 4.89C.813 26.95 0 28.927 0 31.23c0 2.346.814 4.301 2.439 5.865l41.784 42.428C45.764 81.174 47.689 82 50 82c2.268 0 4.215-.826 5.84-2.476l41.784-42.428c1.584-1.608 2.376-3.563 2.376-5.865 0-2.26-.792-4.236-2.375-5.932z"/%3E%3C/svg%3E');
  background-size: cover;
}

.modal-m .select__trigger:focus {
  outline: none;
}

.modal-m .select_show .select__trigger::after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.modal-m .select__dropdown {
  position: absolute;
  top: 2.5rem;
  right: 0;
  left: 0;

  display: none;
  max-height: 10rem;
  overflow-y: auto;

  border: 1px solid #cccccc;
  border-radius: 0.3125rem;
}

.modal-m .select_show .select__dropdown {
  display: block;
}

.modal-m .select_show .select__backdrop {
  display: block;
}

.modal-m .select__items {
  margin: 0;
  padding: 0;

  list-style: none;

  background-color: #ffffff;
}

.modal-m .select__item {
  padding: 0.375rem 0.75rem;
}

.modal-m .select__item_selected {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;

  background-color: #e1f5fe;

  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
}

.modal-m .select__item_selected::after {
  content: '';

  width: 0.75rem;
  height: 0.75rem;

  color: #0277bd;

  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" height="100" width="100" class="svg-inline--fa fa-check fa-w-16" data-icon="check" data-prefix="fas" aria-hidden="true"%3E%3Cpath d="M33.964 85.547l-32.5-32.251a4.935 4.935 0 010-7.017l7.071-7.017a5.027 5.027 0 017.071 0L37.5 60.987l46.894-46.534a5.028 5.028 0 017.07 0l7.072 7.017a4.935 4.935 0 010 7.017l-57.5 57.06a5.027 5.027 0 01-7.072 0z" fill="%230277bd"/%3E%3C/svg%3E');
  background-size: cover;
}

.modal-m .select__item:hover {
  background-color: #f5f5f5;
  cursor: pointer;

  -webkit-transition: 0.2s background-color ease-in-out;
  -o-transition: 0.2s background-color ease-in-out;
  transition: 0.2s background-color ease-in-out;
}

.modal-m .select__backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;

  display: none;

  background-color: transparent;
}

.modal-m .arcs-modal__field-wrapper {
  margin-bottom: 0 !important;
}

.modal-m .arcs-modal__field-wrapper_checkbox {
  width: 100% !important;
}

@media (max-width: 768px) {
  .modal.inform-incident {
    top: 45px;
    padding-bottom: 45px;
  }
}

.inform-incident .modal__content,
.inform-subscription .modal__content {
  padding: 0 !important;
  width: auto;
  max-width: 536px;
}

.modal__content {
  max-height: auto !important;
}
@media (max-width: 768px) {
  .modal.arcs-modal .modal__content {
    min-height: calc(100% - 45px);
    margin-top: auto;
  }

  .modal__content.modal__content_overflow-none.modal__content_search
    .page__filters-panel {
    top: 0;
    padding-bottom: 0;
    /* display: none; */
  }
}

.modal:before,
.modal__content {
  height: auto !important;
}

.new__content h2,
.new__content h3,
.new__content h4,
.new__content h5,
.new__content h6 {
  margin: 24px 0 16px 0;
  padding: 0;

  font: inherit;
  font-weight: 500;
  vertical-align: baseline;

  /* color: #1d1d1b; */

  border: 0;
}

.new__content h2,
.new__content h3 {
  margin: 32px 0 24px 0;
}

.new__content h2 {
  font-size: 32px;
  line-height: 36px;
}

.new__content h3 {
  font-size: 28px;
  line-height: 32px;
}

.new__content h4 {
  font-size: 22px;
  line-height: 32px;
}

.new__content h5 {
  font-size: 18px;
}

.new__content h6 {
  font-weight: 300;
  font-size: 18px;
}

.new__content p {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  margin-bottom: 24px;
  padding: 0;
  overflow-wrap: break-word;
  font: inherit;
  font-weight: 300;
  vertical-align: baseline;
  color: #444444;

  border: 0;

  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.new__content .wp-block-pullquote {
  margin-top: 0;
  margin-bottom: 40px;
  padding: 0;
}

.new__content .wp-block-pullquote blockquote {
  position: relative;

  padding: 24px 40px;

  text-align: left;

  background-color: #f7f7fb;
}

.new__content .wp-block-pullquote blockquote:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 2;

  width: 4px;
  height: 100%;

  background: #00a88e;
}

.new__content .wp-block-pullquote blockquote p {
  margin-bottom: 0;

  font-weight: 500;
  font-size: 21px;
  line-height: 28px;
}

.new__content .wp-block-pullquote blockquote {
  display: flex;
  flex-direction: column;

  row-gap: 20px;
}

.new__content .wp-block-pullquote blockquote cite {
  display: block;
  /* margin-top: 20px; */
}

.new__content .wp-block-quote {
  position: relative;

  margin-bottom: 40px;
  padding: 24px 40px;

  text-align: left;

  background-color: #f7f7fb;
}

.new__content .wp-block-quote:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 2;

  width: 4px;
  height: 100%;

  background: #00a88e;
}

.new__content .wp-block-quote p {
  margin-bottom: 0;

  /* font-weight: 500;
  font-size: 21px;
  line-height: 28px; */

  font-weight: 300;
  font-size: 18px;
  line-height: 27px;

  overflow-wrap: normal;
}

.new__content .wp-block-quote {
  display: flex;
  flex-direction: column;

  row-gap: 20px;
}

.new__content .wp-block-quote cite {
  display: block;

  font-size: 14px;
  /* margin-top: 20px; */
}

.new__content ul:not(.dropdown__menu) > li {
  position: relative;

  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 0 0 36px;
  margin-bottom: 16px;
  padding: 0 0 0 36px;

  list-style: none;
  list-style-type: none;
  font: inherit;
  font-weight: 300;
  vertical-align: baseline;
  color: #444444;

  border: 0;
}

@media (max-width: 768px) {
  .new__content ul:not(.dropdown__menu) > li {
    margin: 0 0 0 0;
  }

  .new__content ul {
    margin: 0 0 24px 0;
  }
}

.new__content ul:not(.dropdown__menu) > li::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 18px;

  width: 6px;
  height: 6px;

  background-color: #ff3748;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.new__content ul:not(.dropdown__menu) a {
  font: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  text-decoration: none;
}

.new__content ul:not(.dropdown__menu) a:hover {
  text-decoration: underline;
}

.new__content ul:not(.dropdown__menu) ul {
  margin: 0;
  padding: 0;

  font: inherit;

  /* color: #1d1d1b; */

  border: 0;
}

.new__content ul:not(.dropdown__menu) > ul {
  margin: 0 0 0 36px;
  padding: 0 0 0 36px;
}

.new__content ul:not(.dropdown__menu) ul li {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 16px 0 16px 18px;
  padding: 0 0 0 36px;

  list-style: none;
  font: inherit;
  font-weight: 300;

  /* font-size: 18px;
  line-height: 24px; */
  vertical-align: baseline;

  /* color: #1d1d1b; */

  border: 0;
}
.new__content ul.list-arrow li {
}
.new__content ul.list-arrow:not(.dropdown__menu) > li::before {
  content: '▶';
  top: 8px;
  width: 14px;
  height: 11px;
  background: none;
  font-size: 14px;
  line-height: 14px;
  left: 14px;
  transform: none;
}
.new__content ul:not(.dropdown__menu) > li.list-arrow::before {
  content: '▶';
  top: 8px;
  width: 14px;
  height: 11px;
  background: none;
  font-size: 14px;
  line-height: 14px;
  left: 14px;
  transform: none;
}

.new__content ol {
  counter-reset: list;
}
.new__content ol[start='1'] {
  counter-reset: list 0;
}
.new__content ol[start='2'] {
  counter-reset: list 1;
}
.new__content ol[start='3'] {
  counter-reset: list 2;
}
.new__content ol[start='4'] {
  counter-reset: list 3;
}
.new__content ol[start='5'] {
  counter-reset: list 4;
}
.new__content ol[start='6'] {
  counter-reset: list 5;
}
.new__content ol[start='7'] {
  counter-reset: list 6;
}
.new__content ol[start='8'] {
  counter-reset: list 7;
}
.new__content ol[start='9'] {
  counter-reset: list 8;
}
.new__content ol[start='10'] {
  counter-reset: list 9;
}
.new__content ol[start='11'] {
  counter-reset: list 10;
}

.new__content ol[start='12'] {
  counter-reset: list 11;
}
.new__content ol[start='13'] {
  counter-reset: list 12;
}
.new__content ol[start='14'] {
  counter-reset: list 13;
}
.new__content ol[start='15'] {
  counter-reset: list 14;
}
.new__content ol[start='16'] {
  counter-reset: list 15;
}
.new__content ol[start='17'] {
  counter-reset: list 16;
}
.new__content ol[start='18'] {
  counter-reset: list 17;
}
.new__content ol[start='19'] {
  counter-reset: list 18;
}
.new__content ol[start='20'] {
  counter-reset: list 19;
}
.new__content ol[start='21'] {
  counter-reset: list 20;
}

.new__content ol[start='22'] {
  counter-reset: list 21;
}
.new__content ol[start='23'] {
  counter-reset: list 22;
}
.new__content ol[start='24'] {
  counter-reset: list 23;
}
.new__content ol[start='25'] {
  counter-reset: list 24;
}
.new__content ol[start='26'] {
  counter-reset: list 25;
}
.new__content ol[start='27'] {
  counter-reset: list 26;
}
.new__content ol[start='28'] {
  counter-reset: list 27;
}
.new__content ol[start='29'] {
  counter-reset: list 28;
}
.new__content ol[start='30'] {
  counter-reset: list 29;
}
.new__content ol[start='31'] {
  counter-reset: list 30;
}

.new__content ol[start='32'] {
  counter-reset: list 31;
}
.new__content ol[start='33'] {
  counter-reset: list 32;
}
.new__content ol[start='34'] {
  counter-reset: list 33;
}
.new__content ol[start='35'] {
  counter-reset: list 34;
}
.new__content ol[start='36'] {
  counter-reset: list 35;
}
.new__content ol[start='37'] {
  counter-reset: list 36;
}
.new__content ol[start='38'] {
  counter-reset: list 37;
}
.new__content ol[start='39'] {
  counter-reset: list 38;
}
.new__content ol[start='40'] {
  counter-reset: list 39;
}
.new__content ol[start='41'] {
  counter-reset: list 40;
}

.new__content ol[start='42'] {
  counter-reset: list 41;
}
.new__content ol[start='43'] {
  counter-reset: list 42;
}
.new__content ol[start='44'] {
  counter-reset: list 43;
}
.new__content ol[start='45'] {
  counter-reset: list 44;
}
.new__content ol[start='46'] {
  counter-reset: list 45;
}
.new__content ol[start='47'] {
  counter-reset: list 46;
}
.new__content ol[start='48'] {
  counter-reset: list 47;
}
.new__content ol[start='49'] {
  counter-reset: list 48;
}
.new__content ol[start='50'] {
  counter-reset: list 49;
}
.new__content ol[start='51'] {
  counter-reset: list 50;
}

.new__content ol ul,
.new__content ol ol,
.new__content ol li {
  margin-top: 16px;
}

.new__content ol ul ul,
.new__content ol ul ol,
.new__content ol ul li,
.new__content ol ol ul,
.new__content ol ol ol,
.new__content ol ol li,
.new__content ol li ul,
.new__content ol li ol,
.new__content ol li li {
  margin-top: 16px;
}

.new__content ol > li {
  position: relative;

  margin-bottom: 16px;
  margin-left: 40px;
  padding-left: 22px;

  font-weight: 300;
}

.new__content ol > li::before {
  content: counter(list) '. ';
  position: absolute;
  top: 2px;
  left: -29px;

  width: 40px;

  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-align: right;
  color: #00a88e;

  counter-increment: list;
}

.new__content ol ul {
  counter-reset: list;
}

.new__content ol ul li::before {
  content: counter(list);
  content: '';
  position: absolute;
  top: 14px;
  left: 0;

  width: 6px;
  height: 6px;

  background-color: #ff3748;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);

  counter-increment: list;
}

/*  */
.vulnerability__title-block ul > li {
  position: relative;

  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 0 0 36px;
  margin-bottom: 16px;
  padding: 0 0 0 36px;

  list-style: none;
  list-style-type: none;
  font: inherit;
  font-weight: 300;
  vertical-align: baseline;
  color: #444444;

  border: 0;
}

.vulnerability__title-block ul > li::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 18px;

  width: 6px;
  height: 6px;

  background-color: #ff3748;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.vulnerability__title-block ul a {
  font: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  text-decoration: none;
}

.vulnerability__title-block ul a:hover {
  text-decoration: underline;
}

.vulnerability__title-block ul ul {
  margin: 0;
  padding: 0;

  font: inherit;

  /* color: #1d1d1b; */

  border: 0;
}

.vulnerability__title-block ul > ul {
  margin: 0 0 0 36px;
  padding: 0 0 0 36px;
}

.vulnerability__title-block ul ul li {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 16px 0 16px 18px;
  padding: 0 0 0 36px;

  list-style: none;
  font: inherit;
  font-weight: 300;

  /* font-size: 18px;
  line-height: 24px; */
  vertical-align: baseline;

  /* color: #1d1d1b; */

  border: 0;
}

.vulnerability__title-block ol {
  counter-reset: list;
}

.vulnerability__title-block ol ul,
.vulnerability__title-block ol ol,
.vulnerability__title-block ol li {
  margin-top: 16px;
}

.vulnerability__title-block ol ul ul,
.vulnerability__title-block ol ul ol,
.vulnerability__title-block ol ul li,
.vulnerability__title-block ol ol ul,
.vulnerability__title-block ol ol ol,
.vulnerability__title-block ol ol li,
.vulnerability__title-block ol li ul,
.vulnerability__title-block ol li ol,
.vulnerability__title-block ol li li {
  margin-top: 16px;
}

.vulnerability__title-block ol > li {
  position: relative;

  margin-bottom: 16px;
  margin-left: 40px;
  padding-left: 22px;

  font-weight: 300;
}

.vulnerability__title-block ol > li::before {
  content: counter(list) '. ';
  position: absolute;
  top: 2px;
  left: -29px;

  width: 40px;

  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-align: right;
  color: #00a88e;

  counter-increment: list;
}

.new__content ol[style='list-style-type:lower-roman'] > li::before,
.new__content ol[style='list-style-type:upper-roman'] > li::before,
.new__content ol[style='list-style-type:lower-alpha'] > li::before,
.new__content ol[style='list-style-type:upper-alpha'] > li::before {
  display: none;
}
.new__content ol[style='list-style-type:lower-roman'] > li,
.new__content ol[style='list-style-type:upper-roman'] > li,
.new__content ol[style='list-style-type:lower-alpha'] > li,
.new__content ol[style='list-style-type:upper-alpha'] > li {
  padding-left: 6px !important;
  margin-left: 56px;
}
.new__content ul > li,
.new__content ul > li > span,
.new__content ol > li,
.new__content ol > li > span {
  color: #444 !important;
}

@media (max-width: 768px) {
  .new__content ol > li > ol > li {
    margin-left: 7px;
    margin-top: 4px;
    margin-bottom: 4px;
  }
  .new__content ol[style='list-style-type:lower-roman'] > li,
  .new__content ol[style='list-style-type:upper-roman'] > li,
  .new__content ol[style='list-style-type:lower-alpha'] > li,
  .new__content ol[style='list-style-type:upper-alpha'] > li {
    margin-left: 19px;
    margin-top: 4px;
    margin-bottom: 4px;
  }
}

.vulnerability__title-block ol ul {
  counter-reset: list;
}

.vulnerability__title-block ol ul li::before {
  content: counter(list);
  content: '';
  position: absolute;
  top: 14px;
  left: 0;

  width: 6px;
  height: 6px;

  background-color: #ff3748;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);

  counter-increment: list;
}

.new__content sup {
  position: relative;
  top: -0.5em;

  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

.new__content table,
.vulnerability table {
  width: 100%;
  margin: 2em auto;
  padding: 0;

  font: inherit;

  border: 0;
  border: 1px solid #f7f7fb;
}

.new__content table thead,
.vulnerability table thead {
  padding: 6px 12px;

  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #444444;

  background: #f7f7fb;
}

.new__content table th,
.new__content table td,
.vulnerability table th,
.vulnerability table td {
  padding: 16px 24px;

  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-align: left;
  color: #444444;

  -webkit-font-feature-settings: 'tnum';
  font-feature-settings: 'tnum';
}

@media screen and (max-width: 740px) {
  .new__content table th,
  .new__content table td,
  .vulnerability table th,
  .vulnerability table td {
    max-width: 25vw;
    padding: 16px 0 16px 2vw;
    overflow-wrap: break-word;
  }
  .new__content table th *,
  .new__content table td *,
  .vulnerability table th *,
  .vulnerability table td * {
    overflow-wrap: break-word;
  }
}

.new__content table td,
.vulnerability table td {
  position: relative;

  font-weight: 300;

  border-bottom: 1px solid rgba(223, 226, 227, 0.5);
}

.new__content table tr:before,
.vulnerability table tr:before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;

  width: 24px;
  height: 1px;

  background-color: #ffffff;
}

.new__content table tr:after,
.vulnerability table tr:after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -1px;

  width: 24px;
  height: 1px;

  background-color: #ffffff;
}

.new__content table tbody tr:last-child::after,
.new__content table tbody tr:last-child::before,
.vulnerability table tbody tr:last-child::after,
.vulnerability table tbody tr:last-child::before {
  background-color: transparent;
}

.new__content table th,
.vulnerability table th {
  font-size: 18px;
  line-height: 24px;

  background: #f7f7fb;
}

.new__content table tr,
.vulnerability table tr {
  position: relative;

  border-radius: 4px;
}

/* .new__content table tr:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 24px;
    bottom: 0;
    left: 24px;

    height: 1px;
    padding: 0 24px;

    background-color: rgba(223, 226, 227, 0.5);
} */

.new__content .has-small-font-size {
  font-size: 80%;
}

.new__content .new-table-of-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 54px;
  padding: 32px;

  background: #f7f7fb;
  border-radius: 4px;

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  row-gap: 32px;
}

@media (max-width: 768px) {
  .new__content .new-table-of-contents {
    padding: 32px 32px 32px 20px;
  }
}

.new__content .new-table-of-contents li {
  position: relative;

  margin: 0;
  padding-left: 36px;

  font-weight: 500;
  font-size: 21px;
  line-height: 28px;
  /* color: #1d1d1b; */
}

.new__content .new-table-of-contents li:last-child {
  margin-bottom: 0;
}

.new__content .new-table-of-contents li::before {
  display: none;
}

.new__content .new-table-of-contents li a {
  color: #444444;
}

.new__content .new-table-of-contents li ul {
  max-height: 0;
  margin: 0 0;
  padding-top: 0;
  overflow: hidden;

  opacity: 0;

  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.new__content .new-table-of-contents li ul li {
  margin: 16px 0 16px 18px;
  padding-left: 36px;

  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  /* color: #1d1d1b; */
}

@media screen and (max-width: 768px) {
  .new__content .new-table-of-contents li ul li {
    font-size: 16px;
    padding-left: 0;
  }
}

.new__content .new-table-of-contents li ul li::before {
  display: none;
}

.new__content .new-table-of-contents li ul li:last-child {
  margin-bottom: 0;
}

.new__content .new-table-of-contents li ul li a {
  color: #444444;
}

.new__content .new-table-of-contents li._arrow::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 9px;

  display: block;
  width: 10px;
  height: 10px;

  background: none;
  border-top: 2px solid #999999;
  border-right: 2px solid #999999;
  border-radius: 0;
  -webkit-transform: translate(-50%, -50%);
  -webkit-transform: rotate(45deg);
  -ms-transform: translate(-50%, -50%);
  -ms-transform: rotate(45deg);
  transform: translate(-50%, -50%);
  transform: rotate(45deg);
  cursor: pointer;

  -webkit-transition: -webkit-transform 0.1s ease-in-out;
  -o-transition: transform 0.1s ease-in-out;
  transition: -webkit-transform 0.1s ease-in-out;
  transition: transform 0.1s ease-in-out;
  transition: transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
}

.new__content .new-table-of-contents li._active::before {
  border-color: #00a88e;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.new__content .new-table-of-contents li._active ul {
  max-height: 2000px;

  opacity: 1;
}

.new__content .new-table-of-contents > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 0;

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  row-gap: 32px;
}

.new__content .new-table-of-contents .arrow {
  content: '';
  position: absolute;
  top: 9px;
  left: 9px;

  width: 14.4px;
  height: 14.4px;

  cursor: pointer;
}

.new__content .social__list li {
  position: relative;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 8px 0;

  text-align: center;
  color: #00a88e;

  background-color: #f7f7fb;
  border-radius: 4px;
  cursor: pointer;

  -webkit-box-align: center;
  -webkit-box-flex: 1;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}

.new__content .social__list li::before {
  display: none;
}

.new__content .social__list li a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 100%;
}

.new__content img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.new__content figure {
  text-align: center;
}

.new__content figcaption em {
  display: inline;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;

  font: inherit;
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #444444;
  font-style: italic;

  border: 0;
}

.tabs__nav {
  width: fit-content;
  margin-left: 0;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-transform: none;
  transform: none;
  @media (max-width: 1200px) {
    width: 100%;
  }
}

.tabs__nav_gray {
  width: 100%;
  z-index: 5;
}

.tabs__nav-container {
  position: sticky;
  top: 72px;
  padding-left: 0;
  background-color: #f7f7fb;
  width: auto;
}

.tabs-nav-list {
  position: sticky;
  top: 72px;
}

.page-title_publications {
  background: none;
}

.page-title_publications::before {
  display: none;
}

.page-title__heading {
  color: #1d1d1b;
}

.page-filter__tags {
  margin-right: -23px;
  margin-bottom: 0 !important;
  padding-right: 23px;

  gap: 10px 8px;
}

.page__aside .page-filter__tags::-webkit-scrollbar {
  width: 5px;

  background-color: #f9f9fd;
}

.page__aside .page-filter__tags::-webkit-scrollbar-thumb {
  background-color: #00a88e;
  border-radius: 5px;
}

.page__aside .page-filter__tags::-webkit-scrollbar-track {
  background-color: #f9f9fd;
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
}

.page-filter__tag {
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  width: 100%;
}

.page-filter__tags-title.open .page-filter__tags-body {
  max-height: 40px !important;
}

.page-filter__tags-body {
  overflow-x: hidden;
}

.page-filter__tags-title.open ~ .page-filter__tags-body {
  padding: 0 0 10px 0;
  max-height: 340px !important;
  gap: 10px 8px;
  overflow-y: auto;
}

.page-filter__tags-body::-webkit-scrollbar {
  width: 5px;

  background-color: #f9f9fd;
}

.page-filter__tags-body::-webkit-scrollbar-thumb {
  background-color: #c4c4c4;
  border-radius: 10px;
}

.page-filter__tags-body::-webkit-scrollbar-track {
  background-color: #f7f7fb;
  border-radius: 5px;
}

.new__authors {
  margin-top: 56px;
}

.authors__title {
  margin-top: 0 !important;
  padding-right: 40px !important;

  font-size: 18px !important;
  line-height: 1.5 !important;
  color: #444444 !important;
}

.authors__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 16px !important;

  list-style: none !important;

  border-left: 1px solid #cccccc !important;

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  row-gap: 19px;
}

.author {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;

  text-align: left !important;

  background: 0 0 !important;
  border: none !important;
  cursor: unset !important;
}

.author::before {
  width: 0 !important;
  height: 0 !important;
}

.author-name {
  margin-bottom: 0 !important;

  font-weight: 500 !important;
  font-size: 18px !important;
  line-height: 1.5 !important;
}

.author__position {
  margin-bottom: 0 !important;

  font-weight: 300 !important;
  font-size: 16px !important;
  color: #575757 !important;
}

.caption-text {
  display: block !important;

  font-weight: 500 !important;
  font-size: 16px !important;
  line-height: 20px !important;
  text-align: center !important;
  color: #444444;
}

.vulnerability-list__item-title {
  display: block;

  -webkit-transition: color 0.35s;
  -o-transition: color 0.35s;
  transition: color 0.35s;
}

.vulnerability__secondary-title {
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
  flex: none;
  margin-bottom: 16px;

  /* margin-bottom: 0; */

  -webkit-box-flex: 1;
}
.vulnerability__undertitle-title,
.vulnerability__author-title {
  margin-bottom: 8px;
}
.vulnerability__title-item .vulnerability__secondary-title {
  width: 30%;
}
.vulnerability__author-list {
  display: grid;
  grid-template-columns: auto auto auto;
}

.vulnerability__undertitle-text {
  color: #444444;
}
.researchers .vulnerability__undertitle-text {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}
.researchers .vulnerability__undertitle-text span {
  font-size: 14px;
  line-height: 21px;
  font-weight: 300;
  display: block;
}

.vulnerability__undertitle-text a {
  color: #00a88e;
  text-decoration: none;
}

.vulnerability__cvss-title {
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;

  -webkit-box-flex: 1;
}

.vulnerability__secondary-text {
  flex: unset;

  line-height: 24px;
}

.vulnerability__secondary-text > a {
  white-space: pre-wrap;
  word-wrap: inherit;
  overflow-wrap: anywhere;
}

.vulnerability__scores {
  display: flex;
  justify-content: flex-start;
}

.page__content_vulnerability hr.vulnerability__cvss {
  margin-top: 30px;
  margin-bottom: 40px;

  border-color: #dfe2e3;
}

.vulnerability__title-item {
  /* justify-content: space-between; */
  justify-content: flex-start;

  /* align-items: flex-end; */

  -webkit-box-align: end;
  -webkit-box-pack: justify;
  -ms-flex-align: end;
  -ms-flex-pack: justify;
}

.page-text p {
  margin-bottom: 10px;
}

.page-text .vulnerability__blocks {
  margin-top: 40px;
}

/* 
.vulnerability__text ul li {
  position: relative;

  padding-left: 20px;
}
.vulnerability__text ul li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 5px;

  width: 5px;
  height: 5px;

  background-color: #000000;
  border-radius: 50%;
}
.vulnerability__text ul li > ul {
  padding-bottom: 10px;
}
.vulnerability__text ul li > ul li::before {
  background-color: #ffffff;
  border: 1px solid #000000;
} */

.vulnerability__text p {
  margin-bottom: 24px;
}

.vulnerability-list__item-codes {
  width: auto;
  width: 150px;
}

@media (max-width: 768px) {
  .vulnerability__author-list {
    display: grid;
    grid-template-columns: auto;
  }
  .vulnerability-list__item-codes {
    display: flex;
    flex-direction: column;
  }
  .vulnerability-list__item-code:not(:last-of-type) {
    margin-bottom: 5px;
  }
}

.vulnerability-list__item-date {
  margin-left: 150px;
}

@media (max-width: 768px) {
  .vulnerability-list__item-date {
    margin-left: 0;
  }
}

.reports-list__author {
  margin-left: 5px !important;
}

.reports-list__author:first-child {
  margin-left: 0 !important;
}

.reports-list__tags {
  margin-top: 8px !important;
}

@media (max-width: 1200px) {
  .pagination__item .reports-list__tag {
    margin-bottom: 0;
  }
}

.arcs-modal__wrapper {
  margin: 0 -56px;
  padding: 0 56px !important;
}

.arcs-modal__wrapper::-webkit-scrollbar {
  width: 5px;

  background-color: #f9f9fd;
}

.arcs-modal__wrapper::-webkit-scrollbar-thumb {
  background-color: #00a88e;
  border-radius: 5px;
}

.arcs-modal__wrapper::-webkit-scrollbar-track {
  background-color: #f9f9fd;
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
}

.modal__content {
  /* overflow: hidden !important; */
}

.modal__content::-webkit-scrollbar {
  width: 5px;

  background-color: #f9f9fd;
}

.modal__content::-webkit-scrollbar-thumb {
  background-color: #00a88e;
  border-radius: 5px;
}

.modal__content::-webkit-scrollbar-track {
  background-color: #f9f9fd;
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
}

.mfp-no-margins img.mfp-img {
  padding: 0;
}

/* position of shadow behind the image */

.mfp-no-margins .mfp-figure:after {
  top: 0;
  bottom: 0;
}

/* padding for main container */

.mfp-no-margins .mfp-container {
  padding: 0;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  -webkit-backface-visibility: hidden;
  opacity: 0;

  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

.incident__tags {
  flex-wrap: wrap;
  height: auto !important;

  -ms-flex-wrap: wrap;
  row-gap: 8px;
}

.incident {
  height: auto !important;
}

.button-incident {
  z-index: 2 !important;
}

.articles .articles__wraper {
  position: relative !important;

  padding-bottom: 64px !important;
}

.articles .articles__wraper::before {
  left: 0 !important;
}

.articles .articles-slider__nav {
  position: absolute !important;
  right: 120px !important;
  bottom: 35px !important;
}

.articles .hide-slider .modal-link-subscr.button-subscr {
  display: flex;
  align-items: center;
  height: 56px;
  padding: 16px 32px 16px 34px;
}
@media (max-width: 1200px) {
  .articles .hide-slider .modal-link-subscr.button-subscr svg {
    transform: translateX(0) scale(1.5);
  }
}

@media (max-width: 768px) {
  .articles .hide-slider .modal-link-subscr.button-subscr {
    padding: 16px 18px 16px 32px;
  }
}

.services__buttons {
  align-items: flex-start;
  min-height: 44px;

  -webkit-box-align: start;
  -ms-flex-align: start;
}

@media (max-width: 768px) {
  .services__buttons {
    display: block;
  }
}

.services__buttons .services__button {
  width: 100%;
}

.services__item .services__button.btn_request_service {
  margin-bottom: 12px;
}
.services__item .services__button.services__button-more {
  margin: 0;
  padding: 8px 0 0;
}

.services-block.items_has_link_count_1 .services__buttons {
  min-height: 88px;
}
.services-block.items_has_link_count_2 .services__buttons {
  min-height: 120px;
}

.services__img {
  flex-shrink: 0;

  -ms-flex-negative: 0;
}

.events__item-dates {
  align-items: center !important;

  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
}

@media (max-width: 768px) {
  .events__item-dates {
    align-items: flex-start !important;
    -webkit-box-align: flex-start !important;
    -ms-flex-align: flex-start !important;
  }
  .services__buttons {
    min-height: auto !important;
  }
}

.header {
  z-index: 10000;
}

.switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;

  -webkit-box-align: center;
  -ms-flex-align: center;
}

.switch__btn {
  position: relative;
  z-index: 0;

  display: inline-block;
  width: 40px;

  /* ширина */
  height: 20px;
  margin: 0 14px;
  padding: 0;

  /* высота */

  background: #00a88e;
  border: none;
  border-radius: 20px;
  cursor: pointer;

  -webkit-transition-duration: 300ms;
  -o-transition-duration: 300ms;
  transition-duration: 300ms;

  /* анимация */
}

.switch__btn::after {
  content: '';

  /* анимация */
  position: absolute;

  /* цвет кнопки */
  top: 2px;

  /* положение кнопки по вертикали относительно основы */
  left: 2px;
  z-index: 1;

  /* высота кнопки */

  width: 16px;
  height: 16px;

  background: #ffffff;

  /* ширина кнопки */
  border-radius: 17px;

  /* положение кнопки по горизонтали относительно основы */

  -webkit-transition-duration: 300ms;
  -o-transition-duration: 300ms;
  transition-duration: 300ms;
}

.switch__btn._active::after {
  left: 22px;
}

.switch__tab {
  color: #cccccc;
}

.modal-m__label .switch__tab--phone {
  color: #444444;
}

.modal-m__label._active .switch__tab--email {
  color: #444444;
}

.modal-m__label._active .switch__tab--phone {
  color: #cccccc;
}

.modal-m__email {
  display: none;
}

.modal-m__label._active .modal-m__email {
  display: block;
}

.modal-m__label._active .modal-m__phone {
  display: none;
}

/* .wp-block-pullquote {
  padding: 3em 0;
  margin-left: 0;
  margin-right: 0;
  text-align: center;
}
.wp-block-pullquote.alignleft,
.wp-block-pullquote.alignright {
  max-width: 420px;
}
.wp-block-pullquote.alignleft p,
.wp-block-pullquote.alignright p {
  font-size: 1.25em;
}
.wp-block-pullquote p {
  font-size: 1.75em;
  line-height: 1.6;
}
.wp-block-pullquote cite,
.wp-block-pullquote footer {
  position: relative;
}
.wp-block-pullquote .has-text-color a {
  color: inherit;
}
.wp-block-pullquote:not(.is-style-solid-color) {
  background: none;
}
.wp-block-pullquote.is-style-solid-color {
  border: none;
}
.wp-block-pullquote.is-style-solid-color blockquote {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  max-width: 60%;
}
.wp-block-pullquote.is-style-solid-color blockquote p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2em;
}
.wp-block-pullquote.is-style-solid-color blockquote cite {
  text-transform: none;
  font-style: normal;
}
.wp-block-pullquote cite {
  color: inherit;
} */

/*.modal__team-member-img {
  display: block;
  width: auto;
  height: 100%;
}

.event {
  min-height: 343px;
  height: auto;
}

.event__img {
  overflow: unset;
}

.event__desc {
  max-height: none;
}

.events__hide {
  padding-bottom: 0;
}
.events__wrapper {
  padding-top: 50px;
}*/

.event {
  height: auto;
}

.event__desc {
  max-height: none;
}

.event__img {
  flex-shrink: 0;
  height: 240px;
}

.event_shortList .event__img img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* .events__pic {
    width: 100%;
    max-width: 544px;
    height: 244px;
}

.event__img img,
.events__pic img {
    width: 100%;
    height: 100%;

    object-fit: cover;
} */

@media (max-width: 1023px) {
  .event__img {
    height: 190px;
  }
}

@media (max-width: 768px) {
  .event {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .event__img {
    width: 100%;
    max-width: 500px;
    max-height: 200px;
    margin: 0 auto;
  }
}

.event__info {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.author__profile {
  flex-shrink: 0;
  width: auto;
  height: auto;
  margin-top: 3px;

  object-fit: cover;
}

.author__profile img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 45px;
  height: 45px;
  margin: 0 auto;

  border-radius: 50%;
}

.button-ajax {
  position: relative;

  border: none;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.button-ajax:active {
  background: #007a63;
}

.button__text {
  color: #ffffff;

  transition: all 0.2s;
}

.button--loading .button__text {
  visibility: hidden;
  opacity: 0;
}

.button--loading::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  width: 25px;
  height: 25px;
  margin: auto;

  border: 3px solid transparent;
  border-top-color: #00a88e;
  border-radius: 50%;

  animation: button-loading-spinner 1s ease infinite;
}

@keyframes button-loading-spinner {
  from {
    transform: rotate(0turn);
  }

  to {
    transform: rotate(1turn);
  }
}

.modal--alert {
  display: none;
  width: 419px;
  height: 557px;

  font-size: 16px;
}

.modal--alert.alert--success {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;

  font-size: 26px;
  text-align: center;
  color: #00a88e;
}

.modal--alert.alert--error {
  border: 1px #ff0000 solid;
}

.input--error {
  border: 1px #ff0000 solid;
}

.input--info {
  display: none;

  font-size: 13px;
  color: #ff0000;
}

@media (max-width: 1200px) {
  .arcs-modal__wrapper {
    margin: 0 -32px;
    padding: 0 32px !important;
  }

  .vulnerability__title-item {
    align-items: flex-start;

    -webkit-box-align: start;
    -ms-flex-align: start;
  }

  .services__buttons {
    height: 64px;
  }
}

.services__title {
  flex-grow: 0;
}

.services__buttons {
  height: auto;
  margin-top: auto;
}

.services__text {
  height: 72px;

  transition: all 0.4s ease;
}

.services__item:hover .services__text {
  height: 200px;

  -webkit-line-clamp: 7;
}

.services__img {
  transition: all 0.4s ease;
}

.services__item:hover .services__img {
  height: 0;
}

.index__h3 {
  color: #1d1d1b;
}

@media (max-width: 1200px) {
  .services__text {
    height: auto;
  }

  .services__item:hover .services__text {
    height: auto;
  }

  /* .services__item:hover .services__img {
        height: 110px;
    } */
}

.tabs__nav-item-all {
  position: relative;

  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  justify-content: center;
  align-items: center;
  padding: 17px 22px 13px;

  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #444444;
  text-transform: uppercase;

  background-color: #f7f7fb;
  border-bottom: 4px solid transparent;
  cursor: pointer;

  transition: color 0.35s;

  -ms-flex-align: center;
  -ms-flex-pack: center;
}

.services__item {  
  padding: 56px 28px 40px 28px;
  min-height: 502px;
  transition: all 0.4s ease;
}

@media (min-width: 1201px) and (max-width: 1440px) {
  .services__item {
    padding-top: calc(40px + (56 - 40) * ((100vw - 1201px) / (1440 - 1201)));
    padding-right: calc(20px + (28 - 20) * ((100vw - 1201px) / (1440 - 1201)));
    padding-bottom: calc(20px + (40 - 20) * ((100vw - 1201px) / (1440 - 1201)));
    padding-left: calc(20px + (28 - 20) * ((100vw - 1201px) / (1440 - 1201)));
  }
}

@media (max-width: 1201px) {
  .services__item {
    min-height: auto;
    padding: 56px 40px 40px 32px;
  }
}

.logo {
  width: 105px;
}

#smm-assessment .page-title,
#smm-assessment .page-title_publications {
  background: none;
}

#smm-assessment .page-title {
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

#smm-assessment .page-title::before {
  content: none;
}

#smm-assessment .page-title__heading {
  margin: 39px 0 46px;

  font-size: 56px;
  line-height: 64px;
  color: #1d1d1b;
}

#smm-assessment .breadcrumbs {
  padding: 11px 0;
}

#smm-assessment .tabs__nav-item {
  padding: 17px 54px 13px;

  font-size: 16px;
  line-height: 22px;
  text-transform: uppercase;
  letter-spacing: 0.33px;
}

#smm-assessment .tabs__nav {
  margin-bottom: 32px;
}

#smm-assessment .statistics__filter {
  font-size: 18px;
  line-height: 24px;
  color: #444444;
}

#smm-assessment .smm__wrapper {
  width: 100%;
  max-width: 1256px;
}

#smm-assessment .select2-container {
  margin-top: 12px;
}

#smm-assessment .service__block-filter {
  margin-bottom: 44px;

  column-gap: 17px;

  -webkit-column-gap: 17px;
  -moz-column-gap: 17px;
}

#smm-assessment .statistics__filter {
  width: 355px !important;
}

#smm-assessment .smm__title-company {
  margin-bottom: 19px;
  margin-left: 25px;

  font-size: 32px;
  line-height: 36px;
  color: #444444;
}

#smm-assessment .smm__title-type {
  padding: 21px 24px 27px;

  font-size: 21px;
  line-height: 28px;
  color: #444444;

  background: #f7f7fb;
}

#smm-assessment .smm__column > a {
  font-size: 16px;
  line-height: 20px;
  color: #444444;
}

#smm-assessment .smm__row {
  margin-top: 21px;
  padding: 0 4px;
}

#smm-assessment .smm__column {
  font-size: 16px;
  line-height: 20px;
  color: #444444;
}

#smm-assessment .smm__column > ul li {
  position: relative;

  padding-left: 11px;
}

#smm-assessment .smm__column > ul li::before {
  content: '';
  position: absolute;
  top: 8px;
  left: -3px;

  width: 3px;
  height: 3px;

  background-color: #00a88e;
}

#smm-assessment .smm__column > ul > li > a {
  font-size: 16px;
  line-height: 20px;
  color: #00a88e;
}

#smm-assessment .aside-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 56px 64px 58px 51px;
  background: #f7f7fb;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

#smm-assessment .aside-card__column:nth-child(1) {
  margin-right: 24px;
}

#smm-assessment .aside-card__column:nth-child(2) {
  max-width: 599px;
  margin-right: 86px;
}

#smm-assessment .aside-card__column:nth-child(3) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;

  column-gap: 24px;

  -webkit-box-align: center;
  -webkit-column-gap: 24px;
  -moz-column-gap: 24px;
  -ms-flex-align: center;
}

#smm-assessment .aside-card__img {
  flex-shrink: 0;
  width: 80px;
  height: 80px;

  -ms-flex-negative: 0;
}

#smm-assessment .aside-card__img img {
  width: 100%;
  height: 100%;

  -o-object-fit: cover;
  object-fit: cover;
}

#smm-assessment .aside-card__title {
  display: block;
  margin-bottom: 8px;

  font-size: 24px;
  line-height: 32px;
  color: #1d1d1b;
}

#smm-assessment .aside-card__text p {
  font-size: 16px;
  line-height: 24px;
  color: #444444;
}

#smm-assessment .aside-card__btn {
  padding: 12px 53px;

  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: #00a88e;

  border: 1px solid #00a88e;
  border-radius: 4px;
}

#smm-assessment .aside-card__btn--green {
  padding: 11px 47px;
  color: #ffffff;
  background: #00a88e;
}

#smm-assessment .page__aside {
  width: 100%;
  max-width: 1256px;
  margin-top: 43px;
  margin-left: 0;
}

#smm-assessment .publications {
  min-height: auto;
}

@media (max-width: 1440px) {
  #smm-assessment .page-title__heading {
    font-size: calc(32px + (56 - 32) * ((100vw - 375px) / (1440 - 375)));
    line-height: calc(42px + (64 - 42) * ((100vw - 375px) / (1440 - 375)));
  }
}

@media (max-width: 1201px) {
  .services__item {
    padding: 56px 40px 40px 32px;
  }
}

@media (max-width: 768px) {
  #smm-assessment .smm__row {
    -ms-flex-direction: column;
    flex-direction: column;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    row-gap: 15px;
  }

  #smm-assessment .smm__column {
    width: 100% !important;
    margin-left: 0 !important;
  }

  #smm-assessment .smm__column > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    row-gap: 10px;
  }
}

/* /////////////////////////////// */

.aside-card_service {
}

.aside-card_service .aside-card__title {
  margin-bottom: 16px;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 32px;
  color: #444;
  text-align: center;
}
.aside-card_service .aside-card__text {
  margin-bottom: 24px;
}
.aside-card_service .aside-card__text p {
  font-size: 16px;
  line-height: 24px;
  color: #444444;
  text-align: center;
  margin: 0;
}
.aside-card_service .aside-card__img {
  width: 130px;
  -ms-flex-negative: 0;
  text-align: center;
  margin: 0 auto 4px auto;
}
.aside-card_service .aside-card__img img {
  width: 100%;
  height: auto;
}
.aside-card_service .aside-card__btn--green {
  color: #ffffff;
  background: #00a88e;
}
.aside-card_service .aside-card__btn {
  width: 100%;
  padding: 12px 12px;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  border: 1px solid #00a88e;
  border-radius: 4px;
}

.page-filter-singlepage__tags .page-filter__tag {
  width: fit-content;
}

.new__tags-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #1d1d1b;
  margin-bottom: 16px;
  margin-top: 40px;
}

.new__socials {
  margin-bottom: 12px;
  @media (max-width: 768px) {
    margin-bottom: 4px;
  }
}

.page-filter__tags-wrapper {
  max-height: none;
  overflow: hidden;
  transition: max-height 0.3s;
  position: relative;
}

.page-filter__tags-wrapper.collapsed {
  overflow: hidden;
}

.download {
  background: #444444;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 13px;
}

.report__download-icon {
  margin-right: 8px;
}

@media (min-width: 1201px) {
  .page-filter__tags-wrapper.collapsed {
    max-height: calc(2.4em * 5 + 16px);
  }
}

@media (max-width: 1200px) {
  .page-filter__tags-wrapper.collapsed {
    max-height: 35px;
  }
  .new__socials_mobile {
    display: flex;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .new__socials_mobile {
    flex-direction: column;
  }
  .new__links-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
}

.tags-toggle-btn {
  margin-top: 8px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  color: #999999;
  flex-shrink: 0;
  @media (max-width: 1200px) {
    margin-top: 0;
  }
}
.tags-toggle-btn[aria-expanded=\"true\"] {
  background: #e0e0e0;
}

/* /////////////////////////////// */
@media (max-width: 768px) {
  .article__fullsizeTitle {
    width: 300px;
  }
}

@media (max-width: 460px) {
  .article__fullsizeTitle {
    width: 260px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .article__fullsizeTitle {
    width: 260px;
  }
}

.main-article__description {
  z-index: 1;
}

.modal__team {
  /* height: 400px; */
}

.arcs-modal__title_team {
  margin-bottom: 20px;
}

.modal__team-member-pic {
  width: 200px;
}

.modal__team-member-img-wrapper {
  width: 200px;
  height: 200px;
  overflow: hidden;

  border-radius: 4px;
}

.modal__team-member-name {
  margin-bottom: 2px !important;

  font-weight: 500 !important;
  font-size: 23px !important;
}

.modal__team-member-text-wrapper {
  padding-bottom: 0;
}

.modal__team-member-position {
  color: gray;
}

.modal__team-member-info {
  width: calc(100% - 200px);
}

.mitigation__item {
  margin-top: 5px;
}

.mitigation__item p {
  margin-bottom: 10px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__placeholder {
  color: #444444;
}

.vulnerability__mitigation-title {
  -ms-flex: 1 0 50%;
  flex: 1 0 50%;
  margin-bottom: 5px;

  font-weight: 500;
  font-size: 20px;
  line-height: 36px;
  color: #444444;
  font-style: normal;
}

.page__content_vulnerability hr {
  border-top: solid 1px;
  border-right: none;
  border-bottom: none;
  border-left: none;
}

.timeline {
  padding: 32px 32px 40px;
}

.footer__cert {
  align-items: center;
}

.footer__cert-text {
  font-size: 12px;
  color: #ffffff;
}

.footer__cert-text:hover {
  color: #ffffff !important;
}

.footer__cert-img {
  width: 60px;
  height: 60px;
  margin-top: 0 !important;
}

.wp-block-image figcaption {
  font-size: 16px;
}

.wp-block-image figcaption strong,
.wp-block-image figcaption a {
  font-weight: 400;
  font-size: 16px;
}

.additional-info__button {
  display: inline-block;
}

.about__address-text a,
.about__address-column .about__address-text:not(:first-child) {
  font-weight: 300;
}

.events .event__desc {
  font-size: 16px;
  line-height: 24px;
}

.notification {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;

  width: 100%;

  background-color: rgba(0, 168, 142, 0.9);
  border-top: 1px solid #48ad99;
}

.notification .content_inner {
  position: relative;

  display: block;
  box-sizing: content-box;
  max-width: 1085px;
  margin: 0 auto;
  padding: 0 20px;
}

.notification_form {
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;

  -ms-flex-align: center;
  -ms-flex-pack: justify;
}

.notification_description {
  width: 75%;

  color: #ffffff;
}

.notification_btn,
.notification_description {
  display: inline-block;

  font-weight: 300;
  vertical-align: middle;
}

.notification_description a {
  color: #ffffff;
  text-decoration: underline;
}

.notification_btn {
  width: 15%;
  margin: 0;
  padding: 10px 0;

  color: #ffffff;
  text-transform: none;

  background-color: #48ad99;
}

.notification_btn,
.notification_description {
  display: inline-block;

  font-weight: 300;
  vertical-align: middle;
}

.notification .btn {
  display: inline-block;
  margin: 0;
  padding: 0;

  vertical-align: top;
  text-align: center;

  background-color: transparent;
  border: none;
  outline: 0;
}

.page__aside._scroll {
  flex-shrink: 0;
}

.page__aside._scroll .page-filters {
  overflow-y: auto;
}

/* .page__aside._scroll .pin_calendar {
  max-height: 80%;
} */

.page__aside._scroll .page-filters::-webkit-scrollbar {
  width: 5px;

  background-color: #f9f9fd;
}

.page__aside._scroll .page-filters::-webkit-scrollbar-thumb {
  background-color: #00a88e;
  border-radius: 5px;
}

.page__aside._scroll .page-filters::-webkit-scrollbar-track {
  background-color: #f9f9fd;
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
}

.map-info__color-bar-desc {
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
}

.geography-stat__map .share__link {
  display: none;
}

.geography-stat__map .map-info__share-logo {
  width: auto;
  height: 32px;
}

.share__logo {
  width: auto;
  height: 32px;
}

.page-filter__tags-wrapper:first-child {
  border-top: 0 !important;
}

.new__tags .page-filter__tags-wrapper {
  border-bottom: none !important;
}

.page__aside._scroll .page-filter__date-img {
  top: -30px;
  bottom: unset;
}

.page__aside._scroll .calendar-list._scroll .page-filter__date-img {
  top: -304px;
}

.page__aside._scroll .calendar-list {
  flex-direction: column;
}

.page__aside._scroll .calendar-list._scroll .datapicker__container._end input {
  top: -316px;
}

.page__aside._scroll
  .calendar-list._scroll
  .datapicker__container._end
  .datapicker__placeholder {
  top: -316px !important;
}

.page__aside._scroll .calendar-list._scroll .datapicker__container._end:before {
  top: -309px;
}

.page__aside._scroll .datapicker__container._end input {
  position: absolute;
  top: -43px;
  right: 0;
}

.page__aside._scroll .datapicker__container._end .datapicker__placeholder {
  top: -43px !important;
  right: 0;
  left: unset !important;
  z-index: 1;
}

.page__aside._scroll .datapicker__container._end:before {
  top: -36px;
  left: 91px;
}

.page__aside._scroll .daterangepicker {
  position: static;
}

.datapicker__container._end .daterangepicker {
  top: 43px !important;
  @media (max-width: 768px) {
    top: 81px !important;
  }
}

@media (max-width: 768px) {
  .page__filters-panel .page-filters {
    height: unset;
    /* min-height: 100%; */
    min-height: 65em;
    width: 100vw;
    max-width: 100%;
    padding: 16px 16px 8px 16px;
  }
  .page__filters-panel .datapicker__container._start .datapicker__placeholder {
    z-index: 1;
  }
  .page__filters-panel .datapicker__container._end .datapicker__placeholder {
    right: 0;
    left: unset !important;
    z-index: 1;
  }

  .page__filters-panel .datapicker__container._end:before {
    top: 50px;
    left: 76px;
  }

  .page__filters-panel .datapicker__container._end input {
    position: absolute;
    top: 40px;
    right: 0;
  }

  .page__filters-panel .page-filter__date-img {
    bottom: unset;
  }

  .page__filters-panel
    .calendar-list._scroll
    .datapicker__container._end
    input {
    top: -316px;
  }

  .page__filters-panel
    .calendar-list._scroll
    .datapicker__container._end
    .datapicker__placeholder {
    top: -316px !important;
  }

  .page__filters-panel
    .calendar-list._scroll
    .datapicker__container._end:before {
    top: -309px;
  }

  .page__filters-panel .page-filters .select2 {
    width: 240px !important;
    max-width: 240px;
    overflow: hidden;
  }
}

.pagination__link.prev svg {
  fill: #ed2939;
}

.pagination__link.prev:hover svg {
  fill: #006d5c;
}

.pagination__link.prev.disabled svg {
  fill: #999999;
}

.pagination__link.prev.disabled {
  cursor: text;
}

.pagination__link.next {
  /* width: 44px; */
  padding: 9px 9px;
}

.pagination__link.next svg {
  transform: rotate(180deg);
}

.pagination__link.next:hover svg {
  fill: #006d5c;
}

.pagination__link.next.disabled svg {
  fill: #999;
}

.pagination__link.next.disabled {
  cursor: text;
}

.page-title__heading a {
  color: #1d1d1b;
}

.map-info__color-bar {
  width: auto;
}

.page {
  /* height: 100%; */
}

.leaving {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 470px;
}

.leaving__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0;
}

.leaving__icon {
  width: 100%;
  max-width: 178px;
  margin-bottom: 40px;
}

.leaving__title {
  margin-bottom: 32px;

  font-weight: 400;
  font-size: 36px;
  line-height: 43px;
  text-align: center;
  color: #1d1d1b;
}

.leaving__text {
  margin-bottom: 56px;

  font-weight: 300;
  font-size: 17px;
  line-height: 140%;
  text-align: center;
  color: #1d1d1b;
}

.leaving__link {
  color: #00a88e;
}

.leaving__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 146px;
  height: 45px;

  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;

  background: #00a88e;
  border: 0;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .leaving {
    padding: 10px;
  }

  .leaving__icon {
    margin-bottom: 10px;
  }

  .leaving__title {
    margin-bottom: 22px;

    font-size: 26px;
    line-height: 33px;
  }

  .leaving__text {
    margin-bottom: 36px;

    font-size: 14px;
    line-height: 130%;
  }
}

.new__similar-footer {
  margin-top: 64px;
}

.similar-footer__wrap {
  overflow-x: auto;
}

.similar-footer__similar-title {
  margin-bottom: 24px;

  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #1d1d1b;
}

.similar-footer__similar-list {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1256px;
}

.similar-footer__similar-list-item {
  width: 379px;
  height: 173px;
  padding: 40px 32px;

  background: #f7f7fb;
  border-radius: 3px;
}

.similar-footer__similar-list-item a {
  /* transition: all 0.2s ease; */
}

.similar-footer__similar-list-item a:hover {
  color: #00a88e;
}

.similar-footer__similar-list-item:not(:last-child) {
  margin-right: 32px;
}

.similar-footer__similar-date {
  font-weight: 300;
  font-size: 14px;
  line-height: 17px;
  color: #999999;
}

.similar-footer__similar-link {
  display: -webkit-box;
  margin-bottom: 16px;
  overflow: hidden;

  font-weight: 400;
  font-size: 17px;
  line-height: 20px;
  color: #1d1d1b;
  text-overflow: ellipsis;

  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media (max-width: 1024px) {
  .similar-footer__similar-list {
    width: 959px;
    max-width: unset;
  }
}

.news__aside-similar {
  opacity: 1;

  transition: all 0.3s linear;
}

.news__similar--hide {
  position: absolute;
  z-index: -9;
  z-index: -1;

  opacity: 0;

  pointer-events: none;
}

.news__similar--hide::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;

  width: 100%;
  height: 100%;
}

.header._publication {
  display: flex;
  flex-direction: column;
  height: auto;
}

.header._publication .header__container {
  height: 72px;

  transition: all 0.2s linear;
}

.header._publication .header__container--hide {
  z-index: -9;

  height: 0;

  opacity: 0;
}

.header-bottom {
  z-index: -9;

  display: flex;
  align-items: center;
  height: 0;
  padding-top: 10px;

  background: #444444;
  opacity: 0;

  transition: all 0.2s linear;

  pointer-events: none;
}

.header-bottom--show {
  z-index: 1;

  height: 72px;

  opacity: 1;

  pointer-events: auto;
}

.header-bottom__container {
  display: flex;
  max-width: 1840px;
  padding-left: 291px;
}

.header-bottom__link-top {
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  color: #ffffff;
}

.header-bottom__title {
  margin-right: 40px;

  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  white-space: nowrap;
}

.header-bottom__wrap {
  display: flex;
}

.header-bottom__menu {
  position: relative;
  z-index: 1;

  width: 100%;
  padding-bottom: 10px;
  overflow-y: auto;
}

.header-bottom__menu:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;

  width: 300px;
  height: 100%;

  background: rgb(255, 255, 255);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(68, 68, 68, 0.8883928571428571) 100%
  );

  pointer-events: none;
}

.header-bottom__list {
  display: flex;
  align-items: center;
}

.header-bottom__list li:not(:last-child) {
  margin: 0 30px 0 0;
}

.header-bottom__list li {
  display: flex;
  padding: 0;
}

.header-bottom__list li._active a {
  color: #00a88e;
}

.header-bottom__list li ul {
  display: flex;
  margin: 0 0 0 30px;
  padding: 0;
}

.header-bottom__list a {
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  white-space: nowrap;

  transition: all 0.1s linear;
}

.header-bottom__list a:hover {
  color: #00a88e;
}

@media (min-width: 1200px) and (max-width: 1858px) {
  .header-bottom__container {
    padding-left: calc(94px + (291 - 94) * ((100vw - 1201px) / (1858 - 1201)));
  }
}

@media (max-width: 1200px) {
  .header-bottom__container {
    padding-left: 25px;
  }

  .new__similar-footer {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .header-bottom__menu:before {
    z-index: -1;
  }

  .header-bottom__container {
    display: flex;
    flex-direction: column;
  }

  .header-bottom__wrap {
    margin-bottom: 10px;
  }
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  transition: all 0.3s ease;
}

.new__aside {
  transition: all 0.2s linear;
}
@media screen and (min-width: 1200px) {
  .datapicker__container._start .daterangepicker {
    top: -297px !important;
  }
  .datapicker__container._end .daterangepicker {
    top: -281px !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .datapicker__container._start .daterangepicker {
    left: unset !important;
  }
  .datapicker__container._end .daterangepicker {
    right: unset !important;
    left: 159px !important;
    top: 21px !important;
  }
}

.vulnerabilities .datapicker__container._start .daterangepicker {
  top: 43px !important;
}

.vulnerabilities .datapicker__container._end .daterangepicker {
  top: 43px !important;
}

.datapicker__placeholder {
  height: 100%;
}

/* trainings__main */

.trainings__info ul > li {
  position: relative;

  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 0 0 36px;
  margin-bottom: 16px;
  padding: 0 0 0 36px;

  list-style: none;
  list-style-type: none;
  font: inherit;
  font-weight: 300;
  vertical-align: baseline;
  color: #444444;

  border: 0;
}

.trainings__info ul > li::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 18px;

  width: 6px;
  height: 6px;

  background-color: #00a88e;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.trainings__info ul a {
  font: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  text-decoration: none;
}

.trainings__info ul a:hover {
  text-decoration: underline;
}

.trainings__info ul ul {
  margin: 0;
  padding: 0;

  font: inherit;

  /* color: #1d1d1b; */

  border: 0;
}

.trainings__info ul > ul {
  margin: 0 0 0 36px;
  padding: 0 0 0 36px;
}

.trainings__info ul ul li {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 16px 0 16px 18px;
  padding: 0 0 0 36px;

  list-style: none;
  font: inherit;
  font-weight: 300;

  /* font-size: 18px;
  line-height: 24px; */
  vertical-align: baseline;

  /* color: #1d1d1b; */

  border: 0;
}

.trainings__info ol {
  counter-reset: list;
}

.trainings__info ol ul,
.trainings__info ol ol,
.trainings__info ol li {
  margin-top: 16px;
}

.trainings__info ol ul ul,
.trainings__info ol ul ol,
.trainings__info ol ul li,
.trainings__info ol ol ul,
.trainings__info ol ol ol,
.trainings__info ol ol li,
.trainings__info ol li ul,
.trainings__info ol li ol,
.trainings__info ol li li {
  margin-top: 16px;
}

.trainings__info ol > li:not(.trainings__step) {
  position: relative;

  margin-bottom: 16px;
  margin-left: 40px;
  padding-left: 22px;

  font-weight: 300;
}

.trainings__info ol > li:not(.trainings__step)::before {
  content: counter(list) '. ';
  position: absolute;
  top: 2px;
  left: -29px;

  width: 40px;

  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-align: right;
  color: #00a88e;

  background: transparent;

  counter-increment: list;
}

.trainings__info ol ul {
  counter-reset: list;
}

.trainings__info ol ul li::before {
  content: counter(list);
  content: '';
  position: absolute;
  top: 14px;
  left: 0;

  width: 6px;
  height: 6px;

  background-color: #00a88e;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);

  counter-increment: list;
}

.trainings__info p {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  margin-bottom: 24px;
  padding: 0;

  font: inherit;
  font-weight: 300;
  vertical-align: baseline;
  color: #444444;

  border: 0;

  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.trainings__card:before {
  content: none !important;
}

.trainings__card {
  margin: 0 0 32px 32px !important;
  padding: 24px !important;

  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.trainings__info h2 {
  margin-top: 56px;
  margin-bottom: 24px;

  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
}

.trainings__info h3 {
  margin-top: 40px;
  margin-bottom: 24px;

  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
}

.trainings__step .trainings__step-text {
  margin-bottom: 8px;

  font-weight: 400;
  font-size: 21px;
  line-height: 28px;
}

.trainings__step .trainings__text {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #444444;
}

.trainings__more-item {
  margin: 0 !important;
  padding: 0 !important;
}

.trainings__more-item:before {
  content: none !important;
}

.trainings__trainers-item {
  margin: 0 !important;
  padding: 0 !important;
}

.trainings__trainers-item:before {
  content: none !important;
}

.author_accent .author__name {
  font-weight: 400;
}

.author.author_accent {
  cursor: pointer;
}

.trainings__more-link.training:hover {
  text-decoration: none;
}

.list-cards .wp-block-group {
  height: 100%;
}

.list-cards .wp-block-group__inner-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
}

.list-cards .wp-block-group__inner-container .wp-block-image {
  margin-bottom: 0 !important;
  margin-left: auto;
}

.list-cards .wp-block-group__inner-container .wp-block-image img {
  width: 44px;
  height: 44px;

  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.list-cards .wp-block-group__inner-container p {
  flex: 1 1 auto;
}

.list-numcircle {
  background-color: transparent !important;
}

.list-numcircle .wp-block-group__inner-container {
  counter-reset: list;
}

.list-numcircle .wp-block-group__inner-container .wp-block-columns {
  position: relative;

  margin-top: 16px;
  margin-bottom: 48px;
  margin-left: 0;
  padding-left: 120px;

  counter-increment: list;
}

.list-numcircle .wp-block-group__inner-container .wp-block-columns::before {
  content: counter(list);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;

  width: 64px;
  height: 64px;

  font-weight: 700;
  font-size: 28px;
  line-height: 64px;
  text-align: center;
  color: #00a88e;

  background-color: #f7f7fb;
  border-radius: 50%;
  -ms-transform: none;
  transform: none;
}

.list-numcircle
  .wp-block-group__inner-container
  .wp-block-columns:not(:last-child):after {
  content: '';
  position: absolute;
  top: 0;
  left: 31px;
  z-index: 2;

  width: 2px;
  height: calc(100% + 56px);

  background-color: #dfe2e3;
}

.list-numcircle
  .wp-block-group__inner-container
  .wp-block-columns
  .wp-block-column {
  background: transparent !important;
}

.list-numcircle
  .wp-block-group__inner-container
  .wp-block-columns
  .wp-block-column
  > p {
  margin-bottom: 8px;

  font-weight: 400;
  font-size: 21px;
  line-height: 28px;
}

.filter-selected {
  color: #00a88e;

  background-color: #deeff0;
  border-left: 4px solid #00a88e;
}

.fixed {
  position: fixed;
  top: 72px;
  z-index: 999;

  padding-top: 20px;
  padding-bottom: 20px;

  background: #ffffff;
  border-bottom: 1px solid #cccccc;
  box-shadow: 0 2px 0 rgb(151 151 151 / 14%);
  width: 100%;
}

.fixed-padding {
  padding-top: 74px;
}

@media (max-width: 1200px) {
  .fixed {
    top: 48px;
  }

  .fixed-padding {
    padding-top: 70px;
  }
}

@media (max-width: 768px) {
  .fixed-padding {
    padding-top: 60px;
  }
}

.info-block__additional-info {
  top: 225px;
  overflow-y: auto;
}
@media (max-width: 1200px) {
  .all-stat__info-block .info-block__additional-info {
    height: 100%;
    max-height: 100% !important;
    flex-basis: auto;
  }
}

.aside-info {
  margin-bottom: 24px;
  padding: 40px 32px;

  background: #f7f7fb;
  border-radius: 4px;
}

.aside-info .button-incident {
  position: unset;
}

.additional-info {
  margin-bottom: unset;
}

/* .info-block__additional-info {
  overflow-y: auto;
} */

.info-block__additional-info::-webkit-scrollbar {
  width: 5px;

  background-color: #f9f9fd;
}

.info-block__additional-info::-webkit-scrollbar-thumb {
  background-color: #00a88e;
  border-radius: 5px;
}

.info-block__additional-info::-webkit-scrollbar-track {
  background-color: #f9f9fd;
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
}

.additional-info__materials {
  margin-bottom: unset;
}

.trainings__more .trainings__more-link {
  /* height: 231px; */
  display: flex;
  align-items: flex-start;
}

.trainings__more .trainings__more-item {
  margin-bottom: 20px !important;
}

.trainings__more .training__title {
  overflow: hidden;

  white-space: nowrap;
  text-overflow: ellipsis;
}

.trainings__more .training__desc {
  display: -webkit-box;
  min-height: 108px;
  max-height: 108px;
  overflow: hidden;

  text-overflow: ellipsis;

  transition: all 0.3s linear;

  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.trainings__more .trainings__more-link:hover .training__desc {
  max-height: 308px;

  -webkit-line-clamp: 40;
}

.trainings__more .training__img-wrapper {
  align-self: center;
}

.trainings__more .training__lnk {
  align-self: center;
}

@media (max-width: 768px) {
  .trainings__more .training__img {
    width: unset;
    max-width: 100%;
    height: 100%;
    margin: 0 auto;

    object-fit: cover;
  }
}

.button-subscr {
  position: absolute;
  bottom: 0;
  left: 280px;

  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  height: 40px;

  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #ffffff;

  background-color: #00a88e;
  /* border: 1px solid #00a88e; */
  border: none;
  cursor: pointer;
  opacity: 0.7;

  transition: all 0.2s ease;
}

.button-subscr svg {
  position: relative;
  /* right: 18px;
  bottom: 12px; */
}

.button-subscr:hover svg {
  /* right: 10px; */
}

.button-subscr--aside {
  display: flex;
  align-items: center;
  position: relative;
  bottom: unset;
  left: unset;

  width: 100%;
  margin-bottom: 40px;
  padding-top: 14px;
  border-radius: 2px;
  font-size: 14px;

  opacity: 1;
}

.form-check {
  margin-bottom: unset;
}

.btn-filter {
  cursor: pointer;
}

@media (min-width: 1441px) {
  .button-subscr {
    left: 368px;
  }

  .page__aside .button-subscr {
    left: unset;
  }
}

@media (max-width: 768px) {
  .articles {
    height: 594px;
  }

  .button-subscr {
    bottom: 69px;
    left: 0;
  }
}

.report__download {
  margin-bottom: 0;
}

.table-header {
  margin-bottom: -2em !important;
  padding: 16px 24px !important;

  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  font-family: 'Kaspersky Sans';
  text-align: left;
  color: #ffffff !important;

  background: #00a88e;
  border: 1px solid #f7f7fb;
  border-radius: 4px 4px 0 0;
}

.table-header-2 {
  margin-bottom: -2em !important;
  padding: 16px 24px !important;

  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  font-family: 'Kaspersky Sans';
  text-align: left;
  color: #444444;

  background: #cceee8;
  border: 1px solid #f7f7fb;
  border-radius: 4px 4px 0 0;
}

.about__logo-img {
  height: 100%;
  object-fit: contain;
}

.about__logo:nth-child(3) img {
  width: 82%;
}

.about__logo:nth-child(7) img {
  width: 72%;
}

.subscr-block {
  height: 236px;
  position: relative;
}

/* .subscr-block:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -106px;
  max-width: 608px;
  width: 100%;
  height: 100%;

  background: url(../img/sbsr-bg.jpg) no-repeat;
} */

.subscr-block .container {
  display: flex;
  height: 100%;
}

.subscr-block .subscr-block__col {
  margin: 0 auto;
  padding: 40px 24px;
  width: 100%;
  max-width: 1144px;
  background-color: #f7f7fb;
}
.subscr-block__col span {
  display: block;
  margin-bottom: 12px;
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0em;
  text-align: left;
  color: #1d1d1b;
}
.subscr-block__col p {
  margin-bottom: 32px;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  color: #444444;
}

.subscr-block
  .subscr-block__col
  .modal-link-subscr.button-subscr.button-subscr--aside {
  left: auto;
  top: auto;
  width: fit-content;
  padding: 12px 47.5px;
  cursor: pointer;
  background-color: #00a88e;
  border: none;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subscr-block
  .subscr-block__col
  .modal-link-subscr.button-subscr.button-subscr--aside
  span {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: center;
  color: #fff;
}

.events__item:first-child {
  padding-top: 24px;
}

.events__item:last-of-type .events__item-wrapper {
  border-bottom: none !important;
}

@media (max-width: 1200px) {
  .tabs__nav-item {
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}

/* .subscr-block__col:nth-child(1) {
  background: #fff;
  padding: 80px 150px 42px 0px;
  position: relative;
} */

/* .subscr-block__col:nth-child(1)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 100vw;
  height: 100%;
  transform: translateX(-100%);
  background: #fff;
} */

/* .subscr-block__col:nth-child(1) span {
  font-weight: 600;
  font-size: 32px;
  line-height: 36px;

  color: #1d1d1b;
} */

/* .subscr-block__col:nth-child(2) {
  position: relative;
  width: 100%;

  padding: 82px 64px 0px 61px;
  background: #00a88e;
  mix-blend-mode: multiply;
} */

/* .subscr-block__col:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 100vw;
  height: 100%;
  background: #00a88e;
  z-index: -1;
} */

/* .subscr-block__col:nth-child(2) p {
  max-width: 295px;

  font-weight: 400;
  font-size: 18px;
  line-height: 24px;

  color: #ffffff;
  margin-bottom: 32px;
} */

.modal-link-subscr {
}

.button-subscr {
}

/* .subscr-block .button-subscr--aside {
  left: unset !important;

  border: 1.5px solid #ffffff;
  border-radius: 4px;
  background: transparent;

  font-weight: 400;
  font-size: 18px;
  line-height: 24px;

  text-align: center;

  color: #ffffff;
  padding: 10px 42px;
  width: unset;
  height: unset;
} */

@media (max-width: 1200px) {
  .subscr-block {
    height: 100%;
  }

  .subscr-block .container {
    flex-direction: column;
  }

  .subscr-block__col:nth-child(1) {
    padding-left: 60px;
  }

  .subscr-block:before {
    bottom: -270px;
  }
}

@media (max-width: 1200px) {
  .subscr-block .container {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .subscr-block .button-subscr--aside {
    bottom: 0;
    position: static;
  }
  .subscr-block__col:nth-child(1) {
    padding-left: 24px;
  }
}

.tabs__nav .modal-link-subscr {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  /* height: 46px; */
  /* top: 5px; */
  right: 0;
  left: unset !important;
  position: relative;
  /* padding-top: 9px; */
  width: unset;
  margin-left: auto;
  padding: 14px 23px 16px 22px;
  /* padding: 14px 46px 16px 39px; */
}

.tabs__nav .modal-link-subscr svg {
  /* bottom: 11px; */
}

@media (max-width: 768px) {
  .tabs__nav .modal-link-subscr {
    display: none;
  }
}

.subscr-block__new {
}

.subscr-block__new .container {
  padding: 0 148px;
}

.subscr-block__new .subscr-block__col {
  background: #f7f7fb;
  padding: 40px 24px;
  position: relative;
}

.subscr-block__new .subscr-block__col::before {
  content: none;
}

.subscr-block__new .subscr-block__col h3 {
  margin-bottom: 12px;

  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0em;
  text-align: left;

  color: #1d1d1b;
}

.subscr-block__new .subscr-block__col p {
  margin-bottom: 32px;

  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  color: #444444;
}

.subscr-block__new .subscr-block__col .modal-link-subscr {
  margin-bottom: 0;
  width: 312px;
  height: 48px;

  background: #00a88e;
  border-radius: 4px;
  left: 0;
  bottom: auto;
}

.subscr-block__new .subscr-block__col .modal-link-subscr span {
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: center;

  color: #fff;
}

.articles .hide-slider .button-subscr {
  gap: 0;
  padding: 16px 32px 16px 34px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}
.button-subscr__arrow {
  display: -ms-flexbox;
  display: flex;
  margin-left: 4px;
  transition: transform 250ms;
  -ms-transform: translateX(0);
  transform: translateX(0);
  -ms-flex-align: center;
  align-items: center;
}
.button-subscr:hover .button-subscr__arrow {
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}

.button-subscr--aside {
  margin-bottom: 12px;
  @media (max-width: 1200px) {
    margin-bottom: 0;
  }
}
.box-mobile {
  display: none;
}
.publications-tabs .button-subscr {
  min-width: 320px;
}

.vulnerabilities .button-subscr {
  position: static;
}

.totop__icon {
  background-image: url(../images/icons/up-top.svg);
  width: 28px;
  height: 44px;
}

.new__totop-button {
  position: fixed;
  bottom: 16px;
  right: 16px;
}

.new__aside .button-subscr--aside {
  position: static;
}

@media (max-width: 1200px) {
  .articles .hide-slider .button-subscr {
    gap: 4px;
  }
  .articles .hide-slider .modal-link-subscr.button-subscr svg {
    -ms-transform: translateX(0) scale(1.5);
    transform: translateX(0) scale(1.5);
  }
  .articles .hide-slider .modal-link-subscr.button-subscr:hover svg {
    -ms-transform: translateX(5px) scale(1.5);
    transform: translateX(5px) scale(1.5);
  }
  .box-mobile {
    display: block;
    margin-bottom: 16px;
  }
  .d-mobile-none {
    display: none !important;
  }
  .box-mobile_width_indi {
    max-width: 304px;
  }
}

@media (max-width: 1440px) {
  .publications-tabs .button-subscr {
    margin-right: 8px;
  }
}

@media (max-width: 1200px) {
  .subscr-block__new .container {
    padding: 0 80px;
  }
  .button-subscr {
    position: static;
  }
}

@media (max-width: 768px) {
  .button-subscr {
    bottom: 0;
    position: static;
  }
  .articles .hide-slider .button-incident {
    bottom: 69px;
  }
  .box-mobile_width_indi {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .subscr-block__new .container {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .title_big {
    font-size: 24px;
    line-height: 26px;
    font-weight: 700;
  }

  .title_big .title_accent {
    padding-bottom: 0;
  }
  /* .search-modal__btn-filter {
    display: none;
  }
  .modal__content.modal__content_overflow-none.modal__content_search .page__filters-panel {
    display: none;
  } */

  .dropdown__menu-list {
    position: absolute;
    top: 45px;
    left: 0;
    display: none;
    min-width: 144px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.14);
    transform: translateX(0);
  }
  .statistics-page {
    overflow: hidden;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .title_big {
    font-size: 28px;
    line-height: 32px;
    font-weight: 700;
  }

  .title_big .title_accent {
    padding-bottom: 0;
  }
  /* .search-modal__btn-filter {
    display: none;
  }
  .modal__content.modal__content_overflow-none.modal__content_search .page__filters-panel {
    display: none;
  } */
}

.new__content .arcs-modal__form-button {
  width: 100%;
  padding: 12px 20px;
}

.search-modal__submit {
  cursor: pointer;
}

[dir] input[type='checkbox']:before {
  transform: scale(0);
}

input[type='checkbox']:before {
  content: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath d='M14.31 4.29a.996.996 0 0 0-1.41 0l-6.36 6.36-2.83-2.83A.996.996 0 1 0 2.3 9.23l3.54 3.54c.39.39 1.02.39 1.41 0l7.07-7.07a.996.996 0 0 0 0-1.41z'/%3E%3C/svg%3E");
  will-change: transform;
  width: 16px;
  height: 16px;
  transition: transform 0.2s, -webkit-transform 0.2s;
  display: block;
}

*,
:before,
:after {
  box-sizing: border-box;
}

.b24-form input[type='checkbox']:checked:before {
  transform: scale(1);
}

.b24-form input[type='checkbox']:checked:hover,
.b24-form input[type='checkbox']:checked:focus {
  background-color: #29ccb1;
  border-color: #29ccb1;
}

.b24-form input[type='checkbox']:checked {
  background-color: #00a88e;
  border-color: #00a88e;
}

.b24-form input[type='checkbox']:hover,
.b24-form input[type='checkbox']:focus {
  border-color: #2a3541b3;
}

.b24-form input[type='checkbox'] {
  cursor: pointer;
  background-color: #0000;
  border: 2px solid #22344966;
  border-radius: 4px;
  margin: 0;
}

.b24-form input[type='checkbox'] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-width: 20px;
  width: 20px;
  height: 20px;
  transition: background-color 0.2s, border-color 0.2s;
}

.b24-form input {
  margin: 0;
}

.b24-form-success-msg {
  display: none;
}

.b-service.b-service_bottom {
  padding: 56px 0 0;
}

.header-bottom.box_search_active.header-bottom--show {
  display: none;
}

.page__content table {
  background: #fff;
  width: auto !important;
  table-layout: auto;
}

.page__content .table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

.page__content table * {
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: keep-all !important;
}

.page__content table td p {
  display: block;
}

@media (max-width: 1023px) {
  .main-article__body .main-article__description {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page__content h2 {
    font-size: 21px;
    line-height: 24px;
  }
  .page__content table * {
    font-size: 14px;
  }
  .page__content table td {
    max-width: 100vw !important;
  }
  .main-article__body .main-article__description {
    max-width: 100%;
  }
  body .articles .articles-slider__nav {
    right: auto !important;
  }
  body .main-article__description {
    font-size: 16px;
    line-height: 1.2;
  }
}

#extlink-toast {
  position: absolute;
  display: none;
  z-index: 1111;
}

#extlink-toast.is-open {
  display: block;
}

#extlink-toast .extlink-toast__body {
  width: 407px;
  background: #444444;
  border-radius: 2px;
  padding: 12px 20px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #fff;
}

#extlink-toast .extlink-toast__text {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 20px;
}

#extlink-toast .extlink-toast__actions {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

#extlink-toast .extlink-toast__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  border: none;
  border-radius: 2px;
  padding: 8px 12px;
  background: #00a88e;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
  width: 50%;
  height: 40px;
  transition: all 0.35s, color 0.35s;
}

#extlink-toast .extlink-toast__btn--go {
  background: #f7f7fb;
  color: #444444;
}

#extlink-toast .extlink-toast__btn:not(.extlink-toast__btn--go):hover {
  background: #006d5c;
}

#extlink-toast .extlink-toast__btn--go:hover {
  color: #00a88e;
  background: #deeff0;
}

#extlink-toast .extlink-toast__arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 8px solid #444444;
  left: 50%;
  transform: translateX(-50%);
  bottom: -7px;
}

#extlink-toast.is-below .extlink-toast__arrow {
  border-top: none;
  border-bottom: 8px solid #444444;
  top: -8px;
  bottom: auto;
}

#extlink-toast.is-mobile {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: auto;
  width: 100%;
  z-index: 11111;
  box-sizing: border-box;
}

#extlink-toast.is-mobile .extlink-toast__body {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

#extlink-toast.is-mobile .extlink-toast__arrow {
  display: none;
}
