/* Typography. */

@font-face {
  font-family: 'fontName';
  src: url("../fonts/fontURL.eot");
  src: url("../fonts/fontURL.eot?#iefix")format("embedded-opentype"),
		 url("../fonts/fontURL.woff")format("woff"),
		 url("../fonts/fontURL.ttf")format("truetype");
  font-style: normal;
  font-weight: ;
  font-display: swap;
}

/* Typography. */

/* Root. */

:root {
  /* icon. */
  --icon_size: 24px;
  /* icon. */
  /* font-size. */
  --title_main: 20px;
  --tilte_minor: 18px;
  --title_label: 18px;
  --body: 16px;
  --family: 'Source Sans Pro', sans-serif;
  /* font-size. */
  /* color. */
  --color: var(--black);
  --bg: var(--white);
  --white: #fff;
  --black: #050C1F;
  --yellow: #FCCE10;
  --lime: #B1D629;
  --orange: #D76213;
  /* color. */
  /* btn.*/
  --btn_height: 50px;
  --btn_inner: 24px;
  --btn_color: var(--black);
  --btn_font: 18px;
  --btn_bg: transparent;
  --btn_bd_size: 1px;
  --btn_bd_color: var(--black);
  --btn__lh: 4px;
  /* btn.*/
  /* inner. */
  --bone: 32px;
  --bone_size: max((100vw - var(--bone_w) - var(--scroll)) / 2, var(--bone));
  /* inner. */
}

/* Root. */

/* Null. */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*:not, .wp-block-button__link strong:not(.content strong){
  color: var(--color);
}

html {
  display: block;
}

body {
  margin: 0;
  padding: 0;
  color: var(--color);
  font-size: var(--body);
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  font-family: var(--family);
  background-color: var(--bg);
}

.custom-logo-link > img{
  width: 154px;
}

