/* Scrollbar style Start */
.ps__rail-x,
.ps__rail-y {
  opacity: 1;
}
.ps .ps__rail-x:hover, .ps .ps__rail-y:hover, .ps .ps__rail-x:focus, .ps .ps__rail-y:focus, .ps .ps__rail-x.ps--clicking, .ps .ps__rail-y.ps--clicking {
  background: transparent;
}
.ps__thumb-x {
  height: 6px;
  background: var(--dark-blue);
  border-radius: 100px;
}
.ps__rail-x:hover > .ps__thumb-x, .ps__rail-x:focus > .ps__thumb-x, .ps__rail-x.ps--clicking .ps__thumb-x {
  height: 6px;
  background: var(--dark-blue);
}
.ps__thumb-y {
  width: 6px;
  background: var(--dark-blue);
  border-radius: 100px;
}
.ps__rail-y:hover > .ps__thumb-y, .ps__rail-y:focus > .ps__thumb-y, .ps__rail-y.ps--clicking .ps__thumb-y {
  width: 6px;
  background: var(--dark-blue);
}
.ps:hover > .ps__rail-x, .ps:hover > .ps__rail-y, .ps--focus > .ps__rail-x, .ps--focus > .ps__rail-y, .ps--scrolling-x > .ps__rail-x, .ps--scrolling-y > .ps__rail-y {
  opacity: 1;
}
/* Scrollbar style End */
.single h1,
.single .h1 {
  font-size: 32px;
  font-weight: 500;
}
.post-content {
  color: #3F3F3F;
}
.post-content strong {
  color: var(--dark-blue);
}

.fire-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}
.post-content {
  padding-bottom: 0px;
}

.site-error {
  position: relative;
}

.site-error__text {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #858594;
  font-weight: 300;
  cursor: pointer;
  transition: all .4s ease-in-out;
}
.site-error__text:hover {
  color: var(--dark-blue);
}

.site-error .icon {
  font-size: 0;
  line-height: normal;
}

.site-error__tooltip {
  position: absolute;
  color: #3F3F3F;
  padding: 10px;
  background: #FFFFFF;
  border-radius: 8px;
  width: 227px;
  top: calc(100% + 4px);
  left: 0;
  cursor: default;
  opacity: 0;
  transform: scale(0);
  transition: all .4s ease-in-out;
  transform-origin: 0 0;
  font-size: 12px;
  color: #858594;
  font-weight: 300;
  padding-right: 20px;
  z-index: 3;
}
.site-error__close {
  position: absolute;
  font-size: 0;
  line-height: normal;
  top: 10px;
  right: 6px;
  cursor: pointer;
}
.site-error.active .site-error__tooltip {
  opacity: 1;
  transform: scale(1);
}
.post-author a {
  color: #3F3F3F;
}
.post-author a:hover {
  color: var(--dark-blue);
}
.post-content figure img, 
.post-content iframe:not(.astroiframe) {
  border-radius: 8px;
}

.head-img {
  /* aspect-ratio: 16 / 9; */
  overflow: hidden;
  border-radius: 8px;
}
.head-img img {
  /* aspect-ratio: 16 / 9; */
  width: 100%;
}

@media (max-width: 1279px) {
  .breadcrumbs li a {
    white-space: nowrap;
  }
  .single h1,
  .single .h1 {
    font-size: 22px;
  }
  .post-content {
    gap: 20px;
  }
  .single-bottom {
    background: #E8E8F5;
  }
  .post-time {
    display: flex !important;
  }
  .post-info {
    gap: 8px;
  }
}

