@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  /* Color styles */
  --black: rgba(40, 50, 59, 1);
  --gray-1: rgba(143, 145, 151, 1);
  --gray-2: rgba(228, 229, 231, 1);
  --gray-3: rgba(245, 247, 250, 1);
  --white: rgba(255, 255, 255, 1);
  --green: rgba(145, 203, 122, 1);
  --cyan: rgba(145, 203, 219, 1);
  --blue: rgba(24, 146, 255, 1);
  --blue--active: rgba(20, 116, 201, 1);
  --red: rgba(255, 24, 24, 1);
  --orange: rgba(255, 136, 0, 1);
  --gradient: linear-gradient(90deg, #91CB7A 0%, #91CBDB 100%);
  /* Text-size styles */
  /* base size: body-16 (16px) */
  --title-48: 3rem;
  --title-28: 1.75rem;
  --title-24: 1.5rem;
  --title-13: 0.81rem;
  --title-12: 0.75rem;
  --body-20: 1.25rem;
  --body-18: 1.12rem;
  --body-14: 0.88rem;
  --trans: .3s;
}

html {
  font-size: 16px;
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 15px;
  }
}

body {
  background-color: var(--white);
  background-color: var(--gray-3);
  font-weight: 400;
  line-height: 1.2;
  color: var(--black);
  font-family: "Montserrat", serif;
}

input, button, textarea {
  font-family: "Montserrat", serif;
}

img {
  max-width: 100%;
}

button {
  padding: 0;
  margin: 0;
  border: none;
  background: none;
}

input, textarea {
  display: block;
  width: 100%;
  background: #fff;
  position: relative;
  border: none;
  padding: 12px 14px;
  color: var(--black);
  border-radius: 8px;
}

textarea {
  resize: none;
  min-height: 130px;
}

.input {
  position: relative;
  display: block;
  padding: 1px;
  z-index: 1;
}
.input input, .input textarea {
  width: 100%;
}
.input::before, .input::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 9px;
  background: var(--gradient);
  opacity: 0;
  transition: var(--trans);
}
.input::after {
  background: #fff;
  opacity: 1;
  z-index: -1;
}
.input.active::after {
  opacity: 0;
}
.input.active::before {
  opacity: 1;
}

::placeholder {
  opacity: 1;
  color: var(--gray-1);
}

a {
  color: var(--black);
  text-decoration: none;
  transition: var(--trans);
  outline: none;
}
a:focus {
  outline: none;
}
a:hover {
  color: var(--green);
}

.btn-icon {
  font-size: 20px;
  line-height: 1;
  aspect-ratio: 1;
  color: var(--black);
  transition: var(--trans);
}
.btn-icon:hover {
  color: var(--green);
}

.btn {
  padding: 14px 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  color: var(--white);
  font-weight: 500;
  line-height: 1.5;
  box-shadow: 0px -3px 16px 0px rgba(145, 203, 122, 0.25);
}
.btn::before {
  content: "";
  width: 101%;
  height: 100%;
  background: var(--gradient);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: var(--trans);
}
.btn i {
  font-size: 20px;
}
.btn:hover {
  color: var(--white);
}
.btn:hover::before {
  width: 300%;
  transform: translateX(-60%);
}
.btn-small {
  font-size: var(--body-14);
  padding: 11px 16px;
}
.btn-big {
  font-size: var(--body-20);
}
.btn-big i {
  font-size: 24px;
}
.btn-border {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--gray-2);
  box-shadow: none;
}
.btn-border::before {
  display: none;
}
.btn-border:hover {
  background: var(--gray-3);
  color: var(--black);
}
.btn-blue {
  color: var(--blue);
  font-size: var(--body-14);
  font-weight: 500;
  margin-top: 20px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 4px;
}
.btn-blue i {
  font-size: 17px;
}

.title {
  font-weight: 600;
  margin-bottom: 16px;
}
.title:last-child {
  margin-bottom: 0;
}
.title em {
  color: var(--green);
}
.title-h1 {
  font-size: var(--title-28);
  font-weight: bold;
}
.title-h2 {
  font-size: var(--title-24);
}
.title-h3 {
  font-size: var(--body-18);
}
.title-page {
  font-size: var(--title-48);
}
@media screen and (max-width: 575px) {
  .title-page {
    font-size: 30px;
  }
}

h1 {
  font-size: var(--title-28);
  font-weight: bold;
}

h2 {
  font-size: var(--title-24);
}

h3 {
  font-size: var(--body-18);
}

h5 {
  font-size: var(--body-14);
}

section {
  background: var(--white);
  padding: 64px 0;
}
@media screen and (max-width: 991px) {
  section {
    padding: 35px 0;
  }
}

.list-news {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
  row-gap: 28px;
}
.list-news .news-item {
  width: calc(50% - 10px);
}
@media screen and (max-width: 991px) {
  .list-news .news-item {
    width: 100%;
  }
}