img,
svg {
  display: block;
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

li {
  list-style-type: none;
}

input,
button,
textarea {
  display: block;
  font-family: var(--family);
  background-color: transparent;
  border: 0 none;
  box-shadow: none;
  appearance: none;
  outline: none;
  resize: none;
}

figcaption{
  font-size: 0.9em !important;
  text-align: center !important;
}

input::placeholder,
textarea::placeholder {
  color: var(--color);
  font-family: var(--family);
}

/* Null. */

/* Global. */

html.hidden {
  overflow: hidden;
}

.bone {
  width: 100%;
  max-width: calc(var(--bone_w) + var(--bone) * 2);
  margin: 0 auto;
  padding: 0 var(--bone);
}

/* Global. */

/* Grid. Flex. */

[class*=__grid] {
  display: grid;
  grid-gap: var(--inner_g);
}

.__grid-twoo {
  grid-template-columns: repeat(var(--grid_2), 1fr);
}

.__grid-three {
  grid-template-columns: repeat(var(--grid_3), 1fr);
}

.__grid-four {
  grid-template-columns: repeat(var(--grid_4), 1fr);
}

[class*=__flex] {
  display: flex;
}

.__flex-align {
  align-items: center;
}

.__flex-start {
  align-items: flex-start;
  justify-content: space-between;
}

.__flex-end {
  align-items: flex-end;
  justify-content: space-between;
}

.__flex-center {
  align-items: center;
  justify-content: space-between;
}

/* Grid. Flex. */

/* Icon. */

[class*=__icon-] {
  position: relative;
}

[class*=__icon-]:before {
  content: '';
  position: absolute;
  top: calc(50% - var(--icon_size) / 2);
  width: var(--icon_size);
  height: var(--icon_size);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.__icon-arrow:before {
  background-image: url("../images/icon/arrow.svg");
}

.__icon-bee:before {
  background-image: url("../images/icon/bee.svg");
}

/* Icon. */

/* Slider. */

/* Слайдер */

.slick-slider {
  /* slide inner. */
  --inner_slider-x: 0px;
  --inner_slider-y: 0px;
  --inner_slider-shadow: 0px;
  /* slide inner. */
  /* slide arrow. */
  --arrow-size: 40px;
  --arrow-icon_size: 18px;
  --arrow-ind: calc(var(--arrow-size) * -1);
  /* slide arrow. */
  /* slide dot. */
  --dot-size: 12px;
  /* slide dot. */
  position: relative;
}

.slick-slider._all {
  overflow: hidden;
  margin: 0 calc(var(--bone_size) * -1);
}

.slick-slider._all .slick-list {
  padding: 0 var(--bone_size);
}

/* Ограничивающая оболочка */

.slick-list {
  overflow: hidden;
  position: relative;
  height: 100%;
  margin: min(var(--inner_slider-y) * -1, var(--inner_slider-shadow) * -1) min(var(--inner_slider-x) / -2, , var(--inner_slider-shadow) * -1);
  padding: 0 max(var(--inner_slider-shadow) - var(--inner_slider-x) / 2, 0);
}

/* Лента слайдов */

.slick-track {
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  height: 100%;
}

/* Слайд */

.slick-slide {
  outline: 0 !important;
  margin: var(--inner_slider-y) calc(var(--inner_slider-x) / 2);
}

/* Точки (pins) */

.slick-dots {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  grid-gap: 12px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
}

/* Стили точки. */

.slick-dots button {
  display: block;
  width: var(--dot-size);
  height: var(--dot-size);
  font-size: 0;
  border: 1px solid green;
  border-radius: 50%;
  cursor: pointer;
  transition: box-shadow .43s;
}

/* Hover на точку. */

.slick-dots button:hover {
  box-shadow: inset 0 0 0 var(--dot-size) green;
}

/* Активная точка. */

.slick-dots .slick-active button {
  box-shadow: inset 0 0 0 2px white, inset 0 0 0 var(--dot-size) green;
}

/* Стрелка. */

.slick-arrow {
  position: absolute;
  top: calc(50% - var(--arrow-size) / 2);
  left: var(--arrow-ind);
  width: var(--arrow-size);
  height: var(--arrow-size);
  font-size: 0;
  background-color: #F2F2F2;
  border: 1px solid var(--black);
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
  transition: transform .43s, opacity .43s;
}

.slick-arrow:before {
  content: '';
  position: absolute;
  top: calc(50% - var(--arrow-icon_size) / 2);
  left: calc(50% - var(--arrow-icon_size) / 2);
  width: var(--arrow-icon_size);
  height: var(--arrow-icon_size);
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='18' viewBox='0 0 11 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.72281 0.894721L10.2798 1.43201L2.80726 8.64015L2.43419 9.00001L2.80726 9.35987L10.2798 16.568L9.72281 17.1053L1.32019 9.00001L9.72281 0.894721Z' fill='%23050C1F' stroke='black'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* Стрелка вправо. */

.slick-arrow.slick-next {
  left: auto;
  right: var(--arrow-ind);
}

.slick-arrow.slick-next:before {
  transform: rotate(200grad);
}

/* Стрелка hover. */

.slick-arrow:not(.slick-disabled):hover {
  transform: scale(1.2);
}

.slick-arrow.slick-disabled {
  opacity: 0.2;
}

/* Slider. */

/* Button. */

[class*=__btn] {
  --color: var(--btn_color);
  display: inline-block;
  position: relative;
  min-width: min(var(--btn_w), 100%);
  height: var(--btn_height);
  padding: 0 var(--btn_inner);
  font-size: var(--btn_font);
  text-align: center;
  line-height: calc(var(--btn_height) - (var(--btn_bd_size) * 2) - var(--btn__lh));
  background-color: var(--btn_bg);
  border: var(--btn_bd_size) solid var(--btn_bd_color);
  border-radius: 30px;
  cursor: pointer;
  transition: background-color .43s, color .43s, border-color .43s;
}

.__btn:hover {
  --color: var(--white);
  background-color: var(--black);
}
/*
[class*=__btn].active {
  --color: var(--white);
  background-color: var(--primary_color);
  border-color: var(--primary_color);
}
 */
[class*=__btn].active {
  --color: var(--btn_color);
  background-color: var(--white);
  font-weight: 600;
  border-color: var(--btn_color);
  border-width: 3px;
}
/*
.__btn.active:hover {
  background-color: var(--primary_hover);
  border-color: var(--primary_hover);
}
*/
.__btn-lime {
  background-color: var(--lime);
  border-color: var(--lime);
}

.__btn-lime:hover {
  background-color: #8DB400;
  border-color: #8DB400;
}

.__btn-orange {
  --color: var(--white);
  background-color: var(--orange);
  border-color: var(--orange);
}

.__btn-orange:hover {
  background-color: #A64605;
  border-color: #A64605;
}

/* Button. */

/* Hover_line. */

[class*=__hover_line] {
  --line_l: 0px;
  --line_r: 0px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  line-height: 1.4;
  outline: 0 none !important;
  white-space: nowrap;
  transition: color .43s;
}

[class*=__hover_line]:after {
  content: '';
  position: absolute;
  left: var(--line_l);
  right: 100%;
  bottom: 0;
  border-bottom: 1px solid var(--color);
  transition: right .23s ease-out, border-color .43s;
}

[class*=__hover_line]:hover:after,
.__hover_line-active:after {
  right: var(--line_r);
}

.__hover_line-active:hover:after {
  right: 100%;
}

/* Hover_line. */

/* Close. */

._close {
  --color: var(--white);
  position: absolute;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  cursor: pointer;
  z-index: 1;
  transform: rotate(50grad);
  transition: opacity .43s;
}

._close:before,
._close:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  margin-top: -1px;
  background-color: var(--color);
  border-radius: 2px;
  transition: background-color .43s;
}

._close:after {
  transform: rotate(100grad);
}

._close:hover {
  --color: var(--primary_hover);
}

/* Close. */

/* Header. */
.topOrangeLine{
  position: inherit;
  left: 0%;
  right: 0%;
  top: 0%;
  bottom: 0%;
  height:2px;
  background:linear-gradient(90deg, #D76213 0%, #FCCE10 100%);
}
.header {
  --line_size: 6px;
  --color: var(--white);
  position: relative;
  padding: 20px 0 18px;
  margin-bottom: 6px;
  background-color: var(--black);
}

.header:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(var(--line_size) * -1);
  height: var(--line_size);
  background-color: var(--primary_color);
}
.content-member{
  text-align: left;
}
.content > p > a,
.content > a,
.content a,
.content-member > p > a,
.content-member > a,
.content-member a{
  color: blue;
  text-decoration: underline;
}
.content > p > a:hover,
.content > a:hover,
.content-member > p > a:hover,
.content-member > a:hover{
  text-decoration: none;
}
.content div a,
.content-member div a{
  text-decoration: auto;
}


.header_nav {
  grid-gap: 28px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate3d(-50%, 0px, 0px);
}

.header_nav_li a {
  display: block;
  position: relative;
  width: 148px;
  margin: 0 auto;
  padding: 8px 0 16px;
  font-size: var(--tilte_minor);
  font-weight: 700;
  text-align: center;
  border-top: 6px solid transparent;
  border-left: 1px solid var(--block_color);
  border-right: 1px solid var(--block_color);
  cursor: pointer;
  z-index: 1;
  color:#fff;
}

.header_nav_li a:before {
  content: '';
  position: absolute;
  top: -6px;
  left: -1px;
  right: -1px;
  height: 6px;
  background-color: var(--block_color);
  z-index: -1;
  transition: height .43s;
}

.header_nav_li a:hover:before,
.header_nav_li.active a:before {
  height: calc(100% + 6px);
}

.header_right {
  grid-gap: 56px;
  color: var(--white);
}

.iconStatus{
  display:inline-flex;
}

.header_level_label {
  font-size: var(--title_label);
}

.header_level_current_wrapper {
  position: relative;

  padding-left: 28px;
}

.header_level_current {
  color: var(--yellow);
  font-size: var(--title_label);
  font-weight: 600;
}

.header_level_current svg {
  /*position: absolute;*/
  top: calc(50% - var(--icon_size) / 2);
  left: 0;

  width: var(--icon_size);
  height: var(--icon_size);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  float: left;
  margin-right: 5px;
}

.header_user {
  position: relative;
}

.header_user_visible {
  position: relative;
  grid-gap: 12px;
  padding-right: 14px;
  cursor: pointer;
}

.header_user_visible:before {
  --icon_size: 10px;
  content: '';
  position: absolute;
  top: calc(50% - var(--icon_size) / 2);
  right: 0;
  width: var(--icon_size);
  height: var(--icon_size);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 6L0 0.736842L0.7 0L5 4.52632L9.3 0L10 0.736842L5 6Z' fill='white'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform .43s;
}

.header_user_visible.active:before {
  transform: rotate(200grad);
}

.header_user_ava {
  --size: 46px;
  width: var(--size);
  height: var(--size);
}

.header_user_ava img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.header_user_nav_name {
  display: none;
  font-size: var(--tilte_minor);
  font-weight: 600;
}

.header_user_nav {
  --icon_size: 10px;
  grid-gap: 4px;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 100%;
  padding: 12px;
  background-color: var(--black);
  z-index: 99999;
  transition: opacity .43s, margin .43s;
}

.header_user_nav ul {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  grid-gap: inherit;
}

.header_user_nav:not(.active) {
  pointer-events: none;
  margin-top: 12px;
  opacity: 0;
}

.header_user_nav_li a {
  display: block;
  padding-right: 12px;
}

.header_user_nav_li:before {
  right: 0;
  transition: right .43s;
}

.header_user_nav_li:hover:before {
  right: -4px;
}

.header_user_nav_close {
  --size: 16px;
  display: none;
  top: 20px;
  right: var(--bone);
}

/* Header. */

/* Bar. */

.bar {
  --color: var(--white);
  display: none;
  z-index: 999999;
}

.bar_burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 44px;
  height: 28px;
  cursor: pointer;
  z-index: 20;
  transition: background .43s, transform .43s;
}

.bar_burger.active:hover {
  transform: scale(1.2);
}

.bar_burger span {
  width: 100%;
  height: 1.5px;
  background-color: var(--color);
  transition: transform .43s, opacity .43s;
}

.bar_burger.active span:nth-child(1) {
  transform: rotate(50grad) translate3d(10px, 10px, 0);
}

.bar_burger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-100%);
}

