@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
:root {
  --orange: #FE6E04;
  --dark: #1E1E1E;
  --gray: #F4F5F5;
  --white: #FFFFFF;
  --yellow: #FFB800;
  --violet: #6C30CD;
  --turq: #00D1D2;
  --font: "Inter", sans-serif;
}

html {
  font-size: 16px;
  font-family: var(--font);
}

body {
  background-color: #fff;
  color: var(--dark);
  line-height: 1.5;
}

.btn {
  background: var(--orange);
  color: var(--white);
  border: 1px solid var(--orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 10px 25px;
  font-weight: 600;
}
.btn i {
  font-size: 24px;
}
.btn:hover {
  background: #fff0;
}

.section-gray {
  background: var(--gray);
}

img {
  max-width: 100%;
}

input, textarea {
  background: var(--white);
  padding: 20px;
  color: var(--dark);
  font-size: 14px;
  border: none;
  resize: none;
  width: 100%;
}

button {
  border: none;
  padding: 0;
  background: none;
}
button:hover {
  color: var(--orange);
}

::-webkit-input-placeholder {
  opacity: 1;
}

::-moz-placeholder {
  opacity: 1;
}

:-ms-input-placeholder {
  opacity: 1;
}

::-ms-input-placeholder {
  opacity: 1;
}

::placeholder {
  opacity: 1;
}

.breadcrumbs {
  font-size: 12px;
  padding: 21px 0;
  border-bottom: 1px solid var(--dark);
}
.breadcrumbs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
.breadcrumbs li:last-child span {
  opacity: 0.4;
}

.head-single {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px;
  border: 1px solid var(--dark);
  border-top: none;
  margin-bottom: 60px;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
}
.pagination a {
  width: 50px;
  aspect-ratio: 1;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  font-size: 14px;
  background: var(--gray);
  border: 1px solid var(--gray);
}
.pagination a.active {
  color: var(--orange);
  background: rgba(254, 110, 4, 0.1);
  border: 1px solid rgba(254, 110, 4, 0.1);
}
.pagination .link-arrow {
  background: var(--orange);
  color: var(--white);
  border: 1px solid var(--orange);
}
.pagination .link-arrow:hover {
  background: var(--white);
  color: var(--orange);
}
.pagination .link-arrow::after {
  content: "\e90a";
  font-family: "laykos";
  font-size: 24px;
}
.pagination .link-arrow.link-prev::after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.article-content__inner {
  font-size: 16px;
}
.article-content__inner > * {
  margin-bottom: 20px;
}
.article-content__inner > *:last-child {
  margin-bottom: 0;
}
.article-content__inner strong {
  font-weight: bold;
}
.article-content__inner h4 {
  font-size: 18px;
  font-weight: bold;
}

[data-modal] {
  cursor: pointer;
}

.modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  background: rgba(30, 30, 30, 0.8);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.modal-wrapper.open {
  opacity: 1;
  visibility: visible;
}
.modal-wrapper.open .modal-inner {
  -webkit-transform: translateY(0px) scale(1);
      -ms-transform: translateY(0px) scale(1);
          transform: translateY(0px) scale(1);
}
.modal-wrapper .modal-inner {
  width: 100%;
  background: var(--gray);
  padding: 60px;
  position: relative;
  -webkit-transform: translateY(-100px) scale(0.99);
      -ms-transform: translateY(-100px) scale(0.99);
          transform: translateY(-100px) scale(0.99);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.modal-wrapper .modal-title {
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 4px;
  margin-bottom: 40px;
}
.modal-wrapper .modal-title span {
  color: var(--orange);
}
.modal-wrapper .close {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
  background: var(--orange);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid var(--orange);
}
.modal-wrapper .close path {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.modal-wrapper .close:hover {
  background: var(--white);
}
.modal-wrapper .close:hover path {
  stroke: var(--orange);
}

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  gap: 20px;
}
.form-row label {
  width: calc(33.3333333333% - 13.3333333333px);
}
.form-row .full {
  width: 100%;
}
.form-row .btn {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
}
.form-row textarea {
  height: 120px;
}

.tags-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
.tags-row a {
  padding: 0 10px;
  background: rgba(30, 30, 30, 0.05);
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 10px;
  font-weight: 600;
}

.title-border {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(30, 30, 30, 0.1);
}

.article-content__post {
  padding-top: 40px;
  font-size: 16px;
}
.article-content__post > * {
  margin-bottom: 20px;
}
.article-content__post > *:last-child {
  margin-bottom: 0;
}
.article-content__post h2 {
  font-size: 28px;
}
.article-content__post h3 {
  font-size: 18px;
}
.article-content__post h1, .article-content__post h2, .article-content__post h3, .article-content__post h4, .article-content__post h5, .article-content__post h5 {
  font-weight: 700;
}
.article-content__post blockquote {
  border: 1px solid var(--orange);
  padding: 20px;
}
.article-content__post blockquote.blockquote-two {
  background: rgba(254, 110, 4, 0.1);
  border: none;
}
.article-content__post strong {
  font-weight: bold;
}
.article-content__post .post-article-single {
  margin: 20px 0;
}
.article-content__post ul, .article-content__post ol {
  list-style: disc;
  padding-left: 20px;
}
.article-content__post ol {
  list-style: num;
}

.post-article-single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  background: var(--dark);
  color: var(--white);
}
.post-article-single__content {
  width: 60%;
  padding: 40px;
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}
.post-article-single__title {
  font-size: 20px;
  font-weight: 700;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.post-article-single__desc {
  opacity: 0.4;
  font-size: 14px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.post-article-single__link {
  text-decoration: underline;
  font-size: 14px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.post-article-single__link::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("../img/icons/link.svg");
  display: block;
}
.post-article-single__image {
  width: 40%;
}
.post-article-single__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.post-article-single:hover .post-article-single__title {
  color: var(--orange);
}

.rate-article {
  padding: 40px;
  background: var(--gray);
}
.rate-article__title {
  letter-spacing: 4px;
  font-size: 28px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}
.rate-article .rate-stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  font-size: 40px;
}
.rate-article .rate-stars i {
  color: var(--dark);
  opacity: 0.1;
  cursor: pointer;
}
.rate-article .rate-stars i.icon-active {
  color: var(--yellow);
  opacity: 1;
}

.check-list {
  margin-top: 20px;
}
.check-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.check-list li:last-child {
  margin-bottom: 0;
}
.check-list li::before {
  content: "";
  width: 24px;
  min-width: 24px;
  height: 26px;
  background-image: url("../img/icons/check.svg");
  display: inline-block;
}

.quote-big {
  padding: 40px;
  background: var(--gray);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  margin-top: 60px;
}
.quote-big__image {
  width: 25%;
  text-align: center;
}
.quote-big__image img {
  max-width: 200px;
  width: 100%;
  border-radius: 50%;
}
.quote-big__content {
  width: 75%;
}
.quote-big__text {
  font-size: 24px;
  font-style: italic;
  font-weight: 200;
}
.quote-big__bottom {
  text-align: right;
  font-size: 14px;
  color: rgba(30, 30, 30, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 20px;
}
.quote-big__bottom::after {
  content: "";
  width: 50px;
  height: 54px;
  background-image: url("../img/icons/quote.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.quote-big__bottom span {
  display: block;
  font-size: 18px;
  color: var(--dark);
  font-weight: 600;
}
.quote-big .author-text {
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid rgba(30, 30, 30, 0.1);
}

.section-wrapper {
  border-top: 1px solid var(--dark);
  padding-bottom: 120px;
}

.desc-block {
  text-align: center;
}

.btn-icon:hover {
  gap: 15px;
}

.news-item .link-more {
  -webkit-transform: translateX(0px);
      -ms-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.news-item:hover .link-more {
  -webkit-transform: translateX(10px);
      -ms-transform: translateX(10px);
          transform: translateX(10px);
  color: var(--orange);
}

.news-item-old:first-child, .news-item-old:nth-child(4), .news-item-old:nth-child(7), .news-item-old:nth-child(10) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.news-item-old:nth-child(2), .news-item-old:nth-child(5), .news-item-old:nth-child(8), .news-item-old:nth-child(11) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.news-item-old:nth-child(3), .news-item-old:nth-child(6), .news-item-old:nth-child(9), .news-item-old:nth-child(12) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.category-list__item:nth-child(1), .category-list__item:nth-child(3), .category-list__item:nth-child(5), .category-list__item:nth-child(7) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.category-list__item:nth-child(2), .category-list__item:nth-child(4), .category-list__item:nth-child(6), .category-list__item:nth-child(8) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.authors-list-old .authors-item:nth-child(1), .authors-list-old .authors-item:nth-child(5), .authors-list-old .authors-item:nth-child(9) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.authors-list-old .authors-item:nth-child(2), .authors-list-old .authors-item:nth-child(6), .authors-list-old .authors-item:nth-child(10) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.authors-list-old .authors-item:nth-child(3), .authors-list-old .authors-item:nth-child(7), .authors-list-old .authors-item:nth-child(11) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.authors-list-old .authors-item:nth-child(4), .authors-list-old .authors-item:nth-child(8), .authors-list-old .authors-item:nth-child(12) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.section-wrapper {
  overflow: hidden;
}

.teaser-slide .teaser-slide__content::after {
  -webkit-transform: translateX(0px);
      -ms-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.teaser-slide:hover .teaser-slide__content::after {
  -webkit-transform: translateX(10px);
      -ms-transform: translateX(10px);
          transform: translateX(10px);
}

.category-list__item .category-title::after {
  -webkit-transform: translateX(0px);
      -ms-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.category-list__item .category-title:hover::after {
  -webkit-transform: translateX(10px);
      -ms-transform: translateX(10px);
          transform: translateX(10px);
}
.category-list__item .category-title:hover img {
  -webkit-animation: shaking 0.5s;
          animation: shaking 0.5s;
}

@-webkit-keyframes shaking {
  0% {
    -webkit-transform: translateY(0px) translateX(0px);
            transform: translateY(0px) translateX(0px);
  }
  30% {
    -webkit-transform: translateY(-1px) translateX(-2px);
            transform: translateY(-1px) translateX(-2px);
  }
  60% {
    -webkit-transform: translateY(1px) translateX(1px);
            transform: translateY(1px) translateX(1px);
  }
  100% {
    -webkit-transform: translateY(0px) translateX(0px);
            transform: translateY(0px) translateX(0px);
  }
}

@keyframes shaking {
  0% {
    -webkit-transform: translateY(0px) translateX(0px);
            transform: translateY(0px) translateX(0px);
  }
  30% {
    -webkit-transform: translateY(-1px) translateX(-2px);
            transform: translateY(-1px) translateX(-2px);
  }
  60% {
    -webkit-transform: translateY(1px) translateX(1px);
            transform: translateY(1px) translateX(1px);
  }
  100% {
    -webkit-transform: translateY(0px) translateX(0px);
            transform: translateY(0px) translateX(0px);
  }
}
.lang-switch {
  border-radius: 50%;
  background: var(--gray);
  padding: 10px;
  aspect-ratio: 1;
  width: 50px;
}
.lang-switch-wrapper {
  position: relative;
  font-weight: 500;
}
.lang-switch-wrapper a {
  display: block;
}
.lang-switch-wrapper img {
  border-radius: 3px;
  overflow: hidden;
  height: 100%;
  display: block;
}
.lang-switch-wrapper.open .lang-switch__dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
}
.lang-switch__dropdown {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  padding: 10px;
  background: var(--white);
  width: 50px;
  border-radius: 0px;
  left: 0px;
  -webkit-box-shadow: 0 0 10px #00000038;
          box-shadow: 0 0 10px #00000038;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  gap: 5px;
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.news-item__cat {
  opacity: 0;
}

a.head-single .title-block {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
a.head-single:hover .title-block {
  color: var(--orange);
}

.author-wrapper {
  border-top: 1px solid var(--dark);
}

.command-list .authors-item:hover {
  border-color: var(--violet);
}
.command-list .authors-item:hover .authors-item__name span {
  color: var(--violet);
}
.command-list .authors-item__image::after {
  background: var(--violet);
}

.doctors-list .authors-item:hover {
  border-color: var(--turq);
}
.doctors-list .authors-item:hover .authors-item__name span {
  color: var(--turq);
}
.doctors-list .authors-item__image::after {
  background: var(--turq);
}

.head-single__content {
  text-align: center;
}
.head-single__content .title-block {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

a {
  text-decoration: none;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  color: var(--dark);
  outline: none;
}
a:focus {
  outline: none;
}
a:hover {
  color: var(--orange);
}

input, textarea, button {
  font-family: var(--font);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.header-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
}
.header-row__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-left: 8px;
  list-style: none !important;
}
.social-list a {
  width: 50px;
  border: 1px solid var(--white);
  aspect-ratio: 1;
  background: var(--gray);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  margin-left: -8px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.social-list a .icon-youtube {
  font-size: 14px;
}
.social-list a .icon-vk {
  font-size: 13px;
}
.social-list a .icon-x {
  font-size: 16px;
}
.social-list a .icon-telegram {
  font-size: 16px;
}
.social-list a .icon-whatsapp, .social-list a .icon-instagram {
  font-size: 18px;
}
.social-list a:hover {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
}
.social-list__dark a {
  background: #EAEBEB;
  border-color: var(--gray);
}
.social-list__center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.lang-switch {
  overflow: hidden;
  line-height: 1;
}

.nav-row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 70px;
}
.nav-row ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  text-transform: uppercase;
}
.nav-row ul a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.nav-row ul a:hover {
  opacity: 0.8;
}
.nav-row ul a i {
  font-size: 24px;
  display: block;
}
.nav-row__left {
  gap: 30px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header nav {
  background: var(--orange);
}
header nav .social-list {
  display: none;
}

.all-cats {
  padding: 23px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0;
  border: none;
  background: var(--dark);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.all-cats:hover {
  color: var(--orange);
}
.all-cats:hover span {
  background: var(--orange);
}

.toggle-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}
.toggle-icon span {
  width: 16px;
  height: 1px;
  background: #fff;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.search-form {
  max-width: 200px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.search-form input {
  color: var(--white);
  background: none;
  border: none;
  border-bottom: 1px solid;
  width: 100%;
  padding: 10px 0;
}
.search-form ::-webkit-input-placeholder {
  color: var(--white);
  opacity: 1;
}
.search-form ::-moz-placeholder {
  color: var(--white);
  opacity: 1;
}
.search-form :-ms-input-placeholder {
  color: var(--white);
  opacity: 1;
}
.search-form ::-ms-input-placeholder {
  color: var(--white);
  opacity: 1;
}
.search-form ::placeholder {
  color: var(--white);
  opacity: 1;
}
.search-form .btn-send {
  position: absolute;
  background: none;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  right: 0;
}

.desc-block {
  margin-bottom: 20px;
}

.section-coop .title-block {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}
.section-coop .desc-block {
  margin-bottom: 0;
  font-size: 16px;
  margin-top: 20px;
}
.section-coop .desc-block a {
  color: var(--orange);
  text-decoration: underline;
}
.section-coop .head-block-middle__col {
  padding: 60px;
}

.gray-section {
  padding: 60px;
  background: var(--gray);
}

.btn-burger {
  gap: 6px;
  display: none;
}
.btn-burger span {
  background: var(--dark);
  width: 30px;
  position: relative;
  height: 2px;
}
@media screen and (max-width: 991px) {
  .btn-burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

header.open .btn-burger {
  width: 30px;
  padding: 0;
  height: 20px;
}
header.open .btn-burger span {
  position: absolute;
}
header.open .btn-burger span:first-child {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
header.open .btn-burger span:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
header.open .btn-burger span:last-child {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

footer {
  border-top: 1px solid var(--dark);
  background: var(--gray);
  padding: 60px 0 40px;
  border-bottom: 10px solid var(--orange);
}

.mailing-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mailing-list__title {
  font-size: 14px;
  font-weight: 700;
}
.mailing-list__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1px;
}
.mailing-list .btn:hover {
  color: var(--orange);
}

.footer-row-top, .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(30, 30, 30, 0.1);
  margin-bottom: 40px;
}

.footer-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links ul:not(.social-list) a {
  text-decoration: underline;
  font-size: 14px;
}
.footer-links li {
  margin-bottom: 10px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-links li:last-child {
  margin-bottom: 0;
}
.footer-links li .icon-logo {
  font-size: 24px;
  position: absolute;
  margin-left: 10px;
}

.social-list__white a {
  border: 1px solid var(--gray);
  background: var(--white);
  text-decoration: none;
}

.copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 14px;
  color: rgba(30, 30, 30, 0.6);
}
.copyright a {
  font-weight: 700;
  text-decoration: underline;
  color: var(--orange);
}

.teaser-wrapper {
  padding: 60px 0;
}
.teaser-wrapper__slider {
  overflow: hidden;
}
.teaser-wrapper .teaser-slide {
  height: 500px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background-position: center;
  background-size: cover;
  color: var(--white);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.teaser-wrapper .teaser-slide:hover {
  color: var(--orange);
}
.teaser-wrapper .teaser-slide__content {
  background: var(--dark);
  padding: 20px;
  font-size: 1.75rem;
  font-weight: 600;
  position: relative;
}
.teaser-wrapper .teaser-slide__content::after {
  content: "\e90a";
  font-family: "laykos";
  font-size: 24px;
  position: absolute;
  bottom: 10px;
  right: 20px;
}
.teaser-wrapper .teaser-slide .slide-text {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.teaser-wrapper__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.arrow-btn {
  width: 50px;
  aspect-ratio: 1;
  background: var(--orange);
  border: none;
  position: absolute;
  z-index: 2;
  left: -20px;
  border: 1px solid var(--orange);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.arrow-btn::before {
  content: "\e901";
  font-family: "laykos";
  font-size: 18px;
  color: #fff;
  display: block;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.arrow-btn.arrow-right {
  right: -20px;
  left: auto;
}
.arrow-btn.arrow-right::before {
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
}
.arrow-btn:hover {
  background: rgba(255, 255, 255, 0.5);
}
.arrow-btn:hover::before {
  color: var(--orange);
}

.title-block {
  font-size: 1.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.title-block img {
  width: 40px;
}
.title-block i {
  color: var(--orange);
  font-size: 40px;
}
.title-block span {
  color: var(--orange);
}

.head-block-middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid var(--dark);
  border-top: none;
}
.head-block-middle__col {
  width: 50%;
  padding: 20px;
}
.head-block-middle__col:first-child {
  border-right: 1px solid var(--dark);
}
.head-block-middle .title-block {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.news-wrapper {
  border-top: 1px solid var(--dark);
  overflow: hidden;
  padding-bottom: 60px;
}

.news-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.news-row__col {
  width: 50%;
  padding: 60px 0;
}
.news-row__col:first-child {
  border-right: 1px solid var(--dark);
  padding-right: 40px;
}
.news-row__col:last-child {
  padding-left: 40px;
}

.head-block:not(.head-block-middle) {
  padding: 30px;
  border-left: 1px solid var(--dark);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-right: 0;
  margin-bottom: 60px;
}
.head-block:not(.head-block-middle)::after {
  content: "";
  width: 100vw;
  position: absolute;
  left: 0;
  height: 1px;
  background: var(--dark);
  bottom: 0;
}

.head-block__left {
  width: 75%;
}
.head-block__desc {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.6;
}

.news-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
.news-grid .news-item {
  width: calc(33.3333333333% - 13.3333333333px);
}

.news-item {
  position: relative;
  border: 1px solid #fff0;
  display: block;
}
.news-item:hover {
  border-color: var(--orange);
}
.news-item:hover .news-item__title {
  color: var(--orange);
}
.news-item:hover .news-item__cat {
  background: var(--orange);
  color: var(--white);
}
.news-item:hover .news-item__tags li {
  color: var(--white);
}
.news-item:hover .news-item__tags li:first-child {
  background: var(--violet);
}
.news-item:hover .news-item__tags li:nth-child(2) {
  background: var(--turq);
}
.news-item:hover .news-item__tags li:nth-child(3) {
  background: var(--yellow);
}
.news-item__image {
  position: relative;
  height: 285px;
  overflow: hidden;
}
.news-item .news-image {
  height: 100%;
}
.news-item .news-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.news-item__cat {
  position: absolute;
  top: 10px;
  right: 0;
  padding: 10px 15px;
  background: var(--dark);
  color: var(--white);
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 10px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.news-item__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.5;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.news-item__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news-item__meta .meta-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: var(--dark);
  font-size: 12px;
}
.news-item__meta i {
  font-size: 16px;
}
.news-item__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.news-item__content {
  padding: 20px;
  background: var(--gray);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  gap: 10px;
}
.news-item .author-link {
  position: absolute;
  border: 2px solid var(--white);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  overflow: hidden;
  bottom: 10px;
  right: 10px;
}
.news-item .author-link img {
  width: 100%;
}
.news-item .link-more {
  font-size: 24px;
  line-height: 0;
  color: var(--dark);
}
.news-item__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
.news-item__tags li {
  font-size: 8px;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  line-height: 24px;
  padding: 0 10px;
  font-weight: 600;
  background: rgba(30, 30, 30, 0.05);
  display: block;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  gap: 20px;
}
.news-list .news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
.news-list .news-item__image {
  width: 35%;
  height: auto;
}
.news-list .news-item__content {
  width: 65%;
}
.news-list .news-item__title {
  font-size: 14px;
}

.pb0 {
  padding-bottom: 0 !important;
}

.section-gray .news-item__content {
  background: #fff;
}

.news-grid__big-first .news-item {
  width: calc(25% - 13.3333333333px);
}
.news-grid__big-first .news-item:first-child {
  width: calc(50% - 13.3333333333px);
}

.news-grid__big-middle .news-item {
  width: calc(25% - 13.3333333333px);
}
.news-grid__big-middle .news-item:nth-child(2) {
  width: calc(50% - 13.3333333333px);
}

.news-grid__big-last .news-item {
  width: calc(25% - 13.3333333333px);
}
.news-grid__big-last .news-item:last-child {
  width: calc(50% - 13.3333333333px);
}

.category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  gap: 20px;
}
.category-list__item {
  width: calc(50% - 10px);
  background: var(--gray);
  padding: 20px;
}
.category-list .category-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(30, 30, 30, 0.1);
  margin-bottom: 20px;
}
.category-list .category-title img {
  width: 40px;
}
.category-list .category-title::after {
  content: "\e90a";
  font-family: "laykos";
  font-size: 24px;
  position: absolute;
  right: 0;
}
.category-list .category-title i {
  font-size: 24px;
}

.category-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  gap: 10px;
}
.category-links a {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  padding: 0 10px;
  line-height: 20px;
  background: rgba(30, 30, 30, 0.05);
  text-transform: uppercase;
  display: inline-block;
}
.category-links a:hover {
  background: var(--violet);
  color: var(--white);
}
.category-links li:nth-child(2) a:hover {
  background: var(--yellow);
}
.category-links li:nth-child(3) a:hover {
  background: var(--turq);
}
.category-links li:nth-child(4) a:hover {
  background: var(--violet);
}
.category-links li:nth-child(5) a:hover {
  background: var(--yellow);
}
.category-links li:nth-child(6) a:hover {
  background: var(--turq);
}
.category-links li:nth-child(7) a:hover {
  background: var(--violet);
}

.head-block-single .head-block__left {
  width: 100%;
}

.article-content {
  padding-bottom: 120px;
}

.article-image {
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
}
.article-image .title-post {
  position: absolute;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  background: var(--dark);
  padding: 20px;
  width: calc(100% - 40px);
  left: 20px;
  bottom: 20px;
}

.breadcrumbs-single {
  border: none;
}

.authors-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  gap: 20px;
}
.authors-list .authors-item {
  width: calc(25% - 15px);
}

.authors-item {
  padding: 40px 30px;
  background: var(--gray);
  border: 1px solid var(--gray);
  display: block;
}
.authors-item:hover {
  border-color: var(--orange);
}
.authors-item:hover .authors-item__name span {
  color: var(--orange);
}
.authors-item:hover .authors-item__image::after {
  opacity: 1;
  bottom: -10px;
  right: 0px;
}
.authors-item__image {
  margin-bottom: 20px;
  position: relative;
}
.authors-item__image::after {
  content: "";
  width: calc(100% - 10px);
  aspect-ratio: 1;
  background: var(--orange);
  position: absolute;
  bottom: 0px;
  right: 10px;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.authors-item__image img {
  border-radius: 50%;
  position: relative;
  z-index: 2;
  width: calc(100% - 10px);
}
.authors-item__name {
  font-size: 14px;
  text-align: center;
  color: rgba(30, 30, 30, 0.6);
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(30, 30, 30, 0.1);
}
.authors-item__name span {
  font-size: 18px;
  display: block;
  color: #1e1e1e;
  font-weight: 700;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.authors-item__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.authors-item .meta-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--dark);
}
.authors-item .meta-item i {
  font-size: 16px;
}
.authors-item__desc {
  color: rgba(30, 30, 30, 0.6);
  font-size: 14px;
  padding-top: 20px;
}

.author-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.author-row__posts {
  width: 66.6666666667%;
}
.author-row__right {
  width: 33.3333333333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  padding-left: 60px;
  gap: 20px;
}
.author-row__right .authors-item {
  background: var(--white);
  border: 1px solid var(--dark);
  width: 100%;
}
.author-row__right .authors-item__image {
  width: 200px;
  margin-left: auto;
  margin-right: auto;
}
.author-row__right .authors-item__meta {
  padding: 0 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(30, 30, 30, 0.1);
}

.author-row__posts .news-image {
  max-height: 145px;
}

.border-block {
  padding: 40px 30px;
  border: 1px solid var(--dark);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}
.border-block .social-list {
  margin-left: 12px;
}
.border-block .social-list a {
  margin-left: -12px;
}
.border-block__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  width: 100%;
}

.cooperation-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cooperation-row__left {
  width: 58.3333333333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 18px;
}
.cooperation-row__left a {
  color: var(--orange);
  text-decoration: underline;
}
.cooperation-row__btn {
  width: 41.6666666667%;
}
.download-link {
  background: var(--gray);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 20px;
  color: var(--dark);
  font-weight: 700;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: underline;
  padding: 40px;
}

.post-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 20px;
}
.post-row__content {
  width: 66.6666666667%;
  padding-right: 30px;
}
.post-row__right {
  width: 33.3333333333%;
  padding-left: 30px;
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
}

.single-post__meta {
  padding: 20px;
  background: var(--gray);
  margin-top: 20px;
}
.single-post__meta .post-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.single-post__meta .post-author:hover .post-meta__content span {
  color: var(--orange);
}
.single-post__meta .post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-post__meta .post-meta__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(30, 30, 30, 0.05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
}
.single-post__meta .post-meta__content {
  font-size: 14px;
  color: rgba(30, 30, 30, 0.4);
}
.single-post__meta .post-meta__content span {
  display: block;
  color: var(--dark);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.single-meta__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(30, 30, 30, 0.1);
}

.single-meta__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}

.single-meta__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  font-size: 14px;
}

.posts-lines {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  gap: 20px;
}

.posts-lines__item .post-title {
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  font-weight: 700;
}
.posts-lines__item .post-meta {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  font-size: 10px;
}
.posts-lines__item .post-meta__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.posts-lines__item .post-meta__item i {
  font-size: 14px;
}

.about-image {
  padding-bottom: 60px;
}

.about-project {
  padding: 60px 0 120px;
}

.article-content:not(.article-post) {
  overflow: hidden;
}

.single-post__meta-mobile {
  display: none;
}

.article-content__post .check-list {
  padding-left: 0;
}

.title-line {
  display: block;
  text-align: center;
}

.gray-middle-home {
  position: relative;
}
.gray-middle-home::after {
  content: "";
  width: 50vw;
  position: absolute;
  left: 50%;
  height: 100%;
  top: 0;
  z-index: -1;
  background: var(--gray);
}

.news-list-white .news-item__content {
  background: var(--white);
}

@media screen and (max-width: 1250px) {
  .nav-row {
    gap: 20px;
  }
  .nav-row ul {
    gap: 20px;
  }
  .nav-row__left {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .search-form {
    display: none;
  }

  .teaser-wrapper .teaser-slide {
    height: 400px;
  }
  .teaser-wrapper .teaser-slide__content {
    font-size: 20px;
  }

  .btn {
    padding: 10px 15px;
    font-size: 11px;
  }

  .news-item__image {
    height: 200px;
  }
  .news-item__title {
    font-size: 15px;
  }
  .news-item__content {
    padding: 10px;
  }
  .news-item__tags {
    gap: 5px;
  }

  .head-block__desc {
    font-size: 14px;
  }

  .footer-row-top {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    gap: 30px;
  }

  .mailing-list {
    width: 100%;
  }
  .mailing-list__form {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .mailing-list__form > * {
    width: calc(33.3333333333% - 1px);
  }
  .mailing-list__form .btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .single-meta__top {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
  }
  .single-meta__top .single-meta__left {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(30, 30, 30, 0.1);
    width: 100%;
  }
  .single-meta__top .single-meta__right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
  .single-meta__top .single-meta__right br {
    display: none;
  }

  .post-row__right {
    padding-left: 0;
  }

  .post-article-single__content {
    padding: 20px;
  }

  .authors-list .authors-item {
    width: calc(33.3333333333% - 13.3333333333px);
    padding: 20px;
  }
  .authors-list .authors-item__meta {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    gap: 10px;
  }

  .author-row__right {
    padding-left: 30px;
  }
  .author-row__right .authors-item__meta {
    padding-left: 0;
    padding-right: 0;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    gap: 10px;
  }
  .author-row__right .authors-item {
    padding: 30px;
  }

  .share-block {
    display: none;
  }

  .about-project .title-block {
    display: block;
    text-align: left;
  }

  .quote-big__content {
    padding-left: 30px;
  }
  .quote-big__text {
    font-size: 20px;
  }

  .download-link {
    padding: 40px 20px;
    font-size: 16px;
    letter-spacing: 2px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 991px) {
  header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 15;
    background: var(--white);
    border-bottom: 1px solid var(--dark);
  }

  .header-row .social-list {
    display: none;
  }

  .logo img {
    max-width: 125px;
  }

  header nav {
    position: fixed;
    width: 100vw;
    height: calc(var(--app-height) - 60px);
    z-index: 10;
    -webkit-transform: translateY(-60px);
        -ms-transform: translateY(-60px);
            transform: translateY(-60px);
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    opacity: 0;
    visibility: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    top: 60px;
  }
  header nav .social-list {
    background: var(--white);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 15px 0;
    margin-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  header.open nav {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }

  .nav-row {
    padding: 15px 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-flow: column-reverse;
            flex-flow: column-reverse;
  }
  .nav-row__left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .nav-row__left ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .nav-row__left ul a {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left;
  }

  .search-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: none;
  }
  .search-form input, .search-form label {
    width: 100%;
  }

  .all-cats {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .head-block-middle .title-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-flow: column-reverse;
            flex-flow: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 15px;
  }

  .news-list .news-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  .news-list .news-item__image, .news-list .news-item__content {
    width: 100%;
  }
  .news-list .news-item:nth-child(3) {
    display: none;
  }

  .news-row__col {
    padding: 20px 0;
  }
  .news-row__col:first-child {
    padding-right: 10px;
  }
  .news-row__col:last-child {
    padding-left: 10px;
  }

  .title-block {
    font-size: 20px;
    gap: 10px;
    text-align: center;
    letter-spacing: 2px;
  }
  .title-block img {
    width: 30px;
  }
  .title-block i {
    font-size: 30px;
  }

  .teaser-wrapper {
    padding: 20px 0;
  }

  .news-wrapper {
    padding-bottom: 20px;
  }

  .head-block:not(.head-block-middle) {
    margin-bottom: 20px;
    padding: 20px;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    gap: 20px;
  }

  .head-block__left {
    width: 100%;
  }

  .news-wrapper .news-grid .news-item {
    min-width: 100%;
    border: none;
  }
  .news-wrapper .news-grid .news-item:not(.news-wrapper .news-grid .news-item:first-child) .news-item__image {
    display: none;
  }
  .news-wrapper .news-grid .news-item .news-item__image {
    margin-bottom: 10px;
  }
  .news-wrapper .news-grid .news-item .news-item__content {
    padding: 0;
    background: none;
  }
  .news-wrapper .news-grid .news-item .link-more {
    display: none;
  }

  .teaser-wrapper .teaser-slide__content::after {
    display: none;
  }

  .footer-links {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    row-gap: 40px;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
  .footer-links__col {
    width: calc(50% - 10px);
  }
  .footer-links__col:last-child {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .mailing-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  .mailing-list__form {
    width: 100%;
  }
  .mailing-list__title br {
    display: none;
  }

  .footer-row-top .logo {
    margin: auto;
  }

  .category-list__item {
    width: 100%;
  }
  .category-list__item .category-title {
    letter-spacing: 2px;
  }
  .category-list__item .category-title img {
    width: 30px;
  }

  .category-links a {
    display: block;
  }

  .news-grid .news-item {
    width: calc(50% - 10px);
  }

  .article-image {
    margin-top: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  .article-image .title-post {
    width: 100%;
    position: relative;
    background: none;
    color: var(--dark);
    padding: 0;
    left: 0;
    bottom: 0;
    font-size: 24px;
    margin-top: 20px;
  }

  .single-post__meta {
    display: none;
  }

  .single-post__meta-mobile {
    display: block;
  }

  .post-row {
    gap: 40px;
  }
  .post-row__content {
    width: 100%;
    padding-right: 0;
    padding-top: 0;
  }
  .post-row__right {
    width: 100%;
  }

  .article-content__post h2 {
    font-size: 20px;
  }

  .author-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-flow: column-reverse;
            flex-flow: column-reverse;
    gap: 40px;
  }
  .author-row__right {
    padding-left: 0;
    width: 100%;
  }
  .author-row__posts {
    width: 100%;
  }

  .quote-big {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .quote-big__image {
    max-width: 200px;
    width: 100%;
  }
  .quote-big__content {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }

  .section-coop .head-block-middle {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
  }
  .section-coop .head-block-middle__col {
    width: 100%;
    padding: 30px;
  }
  .section-coop .head-block-middle__col:first-child {
    border-right: none;
    border-bottom: 1px solid var(--dark);
  }
  .section-coop .head-block-middle__col .title-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    font-size: 20px;
  }
  .section-coop .head-block-middle__col .desc-block {
    font-size: 14px;
  }

  .section-wrapper {
    padding-bottom: 60px;
  }

  .gray-section {
    padding: 30px;
  }

  .cooperation-row {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    gap: 30px;
  }
  .cooperation-row__left {
    font-size: 16px;
    width: 100%;
  }
  .cooperation-row__btn {
    width: 100%;
  }

  .download-link {
    padding: 20px;
    gap: 15px;
  }
  .download-link img {
    width: 30px;
  }
}
@media screen and (max-width: 768px) {
  .mailing-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  .mailing-list__form {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
  }
  .mailing-list__form > * {
    width: 100%;
  }
  .mailing-list__form .btn {
    height: 57px;
  }

  .copyright {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    gap: 10px;
    text-align: center;
  }
  .copyright div {
    width: 100%;
  }

  .head-single {
    margin-bottom: 40px;
    padding: 20px;
  }

  .article-content {
    padding-bottom: 60px;
  }

  .post-article-single {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  .post-article-single__content {
    width: 100%;
  }
  .post-article-single__image {
    width: 100%;
    max-height: 200px;
  }

  .rate-article {
    padding: 20px;
  }
  .rate-article__title {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  .rate-article i {
    font-size: 20px;
  }

  .single-post__meta .meta-time {
    display: none;
  }

  .single-meta__left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
  }
  .single-meta__left .post-meta {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }

  .authors-list .authors-item {
    width: calc(50% - 10px);
  }

  .quote-big {
    padding: 30px;
  }
  .quote-big__content {
    text-align: center;
  }
  .quote-big__text {
    font-size: 18px;
  }
  .quote-big__bottom {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .quote-big__bottom span {
    font-size: 16px;
  }
  .quote-big .author-text {
    font-size: 14px;
  }

  .form-row {
    gap: 10px;
  }
  .form-row label {
    width: 100%;
  }

  .about-image {
    padding-bottom: 20px;
  }

  .about-project {
    padding: 20px 0 60px;
  }
  .about-project .article-content__post {
    padding-top: 20px;
  }

  .quote-big {
    margin-top: 30px;
  }

  .modal-wrapper .modal-inner {
    padding: 30px;
  }
  .modal-wrapper .modal-title {
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 575px) {
  .head-block:not(.head-block-middle) {
    padding-right: 0;
  }
  .head-block:not(.head-block-middle) .btn {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .news-item {
    border: none;
  }
  .news-item .news-item__content {
    padding: 0;
    background: none;
    margin-top: 10px;
  }
  .news-item .link-more {
    display: none;
  }

  .news-item__tags {
    display: none;
  }

  .news-item__meta .meta-item {
    font-size: 10px;
    gap: 5px;
  }
  .news-item__meta .meta-item i {
    font-size: 14px;
  }

  .head-block-middle .title-block {
    font-size: 12px;
    letter-spacing: 2px;
  }
  .head-block-middle__col {
    padding: 20px 10px;
  }

  .teaser-wrapper .teaser-slide .slide-text {
    font-size: 18px;
  }
  .teaser-wrapper .teaser-slide__content {
    padding: 20px 30px;
  }
  .teaser-wrapper .arrow-btn {
    bottom: 55px;
    left: -15px;
  }
  .teaser-wrapper .arrow-btn.arrow-right {
    left: auto;
    right: -15px;
  }

  .news-grid .news-item {
    width: 100%;
  }
  .news-grid .news-item__image {
    height: 160px;
  }

  .pagination a {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  .pagination .link-arrow::after {
    font-size: 15px;
  }

  .authors-item__name {
    font-size: 12px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .authors-item__name span {
    font-size: 14px;
  }

  .post-article-single__image {
    overflow: hidden;
  }

  .author-row__posts .news-image {
    max-height: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.wow {
  visibility: hidden;
}