.news-item {
  display: flex;
  gap: 24px;
  flex-flow: wrap;
  position: relative;
}
.news-item:hover .news-title {
  color: var(--green);
}
.news-item:hover .news-item__image img {
  transform: scale(1.09);
}
.news-item__image {
  width: 40%;
  overflow: hidden;
  transition: none;
}
@media screen and (max-width: 575px) {
  .news-item__image {
    width: 100%;
  }
}
.news-item__image img {
  transform: scale(1);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: var(--trans);
}
.news-item__image::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.news-item__content {
  width: calc(60% - 24px);
  display: flex;
  flex-flow: column;
  gap: 16px;
}
@media screen and (max-width: 575px) {
  .news-item__content {
    width: 100%;
    gap: 10px;
  }
}
.news-item .news-desc {
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
.news-item .news-title {
  font-weight: bold;
  font-size: var(--body-20);
  color: var(--black);
  transition: var(--trans);
}
@media screen and (max-width: 1200px) {
  .news-item .news-title {
    font-size: 16px;
  }
}

.news-meta {
  display: flex;
  gap: 20px;
  font-size: 12px;
  color: var(--gray-1);
  flex-flow: wrap;
  position: relative;
  z-index: 2;
}
.news-meta a {
  color: var(--green);
}
.news-meta a:hover {
  color: var(--black);
}
.news-meta span {
  position: relative;
}
.news-meta span::after {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--black);
  opacity: 0.25;
  border-radius: 50%;
  position: absolute;
  right: -12px;
  top: 6px;
}
.news-meta span:last-child::after {
  display: none;
}

.news-wrapper {
  padding: 0;
  border-top: 1px solid var(--gray-2);
}

.news-wrapper__container {
  display: flex;
  flex-flow: wrap;
}
.news-wrapper__left {
  width: 66.6666666667%;
  padding-top: 35px;
  padding-right: 35px;
}
@media screen and (max-width: 991px) {
  .news-wrapper__left {
    width: 100%;
    padding-right: 0;
  }
}
.news-wrapper__sidebar {
  padding: 35px;
  padding-right: 0;
  width: 33.3333333333%;
  border-left: 1px solid var(--gray-2);
}
@media screen and (max-width: 991px) {
  .news-wrapper__sidebar {
    width: 100%;
    border: none;
    padding-left: 0;
  }
}
.news-wrapper__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
  flex-flow: wrap-reverse;
  row-gap: 15px;
}
.news-wrapper__bottom {
  padding-bottom: 72px;
}

.sort {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-1);
}
@media screen and (max-width: 575px) {
  .sort {
    flex-flow: wrap;
    row-gap: 0;
  }
}
.sort__inner {
  position: relative;
}
.sort__selected {
  color: var(--green);
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sort__selected::after {
  content: "\e90e";
  font-family: "winnum";
}
.sort ul {
  position: absolute;
  padding: 24px;
  font-size: 14px;
  background: var(--white);
  z-index: 3;
  white-space: nowrap;
  box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex-flow: column;
  gap: 18px;
  top: 30px;
  opacity: 0;
  visibility: hidden;
  transition: var(--trans);
  transform: translateY(-25px);
}
.sort ul button, .sort ul a {
  font-weight: 400;
  transition: 0.3s;
}
.sort ul button:hover, .sort ul a:hover {
  color: var(--green);
}
.sort.open ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btns-view {
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 575px) {
  .btns-view {
    display: none;
  }
}
.btns-view .btn-icon {
  font-size: 28px;
  width: 36px;
  height: 36px;
  background: var(--gray-3);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: var(--gray-1);
}
.btns-view .btn-icon:hover {
  color: var(--black);
}
.btns-view .btn-icon.active {
  background: var(--green);
  color: var(--white);
}
.btns-view .btn-icon.active i {
  opacity: 1;
}

.list-view .news-item {
  margin-bottom: 35px;
}
.list-view .news-item .news-desc {
  -webkit-line-clamp: 3;
  line-clamp: 3;
  font-size: var(--body-14);
}
.list-view .news-item__image {
  min-height: 210px;
}

.grid-view {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
  row-gap: 35px;
}
.grid-view .news-item {
  width: calc(50% - 10px);
  flex-flow: column;
}
@media screen and (max-width: 575px) {
  .grid-view .news-item {
    width: 100%;
  }
}
.grid-view .news-item__image {
  width: 100%;
}
.grid-view .news-item__content {
  width: 100%;
}
.grid-view .news-item .news-desc {
  -webkit-line-clamp: 3;
  line-clamp: 3;
  font-size: var(--body-14);
}

.list-view .news-item .news-title, .grid-view .news-item .news-title {
  font-size: var(--title-24);
}
@media screen and (max-width: 1200px) {
  .list-view .news-item .news-title, .grid-view .news-item .news-title {
    font-size: 18px;
  }
}

.sidebar-item + .sidebar-item {
  margin-top: 35px;
}
.sidebar-item__title {
  font-size: var(--body-18);
  font-weight: bold;
  margin-bottom: 24px;
}
.sidebar-item__title:last-child {
  margin-bottom: 0;
}

.cats-list {
  display: flex;
  flex-flow: wrap;
  gap: 8px;
  row-gap: 0;
}
.cats-list__item {
  padding: 12px 16px;
  border-radius: 30px;
  margin-top: 8px;
  background: var(--gray-3);
  font-size: var(--title-13);
}
.cats-list__item.active {
  background: var(--green);
  color: var(--white);
}

.news-item-small {
  margin-top: 20px;
}
.news-item-small:last-child {
  margin-bottom: 0;
}
.news-item-small__title {
  font-size: var(--body-14);
  font-weight: bold;
  margin-top: 10px;
  display: block;
}

.btn-load-more {
  width: 100%;
  justify-content: center;
  margin: 35px 0 45px;
}
.btn-load-more i {
  transform: rotate(0deg);
  transition: 0.5s;
}
.btn-load-more:hover i {
  transform: rotate(360deg);
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: wrap;
}
.pagination .page-nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-3);
  font-size: 24px;
  color: var(--black);
}
.pagination .page-nav:first-child {
  margin-right: 8px;
}
.pagination .page-nav:last-child {
  margin-left: 8px;
}
.pagination .page-nav:hover {
  color: var(--green);
}
.pagination .page-nav.disabled i {
  opacity: 0.25;
}
.pagination a, .pagination span {
  width: 48px;
  display: block;
  font-weight: 600;
  text-align: center;
}
.pagination .current-page {
  color: var(--green);
}