.bar_burger.active span:nth-child(3) {
  transform: rotate(-50grad) translate3d(8px, -9px, 0);
}

.bar_wrapper {
  overflow: hidden;
  display: none;
  position: fixed;
  top: calc(var(--header) - 1px);
  left: 0;
  right: 0;
  bottom: 0;
  max-height: calc(100vh);
  background-color: var(--black);
  z-index: -1;
}

.bar_net {
  flex-direction: column;
  align-items: stretch;
  overflow-y: scroll;
  width: calc(100% + 40px);
  height: 100%;
  max-height: 100vh;
  margin-right: -40px;
  padding: var(--bone) calc(var(--bone) + 40px - var(--scroll)) calc(var(--bone) * 2) var(--bone);
}

.bar_center {
  flex-grow: 1;
}

.bar_nav {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-gap: 12px;
  /*height: 100%;*/
}

.bar_nav li {
  width: 100%;
}

.bar_nav .header_nav_li {
  width: min(100%, 352px);
  border-bottom: 1px solid var(--block_color);
  background-color: #3F475B;
}

/* Bar. */

/* Footer. */

.footer {
  padding: 20px 0 24px;
  background-color: #F0F0F0;
  display: flex;
  justify-content: space-between;
  /*
  position: fixed;
  bottom: 0;
  z-index: 9;
  width: 100%;
  */
}