/* Tag info Start */
.tag-info {
  border-radius: 8px;
  box-shadow: 0 2px 2px rgba(0,0,0, 5%);
}
.tag-info__head {
  background: var(--blue);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #F1F1F1;
  font-weight: 500;
  border-radius: 8px 8px 0 0;
}
.tag-info__content {
  padding: 16px;
  background: #FFFFFF;
  border: 1px solid rgba(#C8C8C8, 45%);
  border-top: 0;
  border-radius: 0 0 8px 8px;
}
.tag-info__title {
  color: var(--dark-blue);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}
.tag-info__text {
  color: #3F3F3F;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 140%;
}
.tag-info__more {
  text-align: right;
}
.tag-info__more a {
  color: var(--blue);
  font-size: 14px;
  font-weight: 300;
  text-decoration: underline;
  transition: all .4s ease-in-out;
}
.tag-info__more a:hover {
  text-decoration: none;
  color: var(--dark-blue)
}
/* Tag info End */

/* Tag block Start */
.tags-block__title {
  font-size: 20px;
  color: var(--dark-blue);
  font-weight: 700;
  border-bottom: 1px solid #C5C5C5;
  padding-bottom: 12px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tags-block__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tags-block__list .tag {
  font-size: 12px;
  color: #3F3F3F;
  font-weight: 400;
  padding: 6px 8px;
  background: #FFFFFF;
  border-radius: 4px;
  transition: all .4s ease-in-out;
}
.tags-block__list .tag:hover {
  background: var(--hover);
  color: #F1F1F1;
}
@media (max-width: 1279px) {
  .tags-block__title {
    font-size: 18px;
  }
}
/* Tag block End */

/* Social bottom Start */
.social-bottom {
  display: flex;
  gap: 12px;
}
.social-bottom a {
  flex-grow: 1;
  flex-basis: 0;
  background: rgba(248,166,88,45%);
  padding: 12px 30px;
  display: flex;
  align-items: center;
  color: var(--dark-blue);
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  justify-content: center;
  transition: all .4s ease-in-out;
}
.social-bottom a:hover {
  background: rgba(255,138,27,45%);
}
.social-bottom a.gn {
  background: rgba(71,136,244,40%);
}
.social-bottom a.gn:hover {
  background: rgba(15,105,255,40%);
}
.social-bottom a svg {
  margin: 0 8px 0 12px;
}
@media (max-width: 1279px) {
  .social-bottom {
    flex-direction: column;
  }
  .social-bottom a {
    font-size: 12px;
  }
}
/* Social bottom End */

.custom-grid {
  display: grid;
  grid-template-columns: calc(100% - 390px) 360px;
  gap: 32px;
  column-gap: 30px;
  grid-template-areas: 
  "breadcrumbs breadcrumbs"
  "post info"
  "post aside";
  /* grid-template-areas: 
  "top info"
  "top aside"
  "middle aside"
  "bottom aside"; */
  grid-template-rows: max-content max-content 1fr;
  /* grid-template-rows: repeat(3, max-content) 1fr; */
  padding-top: 32px;
}

.custom-grid:not(:has(.info-top)) {
   grid-template-areas: 
  "breadcrumbs breadcrumbs"
  "post aside";
  grid-template-rows: max-content 1fr;
}

.custom-grid .post-top {
  grid-area: breadcrumbs;
  padding: 0;
}
.custom-grid .info-top {
  grid-area: info;
}
.custom-grid .info-top .item {
  border-radius: 12px;
}
.custom-grid .article-post {
  grid-area: post;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.custom-grid .article-top {
  grid-area: top;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}
.custom-grid .article-middle {
  grid-area: middle;
  width: 100%;
}
.custom-grid .article-bottom {
  grid-area: bottom;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.custom-grid .post-aside {
  grid-area: aside;
  width: 100%;
  padding-top: 0;
}
.custom-grid .post-aside > *:empty {
  display: none;
}
.custom-grid .last-news {
  grid-area: last;
}
.custom-grid .main-week {
  grid-area: main;
}
.custom-grid .support {
  grid-area: support;
}
.custom-grid .poll-block {
  grid-area: poll;
}

@media (max-width: 1279px) {
  .custom-grid {
    padding-top: 0;
    gap: 20px;
  }
  .custom-grid {
    display: flex;
  }
  .custom-grid .post-aside {
    display: none;
  }
  .custom-grid .article-post {
    width: 100%;
  }
  .custom-grid:not(:has(.info-top)) .post-top {
    padding-top: 15px;
  }
  .custom-grid .info-top {
    margin-right: -15px;
    margin-left: -15px;
    padding: 15px;
    background: #E8E8F5;
    width: calc(100% + 30px);
  }
  .custom-grid .info-top img {
    width: 100%;
  }
  .custom-grid .article-top {
    gap: 16px;
  }
  .custom-grid .main-week {
    min-width: 0;
    width: 100%;
  }
}

/* Last news Start */
.last-news .h3 {
  display: block;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #C5C5C5;
  font-size: 20px;
}
.last-news__tabs {
  display: flex;
  margin-bottom: 16px;
  gap: 8px;
}
.last-news__tabs .tab {
  flex-grow: 1;
  flex-basis: 0;
  border-radius: 8px;
  background: #9898B1;
  font-size: 16px;
  color: #F1F1F1;
  cursor: pointer;
  padding: 8px 20px;
  text-align: center;
  transition: all .4s ease-in-out;
}
.last-news__tabs .tab:hover:not(.active) {
  background: #3F3F3F;
}
.last-news__tabs .tab.active {
  background: var(--blue);
}
.last-news__item {
  max-height: 448px;
  overflow-y: hidden;
  position: relative;
  padding-right: 17px;
  touch-action: manipulation;
  overscroll-behavior: contain;
}
.last-news__item .swiper-wrapper {
  transition-timing-function: linear;
}
.last-news .item {
  margin-bottom: 20px;
}
.last-news .item .date {
  font-size: 10px;
  color: #595965;
  font-weight: 300;
  margin-bottom: 7px;
  text-transform: lowercase;
}
.last-news .item a {
  font-size: 14px;
  font-weight: 500;
  color: #0B0B2F;
  display: block;
}
.last-news .item a:hover {
  text-decoration: underline;
}
.last-news__block {
  display: none;
  padding: 32px 0;
}
.last-news__position {
  /* margin-bottom: 32px; */
}
@media (max-width: 1279px) {
  .last-news__block {
    display: block;
  }
}
@media (min-width: 1279px) {
  .last-news {
    display: none;
  }
  .last-news__position .last-news {
    display: block;
  }
}
/* Last news End */

.support {
  display: block;
  text-align: center;
  border-radius: 8px;
  background: var(--dark-blue);
  color: #F0F0F6;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 20px;
}

/* Main week Start */
.main-week .h3 {
  display: block;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #C5C5C5;
  font-size: 20px;
}
.main-week__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.main-week__list .swiper-wrapper {
  flex-direction: column;
  gap: 16px;
}
.main-week .item {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 1px 1px rgba(0,0,0,5%);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.main-week .item .img {
  flex-shrink: 0;
  width: 107px;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.main-week .item .name {
  color: #3F3F3F;
  font-size: 14px;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
  transition: all .4s ease-in-out;
}
.main-week .item:hover .name {
  color: var(--dark-blue);
  text-decoration: underline;
}
@media (max-width: 1279px) {
  .main-week .h3 {
    font-size: 18px;
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  .main-week__list {
    flex-direction: row;
    gap: 6px;
    margin-right: -15px;
    margin-left: -15px;
    padding: 0 15px;
    overflow-x: auto;
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
    width: auto;
  }
  .main-week__list::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
  }
  .main-week .item {
    width: 235px;
    gap: 8px;
  }
  .main-week .item .img {
    width: 90px;
  }
  .main-week .item .name {
    font-size: 12px;
    line-height: 140%;
  }
  .main-week__list .swiper-wrapper {
    flex-direction: row;
    gap: 0;
  }
  .main-week__list .swiper-slide {
    width: 235px;
  }
}
@media (min-width: 1279px) {
  .main-week {
    display: none;
  }
  .main-week__position .main-week {
    display: block;
  }
}
/* Main week End */

.single .ads-banner-1 {
  background: var(--dark-blue);
}
.single .ads-banner-1 .h4 {
  font-size: 20px;
}
.single .ads-banner-1 .huge-g {
  left: -18px;
  bottom: -26px;
  -webkit-text-stroke: 1px #9499AC;
  top: auto;
}
.single .ads-banner-1 p {
  font-weight: 300;
}
.single .ads-banner-1:before {
  right: -120px;
  top: -4px;
}

/* Useful Start */
.useful-block {
  background: #E8E8F5;
  padding: 64px 0;
}
.useful-block .h2 {
  font-size: 28px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #C5C5C5;
}
.useful-block .h2 span {
  color: var(--blue);
}
.useful-block__scrollbar {
  overflow: hidden;
  position: relative;
}
.useful-block__list {
  padding-bottom: 17px;
}
.useful-block__list .swiper-slide {
  width: 360px;
}
.useful-block__list .item {
  background: #F4F4F9;
  border-radius: 8px;
  width: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #000000;
  text-align: center;
  flex-shrink: 0;
  aspect-ratio: 16 / 9;
}
@media (max-width: 1279px) {
  .useful-block {
    padding: 32px 0;
  }
  .useful-block .h2 {
    font-size: 20px;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
  .useful-block__scrollbar {
    margin-right: -15px;
    margin-left: -15px;
  }
  .useful-block__scrollbar .ps__rail-x {
    margin-right: 15px;
    margin-left: 15px;
  }
  .useful-block__list {
    padding-right: 30px;
  }
  .useful-block__list .item {
    width: 248px;
    font-size: 10px;
  }
  .useful-block__list .swiper-wrapper {
    padding: 0 15px;
    box-sizing: border-box;
  }
  .useful-block__list .swiper-slide {
    width: 248px;
  }
}
/* Useful End */

/* Recent Start */
.recent-posts {
  padding: 64px 0;
}
.recent-posts .h2 { 
  font-size: 28px;
}
.recent-posts__top {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #C5C5C5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.recent-posts__nav {
  display: flex;
  align-items: center;
  gap: 5px;
}
.recent-posts__button {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray);
  color: var(--dark-blue);
  transition: all .4s ease;
}
.recent-posts__button.swiper-button-disabled {
  opacity: 0.6;
  pointer-events: none;
}
.recent-posts__button:hover {
  background: var(--dark-blue);
  color: var(--white);
}
.recent-posts__scrollbar {
  overflow-x: hidden;
  position: relative;
}
.recent-posts__list {
  display: flex;
  padding-bottom: 17px;
}
.recent-posts__list .swiper-slide {
  width: 207px;
}
.recent-posts__list .item {
  width: 207px;
  height: 247px;
  flex-shrink: 0;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.recent-posts__list .item a {
  text-decoration: none;
}
.recent-posts__list .item img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  height: 100%;
  object-fit: cover;
}
.recent-posts__list .item:before {
  content: '';
  display: block;
  background: linear-gradient(to top, rgba(39,39,39,65%) 0%, rgba(39,39,39,0%) 100%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.recent-posts__list .item .info {
  position: absolute;
  left: 12px;
  bottom: 12px;
  right: 12px;
  z-index: 3;
}
.recent-posts__list .item .info .h3 {
  font-size: 14px;
  color: #F1F1F1;
  margin-bottom: 12px;
  line-height: 130%;
  display: block;
}
.recent-posts__list .item .info .h3:hover {
  text-decoration: underline;
}
.recent-posts__list .item .info .category,
.recent-posts__list .item .info .category a {
  font-size: 10px;
  color: #F1F1F1;
  text-transform: uppercase;
}
.recent-posts__list .item .info .category a:hover {
  text-decoration: underline;
}
@media (max-width: 1279px) {
  .recent-posts .h2 {
    font-size: 20px;
  }
  .recent-posts__top {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
  .recent-posts {
    padding: 32px 0;
  }
  .recent-posts__button {
    background: var(--dark-blue);
    color: var(--white);
  }
  .recent-posts__button:hover {
    background: var(--white);
    color: var(--dark-blue);
  }
  .recent-posts__list {
    gap: 12px;
    padding-right: 30px;
  }
  .recent-posts__list .swiper-wrapper {
    padding: 0 15px;
    box-sizing: border-box;
  }
  .recent-posts__scrollbar {
    margin-right: -15px;
    margin-left: -15px;
  }
  .recent-posts__scrollbar .ps__rail-x {
    margin-right: 15px;
    margin-left: 15px;
  }
}
/* Recent End */

/* Popular Start */
.popular-block {
  padding-bottom: 64px;
}
.popular-block .h2 {
  font-size: 28px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #C5C5C5;
}
.popular-block__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.popular-block__list .item .img {
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 12px;
  display: block;
  aspect-ratio: 16 / 9;
}
.popular-block__list .item a {
  color: var(--dark-blue);
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
}
.popular-block__list .item:hover a {
  text-decoration: underline;
}
@media (max-width: 1279px) {
  .popular-block {
    padding: 32px 0;
  }
  .popular-block .h2  {
    font-size: 20px;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
  .popular-block__list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 12px;
    row-gap: 16px;
  }
  .popular-block__list .item a {
    font-size: 14px;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;
  }
}
/* Popular End */

/* Poll Start */
.poll-block__head {
  background: var(--dark-blue);
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #F1F1F1;
  padding: 12px;
}
.poll-block__content {
  background: #FFFFFF;
  border-radius: 0 0 8px 8px;
  padding: 12px;
}
.poll-block__question {
  font-size: 16px;
  color: #000000;
  margin-bottom: 12px;
  margin-top: 8px;
  margin-left: 8px;
  font-weight: 400;
  line-height: 1.3;
}
.poll-block__input {
  display: none;
}
.poll-block__input + label {
  font-size: 16px; /* 14 */
  font-weight: 300;
  color: #3F3F3F;
  padding-left: 18px;
  display: block;
  margin-bottom: 10px; /* 8 */
  position: relative;
  margin-left: 9px;
}
.poll-block__input + label::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #000000;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 0;
  transition: all .4s ease-in-out;
}
.poll-block__input + label::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 2px;
  opacity: 0;
  pointer-events: none;
  transition: all .4s ease-in-out;
}
.poll-block__input:checked + label {
  color: #000000;
}
.poll-block__input:checked + label:before {
  border-color: var(--blue);
}
.poll-block__input:checked + label:after {
  opacity: 1;
}
.poll-block__count {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  font-size: 10px;
  color: #5FB100;
  gap: 4px;
}
.poll-block__count svg path {
  stroke: #5FB100;
}
.poll-block .btn {
  margin-top: 8px;
}
.poll-block__form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.poll-block__variant {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  margin-bottom: 15px;
}
.poll-block__bottom {
  margin-top: auto;
}
.loading-results {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #fff;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 12px;
  font-weight: 500;
  gap: 16px;
  flex-direction: column;
  opacity: 0;
  transition: all .4s ease-in-out;
  pointer-events: none;
}
.poll-loader {
  --d:10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  color: var(--blue);
  box-shadow: 
    calc(1*var(--d))      calc(0*var(--d))     0 0,
    calc(0.707*var(--d))  calc(0.707*var(--d)) 0 0.3px,
    calc(0*var(--d))      calc(1*var(--d))     0 0.5px,
    calc(-0.707*var(--d)) calc(0.707*var(--d)) 0 0.7px,
    calc(-1*var(--d))     calc(0*var(--d))     0 1px,
    calc(-0.707*var(--d)) calc(-0.707*var(--d))0 1.2px,
    calc(0*var(--d))      calc(-1*var(--d))    0 1.5px;
  animation: l27 1s infinite steps(8);
}
@keyframes l27 {
  100% {transform: rotate(1turn)}
}
.poll-block__results {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  margin-left: 24px;
}
.poll-block__results .item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.poll-block__results .poll-label {
  font-size: 14px;
  font-weight: 300;
  color: #3F3F3F;
}
.poll-block__results .percent-info {
  display: flex;
  gap: 6px;
  align-items: center;
}
.poll-block__results .bar {
  height: 8px;
  border-radius: 8px;
  background: #EFF0F3;
  flex: auto;
}
.poll-block__results .bar span {
  display: block;
  border-radius: 8px;
  background: #3F3F3F;
  height: 100%;
}
.poll-block__results .percent {
  font-size: 14px;
  color: #3F3F3F;
  font-weight: 300;
  width: 41px;
  text-align: right;
}
.poll-block__results .item:has(.user-vote-badge) .poll-label {
  color: #000000;
}
.poll-block__results .item:has(.user-vote-badge) .poll-label span {
  color: #5FB100;
  font-size: 12px;
  font-weight: 400;
}
.poll-block__results .item:has(.user-vote-badge) .bar span {
  background: #5FB100;
}
.poll-block__position:empty {
  display: none;
}
@media (min-width: 1279px) {
  .poll-block {
    display: none;
  }
  .poll-block__position .poll-block {
    display: block;
  }
}
/* Poll End */

/* List start */
ul:not(.breadcrumbs):not(.menu):not(.sub-menu) > li:before {
  width: 6px;
  height: 6px;
}
ul:not(.breadcrumbs):not(.menu):not(.sub-menu) > li {
  font-weight: 300;
}
ul:not(.breadcrumbs):not(.menu):not(.sub-menu), 
ol:not(.breadcrumbs):not(.menu):not(.sub-menu) {
  padding-left: 30px;
}
ol:not(.breadcrumbs):not(.menu):not(.sub-menu) > li {
  font-size: 16px;
  font-weight: 300;
}
@media (max-width: 1279px) {
  ol:not(.breadcrumbs):not(.menu):not(.sub-menu) > li {
    font-size: 14px;
  }
}
/* List End */


.post-navigation {
  padding: 0 !important;
}

.post-navigation a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 300 !important;
}
.post-navigation .navigation-content {
  padding: 0 ;
  max-height: 0;
  overflow: hidden;
  transition: all .4s ease;
}
.post-navigation .navigation-head {
  margin-bottom: 0 !important;
  position: relative;
  cursor: pointer;
  background: #DADAEC;
  color: var(--dark-blue);
  padding: 16px 20px;
  font-size: 20px;
  line-height: normal;
}
.post-navigation .navigation-head:after {
  content: '';
  display: block;
  background: url(../../img/icon__toc.svg) no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%) rotate(180deg);
  transition: all .4s ease;
}
.post-navigation .navigation-inner {
  padding: 0 38px 24px;
  margin-top: 0;
}
.post-navigation .navigation-head.active:after {
  transform: translateY(-50%) rotate(0deg);
}
.post-navigation .navigation-content.active {
  max-height: 10000px;
}
.post-navigation .navigation-inner {
  margin-top: 12px;
}
@media (max-width: 1279px) {
  .post-navigation {
    padding: 0;
  }
  .post-navigation .navigation-inner {
    padding: 0 12px 12px;
    margin-top: 0;
  }
  .post-navigation .navigation-head {
    background: #DADAEC;
    color: var(--dark-blue);
    font-size: 14px;
    padding: 12px;
  }
  .post-navigation .navigation-head:after {
    right: 12px;
  }
}

.row-img .wp-block-gallery {
  display: flex;
  justify-content: center;
  gap: 20px !important;
}

.row-img .wp-block-gallery figure {
  flex-shrink: unset;
}

.expert-question {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.expert-question .text {
  font-size: 18px;
  font-weight: 400;
  color: var(--dark-blue);
  display: flex;
  align-items: center;
  gap: 8px;
}

.expert-question .text .icon {
  color: var(--blue);
  font-size: 0;
  line-height: normal;
}

.expert-question .btn {
  border-radius: 12px;
  background: var(--dark-blue);
  padding: 10px 20px;
  font-size: 12px;
  color: #F0F0F6 !important;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
}

.expert-question .btn:hover {
  background: var(--blue);
}