.sidebar-text {
  color: var(--gray-1);
  font-size: var(--body-14);
  line-height: 1.5;
  margin-top: 100px;
}
@media screen and (max-width: 991px) {
  .sidebar-text {
    margin-top: 30px;
  }
}

.expand {
  transition: var(--trans);
  max-height: 100px;
}
.expand-btn {
  color: var(--blue);
  font-size: var(--body-14);
  font-weight: 500;
  margin-top: 20px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 4px;
}
.expand-btn i {
  font-size: 17px;
}
.expand.hide {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  visibility: hidden;
  opacity: 0;
  margin: 0;
}

.head-cat {
  color: var(--gray-1);
  font-size: var(--body-14);
}
.head-cat .title {
  color: var(--black);
  font-weight: bold;
}
.head-cat .title:not(:first-child) {
  padding-top: 65px;
}
@media screen and (max-width: 575px) {
  .head-cat .title:not(:first-child) {
    padding-top: 30px;
  }
}

.empty {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-flow: column;
  height: 100%;
}
.empty__text {
  font-weight: 600;
  font-size: var(--body-20);
}

.label-input {
  display: flex;
  gap: 25px;
  align-items: center;
  white-space: nowrap;
}
@media screen and (max-width: 575px) {
  .label-input {
    flex-flow: column;
    align-items: flex-start;
    row-gap: 10px;
  }
}
.label-input + .label-input {
  margin-top: 12px;
}
.label-input span {
  display: inline-flex;
  width: 70px;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.label-input .input {
  width: calc(100% - 95px);
}
@media screen and (max-width: 575px) {
  .label-input .input {
    width: 100%;
  }
}
.label-input input, .label-input textarea {
  padding: 19px 16px;
}

.label-password {
  position: relative;
}
.label-password input {
  padding-right: 55px;
}
.label-password .show-pass {
  position: absolute;
  right: 16px;
  bottom: 15px;
  font-size: 24px;
  cursor: pointer;
  z-index: 1;
  line-height: 1;
}

[data-tooltip] {
  position: relative;
  cursor: pointer;
  z-index: 3;
}
[data-tooltip]::before {
  content: "\e905";
  font-family: "winnum";
  font-size: 24px;
  color: var(--black);
  opacity: 0.25;
  display: inline-block;
  aspect-ratio: 1;
  transition: var(--trans);
}
[data-tooltip]::after {
  content: attr(data-tooltip);
  padding: 20px;
  background: var(--white);
  box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.1);
  max-width: 300px;
  width: 300px;
  display: block;
  position: absolute;
  white-space: pre-wrap;
  font-weight: 400;
  opacity: 0;
  visibility: hidden;
  top: 100%;
  font-size: 14px;
  transition: var(--trans);
}
[data-tooltip]:hover::before {
  opacity: 1;
}
[data-tooltip]:hover::after {
  opacity: 1;
  visibility: visible;
}

blockquote {
  font-style: italic;
  padding-left: 34px;
  position: relative;
}
blockquote::before {
  content: "\e906";
  font-family: "winnum";
  font-size: 24px;
  color: var(--green);
  position: absolute;
  left: 0;
  top: -5px;
}

figure img {
  margin-bottom: 12px;
}
figure figcaption {
  color: var(--gray-1);
  font-size: 12px;
  position: relative;
}
figure figcaption::before {
  content: "\e91c";
  font-family: "winnum";
  color: var(--black);
  font-size: 16px;
  display: inline-block;
  margin-right: 7px;
  transform: translateY(2px);
}

.list-check li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 16px;
}
.list-check li:last-child {
  margin-bottom: 0;
}
.list-check li::before {
  content: "\e912";
  font-family: "winnum";
  font-size: 24px;
  position: absolute;
  left: 0;
  top: -6px;
  color: var(--green);
}