.footer .bone {
  padding-left: 328px;
}

.footer_bnt {
  --btn_w: 186px;
}

.footerCopyrights{
  text-align: left;
  margin-left: 30px;
  font-size: 1.1em;
}
.footer_nav{
  display:inline-flex;
}
.menu-footer-menu-container{
  text-align: right;
  margin-right: 20px;
}
.footer_nav > li{
  padding: 0 10px;
  border-right: 1px solid blue;
}
.footer_nav > li:last-child{
  border-right: none;
}
.footer_nav > li > a{
  color:blue;
}
/*
.footer_nav > li > a:not(:last-child)::after{
    content:'|';
    margin-left: 5px;
}
*/
/*
.footer_nav > li > a{
  border-right: 1px solid blue;
  padding-right: 10px;
}
.footer_nav > li > a:last-child{
  border-right: none;
}
*/

/* Footer. */

/* Hexagon. */

.hexagon {
  padding: 0 80px;
  background-color: #F2F2F2;
  position: sticky;
  top: 0px;
  z-index: 2;
}



.hexagon_slider {
  --inner_slider-x: 32px;
  --inner_slider-y: 24px;
  transition: opacity .43s;
}

.hexagon_slider:not(.slick-slider) {
  max-height: 400px;
  opacity: 0;
}

.hexagon_slider:before {
  content: '';
  position: absolute;
  top: 60%;
  left: 10%;
  right: 10%;
  border-bottom: 1px dashed var(--primary_color);
}

.hexagon_slid {
  --hexagon_icon: var(--primary_color);
  --hexagon_fill: var(--white);
  --hexagon_stroke: var(--primary_color);
  flex-direction: column;
  position: relative;
  transition: filter .43s;
}

.task_success {
  --hexagon_icon: #B1D629 !important;
  --hexagon_stroke: #B1D629 !important;
}

.hexagon_slid path,
.hexagon_slid circle {
  transition: fill .43s, stroke .43s;
}

.hexagon_slid:not(.active):hover,
.hexagon_slid._now {
  filter: drop-shadow(0px 7px 19px rgba(0, 0, 0, 0.1));
}

.hexagon_slid:after {
  content: '';
  display: block;
  padding-bottom: 86%;
}

.hexagon_slid.active {
  --hexagon_stroke: var(--lime);
}

.hexagon_slid.active .hexagon_slid_icon circle {
  fill: var(--lime);
  stroke: var(--lime) !important;
}

.hexagon_slid.active .hexagon_slid_icon path {
  fill: var(--white) !important;
}

.hexagon_slid._now {
  --color: var(--white);
  --hexagon_fill: var(--primary_color);
  --hexagon_stroke: var(--black);
  --hexagon_icon: var(--white);
}

.hexagon_slid_border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hexagon_slid_border .mob {
  display: none;
}

.hexagon_slid_content {
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 48px 0 16px;
  text-align: center;
  z-index: 1;
}

.hexagon_slid_content:before {
  content: '';
}

.hexagon_slid_icon {
  --size: 38px;
  position: absolute;
  top: 16px;
  left: calc(50% - var(--size) / 2);
  width: var(--size);
  height: var(--size);
}

.hexagon_slid_name {
  display: flex;
  align-items: center;
  max-width: 132px;
  min-height: 2.2em;
  font-size: var(--tilte_minor);
  font-weight: 600;
  line-height: 1.1;
  transition: color .43s;
  margin: auto;
  /*color: var(--primary_color);*/
  color:#050c1f;
}

.hexagon_slid_view {
  /*margin-top: 8px;*/
}

.hexagon_slid:not(.active, ._now) .hexagon_slid_view {
  --color: var(--primary_color);
}

/* Hexagon. */

/* Content. */

.content_wrapper {
  position: relative;
  z-index: 1;
}

.content{
  margin: 5px 40px;
  background-color: var(--white);
  min-height: 708px;
  /*text-align: justify;*/
}
.site-main {
  margin: 40px;
  background-color: var(--white);
  text-align: justify;
}
.content p, .site-main p, .content-member p{
  margin: 1.5em 0;
}

.content li, .site-main li, .content-member li {
  /*list-style: disc;*/
  list-style: inherit;
  margin-left: 1.4em;
}
/* Content. */

/* Nav. */

.nav {
  position:sticky;
  z-index: 2;
  float: left;
  margin: 30px;
  --inner: 16px;
  top: 250px;
  left: calc(var(--bone) - var(--inner));
  width: 252px;
  padding: 0 var(--inner);
  background-color: #EFF2F6;
  border: 1px solid #EFF2F6;
  box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.1);
}

.nav_icon {
  position: relative;
  height: 6px;
  margin: 0 calc(var(--inner) * -1);
  background-color: var(--primary_color);
}

.nav_icon svg, .nav_icon img {
  /*--size: 46px;*/
  --size: 40px;
  position: absolute;
  top: calc(50% - var(--size) / 2 - 4px);
  left: calc(50% - var(--size) / 2);
  width: var(--size);
  height: var(--size);
}

.nav_icon circle {
  fill: var(--primary_color);
  stroke: var(--white) !important;
}

.nav_icon path {
  fill: var(--white) !important;
}

.nav_name {
  margin-top: 20px;
  font-size: var(--title_main);
  font-weight: 600;
  text-align: center;
  /*white-space: nowrap;*/
}

.nav_cheked {
  --btn_w: 100%;
  margin-top: 8px;
}

.nav_list {
  --btn_w: 100%;
  flex-direction: column;
  grid-gap: 16px;
  margin: 20px calc(var(--inner) * -1) 0;
  padding: 32px var(--inner) 28px;
  background-color: #FBFBFB;
}

.nav_bottom {
  background-color: #F9F9F9;
  padding: 2px var(--inner) 40px;
  margin: 0 calc(var(--inner) * -1);
}

.nav_bottom_title {
  margin-top: 40px;
  margin-bottom: 30px;
  font-size: var(--title_main);
  font-weight: 600;
}

.nav_bottom_articles {
  flex-direction: column;
  grid-gap: 24px;
  transition: color .43s;
}

.nav_bottom_article {
  --color: var(--orange);
  text-decoration: underline;
}

.nav_bottom_article:hover {
  --color: #A64605;
}

.nav_arrows {
  display: none;
}
.left-menu-items .active{
  background-color: white;
}
.takeActionClass{
  color: white;
  background-color: var(--primary_hover);
  border-color: var(--primary_hover);
}

/* Nav. */