.person {
  display: flex;
  gap: 12px;
  align-items: center;
}
.person__image {
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1;
}
.person-name {
  font-weight: bold;
}
.person-position {
  font-size: 14px;
}

.blockquote-wrapper .person {
  padding-left: 34px;
}

.accepted {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.accepted input {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: var(--white);
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.accepted input::before {
  content: "";
  width: 14px;
  background: var(--green);
  height: 14px;
  border-radius: 2px;
  display: block;
  opacity: 0;
  transition: var(--trans);
}
.accepted input:checked::before {
  opacity: 1;
}

.btns-row {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
}

.home-link {
  text-align: center;
  margin-bottom: 65px;
}
.home-link a {
  justify-content: center;
}

.head-page {
  text-align: center;
  margin-bottom: 65px;
}
.head-page__title {
  font-weight: bold;
}
.head-page a {
  justify-content: center;
  padding-bottom: 65px;
}
@media screen and (max-width: 575px) {
  .head-page a {
    padding-bottom: 30px;
  }
}
.head-page .desc-block a {
  text-decoration: underline;
}

.categories {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
}
.categories__item {
  width: calc(25% - 15px);
  padding: 28px;
  background: var(--white);
  box-shadow: 0px 0px 16px -4px rgba(0, 0, 0, 0.1);
  min-height: 180px;
  display: flex;
  font-size: 14px;
  color: var(--gray-1);
  flex-flow: column;
}
@media screen and (max-width: 1200px) {
  .categories__item {
    width: calc(33.3333333333% - 13.3333333333px);
  }
}
@media screen and (max-width: 991px) {
  .categories__item {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 575px) {
  .categories__item {
    width: 100%;
  }
}
.categories__item:hover .cat-link {
  color: var(--green);
}
.categories__item:hover .cat-link i {
  margin-left: 5px;
}
.categories .cat-name {
  margin-bottom: 12px;
  color: var(--green);
  font-weight: bold;
  font-size: var(--body-18);
}
.categories .cat-count {
  flex-grow: 1;
}
.categories .cat-link i {
  margin-left: 0;
  transition: var(--trans);
}

.icons-list {
  display: flex;
  gap: 20px;
  font-size: 30px;
  flex-flow: wrap;
}

.ui-section {
  border-bottom: 3px solid var(--gray-3);
}
.ui-section:last-child {
  border: none;
}
.ui-section li {
  margin-bottom: 10px;
  font-weight: 500;
}
.ui-section li:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .desc-hide {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .mobile-hide {
    display: none !important;
  }
}
.input-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.input-checkbox input {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  appearance: none;
  background: var(--white);
  position: relative;
  transition: 0.3s;
}
.input-checkbox input::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='11' viewBox='0 0 14 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.5306 2.03063L5.5306 10.0306C5.46092 10.1006 5.37813 10.156 5.28696 10.1939C5.1958 10.2317 5.09806 10.2512 4.99935 10.2512C4.90064 10.2512 4.8029 10.2317 4.71173 10.1939C4.62057 10.156 4.53778 10.1006 4.4681 10.0306L0.968098 6.53063C0.898333 6.46087 0.842993 6.37804 0.805236 6.28689C0.76748 6.19574 0.748047 6.09804 0.748047 5.99938C0.748047 5.90072 0.76748 5.80302 0.805236 5.71187C0.842993 5.62072 0.898333 5.5379 0.968098 5.46813C1.03786 5.39837 1.12069 5.34303 1.21184 5.30527C1.30299 5.26751 1.40069 5.24808 1.49935 5.24808C1.59801 5.24808 1.69571 5.26751 1.78686 5.30527C1.87801 5.34303 1.96083 5.39837 2.0306 5.46813L4.99997 8.43751L12.4693 0.969379C12.6102 0.828483 12.8013 0.749329 13.0006 0.749329C13.1999 0.749329 13.391 0.828483 13.5318 0.969379C13.6727 1.11028 13.7519 1.30137 13.7519 1.50063C13.7519 1.69989 13.6727 1.89098 13.5318 2.03188L13.5306 2.03063Z' fill='white'/%3E%3C/svg%3E%0A");
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-position: center;
  background-repeat: no-repeat;
}
.input-checkbox input:checked {
  background: var(--green);
}

.modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: var(--app-height);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.modal-wrapper.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.modal-wrapper.open .modal-wrapper__inner {
  transform: translateY(0);
}
.modal-wrapper__inner {
  background: var(--white);
  padding: 28px;
  border-radius: 8px;
  width: calc(100% - 30px);
  position: relative;
  max-width: 430px;
  transform: translateY(-30px);
  transition: 0.3s;
}
@media screen and (max-width: 575px) {
  .modal-wrapper__inner {
    padding: 20px;
  }
}
.modal-wrapper .title-middle {
  margin-bottom: 32px;
}
.modal-wrapper .close {
  font-size: 24px;
  color: var(--gray-1);
  position: absolute;
  top: 28px;
  right: 28px;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 575px) {
  .modal-wrapper .close {
    top: 20px;
    right: 20px;
  }
}
.modal-wrapper .close:hover {
  color: var(--black);
}
.modal-wrapper .btn {
  width: 100%;
  justify-content: center;
}

.header {
  background: var(--gray-3);
  padding: 15px 0;
  position: relative;
  z-index: 10;
}
.header__container {
  display: flex;
  flex-flow: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .header__container {
    gap: 20px;
  }
}
.header__container nav {
  flex-grow: 1;
}
.header__container nav .container {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
  flex-grow: 1;
}
@media screen and (min-width: 992px) {
  .header__container nav .container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 991px) {
  .header__container nav .container {
    flex-flow: column;
    row-gap: 15px;
  }
}
@media screen and (max-width: 991px) {
  .header__container nav {
    position: absolute;
    z-index: -1;
    width: 100%;
    background: var(--white);
    left: 0;
    top: 100%;
    transform: translateY(-100px);
    opacity: 0;
    visibility: hidden;
    background: var(--gray-3);
    padding: 20px 0;
    transition: var(--trans);
  }
}
.header .auth-header {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-flow: wrap;
  margin-left: auto;
}
@media screen and (max-width: 991px) {
  .header .auth-header {
    margin-left: 0;
    width: 100%;
  }
}
.header .auth-header__detail {
  font-size: 12px;
}
@media screen and (max-width: 991px) {
  .header .auth-header__detail {
    width: 100%;
  }
}
.header .auth-header__detail a {
  color: var(--green);
  text-decoration: underline;
}
.header .auth-header__detail a:hover {
  opacity: 0.75;
}
.header .auth-header__detail strong {
  font-weight: 600;
  font-size: 14px;
}
.header ul {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 991px) {
  .header ul {
    width: 100%;
    gap: 15px;
  }
}
.header a {
  font-size: var(--body-14);
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (max-width: 1200px) {
  .header .logo {
    max-width: 100px;
  }
}
.header .search {
  min-width: 400px;
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1400px) {
  .header .search {
    min-width: 300px;
  }
}
@media screen and (max-width: 1200px) {
  .header .search {
    min-width: 200px;
    max-width: 200px;
  }
}
@media screen and (max-width: 991px) {
  .header .search {
    width: 100%;
    max-width: none;
  }
}
.header .search .btn-icon {
  position: absolute;
  right: 14px;
  z-index: 2;
}
.header .search label {
  width: 100%;
}
.header .btn-toggle {
  display: none;
}
@media screen and (max-width: 991px) {
  .header .btn-toggle {
    display: flex;
  }
}

.btn-burger {
  width: 25px;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  position: relative;
  height: 13px;
  background: none;
  border-radius: 0;
  padding: 0;
  border: none;
  justify-content: center;
  align-items: center;
  background: none !important;
  gap: 3px;
}
.btn-burger span {
  position: relative;
  width: 100%;
  border-radius: 10px;
  height: 2px;
  background: var(--black);
  transition: 0.3s;
}

.active-menu .btn-burger span {
  position: absolute;
}
.active-menu .btn-burger span:nth-child(1) {
  transform: rotate(-25deg);
}
.active-menu .btn-burger span:nth-child(2) {
  opacity: 0;
}
.active-menu .btn-burger span:nth-child(3) {
  transform: rotate(25deg);
}
.active-menu .header nav {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.footer {
  position: relative;
  background: var(--gray-3);
}
.footer__nav {
  background: var(--gradient);
  padding: 33px 0;
}
@media screen and (max-width: 991px) {
  .footer__nav {
    padding: 15px 0;
  }
}
.footer__nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: wrap;
  row-gap: 20px;
}
.footer__nav ul {
  display: flex;
  gap: 36px;
  flex-flow: wrap;
}
@media screen and (max-width: 991px) {
  .footer__nav ul {
    gap: 15px;
  }
  .footer__nav ul a {
    font-size: 15px;
  }
}
@media screen and (max-width: 991px) {
  .footer__nav ul a {
    font-size: 11px;
  }
}
.footer__nav a {
  font-weight: 600;
  font-size: var(--body-20);
  color: var(--white);
}
.footer__nav a:hover {
  opacity: 0.75;
}
.footer__nav .btn {
  padding: 0;
  transition: 0.3s;
}
@media screen and (max-width: 575px) {
  .footer__nav .btn {
    display: none;
  }
}
.footer__nav .btn::before {
  display: none;
}
.footer__nav .btn:hover {
  opacity: 0.6;
}
.footer-row {
  display: flex;
  padding: 40px 0;
  flex-flow: wrap;
}
@media screen and (max-width: 768px) {
  .footer-row {
    padding: 20px 0;
  }
}
.footer-row__col {
  width: 25%;
}
@media screen and (max-width: 991px) {
  .footer-row__col:first-child {
    order: 1;
    width: 50%;
  }
}
.footer-row__col:nth-child(2) {
  width: 58.3333333333%;
}
@media screen and (max-width: 991px) {
  .footer-row__col:nth-child(2) {
    order: 3;
    width: 100%;
  }
}
.footer-row__col:nth-child(2) ul {
  column-count: 2;
  max-width: 410px;
}
.footer-row__col:nth-child(3) {
  width: 16.6666666667%;
}
@media screen and (max-width: 991px) {
  .footer-row__col:nth-child(3) {
    order: 2;
    width: 50%;
  }
}
.footer-row__col a {
  font-size: var(--body-14);
  font-weight: 400;
  line-height: 1.5;
  padding-bottom: 12px;
  display: block;
}
@media screen and (max-width: 575px) {
  .footer-row__col a {
    font-size: 13px;
  }
}
.footer-row__col .btn {
  display: inline-flex;
}
@media screen and (max-width: 575px) {
  .footer-row__col .btn {
    width: 100%;
    justify-content: center;
  }
}
.footer-row .footer-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  gap: 10px;
  width: 100%;
}
.footer-row .footer-link i {
  font-size: 20px;
  color: var(--green);
}
.footer-title {
  color: var(--green);
  font-weight: 500;
  margin-bottom: 20px;
}

.copyright {
  display: flex;
  justify-content: space-between;
  padding-bottom: 35px;
  font-size: 12px;
  color: var(--gray-1);
}
@media screen and (max-width: 768px) {
  .copyright {
    padding-bottom: 20px;
    justify-content: center;
    align-items: center;
    flex-flow: column-reverse;
    row-gap: 10px;
  }
  .copyright .links {
    flex-flow: column;
    display: flex;
    row-gap: 10px;
  }
}
.copyright a {
  font-size: 12px;
  text-decoration: underline;
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .copyright a {
    margin-left: 0;
  }
}

.welcome-wrapper {
  position: relative;
  color: var(--white);
  background: var(--gradient);
  display: none;
}
.welcome-wrapper.show {
  display: block;
}
.welcome-wrapper::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../img/welcome.png");
  mix-blend-mode: screen;
  z-index: 0;
  background-position: center;
  background-size: cover;
}
.welcome-wrapper .container {
  position: relative;
  z-index: 2;
}
.welcome-wrapper .desc-block {
  max-width: 650px;
}
.welcome-wrapper .hide-message {
  position: absolute;
  right: 30px;
  top: 30px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: var(--body-14);
}
.welcome-wrapper .hide-message i {
  font-size: 20px;
}

.hero-articles .news-item:first-child {
  width: 100%;
}
.hero-articles .news-item:first-child .news-item__image {
  width: 50%;
}
@media screen and (max-width: 991px) {
  .hero-articles .news-item:first-child .news-item__image {
    width: 100%;
  }
}
.hero-articles .news-item:first-child .news-item__content {
  width: calc(50% - 24px);
}
@media screen and (max-width: 991px) {
  .hero-articles .news-item:first-child .news-item__content {
    width: 100%;
  }
}
.hero-articles .news-item:first-child .news-title {
  font-size: var(--title-28);
}
@media screen and (max-width: 575px) {
  .hero-articles .news-item:first-child .news-title {
    font-size: 20px;
  }
}
.hero-articles .news-item:first-child .news-desc {
  -webkit-line-clamp: 5;
  line-clamp: 5;
  display: -webkit-box;
}
.hero-articles .news-item .news-desc {
  display: none;
}

.auth-inner {
  padding: 35px;
  border-radius: 8px;
  background: var(--gray-3);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 575px) {
  .auth-inner {
    padding: 20px;
  }
}
.auth-inner__head {
  text-align: center;
  margin-bottom: 35px;
}
.auth-inner .desc-block {
  line-height: 1.5;
}
@media screen and (max-width: 575px) {
  .auth-inner .desc-block {
    line-height: 1.25;
  }
  .auth-inner .desc-block br {
    display: none;
  }
}
.auth-inner .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  margin-top: 24px;
}