@media only screen and (min-width: 1031px) {
  /* Nav. */

  .nav_list {
    display: flex !important;
  }

  .nav_curent {
    display: none !important;
  }
  .footerArticleMenu{
    display:none;
  }
  .content{
    display: flow-root;
    margin-bottom: 130px;
    margin-left: 30%;
    margin-right: 10%;
    /*font-family: 'System Stack';*/
    font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-size:17px;
    line-height: 1.5;
  }
  .site-main{
    display: flow-root;
    margin-bottom: 50px;
    margin-left: 20%;
    margin-right: 20%;
    /*font-family: 'System Stack';*/
    font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-size:17px;
    line-height: 1.5;
  }
  .content h1, .site-main h1, .content-member h1{
    font-size: 42px;
    font-family: inherit;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .content h2, .site-main h2, .content-member h2{
    font-size: 35px;
    font-family: inherit;
    line-height: 1.2;
    margin-top: 35px;
    margin-bottom: 20px;
  }
  .content h3, .site-main h3, .content-member h3{
    font-size: 29px;
    font-family: inherit;
    line-height: 1.2;
    margin-top: 35px;
    margin-bottom: 20px;
  }
  .content h4, .site-main h4, .content-member h4{
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 24px;
    font-family: inherit;
  }
  .content h5, .site-main h5, .content-member h5{
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 20px;
    font-family: inherit;
  }
  .content > p:first-child, .content > h1:first-child{
    margin-top: 30px;
  }

  /* Nav. */
}

@media only screen and (max-width: 1380px) {
  /* Header. */

  .header_nav_li a {
    width: 128px;
  }

  /* Header. */
}

@media only screen and (max-width: 1280px) {
  /* Header. */

  .header_nav_li a {
    width: 108px;
  }

  /* Header. */
}

@media only screen and (max-width: 1200px) {
  /* Header. */

  .header_nav {
    grid-gap: 8px;
  }

  .header_right {
    grid-gap: 20px;
  }

  /* Header. */
}

@media only screen and (max-width: 1100px) {
  /* Header. */

  .header_nav {
    left: 45%;
  }

  /* Header. */

  /* Hexagon. */

  .hexagon_slider {
    --inner_slider-x: 20px;
  }

  /* Hexagon. */
}

@media only screen and (max-width: 1030px) {
  /* Header. */

  .header_nav {
    display: none;
  }

  .header_logo {
    position: absolute;
    left: 50%;
    transform: translate3d(-50%, 0px, 0px);
  }

  .header_nav_li a {
    width: 100%;
  }

  /* Header. */

  /* Bar. */

  .bar {
    display: block;
  }

  /* Bar. */

  /* Footer. */

  .footer {
    display: none;
  }

  /* Footer. */

  /* Hexagon. */

  .hexagon {
    padding: 0 calc(60px - var(--bone));
  }

  /* Hexagon. */

  /* Content. */

  .content_wrapper {
    display: flex;
    flex-direction: column-reverse;
  }

  .content, .site-main {
    min-height: 80vh;
    margin-bottom: 180px;
  }

  .content h2, .site-main h2{
    margin-top: 1.8em;
    margin-bottom: 0.8em;
  }

  .content h3, .content h4, .content h5, .site-main h3, .site-main h4, .site-main h5{
    margin-top: 1.6em;
    margin-bottom: 0.6em;
  }
  .content h5{
    font-size: 17px;
  }

  /* Content. */

  /* Nav. */

  .nav {
	padding: 20px 30px;
    margin: 30px 0 0 0;
    display: inline-table;
    justify-content: space-between;
    /*position: relative;*/
    position: fixed;
    top: auto;
    left: auto;
    right: auto;
    bottom:0;
    width: -webkit-fill-available;
    /*padding: 24px var(--bone);*/
    background-color: #FBFBFB;
  }

  .nav_icon {
    display: none;
  }

  .nav_name {
    display: none;
  }

  .nav_bottom {
    display: none;
  }

  .nav_list {
    /*display: block;*/
    display: none;
    position: relative;
    margin: 8px 0 0;
    padding: 0;
    height: var(--title_label);
    background-color: transparent;
  }

  .nav_list .__btn {
    --color: var(--black) !important;
    position: absolute;
    top: 0;
    left: 0;
    width: auto !important;
    min-width: 0 !important;
    height: auto !important;
    padding: 0 !important;
    font-weight: 600;
    white-space: nowrap;
    line-height: 1;
    border: 0 none !important;
    background-color: transparent !important;
    transition: opacity .43s;
  }

  .nav_list .__btn:not(.active),
  .nav_name {
    pointer-events: none;
    opacity: 0;
  }

  .nav_cheked {
    diplay:none;
    position: absolute;
    top: 50%;
    left: var(--bone);
    margin-top: 0;
    transform: translate3d(0, -50%, 0px);
    transition: opacity .43s;
  }

  .nav_cheked:not(.active) {
    pointer-events: none;
    opacity: 0;
  }

  .nav_arrows {
    display: flex;
    grid-gap: 12px;
    height: 40px;
  }

  .nav_arrows svg {
    width: auto;
    height: 100%;
  }

  /* Nav. */
}

@media only screen and (max-width: 900px) {
  /* Header. */

  .header_user_nav {
    grid-gap: 0;
    position: fixed;
    top: var(--header);
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px var(--bone);
    margin-top: -1px !important;
  }

  .header_level {
    --icon_size: 24px;
    display: flex;
    grid-gap: 12px;
    padding: 0 var(--bone) 12px;
    margin: 0 calc(var(--bone) * -1) 24px;
    border-bottom: 1px solid var(--yellow);
  }

  .header_user_nav_li:not(:last-child):before {
    /*margin-top: -12px;*/

  }

  .header_user_nav .header_user_nav_li:not(:last-child) a {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--white);
  }

  .header_user_nav_li{
    margin: 10px 0px;
  }
  /* Header. */
}

@media only screen and (max-width: 600px) {
  /* Root. */

  :root {
    /* inner. */
    --bone: 16px;
    /* inner. */
  }

  /* Root. */

  /* Header. */

  .header_user_nav_name {
    display: block;
    margin-bottom: 20px;
  }

  .header_user_nav_close {
    display: block;
  }

  .header_logo {
    /*max-width: 120px;*/
  }

  .header_user_visible {
    padding-right: 0;
  }

  .header_user_visible:before {
    display: none;
  }

  .header_user_name {
    display: none;
  }

  /* Header. */
  .footer {
    position: fixed;
    bottom: 0;
    z-index: 9;
    width: 100%;
  }
}

@media only screen and (max-width: 480px) {
  /* Hexagon. */



  /* Hexagon. */
}

@media only screen and (max-width: 0px) {
  /* Block_name. */



  /* Block_name. */
}

/***** footer article menu *****/
/* header */

.footerArticleMenu {
  z-index: 3;
}

.footerArticleMenu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

.footerArticleMenu li a {
  display: block;
  padding: 5px 5px;
  border-right: 1px solid #f4f4f4;
  text-decoration: none;
}

.footerArticleMenu .title {
  display: block;
  float: right;
  text-decoration: none;
}

.footerMenuSpace{
  margin-right: 280px;
}

/* menu */

.footerArticleMenu .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

/* menu icon */

.footerArticleMenu .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: left;
  padding: 12px 10px;
  position: relative;
  user-select: none;
  margin-top: 10px;
}

.footerArticleMenu .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.footerArticleMenu .menu-icon .navicon:before,
.footerArticleMenu .menu-icon .navicon:after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.footerArticleMenu .menu-icon .navicon:before {
  top: 5px;
}