.auth-info .desc-block {
  font-size: var(--body-14);
  text-align: center;
  margin: 25px 0;
}
.auth-info__links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-flow: wrap;
  row-gap: 10px;
}
.auth-info__links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}
.auth-info__links a i {
  color: var(--green);
  font-size: 24px;
}
.auth-info__error {
  color: var(--red);
  font-size: 12px;
  text-align: center;
  line-height: 1.3;
  margin-top: 24px;
}

.article-wrapper {
  padding: 0;
}

.article-row {
  display: flex;
  flex-flow: wrap;
  align-items: flex-start;
}
.article-row__content {
  border-right: 1px solid var(--gray-2);
  padding: 0 35px 0;
  padding-left: 0;
  width: 66.6666666667%;
}
@media screen and (max-width: 991px) {
  .article-row__content {
    width: 100%;
    border: none;
    padding-right: 0;
  }
}
.article-row__sidebar {
  width: 33.3333333333%;
  padding: 35px;
  padding-right: 0;
  position: sticky;
  margin-top: 95px;
  top: 0px;
}
@media screen and (max-width: 991px) {
  .article-row__sidebar {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
    padding-top: 0;
  }
}

.article-head {
  padding: 30px 0 25px;
}
@media screen and (max-width: 575px) {
  .article-head {
    padding-top: 0;
  }
}
.article-head .news-meta {
  margin-top: 65px;
}
@media screen and (max-width: 575px) {
  .article-head .news-meta {
    margin-top: 30px;
  }
}

.article-content {
  line-height: 1.5;
  position: relative;
}
.article-content.article-subscription::after {
  content: "";
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 300px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) -26.16%, rgba(255, 255, 255, 0.75) 18.08%, #FFF 62.32%);
}
.article-content h1, .article-content h2, .article-content h3, .article-content h4, .article-content h5, .article-content h6 {
  margin-bottom: 24px;
  font-weight: bold;
}
@media screen and (max-width: 575px) {
  .article-content h1, .article-content h2, .article-content h3, .article-content h4, .article-content h5, .article-content h6 {
    line-height: 1.2;
  }
}
.article-content p, .article-content ul, .article-content ol, .article-content figure, .article-content img, .article-content blockquote, .article-content .blockquote-wrapper {
  margin-bottom: 20px;
}
.article-content p:last-child, .article-content ul:last-child, .article-content ol:last-child, .article-content figure:last-child, .article-content img:last-child, .article-content blockquote:last-child, .article-content .blockquote-wrapper:last-child {
  margin-bottom: 0;
}
.article-content figure img {
  margin-bottom: 12px;
}

.related-news {
  padding-top: 55px;
  margin-top: 55px;
  position: relative;
}
@media screen and (max-width: 575px) {
  .related-news {
    padding-top: 30px;
    margin-top: 30px;
  }
}
.related-news::before {
  content: "";
  width: 100vw;
  height: 1px;
  background: var(--gray-2);
  position: absolute;
  top: 0;
  right: -35px;
}
@media screen and (max-width: 575px) {
  .related-news::before {
    width: 120vw;
    right: 0;
  }
}
.related-news__item {
  margin-bottom: 55px;
}
@media screen and (max-width: 575px) {
  .related-news__item {
    margin-bottom: 30px;
  }
}
.related-news__item:not(:first-child) {
  position: relative;
  padding-top: 30px;
}
.related-news__item:not(:first-child)::before {
  content: "";
  width: 100vw;
  height: 1px;
  background: var(--gray-2);
  position: absolute;
  top: 0;
  right: -35px;
}
@media screen and (max-width: 575px) {
  .related-news__item:not(:first-child)::before {
    width: 120vw;
    right: -15px;
  }
}
.related-news__item:last-child {
  margin-bottom: 0;
}
.related-news__title {
  margin-bottom: 35px;
}
.related-news .list-view .news-item:last-child {
  margin-bottom: 0;
}
.related-news .list-view .news-item .news-desc {
  display: none !important;
}
.related-news .list-view .news-item__image {
  min-height: 130px;
  width: 30%;
}
@media screen and (max-width: 575px) {
  .related-news .list-view .news-item__image {
    width: 100%;
  }
}
.related-news .list-view .news-item__content {
  width: calc(70% - 24px);
}
@media screen and (max-width: 575px) {
  .related-news .list-view .news-item__content {
    width: 100%;
  }
}
.related-news .list-view .news-item .news-title {
  font-size: var(--body-20);
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: wrap;
  color: var(--gray-1);
  font-size: 14px;
  margin-top: 35px;
}
.article-meta__left {
  display: flex;
  gap: 20px;
  align-items: center;
}
.article-meta__left a {
  margin-top: 0;
}
.article-meta__item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-1);
}
.article-meta__item i {
  font-size: 20px;
  color: var(--black);
}