.footerArticleMenu .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.footerArticleMenu .menu-btn {
  display: none;
}

.footerArticleMenu .menu-btn:checked ~ .menu {
  max-height: 240px;
  overflow-y: auto;
}

.footerArticleMenu .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.footerArticleMenu .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.footerArticleMenu .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.footerArticleMenu .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.footerArticleMenu .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}
/***** end footer article menu *****/
@media only screen and (min-width: 1600px) {
  .content{
    /*margin-left: 26%;*/
    margin:auto;
    width: 900px;
  }
}
@media only screen and (min-width: 2100px) {
  .content{
    /*margin-left: 23%;*/
    margin:auto;
  }
}
@media only screen and (min-width: 4000px) {
  .content{
    /*margin-left: 18%;*/
    margin:auto;
  }
}
@media only screen and (min-width: 5000px) {
  .content{
    /*margin-left: 15%;*/
    margin:auto;
  }
}
/*align gutenberg video*/
.wp-block-embed__wrapper{
  text-align: center;
}
/*end align gutenberg video*/
/** hide / show button Mark task **/
.hiddenButton{
  display:none !important;
}

.slick-prev:before{
  left: calc(47% - var(--arrow-icon_size) / 2) !important;
}
.slick-next:before{
  left: calc(53% - var(--arrow-icon_size) / 2) !important;
}

.btn-hidden{
  display:none;
}
.svgImageIconNow > svg{
  fill: white;
}
.nav_icon_over_menu > svg{
  border-radius: 50%;
}

/* 20.01.2023 */

.hexagon_slid:not(.task_success, ._now) .hexagon_slid_icon svg {
  padding: 4px;
  border: 1px solid var(--hexagon_icon);
  border-radius: 50%;
}

.hexagon_slid:not(.task_success, ._now) .hexagon_slid._now .hexagon_slid_icon svg {
  border-color: var(--white);
}

.nav_icon svg, .nav_icon img {
  padding: 8px;
  border: 1px solid #fff;
}

/* 20.01.2023 */





/* 01.03.2023 */

.menu-item {
  position: relative;
}

.menu-item span {
  --size: 24px;

  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 8px;
  right: 4px;

  width: var(--size);
  height: var(--size);
  font-size: 14px;
  text-align: center;
  background-color: red;
  border-radius: 50%;
  z-index: 10;
  color:var(--white);
}

/* 01.03.2023 */

/* Modal. */
.hidden-modal, .hidden-modal-level-down{
  display:none;
}

.modal-active, .modal-level-down-active {
  --modal_w: 320px;
  --modal_inner: 32px;
  --modal_close: 20px;
  --hide: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999999;
  transition: opacity .43s;
}

.modal_viel, .modal-level-down_viel {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background-color: black;
  opacity: 0.8;
  z-index: -1;

  transition: opacity .83s;
}

.modal_wrapper, .modal-level-down_wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  width: min(100%, var(--modal_w));
}

.modal_close, .modal-level-down_close {
  --size: var(--modal_close);
  top: 0;
  right: 20px;
  z-index: 999999;
}

.modal_scroll, .modal-level-down_scroll {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;

  width: 280px;
  height: 244px;
  text-align: center;

  z-index: 1;
}

.modal_scroll svg, .modal-level-down_scroll svg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  pointer-events: none;
  z-index: -1;
}

.modal_icon, .modal-level-down_icon {
  --size: 47px;
  width: var(--size);
  height: var(--size);
  padding: 8px;
  background-color: var(--black);
  border-radius: 50%;
  z-index: 2;
}
.modal_icon svg, .modal-level-down_icon svg {
  --size: 40px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  left: 44%;
  top: 17%;
}
.modal_name, .modal-level-down_name {
  font-size: var(--title_label);
  font-weight: 600;
}

.modal_text, .modal-level-down_text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;

  font-size: 14px;
  max-width: 200px;
}
.modal_text:last-child, .modal-level-down_text:last-child{
  padding: 0 15px;
}

.modal_text span, .modal-level-down_text span{
  font-weight: bold;
}
@media only screen and (max-width: 1030px) {
  .modal_scroll svg, .modal-level-down_scroll svg{
    margin-left: -2px;
    margin-top: 2px;
  }
}
@media only screen and (min-width: 1031px) {
  .modal_icon svg, .modal-level-down_icon svg {
    --size: 40px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    left: 44%;
    top: 50px;
  }
  .modal_scroll, .modal-level-down_scroll {
    position: initial;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 488px;
    text-align: center;
    z-index: 1;
    margin-top: -95px;
  }
  .modal_name, .modal-level-down_name{
    margin: 8px auto;
    font-size: 22px !important;
  }
  .modal_text, .modal-level-down_text {
    font-size: 16px;
    max-width: 220px;
    text-align: center;
  }
  .modal_text span, .modal-level-down_text span{
    font-size: 18px;
  }
}

/* Modal. */