.subscription {
  padding: 0 30px;
  text-align: center;
  margin-top: -60px;
  position: relative;
  z-index: 5;
  padding-bottom: 100px;
}
@media screen and (max-width: 575px) {
  .subscription {
    padding: 0;
  }
}
.subscription .title {
  max-width: 475px;
  margin-left: auto;
  margin-right: auto;
}
.subscription ul {
  max-width: 325px;
  text-align: left;
  font-size: 14px;
  margin: 30px auto;
}
.subscription ul li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 16px;
}
.subscription ul li:last-child {
  margin-bottom: 0;
}
.subscription ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  display: inline-block;
  border-radius: 50%;
  background: var(--green);
  background-image: url("../img/icons/star.png");
  background-position: center;
  background-size: 14px;
  background-repeat: no-repeat;
}
.subscription .desc-block {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.subscription .desc-block a {
  text-decoration: underline;
}
.subscription .btn {
  margin-top: 30px;
}

.page-wrapper {
  background: var(--gray-3);
  border-top: 1px solid var(--gray-2);
  position: relative;
  overflow: hidden;
}
.page-wrapper::before {
  content: "";
  width: 35vw;
  aspect-ratio: 1;
  background-image: url("../img/glow-green.png");
  background-size: cover;
  position: absolute;
  left: -17.5vw;
  top: -10vh;
  opacity: 0.35;
}
.page-wrapper::after {
  content: "";
  width: 35vw;
  aspect-ratio: 1;
  background-image: url("../img/glow-blue.png");
  background-size: cover;
  position: absolute;
  right: -17.5vw;
  bottom: -20vh;
  opacity: 0.35;
}
.page-wrapper .container {
  position: relative;
  z-index: 3;
}

.form-row {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
}
.form-row .input {
  width: 100%;
}
.form-row .label-input {
  width: calc(50% - 10px);
  margin-top: 0;
}
@media screen and (max-width: 575px) {
  .form-row .label-input {
    width: 100%;
  }
}
.form-row .label-full {
  width: 100%;
}

.callback {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.callback__title {
  text-align: center;
  font-weight: bold;
  color: var(--black);
  margin-bottom: 24px;
}
.callback .desc-block {
  margin-bottom: 60px;
  text-align: center;
  font-size: var(--body-20);
}
.callback .btn {
  width: 100%;
  justify-content: center;
}

.page-404 {
  background-position: center bottom;
  background-size: cover;
  background-color: var(--gray-3);
  background-image: url("../img/404-bg.jpg");
}
.page-404::after, .page-404::before {
  display: none;
}

.error-page {
  text-align: center;
}
.error-page__title {
  text-align: center;
  margin: 36px 0;
}
.error-page .btns-row {
  justify-content: center;
  width: 100%;
}
.error-page .btns-row .btn {
  width: 240px;
  justify-content: center;
}

.contacts {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
}
.contacts__item {
  width: calc(33.3333333333% - 13.3333333333px);
  padding: 32px;
  background: var(--white);
  box-shadow: 0px 0px 16px -4px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 991px) {
  .contacts__item {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 575px) {
  .contacts__item {
    width: 100%;
  }
}
.contacts__icon {
  width: 40px;
  height: 40px;
  color: var(--green);
  font-size: 40px;
  margin-bottom: 48px;
}
.contacts__title {
  font-size: var(--body-20);
  font-weight: bold;
  margin-bottom: 10px;
}
.contacts__text {
  line-height: 1.5;
}
.contacts__link {
  font-size: 12px;
  color: var(--green);
  display: inline-block;
  text-decoration: underline;
  margin-top: 8px;
}
.contacts__link:hover {
  color: var(--black);
}

.title-middle {
  font-size: var(--title-28);
  font-weight: bold;
}
@media screen and (max-width: 575px) {
  .title-middle {
    font-size: 24px;
  }
}

.lk-wrapper {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
  margin-top: 65px;
}
.lk-wrapper__col {
  background: var(--gray-3);
  padding: 44px;
  border-radius: 8px;
  width: calc(50% - 10px);
  display: flex;
  flex-flow: column;
  gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 1400px) {
  .lk-wrapper__col {
    padding: 25px;
  }
}
@media screen and (max-width: 991px) {
  .lk-wrapper__col {
    width: 100%;
  }
}
.lk-wrapper .title-middle {
  margin-bottom: 16px;
}
.lk-wrapper strong {
  font-weight: 600;
}

.lk-col-desc {
  font-size: 14px;
  line-height: 1.5;
}

.change-pass {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
  column-gap: 12px;
  margin-bottom: 20px;
  width: 100%;
}
.change-pass .label-password {
  flex-flow: wrap;
  width: 60%;
  flex-grow: 1;
}
@media screen and (max-width: 1200px) {
  .change-pass .label-password {
    width: 100%;
  }
}
.change-pass .label-password .input {
  width: 100%;
}
.change-pass .label-password .input::after {
  background: var(--gray-2);
}
.change-pass .btn {
  text-align: center;
  justify-content: center;
  width: calc(40% - 12px);
  border-color: var(--gray-1);
  transition: 0.3s;
  padding: 15px;
}
@media screen and (max-width: 1400px) {
  .change-pass .btn {
    font-size: 14px;
  }
}
@media screen and (max-width: 1200px) {
  .change-pass .btn {
    width: 100%;
  }
}
.change-pass__title {
  font-size: 14px;
  width: 100%;
  font-weight: bold;
}

.lk-details {
  display: flex;
  flex-flow: column;
  gap: 24px;
}
.lk-details__item {
  display: flex;
  flex-flow: column;
  gap: 10px;
}
.lk-details strong {
  font-weight: bold;
  font-size: 14px;
}

.btn-exit {
  font-size: 14px;
  background: #fff0;
  transition: 0.3s;
  padding: 11px 16px;
}
.btn-exit:hover {
  background: var(--white);
}

.selected-cats {
  display: flex;
  flex-flow: wrap;
  gap: 25px;
}
@media screen and (max-width: 575px) {
  .selected-cats {
    gap: 15px;
  }
}
.selected-cats label {
  width: calc(50% - 12.5px);
}
@media screen and (max-width: 575px) {
  .selected-cats label {
    width: 100%;
  }
}

.password-requied {
  font-size: 13px;
  color: #32AF00;
  display: flex;
  flex-flow: column;
  gap: 10px;
  margin: 12px 0 24px;
}
@media screen and (max-width: 575px) {
  .password-requied {
    font-size: 11px;
  }
}
.password-requied .error {
  color: var(--red);
}
.password-requied i {
  font-size: 15px;
}
.password-requied p {
  display: flex;
  align-items: center;
  gap: 6px;
}
/*# sourceMappingURL=main.css.map */

.page-doc-list ul {
    list-style: disc;
}