/* Table your documents */
.your-documents-content{
  text-align: center;
  margin: 20px 10px;
}
.your-documents-content > h1{
  margin: 30px 0;
}
.your-documents{
  margin: auto;
  overflow-x: scroll;
}
.your-documents th {
  text-align: center;
  color: #fff;
  background-color: #06A1A9;
}
.your-documents td {
  /*min-width: 250px;*/
  color: #696969;
  border-bottom: 1px solid #06A1A9;
}
.your-documents th, td {
  padding: 10px;
  height: 20px;
}
.your-documents td:first-child {
  min-width: 0;
}
.your-documents td:last-child {
  width: 80px;
  min-width: 0;
  text-align: right;
}
.your-documents tr:nth-child(odd) {
  background-color: #eee;
}
.pdf-download-button a{
  color: blue;
  text-decoration: underline;
}
.deleteFilePDF{
  cursor:pointer;
  font-weight: bold;
  color: red !important;
}
.success-action{
  color: rgb(177, 214, 41);
}
/* End table your documents */

/* message limit content PDF */
.messageLimitPDF{
  padding: 10px;
  color: red !important;
}
.messageLimitPDF a{
  text-decoration: underline !important;
}

/* buttons styles */
.ff-btn-prev{
    float: left;
}
.ff-btn-secondary{
    padding: 10px 20px;
    font-weight: 400;
    text-transform: none;
    font-size: 20px;
    line-height: 1.5;
    cursor: pointer;
}
.wlm3-new-account-form p input,
.wlm3-existing-account-form p input,
#wishlist-member-profile-form p input,
.wlm3-form p input{
  background-color: #868e96;
  border-color: #868e96;
  color: #fff;
  padding: 10px 20px;
  font-weight: 400;
  text-transform: none;
  font-size: 20px;
  line-height: 1.5;
  cursor: pointer;
}
/* end buttons styles */
/* member form input styles */
.wlm3-form-field{
  background-clip: padding-box;
  background-image: none;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  color: #495057;
  display: block;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 0;
  max-width: 100%;
  padding: 6px 12px;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  width: 100%;
}
#wishlist-member-profile-form button{
  color: #868e96;
  padding: 10px 20px;
  font-weight: 400;
  text-transform: none;
  font-size: 20px;
  line-height: 1.5;
  cursor: pointer;
  border: 1px solid #868e96;
}
/* end member form input styles */
/* form checkbox style */
.wlm_inpageloginform #wlm_form_field_rememberme {
  appearance: revert;
  float: left;
  margin-right: 10px;
  margin-top: 6px;
}
/* end form checkbox style*/

/* color of buttons link */
/*.wp-block-button__link*/
.has-white-color strong{
  color:white;
}
/* end color of buttons link */
.menu-personal-details-container a{
  color:var(--white);
}
.hexagon_slid .hexagon_slid_view{
  color:var(--primary_color);
}
._now .hexagon_slid_name, ._now .hexagon_slid_view{
  color:var(--white);
}
.left-menu-items:hover, .left-menu-items:hover a{
	color:var(--white);
}
.left-menu-items.active:hover, .left-menu-items.active:hover a{
	color:#050c1f;
}
.left-menu-items a{
	color:var(--btn_color);
}
.takeActionClass a{
    color: white;
}
.takeActionClass.active{
	color:var(--btn_color);
}
.nav_bottom_article{
	color: #d76213;
}
.nav_bottom_article:hover{
	color: #A64605;
}
.regform-button.go-regform{
	width:75% !important;
	margin: 0 auto
}
.wlm3-fancybox .wlm-regform .regform-header img.regform-logo{
	width:auto;
}
.header{
  background: #DEE3EC;
  box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.12);
}
.hexagon{
  background: #EFF2F6;
}
.header_nav_li a{
  color: #202738;
}
#nav-desktop > .menu-item.active a{
  color: #FFF;
}

.hexagon_slid_icon{
  top: 27px;

}
.nav_list{
  background-color: #FBFBFB;
}
.bar_wrapper{
  background-color: #DEE3EC;
}
.header_user_nav{
  background-color: #DEE3EC;
}
.menu-personal-details-container a{
  color: #050c1f;
}
.bar_nav .header_nav_li{
  background-color: #DEE3EC;
}
@media (max-width: 599px){
  .hexagon_slid_border .mob {
    display: block;
  }

  .hexagon_slid_border .desktop {
    display: none;
  }
  .hexagon_slid:after {
    content: '';
    display: block;
    padding-bottom: 22%;
  }

  .hexagon_slider:before {
    display: none;
  }



  .hexagon_slid_content {
    flex-direction: row;
    justify-content: flex-start;
    /*grid-gap: 16px;*/
    padding: 0 12px 0 20px;
  }

  .hexagon_slid_content:before {
    display: none;
  }

  .hexagon_slid_icon {
    --size: 8.7vw;
    position: static;
    min-width: var(--size);
  }

  .hexagon_slid_name {
    max-width: none;
    font-size: 4.6vw;
    /*text-align: left;*/
  }

  .hexagon_slid_view {
    display: none;
  }
}