@charset "UTF-8";
/*!
 RichText: WYSIWYG editor developed as jQuery plugin

 @name RichText
 @author https://github.com/webfashionist - Bob Schockweiler - richtext@webfashion.eu

 Copyright (C) 2020 Bob Schockweiler ( richtext@webfashion.eu )

 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU Affero General Public License as published
 by the Free Software Foundation, either version 3 of the License, or
 (at your option) any later version.

 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU Affero General Public License for more details.

 You should have received a copy of the GNU Affero General Public License
 along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/
.richText {
  z-index: 1;
  position: relative;
  background-color: #FAFAFA;
  border: #EFEFEF solid 1px;
  color: #333333;
  width: 100%;
}
.richText .richText-form {
  font-family: Calibri, Verdana, Helvetica, sans-serif;
}
.richText .richText-form label {
  display: block;
  padding: 10px 15px;
}
.richText .richText-form input[type=text], .richText .richText-form input[type=file], .richText .richText-form input[type=number], .richText .richText-form select {
  padding: 10px 15px;
  border: #999999 solid 1px;
  min-width: 200px;
  width: 100%;
}
.richText .richText-form select {
  cursor: pointer;
}
.richText .richText-form button {
  margin: 10px 0;
  padding: 10px 15px;
  background-color: #3498db;
  border: none;
  color: #FAFAFA;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.richText .richText-toolbar {
  position: sticky;
  top: 0;
  min-height: 20px;
  background-color: inherit;
  border-bottom: #EFEFEF solid 1px;
  z-index: 1;
}
.richText .richText-toolbar .richText-length {
  font-family: Verdana, Helvetica, sans-serif;
  font-size: 13px;
  vertical-align: middle;
  line-height: 34px;
}
.richText .richText-toolbar .richText-length .black {
  color: #000;
}
.richText .richText-toolbar .richText-length .orange {
  color: orange;
}
.richText .richText-toolbar .richText-length .red {
  color: red;
}
.richText .richText-toolbar ul {
  padding-left: 0;
  padding-right: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.richText .richText-toolbar ul li {
  float: left;
  display: block;
  list-style: none;
}
.richText .richText-toolbar ul li a {
  display: block;
  padding: 10px 13px;
  border-right: #EFEFEF solid 1px;
  cursor: pointer;
  -webkit-transition: background-color 0.4s;
  -moz-transition: background-color 0.4s;
  transition: background-color 0.4s;
}
.richText .richText-toolbar ul li a .fa, .richText .richText-toolbar ul li a .fas, .richText .richText-toolbar ul li a .far, .richText .richText-toolbar ul li a svg {
  pointer-events: none;
}
.richText .richText-toolbar ul li a .richText-dropdown-outer {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  cursor: default;
}
.richText .richText-toolbar ul li a .richText-dropdown-outer .richText-dropdown {
  position: relative;
  display: block;
  margin: 3% auto 0 auto;
  background-color: #FAFAFA;
  border: #EFEFEF solid 1px;
  min-width: 100px;
  width: 300px;
  max-width: 90%;
  -webkit-box-shadow: 0 0 5px 0 #333;
  -moz-box-shadow: 0 0 5px 0 #333;
  box-shadow: 0 0 5px 0 #333;
}
.richText .richText-toolbar ul li a .richText-dropdown-outer .richText-dropdown .richText-dropdown-close {
  position: absolute;
  top: 0;
  right: -23px;
  background: #FFF;
  color: #333;
  cursor: pointer;
  font-size: 20px;
  text-align: center;
  width: 20px;
}
.richText .richText-toolbar ul li a .richText-dropdown-outer ul.richText-dropdown {
  list-style: none;
}
.richText .richText-toolbar ul li a .richText-dropdown-outer ul.richText-dropdown li {
  display: block;
  float: none;
  font-family: Calibri, Verdana, Helvetica, sans-serif;
}
.richText .richText-toolbar ul li a .richText-dropdown-outer ul.richText-dropdown li a {
  display: block;
  padding: 10px 15px;
  border-bottom: #EFEFEF solid 1px;
}
.richText .richText-toolbar ul li a .richText-dropdown-outer ul.richText-dropdown li a:hover {
  background-color: #FFFFFF;
}
.richText .richText-toolbar ul li a .richText-dropdown-outer ul.richText-dropdown li.inline {
  margin: 10px 6px;
  float: left;
}
.richText .richText-toolbar ul li a .richText-dropdown-outer ul.richText-dropdown li.inline a {
  display: block;
  padding: 0;
  margin: 0;
  border: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 10px 0 #999;
  -moz-box-shadow: 0 0 10px 0 #999;
  box-shadow: 0 0 10px 0 #999;
}
.richText .richText-toolbar ul li a .richText-dropdown-outer ul.richText-dropdown li.inline a span {
  display: block;
  height: 30px;
  width: 30px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.richText .richText-toolbar ul li a .richText-dropdown-outer div.richText-dropdown {
  padding: 10px 15px;
}
.richText .richText-toolbar ul li a:hover {
  background-color: #FFFFFF;
}
.richText .richText-toolbar ul li[data-disable=true] {
  opacity: 0.1;
}
.richText .richText-toolbar ul li[data-disable=true] a {
  cursor: default;
}
.richText .richText-toolbar ul li:not([data-disable=true]).is-selected .richText-dropdown-outer {
  display: block;
}
.richText .richText-toolbar ul:after {
  display: block;
  content: "";
  clear: both;
}
.richText .richText-toolbar:last-child {
  font-size: 12px;
  z-index: -1;
}
.richText .richText-toolbar:after {
  display: block;
  clear: both;
  content: "";
}
.richText .richText-editor {
  padding: 20px;
  background-color: #FFFFFF;
  border-left: #FFFFFF solid 2px;
  font-family: Calibri, Verdana, Helvetica, sans-serif;
  height: 300px;
  outline: none;
  overflow-y: scroll;
  overflow-x: auto;
}
.richText .richText-editor[placeholder]:before {
  content: attr(placeholder);
  color: #555;
}
.richText .richText-editor ul, .richText .richText-editor ol {
  margin: 10px 25px;
}
.richText .richText-editor table {
  margin: 10px 0;
  border-spacing: 0;
  width: 100%;
}
.richText .richText-editor table td, .richText .richText-editor table th {
  padding: 10px;
  border: #EFEFEF solid 1px;
}
.richText .richText-editor:focus {
  border-left: #3498db solid 2px;
}
.richText .richText-initial {
  margin-bottom: -4px;
  padding: 10px;
  background-color: #282828;
  border: none;
  color: #33FF33;
  font-family: Monospace, Calibri, Verdana, Helvetica, sans-serif;
  max-width: 100%;
  min-width: 100%;
  width: 100%;
  min-height: 400px;
  height: 400px;
}
.richText .richText-help {
  float: right;
  display: block;
  padding: 10px 15px;
  cursor: pointer;
}
.richText .richText-undo,
.richText .richText-redo {
  float: left;
  display: block;
  padding: 10px 15px;
  border-right: #EFEFEF solid 1px;
  cursor: pointer;
}
.richText .richText-undo.is-disabled,
.richText .richText-redo.is-disabled {
  opacity: 0.4;
}
.richText .richText-help-popup a {
  color: #3498db;
  text-decoration: underline;
}
.richText .richText-help-popup hr {
  margin: 10px auto 5px auto;
  border: none;
  border-top: #EFEFEF solid 1px;
}
.richText .richText-list.list-rightclick {
  position: absolute;
  background-color: #FAFAFA;
  border-right: #EFEFEF solid 1px;
  border-bottom: #EFEFEF solid 1px;
}
.richText .richText-list.list-rightclick li {
  padding: 5px 7px;
  cursor: pointer;
  list-style: none;
}

@font-face {
  font-family: Onest;
  font-display: swap;
  src: url(../fonts/OnestExtraBold.woff) format("woff"), url(../fonts/OnestExtraBold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Onest;
  font-display: swap;
  src: url(../fonts/OnestBold.woff) format("woff"), url(../fonts/OnestBold.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: Onest;
  font-display: swap;
  src: url(../fonts/OnestMedium.woff) format("woff"), url(../fonts/OnestMedium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: Onest;
  font-display: swap;
  src: url(../fonts/OnestRegular.woff) format("woff"), url(../fonts/OnestRegular.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
}
.header {
  background-color: #fff;
  width: 100%;
  z-index: 9999;
  position: relative;
}
.header__top {
  width: 100%;
  padding: 20px 0px;
  position: relative;
}
@media screen and (max-width: 568px) {
  .header__top {
    padding: 12px 0px;
  }
}
.header__top .logo {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
}
.header__top .logo img {
  width: auto;
  height: 38px;
}
@media screen and (max-width: 568px) {
  .header__top .logo img {
    height: 32px;
  }
}
.header__top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.header__top-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
}
@media screen and (max-width: 1100px) {
  .header__top-list {
    gap: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .header__top-list {
    display: none;
  }
}
.header__top-item {
  position: relative;
}
.header__top-item a {
  text-decoration: none;
  color: #070809;
  font-size: 15px;
  font-family: "Onest", sans-serif;
  font-weight: normal;
  font-style: normal;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  opacity: 0.8;
}
.header__top-item a:hover {
  color: #0092d0;
  opacity: 1;
}
.header__top-item span {
  text-decoration: none;
  color: #070809;
  font-size: 15px;
  font-family: "Onest", sans-serif;
  font-weight: normal;
  font-style: normal;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  opacity: 0.3;
}
.header__top-item span .icon {
  position: relative;
  top: 0px;
}
.header__top-item span:hover {
  color: #0092d0;
  opacity: 1;
}
.header__top .more-list {
  list-style: none;
  position: absolute;
  top: 32px;
  background-color: #fff;
  z-index: 5;
  padding: 16px 18px;
  left: -18px;
  min-width: 170px;
  display: none;
  flex-direction: column;
  gap: 8px;
  border-top-left-radius: 8px;
  border-top-right-radius: 24px;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 8px;
  box-shadow: 0px 8px 20px 0px rgba(24, 39, 75, 0.12);
}
.header__top .more-item {
  margin-bottom: 8px;
}
.header__top .more-item:last-child {
  margin-bottom: 0;
}
.header__top .more-item a {
  text-decoration: none;
  color: #070809;
  font-size: 15px;
  font-family: "Onest", sans-serif;
  font-weight: normal;
  font-style: normal;
  transition: all 0.3s;
}
.header__top .more-item a:hover {
  color: #0092d0;
  opacity: 1;
}
.header__top-other {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__top-user {
  display: flex;
  align-items: center;
}
.header__top-login {
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
  cursor: pointer;
}
.header__top-login:hover .title {
  color: #0092d0;
}
.header__top-login:hover .icon .default {
  opacity: 0;
}
.header__top-login:hover .icon .hover {
  opacity: 1;
}
.header__top-login .icon {
  width: 24px;
  height: 24px;
  position: relative;
  transition: all 0.3s;
}
.header__top-login .icon .hover {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.header__top-login .title {
  color: #070809;
  font-size: 15px;
  font-weight: 500;
  font-family: "Onest", sans-serif;
  font-style: normal;
}
.header__top-authorized {
  position: relative;
  margin-left: 10px;
}
.header__top-authorized .authorized {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
}
.header__top-authorized .authorized.bell::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #D2392F;
  z-index: 9999;
}
.header__top-authorized .authorized:hover .authorized__name {
  color: #0092d0;
}
.header__top-authorized .authorized__avatar {
  width: 40px;
  min-width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 100%;
  transition: all 0.5s;
}
.header__top-authorized .authorized__avatar:hover {
  box-shadow: 0px 8px 24px -4px rgba(24, 39, 75, 0.08), 0px 6px 12px -6px rgba(24, 39, 75, 0.12);
}
.header__top-authorized .authorized__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header__top-authorized .authorized__name {
  color: #070809;
  font-size: 15px;
  font-weight: normal;
  font-style: normal;
  transition: all 0.3s;
  font-family: "Onest", sans-serif;
}
@media screen and (max-width: 786px) {
  .header__top-authorized .authorized__name {
    display: none;
  }
}
.header__top-authorized .authorized-modal {
  position: absolute;
  top: 50px;
  z-index: 5;
  padding-bottom: 10px;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 20px;
  right: 0px;
  min-width: 280px;
  display: none;
  border-radius: 12px;
  border: 1px solid rgba(243, 243, 244, 0.3);
  background: #FFF;
  box-shadow: 0px 8px 20px -6px rgba(7, 8, 9, 0.5);
}
.header__top-authorized .authorized-modal .btn {
  display: none;
}
@media screen and (max-width: 700px) {
  .header__top-authorized .authorized-modal .btn {
    display: flex;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    background: #0293E9;
  }
}
.header__top-authorized .authorized-modal__user {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-left: 10px;
  padding-right: 10px;
}
.header__top-authorized .authorized-modal__user:hover .avatar {
  box-shadow: 0px 8px 24px -4px rgba(24, 39, 75, 0.08), 0px 6px 12px -6px rgba(24, 39, 75, 0.12);
}
.header__top-authorized .authorized-modal__user .avatar {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 100%;
  overflow: hidden;
  position: relative;
  transition: all 0.5s;
}
.header__top-authorized .authorized-modal__user .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header__top-authorized .authorized-modal__user .user-info {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
  gap: 2px;
}
.header__top-authorized .authorized-modal__user .name {
  font-family: "Onest", sans-serif;
  color: #070809;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  transition: all 0.3s;
}
.header__top-authorized .authorized-modal__user .username {
  font-family: "Onest", sans-serif;
  color: #070809;
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  opacity: 0.5;
}
.header__top-authorized .authorized-modal__list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.header__top-authorized .authorized-modal__list:last-child {
  margin-top: 5px;
  padding-top: 5px;
}
.header__top-authorized .authorized-modal__item.logout a {
  color: #D2392F;
}
.header__top-authorized .authorized-modal__link {
  text-decoration: none;
  color: #070809;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  font-family: "Onest", sans-serif;
  display: flex;
  align-items: center;
  gap: 5px;
  height: 38px;
  position: relative;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 10px;
  transition: all 0.3s;
}
.header__top-authorized .authorized-modal__link:hover {
  background: #F3F3F4;
}
.header__top-authorized .authorized-modal__link .title {
  display: flex;
  align-items: center;
  gap: 5px;
}
.header__top-authorized .authorized-modal__link .title .label-balance {
  background-color: #E7E7E9;
  padding: 4px 6px;
  border-radius: 20px;
  font-size: 12px;
  font-family: "Onest", sans-serif;
  font-weight: 500;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(7, 8, 9, 0.7);
  text-align: center;
}
.header__top-authorized .authorized-modal__link .title .number-bell {
  background-color: #D2392F;
  width: 18px;
  min-width: 18px;
  height: 18px;
  padding: 2px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-family: "Onest", sans-serif;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
.header__top-authorized .authorized-modal__link .icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__top-create {
  background-color: #0293E9;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  font-style: normal;
  border-radius: 8px;
  padding: 9px 18px;
  height: 40px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.header__top-create:hover {
  background-color: #0092d0;
}
@media screen and (max-width: 700px) {
  .header__top-create {
    display: none;
  }
}
.header__top-lang {
  position: relative;
  margin-right: 5px;
}
@media screen and (max-width: 1024px) {
  .header__top-lang {
    display: none;
  }
}
.header__top-lang .lang {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 8px;
  padding: 9px 12px;
  height: 40px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.header__top-lang .lang:hover {
  background: #F3F3F4;
}
.header__top-lang .lang-title {
  color: #070809;
  font-size: 15px;
  font-weight: normal;
  font-family: "Onest", sans-serif;
  font-style: normal;
  opacity: 0.8;
}
.header__top-lang .lang:hover {
  color: #0092d0;
}
.header__top-lang .lang .icon {
  position: relative;
  top: 2px;
}
.header__top-lang .lang .icon img {
  width: 16px;
  height: 16px;
}
.header__top-lang .list-lang {
  display: none;
  list-style: none;
  position: absolute;
  top: 45px;
  background-color: #fff;
  z-index: 5;
  left: -16px;
  min-width: 140px;
  border-radius: 12px;
  padding: 10px 10px;
  box-shadow: 0px 8px 20px 0px rgba(24, 39, 75, 0.12);
}
.header__top-lang .list-lang__item {
  display: flex;
  align-items: center;
  min-height: 36px;
  position: relative;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 10px;
  transition: all 0.3s;
}
.header__top-lang .list-lang__item:hover {
  background: #F3F3F4;
}
.header__top-lang .list-lang__item:last-child {
  margin-bottom: 0;
}
.header__top-lang .list-lang__item a {
  color: #070809;
  font-size: 15px;
  font-weight: normal;
  font-family: "Onest", sans-serif;
  font-style: normal;
  opacity: 1;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  transition: all 0.3s;
}
.header__top-lang .list-lang__item a .icon {
  width: 24px;
  height: 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__top-lang .list-lang__item a .icon img {
  width: 100%;
  height: 100%;
}
.header__top-search-m {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header__top-search-m {
    display: flex;
    flex: 1;
  }
  .header__top-search-m .search-icon-m {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
  }
  .header__top-search-m .mobile-search {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    position: absolute;
    top: 53px;
    left: -30px;
    right: 0;
    padding-left: 30px;
    padding-right: 30px;
    width: 100vw;
    background-color: #fff;
    height: 50px;
    z-index: 1;
    border-top: 1px solid rgba(221, 221, 221, 0.5);
    box-shadow: 0px 8px 20px -6px rgba(7, 8, 9, 0.12);
  }
}
@media screen and (max-width: 1024px) and (max-width: 568px) {
  .header__top-search-m .mobile-search {
    padding-left: 15px;
    padding-right: 15px;
    top: 50px;
    left: -15px;
  }
}
@media screen and (max-width: 1024px) {
  .header__top-search-m .mobile-search__input {
    display: block;
    height: 48px;
    width: 100%;
  }
  .header__top-search-m .mobile-search__input input {
    height: 100%;
    width: 100%;
    height: 100%;
    font-size: 16px;
    font-family: "Onest", sans-serif;
    font-weight: 500;
    color: #070809;
  }
}
@media screen and (max-width: 1024px) {
  .header__top-search-m .mobile-search .search-input-label {
    display: block;
    height: 48px;
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .header__top-search-m .mobile-search__close {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header__top-search-m .mobile-search__close img {
    width: 90%;
    height: 90%;
    object-fit: contain;
  }
}
.header__top-burger-m {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .header__top-burger-m {
    display: flex !important;
    justify-content: flex-start;
    padding: 12px;
    position: relative;
    left: -12px;
  }
}
.header__top-burger-m .burger {
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 24px;
  background: transparent;
  display: block;
  transition: all 0.5s ease;
  background: #070809;
  border-radius: 2px;
}
.header__top-burger-m .burger::before, .header__top-burger-m .burger::after {
  position: absolute;
  background: #070809;
  top: 0;
  left: 0px;
  content: "";
  height: 2px;
  width: 100%;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.header__top-burger-m .burger:hover .header__top-burger-m .burger::after {
  position: absolute;
  background: #070809;
  top: 0;
  left: 0px;
  content: "";
  height: 2px;
  width: 100%;
  transition: all 0.3s ease;
}
.header__top-burger-m .burger::before {
  top: -7px;
  transition: all 0.3s ease;
}
.header__top-burger-m .burger::after {
  top: 7px;
  transition: all 0.3s ease;
}
.header__top-burger-m.active .burger {
  background: transparent;
  transition: all 0.1s ease;
}
.header__top-burger-m.active .burger::before {
  top: 0;
  transform: rotate(45deg);
  transition: all 0.3s ease;
  background: #070809;
}
.header__top-burger-m.active .burger::after {
  top: 0;
  transform: rotate(-45deg);
  transition: all 0.3s ease;
  background: #070809;
}
.header__bottom {
  width: 100%;
  padding-top: 5px;
  padding-bottom: 18px;
}
@media screen and (max-width: 1024px) {
  .header__bottom {
    display: none;
    height: calc(100vh - 61px);
    background-color: #fff;
    overflow-x: scroll;
    padding-top: 35px;
  }
  .header__bottom-nav {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start !important;
  }
  .header__bottom-list {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start !important;
    width: 100%;
  }
  .header__bottom-list .all-project {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    width: 100%;
  }
  .header__bottom-list .all-project .burger {
    display: none !important;
  }
}
@media screen and (max-width: 991px) {
  .header__bottom {
    height: calc(var(--vh, 1vh) * 100);
    padding-bottom: 80px;
  }
}
.header__bottom.active {
  display: block !important;
}
.header__bottom .create-project {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header__bottom .create-project {
    background-color: #00AAF2;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    border-radius: 8px;
    padding: 12px 18px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
  }
}
.header__bottom-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}
.header__bottom-list {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 1100px) {
  .header__bottom-list {
    gap: 20px;
  }
}
.header__bottom-item {
  text-decoration: none;
  color: #070809;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header__bottom-item .icon {
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 1024px) {
  .header__bottom-item .icon {
    width: 25px;
    height: 25px;
  }
}
.header__bottom-item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 1024px) {
  .header__bottom-item {
    font-size: 20px;
  }
}
.header__bottom-item:hover.fin {
  color: #0293E9;
}
.header__bottom-item:hover.mat {
  color: #F9C20F;
}
.header__bottom-item:hover.vol {
  color: #D2392F;
}
.header__bottom-item:hover.fond {
  color: #97C75C;
}
@media screen and (max-width: 1024px) {
  .header__bottom-search {
    width: 100%;
    position: relative;
    top: -20px;
    display: none;
  }
}
.header__bottom-search .search-icon {
  cursor: pointer;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .header__bottom-search .search-icon {
    display: none;
  }
}
.header__bottom-search .search-icon:hover::after {
  opacity: 1;
}
.header__bottom-search .search-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  bottom: 0;
  width: 42px;
  height: 42px;
  background: #F3F3F4;
  opacity: 0;
  z-index: -1;
  border-radius: 100%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
.header__bottom-search .search {
  position: absolute;
  width: 100%;
  left: 0;
  background-color: #ffffff;
  height: 61px;
  top: -16px;
  z-index: 4;
  display: none;
}
@media screen and (max-width: 1024px) {
  .header__bottom-search .search {
    display: block !important;
    position: relative;
    top: 0;
  }
}
.header__bottom-search .search-input {
  width: 100%;
  height: 61px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__bottom-search .search-input form {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  width: 100%;
  height: 61px;
  gap: 15px;
}
.header__bottom-search .search-input-label {
  display: flex;
  align-items: center;
  width: 100%;
  height: 61px;
}
.header__bottom-search .search-input-label input {
  width: 90%;
  height: 100%;
  font-size: 24px;
  font-family: "Onest", sans-serif;
  font-weight: 500;
  color: #070809;
}
@media screen and (max-width: 1024px) {
  .header__bottom-search .search-input-label input {
    width: 100%;
  }
}
.header__bottom-search .search-input-btn {
  background: transparent;
  cursor: pointer;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  position: relative;
  width: 42px;
  min-width: 42px;
  height: 42px;
  background: #0293E9;
  border-radius: 100%;
}
.header__bottom-search .search-input-btn svg path {
  stroke: #fff;
}
.header__bottom-search .search-close {
  cursor: pointer;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  position: relative;
}
.header__bottom-search .search-close:hover::after {
  opacity: 1;
}
.header__bottom-search .search-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  bottom: 0;
  width: 42px;
  height: 42px;
  background: #F3F3F4;
  opacity: 0;
  z-index: -1;
  border-radius: 100%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
.header .all-project {
  color: #070809;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}
.header .all-project__headings {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  gap: 8px;
}
.header .all-project__headings:hover .title {
  color: #0293E9;
}
@media screen and (max-width: 1024px) {
  .header .all-project__headings {
    width: 100%;
    border-bottom: 1px solid rgba(221, 221, 221, 0.5);
    display: none;
  }
}
.header .all-project__headings:hover .burger::after {
  background: #0293E9 !important;
}
.header .all-project__headings:hover .burger::before {
  background: #0293E9 !important;
}
.header .all-project .title {
  color: #070809;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  transition: all 0.3s;
}
.header .all-project .burger {
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1.5px;
  width: 18px;
  background: transparent;
  margin: auto;
  display: block;
  transition: all 0.5s ease;
}
.header .all-project .burger::before, .header .all-project .burger::after {
  position: absolute;
  background: #070809;
  top: 0;
  left: 0px;
  content: "";
  height: 2px;
  width: 100%;
  transition: all 0.3s ease;
}
.header .all-project .burger:hover .header .all-project .burger::after {
  position: absolute;
  background: #070809;
  top: 0;
  left: 0px;
  content: "";
  height: 2px;
  width: 100%;
  transition: all 0.3s ease;
}
.header .all-project .burger::before {
  top: -4px;
  transition: all 0.3s ease;
}
.header .all-project .burger::after {
  top: 3px;
  transition: all 0.3s ease;
}
.header .all-project .burger-animate.active .burger {
  background: transparent;
  transition: all 0.1s ease;
}
.header .all-project .burger-animate.active .burger::before {
  top: 0;
  transform: rotate(45deg);
  transition: all 0.3s ease;
  background: #0293E9;
}
.header .all-project .burger-animate.active .burger::after {
  top: 0;
  transform: rotate(-45deg);
  transition: all 0.3s ease;
  background: #0293E9;
}
.header .all-project .burger-animate.active .title {
  color: #0293E9;
}
.header .all-project__dropdown {
  display: none;
  position: absolute;
  top: 35px;
  background-color: #fff;
  z-index: 1;
  padding: 15px 15px;
  left: -25px;
  border-radius: 12px;
  box-shadow: 0px 8px 20px 0px rgba(24, 39, 75, 0.12);
  width: 1320px;
}
@media screen and (max-width: 1360px) {
  .header .all-project__dropdown {
    width: 1024px;
  }
}
@media screen and (max-width: 1040px) {
  .header .all-project__dropdown {
    width: 991px;
  }
}
@media screen and (max-width: 1024px) {
  .header .all-project__dropdown {
    box-shadow: none;
    padding: 0;
    left: 0;
    border-radius: 0;
    top: 0;
    display: block !important;
    position: relative !important;
    top: 0 !important;
    width: 100%;
  }
}
.header .all-project__list {
  list-style: none;
  display: flex;
}
@media screen and (max-width: 1360px) {
  .header .all-project__list {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1024px) {
  .header .all-project__list {
    width: 100%;
    gap: 10px;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid rgba(221, 221, 221, 0.5);
    padding-bottom: 20px;
  }
}
.header .all-project__list-mobile {
  list-style: none;
  flex-direction: column;
  gap: 16px;
  display: none;
  margin-top: 24px;
}
@media screen and (max-width: 1024px) {
  .header .all-project__list-mobile {
    display: flex;
    width: 100%;
    gap: 0;
  }
  .header .all-project__list-mobile-title {
    font-size: 16px;
    width: 100%;
    padding-bottom: 8px;
    color: #070809;
    opacity: 0.4;
    display: block;
    font-weight: 500;
  }
}
.header .all-project__section {
  display: flex;
  flex-direction: column;
  padding-right: 15px;
  margin-right: 15px;
  border-right: 1px solid rgba(7, 8, 9, 0.1);
}
@media screen and (max-width: 1024px) {
  .header .all-project__section {
    border: none;
    margin-right: 0;
    padding-right: 0;
    flex-direction: row;
    gap: 20px;
    overflow-y: scroll;
    width: 100%;
  }
}
.header .all-project__section .section-item {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  gap: 5px;
  min-height: 36px;
  position: relative;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 10px;
  transition: all 0.3s;
}
.header .all-project__section .section-item:hover {
  background: #F3F3F4;
}
@media screen and (max-width: 1024px) {
  .header .all-project__section .section-item {
    padding-left: 0px;
    padding-right: 0px;
    min-width: max-content;
  }
  .header .all-project__section .section-item:hover {
    background: transparent;
  }
}
.header .all-project__section .icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .all-project__section .title {
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .header .all-project__cat-container {
    width: 100%;
  }
}
.header .all-project__cat-title {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header .all-project__cat-title {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    text-decoration: none;
    color: #070809;
    opacity: 0.5;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    font-family: "Onest", sans-serif;
    min-height: 36px;
    position: relative;
  }
}
.header .all-project__cat {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .header .all-project__cat {
    gap: 30px;
    overflow-y: scroll;
    width: 100%;
  }
}
.header .all-project__cat .cat-card {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .header .all-project__cat .cat-card {
    min-width: max-content;
  }
}
.header .all-project__cat .cat-card__link {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
  color: #070809;
  font-weight: normal;
  font-size: 15px;
  line-height: 24px;
  font-family: "Onest", sans-serif;
  gap: 5px;
  min-height: 36px;
  position: relative;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 10px;
  transition: all 0.3s;
}
.header .all-project__cat .cat-card__link:hover {
  background: #F3F3F4;
}
@media screen and (max-width: 1024px) {
  .header .all-project__cat .cat-card__link {
    padding-left: 0px;
    padding-right: 0px;
  }
  .header .all-project__cat .cat-card__link:hover {
    background: transparent;
  }
}
.header .all-project__cat .cat-card__title {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
  color: #070809;
  opacity: 0.5;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  font-family: "Onest", sans-serif;
  gap: 5px;
  min-height: 36px;
  position: relative;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .header .all-project__cat .cat-card__title {
    padding-left: 0px;
    padding-right: 0px;
  }
  .header .all-project__cat .cat-card__title:hover {
    background: transparent;
  }
}
.header .all-project__item a {
  text-decoration: none;
  color: #070809;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .header .all-project__item a {
    height: 36px;
    display: inline-flex;
    width: 100%;
    align-items: center;
    gap: 6px;
  }
  .header .all-project__item a .icon {
    position: relative;
    top: 2px;
  }
}
.header .all-project__item a:hover {
  color: #0092d0;
}
.header .all-project__spets {
  margin-left: 50px;
}
@media screen and (max-width: 1360px) {
  .header .all-project__spets {
    margin-left: 0;
    margin-top: 30px;
  }
  .header .all-project__spets .cat-card {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .header .all-project__spets {
    margin-left: 0;
  }
  .header .all-project__spets .cat-card {
    display: flex;
    flex-direction: row;
    gap: 20px;
  }
}
.header .all-project__spets .cat-card__link {
  color: #070809;
  font-size: 15px;
  font-weight: normal;
  font-style: normal;
  transition: all 0.3s;
  white-space: pre-wrap;
  padding-top: 5px;
  padding-bottom: 5px;
}
.header .all-rubric {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1100px) {
  .header .all-rubric {
    gap: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .header .all-rubric {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    margin-top: -20px;
  }
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none !important;
}

a {
  text-decoration: none;
  cursor: pointer;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

button {
  cursor: pointer;
}

html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  position: relative;
  text-rendering: optimizeLegibility;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  background-color: #FAFAFB;
  font-size: 16px;
  color: #070809;
  font-family: "Onest", sans-serif;
  overflow-x: hidden !important;
}
body.body-overflow {
  overflow-y: hidden;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1 1 auto;
}

.wrapper-caption {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wrapper-caption .wrapper-title {
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 42px;
  color: #070809;
}
@media screen and (max-width: 768px) {
  .wrapper-caption .wrapper-title {
    font-size: 32px;
    line-height: 42px;
  }
}
@media screen and (max-width: 568px) {
  .wrapper-caption .wrapper-title {
    font-size: 26px;
    line-height: 36px;
  }
}
.wrapper-caption .wrapper-description {
  opacity: 0.8;
  max-width: 420px;
  text-align: center;
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #070809;
}
.wrapper-caption .wrapper-link {
  margin-top: 12px;
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #1B50A4;
  text-decoration: none;
}

.container {
  max-width: 1340px;
  margin: 0px auto;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
}
@media screen and (max-width: 568px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.container-small-page {
  max-width: 920px;
  margin: 0 auto;
}

.project-container {
  margin-bottom: 120px;
}
.project-container .wrapper-link .title {
  color: #070809;
}
@media screen and (max-width: 568px) {
  .project-container {
    margin-bottom: 80px;
  }
}

.project-about {
  background-color: #fff;
  border-top-right-radius: 120px;
  border-bottom-left-radius: 120px;
  margin-bottom: 80px;
}

.fin-container .wrapper-link {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fin-container .wrapper-link .icon {
  background-color: #0293E9 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 100%;
}

.mat-container .wrapper-link {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mat-container .wrapper-link .icon {
  background-color: #F9C20F !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 100%;
}

.vol-container .wrapper-link {
  display: flex;
  align-items: center;
  gap: 8px;
}
.vol-container .wrapper-link .icon {
  background-color: #D2392F !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 100%;
}

.project-container .wrapper-link {
  display: flex;
  align-items: center;
  gap: 8px;
}
.project-container .wrapper-link .icon {
  background-color: #0092d0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 100%;
}

.captionPage {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 42px;
  line-height: 56px;
  font-weight: 600;
  font-family: "Onest", sans-serif;
  color: #070809;
}
@media screen and (max-width: 768px) {
  .captionPage {
    font-size: 38px;
    line-height: 48px;
  }
}
@media screen and (max-width: 568px) {
  .captionPage {
    font-size: 32px;
    line-height: 42px;
  }
}
.captionPage__icon {
  width: 42px;
  height: 42px;
}
@media screen and (max-width: 450px) {
  .captionPage__icon {
    width: 40px;
    height: 40px;
    position: absolute;
    right: 15px;
    top: 70px;
    z-index: -1;
  }
}
.captionPage__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-page {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 720px;
  max-width: 720px;
}
@media screen and (max-width: 1024px) {
  .main-page {
    width: 100%;
    max-width: 100%;
  }
}

.main-page-full {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer {
  background-color: #070809;
  width: 100%;
  margin-top: 50px;
  padding-top: 50px;
  border-radius: 40px 40px 0px 0px;
}
@media screen and (max-width: 1024px) {
  .footer {
    border-radius: 20px 20px 0px 0px;
  }
}
@media screen and (max-width: 568px) {
  .footer {
    border-radius: 10px 10px 0px 0px;
  }
}
@media screen and (max-width: 1024px) {
  .footer .container {
    display: flex;
    flex-direction: column;
  }
}
.footer .container .footer__nav {
  order: 2;
}
.footer .container .footer__main {
  order: 1;
}
@media screen and (max-width: 900px) {
  .footer .container .footer__main {
    gap: 30px;
  }
  .footer .container .footer__main .footer__row-1 {
    width: 30%;
  }
  .footer .container .footer__main .footer__row-2 {
    width: 70%;
  }
  .footer .container .footer__main .footer__col-1 {
    width: 50%;
  }
  .footer .container .footer__main .footer__col-2 {
    width: 50%;
  }
}
@media screen and (max-width: 720px) {
  .footer .container .footer__main {
    flex-direction: column;
  }
  .footer .container .footer__main .footer__row-1 {
    width: 100%;
  }
  .footer .container .footer__main .footer__row-2 {
    width: 100%;
  }
}
@media screen and (max-width: 568px) {
  .footer .container .footer__main .footer__row-2 {
    flex-direction: column;
    gap: 30px;
  }
  .footer .container .footer__main .footer__col-1 {
    width: 100%;
  }
  .footer .container .footer__main .footer__col-2 {
    width: 100%;
  }
}
.footer .container .footer__bottom {
  order: 3;
}
.footer__row-1 {
  width: 30%;
}
@media screen and (max-width: 1340px) {
  .footer__row-1 {
    width: 35%;
  }
}
@media screen and (max-width: 1230px) {
  .footer__row-1 {
    width: 30%;
  }
}
@media screen and (max-width: 1150px) {
  .footer__row-1 {
    width: 25%;
  }
}
.footer__row-2 {
  width: 70%;
  display: flex;
}
@media screen and (max-width: 1340px) {
  .footer__row-2 {
    width: 65%;
  }
}
@media screen and (max-width: 1230px) {
  .footer__row-2 {
    width: 70%;
  }
}
@media screen and (max-width: 1150px) {
  .footer__row-2 {
    width: 75%;
  }
}
.footer__col-1 {
  width: 40%;
}
.footer__col-2 {
  width: 70%;
}
.footer__nav {
  padding-bottom: 30px;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .footer__nav {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 900px) {
  .footer__nav {
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: none;
    border-top: none;
  }
  .footer__nav .footer__row-1 {
    width: 100%;
  }
  .footer__nav .footer__row-2 {
    width: 100%;
  }
  .footer__nav .footer__row-2 .footer__col-1 {
    width: 100%;
  }
  .footer__nav .footer__row-2 .footer__col-2 {
    width: 100%;
  }
}
@media screen and (max-width: 900px) {
  .footer__nav .footer__row-2 {
    flex-direction: column;
  }
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 900px) {
  .footer__nav-list {
    gap: 0px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .footer__nav-list.active .footer__list {
    display: flex;
  }
  .footer__nav-list.active .footer__nav-list-title .icon {
    transform: rotate(180deg);
  }
}
.footer__nav-list-title {
  color: #FFF;
  font-family: "Onest", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__nav-list-title .icon {
  width: 18px;
  height: 18px;
  display: none;
}
@media screen and (max-width: 900px) {
  .footer__nav-list-title .icon {
    display: block;
    opacity: 0.5;
  }
}
.footer__nav-list-title .icon svg path {
  stroke: #fff;
}
.footer__list-container {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 900px) {
  .footer__list-container {
    flex-direction: column;
    gap: 0px;
  }
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 900px) {
  .footer__list {
    margin-top: 15px;
    display: none;
  }
}
.footer__item {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer__item .icon {
  width: 20px;
  min-width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__item .icon img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.footer__item a {
  color: #FFF;
  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  opacity: 0.5;
  transition: all 0.3s;
}
.footer__item a:hover {
  opacity: 1;
}
.footer__main {
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  padding-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .footer__main {
    padding-top: 0px;
    padding-bottom: 30px;
    border-top: none;
    border-bottom: none;
  }
}
@media screen and (max-width: 568px) {
  .footer__main {
    padding-bottom: 20px;
  }
}
.footer__logo {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer__logo .logo {
  width: 120px;
  height: auto;
}
.footer__logo .logo img {
  width: 100%;
  height: 100%;
}
.footer__logo .slogan {
  color: #FFF;
  font-family: "Onest", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-decoration: none;
  color: #fff;
}
.footer__contact-item .title {
  color: #fff;
  font-family: "Onest", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.footer__contact-item .subtitle {
  opacity: 0.5;
  font-family: "Onest", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.footer__contact .btn {
  align-self: self-start;
}
.footer__social {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__social .title {
  color: #FFF;
  font-family: "Onest", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.footer__social .social-container {
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer__social .social-item {
  min-width: 40px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 100%;
  transition: all 0.3s;
}
.footer__social .social-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.footer__social .social-item svg {
  width: 18px;
  height: 18px;
}
.footer__social .social-item svg path {
  fill: #fff;
}
.footer-spets {
  margin-top: 35px;
}
@media screen and (max-width: 900px) {
  .footer-spets {
    margin-top: 0;
  }
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 568px) {
  .footer__bottom {
    flex-direction: column;
    gap: 15px;
  }
}
.footer .copyrights {
  color: #FFF;
  font-family: "Onest", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  opacity: 0.5;
}
.footer .developer {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 5px;
  text-decoration: none;
  color: #fff;
}
.footer .developer:hover .title {
  opacity: 1;
}
.footer .developer .icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .developer .title {
  opacity: 0.5;
  transition: all 0.3s;
}

.project {
  display: inline-flex !important;
  flex-direction: column;
  height: 100% !important;
  width: 100%;
  background-color: #fff;
  text-decoration: none;
  color: #070809;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
}
.project:hover .project__images img {
  transform: scale(1.1);
}
.project:hover .project__title {
  color: #0293E9;
}
.project__images {
  height: 240px;
  width: 100%;
  overflow: hidden;
  border-top-right-radius: 16px;
  border-top-left-radius: 16px;
}
.project__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.project__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 12px;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 16px;
  gap: 42px;
  height: calc(100% - 240px);
}
.project__info--bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.project__info--top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.project__title {
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;
  color: #070809;
  transition: all 0.3s;
}
.project__tag {
  font-size: 14px;
  margin-top: 5px;
  color: #070809;
  opacity: 0.5;
}
.project__description {
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #070809;
  opacity: 0.8;
}
.project__active {
  display: flex;
  align-items: center;
  gap: 12px;
}
.project__time {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.project__remaining {
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  color: #070809;
}
.project__remaining-title .title {
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #7F8487;
}
.project__progress--data {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.project__progress--donate {
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  color: #070809;
  display: flex;
  gap: 4px;
}
.project__progress--donate .currency {
  font-size: 12px;
  font-weight: normal;
  position: relative;
  top: -3px;
}
.project__progress--target {
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #7F8487;
  display: flex;
  gap: 2px;
}
.project__progress--target .currency {
  font-size: 10px;
  font-weight: normal;
  position: relative;
  top: -2px;
}

.project-carousel {
  position: relative;
  overflow: hidden;
}
.project-carousel .next,
.project-carousel .prev {
  position: absolute;
  z-index: 1;
  top: 40%;
  width: 50px;
  height: 50px;
  background: #fff;
  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-radius: 100%;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 6px 20px -1px rgba(19, 59, 82, 0.12);
  box-shadow: 0 6px 20px -1px rgba(19, 59, 82, 0.12);
}
@media screen and (max-width: 1024px) {
  .project-carousel .next,
.project-carousel .prev {
    display: none !important;
  }
}
.project-carousel .next {
  right: -40px;
}
.project-carousel .next::before {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url(../images/icon/arrow-project.svg);
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  position: relative;
  left: 1px;
}
.project-carousel .prev {
  left: -40px;
}
.project-carousel .prev::before {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url(../images/icon/arrow-project.svg);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  position: relative;
  left: -1px;
}
.project-carousel .slick-slide {
  margin: 0 15px;
}
.project-carousel .slick-list {
  margin: 0px -15px;
}
.project-carousel .slick-slide {
  margin: 0 15px;
  display: flex;
  height: auto;
}
.project-carousel .slick-track {
  display: flex !important;
}

.carousel-about {
  position: relative;
  padding-top: 120px;
}
@media screen and (max-width: 1024px) {
  .carousel-about {
    padding-top: 50px;
  }
}
.carousel-about .progressBarContainer {
  position: absolute;
  top: 120px;
  left: 50%;
  right: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 1024px) {
  .carousel-about .progressBarContainer {
    top: 50px;
    align-items: center;
    justify-content: center;
  }
}
.carousel-about .progressBarContainer div {
  width: 30%;
  padding: 0;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .carousel-about .progressBarContainer div {
    width: 20%;
  }
}
.carousel-about .progressBarContainer div:last-child {
  margin-right: 0;
}
.carousel-about .progressBarContainer div span.progressBar {
  width: 100%;
  height: 5px;
  display: block;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.1);
}
.carousel-about .progressBarContainer div span.progressBar .inProgress {
  width: 0%;
  height: 5px;
  border-radius: 10px;
}
.carousel-about .progressBarContainer div span.progressBar .inProgress {
  background-color: #0293E9;
}
.carousel-about .progressBarContainer div span.progressBar .inProgress1 {
  background-color: #F9C20F;
}
.carousel-about .progressBarContainer div span.progressBar .inProgress2 {
  background-color: #D2392F;
}
.carousel-about .carousel-about-slider {
  overflow: hidden;
  margin-top: 32px;
}
.carousel-about .carousel-about-slider__item {
  display: flex;
  flex-direction: column;
}
.carousel-about .carousel-about-slider__images {
  text-align: center;
  max-width: 600px;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .carousel-about .carousel-about-slider__images {
    height: 480px;
  }
}
@media screen and (max-width: 568px) {
  .carousel-about .carousel-about-slider__images {
    height: 380px;
  }
}
.carousel-about .carousel-about-slider__images img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.carousel-about .carousel-about-slider__caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.carousel-about .carousel-about-slider__caption h2 {
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 42px;
  line-height: 54px;
  color: #070809;
}
@media screen and (max-width: 768px) {
  .carousel-about .carousel-about-slider__caption h2 {
    font-size: 38px;
    line-height: 42px;
  }
}
@media screen and (max-width: 568px) {
  .carousel-about .carousel-about-slider__caption h2 {
    font-size: 32px;
    line-height: 36px;
  }
}
.carousel-about .carousel-about-slider__caption p {
  opacity: 0.8;
  max-width: 768px;
  text-align: center;
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #070809;
}
.carousel-about .carousel-about-slider .slick-track {
  display: flex !important;
}

#before-load {
  position: fixed;
  inset: 0px;
  background: white;
  z-index: 9999999999;
}
#before-load .animation-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
#before-load svg .svg-elem-1 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
}
#before-load svg.active .svg-elem-1 {
  fill: #00aaf2;
}
#before-load svg .svg-elem-2 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
}
#before-load svg.active .svg-elem-2 {
  fill: #ff3037;
}
#before-load svg .svg-elem-3 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s;
}
#before-load svg.active .svg-elem-3 {
  fill: #ff3037;
}
#before-load svg .svg-elem-4 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
}
#before-load svg.active .svg-elem-4 {
  fill: #00aaf2;
}
#before-load svg .svg-elem-5 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s;
}
#before-load svg.active .svg-elem-5 {
  fill: #ff3037;
}
#before-load svg .svg-elem-6 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s;
}
#before-load svg.active .svg-elem-6 {
  fill: #00aaf2;
}
#before-load svg .svg-elem-7 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s;
}
#before-load svg.active .svg-elem-7 {
  fill: #00aaf2;
}
#before-load svg .svg-elem-8 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s;
}
#before-load svg.active .svg-elem-8 {
  fill: #007bc4;
}
#before-load svg .svg-elem-9 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s;
}
#before-load svg.active .svg-elem-9 {
  fill: #007bc4;
}
#before-load svg .svg-elem-10 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7s;
}
#before-load svg.active .svg-elem-10 {
  fill: white;
}

.projectSidebar {
  width: 320px;
  position: relative;
  left: -12px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 1315px) {
  .projectSidebar {
    width: 280px;
  }
}
@media screen and (max-width: 1275px) {
  .projectSidebar {
    width: 100%;
    gap: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .projectSidebar {
    width: calc(100% + 20px);
    left: -12px;
    top: 0;
  }
}
.projectSidebar__title {
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #070809;
  opacity: 0.5;
  padding-left: 0px;
  margin-bottom: 10px;
  padding-left: 12px;
}
@media screen and (max-width: 991px) {
  .projectSidebar__title {
    margin-bottom: 0;
    font-size: 12px;
  }
}
.projectSidebar__list {
  display: flex;
  flex-direction: column;
  position: relative;
  top: 0px;
  left: 0px;
}
@media screen and (max-width: 1275px) {
  .projectSidebar__list {
    flex-wrap: wrap;
    flex-direction: row;
    border-bottom: 1px solid rgba(231, 231, 233, 0.5);
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 991px) {
  .projectSidebar__list {
    flex-direction: row;
    flex-wrap: nowrap;
    top: 0;
    left: 0;
    overflow-y: scroll;
  }
}
.projectSidebar__item {
  list-style: none;
}
@media screen and (max-width: 1024px) {
  .projectSidebar__item {
    min-width: max-content;
  }
}
.projectSidebar__item.active .projectSidebar__item-link {
  background: #F3F3F4;
  color: #070809;
}
.projectSidebar__item.active:hover .projectSidebar__item-link {
  background: #F3F3F4;
}
.projectSidebar__item:hover .projectSidebar__item-link {
  background: #F3F3F4;
}
.projectSidebar__item-link {
  text-decoration: none;
  color: #070809;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  font-family: "Onest", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 38px;
  position: relative;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 10px;
  transition: all 0.3s;
}
@media screen and (max-width: 991px) {
  .projectSidebar__item-link {
    font-size: 14px;
    height: 32px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.projectSidebar__item-number {
  opacity: 0.5;
}

.card {
  height: auto;
  display: inline-flex;
  flex-direction: column;
  position: relative;
}
.card:hover .cardImage img {
  transform: scale(1.1);
}
.card:hover .cardTitle {
  opacity: 0.8;
}
.card.fin .cardProgressBar__line {
  background: #0293E9;
}
.card.fin .cardImage .label-fond {
  background: #0293E9;
}
.card.fin .cardImage .label-fond::after {
  content: "";
  background-image: url(../../images/icon/vector_blue.svg);
  width: 10px;
  height: 10px;
}
.card.fiz .cardProgressBar__line {
  background: #F9C20F;
}
.card.fiz .cardImage .label-fond {
  background: #F9C20F;
}
.card.fiz .cardImage .label-fond::after {
  content: "";
  background-image: url(../../images/icon/vector_yellow.svg);
  width: 10px;
  height: 10px;
}
.card.mat .cardProgressBar__line {
  background: #D2392F;
}
.card.mat .cardImage .label-fond {
  background: #D2392F;
}
.card.mat .cardImage .label-fond::after {
  content: "";
  background-image: url(../../images/icon/vector_red.svg);
  width: 10px;
  height: 10px;
}
.card .cardImage {
  width: auto;
  min-height: 180px;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-color: #F3F3F4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card .cardImage .label-success {
  position: absolute;
  bottom: 8px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: #3EC843;
  padding: 8px 12px;
  padding-left: 8px;
  height: 32px;
  border-radius: 30px;
}
.card .cardImage .label-success .icon {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card .cardImage .label-success .icon img {
  width: 80%;
  height: 80%;
}
.card .cardImage .label-success .title {
  font-family: "Onest", sans-serif;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  font-style: normal;
}
.card .cardImage .label-fond {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 0px;
  left: 0px;
  display: flex;
  align-items: center;
  border-radius: 0px 10px 10px 10px;
  padding: 6px 8px;
  gap: 5px;
  height: 28px;
  z-index: 1;
}
.card .cardImage .label-fond::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
}
.card .cardImage .label-fond .avatar {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 100%;
  overflow: hidden;
  background-color: #fff;
}
.card .cardImage .label-fond .avatar img {
  width: 85%;
  height: 85%;
  object-fit: cover;
}
.card .cardImage .label-fond .name {
  font-size: 12px;
  font-family: "Onest", sans-serif;
  color: #fff;
  font-weight: 500;
  max-width: 200px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.card .cardImage::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  background-image: url(../images/icon/imagesBg.svg);
}
@media screen and (max-width: 568px) {
  .card .cardImage {
    min-height: 180px;
    height: 180px;
  }
}
.card .cardImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  z-index: 1;
}
.card .cardInfo {
  background: #fff;
  border-radius: 10px;
  position: relative;
  top: -20px;
  padding-top: 30px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  height: 100%;
  gap: 20px;
}
.card .cardInfo .cardCaption {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.card .cardInfo .cardCaption .cardTitle {
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #070809;
  transition: all 0.3s;
}
.card .cardInfo .cardCaption .cardDescription {
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #070809;
  opacity: 0.5;
  height: 40px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.card .cardInfo__lk {
  display: flex;
  flex-direction: column;
  background-color: #F8F8F9;
  border-radius: 5px;
  padding: 10px 15px;
}
.card .cardInfo__lk-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  color: #070809;
  font-family: "Onest", sans-serif;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E7E7E9;
}
.card .cardInfo__lk-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.card .cardInfo__lk-item .number {
  font-weight: 500;
}
.card .cardBottom {
  display: flex;
  flex-direction: column;
}
.card .cardBottom .cardProgress {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.card .cardBottom .cardProgress__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card .cardBottom .cardProgress .cardCollected {
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 42px;
}
.card .cardBottom .cardProgress .cardCollected__title {
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  opacity: 0.7;
  color: #070809;
}
.card .cardBottom .cardProgress .cardCollected__number {
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
  color: #070809;
}
.card .cardBottom .cardProgress .cardTarget {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  height: 42px;
}
.card .cardBottom .cardProgress .cardTarget__user {
  display: flex;
  align-items: center;
  height: auto;
}
.card .cardBottom .cardProgress .cardTarget__user .cardUser {
  width: 50px;
  margin-bottom: 0;
}
.card .cardBottom .cardProgress .cardTarget__title {
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  opacity: 0.7;
  color: #070809;
}
.card .cardBottom .cardProgress .cardTarget__number {
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #070809;
}
.card .cardBottom .cardProgress .cardUser {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin-bottom: 5px;
}
.card .cardBottom .cardProgress .cardUser__item {
  width: 20px;
  min-width: 20px;
  height: 20px;
  border-radius: 100%;
  overflow: hidden;
  border: 1px solid #fff;
  margin-left: -8px;
}
.card .cardBottom .cardProgress .cardUser__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card .cardBottom .cardProgress .cardProgressBar {
  background: #E6E5E5;
  height: 2px;
  border-radius: 100px;
  width: 100%;
}
.card .cardBottom .cardProgress .cardProgressBar__line {
  height: 6px;
  border-radius: 100px;
  position: relative;
  top: -2px;
}
.card .cardBottom .cardOther {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  width: 100%;
  position: relative;
}
.card .cardBottom .cardOther::after {
  content: "";
  height: 15px;
  width: 30px;
  background: linear-gradient(270deg, #FFFFFF 50%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  right: -15px;
}
.card .cardBottom .cardOther .cardItem {
  display: flex;
  align-items: center;
  gap: 5px;
}
.card .cardBottom .cardOther .cardItem__icon {
  width: 12px;
  height: 15px;
  opacity: 0.3;
}
.card .cardBottom .cardOther .cardItem__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.card .cardBottom .cardOther .cardItem__title {
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: normal;
  color: #070809;
  opacity: 0.5;
}
.card .cardBottom .cardTag .cardItem__title, .card .cardBottom .cardCity .cardItem__title {
  overflow: hidden;
  white-space: pre;
  width: auto;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: horizontal;
}

.sort {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1275px) {
  .sort {
    margin-top: 20px;
  }
}
@media screen and (max-width: 991px) {
  .sort {
    margin-top: 10px;
  }
}
@media screen and (max-width: 920px) {
  .sort {
    flex-direction: column;
    align-items: flex-start;
  }
}
.sort-tab {
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 30px;
  border: 1px solid #F3F3F4;
  padding: 5px;
}
@media screen and (max-width: 1024px) {
  .sort-tab {
    overflow-y: scroll;
    width: auto;
  }
}
@media screen and (max-width: 920px) {
  .sort-tab {
    overflow-y: scroll;
    max-width: 100%;
    border: 1px solid #F3F3F4;
    margin-bottom: 10px;
  }
}
.sort-item {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 38px;
  position: relative;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 20px;
  transition: all 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .sort-item {
    min-width: max-content;
  }
}
.sort-item.sort-item-m {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .sort-item.sort-item-m {
    display: flex !important;
  }
}
.sort-item.active {
  background: #F3F3F4;
  opacity: 1;
}
.sort-item.active:hover {
  background: #F3F3F4;
  opacity: 1;
}
.sort-item:hover {
  background: rgba(243, 243, 244, 0.5);
  opacity: 1;
}
.sort-item__icon {
  width: 20px;
  height: 20px;
  position: relative;
  top: -1px;
}
.sort-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sort-item__title {
  font-size: 15px;
  font-weight: 500;
  color: #070809;
  font-style: normal;
}
.sort-item__title .number {
  opacity: 0.5;
}
.sort-select {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 920px) {
  .sort-select {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .sort-select {
    gap: 20px;
  }
}
.sort-select__dropdown {
  position: absolute;
  display: none;
  top: 40px;
  left: -10px;
  background: #fff;
  box-shadow: 0px 8px 20px -6px rgba(7, 8, 9, 0.12);
  border-radius: 12px;
  border: 1px solid rgba(243, 243, 244, 0.3);
  padding: 10px 10px;
  min-width: 210px;
}
.sort-select__dropdown-item {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 35px;
  width: 100%;
  transition: all 0.3s;
}
.sort-select__dropdown-item .title {
  color: #070809;
  font-weight: normal;
  font-size: 15px;
  line-height: 24px;
  font-family: "Onest", sans-serif;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 36px;
  position: relative;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 10px;
  transition: all 0.3s;
  text-wrap: nowrap;
}
.sort-select__dropdown-item svg path {
  stroke: #070809 !important;
  transition: all 0.3s;
}
.sort-select__dropdown-item:hover .title {
  background: #F3F3F4;
}
.sort-select__dropdown-item .icon {
  width: 16px;
  height: 16px;
}
.sort-allProject {
  font-size: 15px;
  font-weight: 500;
  font-family: "Onest", sans-serif;
  font-style: normal;
  color: #070809;
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  height: 38px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 10px;
  transition: all 0.3s;
}
@media screen and (max-width: 920px) {
  .sort-allProject {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media screen and (max-width: 920px) {
  .sort-allProject {
    width: 100%;
    display: flex;
    justify-content: center;
    border: 1px solid rgba(231, 231, 233, 0.5);
  }
}
.sort-allProject:hover {
  background: #f3f3f4;
}
.sort-allProject::after {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url(../images/icon/nav-arrow-down.svg);
  position: relative;
  top: 0px;
  right: 0;
  bottom: 0;
  transition: all 0.5s;
}
.sort-allProject.active {
  color: #0293E9;
  background: #f3f3f4;
}
.sort-allProject.active svg path {
  stroke: #0293E9;
}
.sort-allProject.active::after {
  transform: rotate(-180deg);
}
.sort-allProject.active .sort-select__dropdown {
  display: block;
}
.sort-allProject__icon {
  width: 16px;
  height: 16px;
}
.sort-allProject__icon svg path {
  transition: all 0.3s;
}
.sort-allCity {
  font-size: 15px;
  font-weight: 500;
  font-family: "Onest", sans-serif;
  font-style: normal;
  color: #070809;
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  height: 38px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 10px;
  transition: all 0.3s;
}
@media screen and (max-width: 920px) {
  .sort-allCity {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media screen and (max-width: 920px) {
  .sort-allCity {
    width: 100%;
    display: flex;
    justify-content: center;
    border: 1px solid #f3f3f4;
  }
}
.sort-allCity:hover {
  background: #f3f3f4;
}
.sort-allCity::after {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url(../images/icon/nav-arrow-down.svg);
  position: relative;
  top: 0px;
  right: 0;
  bottom: 0;
  transition: all 0.3s;
}
.sort-allCity.active {
  color: #0293E9;
  background: #f3f3f4;
}
.sort-allCity.active svg path {
  stroke: #0293E9;
}
.sort-allCity.active::after {
  transform: rotate(-180deg);
}
.sort-allCity.active .sort-select__dropdown {
  display: block;
}
.sort-allCity__icon {
  width: 16px;
  height: 16px;
}
.sort-allCity__icon svg path {
  transition: all 0.3s;
}
.sort .dropdown-allCity {
  height: 300px;
  overflow-y: scroll;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 20px;
}
.breadcrumbs a {
  transition: all 0.3s;
}
.breadcrumbs a:hover {
  opacity: 1;
}
.breadcrumbs__item {
  font-size: 12px;
  color: #070809;
  font-family: "Onest", sans-serif;
  font-weight: normal;
  opacity: 0.5;
}

.rewards {
  max-width: 350px;
  height: auto;
  background: #fff;
  border-radius: 20px;
  padding-top: 10px;
  padding-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .rewards {
    min-width: 350px;
  }
}
@media screen and (max-width: 568px) {
  .rewards {
    min-width: 100%;
    width: 100%;
  }
}
.rewards__images {
  width: calc(100% - 20px);
  height: 170px;
  border-radius: 15px;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 15px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F3F3F4;
}
.rewards__images::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  background-image: url(../images/icon/imagesBg.svg);
}
.rewards__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.rewards__content {
  padding: 0 20px;
}
.rewards__caption {
  font-size: 18px;
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  color: #070809;
  margin-bottom: 5px;
  display: block;
  margin-top: 10px;
}
.rewards__description {
  font-size: 14px;
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: normal;
  line-height: 22px;
  color: #070809;
  opacity: 0.7;
}
.rewards__label {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}
.rewards__item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.rewards__item-caption {
  display: flex;
  align-items: center;
  gap: 5px;
}
.rewards__item-caption .icon {
  width: 16px;
  height: 16px;
}
.rewards__item-caption .icon img {
  width: 100%;
  height: 100%;
}
.rewards__item-caption .title {
  opacity: 0.5;
  font-size: 14px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: normal;
}
.rewards__item-info {
  display: flex;
  align-items: center;
}
.rewards__user {
  display: flex;
  align-items: center;
  position: relative;
  left: 7px;
}
.rewards__user-item {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  overflow: hidden;
  border: 1px solid #fff;
  margin-left: -8px;
}
.rewards__user-item:nth-child(3) {
  z-index: 1;
}
.rewards__user-item:nth-child(2) {
  z-index: 2;
}
.rewards__user-item:nth-child(1) {
  z-index: 3;
}
.rewards__user-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rewards__user-number {
  padding-right: 5px;
  font-size: 14px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: 500;
}
.rewards__buy {
  border-top: 1px solid #F3F3F4;
  margin-top: 15px;
}
.rewards__buy-visible {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
}
.rewards__buy-overflow {
  padding-top: 15px;
  display: none;
}
.rewards__buy-overflow.active {
  display: block;
}
.rewards__buy .btn {
  display: flex;
  height: 40px;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  font-size: 15px;
  font-family: "Onest", sans-serif;
  font-weight: 500;
  line-height: 22px;
  width: 170px;
  cursor: pointer;
}
.rewards__buy .btn-active {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 8px 16px;
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  font-family: "Onest", sans-serif;
  font-weight: 500;
  line-height: 22px;
  margin-top: 10px;
}
.rewards__price {
  display: flex;
  flex-direction: column;
}
.rewards__price .price {
  font-size: 20px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: 600;
}
.rewards__price .remains {
  font-size: 14px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: normal;
  opacity: 0.5;
}
.rewards__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rewards__form .error-description {
  position: relative;
  bottom: -2px;
}
.rewards__form form {
  width: 100%;
}
.rewards__form .label-form {
  border-radius: 8px;
  border: 1px solid #E7E7E9;
  padding: 10px;
  display: flex;
  align-items: center;
  min-width: 100%;
  width: 100%;
  height: 40px;
}
.rewards__form .label-form.is-error {
  border: 1px solid #DD3E37;
}
.rewards__form .input-form {
  width: 100%;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: 600;
  font-size: 18px;
}
.rewards__form .input-current {
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: 600;
  font-size: 18px;
  margin-right: 10px;
  opacity: 0.5;
}
.rewards .form-money {
  width: 100%;
}
.rewards .counter-box {
  display: flex;
  align-items: center;
  height: 40px;
  min-width: 150px;
  width: 150px;
  border-radius: 8px;
  border: 1px solid #E7E7E9;
  padding: 5px;
  gap: 5px;
}
.rewards .counter-box__decrease, .rewards .counter-box__increase {
  width: 30px;
  min-width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border-radius: 5px;
  background: #F3F3F4;
  cursor: pointer;
  transition: all 0.3s;
}
.rewards .counter-box__decrease:hover, .rewards .counter-box__increase:hover {
  background: #E7E7E9;
}
.rewards .counter-box__decrease .icon, .rewards .counter-box__increase .icon {
  width: 16px;
  height: 16px;
}
.rewards .counter-box__decrease .icon img, .rewards .counter-box__increase .icon img {
  width: 100%;
  height: 100%;
}
.rewards .counter-box__input {
  width: 100%;
  text-align: center;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: 600;
  font-size: 18px;
}

.btn {
  display: inline-flex;
  height: 45px;
  padding: 8px 20px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  font-size: 15px;
  font-family: "Onest", sans-serif;
  font-weight: 500;
  line-height: 22px;
  transition: all 0.3s;
  align-self: flex-start;
  text-align: center;
  cursor: pointer;
}
.btn .icon {
  width: 16px;
  min-width: 16px;
  height: 16px;
  margin-right: 10px;
}
.btn .icon img {
  width: 100%;
  height: 100%;
}
.btn .icon-right {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  transition: all 0.3s;
}
.btn .icon-right img {
  width: 100%;
  height: 100%;
}

.btn-secondary {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: rgba(7, 8, 9, 0.5);
}
.btn-secondary.btn-blue {
  background-color: rgba(2, 147, 233, 0.1);
  color: #0293E9;
}

.btn-outline {
  display: flex;
  align-items: center;
  color: #070809;
  cursor: pointer;
}
.btn-outline:hover {
  background: #E7E7E9;
}
.btn-outline.btn-blue {
  background-color: transparent;
  color: #0293E9;
}

.btn-delete {
  display: flex;
  align-items: center;
  color: #DD3E37;
  cursor: pointer;
  background-color: transparent;
}

.btn-default {
  background: #F3F3F4;
  color: #070809;
}
.btn-default:hover {
  background: #E7E7E9;
}

.btn-blue {
  background: #0293E9;
  color: #fff;
  transition: all 0.3s;
}
.btn-blue:hover {
  background: #0092d0;
}

.btn-yellow {
  background: #F9C20F;
  color: #fff;
  transition: all 0.3s;
}
.btn-yellow:hover {
  background: #EFBA0D;
}

.btn-red {
  background: #D2392F;
  color: #fff;
  transition: all 0.3s;
}
.btn-red:hover {
  background: #CE413B;
}

.comment {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.comment-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 414px) {
  .comment-container {
    gap: 20px;
  }
}
.comment__user {
  display: flex;
  gap: 12px;
}
.comment__user-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.comment__user-header {
  display: flex;
  align-items: center;
}
.comment__user-header:hover .comment__user-name {
  opacity: 0.7;
}
.comment__user-avatar {
  width: 50px;
  min-width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 100%;
}
@media screen and (max-width: 568px) {
  .comment__user-avatar {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }
}
.comment__user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.comment__user-name {
  font-size: 15px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: 500;
  font-style: normal;
  transition: all 0.3s;
}
.comment__user-author {
  width: 16px;
  height: 16px;
  margin-left: 5px;
}
.comment__user-date {
  font-size: 15px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: normal;
  font-style: normal;
  opacity: 0.5;
  margin-left: 10px;
}
.comment__user-body.active .commentBox {
  display: block;
}
.comment__user-body p {
  font-size: 15px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: normal;
  font-style: normal;
}
@media screen and (max-width: 414px) {
  .comment__user-body p {
    font-size: 14px;
    line-height: 22px;
  }
}
.comment__user-body p a {
  color: #0293E9;
  text-decoration: none;
}
.comment__user-reaply {
  opacity: 0.5;
  font-size: 15px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: normal;
  font-style: normal;
  cursor: pointer;
  transition: all 0.3s;
}
.comment__user-reaply:hover {
  opacity: 0.7;
}
.comment__user .comment-box {
  margin-top: 5px;
  display: none;
}
.comment__user .comment-box.active {
  display: block;
}
.comment__user-children {
  padding-left: 62px;
}
@media screen and (max-width: 568px) {
  .comment__user-children {
    padding-left: 52px;
  }
}
@media screen and (max-width: 568px) and (max-width: 414px) {
  .comment__user-children .comment__user-avatar {
    width: 30px;
    min-width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 414px) {
  .comment__user-children {
    padding-left: 50px;
  }
}
.comment__user-children-other {
  padding-left: 124px;
}
@media screen and (max-width: 568px) {
  .comment__user-children-other {
    padding-left: 104px;
  }
}
@media screen and (max-width: 568px) and (max-width: 414px) {
  .comment__user-children-other .comment__user-avatar {
    width: 30px;
    min-width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 414px) {
  .comment__user-children-other {
    padding-left: 95px;
  }
}
.comment-box {
  width: 100%;
  height: auto;
}
.comment-form {
  width: 100%;
  min-height: 100px;
  position: relative;
  border-radius: 10px;
  border: 1px solid #E7E7E9;
  background: #fff;
  padding: 20px 10px 10px 20px;
}
.comment-form__textarea {
  width: 100%;
  height: 50px;
  font-size: 15px;
  padding-right: 10px;
  font-family: "Onest", sans-serif;
  font-weight: normal;
  color: #070809;
  resize: none;
}
.comment-form .btn {
  margin-top: 10px;
  margin-left: auto;
  align-self: auto;
  display: flex;
}
.comment-form__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}
.comment-form__nav .btn {
  margin-left: 0;
}
.comment-form__nav .btn-cancel {
  background: transparent;
  color: #070809;
  cursor: pointer;
  transition: all 0.3s;
}
.comment-form__nav .btn-cancel:hover {
  opacity: 0.7;
}

.popup {
  background: rgba(7, 8, 9, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  transition: opacity 0.3s ease;
  opacity: 0;
  overflow-y: scroll;
  z-index: -1;
  padding: 100px;
}
.popup.popup-lk-xs .popup__inner {
  max-width: 568px;
  min-width: 420px;
}
@media screen and (max-width: 568px) {
  .popup.popup-lk-xs .popup__inner {
    min-width: auto;
  }
}
@media screen and (max-width: 1024px) {
  .popup {
    padding: 50px;
  }
}
@media screen and (max-width: 768px) {
  .popup {
    padding: 50px 30px;
    padding-bottom: 80px !important;
  }
}
@media screen and (max-width: 568px) {
  .popup {
    padding: 30px 20px;
    padding-bottom: 80px !important;
  }
}
@media screen and (max-width: 475px) {
  .popup {
    padding: 30px 15px;
    padding-bottom: 100px !important;
  }
}
@media screen and (max-width: 414px) {
  .popup {
    padding: 30px 10px;
  }
}
.popup.isOpen {
  opacity: 1;
  z-index: 9999;
}
.popup__cross {
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
  border-radius: 100%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F3F3F4;
  transition: all 0.3s;
}
@media screen and (max-width: 425px) {
  .popup__cross {
    width: 24px;
    height: 24px;
    right: 10px;
    top: 10px;
  }
}
.popup__cross svg {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 425px) {
  .popup__cross svg {
    width: 14px;
    height: 14px;
  }
}
.popup__cross:hover {
  background-color: #e7e7eb;
}
.popup__cross:hover svg {
  opacity: 1;
}
.popup__inner {
  border-radius: 20px;
  box-shadow: 0px 8px 20px -6px rgba(7, 8, 9, 0.12);
  z-index: 7;
  width: 980px;
  max-width: 100%;
  margin: auto;
  min-height: auto;
  position: relative;
  background: #fff;
}
@media screen and (max-width: 425px) {
  .popup__inner {
    border-radius: 10px;
  }
}
.popup .popup-news {
  padding: 40px 50px;
}
.popup .popup-news .btn {
  margin-bottom: 20px;
}
@media screen and (max-width: 568px) {
  .popup .popup-news {
    padding: 50px 30px;
  }
}
@media screen and (max-width: 430px) {
  .popup .popup-news {
    padding: 50px 20px;
  }
}
.popup .popup-news__caption {
  display: flex;
  flex-direction: column;
}
.popup .popup-news__title {
  font-size: 32px;
  font-weight: 600;
  font-style: normal;
  color: #070809;
  font-family: "Onest", sans-serif;
}
@media screen and (max-width: 568px) {
  .popup .popup-news__title {
    font-size: 26px;
    line-height: 32px;
    font-weight: 500;
  }
}
.popup .popup-news__author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
@media screen and (max-width: 414px) {
  .popup .popup-news__author {
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 15px;
  }
}
.popup .popup-news__author-avatar {
  width: 30px;
  min-width: 30px;
  height: 30px;
  overflow: hidden;
  border-radius: 100%;
}
@media screen and (max-width: 475px) {
  .popup .popup-news__author-avatar {
    width: 20px;
    min-width: 20px;
    height: 20px;
  }
}
.popup .popup-news__author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.popup .popup-news__author-name {
  font-size: 16px;
  line-height: normal;
  font-weight: normal;
  color: #070809;
  font-family: "Onest", sans-serif;
  display: flex;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 475px) {
  .popup .popup-news__author-name {
    font-weight: 500;
  }
}
.popup .popup-news__author-name .dot {
  opacity: 0.5;
  font-weight: normal;
}
.popup .popup-news__author-name .date {
  opacity: 0.5;
  font-weight: normal;
}
.popup .popup-news__author-article {
  margin-top: 30px;
}
@media screen and (max-width: 414px) {
  .popup .popup-news__author-article {
    margin-top: 20px;
  }
}
.popup .popup-news__author-article p {
  font-size: 16px;
  line-height: 24px;
  font-weight: normal;
  margin-bottom: 22px;
  font-size: "Onest", sans-serif;
}
@media screen and (max-width: 414px) {
  .popup .popup-news__author-article p {
    margin-bottom: 15px;
  }
}
.popup .popup-news__author-article p a {
  color: #0293E9;
  text-decoration: none;
}
.popup .popup-news__author-article p:last-child {
  margin-bottom: 0;
}
.popup .popup-news__author-article p img {
  max-width: 100%;
  width: 100%;
  height: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 10px;
}
@media screen and (max-width: 414px) {
  .popup .popup-news__author-article p img {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
.popup .popup-news__author-article ul {
  padding: 0px 32px;
  margin-bottom: 20px;
}
.popup .popup-news__author-article ul li {
  font-size: 16px;
  line-height: 24px;
  font-weight: normal;
  margin-bottom: 12px;
  font-family: "Onest", sans-serif;
}
.popup .popup-news__author-article ul li:last-child {
  margin-bottom: 0;
}

.popup-user .popup__cross {
  background: #fff;
}
.popup-user .popup__cross:hover {
  background: #e7e7eb;
}
.popup-user .popup__cross:hover svg {
  opacity: 1;
}
.popup-user__banner {
  max-width: 980px;
  height: 150px;
  border-radius: 20px 20px 0px 0px;
  background: linear-gradient(127deg, #BD6B6B 0%, #7D65DB 45.61%, #FDE35E 100%);
  overflow: hidden;
}
@media screen and (max-width: 430px) {
  .popup-user__banner {
    height: 120px;
  }
}
.popup-user__banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.popup-user__avatar {
  border-radius: 100%;
  border: 3px solid #FFF;
  width: 100px;
  min-width: 100px;
  height: 100px;
  overflow: hidden;
  position: absolute;
  left: 40px;
  top: 85px;
  box-sizing: border-box;
}
@media screen and (max-width: 568px) {
  .popup-user__avatar {
    left: 30px;
  }
}
@media screen and (max-width: 430px) {
  .popup-user__avatar {
    left: 20px;
    width: 80px;
    min-width: 80px;
    height: 80px;
    top: 105px;
    top: 80px;
  }
}
.popup-user__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.popup-user__info {
  padding: 45px 40px;
}
@media screen and (max-width: 568px) {
  .popup-user__info {
    padding: 45px 30px;
  }
}
@media screen and (max-width: 430px) {
  .popup-user__info {
    padding: 45px 20px;
  }
}
.popup-user__name {
  font-size: 20px;
  font-family: "Onest", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.popup-user__subinfo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
}
.popup-user__subinfo .username {
  opacity: 0.5;
  font-size: 14px;
  font-family: "Onest", sans-serif;
  font-weight: normal;
  font-style: normal;
}
.popup-user__subinfo .dot {
  opacity: 0.5;
  font-size: 14px;
  font-family: "Onest", sans-serif;
  font-weight: normal;
  font-style: normal;
}
.popup-user__subinfo .city {
  opacity: 0.5;
  font-size: 14px;
  font-family: "Onest", sans-serif;
  font-weight: normal;
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 5px;
}
.popup-user__subinfo .city .icon {
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-user__detail {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}
.popup-user__description {
  max-width: 100%;
}
.popup-user__description p {
  font-size: 16px;
  line-height: 24px;
  font-weight: normal;
  margin-bottom: 12px;
  font-size: "Onest", sans-serif;
}
.popup-user__description p a {
  color: #0293E9;
  text-decoration: none;
}
.popup-user__description p:last-child {
  margin-bottom: 0;
}
.popup-user__description p img {
  max-width: 100%;
  width: 100%;
  height: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 10px;
}
.popup-user__description ul {
  padding: 0px 32px;
  margin-bottom: 20px;
}
.popup-user__description ul li {
  font-size: 16px;
  line-height: 24px;
  font-weight: normal;
  margin-bottom: 12px;
  font-family: "Onest", sans-serif;
}
.popup-user__description ul li:last-child {
  margin-bottom: 0;
}
.popup-user__actions {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 2px;
  position: relative;
  left: -10px;
}
@media screen and (max-width: 500px) {
  .popup-user__actions {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
  }
}
.popup-user__actions-item {
  font-size: 16px;
  line-height: 22px;
  font-weight: normal;
  font-family: "Onest", sans-serif;
  color: #070809;
  display: flex;
  align-items: center;
  gap: 5px;
  height: 38px;
  position: relative;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 10px;
  transition: all 0.3s;
}
@media screen and (max-width: 500px) {
  .popup-user__actions-item {
    height: 32px;
  }
}
.popup-user__actions-item:hover {
  background: #F3F3F4;
}
.popup-user__actions-item .icon {
  width: 16px;
  height: 16px;
  opacity: 1;
}
.popup-user__link {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(7, 8, 9, 0.05);
}
.popup-user__link-wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.popup-user__link-caption {
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #070809;
  opacity: 0.5;
  margin-bottom: 5px;
}
.popup-user__link .feedback-primary {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  left: -10px;
}
.popup-user__link .feedback-secondary {
  display: flex;
  gap: 2px;
  position: relative;
  left: -10px;
}
.popup-user__link .feedback-secondary .popup-user__link-item {
  width: 32px;
  height: 32px;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-user__link-item {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  text-decoration: none;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 10px;
  transition: all 0.3s;
}
.popup-user__link-item:hover {
  background: #F3F3F4;
}
.popup-user__link-item:hover .icon {
  opacity: 1;
}
.popup-user__link-item .icon {
  width: 18px;
  height: 18px;
  opacity: 0.7;
  transition: all 0.3s;
}
.popup-user__link-item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.popup-user__link-item .title {
  font-size: 15px;
  line-height: 22px;
  font-weight: normal;
  font-family: "Onest", sans-serif;
  color: #070809;
}

.popup-lk__content {
  padding: 50px;
}
@media screen and (max-width: 568px) {
  .popup-lk__content {
    padding: 30px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 425px) {
  .popup-lk__content {
    padding: 20px;
    padding-right: 30px;
  }
}
.popup-lk__caption {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px;
}
.popup-lk__title {
  font-size: 25px;
  line-height: 32px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: 500;
}
@media screen and (max-width: 475px) {
  .popup-lk__title {
    font-size: 20px;
    line-height: 26px;
  }
}
.popup-lk__description {
  font-size: 15px;
  font-weight: normal;
  font-style: normal;
  font-family: "Onest", sans-serif;
  color: #070809;
  opacity: 0.7;
}
.popup-lk__action {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.accordion {
  display: flex;
  flex-direction: column;
}
.accordion-header {
  min-height: 50px;
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
}
.accordion-caption {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #070809;
  font-family: "Onest", sans-serif;
  font-style: normal;
}
.accordion-btn {
  width: 40px;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #F3F3F4;
  margin-left: 20px;
  position: relative;
  top: -8px;
  transform: rotate(-45deg);
  transition: all 0.3s;
}
.accordion-btn svg path {
  transition: all 0.3s;
}
.accordion__item {
  border-bottom: 1px solid rgba(229, 229, 229, 0.8);
  margin-bottom: 20px;
  cursor: pointer;
}
.accordion__item:hover .accordion-btn {
  background-color: #e7e7eb;
}
.accordion__item.active .accordion-btn {
  transform: rotate(0deg);
  background-color: #E7E7E9;
}
.accordion__item.active .accordion-btn svg path {
  stroke: #070809;
}
.accordion__item.active .accordion-caption {
  font-weight: 500;
}
.accordion__content {
  max-width: 780px;
}
.accordion__content p {
  font-size: 16px;
  line-height: 24px;
  font-weight: normal;
  margin-bottom: 22px;
  font-size: "Onest", sans-serif;
}
.accordion__content p:last-child {
  margin-bottom: 0;
}
.accordion__content p img {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
}
.accordion__content ul {
  padding: 0px 32px;
  margin-bottom: 20px;
}
.accordion__content ul li {
  font-size: 16px;
  line-height: 24px;
  font-weight: normal;
  margin-bottom: 12px;
  font-family: "Onest", sans-serif;
}
.accordion__content ul li:last-child {
  margin-bottom: 0;
}
.accordion-body {
  display: none;
  padding-bottom: 30px;
}

.pageCaption {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.pageCaption .pageTitle {
  font-size: 42px;
  line-height: 56px;
  font-weight: 600;
  font-family: "Onest", sans-serif;
  color: #070809;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .pageCaption .pageTitle {
    font-size: 38px;
    line-height: 48px;
  }
}
@media screen and (max-width: 568px) {
  .pageCaption .pageTitle {
    font-size: 32px;
    line-height: 42px;
  }
}
.pageCaption .pageTitle .number {
  opacity: 0.5;
}
.pageCaption .pageTitle .number-red {
  opacity: 1 !important;
  padding-top: 2px;
  width: 42px;
  min-width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #D2392F;
  color: #fff;
  font-size: 32px;
}
.pageCaption .pageDescription {
  font-size: 15px;
  font-weight: normal;
  color: #070809;
  font-family: "Onest", sans-serif;
  font-style: normal;
  opacity: 0.7;
}

h1 {
  font-size: 42px;
  line-height: 56px;
  font-weight: 600;
  font-family: "Onest", sans-serif;
  color: #070809;
}

h2 {
  font-size: 32px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: 500;
  font-style: normal;
}

.pagination {
  margin-top: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.pagination__list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 5px;
}
.pagination__list-item.active a {
  height: 40px;
  min-width: 40px;
  border-radius: 100%;
  background: #F3F3F4;
  opacity: 1;
}
.pagination__list-item:hover a {
  background: #F3F3F4;
  opacity: 1;
}
.pagination__list-item a {
  height: 40px;
  min-width: 40px;
  border-radius: 100%;
  font-size: 16px;
  font-weight: 500;
  color: #070809;
  font-family: "Onest", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  opacity: 0.5;
}
.pagination__list-item:first-child a {
  height: auto;
  min-width: auto;
  background: transparent;
}
.pagination__list-item:first-child a:hover {
  height: auto;
  min-width: auto;
}
.pagination__list-item:last-child a {
  height: auto;
  min-width: auto;
  background: transparent;
}
.pagination__list-item:last-child a:hover {
  height: auto;
  min-width: auto;
}

/* START TOOLTIP STYLES */
[tooltip] {
  position: relative;
  /* opinion 1 */
}

/* Applies to all tooltips */
[tooltip]::before,
[tooltip]::after {
  text-transform: none;
  /* opinion 2 */
  font-size: 12px;
  line-height: auto;
  user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 0;
  font-family: "Onest", sans-serif;
}

[tooltip]::before {
  content: "";
  border: 5px solid transparent;
  /* opinion 4 */
  z-index: 1001;
  /* absurdity 1 */
}

[tooltip]::after {
  content: attr(tooltip);
  /* magic! */
  /* most of the rest of this is opinion */
  font-family: "Onest", sans-serif;
  text-align: center;
  /* 
    Let the content set the size of the tooltips 
    but this will also keep them from being obnoxious
    */
  min-width: 120px;
  max-width: 320px;
  padding: 8px;
  border-radius: 5px;
  box-shadow: 0 1em 2em -0.5em rgba(0, 0, 0, 0.35);
  background: #070809;
  color: #fff;
  z-index: 1000;
  /* absurdity 2 */
}

/* Make the tooltips respond to hover */
[tooltip]:hover::before,
[tooltip]:hover::after {
  display: block;
}

/* don't show empty tooltips */
[tooltip=""]::before,
[tooltip=""]::after {
  display: none !important;
}

/* FLOW: UP */
[tooltip]:not([flow])::before,
[tooltip][flow^=up]::before {
  bottom: 100%;
  border-bottom-width: 0;
  border-top-color: #333;
}

[tooltip]:not([flow])::after,
[tooltip][flow^=up]::after {
  bottom: calc(100% + 5px);
}

[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^=up]::before,
[tooltip][flow^=up]::after {
  left: 50%;
  transform: translate(-50%, -0.5em);
}

/* FLOW: DOWN */
[tooltip][flow^=down]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: #333;
}

[tooltip][flow^=down]::after {
  top: calc(100% + 5px);
}

[tooltip][flow^=down]::before,
[tooltip][flow^=down]::after {
  left: 50%;
  transform: translate(-50%, 0.5em);
}

/* FLOW: LEFT */
[tooltip][flow^=left]::before {
  top: 50%;
  border-right-width: 0;
  border-left-color: #333;
  left: calc(0em - 5px);
  transform: translate(-0.5em, -50%);
}

[tooltip][flow^=left]::after {
  top: 50%;
  right: calc(100% + 5px);
  transform: translate(-0.5em, -50%);
}

/* FLOW: RIGHT */
[tooltip][flow^=right]::before {
  top: 50%;
  border-left-width: 0;
  border-right-color: #333;
  right: calc(0em - 5px);
  transform: translate(0.5em, -50%);
}

[tooltip][flow^=right]::after {
  top: 50%;
  left: calc(100% + 5px);
  transform: translate(0.5em, -50%);
}

/* KEYFRAMES */
@keyframes tooltips-vert {
  to {
    opacity: 0.9;
    transform: translate(-50%, 0);
  }
}
@keyframes tooltips-horz {
  to {
    opacity: 0.9;
    transform: translate(0, -50%);
  }
}
/* FX All The Things */
[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^=up]:hover::before,
[tooltip][flow^=up]:hover::after,
[tooltip][flow^=down]:hover::before,
[tooltip][flow^=down]:hover::after {
  animation: tooltips-vert 300ms ease-out forwards;
}

[tooltip][flow^=left]:hover::before,
[tooltip][flow^=left]:hover::after,
[tooltip][flow^=right]:hover::before,
[tooltip][flow^=right]:hover::after {
  animation: tooltips-horz 300ms ease-out forwards;
}

.carousel-section {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.carousel-section .carousel-fond {
  display: block !important;
}
.carousel-section .carousel-project, .carousel-section .carousel-project-success {
  position: relative;
}
.carousel-section .carousel-project .slick-list, .carousel-section .carousel-project-success .slick-list {
  overflow: hidden;
}
.carousel-section .carousel-project .slick-track, .carousel-section .carousel-project-success .slick-track {
  display: flex !important;
  min-width: 100%;
  margin: 0 -5px;
}
@media screen and (max-width: 568px) {
  .carousel-section .carousel-project .slick-track, .carousel-section .carousel-project-success .slick-track {
    margin: 0;
  }
}
.carousel-section .carousel-project .slick-slide, .carousel-section .carousel-project-success .slick-slide {
  padding: 0 10px;
}
@media screen and (max-width: 568px) {
  .carousel-section .carousel-project .slick-slide, .carousel-section .carousel-project-success .slick-slide {
    padding: 0;
  }
}
.carousel-section .carousel-project .slick-dots, .carousel-section .carousel-project-success .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0px;
  gap: 6px;
}
.carousel-section .carousel-project .slick-dots li, .carousel-section .carousel-project-success .slick-dots li {
  list-style: none;
  width: 5px;
  height: 5px;
  opacity: 0.2;
  border-radius: 100%;
  transition: all 0.5s;
}
.carousel-section .carousel-project .slick-dots li.slick-active, .carousel-section .carousel-project-success .slick-dots li.slick-active {
  opacity: 1;
  width: 8px;
  height: 8px;
}
.carousel-section .carousel-project .slick-dots button, .carousel-section .carousel-project-success .slick-dots button {
  font-size: 0;
  padding: 0;
}
.carousel-section .carousel-project-success {
  display: none;
}
.carousel-section .carousel-project-success.active {
  display: block;
}
.carousel-section .carousel-project-success.fin .slick-dots li {
  background: #0293E9;
}
.carousel-section .carousel-project-success.fiz .slick-dots li {
  background: #F9C20F;
}
.carousel-section .carousel-project-success.mat .slick-dots li {
  background: #DD3E37;
}
.carousel-section .fin .carousel-project .slick-dots li {
  background: #0293E9;
}
.carousel-section .fiz .carousel-project .slick-dots li {
  background: #F9C20F;
}
.carousel-section .mat .carousel-project .slick-dots li {
  background: #DD3E37;
}
.carousel-section .next, .carousel-section .prev {
  position: absolute;
  z-index: 1;
  top: 50%;
  bottom: 50%;
  transform: translate(0, -50%);
  width: 50px;
  height: 50px;
  background: #fff;
  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-radius: 100%;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1440px) {
  .carousel-section .next, .carousel-section .prev {
    transform: translate(0, -280%);
  }
}
@media screen and (max-width: 620px) {
  .carousel-section .next, .carousel-section .prev {
    width: 40px;
    height: 40px;
  }
}
.carousel-section .next:hover, .carousel-section .prev:hover {
  box-shadow: 0px 8px 20px -6px rgba(7, 8, 9, 0.12);
}
.carousel-section .next:hover img, .carousel-section .prev:hover img {
  opacity: 1;
}
.carousel-section .next img, .carousel-section .prev img {
  width: 24px;
  height: 24px;
  opacity: 0.5;
  transition: all 0.3s;
}
@media screen and (max-width: 620px) {
  .carousel-section .next img, .carousel-section .prev img {
    width: 18px;
    height: 18px;
  }
}
.carousel-section .next {
  right: -60px;
}
@media screen and (max-width: 1440px) {
  .carousel-section .next {
    right: -10px;
    box-shadow: 0px 8px 20px -6px rgba(7, 8, 9, 0.12);
  }
}
.carousel-section .prev {
  left: -70px;
}
@media screen and (max-width: 1440px) {
  .carousel-section .prev {
    left: -20px;
    box-shadow: 0px 8px 20px -6px rgba(7, 8, 9, 0.12);
  }
}
.carousel-section .prev img {
  width: 24px;
  height: 24px;
  transform: rotate(-180deg);
}
@media screen and (max-width: 620px) {
  .carousel-section .prev img {
    width: 18px;
    height: 18px;
  }
}
.carousel-section__item {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 620px) {
  .carousel-section__item {
    gap: 10px;
  }
}
.carousel-section .carousel-caption {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 414px) {
  .carousel-section .carousel-caption {
    flex-direction: column;
  }
}
.carousel-section .carousel-caption .icon {
  width: 40px;
  height: 40px;
}
.carousel-section .carousel-caption .icon img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.carousel-section .carousel-title {
  font-size: 32px;
  line-height: 38px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 620px) {
  .carousel-section .carousel-title {
    font-size: 28px;
    line-height: 32px;
  }
}
.carousel-section__container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.carousel-section__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
@media screen and (max-width: 620px) {
  .carousel-section__wrapper {
    flex-direction: column;
    gap: 5px;
  }
}
.carousel-section__wrapper .carousel-description {
  font-size: 16px;
  line-height: 24px;
  font-weight: normal;
  opacity: 0.8;
  font-family: "Onest", sans-serif;
  color: #070809;
  max-width: 720px;
}
.carousel-section__wrapper .btn {
  align-self: auto;
}
.carousel-section__wrapper-tab {
  flex-direction: column !important;
}
.carousel-section .carousel-btn {
  text-decoration: none;
  color: #070809;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  font-family: "Onest", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 38px;
  position: relative;
  border-radius: 10px;
  transition: all 0.3s;
}
.carousel-section .carousel-btn:hover {
  background: #F3F3F4;
}

.draft {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.draft__item {
  display: flex;
  align-items: center;
  min-height: 160px;
  gap: 20px;
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
}
.draft__item:last-child {
  border-bottom: none;
}
.draft__images {
  width: 320px;
  height: 160px;
  overflow: hidden;
  border-radius: 15px;
}
.draft__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.draft__title {
  font-family: "Onest", sans-serif;
  font-weight: 500;
  font-size: 20px;
  font-style: normal;
  line-height: 26px;
  color: #070809;
  max-width: 760px;
}
.draft__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
}
.draft__label {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 15px;
}
.draft__label .label-project {
  display: flex;
  align-items: center;
  gap: 5px;
}
.draft__label .label-project .title {
  font-size: 15px;
  font-family: "Onest", sans-serif;
  font-weight: normal;
  opacity: 0.8;
  color: #070809;
}
.draft__label .label-project .icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.draft__label .label-project .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  top: -1px;
}
.draft__label .label-date {
  display: flex;
  align-items: center;
  gap: 5px;
}
.draft__label .label-date .title {
  font-size: 15px;
  font-family: "Onest", sans-serif;
  font-weight: normal;
  opacity: 0.8;
  color: #070809;
}
.draft__label .label-date .icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.draft__label .label-date .icon svg {
  width: 16px;
  height: 16px;
  opacity: 0.3;
}
.draft__btn {
  align-self: flex-start;
}

.card-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}
.card-form__caption {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.card-form__title {
  color: #070809;
  font-family: "Onest", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.card-form__title .money {
  opacity: 0.5;
}
.card-form__description {
  color: #070809;
  font-family: "Onest", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  line-height: 22px;
  opacity: 0.5;
}
.card-form .required {
  color: #DD3E37;
}
.card-form .input-group-wrap {
  flex-direction: column !important;
}
.card-form .input-group-wrap .input-group__col {
  width: 100%;
}
.card-form .input-group {
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
@media screen and (max-width: 568px) {
  .card-form .input-group {
    flex-direction: column;
    gap: 10px;
  }
}
.card-form .input-group .information {
  color: #515252;
  font-family: "Onest", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  line-height: 22px;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.card-form .input-group .information a {
  color: #0293E9;
  font-weight: 500;
}
.card-form .input-group .information .icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}
.card-form .input-group .information .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.card-form .input-group-col {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  width: calc(50% - 8px);
}
@media screen and (max-width: 568px) {
  .card-form .input-group-col {
    width: 100%;
  }
}
.card-form .input-group-txt {
  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  line-height: 22px;
  opacity: 0.7;
}
.card-form .input-group__col {
  width: calc(50% - 8px);
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 568px) {
  .card-form .input-group__col {
    width: 100%;
  }
}
.card-form .input-group__col-full {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.card-form .input-group .card-form__input {
  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  line-height: 24px;
  width: 100%;
  height: 45px;
  position: relative;
  background: #f8f8f9;
  padding: 8px 16px;
  border-radius: 10px;
}
.card-form .input-group .card-form__input.is-error {
  border: 1px solid #DD3E37;
}
.card-form .input-group .card-form__input:focus {
  outline: none;
  border: 1px solid #E7E7E9;
}
.card-form .input-group .card-form__input.currencyInput {
  padding-left: 35px;
}
.card-form .input-group .card-form__input.cityInput {
  padding-left: 35px;
}
.card-form .input-group .card-form__input.dateInput {
  padding-left: 35px;
}
.card-form .input-group .card-form__input.input-password {
  font-size: 20px;
  line-height: 32px;
}
.card-form .input-group .card-form__textarea {
  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  line-height: 24px;
  width: 100%;
  height: 100px;
  position: relative;
  background: #f8f8f9;
  padding: 8px 16px;
  border-radius: 10px;
  resize: none;
}
.card-form .input-group .card-form__input-title {
  color: #070809;
  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  line-height: 22px;
  margin-bottom: 10px;
}
.card-form .input-group .city {
  height: 16px;
  width: 16px;
  position: absolute;
  top: 14px;
  left: 13px;
  opacity: 0.3;
  z-index: 1;
}
.card-form .input-group .city img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.card-form .input-group .currency {
  height: 45px;
  position: absolute;
  top: 12px;
  left: 15px;
  font-family: "Onest", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  color: #070809;
  opacity: 0.5;
  z-index: 1;
}
.card-form .input-group .date {
  height: 16px;
  width: 16px;
  position: absolute;
  top: 13px;
  left: 13px;
  opacity: 0.3;
  z-index: 1;
}
.card-form .input-group .date img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.card-form .input-group .card-form__input:focus ~ label,
.card-form .input-group .card-form__input:valid ~ label {
  top: 0px;
  font-size: 12px;
  color: #070809;
  opacity: 0.3;
  font-weight: normal;
}
.card-form .input-group .card-form__label {
  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  line-height: 24px;
  position: absolute;
  pointer-events: none;
  left: 16px;
  top: 12px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  opacity: 0.5;
}
.card-form .input-group .editorBox {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.card-form .input-group .editorBox__toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.card-form .input-group .editorBox__toolbar .toolbar-item {
  background: transparent;
  width: 24px;
  height: 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  transition: all 0.3s;
  border-radius: 5px;
}
.card-form .input-group .editorBox__toolbar .toolbar-item:hover {
  background: #F3F3F4;
}
.card-form .input-group .editorBox__textarea {
  width: 100%;
}
.card-form .input-group .editorBox__textarea textarea {
  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  line-height: 24px;
  width: 100%;
  height: 350px;
  position: relative;
  top: 0px;
  resize: vertical;
  border-radius: 10px;
  background-color: transparent;
  background: #f8f8f9;
  padding: 16px 16px;
}
.card-form .input-group .editorBox__textarea textarea:focus {
  outline: none;
  border: 1px solid #E7E7E9;
}
.card-form .input-group .editorBox__textarea textarea.is-error {
  border: 1px solid #DD3E37;
}
.card-form .input-group-textarea .card-form__textarea-small {
  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  line-height: 24px;
  width: 100%;
  height: 55px;
  position: relative;
  top: 0px;
  background-color: transparent;
  resize: none;
  position: relative;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 8px 16px;
  height: 80px;
  background: #f8f8f9;
}
.card-form .input-group-textarea .card-form__textarea-small.is-error {
  border: 1px solid #DD3E37;
}
.card-form .input-group-textarea .card-form__textarea-small:focus {
  outline: none;
  border: 1px solid #E7E7E9;
}
.card-form .input-group-textarea .card-form__textarea-small:focus ~ label,
.card-form .input-group-textarea .card-form__textarea-small:valid ~ label {
  top: 0px;
  font-size: 12px;
  color: #070809;
  opacity: 0.3;
  font-weight: normal;
}
.card-form .card-group {
  display: flex;
  gap: 10px;
}
.card-form .upload-avatar {
  display: flex;
  align-items: center;
  gap: 20px;
}
.card-form .upload-avatar__file {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 100%;
  background-color: #f8f8f9;
  overflow: hidden;
}
.card-form .upload-avatar__upload {
  width: 120px;
  height: 120px;
}
.card-form .upload-avatar__images {
  width: 100%;
  height: 100%;
}
.card-form .upload-avatar__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-form .upload-avatar__placeholder {
  width: 100%;
  height: 100%;
}
.card-form .upload-avatar__placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-form .upload-avatar .input-file {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.card-form .upload-avatar__btn {
  display: flex;
  gap: 5px;
}
.card-form .upload-avatar__action {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card-form .upload-avatar__action-btn {
  height: 40px;
}
.card-form .upload-avatar__action-upload {
  background: #0293E9;
  color: #fff;
  position: relative;
}
.card-form .upload-avatar__action-delete {
  background: transparent;
  color: #DD3E37;
}
.card-form .upload-avatar__info {
  color: #070809;
  font-family: "Onest", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  opacity: 0.5;
}
.card-form .input-group-question .input-step-name {
  width: calc(100% - 8px) !important;
}
.card-form .input-group-step {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card-form .input-group-step .input-step-name {
  width: calc(80% - 8px);
}
@media screen and (max-width: 414px) {
  .card-form .input-group-step .input-step-name {
    width: calc(60% - 8px);
  }
}
.card-form .input-group-step .input-step-count {
  width: calc(20% - 8px);
}
@media screen and (max-width: 414px) {
  .card-form .input-group-step .input-step-count {
    width: calc(40% - 8px);
  }
}
.card-form .input-group-step .card-form__input-title {
  opacity: 0.7;
}
.card-form .input-group-step__item {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.card-form .input-group-step .input-group {
  width: calc(100% - 30px);
  flex-wrap: nowrap;
  flex-direction: row;
}
.card-form .input-group-step .group-delete {
  background-color: transparent;
  width: 20px;
  height: 20px;
  margin-bottom: 15px;
}
.card-form .input-group-step .group-delete img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.card-form .card-form__input-title {
  color: #070809;
  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  line-height: 22px;
  margin-bottom: 10px;
  opacity: 0.7;
}

.error-description {
  position: absolute;
  bottom: -20px;
  font-size: 12px;
  color: #DD3E37;
  font-weight: normal;
}

.select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 16px;
}

.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: 100%;
  min-height: 45px;
  height: 45px;
}

.select-group.is-error .select-styled {
  border: 1px solid #DD3E37;
}
.select-group.city .select-styled {
  padding-right: 5px;
}
.select-group.city .select-styled::before {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url(../images/icon/pinBg.svg);
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  opacity: 0.3;
}
.select-group.cat .select-styled {
  padding-right: 42px;
}
.select-group.cat .select-styled::before {
  content: "";
  width: 14px;
  min-width: 14px;
  height: 14px;
  background-image: url(../images/icon/tagBg.svg);
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  opacity: 0.3;
}

.select-styled {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  color: #070809;
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  padding-left: 16px;
  border-radius: 10px;
  background: #f8f8f9;
}

.select-styled:after {
  content: "";
  position: absolute;
  background-image: url(../images/icon/arrow-project.svg);
  width: 18px;
  height: 18px;
  right: 16px;
  z-index: 1;
}

.select-styled.active:after {
  content: "";
  position: absolute;
  background-image: url(../images/icon/arrow-project.svg);
  transform: rotate(-180deg);
  width: 18px;
  height: 18px;
  right: 16px;
  z-index: 1;
}

.select-options {
  display: none;
  position: absolute;
  top: 50px;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #fff;
  box-sizing: border-box;
  box-shadow: 0px 8px 20px -6px rgba(7, 8, 9, 0.12);
  border-radius: 10px;
  max-height: 200px;
  padding-bottom: 10px;
  overflow-y: scroll;
}

.select-options li {
  margin: 0;
  padding: 10px 15px;
  margin-left: 10px;
  margin-right: 10px;
  border-radius: 10px;
  text-indent: 0px;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #070809;
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.select-options li:hover {
  color: #070809;
  background: #F3F3F4;
}

.select-options li[rel=hide] {
  display: none;
}

.select-styled:active,
.select-styled.active {
  color: #070809;
}

.select-options li.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.upload {
  border-radius: 10px;
  border: 1px dashed #E7E7E9;
  background: #fff;
  padding: 20px;
  min-height: 320px;
  max-width: 100%;
}
.upload.is-error {
  border: 1px solid #DD3E37;
}
@media screen and (max-width: 568px) {
  .upload {
    padding: 15px;
    min-height: 280px;
  }
}
.upload .btn {
  align-self: center;
}
.upload__form {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .upload__form {
    min-height: 320px;
  }
}
@media screen and (max-width: 568px) {
  .upload__form {
    min-height: 280px;
  }
}
.upload__form.has-advanced-upload {
  outline-offset: -10px;
  -webkit-transition: outline-offset 0.15s ease-in-out, background-color 0.15s linear;
  transition: outline-offset 0.15s ease-in-out, background-color 0.15s linear;
}
.upload__form.is-dragover {
  outline-offset: -20px;
  outline-color: #c8dadf;
  background-color: #fff;
}
.upload__container {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  border-radius: 20px;
  background-color: #F8F8F9;
}
@media screen and (max-width: 1024px) {
  .upload__container {
    min-height: 320px;
  }
}
@media screen and (max-width: 568px) {
  .upload__container {
    min-height: 280px;
    gap: 10px;
    padding: 15px;
  }
}
.upload__icon {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
}
@media screen and (max-width: 568px) {
  .upload__icon {
    width: 72px;
    height: 72px;
  }
}
@media screen and (max-width: 375px) {
  .upload__icon {
    width: 48px;
    height: 48px;
  }
}
.upload__icon svg {
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 568px) {
  .upload__icon svg {
    width: 72px;
    height: 72px;
  }
}
@media screen and (max-width: 375px) {
  .upload__icon svg {
    width: 48px;
    height: 48px;
  }
}
.upload__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 16px;
  font-weight: normal;
  color: #070809;
  cursor: pointer;
  flex-wrap: wrap;
}
.upload__title .ulp {
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}
.upload__title .ulp .icon {
  width: 16px;
  height: 16px;
}
.upload__title .ulp .icon svg {
  width: 16px;
  height: 16px;
}
.upload__title .ulp::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: url("data:image/svg+xml;utf8,<svg width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><rect width='100%' height='1px' style='fill: none; stroke: black; stroke-width: 2; stroke-dasharray: 5 10'/></svg>");
  opacity: 0.2;
}
.upload .again-info {
  text-align: center;
  font-size: 14px;
  font-family: "Onest", sans-serif;
  font-style: normal;
  opacity: 0.5;
  color: #070809;
}
.upload__description {
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
  font-style: normal;
  opacity: 0.5;
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (max-width: 568px) {
  .upload__description {
    max-width: 300px;
    display: none;
  }
}
.upload__bottom-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.upload .box__dragndrop,
.upload .box__icon {
  display: flex;
}
.upload .box.has-advanced-upload .box__dragndrop {
  display: inline;
}
.upload .box.has-advanced-upload .box__icon {
  padding-top: 80px;
  width: 100%;
  height: 80px;
  fill: #92b0b3;
  display: block;
  margin-bottom: 40px;
}
.upload .box.is-uploading .box__input,
.upload .box.is-success .box__input,
.upload .box.is-error .box__input {
  visibility: hidden;
}
.upload .box__uploading,
.upload .box__success,
.upload .box__error {
  display: none;
}
.upload .box.is-uploading .box__uploading,
.upload .box.is-success .box__success,
.upload .box.is-error .box__error {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.upload .box__uploading {
  font-style: italic;
}
.upload .box__success {
  -webkit-animation: appear-from-inside 0.25s ease-in-out;
  animation: appear-from-inside 0.25s ease-in-out;
}
@-webkit-keyframes appear-from-inside {
  from {
    -webkit-transform: translateY(-50%) scale(0);
  }
  75% {
    -webkit-transform: translateY(-50%) scale(1.1);
  }
  to {
    -webkit-transform: translateY(-50%) scale(1);
  }
}
@keyframes appear-from-inside {
  from {
    transform: translateY(-50%) scale(0);
  }
  75% {
    transform: translateY(-50%) scale(1.1);
  }
  to {
    transform: translateY(-50%) scale(1);
  }
}
.upload .box__restart {
  font-weight: 700;
}
.upload .box__restart:focus,
.upload .box__restart:hover {
  color: #39bfd3;
}
.upload .box__file {
  width: 100%;
  height: 100%;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: 1;
  cursor: pointer;
}
.upload .box__file + label {
  position: relative;
  max-width: 100%;
  font-size: 1em;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
}
.upload .box__file + label:hover strong,
.upload .box__file:focus + label strong,
.upload .box__file.has-focus + label strong {
  color: #39bfd3;
}
.upload .box__file:focus + label,
.upload .box__file.has-focus + label {
  outline: 1px dotted #000;
  outline: -webkit-focus-ring-color auto 5px;
}
.upload .box__file + label * {
  /* pointer-events: none; */
  /* in case of FastClick lib use */
}
.upload .no-js .box__file + label {
  display: none;
}
.upload .no-js .box__button {
  display: block;
}
.upload .box__button {
  font-weight: 700;
  color: #e5edf1;
  background-color: #39bfd3;
  display: block;
  padding: 8px 16px;
  margin: 40px auto 0;
}
.upload .box__button:hover,
.upload .box__button:focus {
  background-color: #0f3c4b;
}

.uploadMulti {
  width: 100%;
  border-radius: 10px;
  border: 1px dashed #E7E7E9;
  background: #fff;
  padding: 20px;
  min-height: auto;
  max-width: 100%;
}
.uploadMulti.is-error {
  border: 1px solid #DD3E37;
}
.uploadMulti__box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.uploadMulti__wrap {
  border-radius: 20px;
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 568px) {
  .uploadMulti__wrap {
    flex-direction: column;
  }
}
.uploadMulti__mess {
  color: #070809;
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  gap: 5px;
}
.uploadMulti__mess .count_img,
.uploadMulti__mess .size_img,
.uploadMulti__mess .file_types {
  text-align: center;
  font-size: 14px;
  font-family: "Onest", sans-serif;
  font-style: normal;
  opacity: 0.5;
  color: #070809;
}
.uploadMulti__mess .count_img_var,
.uploadMulti__mess .size_img_var,
.uploadMulti__mess .file_types_var {
  margin-left: 5px;
}
.uploadMulti__item {
  position: relative;
  width: calc(50% - 10px);
  height: 280px;
  border-radius: 10px;
  border: 1px solid #E7E7E9;
}
@media screen and (max-width: 768px) {
  .uploadMulti__item {
    height: 220px;
  }
}
@media screen and (max-width: 568px) {
  .uploadMulti__item {
    width: 100%;
  }
}
.uploadMulti__del {
  display: block;
  position: absolute;
  right: -8px;
  top: -8px;
  width: 21px;
  height: 22px;
  background: url("http://timra.ru/portfolio/8_auto.uz/img/icons/delete-icon-copy.svg") 0 0 no-repeat;
  cursor: pointer;
  opacity: 0.8;
}
.uploadMulti__del:hover {
  opacity: 1;
}
.uploadMulti__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.uploadMulti__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .uploadMulti__content {
    gap: 10px;
  }
}
.uploadMulti__content .uploadMulti__icon {
  width: 86px;
  height: 86px;
}
@media screen and (max-width: 768px) {
  .uploadMulti__content .uploadMulti__icon {
    width: 72px;
    height: 72px;
  }
}
@media screen and (max-width: 568px) {
  .uploadMulti__content .uploadMulti__icon {
    width: 56px;
    height: 56px;
  }
}
.uploadMulti__content .uploadMulti__icon svg {
  width: 86px;
  height: 86px;
}
@media screen and (max-width: 768px) {
  .uploadMulti__content .uploadMulti__icon svg {
    width: 72px;
    height: 72px;
  }
}
@media screen and (max-width: 568px) {
  .uploadMulti__content .uploadMulti__icon svg {
    width: 56px;
    height: 56px;
  }
}
.uploadMulti__content .uploadMulti__caption {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  padding: 20px;
}
.uploadMulti__content .uploadMulti__caption .ulp {
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}
.uploadMulti__content .uploadMulti__caption .ulp::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: url("data:image/svg+xml;utf8,<svg width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><rect width='100%' height='1px' style='fill: none; stroke: black; stroke-width: 2; stroke-dasharray: 5 10'/></svg>");
  opacity: 0.2;
}
.uploadMulti__btn {
  position: relative;
  width: calc(50% - 10px);
  height: 280px;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  background: #f8f8f9;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .uploadMulti__btn {
    height: 220px;
  }
}
@media screen and (max-width: 568px) {
  .uploadMulti__btn {
    width: 100%;
  }
}
.uploadMulti__btn:after {
  content: "";
  cursor: pointer;
}
.uploadMulti__btn:hover {
  opacity: 0.99;
}
.uploadMulti__btn:active {
  box-shadow: inset 10px 10px 90px -30px rgba(0, 0, 0, 0.1);
}
.uploadMulti .upload__input {
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  cursor: pointer;
  z-index: 100;
  width: 100%;
  height: 100%;
}
.uploadMulti .hidden_ms {
  display: none;
}

.checkbox {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-select: none;
  -mz-user-select: none;
  -ms-user-select: none;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  display: inline-flex;
  align-self: flex-start;
  min-height: 24px;
}
.checkbox.is-error .checkbox-checkmark {
  border: 1px solid #DD3E37;
}
.checkbox.checkbox-custom {
  display: flex;
  align-items: center;
}
.checkbox.checkbox-custom .icon-help {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 4px;
  margin-left: 6px;
}

.checkbox input {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  opacity: 0;
  width: 24px;
  height: 24px;
}

.checkbox-link {
  color: #070809;
  transition: all 0.3s;
}

.checkbox-txt {
  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  line-height: 24px;
  color: #070809;
  position: relative;
  top: 4px;
  min-height: auto;
  gap: 20px;
}

.checkbox-checkmark {
  height: 24px;
  width: 24px;
  background: #EDEDEE;
  position: absolute;
  border: 1px solid #EDEDEE;
  top: 3px;
  left: 0;
  border-radius: 6px;
}

.checkbox input:checked ~ .checkbox-checkmark {
  background: #0293E9;
  border: #0293E9;
}

.checkbox-checkmark:after {
  content: "";
  display: none;
  position: absolute;
}

.checkbox input:checked ~ .checkbox-checkmark:after {
  display: block;
}

.checkbox-checkmark:after {
  height: 11px;
  width: 6px;
  border: solid #fff;
  position: absolute;
  border-width: 0 2px 2px 0;
  top: 5px;
  left: 9px;
  cursor: pointer;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}

.award-item {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 20px;
  box-sizing: border-box;
  padding: 30px 35px;
  background: #fff;
  border: 1px solid rgba(7, 8, 9, 0.05);
}
@media screen and (max-width: 568px) {
  .award-item {
    padding: 15px;
  }
}
@media screen and (max-width: 414px) {
  .award-item {
    border-radius: 10px;
  }
}
.award-item .award-item__anonim {
  display: none;
}
.award-item.active {
  border: 1px solid #0293E9;
}
.award-item.active .award-item__ellipse::after, .award-item.active .award-item__ellipse::before {
  opacity: 1;
}
.award-item.active .award-item__price {
  display: none;
}
.award-item.active .award-item__anonim {
  display: flex;
  margin-bottom: 20px;
}
.award-item.active .award-item__buy {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .award-item.active .award-item__buy {
    flex-direction: column;
    width: 100%;
  }
  .award-item.active .award-item__buy .btn {
    width: 100%;
  }
}
.award-item__box {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  z-index: 99999;
}
.award-item__border {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
  border-radius: 20px;
}
.award-item__ellipse {
  width: 24px;
  min-width: 24px;
  height: 24px;
  border-radius: 100%;
  background-color: #F8F8F9;
  position: relative;
  display: flex;
  align-items: centere;
  justify-content: center;
  border: 1px solid #F3F3F4;
  cursor: pointer;
}
@media screen and (max-width: 568px) {
  .award-item__ellipse {
    display: none;
  }
}
.award-item__ellipse::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  background-color: #0293E9;
  opacity: 0;
}
.award-item__ellipse::before {
  content: "";
  position: absolute;
  top: 4px;
  right: 4px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M13.3337 4L6.00033 11.3333L2.66699 8" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  width: 16px;
  height: 16px;
  z-index: 1;
  opacity: 0;
}
.award-item__info {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.award-item__info-top {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
@media screen and (max-width: 568px) {
  .award-item__info-top {
    gap: 20px;
    flex-direction: column-reverse;
  }
}
.award-item__info-bottom {
  margin-top: 20px;
}
.award-item__content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}
.award-item__title {
  font-family: "Onest", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.award-item__description p {
  opacity: 0.5;
  font-size: 15px;
  line-height: 22px;
  font-weight: normal;
  margin-bottom: 8px;
  font-size: "Onest", sans-serif;
}
.award-item__description p:last-child {
  margin-bottom: 0;
}
.award-item__delivery {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  line-height: 20px;
  font-weight: normal;
  font-size: "Onest", sans-serif;
  margin-top: 5px;
}
.award-item__delivery .icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -1px;
}
.award-item__delivery .icon svg {
  width: 16px;
  height: 16px;
}
.award-item__delivery .title-label {
  opacity: 0.5;
}
.award-item__image {
  width: 200px;
  min-width: 200px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .award-item__image {
    width: 170px;
    min-width: 170px;
    height: 110px;
  }
}
@media screen and (max-width: 568px) {
  .award-item__image {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 200px;
    display: inline-flex;
  }
}
.award-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 568px) {
  .award-item__image img {
    height: auto;
  }
}
.award-item__price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.award-item__buy {
  display: none;
  padding-top: 20px;
  border-top: 1px solid rgba(7, 8, 9, 0.05);
}
.award-item__buy.subscription-form {
  display: flex;
  margin-top: 20px;
}
.award-item__buy-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.award-item__buy-action {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .award-item__buy-action {
    width: 100%;
  }
}
@media screen and (max-width: 375px) {
  .award-item__buy-action {
    flex-direction: column;
  }
}
@media screen and (max-width: 350px) {
  .award-item__buy-action {
    gap: 10px;
  }
}
.award-item__buy-action .counter-box {
  display: flex;
  align-items: center;
  height: 40px;
  min-width: 120px;
  width: 120px;
  border-radius: 8px;
  border: 1px solid #E7E7E9;
  padding: 5px;
  gap: 5px;
}
@media screen and (max-width: 350px) {
  .award-item__buy-action .counter-box {
    width: 100% !important;
    min-width: 100% !important;
  }
}
.award-item__buy-action .counter-box__decrease, .award-item__buy-action .counter-box__increase {
  width: 30px;
  min-width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border-radius: 5px;
  background: #F3F3F4;
  cursor: pointer;
  transition: all 0.3s;
}
.award-item__buy-action .counter-box__decrease:hover, .award-item__buy-action .counter-box__increase:hover {
  background: #E7E7E9;
}
.award-item__buy-action .counter-box__decrease .icon, .award-item__buy-action .counter-box__increase .icon {
  width: 16px;
  height: 16px;
}
.award-item__buy-action .counter-box__decrease .icon img, .award-item__buy-action .counter-box__increase .icon img {
  width: 100%;
  height: 100%;
}
.award-item__buy-action .counter-box__input {
  width: 100%;
  text-align: center;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: 600;
  font-size: 15px;
}
.award-item__buy-input {
  max-width: 350px;
  position: relative;
}
@media screen and (max-width: 568px) {
  .award-item__buy-input {
    max-width: 100%;
  }
}
.award-item__buy-input .currency {
  height: 45px;
  position: absolute;
  top: 11px;
  left: 15px;
  font-family: "Onest", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  color: #070809;
  z-index: 1;
}
.award-item__buy-input .card-form__input {
  font-family: "Onest", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  width: 100%;
  height: 45px;
  position: relative;
  background: #f8f8f9;
  padding: 8px 16px;
  border-radius: 10px;
  padding-left: 35px;
}
.award-item__buy-input .card-form__input.is-error {
  border: 1px solid #DD3E37;
}
.award-item__buy-input .card-form__input:focus {
  border: 1px solid #E7E7E9;
}
.award-item__buy-input .card-form__input::placeholder {
  font-size: 15px;
  font-weight: normal;
}
.award-item__number {
  font-family: "Onest", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  color: #070809;
}
.award-item__stats {
  display: flex;
  align-items: center;
}
.award-item__stats .all,
.award-item__stats .buy {
  font-family: "Onest", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  color: #070809;
  opacity: 0.5;
}
.award-item__stats .all {
  position: relative;
  padding-right: 5px;
}
.award-item__stats .all::after {
  content: "•";
  position: relative;
  right: -2px;
}

.radio-block {
  position: relative;
  cursor: pointer;
  display: block;
  user-select: none;
  -webkit-user-select: none;
  -mz-user-select: none;
  -ms-user-select: none;
  width: auto;
  border: 1px solid #f1f1f1;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 12px 16px;
  background: #FEFDFD;
}
.radio-block input {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  pointer: cursor;
  opacity: 0;
}
.radio-block input:checked ~ .radio-block__bg {
  opacity: 0.5;
}
.radio-block input:checked ~ .radio-block__content .radio-block__ellipse {
  background: #0293E9;
  border: none;
}
.radio-block__bg {
  opacity: 0;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  position: absolute;
  border-radius: 10px;
  border: 1px solid #0293E9;
  -webkit-transition: opacity 0.35s ease;
  -o-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
}
.radio-block__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  height: 100%;
  font-weight: 500;
  color: #070809;
  -webkit-transition: opacity 0.35s ease;
  -o-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
  gap: 10px;
}
.radio-block__ellipse {
  width: 20px;
  height: 20px;
  background: #F8F8F9;
  border: 1px solid #F3F3F4;
  border-radius: 100%;
  position: relative;
}
.radio-block__ellipse::after {
  content: "";
  position: absolute;
  left: 3px;
  bottom: 0px;
  top: 2px;
  right: 0px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M13.3337 4L6.00033 11.3333L2.66699 8" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  width: 12px;
  height: 12px;
}
.radio-block__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.radio-block__title {
  font-size: 15px;
  font-weight: 500;
  color: #070809;
  font-style: normal;
  font-family: "Onest", sans-serif;
}
.radio-block__subtitle {
  font-size: 14px;
  font-weight: normal;
  color: #070809;
  font-style: normal;
  font-family: "Onest", sans-serif;
  opacity: 0.5;
}
.radio-block__images {
  margin-bottom: 8px;
  width: 56px;
  height: 56px;
  overflow: hidden;
}
.radio-block__images img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.radio-block__color {
  width: 24px;
  min-width: 24px;
  height: 24px;
  border-radius: 100%;
}

.sidebar-page {
  min-width: 200px;
  width: 200px;
}
@media screen and (max-width: 1024px) {
  .sidebar-page {
    width: 100%;
    min-width: 100%;
  }
}
.sidebar-page__main {
  position: sticky;
  top: 20px;
  width: 100%;
}
.sidebar-page__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .sidebar-page__list {
    flex-direction: row;
    overflow-y: scroll;
  }
}
.sidebar-page__list .btn {
  display: inline-flex;
  height: 45px;
  padding: 8px 20px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  font-size: 15px;
  font-family: "Onest", sans-serif;
  font-weight: 500;
  transition: all 0.3s;
  color: #070809;
  justify-content: flex-start;
}
@media screen and (max-width: 1024px) {
  .sidebar-page__list .btn {
    min-width: max-content;
    padding: 8px 12px;
  }
}
.sidebar-page__list .btn:hover {
  background: #F3F3F4;
}
.sidebar-page__list .btn.active {
  background: #F3F3F4;
}
.sidebar-page__list .btn .icon {
  min-width: 16px;
  width: 16px;
  height: 16px;
  overflow: hidden;
}
.sidebar-page__list .btn .icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.sidebar-page__list .btn .title {
  font-size: 15px;
  font-family: "Onest", sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}
.sidebar-page__list .btn .label-balance {
  background-color: #E7E7E9;
  padding: 4px 6px;
  border-radius: 20px;
  font-size: 12px;
  font-family: "Onest", sans-serif;
  font-weight: 500;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(7, 8, 9, 0.7);
  text-align: center;
}
.sidebar-page__list .btn .number-bell {
  background-color: #D2392F;
  width: 18px;
  min-width: 18px;
  height: 18px;
  padding: 2px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-family: "Onest", sans-serif;
  font-weight: 500;
  color: #fff;
  text-align: center;
}

.progress-circle.fin .progress-circle__fill {
  background-color: #0293E9;
}

.progress-circle.fiz .progress-circle__fill {
  background-color: #F9C20F;
}

.progress-circle.mat .progress-circle__fill {
  background-color: #D2392F;
}

.progress-circle {
  margin-left: auto;
  width: 66px;
  height: 66px;
  background-color: #F3F3F4;
  border-radius: 50%;
}
.progress-circle .progress-circle__slice,
.progress-circle .progress-circle__fill {
  width: 66px;
  height: 66px;
  position: absolute;
  -webkit-backface-visibility: hidden;
  transition: transform 1s;
  border-radius: 50%;
}
.progress-circle .progress-circle__slice {
  clip: rect(0px, 66px, 66px, 33px);
}
.progress-circle .progress-circle__slice .progress-circle__fill {
  clip: rect(0px, 33px, 66px, 0px);
}
.progress-circle .progress-circle__overlay {
  width: 52px;
  height: 52px;
  position: absolute;
  margin-left: 7px;
  margin-top: 7px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #070809;
  font-weight: normal;
  font-family: "Onest", sans-serif;
  text-align: center;
}
.progress-circle[data-progress="0"] .progress-circle__slice.full,
.progress-circle[data-progress="0"] .progress-circle__fill {
  transform: rotate(0deg);
}
.progress-circle[data-progress="0"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(0deg);
}
.progress-circle[data-progress="1"] .progress-circle__slice.full,
.progress-circle[data-progress="1"] .progress-circle__fill {
  transform: rotate(1.8deg);
}
.progress-circle[data-progress="1"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(3.6deg);
}
.progress-circle[data-progress="2"] .progress-circle__slice.full,
.progress-circle[data-progress="2"] .progress-circle__fill {
  transform: rotate(3.6deg);
}
.progress-circle[data-progress="2"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(7.2deg);
}
.progress-circle[data-progress="3"] .progress-circle__slice.full,
.progress-circle[data-progress="3"] .progress-circle__fill {
  transform: rotate(5.4deg);
}
.progress-circle[data-progress="3"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(10.8deg);
}
.progress-circle[data-progress="4"] .progress-circle__slice.full,
.progress-circle[data-progress="4"] .progress-circle__fill {
  transform: rotate(7.2deg);
}
.progress-circle[data-progress="4"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(14.4deg);
}
.progress-circle[data-progress="5"] .progress-circle__slice.full,
.progress-circle[data-progress="5"] .progress-circle__fill {
  transform: rotate(9deg);
}
.progress-circle[data-progress="5"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(18deg);
}
.progress-circle[data-progress="6"] .progress-circle__slice.full,
.progress-circle[data-progress="6"] .progress-circle__fill {
  transform: rotate(10.8deg);
}
.progress-circle[data-progress="6"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(21.6deg);
}
.progress-circle[data-progress="7"] .progress-circle__slice.full,
.progress-circle[data-progress="7"] .progress-circle__fill {
  transform: rotate(12.6deg);
}
.progress-circle[data-progress="7"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(25.2deg);
}
.progress-circle[data-progress="8"] .progress-circle__slice.full,
.progress-circle[data-progress="8"] .progress-circle__fill {
  transform: rotate(14.4deg);
}
.progress-circle[data-progress="8"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(28.8deg);
}
.progress-circle[data-progress="9"] .progress-circle__slice.full,
.progress-circle[data-progress="9"] .progress-circle__fill {
  transform: rotate(16.2deg);
}
.progress-circle[data-progress="9"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(32.4deg);
}
.progress-circle[data-progress="10"] .progress-circle__slice.full,
.progress-circle[data-progress="10"] .progress-circle__fill {
  transform: rotate(18deg);
}
.progress-circle[data-progress="10"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(36deg);
}
.progress-circle[data-progress="11"] .progress-circle__slice.full,
.progress-circle[data-progress="11"] .progress-circle__fill {
  transform: rotate(19.8deg);
}
.progress-circle[data-progress="11"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(39.6deg);
}
.progress-circle[data-progress="12"] .progress-circle__slice.full,
.progress-circle[data-progress="12"] .progress-circle__fill {
  transform: rotate(21.6deg);
}
.progress-circle[data-progress="12"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(43.2deg);
}
.progress-circle[data-progress="13"] .progress-circle__slice.full,
.progress-circle[data-progress="13"] .progress-circle__fill {
  transform: rotate(23.4deg);
}
.progress-circle[data-progress="13"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(46.8deg);
}
.progress-circle[data-progress="14"] .progress-circle__slice.full,
.progress-circle[data-progress="14"] .progress-circle__fill {
  transform: rotate(25.2deg);
}
.progress-circle[data-progress="14"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(50.4deg);
}
.progress-circle[data-progress="15"] .progress-circle__slice.full,
.progress-circle[data-progress="15"] .progress-circle__fill {
  transform: rotate(27deg);
}
.progress-circle[data-progress="15"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(54deg);
}
.progress-circle[data-progress="16"] .progress-circle__slice.full,
.progress-circle[data-progress="16"] .progress-circle__fill {
  transform: rotate(28.8deg);
}
.progress-circle[data-progress="16"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(57.6deg);
}
.progress-circle[data-progress="17"] .progress-circle__slice.full,
.progress-circle[data-progress="17"] .progress-circle__fill {
  transform: rotate(30.6deg);
}
.progress-circle[data-progress="17"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(61.2deg);
}
.progress-circle[data-progress="18"] .progress-circle__slice.full,
.progress-circle[data-progress="18"] .progress-circle__fill {
  transform: rotate(32.4deg);
}
.progress-circle[data-progress="18"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(64.8deg);
}
.progress-circle[data-progress="19"] .progress-circle__slice.full,
.progress-circle[data-progress="19"] .progress-circle__fill {
  transform: rotate(34.2deg);
}
.progress-circle[data-progress="19"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(68.4deg);
}
.progress-circle[data-progress="20"] .progress-circle__slice.full,
.progress-circle[data-progress="20"] .progress-circle__fill {
  transform: rotate(36deg);
}
.progress-circle[data-progress="20"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(72deg);
}
.progress-circle[data-progress="21"] .progress-circle__slice.full,
.progress-circle[data-progress="21"] .progress-circle__fill {
  transform: rotate(37.8deg);
}
.progress-circle[data-progress="21"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(75.6deg);
}
.progress-circle[data-progress="22"] .progress-circle__slice.full,
.progress-circle[data-progress="22"] .progress-circle__fill {
  transform: rotate(39.6deg);
}
.progress-circle[data-progress="22"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(79.2deg);
}
.progress-circle[data-progress="23"] .progress-circle__slice.full,
.progress-circle[data-progress="23"] .progress-circle__fill {
  transform: rotate(41.4deg);
}
.progress-circle[data-progress="23"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(82.8deg);
}
.progress-circle[data-progress="24"] .progress-circle__slice.full,
.progress-circle[data-progress="24"] .progress-circle__fill {
  transform: rotate(43.2deg);
}
.progress-circle[data-progress="24"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(86.4deg);
}
.progress-circle[data-progress="25"] .progress-circle__slice.full,
.progress-circle[data-progress="25"] .progress-circle__fill {
  transform: rotate(45deg);
}
.progress-circle[data-progress="25"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(90deg);
}
.progress-circle[data-progress="26"] .progress-circle__slice.full,
.progress-circle[data-progress="26"] .progress-circle__fill {
  transform: rotate(46.8deg);
}
.progress-circle[data-progress="26"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(93.6deg);
}
.progress-circle[data-progress="27"] .progress-circle__slice.full,
.progress-circle[data-progress="27"] .progress-circle__fill {
  transform: rotate(48.6deg);
}
.progress-circle[data-progress="27"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(97.2deg);
}
.progress-circle[data-progress="28"] .progress-circle__slice.full,
.progress-circle[data-progress="28"] .progress-circle__fill {
  transform: rotate(50.4deg);
}
.progress-circle[data-progress="28"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(100.8deg);
}
.progress-circle[data-progress="29"] .progress-circle__slice.full,
.progress-circle[data-progress="29"] .progress-circle__fill {
  transform: rotate(52.2deg);
}
.progress-circle[data-progress="29"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(104.4deg);
}
.progress-circle[data-progress="30"] .progress-circle__slice.full,
.progress-circle[data-progress="30"] .progress-circle__fill {
  transform: rotate(54deg);
}
.progress-circle[data-progress="30"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(108deg);
}
.progress-circle[data-progress="31"] .progress-circle__slice.full,
.progress-circle[data-progress="31"] .progress-circle__fill {
  transform: rotate(55.8deg);
}
.progress-circle[data-progress="31"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(111.6deg);
}
.progress-circle[data-progress="32"] .progress-circle__slice.full,
.progress-circle[data-progress="32"] .progress-circle__fill {
  transform: rotate(57.6deg);
}
.progress-circle[data-progress="32"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(115.2deg);
}
.progress-circle[data-progress="33"] .progress-circle__slice.full,
.progress-circle[data-progress="33"] .progress-circle__fill {
  transform: rotate(59.4deg);
}
.progress-circle[data-progress="33"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(118.8deg);
}
.progress-circle[data-progress="34"] .progress-circle__slice.full,
.progress-circle[data-progress="34"] .progress-circle__fill {
  transform: rotate(61.2deg);
}
.progress-circle[data-progress="34"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(122.4deg);
}
.progress-circle[data-progress="35"] .progress-circle__slice.full,
.progress-circle[data-progress="35"] .progress-circle__fill {
  transform: rotate(63deg);
}
.progress-circle[data-progress="35"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(126deg);
}
.progress-circle[data-progress="36"] .progress-circle__slice.full,
.progress-circle[data-progress="36"] .progress-circle__fill {
  transform: rotate(64.8deg);
}
.progress-circle[data-progress="36"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(129.6deg);
}
.progress-circle[data-progress="37"] .progress-circle__slice.full,
.progress-circle[data-progress="37"] .progress-circle__fill {
  transform: rotate(66.6deg);
}
.progress-circle[data-progress="37"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(133.2deg);
}
.progress-circle[data-progress="38"] .progress-circle__slice.full,
.progress-circle[data-progress="38"] .progress-circle__fill {
  transform: rotate(68.4deg);
}
.progress-circle[data-progress="38"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(136.8deg);
}
.progress-circle[data-progress="39"] .progress-circle__slice.full,
.progress-circle[data-progress="39"] .progress-circle__fill {
  transform: rotate(70.2deg);
}
.progress-circle[data-progress="39"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(140.4deg);
}
.progress-circle[data-progress="40"] .progress-circle__slice.full,
.progress-circle[data-progress="40"] .progress-circle__fill {
  transform: rotate(72deg);
}
.progress-circle[data-progress="40"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(144deg);
}
.progress-circle[data-progress="41"] .progress-circle__slice.full,
.progress-circle[data-progress="41"] .progress-circle__fill {
  transform: rotate(73.8deg);
}
.progress-circle[data-progress="41"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(147.6deg);
}
.progress-circle[data-progress="42"] .progress-circle__slice.full,
.progress-circle[data-progress="42"] .progress-circle__fill {
  transform: rotate(75.6deg);
}
.progress-circle[data-progress="42"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(151.2deg);
}
.progress-circle[data-progress="43"] .progress-circle__slice.full,
.progress-circle[data-progress="43"] .progress-circle__fill {
  transform: rotate(77.4deg);
}
.progress-circle[data-progress="43"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(154.8deg);
}
.progress-circle[data-progress="44"] .progress-circle__slice.full,
.progress-circle[data-progress="44"] .progress-circle__fill {
  transform: rotate(79.2deg);
}
.progress-circle[data-progress="44"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(158.4deg);
}
.progress-circle[data-progress="45"] .progress-circle__slice.full,
.progress-circle[data-progress="45"] .progress-circle__fill {
  transform: rotate(81deg);
}
.progress-circle[data-progress="45"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(162deg);
}
.progress-circle[data-progress="46"] .progress-circle__slice.full,
.progress-circle[data-progress="46"] .progress-circle__fill {
  transform: rotate(82.8deg);
}
.progress-circle[data-progress="46"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(165.6deg);
}
.progress-circle[data-progress="47"] .progress-circle__slice.full,
.progress-circle[data-progress="47"] .progress-circle__fill {
  transform: rotate(84.6deg);
}
.progress-circle[data-progress="47"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(169.2deg);
}
.progress-circle[data-progress="48"] .progress-circle__slice.full,
.progress-circle[data-progress="48"] .progress-circle__fill {
  transform: rotate(86.4deg);
}
.progress-circle[data-progress="48"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(172.8deg);
}
.progress-circle[data-progress="49"] .progress-circle__slice.full,
.progress-circle[data-progress="49"] .progress-circle__fill {
  transform: rotate(88.2deg);
}
.progress-circle[data-progress="49"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(176.4deg);
}
.progress-circle[data-progress="50"] .progress-circle__slice.full,
.progress-circle[data-progress="50"] .progress-circle__fill {
  transform: rotate(90deg);
}
.progress-circle[data-progress="50"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(180deg);
}
.progress-circle[data-progress="51"] .progress-circle__slice.full,
.progress-circle[data-progress="51"] .progress-circle__fill {
  transform: rotate(91.8deg);
}
.progress-circle[data-progress="51"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(183.6deg);
}
.progress-circle[data-progress="52"] .progress-circle__slice.full,
.progress-circle[data-progress="52"] .progress-circle__fill {
  transform: rotate(93.6deg);
}
.progress-circle[data-progress="52"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(187.2deg);
}
.progress-circle[data-progress="53"] .progress-circle__slice.full,
.progress-circle[data-progress="53"] .progress-circle__fill {
  transform: rotate(95.4deg);
}
.progress-circle[data-progress="53"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(190.8deg);
}
.progress-circle[data-progress="54"] .progress-circle__slice.full,
.progress-circle[data-progress="54"] .progress-circle__fill {
  transform: rotate(97.2deg);
}
.progress-circle[data-progress="54"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(194.4deg);
}
.progress-circle[data-progress="55"] .progress-circle__slice.full,
.progress-circle[data-progress="55"] .progress-circle__fill {
  transform: rotate(99deg);
}
.progress-circle[data-progress="55"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(198deg);
}
.progress-circle[data-progress="56"] .progress-circle__slice.full,
.progress-circle[data-progress="56"] .progress-circle__fill {
  transform: rotate(100.8deg);
}
.progress-circle[data-progress="56"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(201.6deg);
}
.progress-circle[data-progress="57"] .progress-circle__slice.full,
.progress-circle[data-progress="57"] .progress-circle__fill {
  transform: rotate(102.6deg);
}
.progress-circle[data-progress="57"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(205.2deg);
}
.progress-circle[data-progress="58"] .progress-circle__slice.full,
.progress-circle[data-progress="58"] .progress-circle__fill {
  transform: rotate(104.4deg);
}
.progress-circle[data-progress="58"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(208.8deg);
}
.progress-circle[data-progress="59"] .progress-circle__slice.full,
.progress-circle[data-progress="59"] .progress-circle__fill {
  transform: rotate(106.2deg);
}
.progress-circle[data-progress="59"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(212.4deg);
}
.progress-circle[data-progress="60"] .progress-circle__slice.full,
.progress-circle[data-progress="60"] .progress-circle__fill {
  transform: rotate(108deg);
}
.progress-circle[data-progress="60"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(216deg);
}
.progress-circle[data-progress="61"] .progress-circle__slice.full,
.progress-circle[data-progress="61"] .progress-circle__fill {
  transform: rotate(109.8deg);
}
.progress-circle[data-progress="61"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(219.6deg);
}
.progress-circle[data-progress="62"] .progress-circle__slice.full,
.progress-circle[data-progress="62"] .progress-circle__fill {
  transform: rotate(111.6deg);
}
.progress-circle[data-progress="62"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(223.2deg);
}
.progress-circle[data-progress="63"] .progress-circle__slice.full,
.progress-circle[data-progress="63"] .progress-circle__fill {
  transform: rotate(113.4deg);
}
.progress-circle[data-progress="63"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(226.8deg);
}
.progress-circle[data-progress="64"] .progress-circle__slice.full,
.progress-circle[data-progress="64"] .progress-circle__fill {
  transform: rotate(115.2deg);
}
.progress-circle[data-progress="64"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(230.4deg);
}
.progress-circle[data-progress="65"] .progress-circle__slice.full,
.progress-circle[data-progress="65"] .progress-circle__fill {
  transform: rotate(117deg);
}
.progress-circle[data-progress="65"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(234deg);
}
.progress-circle[data-progress="66"] .progress-circle__slice.full,
.progress-circle[data-progress="66"] .progress-circle__fill {
  transform: rotate(118.8deg);
}
.progress-circle[data-progress="66"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(237.6deg);
}
.progress-circle[data-progress="67"] .progress-circle__slice.full,
.progress-circle[data-progress="67"] .progress-circle__fill {
  transform: rotate(120.6deg);
}
.progress-circle[data-progress="67"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(241.2deg);
}
.progress-circle[data-progress="68"] .progress-circle__slice.full,
.progress-circle[data-progress="68"] .progress-circle__fill {
  transform: rotate(122.4deg);
}
.progress-circle[data-progress="68"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(244.8deg);
}
.progress-circle[data-progress="69"] .progress-circle__slice.full,
.progress-circle[data-progress="69"] .progress-circle__fill {
  transform: rotate(124.2deg);
}
.progress-circle[data-progress="69"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(248.4deg);
}
.progress-circle[data-progress="70"] .progress-circle__slice.full,
.progress-circle[data-progress="70"] .progress-circle__fill {
  transform: rotate(126deg);
}
.progress-circle[data-progress="70"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(252deg);
}
.progress-circle[data-progress="71"] .progress-circle__slice.full,
.progress-circle[data-progress="71"] .progress-circle__fill {
  transform: rotate(127.8deg);
}
.progress-circle[data-progress="71"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(255.6deg);
}
.progress-circle[data-progress="72"] .progress-circle__slice.full,
.progress-circle[data-progress="72"] .progress-circle__fill {
  transform: rotate(129.6deg);
}
.progress-circle[data-progress="72"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(259.2deg);
}
.progress-circle[data-progress="73"] .progress-circle__slice.full,
.progress-circle[data-progress="73"] .progress-circle__fill {
  transform: rotate(131.4deg);
}
.progress-circle[data-progress="73"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(262.8deg);
}
.progress-circle[data-progress="74"] .progress-circle__slice.full,
.progress-circle[data-progress="74"] .progress-circle__fill {
  transform: rotate(133.2deg);
}
.progress-circle[data-progress="74"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(266.4deg);
}
.progress-circle[data-progress="75"] .progress-circle__slice.full,
.progress-circle[data-progress="75"] .progress-circle__fill {
  transform: rotate(135deg);
}
.progress-circle[data-progress="75"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(270deg);
}
.progress-circle[data-progress="76"] .progress-circle__slice.full,
.progress-circle[data-progress="76"] .progress-circle__fill {
  transform: rotate(136.8deg);
}
.progress-circle[data-progress="76"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(273.6deg);
}
.progress-circle[data-progress="77"] .progress-circle__slice.full,
.progress-circle[data-progress="77"] .progress-circle__fill {
  transform: rotate(138.6deg);
}
.progress-circle[data-progress="77"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(277.2deg);
}
.progress-circle[data-progress="78"] .progress-circle__slice.full,
.progress-circle[data-progress="78"] .progress-circle__fill {
  transform: rotate(140.4deg);
}
.progress-circle[data-progress="78"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(280.8deg);
}
.progress-circle[data-progress="79"] .progress-circle__slice.full,
.progress-circle[data-progress="79"] .progress-circle__fill {
  transform: rotate(142.2deg);
}
.progress-circle[data-progress="79"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(284.4deg);
}
.progress-circle[data-progress="80"] .progress-circle__slice.full,
.progress-circle[data-progress="80"] .progress-circle__fill {
  transform: rotate(144deg);
}
.progress-circle[data-progress="80"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(288deg);
}
.progress-circle[data-progress="81"] .progress-circle__slice.full,
.progress-circle[data-progress="81"] .progress-circle__fill {
  transform: rotate(145.8deg);
}
.progress-circle[data-progress="81"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(291.6deg);
}
.progress-circle[data-progress="82"] .progress-circle__slice.full,
.progress-circle[data-progress="82"] .progress-circle__fill {
  transform: rotate(147.6deg);
}
.progress-circle[data-progress="82"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(295.2deg);
}
.progress-circle[data-progress="83"] .progress-circle__slice.full,
.progress-circle[data-progress="83"] .progress-circle__fill {
  transform: rotate(149.4deg);
}
.progress-circle[data-progress="83"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(298.8deg);
}
.progress-circle[data-progress="84"] .progress-circle__slice.full,
.progress-circle[data-progress="84"] .progress-circle__fill {
  transform: rotate(151.2deg);
}
.progress-circle[data-progress="84"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(302.4deg);
}
.progress-circle[data-progress="85"] .progress-circle__slice.full,
.progress-circle[data-progress="85"] .progress-circle__fill {
  transform: rotate(153deg);
}
.progress-circle[data-progress="85"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(306deg);
}
.progress-circle[data-progress="86"] .progress-circle__slice.full,
.progress-circle[data-progress="86"] .progress-circle__fill {
  transform: rotate(154.8deg);
}
.progress-circle[data-progress="86"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(309.6deg);
}
.progress-circle[data-progress="87"] .progress-circle__slice.full,
.progress-circle[data-progress="87"] .progress-circle__fill {
  transform: rotate(156.6deg);
}
.progress-circle[data-progress="87"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(313.2deg);
}
.progress-circle[data-progress="88"] .progress-circle__slice.full,
.progress-circle[data-progress="88"] .progress-circle__fill {
  transform: rotate(158.4deg);
}
.progress-circle[data-progress="88"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(316.8deg);
}
.progress-circle[data-progress="89"] .progress-circle__slice.full,
.progress-circle[data-progress="89"] .progress-circle__fill {
  transform: rotate(160.2deg);
}
.progress-circle[data-progress="89"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(320.4deg);
}
.progress-circle[data-progress="90"] .progress-circle__slice.full,
.progress-circle[data-progress="90"] .progress-circle__fill {
  transform: rotate(162deg);
}
.progress-circle[data-progress="90"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(324deg);
}
.progress-circle[data-progress="91"] .progress-circle__slice.full,
.progress-circle[data-progress="91"] .progress-circle__fill {
  transform: rotate(163.8deg);
}
.progress-circle[data-progress="91"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(327.6deg);
}
.progress-circle[data-progress="92"] .progress-circle__slice.full,
.progress-circle[data-progress="92"] .progress-circle__fill {
  transform: rotate(165.6deg);
}
.progress-circle[data-progress="92"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(331.2deg);
}
.progress-circle[data-progress="93"] .progress-circle__slice.full,
.progress-circle[data-progress="93"] .progress-circle__fill {
  transform: rotate(167.4deg);
}
.progress-circle[data-progress="93"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(334.8deg);
}
.progress-circle[data-progress="94"] .progress-circle__slice.full,
.progress-circle[data-progress="94"] .progress-circle__fill {
  transform: rotate(169.2deg);
}
.progress-circle[data-progress="94"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(338.4deg);
}
.progress-circle[data-progress="95"] .progress-circle__slice.full,
.progress-circle[data-progress="95"] .progress-circle__fill {
  transform: rotate(171deg);
}
.progress-circle[data-progress="95"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(342deg);
}
.progress-circle[data-progress="96"] .progress-circle__slice.full,
.progress-circle[data-progress="96"] .progress-circle__fill {
  transform: rotate(172.8deg);
}
.progress-circle[data-progress="96"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(345.6deg);
}
.progress-circle[data-progress="97"] .progress-circle__slice.full,
.progress-circle[data-progress="97"] .progress-circle__fill {
  transform: rotate(174.6deg);
}
.progress-circle[data-progress="97"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(349.2deg);
}
.progress-circle[data-progress="98"] .progress-circle__slice.full,
.progress-circle[data-progress="98"] .progress-circle__fill {
  transform: rotate(176.4deg);
}
.progress-circle[data-progress="98"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(352.8deg);
}
.progress-circle[data-progress="99"] .progress-circle__slice.full,
.progress-circle[data-progress="99"] .progress-circle__fill {
  transform: rotate(178.2deg);
}
.progress-circle[data-progress="99"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(356.4deg);
}
.progress-circle[data-progress="100"] .progress-circle__slice.full,
.progress-circle[data-progress="100"] .progress-circle__fill {
  transform: rotate(180deg);
}
.progress-circle[data-progress="100"] .progress-circle__fill.progress-circle__bar {
  transform: rotate(360deg);
}

.balance-box {
  background: #fff;
  border-radius: 15px;
  border: 1px solid #F3F3F4;
  padding: 30px 30px;
  width: auto;
  display: flex;
  flex-direction: column;
  width: 320px;
  max-width: 320px;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .balance-box {
    width: 100%;
    max-width: 100%;
    order: 2;
    flex-direction: row;
    align-items: flex-end;
  }
}
@media screen and (max-width: 640px) {
  .balance-box {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 568px) {
  .balance-box {
    padding: 20px 15px;
  }
}
.balance-box__header {
  display: flex;
  flex-direction: column;
}
.balance-box__caption {
  font-size: 15px;
  font-weight: normal;
  opacity: 0.5;
  font-family: "Onest", sans-serif;
  color: #070809;
}
.balance-box__number {
  font-size: 32px;
  line-height: 32px;
  font-weight: 600;
  font-family: "Onest", sans-serif;
  color: #070809;
  margin-top: 5px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .balance-box__number {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 640px) {
  .balance-box__number {
    margin-bottom: 10px;
  }
}
.balance-box__action {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 1024px) {
  .balance-box__action {
    order: 3;
    margin-left: auto;
  }
}
@media screen and (max-width: 640px) {
  .balance-box__action {
    margin-left: 0;
  }
}
@media screen and (max-width: 568px) {
  .balance-box__action {
    width: 100%;
  }
}
.balance-box .btn {
  width: 100%;
}
.balance-box__requisites {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.balance-box__requisites .radio-block {
  height: 45px;
}
.balance-box__requisites-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border-radius: 10px;
  border: 1px dashed #E7E7E9;
  background: #fff;
  height: 45px;
  padding: 8px 20px;
  cursor: pointer;
}
.balance-box__requisites-item .icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #F8F8F9;
}
.balance-box__requisites-item .icon img {
  width: 12px;
  height: 12px;
  object-fit: contain;
}
.balance-box__requisites-item .title {
  font-size: 15px;
  font-weight: normal;
  opacity: 0.7;
  font-family: "Onest", sans-serif;
  color: #070809;
}
.balance-box__requisites-radio {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.balance-box__info {
  margin-bottom: 10px;
  max-width: min-content;
}
@media screen and (max-width: 1024px) {
  .balance-box__info {
    margin-bottom: 0;
    margin-left: 20px;
  }
}
@media screen and (max-width: 640px) {
  .balance-box__info {
    margin-left: 0;
    margin-bottom: 10px;
  }
}
.balance-box__info-item {
  font-size: 15px;
  font-weight: normal;
  gap: 5px;
  font-family: "Onest", sans-serif;
  color: #070809;
  display: flex;
  align-items: center;
  border-bottom: 1px dashed rgba(7, 8, 9, 0.3);
  padding-bottom: 2px;
  cursor: pointer;
}
.balance-box__info-item .title {
  opacity: 0.7;
  white-space: pre;
}
.balance-box__info-item .number {
  overflow: 1;
}

.alerts {
  position: fixed;
  z-index: 1;
  bottom: 5%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  right: 3%;
}
.alerts__item {
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 420px;
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 568px) {
  .alerts__item {
    max-width: 320px;
    padding: 15px;
  }
}
@media screen and (max-width: 375px) {
  .alerts__item {
    max-width: 280px;
  }
}
.alerts__item.info {
  border: 1px solid #E7E7E9;
  background-color: #F3F3F4;
}
.alerts__item.info .alerts__item-icon {
  opacity: 0.5;
}
.alerts__item.success {
  border: 1px solid rgba(62, 200, 67, 0.2);
  background-color: #effded;
}
.alerts__item.danger {
  border: 1px solid rgba(221, 62, 55, 0.2);
  background-color: #F9EDEC;
}
.alerts__item.warning {
  border: 1px solid rgba(228, 144, 62, 0.2);
  background-color: #FAF4ED;
}
.alerts__item-icon {
  width: 20px;
  min-width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.alerts__item-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.alerts__item-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.alerts__item-title {
  font-size: 15px;
  font-weight: 500;
  color: #070809;
  font-family: "Onest", sans-serif;
  font-style: normal;
}
.alerts__item-description {
  font-size: 15px;
  font-weight: normal;
  color: #070809;
  font-family: "Onest", sans-serif;
  font-style: normal;
  opacity: 0.7;
}
.alerts__item-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 12px;
  height: 12px;
  background: transparent;
  cursor: pointer;
  opacity: 0.5;
}
.alerts__item-close img {
  width: 12px;
  height: 12px;
  object-fit: contain;
}

.box-none {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 568px) {
  .box-none {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.box-none__icon {
  width: 180px;
  height: 180px;
}
@media screen and (max-width: 568px) {
  .box-none__icon {
    width: 150px;
    height: 150px;
  }
}
.box-none__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.box-none__text {
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  font-weight: 500;
  font-family: "Onest", sans-serif;
  font-style: normal;
  color: #070809;
}

.intro__caption {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  margin-top: 50px;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .intro__caption {
    margin-top: 30px;
  }
}
@media screen and (max-width: 568px) {
  .intro__caption {
    gap: 5px;
  }
}
.intro__caption h1 {
  text-align: center;
  font-family: "Onest", sans-serif;
  font-size: 42px;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .intro__caption h1 {
    font-size: 38px;
    line-height: 48px;
  }
}
@media screen and (max-width: 568px) {
  .intro__caption h1 {
    font-size: 32px;
    line-height: 42px;
  }
}
.intro__description {
  font-size: 16px;
  line-height: 24px;
  font-family: "Onest", sans-serif;
  color: #070809;
  max-width: 500px;
  text-align: center;
}
@media screen and (max-width: 568px) {
  .intro__description {
    font-size: 15px;
    line-height: 22px;
  }
}
.intro__carousel {
  height: 430px;
  margin-top: 20px;
  max-width: 1340px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .intro__carousel {
    min-height: 450px;
    height: auto;
  }
}
@media screen and (max-width: 568px) {
  .intro__carousel {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.intro__item {
  display: flex !important;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .intro__item {
    flex-direction: column;
  }
}
.intro__item.fin .intro__wrapper {
  background-color: #0293E9;
}
.intro__item.fin .arrow-blue {
  position: absolute;
  bottom: 200px;
  left: -44px;
  width: 120px;
  height: 120px;
}
@media screen and (max-width: 568px) {
  .intro__item.fin .arrow-blue {
    width: 100px;
    height: 100px;
    bottom: 200px;
    left: -37px;
  }
}
@media screen and (max-width: 440px) {
  .intro__item.fin .arrow-blue {
    width: 85px;
    height: 85px;
    bottom: 240px;
    left: -31px;
  }
}
@media screen and (max-width: 375px) {
  .intro__item.fin .arrow-blue {
    width: 85px;
    height: 85px;
    bottom: 190px;
    left: -31px;
  }
}
.intro__item.fin .arrow-blue img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.intro__item.fin .arrow-yellow {
  position: absolute;
  top: -35px;
  left: 330px;
  width: 125px;
  height: 125px;
}
@media screen and (max-width: 568px) {
  .intro__item.fin .arrow-yellow {
    width: 100px;
    height: 100px;
    left: 420px;
    top: -28px;
  }
}
@media screen and (max-width: 440px) {
  .intro__item.fin .arrow-yellow {
    left: 200px;
    width: 90px;
    height: 90px;
    top: -25px;
  }
}
.intro__item.fin .arrow-yellow img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.intro__item.fin .arrow-red {
  position: absolute;
  right: -66px;
  bottom: 85px;
  width: 180px;
  height: 180px;
}
@media screen and (max-width: 568px) {
  .intro__item.fin .arrow-red {
    width: 125px;
    height: 125px;
    right: -46px;
    bottom: 170px;
  }
}
@media screen and (max-width: 440px) {
  .intro__item.fin .arrow-red {
    width: 120px;
    height: 120px;
    right: -43px;
    bottom: 50px;
  }
}
@media screen and (max-width: 375px) {
  .intro__item.fin .arrow-red {
    width: 120px;
    height: 120px;
    right: -43px;
    bottom: 65px;
  }
}
.intro__item.fin .arrow-red img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.intro__item.fiz .intro__wrapper {
  background-color: #F9C20F;
}
.intro__item.fiz .arrow-blue {
  position: absolute;
  bottom: 290px;
  left: -44px;
  width: 120px;
  height: 120px;
}
@media screen and (max-width: 568px) {
  .intro__item.fiz .arrow-blue {
    width: 100px;
    height: 100px;
    bottom: 200px;
    left: -37px;
  }
}
@media screen and (max-width: 440px) {
  .intro__item.fiz .arrow-blue {
    width: 85px;
    height: 85px;
    bottom: 240px;
    left: -31px;
  }
}
@media screen and (max-width: 375px) {
  .intro__item.fiz .arrow-blue {
    bottom: 190px;
  }
}
.intro__item.fiz .arrow-blue img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.intro__item.fiz .arrow-yellow {
  position: absolute;
  bottom: -35px;
  left: 50px;
  width: 125px;
  height: 125px;
}
@media screen and (max-width: 568px) {
  .intro__item.fiz .arrow-yellow {
    width: 100px;
    height: 100px;
    bottom: -28px;
    left: 30px;
  }
}
@media screen and (max-width: 440px) {
  .intro__item.fiz .arrow-yellow {
    width: 85px;
    height: 85px;
    bottom: -24px;
    left: 10px;
  }
}
.intro__item.fiz .arrow-yellow img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.intro__item.fiz .arrow-red {
  position: absolute;
  right: -66px;
  bottom: 185px;
  width: 180px;
  height: 180px;
}
@media screen and (max-width: 568px) {
  .intro__item.fiz .arrow-red {
    width: 125px;
    height: 125px;
    right: -46px;
    bottom: 170px;
  }
}
@media screen and (max-width: 440px) {
  .intro__item.fiz .arrow-red {
    width: 100px;
    height: 100px;
    right: -36px;
    bottom: 170px;
  }
}
@media screen and (max-width: 375px) {
  .intro__item.fiz .arrow-red {
    width: 100px;
    height: 100px;
    right: -36px;
    bottom: 70px;
  }
}
.intro__item.fiz .arrow-red img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.intro__item.mat .intro__wrapper {
  background-color: #DD3E37;
}
.intro__item.mat .arrow-blue {
  position: absolute;
  bottom: 50px;
  left: -44px;
  width: 120px;
  height: 120px;
}
@media screen and (max-width: 568px) {
  .intro__item.mat .arrow-blue {
    width: 100px;
    height: 100px;
    bottom: 30px;
    left: -37px;
  }
}
@media screen and (max-width: 440px) {
  .intro__item.mat .arrow-blue {
    width: 85px;
    height: 85px;
    bottom: 30px;
    left: -32px;
  }
}
.intro__item.mat .arrow-blue img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.intro__item.mat .arrow-yellow {
  position: absolute;
  top: -35px;
  left: 430px;
  width: 125px;
  height: 125px;
}
@media screen and (max-width: 1200px) {
  .intro__item.mat .arrow-yellow {
    left: 280px;
  }
}
@media screen and (max-width: 1024px) {
  .intro__item.mat .arrow-yellow {
    left: 480px;
  }
}
@media screen and (max-width: 700px) {
  .intro__item.mat .arrow-yellow {
    left: 330px;
  }
}
@media screen and (max-width: 568px) {
  .intro__item.mat .arrow-yellow {
    width: 100px;
    height: 100px;
    left: 420px;
    top: -28px;
  }
}
@media screen and (max-width: 550px) {
  .intro__item.mat .arrow-yellow {
    left: 300px;
  }
}
@media screen and (max-width: 440px) {
  .intro__item.mat .arrow-yellow {
    left: 200px;
    width: 85px;
    height: 85px;
    top: -24px;
  }
}
.intro__item.mat .arrow-yellow img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.intro__item.mat .arrow-red {
  position: absolute;
  right: -61px;
  bottom: 15px;
  width: 180px;
  height: 180px;
}
@media screen and (max-width: 568px) {
  .intro__item.mat .arrow-red {
    width: 125px;
    height: 125px;
    right: -42px;
    bottom: 15px;
  }
}
@media screen and (max-width: 440px) {
  .intro__item.mat .arrow-red {
    width: 100px;
    height: 100px;
    right: -34px;
  }
}
.intro__item.mat .arrow-red img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.intro__item.fond .intro__wrapper {
  background-color: #97C75C;
}
.intro__item.fond .arrow-blue {
  position: absolute;
  bottom: -40px;
  left: -44px;
  width: 120px;
  height: 120px;
}
@media screen and (max-width: 568px) {
  .intro__item.fond .arrow-blue {
    width: 100px;
    height: 100px;
    bottom: -33px;
    left: -37px;
  }
}
@media screen and (max-width: 440px) {
  .intro__item.fond .arrow-blue {
    width: 85px;
    height: 85px;
    bottom: -27px;
    left: -32px;
  }
}
.intro__item.fond .arrow-blue img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.intro__item.fond .arrow-yellow {
  position: absolute;
  top: -35px;
  left: 100px;
  width: 125px;
  height: 125px;
}
@media screen and (max-width: 1200px) {
  .intro__item.fond .arrow-yellow {
    left: 280px;
  }
}
@media screen and (max-width: 1024px) {
  .intro__item.fond .arrow-yellow {
    left: 280px;
  }
}
@media screen and (max-width: 700px) {
  .intro__item.fond .arrow-yellow {
    left: 230px;
  }
}
@media screen and (max-width: 568px) {
  .intro__item.fond .arrow-yellow {
    width: 100px;
    height: 100px;
    left: 150px;
    top: -28px;
  }
}
@media screen and (max-width: 440px) {
  .intro__item.fond .arrow-yellow {
    left: 100px;
    width: 85px;
    height: 85px;
    top: -24px;
  }
}
.intro__item.fond .arrow-yellow img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.intro__item.fond .arrow-red {
  position: absolute;
  right: -66px;
  bottom: 145px;
  width: 180px;
  height: 180px;
}
@media screen and (max-width: 568px) {
  .intro__item.fond .arrow-red {
    width: 125px;
    height: 125px;
    right: -45px;
    bottom: 55px;
  }
}
@media screen and (max-width: 440px) {
  .intro__item.fond .arrow-red {
    width: 100px;
    height: 100px;
    right: -36px;
  }
}
.intro__item.fond .arrow-red img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.intro__arrow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.intro__wrapper {
  width: 50%;
  height: 420px;
  border-radius: 80px 30px 80px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-top: 100px;
  padding-bottom: 80px;
  padding-left: 80px;
  padding-right: 80px;
  gap: 15px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .intro__wrapper {
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .intro__wrapper {
    width: 100%;
    height: 380px;
    padding-top: 70px;
    padding-bottom: 70px;
    padding-left: 100px;
    padding-right: 100px;
    border-radius: 40px 40px 40px 40px;
  }
}
@media screen and (max-width: 568px) {
  .intro__wrapper {
    height: 320px;
    padding-top: 45px;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 20px 20px 20px 20px;
  }
}
@media screen and (max-width: 475px) {
  .intro__wrapper {
    height: 300px;
  }
}
@media screen and (max-width: 375px) {
  .intro__wrapper {
    justify-content: center;
    gap: 30px;
    height: 250px;
  }
}
.intro__title-project {
  font-size: 32px;
  line-height: 36px;
  color: #fff;
  font-weight: 600;
  font-family: "Onest", sans-serif;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 490px) {
  .intro__title-project {
    font-size: 25px;
    line-height: 30px;
  }
}
.intro__description-project {
  flex: 1;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  opacity: 0.8;
  color: #fff;
  font-family: "Onest", sans-serif;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 490px) {
  .intro__description-project {
    font-size: 15px;
  }
}
@media screen and (max-width: 375px) {
  .intro__description-project {
    display: none;
  }
}
.intro__btn {
  height: 56px;
  min-width: 230px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  text-align: center;
  font-family: "Onest", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.intro__btn:hover {
  background: rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 490px) {
  .intro__btn {
    height: 48px;
  }
}
.intro__images {
  position: absolute;
  right: 0;
  width: 715px;
  height: 420px;
  z-index: -1;
  overflow: hidden;
  border-radius: 0px 30px 30px 0px;
}
@media screen and (max-width: 1024px) {
  .intro__images {
    position: relative;
    width: 100%;
    top: -35px;
    height: 380px;
    border-radius: 0px 0px 40px 40px;
  }
}
@media screen and (max-width: 568px) {
  .intro__images {
    height: 300px;
    border-radius: 0px 0px 20px 20px;
  }
}
@media screen and (max-width: 475px) {
  .intro__images {
    height: 280px;
    border-radius: 0px 0px 20px 20px;
  }
}
.intro__images .images-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.intro__images .images-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro .slick-track {
  display: flex !important;
  min-width: 100%;
}
.intro .carousel-container {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  min-height: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .intro .carousel-container {
    height: auto;
    min-height: auto;
    padding-top: 35px;
  }
}
.intro .slick-arrow {
  display: none !important;
}
.intro .slider-dots-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.intro .slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  list-style: none;
  gap: 20px;
}
.intro .slider-dots button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: block;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  transition: 0.3s all;
  position: relative;
  z-index: 0;
}
.intro .slider-dots-box .slick-active button {
  width: 50px;
  height: 50px;
}
.intro #slick-slide-control00:hover::after {
  top: 5px;
}
.intro #slick-slide-control00 .circle-go {
  stroke: #0293E9;
}
.intro #slick-slide-control00::after {
  content: "";
  position: absolute;
  z-index: 1;
  background-image: url("../images/moneta-big.png");
  height: 35px;
  width: 35px;
  top: 7px;
  background-size: contain;
  transition: all 0.5s;
}
.intro #slick-slide-control01:hover::after {
  top: 3px;
}
.intro #slick-slide-control01 .circle-go {
  stroke: #F9C20F;
}
.intro #slick-slide-control01::after {
  content: "";
  position: absolute;
  z-index: 1;
  background-image: url("../images/fiz-big.png");
  height: 35px;
  width: 35px;
  top: 7px;
  background-size: contain;
  transition: all 0.3s;
}
.intro #slick-slide-control02:hover::after {
  top: 5px;
}
.intro #slick-slide-control02 .circle-go {
  stroke: #DD3E37;
}
.intro #slick-slide-control02::after {
  content: "";
  position: absolute;
  z-index: 1;
  background-image: url("../images/heart-big.png");
  height: 35px;
  width: 35px;
  top: 8px;
  background-size: contain;
  transition: all 0.3s;
}
.intro #slick-slide-control03:hover::after {
  top: 5px;
}
.intro #slick-slide-control03 .circle-go {
  stroke: #97C75C;
}
.intro #slick-slide-control03::after {
  content: "";
  position: absolute;
  z-index: 1;
  background-image: url("../images/fond.png");
  height: 35px;
  width: 35px;
  top: 8px;
  background-size: contain;
  transition: all 0.3s;
}
.intro .slider-dots-box button:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  border: 2px solid rgba(170, 170, 170, 0.1);
  border-radius: 50%;
}
.intro .slider-dots-box .slick-active button:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  border: 2px solid rgba(0, 0, 0, 0.05);
  border-radius: 50%;
}
.intro .circle-bg {
  fill: rgba(255, 255, 255, 0);
  stroke: rgba(0, 0, 0, 0.05);
  stroke-width: 3;
  stroke-linecap: butt;
}
.intro .circle-go {
  fill: rgba(255, 255, 255, 0);
  stroke-width: 3;
  stroke-linecap: round;
  animation: progress 28s;
  stroke-dasharray: 360px;
  stroke-dashoffset: 360;
}
@keyframes progress {
  from {
    stroke-dashoffset: 360;
  }
  to {
    stroke-dashoffset: 0;
  }
}

.project-partner {
  margin-top: 0px;
}
.project-partner .wrapper-caption {
  margin-bottom: 30px;
}
.project-partner .wrapper-title {
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 36px;
  color: #070809;
  text-align: center;
  opacity: 0.8;
}
.project-partner .partner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media screen and (max-width: 991px) {
  .project-partner .partner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .project-partner .partner {
    gap: 24px;
  }
}
.project-partner .partner__item {
  background-color: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  border-top-right-radius: 42px;
  border-bottom-left-radius: 42px;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .project-partner .partner__item {
    padding: 20px;
  }
}
@media screen and (max-width: 568px) {
  .project-partner .partner__item {
    height: 100px;
  }
}
.project-partner .partner__item img {
  width: 50%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 991px) {
  .project-partner .partner__item img {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .project-partner .partner__item img {
    width: 100%;
  }
}

.project-section__wrapper {
  display: flex;
  gap: 20px;
}
.project-section__wrapper .project-container {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.project-section__wrapper .project-container .project {
  width: calc(33.3% - 20px);
  height: auto !important;
}
.project-section__wrapper .project-container .project__images {
  height: 170px;
}
.project-section__wrapper .sidebar {
  width: 20%;
}

.projectView__caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.projectView__title {
  font-size: 42px;
  line-height: 52px;
  font-weight: 600;
  color: #070809;
  font-family: "Onest", sans-serif;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .projectView__title {
    font-size: 38px;
    line-height: 48px;
  }
}
@media screen and (max-width: 568px) {
  .projectView__title {
    font-size: 32px;
    line-height: 42px;
  }
}
.projectView__description {
  color: #070809;
  font-size: 16px;
  line-height: 26px;
  font-weight: normal;
  color: #070809;
  opacity: 0.8;
  max-width: 720px;
  text-align: center;
}
@media screen and (max-width: 568px) {
  .projectView__description {
    line-height: 24px;
  }
}
.projectView__head {
  display: flex;
  margin-top: 30px;
  position: relative;
}
@media screen and (max-width: 1150px) {
  .projectView__head {
    flex-direction: column;
    margin-top: 0;
  }
}
.projectView__preview {
  width: 830px;
  height: 450px;
  border-radius: 30px 80px 30px 70px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1330px) {
  .projectView__preview {
    width: 800px;
  }
}
@media screen and (max-width: 1300px) {
  .projectView__preview {
    width: 750px;
  }
}
@media screen and (max-width: 1240px) {
  .projectView__preview {
    width: 700px;
  }
}
@media screen and (max-width: 1170px) {
  .projectView__preview {
    width: 650px;
  }
}
@media screen and (max-width: 1150px) {
  .projectView__preview {
    width: 100%;
    border-radius: 30px 30px 30px 30px;
    position: relative;
    top: 30px;
  }
}
@media screen and (max-width: 930px) {
  .projectView__preview {
    height: 400px;
  }
}
@media screen and (max-width: 768px) {
  .projectView__preview {
    height: 350px;
  }
}
@media screen and (max-width: 650px) {
  .projectView__preview {
    height: 300px;
  }
}
@media screen and (max-width: 568px) {
  .projectView__preview {
    height: 280px;
    border-radius: 20px 20px 20px 20px;
  }
}
@media screen and (max-width: 475px) {
  .projectView__preview {
    height: 250px;
    border-radius: 10px 10px 10px 10px;
  }
}
@media screen and (max-width: 414px) {
  .projectView__preview {
    height: 220px;
  }
}
.projectView__preview .play {
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  bottom: 0;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
@media screen and (max-width: 568px) {
  .projectView__preview .play {
    width: 56px;
    min-width: 56px;
    height: 56px;
  }
}
.projectView__preview .play:hover {
  width: 85px;
  height: 85px;
}
@media screen and (max-width: 568px) {
  .projectView__preview .play:hover {
    width: 56px;
    min-width: 56px;
    height: 56px;
  }
}
.projectView__preview .play-icon {
  width: 21px;
  height: 24px;
  position: relative;
  left: 2px;
  box-shadow: 0px 8px 20px -6px rgba(7, 8, 9, 0.12);
}
@media screen and (max-width: 568px) {
  .projectView__preview .play-icon {
    width: 16px;
    height: 16px;
    left: 0;
  }
}
.projectView__preview .play img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.projectView__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.projectView__content {
  width: 520px;
  background-color: #fff;
  position: absolute;
  right: 0;
  height: 100%;
  border-radius: 0px 30px 30px 0px;
  padding-left: 110px;
  padding-right: 40px;
  padding-top: 35px;
  padding-bottom: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.projectView__content .label-success {
  position: absolute;
  top: -15px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: #3EC843;
  padding: 8px 12px;
  padding-left: 8px;
  height: 32px;
  border-radius: 30px;
  min-width: max-content;
}
@media screen and (max-width: 1150px) {
  .projectView__content .label-success {
    top: 10px;
    left: 50%;
    right: 50%;
    transform: translate(-50%, 0%);
  }
}
.projectView__content .label-success .icon {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.projectView__content .label-success .icon img {
  width: 80%;
  height: 80%;
}
.projectView__content .label-success .title {
  font-family: "Onest", sans-serif;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  font-style: normal;
}
@media screen and (max-width: 1150px) {
  .projectView__content {
    position: relative;
  }
}
@media screen and (max-width: 1150px) {
  .projectView__content {
    width: 100%;
    padding-left: 150px;
    padding-right: 150px;
    border-radius: 0px 0px 30px 30px;
    padding-top: 60px;
  }
}
@media screen and (max-width: 890px) {
  .projectView__content {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (max-width: 650px) {
  .projectView__content {
    padding-top: 50px;
  }
}
@media screen and (max-width: 568px) {
  .projectView__content {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 20px;
    border-radius: 0px 0px 20px 20px;
    padding-top: 50px;
  }
}
@media screen and (max-width: 475px) {
  .projectView__content {
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 0px 0px 10px 10px;
    padding-top: 45px;
  }
}
@media screen and (max-width: 414px) {
  .projectView__content {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.projectView__content-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.projectView__content-action {
  background: #FAFAFB;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
  border-radius: 100px;
}
.projectView__content-action .favourites,
.projectView__content-action .share {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  cursor: pointer;
  transition: all 0.3s;
  opacity: 0.7;
}
.projectView__content-action .favourites:hover,
.projectView__content-action .share:hover {
  background: #eeeef1;
  opacity: 1;
}
.projectView__content-action .favourites svg,
.projectView__content-action .share svg {
  width: 18px;
  height: 18px;
}
.projectView__content-cat {
  display: flex;
  align-items: center;
  gap: 5px;
}
.projectView__content-cat .icon {
  width: 20px;
  height: 20px;
  position: relative;
}
.projectView__content-cat .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.projectView__content-cat .title {
  font-size: 15px;
  font-weight: 500;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-style: normal;
}
.projectView__content .progress-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  height: 50px;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  border-radius: 10px;
}
.projectView__content .progress-btn.disabled {
  background-color: #bebec4;
  cursor: not-allowed;
}
.projectView__content .progress-btn.disabled:hover {
  background-color: #bebec4;
}
@media screen and (max-width: 475px) {
  .projectView__content .progress-btn {
    font-size: 16px;
    height: 50px;
  }
}
.projectView__content .progress-support {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}
.projectView__content .progress-support .number-project {
  font-size: 15px;
  font-weight: normal;
  font-family: "Onest", sans-serif;
  font-style: normal;
  color: #070809;
  display: flex;
  align-items: center;
  gap: 5px;
}
.projectView__content .progress-support .number-project .icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  top: -1px;
}
.projectView__content .progress-support .number-project .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.5;
}
.projectView__content .progress-support .number-project .number {
  font-weight: 500;
  opacity: 0.5;
}
.projectView__progress {
  flex: 1;
  margin-top: 20px;
}
@media screen and (max-width: 475px) {
  .projectView__progress {
    margin-top: 20px;
  }
}
.projectView__progress-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.projectView__progress-collected {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5px;
  min-height: 70px;
}
@media screen and (max-width: 475px) {
  .projectView__progress-collected {
    height: 60px;
  }
}
.projectView__progress-collected .title {
  opacity: 0.7;
  font-size: 15px;
  font-weight: normal;
  font-family: "Onest", sans-serif;
  font-style: normal;
  color: #070809;
}
.projectView__progress-collected .number {
  font-size: 36px;
  font-weight: 700;
  font-family: "Onest", sans-serif;
  font-style: normal;
  color: #070809;
}
@media screen and (max-width: 475px) {
  .projectView__progress-collected .number {
    font-size: 28px;
  }
}
.projectView__progress-target {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  gap: 5px;
  height: 70px;
}
@media screen and (max-width: 475px) {
  .projectView__progress-target {
    height: 60px;
  }
}
.projectView__progress-target .title {
  opacity: 0.7;
  font-size: 15px;
  font-weight: normal;
  font-family: "Onest", sans-serif;
  font-style: normal;
}
.projectView__progress-target .number {
  font-size: 24px;
  font-weight: 500;
  font-family: "Onest", sans-serif;
  font-style: normal;
  color: #070809;
}
@media screen and (max-width: 475px) {
  .projectView__progress-target .number {
    font-size: 20px;
  }
}
.projectView__progress-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  gap: 20px;
}
@media screen and (max-width: 475px) {
  .projectView__progress-bottom {
    margin-top: 15px;
  }
}
.projectView__progress-bottom .progress-people .user {
  display: flex;
}
.projectView__progress-bottom .progress-people .user-item {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  overflow: hidden;
  border: 1px solid #fff;
  display: block;
  margin-left: -8px;
}
.projectView__progress-bottom .progress-people .user-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.projectView__progress-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.projectView__progress-item .icon {
  width: 16px;
  height: 16px;
  opacity: 0.3;
}
.projectView__progress-item .title {
  font-size: 15px;
  font-family: "Onest", sans-serif;
  font-weight: normal;
  color: #070809;
  font-style: normal;
}
@media screen and (max-width: 475px) {
  .projectView__progress-item .title {
    font-size: 12px;
  }
}
@media screen and (max-width: 1150px) {
  .projectView__author {
    margin-top: 30px;
  }
}
.projectView__author-bage {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.projectView__author-bage:hover .avatar {
  box-shadow: 0px 8px 24px -4px rgba(24, 39, 75, 0.08), 0px 6px 12px -6px rgba(24, 39, 75, 0.12);
}
.projectView__author-bage .avatar {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 100%;
  transition: all 0.5s;
}
.projectView__author-bage .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.projectView__author-bage .caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.projectView__author-bage .caption .name {
  font-size: 16px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: 500;
  font-style: normal;
}
.projectView__author-bage .caption .more {
  font-size: 15px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: normal;
  font-style: normal;
  opacity: 0.5;
  display: flex;
  align-items: center;
  gap: 2px;
  transition: all 0.3s;
}
.projectView__author-bage .caption .more:hover {
  opacity: 1;
}
.projectView__author-bage .caption .more .icon {
  width: 16px;
  height: 16px;
  position: relative;
  top: 0px;
  transition: all 0.3s;
}
.projectView__author-bage .caption .more .icon svg {
  width: 16px;
  height: 16px;
}
.projectView__author-bage .caption .more .icon svg path {
  transition: all 0.3s;
}
.projectView__author-other {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 460px) {
  .projectView__author-other {
    flex-direction: column;
    align-items: flex-start;
  }
}
.projectView__author-other::after {
  content: "";
  height: 15px;
  width: 30px;
  background: linear-gradient(270deg, #FFFFFF 50%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  right: -15px;
}
@media screen and (max-width: 460px) {
  .projectView__author-other::after {
    display: none;
  }
}
.projectView__author-other .author-other {
  display: flex;
  align-items: center;
  gap: 5px;
}
.projectView__author-other .author-other:hover .author-other__icon {
  opacity: 0.5;
}
.projectView__author-other .author-other:hover .author-other__title {
  opacity: 0.5;
}
.projectView__author-other .author-other__icon {
  width: 12px;
  height: 15px;
  opacity: 0.3;
  transition: all 0.3s;
}
.projectView__author-other .author-other__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.projectView__author-other .author-other__title {
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: normal;
  color: #070809;
  opacity: 0.5;
  transition: all 0.3s;
}
.projectView__author .cardTag .cardItem__title,
.projectView__author .cardCity .cardItem__title {
  overflow: hidden;
  white-space: pre;
  width: auto;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: horizontal;
}
.projectView__progressBar {
  width: 100%;
  background: #E6E5E5;
  height: 2px;
  border-radius: 100px;
  display: flex;
  align-items: center;
}
.projectView__progressBar-line {
  height: 10px;
  border-radius: 100px;
  position: relative;
}
@media screen and (max-width: 475px) {
  .projectView__progressBar-line {
    height: 7px;
  }
}
.projectView__navbar {
  border-bottom: 1px solid rgba(7, 8, 9, 0.1);
  padding-top: 25px;
  padding-bottom: 0px;
  margin-top: 25px;
  position: sticky;
  top: 0;
  background: #FAFAFB;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .projectView__navbar {
    padding-bottom: 0px;
  }
}
.projectView__navbar .reminder {
  position: relative;
  bottom: 15px;
}
@media screen and (max-width: 568px) {
  .projectView__navbar .reminder {
    display: none;
  }
}
.projectView__navbar-list {
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 1024px) {
  .projectView__navbar-list {
    width: 100%;
    overflow-y: scroll;
    height: 30px;
  }
}
@media screen and (max-width: 568px) {
  .projectView__navbar-list {
    gap: 30px;
  }
}
.projectView__navbar-item {
  color: #070809;
  font-weight: 500;
  font-size: 16px;
  height: 45px;
  display: flex;
  gap: 6px;
  opacity: 0.5;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .projectView__navbar-item {
    min-width: max-content;
    height: auto;
  }
}
.projectView__navbar-item:hover {
  opacity: 1;
}
.projectView__navbar-item.active {
  position: relative;
  opacity: 1;
}
.projectView__navbar-item.active::after {
  content: "";
  position: absolute;
  bottom: 0px;
  height: 3px;
  width: 100%;
  border-radius: 1px;
}
@media screen and (max-width: 1024px) {
  .projectView__navbar-item.active::after {
    bottom: 0px;
  }
}
.projectView__navbar-item .label {
  opacity: 0.4;
}
.projectView__navbar-item-mobile {
  display: none;
}
@media screen and (max-width: 1024px) {
  .projectView__navbar-item-mobile {
    display: flex;
  }
}
.projectView__main {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .projectView__main {
    flex-direction: column;
  }
}
.projectView__article {
  width: 100%;
  max-width: 800px;
  padding: 50px 0px;
  margin-right: 30px;
}
@media screen and (max-width: 1024px) {
  .projectView__article {
    max-width: 100%;
    margin-right: 0;
    padding: 30px 0px;
  }
}
.projectView__article p {
  font-size: 16px;
  line-height: 24px;
  font-weight: normal;
  margin-bottom: 22px;
  font-size: "Onest", sans-serif;
}
@media screen and (max-width: 414px) {
  .projectView__article p {
    margin-bottom: 15px;
  }
}
.projectView__article p:last-child {
  margin-bottom: 0;
}
.projectView__article p img {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
}
@media screen and (max-width: 414px) {
  .projectView__article p img {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
.projectView__article ul {
  padding: 0px 32px;
  margin-bottom: 20px;
}
.projectView__article ul li {
  font-size: 16px;
  line-height: 24px;
  font-weight: normal;
  margin-bottom: 12px;
  font-family: "Onest", sans-serif;
}
.projectView__article ul li:last-child {
  margin-bottom: 0;
}
.projectView__sponsor {
  max-width: 800px;
  width: 100%;
  padding: 50px 0px;
  margin-right: 30px;
  margin-top: -8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media screen and (max-width: 1024px) {
  .projectView__sponsor {
    max-width: 100%;
    padding: 30px 0px;
    margin-right: 0px;
  }
}
@media screen and (max-width: 475px) {
  .projectView__sponsor {
    gap: 20px;
  }
}
.projectView__sponsor-item {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 70px;
  transition: all 0.5s;
  padding: 0 12px;
}
@media screen and (max-width: 475px) {
  .projectView__sponsor-item {
    height: auto;
    padding: 0;
  }
}
.projectView__sponsor-item:hover {
  background-color: #f3f3f4;
  border-radius: 10px;
}
.projectView__sponsor-item .sponsor-avatar {
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 100%;
  overflow: hidden;
}
@media screen and (max-width: 475px) {
  .projectView__sponsor-item .sponsor-avatar {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 370px) {
  .projectView__sponsor-item .sponsor-avatar {
    width: 30px;
    min-width: 30px;
    height: 30px;
  }
}
.projectView__sponsor-item .sponsor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.projectView__sponsor-item .sponsor-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media screen and (max-width: 475px) {
  .projectView__sponsor-item .sponsor-info {
    gap: 1px;
  }
}
.projectView__sponsor-item .sponsor-name {
  font-size: 16px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: 500;
  font-style: normal;
  transition: all 0.3s;
}
@media screen and (max-width: 475px) {
  .projectView__sponsor-item .sponsor-name {
    font-size: 15px;
  }
}
@media screen and (max-width: 370px) {
  .projectView__sponsor-item .sponsor-name {
    font-size: 14px;
  }
}
.projectView__sponsor-item .sponsor-project {
  font-size: 15px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: normal;
  font-style: normal;
  opacity: 0.5;
  display: flex;
  align-items: center;
  gap: 2px;
  transition: all 0.3s;
}
@media screen and (max-width: 370px) {
  .projectView__sponsor-item .sponsor-project {
    font-size: 14px;
  }
}
.projectView__sponsor-item .sponsor-clock {
  font-size: 15px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: normal;
  font-style: normal;
  opacity: 0.3;
}
@media screen and (max-width: 475px) {
  .projectView__sponsor-item .sponsor-clock {
    font-size: 14px;
  }
}
.projectView__comment {
  max-width: 800px;
  width: 100%;
  padding: 50px 0px;
  margin-right: 30px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .projectView__comment {
    max-width: 100%;
    padding: 30px 0px;
    margin-right: 0px;
  }
}
.projectView__edit {
  margin-bottom: 30px;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F3F3F4;
  border-radius: 10px;
  gap: 10px;
  font-size: 15px;
  font-family: "Onest", sans-serif;
  font-weight: 500;
  line-height: 22px;
}
.projectView__edit .icon {
  width: 24px;
  min-width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E7E7E9;
  border-radius: 100%;
}
.projectView__edit .icon svg {
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
}
.projectView__faq {
  max-width: 800px;
  width: 100%;
  padding: 50px 0px;
  margin-right: 30px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .projectView__faq {
    max-width: 100%;
    padding: 30px 0px;
    margin-right: 0px;
  }
}
.projectView__news {
  max-width: 800px;
  width: 100%;
  padding: 50px 0px;
  margin-right: 30px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .projectView__news {
    max-width: 100%;
    padding: 30px 0px;
    margin-right: 0px;
  }
}
.projectView__news .news-item {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(136, 136, 136, 0.1);
  min-height: 170px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .projectView__news .news-item {
    flex-direction: column;
  }
}
.projectView__news .news-item:hover .news-item__images img {
  transform: scale(1.1);
}
.projectView__news .news-item:hover .news-item__title {
  opacity: 0.7;
}
.projectView__news .news-item__images {
  min-width: 250px;
  height: 150px;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .projectView__news .news-item__images {
    height: 180px;
  }
}
.projectView__news .news-item__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.projectView__news .news-item__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
}
.projectView__news .news-item__caption {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.projectView__news .news-item__title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #070809;
  font-family: "Onest", sans-serif;
  transition: all 0.3s;
}
@media screen and (max-width: 375px) {
  .projectView__news .news-item__title {
    font-size: 16px;
    line-height: 24px;
  }
}
.projectView__news .news-item__description {
  font-family: "Onest", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: normal;
  color: #070809;
  opacity: 0.5;
  height: 70px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 375px) {
  .projectView__news .news-item__description {
    font-size: 14px;
    line-height: 22px;
  }
}
.projectView__news .news-item__date {
  font-family: "Onest", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
  color: #070809;
  opacity: 0.5;
  display: flex;
  align-items: center;
  gap: 5px;
}
.projectView__news .news-item__date .icon {
  width: 16px;
  height: 16px;
  opacity: 0.8;
}
.projectView__sidebar {
  padding: 50px 40px;
  width: 100%;
  max-width: 450px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .projectView__sidebar {
    padding: 0;
    width: 100%;
    max-width: 100%;
    border-top: 1px solid rgba(7, 8, 9, 0.1);
    padding-top: 30px;
  }
}
.projectView__sidebar-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 320px;
  position: sticky;
  top: 100px;
}
.projectView__sidebar-caption {
  font-size: 20px;
  font-weight: 500;
  font-family: "Onest", sans-serif;
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.projectView__sidebar-caption .btn-all {
  font-weight: normal;
  font-size: 15px;
  opacity: 0.7;
  color: #070809;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  position: relative;
  left: 12px;
  height: 38px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 10px;
  transition: all 0.3s;
}
.projectView__sidebar-caption .btn-all:hover {
  background: #f3f3f4;
  opacity: 1;
}
.projectView__sidebar-caption .btn-all::after {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url(../images/icon/nav-arrow-right.svg);
  position: relative;
  top: 0px;
  right: 0;
  bottom: 0;
  opacity: 0.7s;
  transition: all 0.3s;
}
.projectView__sidebar-caption .number {
  opacity: 0.5;
}
.projectView.projectSubscrip .projectView__progress-head .number {
  font-size: 24px;
}
.projectView.projectSubscrip .projectView__progress-bottom {
  gap: 5px;
}

.sidebarRewards__container {
  position: sticky;
  top: 100px;
}
.sidebarRewards__caption {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
}
.sidebarRewards__caption .title {
  font-size: 20px;
  font-family: "Onest", sans-serif;
  font-weight: 500;
  color: #070809;
}
.sidebarRewards__caption .title .number {
  opacity: 0.5;
}
.sidebarRewards__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .sidebarRewards__card {
    flex-direction: row;
    width: 100%;
    overflow-y: scroll;
  }
}
@media screen and (max-width: 568px) {
  .sidebarRewards__card {
    overflow: visible;
    flex-direction: column;
  }
}

.projectFin .projectView__preview .play {
  background: #0293E9;
}
.projectFin .projectView__progressBar .projectView__progressBar-line {
  background: #0293E9;
}
.projectFin .progress-btn {
  background-color: #0293E9;
}
.projectFin .progress-btn:hover {
  background-color: #0092d0;
}
.projectFin .projectView__navbar-item.active::after {
  background: #0293E9;
}

.projectFiz .projectView__preview .play {
  background: #F9C20F;
}
.projectFiz .projectView__progressBar .projectView__progressBar-line {
  background: #F9C20F;
}
.projectFiz .progress-btn {
  background-color: #F9C20F;
  transition: all 0.3s;
}
.projectFiz .progress-btn:hover {
  background-color: #EFBA0D;
}
.projectFiz .projectView__navbar-item.active::after {
  background: #F9C20F;
}

.projectMat .projectView__preview .play {
  background: #DD3E37;
}
.projectMat .projectView__progressBar .projectView__progressBar-line {
  background: #DD3E37;
}
.projectMat .progress-btn {
  background-color: #DD3E37;
  transition: all 0.3s;
}
.projectMat .progress-btn:hover {
  background-color: #CE413B;
}
.projectMat .projectView__navbar-item.active::after {
  background: #DD3E37;
}

.feedback-popup .popup__inner {
  max-width: 750px;
}
.feedback-popup .popup__feedback-content {
  padding: 50px;
}
@media screen and (max-width: 568px) {
  .feedback-popup .popup__feedback-content {
    padding: 30px;
  }
}
.feedback-popup .popup-caption {
  font-size: 25px;
  line-height: 32px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: 500;
  margin-bottom: 15px;
}
.feedback-popup .feedback-popup-textarea .title {
  font-size: 15px;
  line-height: 24px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: normal;
  opacity: 0.5;
}
.feedback-popup .feedback-popup-textarea .textarea-form {
  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  line-height: 24px;
  width: 100%;
  height: 55px;
  position: relative;
  top: 0px;
  background-color: transparent;
  resize: none;
  position: relative;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 8px 16px;
  height: 80px;
  background: #f8f8f9;
}
.feedback-popup .popup__feedback-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #F3F3F4;
}

.share-popup .popup__inner {
  max-width: 750px;
}
.share-popup .popup__share-content {
  padding: 50px;
}
@media screen and (max-width: 568px) {
  .share-popup .popup__share-content {
    padding: 30px;
  }
}
.share-popup .popup-caption {
  font-size: 25px;
  line-height: 32px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: 500;
  margin-bottom: 15px;
}
.share-popup .share-social {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f3f3f4;
}
.share-popup .share-link {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f3f3f4;
}
.share-popup .share-link__title {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  font-family: "Onest", sans-serif;
  color: #070809;
  margin-bottom: 2px;
  opacity: 0.5;
}
.share-popup .share-input {
  font-family: "Onest", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  line-height: 24px;
  width: 100%;
  height: 45px;
  position: relative;
  background: #f8f8f9;
  padding: 8px 16px;
  border-radius: 10px;
}
.share-popup .share-textarea {
  font-family: "Onest", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  line-height: 24px;
  width: 100%;
  height: 80px;
  position: relative;
  background: #f8f8f9;
  padding: 8px 16px;
  border-radius: 10px;
  resize: none;
  text-align: left;
}
.share-popup .share-promo .card {
  width: 320px;
}
.share-popup .share-promo .card .cardInfo {
  border: 1px solid #f3f3f4;
}
.share-popup .share-promo .card .cardBtn .btn {
  width: 100%;
  margin-top: 15px;
}
.share-popup .share-promo__tabs {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}
.share-popup .share-promo__tabs-nav {
  display: flex;
  gap: 0px;
}
.share-popup .share-promo__tabs-item {
  font-family: "Onest", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  line-height: 24px;
  height: 32px;
  position: relative;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.share-popup .share-promo__tabs-item.active {
  background: #0293E9;
  color: #fff;
}
.share-popup .share-promo__tabs-content-item-col {
  display: none;
}
.share-popup .share-promo__tabs-content-item-col.active {
  display: block;
}
.share-popup .share-promo__tabs-content-item-row {
  display: none;
}
.share-popup .share-promo__tabs-content-item-row.active {
  display: block;
}
.share-popup .share-promo__block {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #f3f3f4;
}
.share-popup .share-promo__block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

.box-col-project__label {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  flex-wrap: wrap;
}
@media screen and (max-width: 568px) {
  .box-col-project__label {
    gap: 10px;
  }
}
.box-col-project__author {
  display: flex;
  align-items: center;
  gap: 5px;
}
.box-col-project__author .avatar {
  width: 24px;
  height: 24px;
  border-radius: 100%;
  overflow: hidden;
}
@media screen and (max-width: 568px) {
  .box-col-project__author .avatar {
    width: 18px;
    height: 18px;
  }
}
.box-col-project__author .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.box-col-project__author .title {
  color: #070809;
  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  line-height: 24px;
}
.box-col-project__nav {
  display: flex;
  align-items: center;
  gap: 5px;
}
.box-col-project__nav .icon {
  width: 24px;
  height: 24px;
  border-radius: 100%;
  overflow: hidden;
}
@media screen and (max-width: 568px) {
  .box-col-project__nav .icon {
    width: 18px;
    height: 18px;
  }
}
.box-col-project__nav .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.box-col-project__nav .title {
  color: #070809;
  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  line-height: 24px;
}
.box-col-project__item {
  display: flex;
  gap: 20px;
}
.box-col-project__item:hover .box-col-project__images img {
  transform: scale(1.1);
}
@media screen and (max-width: 650px) {
  .box-col-project__item {
    flex-direction: column;
  }
}
@media screen and (max-width: 568px) {
  .box-col-project__item {
    gap: 10px;
  }
}
.box-col-project__item.fin .cardProgressBar__line {
  background: #0293E9;
}
.box-col-project__item.fiz .cardProgressBar__line {
  background: #F9C20F;
}
.box-col-project__item.mat .cardProgressBar__line {
  background: #D2392F;
}
.box-col-project__images {
  width: 220px;
  min-width: 220px;
  height: 140px;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .box-col-project__images {
    width: 200px;
    min-width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .box-col-project__images {
    width: 200px;
    min-width: 200px;
  }
}
@media screen and (max-width: 650px) {
  .box-col-project__images {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 250px;
  }
}
@media screen and (max-width: 568px) {
  .box-col-project__images {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 180px;
  }
}
.box-col-project__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
@media screen and (max-width: 650px) {
  .box-col-project__images img {
    height: 100%;
  }
}
.box-col-project__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
  width: 100%;
}
@media screen and (max-width: 650px) {
  .box-col-project__content {
    gap: 10px;
  }
}
@media screen and (max-width: 568px) {
  .box-col-project__content {
    padding: 0px 15px 15px 15px;
  }
}
.box-col-project__title {
  color: #070809;
  font-family: "Onest", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  width: 100%;
  transition: all 0.3s;
}
.box-col-project__title:hover {
  opacity: 0.7;
}
.box-col-project__description {
  color: #070809;
  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  line-height: 24px;
  opacity: 0.7;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  width: 100%;
}
.box-col-project__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.box-col-project__progress {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.box-col-project__progress .cardProgress__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.box-col-project__progress .cardCollected {
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 42px;
}
.box-col-project__progress .cardCollected__title {
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  opacity: 0.5;
  color: #070809;
}
.box-col-project__progress .cardCollected__number {
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
  color: #070809;
}
.box-col-project__progress .cardTarget {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  height: 42px;
}
.box-col-project__progress .cardTarget__title {
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  opacity: 0.5;
  color: #070809;
}
.box-col-project__progress .cardTarget__number {
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #070809;
}
.box-col-project__progress .cardProgressBar {
  background: #E6E5E5;
  height: 2px;
  border-radius: 100px;
  width: 100%;
}
.box-col-project__progress .cardProgressBar__line {
  height: 6px;
  border-radius: 100px;
  position: relative;
  top: -2px;
}
.box-col-project__progress .cardTarget {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  height: 42px;
}
.box-col-project__progress .cardTarget__title {
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  opacity: 0.7;
  color: #070809;
}
.box-col-project__progress .cardTarget__number {
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #070809;
}
.box-col-project__progress .cardUser {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin-bottom: 5px;
}
.box-col-project__progress .cardUser__item {
  width: 20px;
  min-width: 20px;
  height: 20px;
  border-radius: 100%;
  overflow: hidden;
  border: 1px solid #fff;
  margin-left: -8px;
}
.box-col-project__progress .cardUser__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.box-col-project__footer-label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.box-col-project__footer-label .label-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 568px) {
  .box-col-project__footer-label .label-item:nth-child(1) {
    display: none;
  }
}
.box-col-project__footer-label .label-item .icon {
  width: 12px;
  height: 12px;
  opacity: 0.5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.box-col-project__footer-label .label-item .icon img {
  width: 12px;
  height: 12px;
  object-fit: contain;
}
.box-col-project__footer-label .label-item .title {
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: normal;
  height: 14px;
  color: #070809;
  opacity: 0.5;
}

.projectSection {
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .projectSection {
    padding-top: 10px;
  }
}
.projectSection__wrapper {
  display: flex;
}
@media screen and (max-width: 1275px) {
  .projectSection__wrapper {
    flex-direction: column;
  }
}
.projectSection__wrapper .card {
  width: calc(33.3% - 13.1px);
}
@media screen and (max-width: 1200px) {
  .projectSection__wrapper .card {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 1275px) {
  .projectSection__wrapper .card {
    width: calc(33.3% - 13.1px);
  }
}
@media screen and (max-width: 860px) {
  .projectSection__wrapper .card {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 568px) {
  .projectSection__wrapper .card {
    width: 100%;
  }
}
.projectSection__caption {
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .projectSection__caption {
    margin-bottom: 20px;
  }
}
.projectSection .projectWrapper {
  width: calc(100% - 320px);
}
@media screen and (max-width: 1315px) {
  .projectSection .projectWrapper {
    width: calc(100% - 280px);
  }
}
@media screen and (max-width: 1275px) {
  .projectSection .projectWrapper {
    width: 100%;
  }
}
.projectSection .projectWrapper__sort {
  margin-bottom: 10px;
}
.projectSection .projectWrapper__container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 0px;
}
@media screen and (max-width: 568px) {
  .projectSection .projectWrapper__container {
    column-gap: 10px;
  }
}
.projectSection .projectWrapper__message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 550px;
}
.projectSection .projectWrapper__message .images {
  width: 100%;
  height: 300px;
}
.projectSection .projectWrapper__message .images img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 568px) {
  .projectSection .projectWrapper__message .images {
    width: 100%;
    height: 200px;
  }
}
.projectSection .projectWrapper__message .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 12px;
  margin-top: 24px;
}
.projectSection .projectWrapper__message .text .description {
  font-size: 20px;
  font-weight: normal;
  color: #070809;
  font-family: "Onest", sans-serif;
  font-style: normal;
  opacity: 0.7;
}
@media screen and (max-width: 568px) {
  .projectSection .projectWrapper__message .text .description {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .projectSection .projectWrapper__message .text h2 {
    font-size: 32px;
    line-height: 42px;
  }
}
@media screen and (max-width: 568px) {
  .projectSection .projectWrapper__message .text h2 {
    font-size: 26px;
    line-height: 36px;
  }
}
.projectSection .projectWrapper__message .btn {
  align-self: auto !important;
  margin-top: 24px;
}

.about {
  margin-top: 50px;
}
@media screen and (max-width: 568px) {
  .about {
    margin-top: 20px;
  }
}
.about__caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 1024px;
  margin: 0 auto;
}
.about__title {
  text-align: center;
  font-family: "Onest", sans-serif;
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: 56px;
  max-width: 760px;
}
@media screen and (max-width: 768px) {
  .about__title {
    font-size: 38px;
    line-height: 48px;
  }
}
@media screen and (max-width: 568px) {
  .about__title {
    font-size: 32px;
    line-height: 42px;
  }
}
.about__description {
  text-align: center;
  font-family: "Onest", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: normal;
  line-height: 26px;
  opacity: 0.8;
  max-width: 680px;
}
@media screen and (max-width: 768px) {
  .about__description {
    font-size: 16px;
    line-height: 24px;
  }
}
.about__cat {
  display: flex;
  gap: 20px;
  width: 100%;
  margin-top: 50px;
}
@media screen and (max-width: 1300px) {
  .about__cat {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1200px) {
  .about__cat {
    overflow-y: scroll;
    width: 100%;
    flex-wrap: nowrap;
  }
}
.about__cat-item {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 430px;
  position: relative;
  border-radius: 20px;
  padding: 35px 30px;
}
@media screen and (max-width: 1300px) {
  .about__cat-item {
    width: 32.1%;
  }
}
@media screen and (max-width: 1200px) {
  .about__cat-item {
    width: 100%;
    min-width: 320px;
  }
}
@media screen and (max-width: 1024px) {
  .about__cat-item {
    height: 380px;
    padding: 30px 25px;
  }
}
.about__cat-item:hover .about__cat-images {
  bottom: -25px;
}
@media screen and (max-width: 950px) {
  .about__cat-item:hover .about__cat-images {
    bottom: 5px;
  }
}
.about__cat-title {
  font-family: "Onest", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
  color: #fff;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .about__cat-title {
    font-size: 28px;
    margin-bottom: 10px;
  }
}
.about__cat-description {
  font-family: "Onest", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  color: #fff;
  flex: 1;
}
@media screen and (max-width: 950px) {
  .about__cat-description {
    max-width: 320px;
  }
}
@media screen and (max-width: 568px) {
  .about__cat-description {
    max-width: 300px;
  }
}
@media screen and (max-width: 375px) {
  .about__cat-description {
    font-size: 14px;
  }
}
.about__cat-images {
  position: absolute;
  bottom: 0;
  right: 0;
  transition: all 0.5s;
  width: 220px;
  height: 220px;
}
@media screen and (max-width: 1024px) {
  .about__cat-images {
    width: 160px;
    height: 160px;
  }
}
.about__cat-images img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about__cat-fin {
  background: #0293E9;
}
.about__cat-fin .about__cat-images {
  bottom: -30px;
  right: -25px;
}
@media screen and (max-width: 1024px) {
  .about__cat-fin .about__cat-images {
    bottom: -15px;
    right: -15px;
  }
}
@media screen and (max-width: 950px) {
  .about__cat-fin .about__cat-images {
    bottom: 5px;
    right: -15px;
  }
}
.about__cat-fiz {
  background: #F9C20F;
}
.about__cat-fiz .about__cat-images {
  bottom: -30px;
  right: -30px;
}
@media screen and (max-width: 1024px) {
  .about__cat-fiz .about__cat-images {
    bottom: -15px;
    right: -25px;
  }
}
@media screen and (max-width: 950px) {
  .about__cat-fiz .about__cat-images {
    bottom: 5px;
    right: -25px;
  }
}
.about__cat-mat {
  background: #D2392F;
}
.about__cat-mat .about__cat-images {
  bottom: -45px;
  right: -30px;
}
@media screen and (max-width: 1024px) {
  .about__cat-mat .about__cat-images {
    bottom: -27px;
    right: -20px;
  }
}
@media screen and (max-width: 950px) {
  .about__cat-mat .about__cat-images {
    bottom: 5px;
    right: -15px;
  }
}
.about__cat-mat:hover .about__cat-images {
  bottom: -40px;
}
@media screen and (max-width: 950px) {
  .about__cat-mat:hover .about__cat-images {
    bottom: 5px;
  }
}
.about__cat-fond {
  background: #97C75C;
}
.about__cat-fond .about__cat-images {
  bottom: -45px;
  right: -30px;
}
@media screen and (max-width: 1024px) {
  .about__cat-fond .about__cat-images {
    bottom: -27px;
    right: -20px;
  }
}
@media screen and (max-width: 950px) {
  .about__cat-fond .about__cat-images {
    bottom: 5px;
    right: -15px;
  }
}
.about__cat-fond:hover .about__cat-images {
  bottom: -40px;
}
@media screen and (max-width: 950px) {
  .about__cat-fond:hover .about__cat-images {
    bottom: 5px;
  }
}
.about__cat-link {
  min-width: 56px;
  width: 56px;
  height: 56px;
  background-color: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.contentAbout {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .contentAbout {
    margin-top: 50px;
  }
}
.contentAbout__container {
  display: flex;
  flex-direction: column;
}
.contentAbout__card {
  display: flex;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(7, 8, 9, 0.05);
  margin-bottom: 50px;
}
@media screen and (max-width: 1200px) {
  .contentAbout__card {
    flex-direction: column;
  }
}
.contentAbout__card:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.contentAbout__row-title {
  min-width: 435px;
}
@media screen and (max-width: 1200px) {
  .contentAbout__row-title {
    width: 100%;
    min-width: 100%;
  }
}
.contentAbout__title {
  font-size: 36px;
  color: #070809;
  font-family: "Onest", sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (max-width: 1200px) {
  .contentAbout__title {
    margin-bottom: 20px;
  }
}
.contentAbout__row-description p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 15px;
  color: #070809;
  font-family: "Onest", sans-serif;
  font-weight: normal;
  font-style: normal;
  opacity: 0.8;
}
.contentAbout__row-description p:last-child {
  margin-bottom: 0;
}

.contact {
  margin-top: 20px;
}
.contact .title {
  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #070809;
  opacity: 0.5;
}
.contact__title {
  font-size: 42px;
  line-height: 56px;
  font-weight: 600;
  font-family: "Onest", sans-serif;
  color: #070809;
}
@media screen and (max-width: 768px) {
  .contact__title {
    font-size: 38px;
    line-height: 48px;
  }
}
@media screen and (max-width: 568px) {
  .contact__title {
    font-size: 32px;
    line-height: 42px;
  }
}
.contact__top {
  margin-top: 50px;
  margin-bottom: 80px;
  display: flex;
}
@media screen and (max-width: 1150px) {
  .contact__top {
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .contact__top {
    margin-bottom: 50px;
  }
}
.contact__top-info {
  display: flex;
  gap: 30px;
  width: 60%;
}
@media screen and (max-width: 1150px) {
  .contact__top-info {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .contact__top-info {
    flex-direction: column;
  }
}
.contact__top-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 50%;
}
@media screen and (max-width: 1150px) {
  .contact__top-item {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .contact__top-item {
    gap: 10px;
  }
}
.contact__top-caption {
  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #070809;
  opacity: 0.5;
}
.contact__top-title {
  color: #070809;
  font-family: "Onest", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 768px) {
  .contact__top-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 600px) {
  .contact__top-title {
    font-size: 25px;
  }
}
.contact__top-description {
  width: 40%;
}
@media screen and (max-width: 1150px) {
  .contact__top-description {
    width: 100%;
  }
}
.contact__top-description p {
  color: #070809;
  font-family: "Onest", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  max-width: 401px;
}
.contact__bottom {
  display: flex;
}
@media screen and (max-width: 1150px) {
  .contact__bottom {
    flex-direction: column-reverse;
    gap: 50px;
  }
}
@media screen and (max-width: 768px) {
  .contact__bottom {
    gap: 30px;
  }
}
.contact__bottom .btn {
  align-self: flex-start;
  cursor: pointer;
}
.contact__social {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 40%;
}
@media screen and (max-width: 1150px) {
  .contact__social {
    width: 100%;
  }
}
.contact__social .social-container {
  display: flex;
  align-items: center;
  gap: 5px;
}
.contact__social .social-item {
  min-width: 40px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0293E9;
  border-radius: 100%;
}
.contact__social .social-item svg {
  width: 18px;
  height: 18px;
}
.contact__social .social-item svg path {
  fill: #fff;
}
.contact__detali {
  width: 60%;
  flex-wrap: wrap;
  display: flex;
  column-gap: 30px;
  row-gap: 50px;
}
@media screen and (max-width: 1150px) {
  .contact__detali {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .contact__detali {
    flex-direction: column;
    row-gap: 30px;
  }
}
.contact__card {
  display: flex;
  flex-direction: column;
  width: calc(50% - 15px);
}
@media screen and (max-width: 600px) {
  .contact__card {
    width: 100%;
  }
}
.contact__card .title {
  margin-bottom: 10px;
}
.contact__card .description {
  color: #070809;
  font-family: "Onest", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 20px;
  max-width: 350px;
}
@media screen and (max-width: 600px) {
  .contact__card .description {
    margin-bottom: 10px;
  }
}
.contact__card .link {
  color: #070809;
  font-family: "Onest", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}

.faq__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.faq__container .pageCaption {
  text-align: center;
}
.faq__wrapper {
  display: flex;
  justify-content: center;
  gap: 50px;
}
.faq__content {
  width: 1024px;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq__title {
  font-weight: 500;
  font-size: 20px;
  color: #070809;
  margin-bottom: 30px;
}
.faq .accordion-caption {
  font-weight: normal;
}

.projectSearch .projectWrapper {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .projectSearch .projectWrapper .sort-tab {
    width: auto;
  }
}
@media screen and (max-width: 920px) {
  .projectSearch .projectWrapper .sort-tab {
    width: 100%;
    justify-content: start;
  }
}
.projectSearch .projectWrapper .card {
  width: calc(25% - 15px);
}
@media screen and (max-width: 1200px) {
  .projectSearch .projectWrapper .card {
    width: calc(33.3% - 13.1px);
  }
}
@media screen and (max-width: 920px) {
  .projectSearch .projectWrapper .card {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 568px) {
  .projectSearch .projectWrapper .card {
    width: 100%;
  }
}

.textPage .pageCaption {
  margin-bottom: 30px;
}
@media screen and (max-width: 414px) {
  .textPage .pageCaption {
    margin-bottom: 20px;
  }
}
.textPage__article {
  max-width: 1024px;
}
.textPage__article h2 {
  font-weight: 500;
  font-size: 26px;
  margin-bottom: 15px;
  margin-top: 30px;
}
@media screen and (max-width: 414px) {
  .textPage__article h2 {
    font-size: 24px;
    line-height: 28px;
  }
}
.textPage__article p {
  font-size: 16px;
  line-height: 24px;
  font-weight: normal;
  margin-bottom: 22px;
  font-size: "Onest", sans-serif;
}
@media screen and (max-width: 414px) {
  .textPage__article p {
    margin-bottom: 15px;
  }
}
.textPage__article p:last-child {
  margin-bottom: 0;
}
.textPage__article p img {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
}
@media screen and (max-width: 414px) {
  .textPage__article p img {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
.textPage__article ul {
  padding: 0px 32px;
  margin-bottom: 20px;
}
.textPage__article ul li {
  font-size: 16px;
  line-height: 24px;
  font-weight: normal;
  margin-bottom: 12px;
  font-family: "Onest", sans-serif;
}
.textPage__article ul li:last-child {
  margin-bottom: 0;
}

.statsSection {
  width: 100%;
  overflow: hidden;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 568px) {
  .statsSection {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 980px) {
  .statsSection .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.statsSection__wrapper {
  border-radius: 50px;
  max-width: 1420px;
  width: 100%;
  margin: 0 auto;
  min-height: 200px;
  height: auto;
  margin-top: 50px;
  margin-bottom: 100px;
  position: relative;
  background-color: #f5f7f9;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 1570px) {
  .statsSection__wrapper {
    max-width: 1280px;
  }
}
@media screen and (max-width: 820px) {
  .statsSection__wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 568px) {
  .statsSection__wrapper {
    border-radius: 30px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 375px) {
  .statsSection__wrapper {
    border-radius: 20px;
  }
}
.statsSection .arrow-item-blue {
  position: absolute;
  left: -53px;
  top: 50px;
}
@media screen and (max-width: 820px) {
  .statsSection .arrow-item-blue {
    width: 90px;
    height: 90px;
    left: -32px;
    top: -5px;
  }
  .statsSection .arrow-item-blue img {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 675px) {
  .statsSection .arrow-item-blue {
    top: 165px;
  }
}
.statsSection .arrow-item-yellow {
  position: absolute;
  left: 320px;
  bottom: -41px;
}
@media screen and (max-width: 820px) {
  .statsSection .arrow-item-yellow {
    width: 100px;
    height: 100px;
    left: 250px;
    bottom: -27px;
  }
  .statsSection .arrow-item-yellow img {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 675px) {
  .statsSection .arrow-item-yellow {
    left: 100px;
  }
}
@media screen and (max-width: 568px) {
  .statsSection .arrow-item-yellow {
    width: 90px;
    height: 90px;
    bottom: -25px;
  }
}
.statsSection .arrow-item-red {
  position: absolute;
  right: -75px;
  top: 80px;
}
@media screen and (max-width: 820px) {
  .statsSection .arrow-item-red {
    width: 125px;
    height: 125px;
    right: -48px;
    top: 80px;
  }
  .statsSection .arrow-item-red img {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 675px) {
  .statsSection .arrow-item-red {
    top: 100px;
  }
}
.statsSection__title {
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.statsSection__title h2 {
  font-size: 32px;
  line-height: 38px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: 500;
  text-align: center;
  max-width: 620px;
}
@media screen and (max-width: 620px) {
  .statsSection__title h2 {
    font-size: 28px;
    line-height: 32px;
  }
}
@media screen and (max-width: 375px) {
  .statsSection__title h2 {
    font-size: 25px;
    line-height: 32px;
  }
}
.statsSection__card {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
}
@media screen and (max-width: 675px) {
  .statsSection__card {
    flex-direction: column;
    margin-top: 30px;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
}
.statsSection__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 33.3%;
  gap: 5px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 675px) {
  .statsSection__item {
    width: 100%;
  }
}
.statsSection__item.blue .number {
  color: #0293E9;
}
.statsSection__item.yellow .number {
  color: #F9C20F;
}
.statsSection__item.red .number {
  color: #DD3E37;
}
.statsSection .number {
  font-size: 36px;
  font-weight: 500;
  font-family: "Onest", sans-serif;
  font-style: normal;
  color: #070809;
}
@media screen and (max-width: 900px) {
  .statsSection .number {
    font-size: 30px;
    line-height: 32px;
  }
}
.statsSection .title {
  font-size: 18px;
  font-weight: normal;
  font-family: "Onest", sans-serif;
  font-style: normal;
  color: #070809;
  opacity: 0.5;
}

.sectionPartners {
  padding-top: 30px;
  padding-bottom: 80px;
  border-radius: 50px 50px 0px 0px;
  background-color: #fff;
  margin-bottom: -100px;
}
@media screen and (max-width: 568px) {
  .sectionPartners {
    border-radius: 20px 20px 0px 0px;
  }
}
.sectionPartners__caption {
  display: flex;
  justify-content: center;
}
.sectionPartners__caption h2 {
  font-weight: 500;
  font-size: 25px;
}
.sectionPartners__container {
  overflow: hidden;
}
.sectionPartners__slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top: 30px;
}
.sectionPartners__slider::before {
  content: "";
  height: 100%;
  width: 350px;
  position: absolute;
  left: 0;
  z-index: 1;
  background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
}
@media screen and (max-width: 768px) {
  .sectionPartners__slider::before {
    width: 50px;
  }
}
@media screen and (max-width: 568px) {
  .sectionPartners__slider::before {
    width: 20px;
  }
}
.sectionPartners__slider::after {
  content: "";
  height: 100%;
  width: 350px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
}
@media screen and (max-width: 768px) {
  .sectionPartners__slider::after {
    width: 50px;
  }
}
@media screen and (max-width: 568px) {
  .sectionPartners__slider::after {
    width: 20px;
  }
}
.sectionPartners__slider .slide-track {
  -webkit-animation: scroll 30s linear infinite;
  animation: scroll 30s linear infinite;
  display: flex;
  gap: 100px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .sectionPartners__slider .slide-track {
    gap: 50px;
  }
}
@media screen and (max-width: 568px) {
  .sectionPartners__slider .slide-track {
    gap: 30px;
  }
}
.sectionPartners__slider .slide {
  height: 120px;
  min-width: 120px;
}
@media screen and (max-width: 568px) {
  .sectionPartners__slider .slide {
    height: 100px;
    min-width: 100px;
  }
}
.sectionPartners__slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@-webkit-keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-550px);
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-550px);
  }
}
.sectionInfo {
  padding-top: 50px;
  padding-bottom: 50px;
}
.sectionInfo__card {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 960px) {
  .sectionInfo__card {
    overflow-y: scroll;
    width: 100%;
  }
}
@media screen and (max-width: 568px) {
  .sectionInfo__card {
    gap: 10px;
  }
}
.sectionInfo__item {
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  background-color: #f5f7f9;
  border-radius: 20px;
  padding-top: 20px;
  padding-bottom: 30px;
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (max-width: 1100px) {
  .sectionInfo__item {
    min-height: auto;
  }
}
@media screen and (max-width: 960px) {
  .sectionInfo__item {
    min-width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .sectionInfo__item {
    min-width: 70%;
  }
}
@media screen and (max-width: 568px) {
  .sectionInfo__item {
    min-width: max-content;
  }
}
.sectionInfo__item .images {
  margin-bottom: 30px;
  height: 200px;
  border-radius: 15px;
}
@media screen and (max-width: 1100px) {
  .sectionInfo__item .images {
    width: 100%;
  }
}
@media screen and (max-width: 568px) {
  .sectionInfo__item .images {
    max-width: 300px;
  }
}
.sectionInfo__item .images img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sectionInfo__item .title {
  font-family: "Onest", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  color: #070809;
  margin-bottom: 15px;
  display: block;
}
@media screen and (max-width: 600px) {
  .sectionInfo__item .title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 568px) {
  .sectionInfo__item .title {
    max-width: 300px;
  }
}
.sectionInfo__item .description {
  text-align: center;
  font-family: "Onest", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  opacity: 0.5;
  flex: 1;
}
@media screen and (max-width: 600px) {
  .sectionInfo__item .description {
    font-size: 15px;
    line-height: 24px;
  }
}
@media screen and (max-width: 568px) {
  .sectionInfo__item .description {
    max-width: 300px;
  }
}

.news__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news__container .pageCaption {
  text-align: center;
}
.news__container .pageCaption .pageDate-news {
  font-size: 15px;
  font-family: "Onest", sans-serif;
  color: #070809;
  opacity: 0.5;
  font-weight: normal;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.news__container .pageCaption .pageDate-news .icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}
.news__container .pageCaption .pageDate-news .icon svg {
  width: 16px;
  height: 16px;
}
.news__wrapper {
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 1024px;
  margin: 0 auto;
}
.news__list {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}
.news__item {
  color: #070809;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(7, 8, 9, 0.05);
}
@media screen and (max-width: 568px) {
  .news__item {
    flex-direction: column-reverse;
    gap: 20px;
  }
}
.news__item:last-child {
  border-bottom: none;
}
.news__wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  justify-content: space-between;
  min-height: 120px;
}
@media screen and (max-width: 568px) {
  .news__wrap {
    min-height: auto;
  }
}
.news__date {
  font-size: "Onest", sans-serif;
  font-size: 15px;
  font-weight: normal;
  color: #070809;
  opacity: 0.5;
  display: flex;
  align-items: center;
  gap: 5px;
}
.news__date .icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}
.news__date .icon svg {
  width: 16px;
  height: 16px;
}
.news__title {
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  color: #070809;
  font-family: "Onest", sans-serif;
  max-width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 568px) {
  .news__title {
    overflow: visible;
  }
}
.news__description {
  flex: 1;
  font-family: "Onest", sans-serif;
  font-size: 15px;
  line-height: 22px;
  font-weight: normal;
  color: #070809;
  opacity: 0.7;
  height: 70px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 568px) {
  .news__description {
    height: 30px;
  }
}
.news__images {
  min-width: 200px;
  height: 120px;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 568px) {
  .news__images {
    width: 100%;
    height: auto;
    max-height: 220px;
    display: inline-flex;
  }
}
.news__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 568px) {
  .news__images img {
    height: auto;
  }
}
.news__article p {
  font-size: 16px;
  line-height: 24px;
  font-weight: normal;
  margin-bottom: 15px;
  font-size: "Onest", sans-serif;
}
@media screen and (max-width: 414px) {
  .news__article p {
    margin-bottom: 15px;
  }
}
.news__article p:last-child {
  margin-bottom: 0;
}
.news__article p img {
  max-width: 100%;
  width: 100%;
  height: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
}
@media screen and (max-width: 414px) {
  .news__article p img {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
.news__article ul {
  padding: 0px 32px;
  margin-bottom: 20px;
}
.news__article ul li {
  font-size: 16px;
  line-height: 24px;
  font-weight: normal;
  margin-bottom: 12px;
  font-family: "Onest", sans-serif;
}
.news__article ul li:last-child {
  margin-bottom: 0;
}

.help__form-box {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 50px;
}
@media screen and (max-width: 568px) {
  .help__form-box {
    margin-top: 30px;
  }
}

.create .pageCaption {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}
.create .pageDescription {
  font-size: 20px;
  font-weight: normal;
  color: #070809;
  font-family: "Onest", sans-serif;
  font-style: normal;
  opacity: 0.7;
}
.create .option-card {
  height: auto;
}
.create .option-card__row {
  gap: 20px;
  display: flex;
  justify-content: space-around;
  width: 100%;
  position: relative;
  margin-top: 50px;
}
@media screen and (max-width: 840px) {
  .create .option-card__row {
    flex-direction: column;
  }
}
@media screen and (max-width: 568px) {
  .create .option-card__row {
    gap: 40px;
  }
}
.create .option-card__item {
  width: 33.3%;
  display: inline-flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  border-radius: 20px;
  padding-top: 150px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .create .option-card__item {
    padding-top: 120px;
  }
}
@media screen and (max-width: 840px) {
  .create .option-card__item {
    width: 100%;
    padding-top: 30px;
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 140px;
  }
}
@media screen and (max-width: 568px) {
  .create .option-card__item {
    text-align: center;
    justify-content: center;
    align-items: center;
    padding-left: 30px;
    padding-top: 120px;
  }
}
.create .option-card__item:hover .option-card__icon {
  top: -45px;
}
.create .option-card__item.fin {
  background: #0293E9;
}
.create .option-card__item.fiz {
  background: #F9C20F;
}
.create .option-card__item.mat {
  background: #DD3E37;
}
.create .option-card__item.fond {
  background: #97C75C;
}
.create .option-card__icon {
  position: absolute;
  top: -40px;
  width: 180px;
  height: 180px;
  transition: all 0.5s;
}
@media screen and (max-width: 1024px) {
  .create .option-card__icon {
    width: 150px;
    height: 150px;
  }
}
@media screen and (max-width: 840px) {
  .create .option-card__icon {
    top: 0;
    left: -30px;
  }
}
@media screen and (max-width: 568px) {
  .create .option-card__icon {
    top: -40px;
    left: auto;
  }
}
.create .option-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.create .option-card__title {
  font-size: 25px;
  color: #fff;
  font-family: "Onest", sans-serif;
  font-weight: 500;
  margin-bottom: 10px;
}
@media screen and (max-width: 1200px) {
  .create .option-card__title {
    max-width: 250px;
  }
}
@media screen and (max-width: 840px) {
  .create .option-card__title {
    max-width: 100%;
  }
}
.create .option-card__description {
  font-size: 16px;
  color: #fff;
  font-family: "Onest", sans-serif;
  font-weight: normal;
  line-height: 24px;
  opacity: 0.7;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .create .option-card__description {
    font-size: 15px;
    line-height: 22px;
  }
}
.create .option-card__btn {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  align-self: auto;
}
.create .option-card__btn:hover {
  background: rgba(255, 255, 255, 0.3);
}
.create__radio-project {
  display: flex;
  gap: 20px;
  margin-top: 50px;
}
@media screen and (max-width: 998px) {
  .create__radio-project {
    flex-direction: column;
  }
}
@media screen and (max-width: 414px) {
  .create__radio-project {
    margin-top: 32px;
  }
}
.create__radio-project .radio-block {
  width: 100%;
  padding: 32px 16px 32px 16px;
  cursor: default;
}
@media screen and (max-width: 998px) {
  .create__radio-project .radio-block {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.create__radio-project .radio-block__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
}
.create__radio-project .radio-block__info .btn {
  color: #fff;
  margin-top: 16px;
  margin: 0 auto;
}
.create__radio-project .radio-block__title {
  font-size: 20px;
  font-weight: 600;
}
.create__radio-project .radio-block__subtitle {
  opacity: 0.7;
  line-height: 22px;
  margin-bottom: 16px;
}
.create__radio-project .radio-block__images {
  width: 86px;
  height: 86px;
}
.create__radio-project .radio-block__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.create__radio-project .radio-block.fin .btn {
  background-color: #0293E9;
}
.create__radio-project .radio-block.fiz .btn {
  background-color: #F9C20F;
}
.create__radio-project .radio-block.mat .btn {
  background-color: #D2392F;
}

.create-project .pageCaption {
  align-items: flex-start;
}
.create-project__container {
  display: flex;
  gap: 20px;
  position: relative;
  height: 100%;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .create-project__container {
    flex-direction: column;
  }
}
.create-project__sidebar {
  min-width: 200px;
}
.create-project__sidebar-main {
  display: flex;
  flex-direction: column;
}
.create-project__sidebar-title {
  height: 40px;
  padding: 8px 16px;
  opacity: 0.5;
}
.create-project__sidebar-btn {
  color: #070809;
  justify-content: flex-start;
  transition: all 0.3s;
}
.create-project__sidebar-btn:hover {
  background: #F3F3F4;
}
@media screen and (max-width: 1024px) {
  .create-project__sidebar-btn {
    min-width: max-content;
  }
}
.create-project__sidebar-btn.active {
  background: #F3F3F4;
}
.create-project__sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.create-project__sidebar-list:last-child {
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #F3F3F4;
}
@media screen and (max-width: 1024px) {
  .create-project__sidebar-list {
    flex-direction: row;
    overflow-y: hidden;
    overflow-x: scroll;
    width: 100%;
  }
}
.create-project__sidebar-main {
  position: sticky;
  top: 20px;
  width: 100%;
}
.create-project__main {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .create-project__main {
    max-width: 100%;
  }
}
.create-project__main-full {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 100%;
  width: 100%;
}
.create-project__box {
  background: #fff;
  border-radius: 15px;
  border: 1px solid #F3F3F4;
  padding: 30px 30px;
  width: auto;
  gap: 25px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (max-width: 568px) {
  .create-project__box {
    padding: 15px;
    border-radius: 10px;
  }
}
.create-project__box-add {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 30px;
}
.create-project__box-add .plus {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #070809;
}
.create-project__box-add .plus svg path {
  stroke: #fff;
}
.create-project__box-add .title {
  font-size: 18px;
  font-weight: 500;
  color: #070809;
  font-family: "Onest", sans-serif;
  font-style: normal;
}
.create-project__form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.create-project__card-preview {
  min-width: 320px;
  width: 320px;
}
@media screen and (max-width: 1200px) {
  .create-project__card-preview {
    min-width: 300px;
    width: 300px;
  }
}
@media screen and (max-width: 1100px) {
  .create-project__card-preview {
    display: none;
  }
}
.create-project__card-preview .card {
  width: 100%;
  position: sticky;
  top: 20px;
}
.create-project__card-preview .container-rewards {
  position: sticky;
  top: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.create-project__step {
  margin-bottom: -50px;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  position: sticky;
  bottom: 0;
  background: #FAFAFB;
  box-shadow: 5px 0px 20px -6px rgba(7, 8, 9, 0.05);
  margin-top: 20px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .create-project__step {
    position: relative;
  }
}
@media screen and (max-width: 568px) {
  .create-project__step .btn {
    width: 100%;
  }
}
.create-project__step-wrapper {
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .create-project__step-wrapper {
    display: flex;
    flex-direction: column-reverse;
  }
}
.create-project__step .project-detali {
  display: flex;
  gap: 20px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .create-project__step .project-detali {
    width: 100%;
    justify-content: space-between;
  }
  .create-project__step .project-detali .project-save {
    margin-left: auto;
  }
}
@media screen and (max-width: 568px) {
  .create-project__step .project-detali {
    flex-direction: column-reverse;
  }
  .create-project__step .project-detali .project-save {
    margin-left: 0;
    width: 100%;
  }
}
.create-project__step .project-eye {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #070809;
  background-color: transparent;
}
@media screen and (max-width: 568px) {
  .create-project__step .project-eye {
    align-self: auto;
    width: 100%;
  }
}
.create-project__step .project-eye .eye {
  width: 20px;
  height: 20px;
}
.create-project__step .project-eye .eye svg {
  width: 20px;
  height: 20px;
}
.create-project__step .project-delete {
  display: flex;
  align-items: center;
  color: #DD3E37;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .create-project__step .project-delete {
    margin-top: 10px;
  }
}
@media screen and (max-width: 568px) {
  .create-project__step .project-delete {
    border-top: 1px solid #F3F3F4;
    width: 100%;
    padding-top: 10px;
  }
  .create-project__step .project-delete .btn {
    align-self: auto;
    width: 100%;
  }
}
.create-project__step .project-delete .icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.create-project__step .project-delete .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.recomendation {
  margin-top: 100px;
}
@media screen and (max-width: 568px) {
  .recomendation {
    margin-top: 50px;
  }
}
.recomendation__container {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .recomendation__container {
    flex-direction: column;
  }
}
.recomendation__item {
  width: calc(50% - 15px);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .recomendation__item {
    width: 100%;
  }
}
.recomendation__item-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}
.recomendation__item-icon img {
  width: 100%;
  height: 100%;
  object-fit: conta56;
}
.recomendation__item-title {
  font-size: 25px;
  color: #070809;
  font-family: "Onest", sans-serif;
  font-weight: 500;
}
.recomendation__item-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 400px;
  margin-top: 20px;
}
.recomendation__item-tag .tag-item {
  font-size: 15px;
  font-weight: normal;
  font-family: "Onest", sans-serif;
  border-radius: 20px;
  padding: 4px 12px;
}
.recomendation__item-list {
  margin-top: 30px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 20px;
}
.recomendation__item-list .list-item {
  display: flex;
  gap: 10px;
}
.recomendation__item-list .list-item .icon {
  min-width: 18px;
  width: 18px;
  height: 18px;
  object-fit: contain;
  position: relative;
  top: 2px;
}
.recomendation__item-list .list-item .icon img {
  width: 100%;
  height: 100%;
}
.recomendation__item-list .list-item .title {
  font-size: 15px;
  line-height: 22px;
  font-weight: normal;
  font-family: "Onest", sans-serif;
  color: #070809;
  display: inline-flex;
}
.recomendation__success {
  background: #f5f7f9;
}
.recomendation__success .tag-item {
  background-color: rgba(62, 200, 67, 0.3);
}
.recomendation__error {
  background: #f5f7f9;
}
.recomendation__error .tag-item {
  background-color: rgba(221, 62, 55, 0.3);
}

.step-project {
  margin-top: 100px;
}
@media screen and (max-width: 568px) {
  .step-project {
    margin-top: 50px;
  }
}
.step-project__container {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .step-project__container {
    overflow-y: hidden;
    overflow-x: scroll;
    width: 100%;
  }
}
.step-project .wrapper-caption {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.step-project__item {
  min-height: 300px;
  width: 25%;
  display: flex;
  flex-direction: column;
  text-align: center;
  background-color: #f5f7f9;
  border-radius: 20px;
  padding-top: 20px;
  padding-bottom: 30px;
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (max-width: 1024px) {
  .step-project__item {
    width: 30%;
  }
}
@media screen and (max-width: 960px) {
  .step-project__item {
    min-width: 50%;
  }
}
@media screen and (max-width: 568px) {
  .step-project__item {
    min-width: 70%;
  }
}
.step-project__item-images {
  height: auto;
  border-radius: 15px;
  margin-bottom: 5px;
}
@media screen and (max-width: 1100px) {
  .step-project__item-images {
    width: 100%;
    height: 320px;
  }
}
@media screen and (max-width: 568px) {
  .step-project__item-images {
    height: 180px;
  }
}
.step-project__item-images img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.step-project__item-title {
  font-family: "Onest", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  color: #070809;
  margin-bottom: 5px;
  display: block;
  transition: all 0.3s;
}
.step-project__item-description {
  text-align: center;
  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  opacity: 0.5;
}

.faq-create {
  margin-top: 100px;
}
@media screen and (max-width: 568px) {
  .faq-create {
    margin-top: 50px;
  }
}
.faq-create .faq__content {
  margin-top: 30px;
}

.create-paper__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.create-paper__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .create-paper__item {
    width: 100%;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 360px) {
  .create-paper__item {
    gap: 5px;
  }
}
.create-paper__action {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 360px) {
  .create-paper__action {
    margin-left: 0;
  }
}
.create-paper__action .btn-edit {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
}
.create-paper__action .btn-edit img {
  width: 18px;
  height: 18px;
}
.create-paper__title {
  font-size: 16px;
  font-weight: 500;
  font-family: "Onest", sans-serif;
  font-style: normal;
  color: #070809;
  overflow: hidden;
  max-width: 600px;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .create-paper__title {
    max-width: 100%;
  }
}
.create-paper__title:hover {
  opacity: 0.5;
}
.create-paper__date {
  font-size: 16px;
  font-weight: normal;
  font-family: "Onest", sans-serif;
  font-style: normal;
  color: #070809;
  opacity: 0.5;
  min-width: 90px;
}
@media screen and (max-width: 768px) {
  .create-paper__date {
    font-size: 15px;
  }
}
.create-paper__label {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .create-paper__label {
    font-size: 15px;
  }
}
.create-paper__label .draft {
  background-color: #F3F3F4;
  padding: 4px 10px;
  border-radius: 10px;
  color: rgba(7, 8, 9, 0.5);
  font-size: 16px;
  font-weight: 500;
  font-family: "Onest", sans-serif;
}
.create-paper__label .moderation {
  background-color: rgba(228, 145, 62, 0.1);
  padding: 4px 10px;
  border-radius: 10px;
  color: #E4903E;
}
.create-paper__label .sucssesfull {
  background-color: rgba(62, 228, 69, 0.1);
  padding: 4px 10px;
  border-radius: 10px;
  color: #3EC843;
}
.create-paper__label .error {
  background-color: rgba(228, 62, 62, 0.1);
  padding: 4px 10px;
  border-radius: 10px;
  color: #DD3E37;
}

.create-faq__delete .btn {
  width: 100%;
}

.login {
  position: relative;
}
.login__pattern {
  position: absolute;
  width: 100%;
  height: 500px;
  top: 0;
  left: 0;
  right: 0;
}
.login__pattern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.login__container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 568px) {
  .login__container {
    height: calc(100vh - 100px);
  }
}
.login__box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  padding-left: 35px;
  padding-right: 35px;
  padding-bottom: 25px;
  padding-top: 60px;
  max-width: 420px;
  width: 100%;
  position: relative;
}
.login__box .arrow-box-blue {
  position: absolute;
  top: 120px;
  left: -24px;
}
.login__box .arrow-box-yellow {
  position: absolute;
  top: -30px;
  right: 24px;
}
.login__box .arrow-box-red {
  position: absolute;
  bottom: 40px;
  right: -24px;
}
.login__title {
  font-size: 25px;
  font-weight: 500;
  color: #070809;
  font-family: "Onest", sans-serif;
  margin-top: 30px;
}
.login__logo {
  width: 200px;
  height: 40px;
}
.login__logo img {
  width: 100%;
  height: 100%;
}
.login__label label {
  width: 100%;
}
.login__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 30px;
  position: relative;
}
.login__form .error-description {
  position: relative;
  bottom: 2px;
  text-align: left;
  width: 100%;
}
.login__form .input {
  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  line-height: 24px;
  width: 100%;
  height: 45px;
  position: relative;
  background: #f8f8f9;
  padding: 8px 16px;
  border-radius: 10px;
}
.login__form .input.is-error {
  border: 1px solid #DD3E37;
}
.login__form .input:focus {
  outline: none;
  border: 1px solid #E7E7E9;
}
.login__form .btn {
  height: 45px;
  min-width: 100%;
  margin-top: 10px;
  align-self: auto;
}
.login .forgot {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(7, 8, 9, 0.05);
  width: 100%;
}
.login .forgot:hover .btn {
  opacity: 0.7;
}
.login .forgot .btn {
  color: #070809;
  width: 100%;
  transition: all 0.3s;
}
.login .bottom-reg {
  margin-top: 30px;
}
.login .bottom-reg-link {
  color: #070809;
  font-size: 15px;
  font-weight: normal;
}
.login .bottom-reg-link .active-link {
  color: #0293E9;
  transition: all 0.3s;
}
.login .bottom-reg-link .active-link:hover {
  opacity: 0.7;
}

.success .btn {
  align-self: center;
}
.success__container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 600px;
}
.success__box {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  max-width: 500px;
}
.success__images {
  width: 200px;
  height: 200px;
  margin-bottom: 20px;
}
.success__images img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.success__title {
  font-size: 25px;
  font-weight: 500;
  color: #070809;
  font-style: normal;
  font-family: "Onest", sans-serif;
  margin-bottom: 10px;
}
.success__decsription {
  font-size: 16px;
  font-weight: normal;
  color: #070809;
  font-style: normal;
  font-family: "Onest", sans-serif;
  margin-bottom: 20px;
}
.success__decsription .description-big {
  font-size: 18px;
  font-weight: 500;
  color: #070809;
  font-style: normal;
  font-family: "Onest", sans-serif;
  margin-bottom: 10px;
}
.success__decsription .share-list {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.success__decsription .share-list-item {
  width: 24px;
  height: 24px;
}
.success__decsription .share-list-item svg {
  width: 24px;
  height: 24px;
}
.success__decsription .share p {
  font-size: 16px;
  font-weight: normal;
  color: #070809;
  font-style: normal;
  font-family: "Onest", sans-serif;
  margin-bottom: 20px;
  opacity: 0.8;
}

.page-row-container {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  position: relative;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .page-row-container {
    flex-direction: column;
  }
}

.box-wrap {
  background: #fff;
  border-radius: 15px;
  border: 1px solid #F3F3F4;
  padding: 30px 30px;
  width: auto;
  gap: 25px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (max-width: 568px) {
  .box-wrap {
    padding: 20px 15px;
    gap: 20px;
  }
}

.box-wrap-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.donat__bg {
  background: #fff;
}
.donat__container {
  max-width: 920px;
  margin: 0 auto;
}
.donat__container .pageCaption {
  display: flex;
  align-items: center;
  justify-content: center;
}
.donat__container .pageCaption .pageTitle {
  text-align: center;
}
.donat__section {
  margin-bottom: 50px;
}
.donat__section:last-child {
  margin-bottom: 0;
}
.donat__section-caption {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.donat__section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.donat__section-description {
  max-width: 760px;
}
.donat__section-description p {
  font-family: "Onest", sans-serif;
  font-size: 15px;
  line-height: 22px;
  font-style: normal;
  font-weight: 400;
  opacity: 0.7;
}
.donat__section .donat-help {
  display: flex;
  align-items: center;
  gap: 5px;
}
.donat__section .donat-help .icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}
.donat__section .donat-help .title {
  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  color: #070809;
  opacity: 0.5;
}
.donat__project {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin-top: 30px;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(7, 8, 9, 0.05);
}
.donat__project-title {
  text-decoration: none;
  font-family: "Onest", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  color: #070809;
  max-width: 600px;
}
@media screen and (max-width: 568px) {
  .donat__project-title {
    font-size: 16px;
    line-height: 24px;
  }
}
.donat__project-label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: auto;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 568px) {
  .donat__project-label {
    gap: 10px;
  }
}
.donat__project-label .label-type {
  display: flex;
  align-items: center;
  gap: 5px;
}
.donat__project-label .label-type .icon {
  width: 24px;
  height: 24px;
}
.donat__project-label .label-type .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.donat__project-label .label-type .title {
  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  color: #070809;
}
.donat__project-label .label-author {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}
.donat__project-label .label-author:hover .name {
  opacity: 0.7;
}
.donat__project-label .label-author .image {
  width: 24px;
  height: 24px;
  border-radius: 100%;
  overflow: hidden;
}
.donat__project-label .label-author .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.donat__project-label .label-author .name {
  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  color: #070809;
  transition: all 0.3s;
}
.donat__section-caption h2 {
  font-size: 25px;
}
.donat .form-send {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.donat .form-send__images {
  width: 150px;
  height: 150px;
  margin-bottom: 20px;
}
.donat .form-send__images img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.donat .form-send__info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.donat .form-send__title {
  font-family: "Onest", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.donat .form-send__description {
  font-family: "Onest", sans-serif;
  font-size: 15px;
  line-height: 22px;
  font-style: normal;
  font-weight: 400;
  opacity: 0.7;
}
.donat__texarea-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 568px) {
  .donat__texarea-action {
    flex-direction: column-reverse;
    width: 100%;
    gap: 10px;
  }
  .donat__texarea-action .btn {
    width: 100%;
  }
}
.donat__texarea-action .award-item__anonim {
  align-items: center;
}
.donat__texarea-action .award-item__anonim .checkbox {
  height: auto;
}
.donat__texarea-action .award-item__anonim .checkbox-checkmark {
  top: 3px !important;
}
.donat__texarea-action .award-item__anonim .checkbox input:checked ~ .checkbox-checkmark {
  background: #1588CD;
  border: #1588CD;
}
.donat__texarea-form {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 20px;
  background-color: #fff;
  padding: 30px 35px;
}
@media screen and (max-width: 568px) {
  .donat__texarea-form {
    padding: 15px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 568px) {
  .donat__texarea-form .input-form {
    display: flex;
    flex-direction: column;
    gap: 10px !important;
  }
}
.donat__texarea-form .input {
  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  line-height: 24px;
  width: 100%;
  height: 45px;
  position: relative;
  background: #f8f8f9;
  padding: 8px 16px;
  border-radius: 10px;
  box-sizing: border-box;
}
.donat__texarea-form .input.is-error {
  border: 1px solid #DD3E37;
}
.donat__texarea-form .input:focus {
  border: 1px solid #E7E7E9;
}
.donat__texarea-form .textarea-form {
  position: relative;
}
.donat__texarea-form .textarea-form textarea.is-error {
  border: 1px solid #DD3E37;
}
.donat__texarea-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 568px) {
  .donat__texarea-form form {
    gap: 10px;
  }
}
.donat__texarea-form .btn {
  align-self: flex-start;
  margin-left: auto;
}
.donat__texarea-form .input-form {
  display: flex;
  gap: 20px;
}
.donat__texarea-form .input-form__col {
  width: 100%;
  position: relative;
}
.donat__texarea-form .input-form__col .error-description {
  position: relative;
  bottom: -5px;
}
.donat__texarea-form textarea {
  width: 100%;
  height: 200px;
  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  line-height: 24px;
  position: relative;
  background: #f8f8f9;
  padding: 16px 16px;
  border-radius: 10px;
  resize: vertical;
  box-sizing: border-box;
  resize: none;
}
.donat__texarea-form textarea:focus {
  border: 1px solid #E7E7E9;
}
.donat__award {
  margin-bottom: 50px;
}
.donat__award-caption {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 568px) {
  .donat__award-caption {
    flex-direction: column-reverse;
  }
}
.donat__award-caption h2 {
  font-size: 25px;
}
.donat__award-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.donat__award-title p {
  font-family: "Onest", sans-serif;
  font-size: 15px;
  line-height: 22px;
  font-style: normal;
  font-weight: 400;
  opacity: 0.7;
  max-width: 650px;
}
.donat__award-help {
  display: flex;
  align-items: center;
  gap: 5px;
}
.donat__award-help .icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.donat__award-help .icon svg {
  width: 16px;
  height: 16px;
}
.donat__award-help .title {
  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  color: #070809;
  opacity: 0.5;
}
.donat__faq-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.donat__faq-caption h2 {
  font-size: 25px;
}
.donat__list {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background-color: #fff;
  padding: 30px 35px;
}
@media screen and (max-width: 568px) {
  .donat__list {
    padding: 15px;
  }
}
@media screen and (max-width: 414px) {
  .donat__list {
    border-radius: 10px;
  }
}
.donat__list .donat__texarea-form {
  border-radius: 0px;
  background-color: #fff;
  padding: 0;
  margin-top: 30px;
}
.donat__list .donat__texarea-form .donat__list-description {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.donat__list-description {
  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  color: #070809;
  border-bottom: 1px solid rgba(7, 8, 9, 0.05);
  padding-bottom: 15px;
}
.donat__list-item {
  display: flex;
  border-bottom: 1px solid rgba(7, 8, 9, 0.05);
  padding-top: 5px;
  padding-bottom: 5px;
  min-height: 60px;
}
@media screen and (max-width: 568px) {
  .donat__list-item {
    min-height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.donat__list-item:last-child {
  border-bottom: none;
}
.donat__list .checkbox input:checked ~ .checkbox-checkmark {
  background: #D2392F;
}
.donat__list .checkbox-mat__caption input:checked ~ .checkbox-checkmark {
  background: #D2392F;
}
.donat__list .checkbox {
  align-self: auto;
  min-height: auto;
}
.donat__list .checkbox .checkbox-checkmark {
  top: 12px;
}
@media screen and (max-width: 568px) {
  .donat__list .checkbox .checkbox-checkmark {
    top: 0;
  }
}
.donat__list .checkbox input {
  top: 12px;
  z-index: 1;
}
@media screen and (max-width: 568px) {
  .donat__list .checkbox input {
    top: 0;
  }
}
.donat__list .checkbox-mat {
  width: 100%;
}
.donat__list .checkbox-mat .checkbox-txt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  top: 0;
}
@media screen and (max-width: 568px) {
  .donat__list .checkbox-mat .checkbox-txt {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.donat__list .checkbox-mat__caption {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}
@media screen and (max-width: 568px) {
  .donat__list .checkbox-mat__caption {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    align-items: flex-start;
  }
}
.donat__list .checkbox-mat__title {
  font-family: "Onest", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  color: #070809;
}
@media screen and (max-width: 568px) {
  .donat__list .checkbox-mat__title {
    font-size: 14px;
  }
}
.donat__list .checkbox-mat__number {
  font-family: "Onest", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  color: #070809;
  opacity: 0.5;
  white-space: pre;
}
@media screen and (max-width: 568px) {
  .donat__list .checkbox-mat__number {
    font-size: 14px;
  }
}
.donat .counter-box {
  display: flex;
  align-items: center;
  height: 40px;
  min-width: 120px;
  width: 120px;
  border-radius: 8px;
  border: 1px solid #E7E7E9;
  padding: 5px;
  gap: 5px;
}
.donat .counter-box input {
  position: relative;
  opacity: 1;
  top: 0;
}
.donat .counter-box__decrease, .donat .counter-box__increase {
  width: 30px;
  min-width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border-radius: 5px;
  background: #F3F3F4;
  cursor: pointer;
  transition: all 0.3s;
}
.donat .counter-box__decrease:hover, .donat .counter-box__increase:hover {
  background: #E7E7E9;
}
.donat .counter-box__decrease .icon, .donat .counter-box__increase .icon {
  width: 16px;
  height: 16px;
}
.donat .counter-box__decrease .icon img, .donat .counter-box__increase .icon img {
  width: 100%;
  height: 100%;
}
.donat .counter-box__input {
  width: 100%;
  text-align: center;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: 600;
  font-size: 15px;
}

.award {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.award.award-fiz .award-item.active {
  border: 1px solid #F9C20F;
}
.award.award-fiz .award-item__ellipse::after {
  background: #F9C20F;
}
.award.award-mat .award-item.active {
  border: 1px solid #D2392F;
}
.award.award-mat .award-item__ellipse::after {
  background: #D2392F;
}

.award-buy__step {
  display: flex;
  flex-direction: column;
}
.award-buy__step .btn {
  min-width: 250px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 8px 16px;
  height: 50px;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  border-radius: 10px;
  margin: 0 auto;
}
.award-buy__step-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: 30px;
  position: relative;
}
.award-buy__section-caption h2 {
  font-size: 20px;
  font-weight: 500;
  color: #070809;
  font-family: "Onest", sans-serif;
}
.award-buy__card {
  display: flex;
  gap: 30px;
  padding: 30px 35px;
  background-color: #fff;
  border-radius: 20px;
}
@media screen and (max-width: 568px) {
  .award-buy__card {
    gap: 20px;
    padding: 15px;
    flex-direction: column-reverse;
    border-radius: 10px;
  }
}
.award-buy__card-content {
  display: flex;
  flex-direction: column;
}
.award-buy__card-title {
  font-family: "Onest", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  color: #070809;
}
@media screen and (max-width: 414px) {
  .award-buy__card-title {
    font-size: 16px;
    line-height: 24px;
  }
}
.award-buy__card-delivery {
  font-size: 15px;
  line-height: 20px;
  font-weight: normal;
  font-size: "Onest", sans-serif;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.award-buy__card-delivery .icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -1px;
}
.award-buy__card-delivery .icon svg {
  width: 16px;
  height: 16px;
}
.award-buy__card-delivery .item {
  opacity: 0.5;
}
.award-buy__card-price {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 10px;
}
.award-buy__card-price-label {
  font-family: "Onest", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  color: #070809;
}
.award-buy__card-lot {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: "Onest", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  color: #070809;
}
.award-buy__card-lot .total {
  opacity: 0.3;
  font-weight: 500;
}
.award-buy__card-image {
  width: 210px;
  min-width: 210px;
  height: 120px;
  overflow: hidden;
  margin-left: auto;
  border-radius: 10px;
}
@media screen and (max-width: 650px) {
  .award-buy__card-image {
    width: 180px;
    min-width: 180px;
    height: 100px;
  }
}
@media screen and (max-width: 568px) {
  .award-buy__card-image {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 200px;
    display: inline-flex;
  }
}
@media screen and (max-width: 350px) {
  .award-buy__card-image {
    max-height: 150px;
  }
}
.award-buy__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 568px) {
  .award-buy__card-image img {
    height: auto;
  }
}
.award-buy .award-buy__anonim {
  margin-top: 10px;
}
.award-buy__vopros {
  width: 100%;
}
.award-buy__vopros-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  position: relative;
}
.award-buy__vopros-title {
  font-family: "Onest", sans-serif;
  font-size: 15px;
  line-height: 22px;
  font-style: normal;
  font-weight: normal;
}
.award-buy__vopros-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.award-buy__item-box {
  display: flex;
  padding: 30px 35px;
  background-color: #fff;
  border-radius: 20px;
  position: relative;
}
@media screen and (max-width: 568px) {
  .award-buy__item-box {
    padding: 15px;
    border-radius: 10px;
  }
}
.award-buy .input {
  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  line-height: 24px;
  width: 100%;
  height: 45px;
  position: relative;
  background: #f8f8f9;
  padding: 8px 16px;
  border-radius: 10px;
  box-sizing: border-box;
}
.award-buy .input.is-error {
  border: 1px solid #DD3E37;
}
.award-buy .input:focus {
  border: 1px solid #E7E7E9;
}
.award-buy__delivery {
  display: flex;
  flex-direction: column;
}
.award-buy__delivery-toolbar {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 991px) {
  .award-buy__delivery-toolbar {
    overflow-y: hidden;
    overflow-x: scroll;
    width: 100%;
    flex-wrap: nowrap;
    height: auto;
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
  }
  .award-buy__delivery-toolbar .radio-block {
    min-width: max-content;
  }
}
.award-buy__delivery-content {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(7, 8, 9, 0.05);
}
.award-buy__delivery .delivery-help__description p {
  font-family: "Onest", sans-serif;
  font-size: 15px;
  line-height: 22px;
  font-style: normal;
  font-weight: 400;
  opacity: 0.7;
  max-width: 760px;
}
.award-buy__delivery .delivery-help__form {
  display: flex;
  flex-direction: column;
  position: relative;
}
.award-buy__delivery .delivery-help__form-title {
  font-family: "Onest", sans-serif;
  font-size: 15px;
  line-height: 22px;
  font-style: normal;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 10px;
}
.award-buy__delivery .delivery-help__form .input {
  margin-bottom: 10px;
}
@media screen and (max-width: 568px) {
  .award-buy__delivery .delivery-help__form .input {
    margin-bottom: 0;
  }
  .award-buy__delivery .delivery-help__form .input:first-child {
    margin-top: 10px;
  }
}
.award-buy__delivery .delivery-help__form-row {
  display: flex;
  flex-direction: row;
  gap: 10px;
  position: relative;
}
@media screen and (max-width: 568px) {
  .award-buy__delivery .delivery-help__form-row {
    flex-direction: column;
  }
}
.award-buy__delivery .delivery-help__form-col {
  width: 100%;
  position: relative;
}
.award-buy__delivery .delivery-help__form-col .error-description {
  position: relative !important;
  bottom: 5px;
}
.award-buy__delivery .delivery-help__commetn textarea {
  width: 100%;
  height: 70px;
  margin-top: 20px;
  resize: none;
}
.award-buy__payment {
  display: flex;
  flex-direction: column;
}
.award-buy__payment-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 991px) {
  .award-buy__payment-toolbar {
    overflow-y: hidden;
    overflow-x: scroll;
    width: 100%;
    flex-wrap: nowrap;
    height: auto;
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
  }
  .award-buy__payment-toolbar .radio-block {
    min-width: max-content;
  }
}
.award-buy__payment .radio-block__subtitle {
  opacity: 1;
  display: flex;
  gap: 5px;
}
.award-buy__payment .paymet-item {
  display: block;
  width: auto;
  height: 32px;
}
.award-buy__payment .paymet-item img {
  width: auto;
  height: 100%;
  object-fit: contain;
}
.award-buy__payment .paymet-wallet {
  background-color: #E7E7E9;
  padding: 4px 6px;
  border-radius: 20px;
  font-size: 12px;
  font-family: "Onest", sans-serif;
  font-weight: 500;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(7, 8, 9, 0.7);
  text-align: center;
}
.award-buy__payment-content {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(7, 8, 9, 0.05);
  display: flex;
  gap: 15px;
}
.award-buy__payment-content .icon {
  width: 42px;
  min-width: 42px;
  height: 42px;
}
.award-buy__payment-content .icon img {
  width: 100%;
  height: 100%;
  opacity: 0.7;
}
.award-buy__payment-content .description p {
  opacity: 0.7;
  font-family: "Onest", sans-serif;
  font-size: 15px;
  line-height: 22px;
  font-style: normal;
  font-weight: 400;
  max-width: 760px;
}
.award-buy__payment-content .description p:first-child {
  opacity: 1;
  font-weight: 500;
}
.award-buy.award-buy-fin .radio-block input:checked ~ .radio-block__bg {
  border: 1px solid #0293E9;
}
.award-buy.award-buy-fin .radio-block input:checked ~ .radio-block__content .radio-block__ellipse {
  background: #0293E9;
}
.award-buy.award-buy-fiz .radio-block input:checked ~ .radio-block__bg {
  border: 1px solid #F9C20F;
}
.award-buy.award-buy-fiz .radio-block input:checked ~ .radio-block__content .radio-block__ellipse {
  background: #F9C20F;
}
.award-buy.award-buy-mat .radio-block input:checked ~ .radio-block__bg {
  border: 1px solid #D2392F;
}
.award-buy.award-buy-mat .radio-block input:checked ~ .radio-block__content .radio-block__ellipse {
  background: #D2392F;
}

.my-project .pageCaption {
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .my-project__item .progress--circle {
    display: none;
  }
}
.my-project__progress {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .my-project__progress {
    display: none;
  }
}
.my-project__images {
  width: 150px;
  min-width: 150px;
  height: 90px;
  overflow: hidden;
  border-radius: 10px;
  display: inline-flex;
}
.my-project__images:hover img {
  transform: scale(1.1);
}
@media screen and (max-width: 568px) {
  .my-project__images {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    max-height: 200px;
    height: auto;
  }
}
.my-project__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
@media screen and (max-width: 568px) {
  .my-project__images img {
    height: auto;
  }
}
.my-project__body {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 568px) {
  .my-project__body {
    flex-direction: column;
  }
}
.my-project__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.my-project .progress--circle {
  margin-left: auto;
}
.my-project__title {
  font-size: 16px;
  font-weight: 500;
  font-family: "Onest", sans-serif;
  font-style: normal;
  color: #070809;
  overflow: hidden;
  max-width: 500px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  transition: all 0.3s;
}
.my-project__title:hover {
  opacity: 0.7;
}
.my-project__status {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 624px) {
  .my-project__status {
    gap: 10px;
    flex-wrap: wrap;
  }
}
.my-project__nav {
  width: 24px;
  height: 24px;
}
.my-project__nav img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.my-project__info {
  font-size: 15px;
  font-weight: normal;
  font-family: "Onest", sans-serif;
  font-style: normal;
  opacity: 0.5;
}
.my-project__label {
  font-size: 15px;
  font-weight: normal;
  font-family: "Onest", sans-serif;
  font-style: normal;
  text-decoration: none;
  display: inline-flex;
}
.my-project__label.draft {
  background-color: #F3F3F4;
  padding: 4px 10px;
  border-radius: 10px;
  color: rgba(7, 8, 9, 0.5);
}
.my-project__label.moderation {
  background-color: rgba(228, 145, 62, 0.1);
  padding: 4px 10px;
  border-radius: 10px;
  color: #E4903E;
}
.my-project__label.sucssesfull {
  background-color: rgba(62, 228, 69, 0.1);
  padding: 4px 10px;
  border-radius: 10px;
  color: #3EC843;
}
.my-project__label.error {
  background-color: rgba(228, 62, 62, 0.1);
  padding: 4px 10px;
  border-radius: 10px;
  color: #DD3E37;
}
.my-project__comment {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s;
}
.my-project__comment:hover {
  opacity: 1;
}
.my-project__comment .icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.my-project__comment .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.my-project__comment .title {
  font-size: 15px;
  font-weight: normal;
  font-family: "Onest", sans-serif;
  font-style: normal;
}
.my-project__stats {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(7, 8, 9, 0.05);
}
@media screen and (max-width: 758px) {
  .my-project__stats {
    gap: 10px;
    flex-wrap: wrap;
  }
}
.my-project__stats-item {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #070809;
}
.my-project__stats-item:hover .title {
  opacity: 1;
}
@media screen and (max-width: 568px) {
  .my-project__stats-item {
    width: calc(33.3% - 7px);
  }
}
@media screen and (max-width: 414px) {
  .my-project__stats-item {
    width: calc(50% - 5px);
  }
}
.my-project__stats-item.disabled {
  opacity: 0.5;
}
.my-project__stats-item .title {
  font-size: 15px;
  font-weight: normal;
  font-family: "Onest", sans-serif;
  font-style: normal;
  opacity: 0.5;
  transition: all 0.3s;
}
.my-project__stats-item .info {
  font-size: 18px;
  font-weight: 500;
  font-family: "Onest", sans-serif;
  font-style: normal;
}
@media screen and (max-width: 856px) {
  .my-project__stats-item .info {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 568px) {
  .my-project__stats-item .info {
    font-size: 15px;
    flex-direction: row;
    gap: 5px;
  }
}
.my-project__stats-item .info-item {
  color: #070809;
}
.my-project__stats-item .info-item-add {
  color: #3EC843;
  font-weight: normal;
}
@media screen and (max-width: 856px) {
  .my-project__stats-item .info-item-add {
    font-size: 15px;
  }
}
.my-project__action {
  margin-top: 20px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 0px 0px 15px 15px;
  border-top: 1px solid rgba(7, 8, 9, 0.05);
}
@media screen and (max-width: 1200px) {
  .my-project__action {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.my-project__action-btn-group {
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
  gap: 10px;
}
@media screen and (max-width: 1200px) {
  .my-project__action-btn-group {
    margin-left: 0;
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 568px) {
  .my-project__action-btn-group {
    flex-direction: column-reverse;
    width: 100%;
  }
}
.my-project__action-date {
  font-size: 15px;
  color: #070809;
  font-family: "Onest", sans-serif;
  opacity: 0.7;
  font-weight: normal;
}
@media screen and (max-width: 568px) {
  .my-project__action-date {
    text-align: center;
  }
}
.my-project__action-btn {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 568px) {
  .my-project__action-btn {
    justify-content: center;
  }
}
.my-project__action-btn .btn {
  position: relative;
  min-width: auto;
}
@media screen and (max-width: 568px) {
  .my-project__action-btn .btn {
    width: 100%;
  }
}
.my-project__action-btn .btn.active {
  background-color: rgba(62, 228, 69, 0.2);
}
.my-project__action-btn .btn.active:hover {
  background-color: rgba(62, 228, 69, 0.5);
}
.my-project__action-btn .btn.pause {
  background-color: rgba(228, 144, 62, 0.2);
}
.my-project__action-btn .btn.pause:hover {
  background-color: rgba(228, 144, 62, 0.5);
}

.my-project-offer__head {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 60%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .my-project-offer__head {
    max-width: 100%;
  }
}
.my-project-offer__user {
  display: flex;
  align-items: center;
  gap: 10px;
}
.my-project-offer__user .title {
  font-size: 16px;
  font-weight: 500;
  color: #070809;
  font-family: "Onest", sans-serif;
  font-style: normal;
}
.my-project-offer__user .avatar {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  overflow: hidden;
}
.my-project-offer__user .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.my-project-offer__title {
  font-size: 15px;
  font-weight: normal;
  color: #070809;
  font-family: "Onest", sans-serif;
  font-style: normal;
  opacity: 0.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.my-project-offer__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}
@media screen and (max-width: 800px) {
  .my-project-offer__item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.my-project-offer__action {
  max-width: 40%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .my-project-offer__action {
    flex-direction: row-reverse;
    max-width: 100%;
  }
}
@media screen and (max-width: 414px) {
  .my-project-offer__action {
    flex-direction: column-reverse;
  }
  .my-project-offer__action .btn {
    width: 100%;
  }
}
.my-project-offer__status {
  font-size: 15px;
  font-weight: normal;
  font-family: "Onest", sans-serif;
  font-style: normal;
  text-decoration: none;
  display: inline-flex;
  width: auto;
}
.my-project-offer__status .sucssesfull {
  background-color: rgba(62, 228, 69, 0.1);
  padding: 4px 10px;
  border-radius: 10px;
  color: #3EC843;
}

.popup__project-offer .popup-request__action .btn-delete {
  width: 100%;
}

.my-purchased .pageCaption {
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .my-purchased .progress--circle {
    display: none;
  }
}
.my-purchased__container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.my-purchased__list {
  width: 100%;
  flex-wrap: wrap;
  display: flex;
  gap: 20px;
}
.my-purchased__item {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #F3F3F4;
  padding: 30px 30px;
  width: auto;
  gap: 20px;
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (max-width: 568px) {
  .my-purchased__item {
    padding: 20px 15px;
  }
}
.my-purchased__item .labels {
  font-size: 15px;
  font-weight: normal;
  font-family: "Onest", sans-serif;
  font-style: normal;
  text-decoration: none;
  display: inline-flex;
  width: 150px;
}
.my-purchased__item .labels .moderation {
  background-color: rgba(228, 145, 62, 0.1);
  padding: 4px 10px;
  border-radius: 10px;
  color: #E4903E;
}
.my-purchased__item .labels .error {
  background-color: rgba(228, 62, 62, 0.1);
  padding: 4px 10px;
  border-radius: 10px;
  color: #DD3E37;
}
.my-purchased__item-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .my-purchased__item-content {
    align-items: flex-start;
  }
}
@media screen and (max-width: 568px) {
  .my-purchased__item-content {
    flex-direction: column;
  }
}
.my-purchased__item-images {
  width: 150px;
  height: 90px;
  overflow: hidden;
  border-radius: 10px;
}
.my-purchased__item-images:hover img {
  transform: scale(1.1);
}
@media screen and (max-width: 568px) {
  .my-purchased__item-images {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    max-height: 200px;
    height: auto;
  }
}
.my-purchased__item-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
@media screen and (max-width: 568px) {
  .my-purchased__item-images img {
    height: auto;
  }
}
.my-purchased__item-caption {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.my-purchased__item-title {
  font-size: 16px;
  color: #070809;
  font-family: "Onest", sans-serif;
  font-weight: 500;
  font-style: normal;
  overflow: hidden;
  max-width: 500px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  transition: all 0.3s;
}
.my-purchased__item-title:hover {
  opacity: 0.7;
}
.my-purchased__item-help {
  display: flex;
}
@media screen and (max-width: 768px) {
  .my-purchased__item-help {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.my-purchased__item-help .help-card-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 15px;
  color: #070809;
  font-family: "Onest", sans-serif;
  font-style: normal;
  position: relative;
  padding-right: 10px;
  margin-right: 5px;
  min-width: 33.3%;
  cursor: pointer;
}
.my-purchased__item-help .help-card-item:hover .title {
  opacity: 1;
}
.my-purchased__item-help .help-card-item .title {
  opacity: 0.5;
  transition: all 0.3s;
}
.my-purchased__item-help .help-card-item .number {
  font-weight: normal;
}
.my-purchased__item-help .help-card-item .description {
  font-weight: normal;
  height: 40px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.my-purchased__item-other {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.my-purchased__item-date {
  font-size: 15px;
  font-weight: normal;
  opacity: 0.5;
  color: #070809;
  font-family: "Onest", sans-serif;
}
.my-purchased__item-support {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: normal;
  opacity: 0.5;
  color: #070809;
  font-family: "Onest", sans-serif;
  gap: 5px;
}
.my-purchased__item-support .icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.my-purchased__item-support .icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.popup__purchased .labels {
  font-size: 15px;
  font-weight: normal;
  font-family: "Onest", sans-serif;
  font-style: normal;
  text-decoration: none;
  display: inline-flex;
  width: 150px;
}
.popup__purchased .labels .moderation {
  background-color: rgba(228, 145, 62, 0.1);
  padding: 4px 10px;
  border-radius: 10px;
  color: #E4903E;
}
.popup__purchased .labels .error {
  background-color: rgba(228, 62, 62, 0.1);
  padding: 4px 10px;
  border-radius: 10px;
  color: #DD3E37;
}
.popup__purchased-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(7, 8, 9, 0.05);
}
.popup__purchased-list:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.popup__purchased-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.popup__purchased-item.comment-moder {
  padding: 15px 20px;
  background-color: #F8F8F9;
  border-radius: 10px;
}
.popup__purchased-author {
  display: flex;
  align-items: center;
  gap: 5px;
}
.popup__purchased-author .avatar {
  width: 24px;
  height: 24px;
  overflow: hidden;
}
.popup__purchased-author .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.popup__purchased-author .title {
  font-size: 15px;
  font-weight: normal;
  color: #070809;
  font-family: "Onest", sans-serif;
}
.popup__purchased-title {
  font-size: 15px;
  font-weight: normal;
  opacity: 0.5;
  color: #070809;
  font-family: "Onest", sans-serif;
}
.popup__purchased-sum {
  font-size: 15px;
  font-weight: normal;
  color: #070809;
  font-family: "Onest", sans-serif;
}
.popup__purchased-info {
  font-size: 15px;
  font-weight: normal;
  color: #070809;
  font-family: "Onest", sans-serif;
}
.popup__purchased-info a {
  color: #0293E9 !important;
}
.popup__purchased-tabel {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.popup__purchased-tabel-card {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}
.popup__purchased-tabel-card::before {
  content: "•";
  opacity: 0.5;
}
.popup__purchased-tabel-item {
  font-size: 15px;
  font-weight: normal;
  color: #070809;
  font-family: "Onest", sans-serif;
}
.popup__purchased-tabel-number {
  font-size: 15px;
  font-weight: normal;
  color: #070809;
  font-family: "Onest", sans-serif;
}

.my-buy .pageCaption {
  align-items: flex-start;
}
.my-buy__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.my-buy__box {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
@media screen and (max-width: 568px) {
  .my-buy__box {
    flex-direction: column-reverse;
    gap: 20px;
  }
}
.my-buy__item {
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
}
.my-buy__content {
  width: 100%;
}
.my-buy__title {
  font-size: 16px;
  color: #070809;
  font-family: "Onest", sans-serif;
  font-weight: 500;
  font-style: normal;
  transition: all 0.3s;
}
.my-buy__title:hover {
  opacity: 0.7;
}
.my-buy__price {
  font-size: 18px;
  color: #070809;
  font-family: "Onest", sans-serif;
  font-weight: 600;
  font-style: normal;
  margin-top: 5px;
  margin-bottom: 10px;
}
.my-buy__price .number {
  opacity: 0.5;
}
.my-buy__info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .my-buy__info {
    flex-direction: column;
  }
}
.my-buy__info-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 15px;
  color: #070809;
  font-family: "Onest", sans-serif;
  font-style: normal;
  position: relative;
  overflow: hidden;
  width: calc(33.3% - 14px);
}
@media screen and (max-width: 1200px) {
  .my-buy__info-item {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 1024px) {
  .my-buy__info-item {
    width: calc(33.3% - 14px);
  }
}
@media screen and (max-width: 868px) {
  .my-buy__info-item {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 768px) {
  .my-buy__info-item {
    width: 100%;
  }
}
.my-buy__info-item a {
  opacity: 0.7;
  position: relative;
  padding-right: 8px;
  margin-right: 5px;
  color: #070809;
  transition: all 0.3s;
}
.my-buy__info-item a:hover {
  opacity: 1;
}
.my-buy__info-item .title {
  opacity: 0.7;
  position: relative;
  color: #070809;
}
.my-buy__info-item .item {
  opacity: 0.7;
  position: relative;
  color: #070809;
}
.my-buy__info-item .item:last-child {
  opacity: 1;
}
.my-buy__info-item .item {
  font-weight: normal;
}
.my-buy__project {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  padding-top: 10px;
}
.my-buy__project:hover .title {
  opacity: 0.7;
}
.my-buy__project .title {
  font-size: 15px;
  color: #070809;
  font-family: "Onest", sans-serif;
  font-weight: normal;
  font-style: normal;
  transition: all 0.3s;
}
.my-buy__project .icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.my-buy__project .icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.my-buy__other {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #F3F3F4;
  padding-top: 20px;
}
.my-buy__other .btn-delete .icon {
  margin-right: 5px;
}
.my-buy__other-date {
  font-size: 15px;
  font-weight: normal;
  opacity: 0.5;
  color: #070809;
  font-family: "Onest", sans-serif;
}
.my-buy__other-support {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: normal;
  opacity: 0.5;
  color: #070809;
  font-family: "Onest", sans-serif;
  gap: 5px;
}
.my-buy__other-support .icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.my-buy__other-support .icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.my-buy__images {
  width: 150px;
  min-width: 150px;
  height: 90px;
  overflow: hidden;
  border-radius: 10px;
  display: inline-flex;
}
.my-buy__images:hover img {
  transform: scale(1.1);
}
@media screen and (max-width: 568px) {
  .my-buy__images {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    max-height: 200px;
    height: auto;
  }
}
.my-buy__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
@media screen and (max-width: 568px) {
  .my-buy__images img {
    height: auto;
  }
}
.my-buy .table-buy {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.my-buy .table-buy__item {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 15px;
  border: 1px solid #F3F3F4;
  padding: 20px 30px;
  width: auto;
  gap: 5px;
  width: 100%;
  font-family: "Onest", sans-serif;
  cursor: pointer;
}
@media screen and (max-width: 970px) {
  .my-buy .table-buy__item {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 568px) {
  .my-buy .table-buy__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 20px;
  }
}
.my-buy .table-buy__item:hover .table-buy__title {
  opacity: 0.7;
}
.my-buy .table-buy__user {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 160px;
  max-width: 160px;
}
.my-buy .table-buy__user .avatar {
  width: 24px;
  min-width: 24px;
  height: 24px;
  border-radius: 100%;
  overflow: hidden;
  display: block;
}
.my-buy .table-buy__user .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.my-buy .table-buy__user .name {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 16px;
  color: #070809;
  font-family: "Onest", sans-serif;
  font-weight: normal;
  font-style: normal;
}
.my-buy .table-buy__mail {
  min-width: 175px;
  max-width: 175px;
  margin-right: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 16px;
  color: #070809;
  font-family: "Onest", sans-serif;
  font-weight: normal;
  font-style: normal;
}
.my-buy .table-buy__title {
  font-size: 16px;
  color: #070809;
  font-family: "Onest", sans-serif;
  font-weight: 500;
  font-style: normal;
  transition: all 0.3s;
  min-width: 360px;
  max-width: 360px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 1280px) {
  .my-buy .table-buy__title {
    min-width: 310px;
    max-width: 310px;
  }
}
@media screen and (max-width: 1220px) {
  .my-buy .table-buy__title {
    min-width: 280px;
    max-width: 280px;
  }
}
@media screen and (max-width: 1160px) {
  .my-buy .table-buy__title {
    min-width: 230px;
    max-width: 230px;
  }
}
@media screen and (max-width: 1120px) {
  .my-buy .table-buy__title {
    min-width: 200px;
    max-width: 200px;
  }
}
@media screen and (max-width: 1024px) {
  .my-buy .table-buy__title {
    min-width: 310px;
    max-width: 310px;
  }
}
@media screen and (max-width: 970px) {
  .my-buy .table-buy__title {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 568px) {
  .my-buy .table-buy__title {
    margin-bottom: 0;
  }
}
.my-buy .table-buy__delivery {
  min-width: 210px;
}
.my-buy .table-buy__delivery .date {
  opacity: 0.5;
}
.my-buy .table-buy__price {
  margin-left: auto;
  font-size: 16px;
  color: #070809;
  font-family: "Onest", sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media screen and (max-width: 680px) {
  .my-buy .table-buy__price {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    margin-top: 5px;
  }
}
@media screen and (max-width: 568px) {
  .my-buy .table-buy__price {
    margin-bottom: 0;
  }
}
.my-buy .table-buy__price .count {
  opacity: 0.5;
}
.my-buy__popup .popup__inner {
  max-width: 750px;
}
.my-buy__popup .popup__my-buy-content {
  padding: 50px;
}
@media screen and (max-width: 568px) {
  .my-buy__popup .popup__my-buy-content {
    padding: 30px;
  }
}
.my-buy__popup .popup__my-buy-head {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 15px;
}
.my-buy__popup .popup__my-buy-caption {
  font-size: 25px;
  line-height: 32px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: 500;
  margin-bottom: 15px;
}
.my-buy__popup .popup__my-buy-project {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #070809;
  text-decoration: none;
}
.my-buy__popup .popup__my-buy-project .icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
}
.my-buy__popup .popup__my-buy-project .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.my-buy__popup .popup__my-buy-status {
  margin-bottom: 15px;
  position: relative;
}
.my-buy__popup .popup__my-buy-status .title {
  font-size: 15px;
  line-height: 24px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: normal;
  opacity: 0.5;
}
.my-buy__popup .popup__my-buy-status .select {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .my-buy__popup .popup__my-buy-status .select {
    width: 100%;
  }
}
.my-buy__popup .popup__my-buy-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.my-buy__popup .popup__my-buy-card {
  display: flex;
  gap: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #F3F3F4;
}
@media screen and (max-width: 568px) {
  .my-buy__popup .popup__my-buy-card {
    flex-wrap: wrap;
  }
}
.my-buy__popup .popup__my-buy-card-item:last-child {
  margin-left: 50px;
}
@media screen and (max-width: 568px) {
  .my-buy__popup .popup__my-buy-card-item:last-child {
    margin-left: 0;
  }
}
.my-buy__popup .popup__my-buy-card-item .title {
  font-size: 15px;
  line-height: 24px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: normal;
  opacity: 0.5;
}
.my-buy__popup .popup__my-buy-card-item .info {
  font-size: 16px;
  line-height: 24px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: 500;
}
.my-buy__popup .popup__my-buy-item:hover .info .user {
  color: #0293E9;
}
.my-buy__popup .popup__my-buy-item:hover .info .project {
  color: #0293E9;
}
.my-buy__popup .popup__my-buy-item .title {
  font-size: 15px;
  line-height: 24px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: normal;
  opacity: 0.5;
}
.my-buy__popup .popup__my-buy-item .info {
  font-size: 16px;
  line-height: 24px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: normal;
}
.my-buy__popup .popup__my-buy-item .info .date {
  opacity: 0.5;
}
.my-buy__popup .popup__my-buy-item .user {
  font-family: "Onest", sans-serif;
  color: #070809;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s;
}
.my-buy__popup .popup__my-buy-item .user .avatar {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 100%;
  overflow: hidden;
}
.my-buy__popup .popup__my-buy-item .user .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.my-buy__popup .popup__my-buy-item .project {
  font-family: "Onest", sans-serif;
  color: #070809;
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 5px;
  transition: all 0.3s;
}
.my-buy__popup .popup__my-buy-item .project .icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
}
.my-buy__popup .popup__my-buy-item .project .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.my-buy__popup .popup__my-buy-item .textarea-form {
  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  line-height: 24px;
  width: 100%;
  height: 55px;
  position: relative;
  top: 0px;
  background-color: transparent;
  resize: none;
  position: relative;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 8px 16px;
  height: 80px;
  background: #f8f8f9;
}
.my-buy__popup .popup__my-buy-item .textarea-form:focus {
  outline: none;
  border: 1px solid #E7E7E9;
}
.my-buy__popup .popup__my-buy-date {
  display: flex;
  gap: 30px;
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid #F3F3F4;
}
@media screen and (max-width: 768px) {
  .my-buy__popup .popup__my-buy-date {
    gap: 10px;
  }
}
@media screen and (max-width: 568px) {
  .my-buy__popup .popup__my-buy-date {
    flex-direction: column;
    gap: 15px;
  }
}
.my-buy__popup .popup__my-buy-date:focus {
  outline: none;
  border: 1px solid #E7E7E9;
}
.my-buy__popup .popup__my-buy-date .title {
  font-size: 15px;
  line-height: 24px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: normal;
  opacity: 0.5;
}
.my-buy__popup .popup__my-buy-date-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}
.my-buy__popup .popup__my-buy-date-item .required {
  color: #DD3E37;
}
.my-buy__popup .popup__my-buy-date .card-form__input {
  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  line-height: 24px;
  width: 100%;
  height: 45px;
  position: relative;
  background: #f8f8f9;
  padding: 8px 16px;
  border-radius: 10px;
}
.my-buy__popup .popup__my-buy-date .card-form__input:focus {
  outline: none;
  border: 1px solid #E7E7E9;
}
.my-buy__popup .popup__my-buy-date .card-form__input.is-error {
  border: 1px solid #DD3E37;
}
.my-buy__popup .popup__my-buy-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #F3F3F4;
}
@media screen and (max-width: 568px) {
  .my-buy__popup .popup__my-buy-action {
    flex-direction: column;
  }
  .my-buy__popup .popup__my-buy-action .btn {
    width: 100%;
  }
}
.my-buy__popup .popup__my-buy-action .btn-delete {
  margin-left: auto;
}
@media screen and (max-width: 568px) {
  .my-buy__popup .popup__my-buy-action .btn-delete {
    margin-left: auto;
    margin-right: auto;
  }
}
.my-buy .labels {
  font-size: 15px;
  font-weight: normal;
  font-family: "Onest", sans-serif;
  font-style: normal;
  text-decoration: none;
  display: inline-flex;
}
.my-buy .labels.draft {
  background-color: #F3F3F4;
  padding: 4px 10px;
  border-radius: 10px;
  color: rgba(7, 8, 9, 0.5);
}
.my-buy .labels.moderation {
  background-color: rgba(228, 145, 62, 0.1);
  padding: 4px 10px;
  border-radius: 10px;
  color: #E4903E;
}
.my-buy .labels.sucssesfull {
  background-color: rgba(62, 228, 69, 0.1);
  padding: 4px 10px;
  border-radius: 10px;
  color: #3EC843;
}
.my-buy .labels.error {
  background-color: rgba(228, 62, 62, 0.1);
  padding: 4px 10px;
  border-radius: 10px;
  color: #DD3E37;
}

.my-notification .pageCaption {
  align-items: flex-start;
}
.my-notification__item {
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
  width: 100%;
  gap: 20px;
  position: relative;
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  .my-notification__item {
    flex-direction: column;
  }
}
.my-notification__item.active {
  opacity: 1;
}
.my-notification__item.active .my-notification__title {
  font-weight: 500 !important;
}
.my-notification__item.active::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: #D2392F;
  left: -15px;
  top: -15px;
}
@media screen and (max-width: 568px) {
  .my-notification__item.active::after {
    width: 6px;
    height: 6px;
    left: -10px;
    top: 7px;
  }
}
.my-notification__delete {
  position: absolute;
  right: 0;
  top: 0px;
  background-color: transparent;
  width: 32px;
  min-width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.my-notification__delete::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  bottom: 0;
  width: 32px;
  height: 32px;
  background: #F3F3F4;
  opacity: 0;
  z-index: -1;
  border-radius: 100%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
.my-notification__delete .icon {
  width: 16px;
  height: 16px;
  position: relative;
  z-index: 2;
}
.my-notification__delete .icon img {
  width: 100%;
  height: 100%;
}
.my-notification__head {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 88%;
  padding-right: 50px;
}
@media screen and (max-width: 768px) {
  .my-notification__head {
    width: 100%;
  }
}
.my-notification__info {
  width: 12%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5px;
}
@media screen and (max-width: 920px) {
  .my-notification__info {
    width: 15%;
    min-width: 15%;
  }
}
@media screen and (max-width: 768px) {
  .my-notification__info {
    width: 100%;
    min-width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
  }
}
.my-notification__title {
  font-size: 16px;
  font-weight: normal;
  color: #070809;
  font-style: normal;
  font-family: "Onest", sans-serif;
}
.my-notification__description {
  font-size: 15px;
  font-weight: normal;
  color: #070809;
  font-style: normal;
  font-family: "Onest", sans-serif;
  opacity: 0.7;
}
.my-notification__label {
  font-size: 15px;
  font-weight: normal;
  color: #070809;
  font-style: normal;
  font-family: "Onest", sans-serif;
  opacity: 0.7;
}
.my-notification__date {
  font-size: 15px;
  font-weight: normal;
  color: #070809;
  font-style: normal;
  font-family: "Onest", sans-serif;
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  .my-notification__date {
    opacity: 0.7;
  }
}

.my-wallet .pageCaption {
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .my-wallet .main-page-wallet {
    order: 3;
  }
}
.my-wallet__date {
  font-size: 15px;
  font-weight: normal;
  opacity: 0.5;
  font-family: "Onest", sans-serif;
  color: #070809;
}
.my-wallet__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 568px) {
  .my-wallet__list {
    gap: 20px;
  }
}
.my-wallet__content {
  display: flex;
  align-items: center;
}
.my-wallet__item {
  display: flex;
  align-items: center;
}
.my-wallet__icon {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #F8F8F9;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 568px) {
  .my-wallet__icon {
    width: 36px;
    height: 36px;
  }
}
@media screen and (max-width: 500px) {
  .my-wallet__icon {
    width: 32px;
    min-width: 32px;
    height: 32px;
  }
}
.my-wallet__icon.success {
  background-color: #3EC843;
}
.my-wallet__icon.error {
  background-color: #D2392F;
}
.my-wallet__icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
@media screen and (max-width: 568px) {
  .my-wallet__icon img {
    width: 16px;
    height: 16px;
  }
}
.my-wallet__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-right: 20px;
  margin-left: 20px;
}
@media screen and (max-width: 568px) {
  .my-wallet__info {
    margin-right: 10px;
    margin-left: 10px;
  }
}
@media screen and (max-width: 540px) {
  .my-wallet__info {
    max-width: 100%;
    width: 100%;
  }
}
.my-wallet__info .title {
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  color: #070809;
  font-family: "Onest", sans-serif;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  max-width: 320px;
  width: 320px;
}
@media screen and (max-width: 1220px) {
  .my-wallet__info .title {
    max-width: 280px;
    width: 280px;
  }
}
@media screen and (max-width: 1100px) {
  .my-wallet__info .title {
    max-width: 250px;
    width: 250px;
  }
}
@media screen and (max-width: 1050px) {
  .my-wallet__info .title {
    max-width: 240px;
    width: 240px;
  }
}
@media screen and (max-width: 1024px) {
  .my-wallet__info .title {
    max-width: 380px;
    width: 380px;
  }
}
@media screen and (max-width: 700px) {
  .my-wallet__info .title {
    max-width: 280px;
    width: 280px;
  }
}
@media screen and (max-width: 590px) {
  .my-wallet__info .title {
    max-width: 250px;
    width: 250px;
  }
}
@media screen and (max-width: 568px) {
  .my-wallet__info .title {
    font-size: 15px;
  }
}
@media screen and (max-width: 540px) {
  .my-wallet__info .title {
    max-width: 100%;
    width: 100%;
  }
}
.my-wallet__info .subtitle {
  font-size: 15px;
  font-weight: normal;
  font-style: normal;
  color: #070809;
  font-family: "Onest", sans-serif;
  opacity: 0.5;
}
@media screen and (max-width: 568px) {
  .my-wallet__info .subtitle {
    font-size: 14px;
  }
}
.my-wallet__info .subtitle.subtitle-red {
  opacity: 1 !important;
  color: #D2392F !important;
}
.my-wallet__price {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  margin-left: auto;
  gap: 2px;
}
@media screen and (max-width: 568px) {
  .my-wallet__price {
    min-width: 120px;
  }
}
.my-wallet__price .number {
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  color: #070809;
  font-family: "Onest", sans-serif;
}
@media screen and (max-width: 568px) {
  .my-wallet__price .number {
    font-size: 15px;
  }
}
.my-wallet__price .number.number-red {
  color: #D2392F;
}
.my-wallet__price .number.number-green {
  color: #3EC843;
}
.my-wallet__price .subtitle {
  font-size: 15px;
  font-weight: normal;
  font-style: normal;
  color: #070809;
  font-family: "Onest", sans-serif;
  opacity: 0.5;
}
@media screen and (max-width: 568px) {
  .my-wallet__price .subtitle {
    font-size: 14px;
  }
}
.my-wallet__box-title {
  font-size: 15px;
  font-weight: normal;
  opacity: 0.5;
  color: #070809;
  font-family: "Onest", sans-serif;
}
.my-wallet__table {
  display: flex;
  flex-direction: column;
}
.my-wallet__table-item {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  .my-wallet__table-item {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 568px) {
  .my-wallet__table-item {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
.my-wallet__table-title {
  max-width: 400px;
  font-size: 16px;
  font-weight: normal;
  color: #070809;
  font-family: "Onest", sans-serif;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 568px) {
  .my-wallet__table-title {
    font-size: 15px;
  }
}
@media screen and (max-width: 1200px) {
  .my-wallet__table-title {
    max-width: 100%;
  }
}
.my-wallet__table-label {
  font-size: 15px;
  font-weight: normal;
  font-family: "Onest", sans-serif;
  font-style: normal;
  text-decoration: none;
  display: inline-flex;
  min-width: 150px;
}
.my-wallet__table-label .draft {
  background-color: #F3F3F4;
  padding: 4px 10px;
  border-radius: 10px;
  color: rgba(7, 8, 9, 0.5);
}
.my-wallet__table-label .moderation {
  background-color: rgba(228, 145, 62, 0.1);
  padding: 4px 10px;
  border-radius: 10px;
  color: #E4903E;
}
.my-wallet__table-label .sucssesfull {
  background-color: rgba(62, 228, 69, 0.1);
  padding: 4px 10px;
  border-radius: 10px;
  color: #3EC843;
}
.my-wallet__table-label .error {
  background-color: rgba(228, 62, 62, 0.1);
  padding: 4px 10px;
  border-radius: 10px;
  color: #DD3E37;
}
.my-wallet__table-price {
  display: flex;
  font-size: 18px;
  font-weight: 600;
  color: #070809;
  min-width: 150px;
}
@media screen and (max-width: 1200px) {
  .my-wallet__table-price {
    min-width: auto;
  }
}
.my-wallet__table-btn {
  margin-left: auto;
  min-width: 220px;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 1200px) {
  .my-wallet__table-btn {
    margin-left: 0;
    min-width: auto;
  }
}
@media screen and (max-width: 568px) {
  .my-wallet__table-btn {
    width: 100%;
  }
}
.my-wallet__table-btn .btn {
  cursor: pointer;
}
@media screen and (max-width: 568px) {
  .my-wallet__table-btn .btn {
    width: 100%;
  }
}
.my-wallet__table-btn .btn-blue {
  background-color: #0293E9;
}
.my-wallet__popup .popup__inner {
  max-width: 580px;
}
@media screen and (max-width: 991px) {
  .my-wallet__popup .award-buy__payment-toolbar {
    flex-wrap: wrap !important;
  }
}
@media screen and (max-width: 568px) {
  .my-wallet__popup .popup-request__content {
    padding: 30px;
  }
}
.my-wallet__popup.popup-request-stats .popup__inner {
  max-width: 420px;
}
.my-wallet__deposit .popup__inner {
  max-width: 860px !important;
}
.my-wallet__deposit .deposit-form {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #F3F3F4;
}
.my-wallet__deposit .deposit-form .input-group__col {
  position: relative;
}
.my-wallet__deposit .deposit-form .currency {
  height: 45px;
  position: absolute;
  top: 44px;
  left: 15px;
  font-family: "Onest", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  color: #070809;
  opacity: 0.5;
  z-index: 1;
}
.my-wallet__deposit .deposit-form .card-form__input-title {
  color: #070809;
  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  line-height: 22px;
  margin-bottom: 10px;
  opacity: 0.7;
  display: flex;
}
.my-wallet__deposit .deposit-form .error-description {
  position: absolute;
  bottom: -20px;
  font-size: 12px;
  color: #DD3E37;
  font-weight: normal;
  display: block;
}
.my-wallet__deposit .deposit-form .card-form__input {
  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  line-height: 24px;
  width: 100%;
  height: 45px;
  position: relative;
  background: #f8f8f9;
  padding: 8px 16px;
  border-radius: 10px;
}
.my-wallet__deposit .deposit-form .card-form__input.is-error {
  border: 1px solid #DD3E37;
}
.my-wallet__deposit .deposit-form .card-form__input:focus {
  outline: none;
  border: 1px solid #E7E7E9;
}
.my-wallet__deposit .deposit-form .card-form__input.currencyInput {
  padding-left: 35px;
}
.my-wallet__deposit .deposit-payment {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}
.my-wallet__deposit .deposit-payment .radio-block__subtitle {
  display: flex;
  align-items: center;
  opacity: 1;
}

.popup-request__content {
  padding: 50px;
}
.popup-request__comment {
  padding: 15px 20px;
  margin-bottom: 20px;
  background-color: #F8F8F9;
  border-radius: 10px;
}
.popup-request__comment-title {
  font-size: 15px;
  line-height: 24px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: normal;
  opacity: 0.5;
}
.popup-request__comment-description {
  font-size: 15px;
  line-height: 22px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: normal;
  margin-top: 5px;
}
.popup-request__caption {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 30px;
}
.popup-request__caption .number {
  opacity: 0.5;
}
.popup-request__title {
  font-size: 25px;
  line-height: 32px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: 500;
}
.popup-request__description {
  font-size: 15px;
  line-height: 24px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: normal;
  opacity: 0.7;
  max-width: 650px;
}
.popup-request__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.popup-request__info-item .title {
  font-size: 15px;
  line-height: 24px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: normal;
  opacity: 0.5;
}
.popup-request__info-item .info {
  font-size: 15px;
  line-height: 24px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: 500;
}
.popup-request__price {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}
.popup-request__price-title {
  font-size: 15px;
  line-height: 24px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: 500;
}
.popup-request__price-full {
  font-size: 25px;
  line-height: 24px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: 600;
  margin-top: 5px;
}
.popup-request__price-info {
  font-size: 15px;
  line-height: 24px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: normal;
  opacity: 0.5;
}
.popup-request__label {
  font-size: 15px;
  line-height: 24px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: normal;
  margin-top: 10px;
  display: flex;
}
.popup-request__label .moderation {
  background-color: rgba(228, 145, 62, 0.1);
  padding: 4px 10px;
  border-radius: 10px;
  color: #E4903E;
}
.popup-request__label .draft {
  background-color: #F3F3F4;
  padding: 4px 10px;
  border-radius: 10px;
  color: rgba(7, 8, 9, 0.5);
}
.popup-request__label .sucssesfull {
  background-color: rgba(62, 228, 69, 0.1);
  padding: 4px 10px;
  border-radius: 10px;
  color: #3EC843;
}
.popup-request__label .error {
  background-color: rgba(228, 62, 62, 0.1);
  padding: 4px 10px;
  border-radius: 10px;
  color: #DD3E37;
}
.popup-request__action {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.popup-request__action .help {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  line-height: 24px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: normal;
  opacity: 0.5;
}
.popup-request__action .help .icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-request__action .help .icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.popup-request-stats__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(7, 8, 9, 0.05);
}
.popup-request-stats__item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.popup-request-stats__item-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.popup-request-stats__item-info .title {
  font-size: 16px;
  line-height: 24px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: normal;
  opacity: 0.5;
}
.popup-request-stats__item-info .info {
  font-size: 16px;
  line-height: 24px;
  font-family: "Onest", sans-serif;
  color: #070809;
  font-weight: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  width: 100%;
  max-width: 320px;
  text-align: right;
}

.pofile__container {
  margin-top: 30px;
}
.pofile__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
  gap: 10px;
}
.pofile__avatar {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  overflow: hidden;
}
.pofile__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pofile__name {
  font-size: 32px;
  line-height: 52px;
  font-weight: 600;
  color: #070809;
  font-family: "Onest", sans-serif;
}
@media screen and (max-width: 414px) {
  .pofile__name {
    font-size: 28px;
    line-height: 36px;
  }
}
.pofile__user-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 568px) {
  .pofile__user-info {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.pofile__user-info-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.pofile__user-info-item .icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}
.pofile__user-info-item .icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.pofile__user-info-item .title {
  font-family: "Onest", sans-serif;
  font-size: 15px;
  line-height: 22px;
  font-style: normal;
  font-weight: normal;
  opacity: 0.5;
  color: #070809;
}
.pofile__user-info-item .link {
  font-family: "Onest", sans-serif;
  font-size: 15px;
  line-height: 22px;
  font-style: normal;
  font-weight: normal;
  opacity: 0.5;
  color: #070809;
}
.pofile__user-description {
  text-align: center;
}
.pofile__user-description p {
  font-family: "Onest", sans-serif;
  font-size: 15px;
  line-height: 22px;
  font-style: normal;
  font-weight: 400;
  opacity: 0.7;
}
.pofile__row {
  display: flex;
  gap: 20px;
  margin-top: 50px;
}
.pofile__col:nth-child(1) {
  width: calc(100% - 350px);
}
@media screen and (max-width: 1200px) {
  .pofile__col:nth-child(1) {
    width: calc(100% - 300px);
  }
}
@media screen and (max-width: 1024px) {
  .pofile__col:nth-child(1) {
    width: 100%;
  }
}
.pofile__col:nth-child(2) {
  width: 350px;
  min-width: 350px;
}
@media screen and (max-width: 1200px) {
  .pofile__col:nth-child(2) {
    width: 300px;
    min-width: 300px;
  }
}
@media screen and (max-width: 1024px) {
  .pofile__col:nth-child(2) {
    display: none;
  }
}
.pofile__col-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 568px) {
  .pofile__col .box-col-contact, .pofile__col .box-col-stats {
    padding: 15px !important;
  }
}
.pofile__col .box-col {
  background: #fff;
  border-radius: 15px;
  border: 1px solid #F3F3F4;
  padding: 30px 30px;
  width: auto;
  gap: 10px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (max-width: 568px) {
  .pofile__col .box-col {
    padding: 0;
  }
}
.pofile__col .box-col__title {
  color: #070809;
  font-family: "Onest", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.pofile__col .box-col__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pofile__col .box-col__list-item {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}
.pofile__col .box-col__list-item:hover .icon {
  opacity: 1;
}
.pofile__col .box-col__list-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  opacity: 0.5;
  transition: all 0.3s;
}
.pofile__col .box-col__list-item .icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.pofile__col .box-col__list-item .title {
  color: #070809;
  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  line-height: 24px;
}
.pofile__col .box-col-stats .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  opacity: 1;
}
.pofile__col .box-col-project__label {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  flex-wrap: wrap;
}
@media screen and (max-width: 568px) {
  .pofile__col .box-col-project__label {
    gap: 10px;
  }
}
.pofile__col .box-col-project__author {
  display: flex;
  align-items: center;
  gap: 5px;
}
.pofile__col .box-col-project__author .avatar {
  width: 24px;
  height: 24px;
  border-radius: 100%;
  overflow: hidden;
}
@media screen and (max-width: 568px) {
  .pofile__col .box-col-project__author .avatar {
    width: 18px;
    height: 18px;
  }
}
.pofile__col .box-col-project__author .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pofile__col .box-col-project__author .title {
  color: #070809;
  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  line-height: 24px;
}
.pofile__col .box-col-project__nav {
  display: flex;
  align-items: center;
  gap: 5px;
}
.pofile__col .box-col-project__nav .icon {
  width: 24px;
  height: 24px;
  border-radius: 100%;
  overflow: hidden;
}
@media screen and (max-width: 568px) {
  .pofile__col .box-col-project__nav .icon {
    width: 18px;
    height: 18px;
  }
}
.pofile__col .box-col-project__nav .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pofile__col .box-col-project__nav .title {
  color: #070809;
  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  line-height: 24px;
}
.pofile__col .box-col-project__item {
  display: flex;
  gap: 20px;
}
.pofile__col .box-col-project__item:hover .box-col-project__images img {
  transform: scale(1.1);
}
@media screen and (max-width: 650px) {
  .pofile__col .box-col-project__item {
    flex-direction: column;
  }
}
@media screen and (max-width: 568px) {
  .pofile__col .box-col-project__item {
    gap: 10px;
  }
}
.pofile__col .box-col-project__item.fin .cardProgressBar__line {
  background: #0293E9;
}
.pofile__col .box-col-project__item.fiz .cardProgressBar__line {
  background: #F9C20F;
}
.pofile__col .box-col-project__item.mat .cardProgressBar__line {
  background: #D2392F;
}
.pofile__col .box-col-project__images {
  width: 220px;
  min-width: 220px;
  height: 140px;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .pofile__col .box-col-project__images {
    width: 200px;
    min-width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .pofile__col .box-col-project__images {
    width: 200px;
    min-width: 200px;
  }
}
@media screen and (max-width: 650px) {
  .pofile__col .box-col-project__images {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 250px;
  }
}
@media screen and (max-width: 568px) {
  .pofile__col .box-col-project__images {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 180px;
  }
}
.pofile__col .box-col-project__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
@media screen and (max-width: 650px) {
  .pofile__col .box-col-project__images img {
    height: 100%;
  }
}
.pofile__col .box-col-project__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
  width: 100%;
}
@media screen and (max-width: 650px) {
  .pofile__col .box-col-project__content {
    gap: 10px;
  }
}
@media screen and (max-width: 568px) {
  .pofile__col .box-col-project__content {
    padding: 0px 15px 15px 15px;
  }
}
.pofile__col .box-col-project__title {
  color: #070809;
  font-family: "Onest", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  width: 100%;
  transition: all 0.3s;
}
.pofile__col .box-col-project__title:hover {
  opacity: 0.7;
}
.pofile__col .box-col-project__description {
  color: #070809;
  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  line-height: 24px;
  opacity: 0.7;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  width: 100%;
}
.pofile__col .box-col-project__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pofile__col .box-col-project__progress {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.pofile__col .box-col-project__progress .cardProgress__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pofile__col .box-col-project__progress .cardCollected {
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 42px;
}
.pofile__col .box-col-project__progress .cardCollected__title {
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  opacity: 0.5;
  color: #070809;
}
.pofile__col .box-col-project__progress .cardCollected__number {
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
  color: #070809;
}
.pofile__col .box-col-project__progress .cardTarget {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  height: 42px;
}
.pofile__col .box-col-project__progress .cardTarget__title {
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  opacity: 0.5;
  color: #070809;
}
.pofile__col .box-col-project__progress .cardTarget__number {
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #070809;
}
.pofile__col .box-col-project__progress .cardProgressBar {
  background: #E6E5E5;
  height: 2px;
  border-radius: 100px;
  width: 100%;
}
.pofile__col .box-col-project__progress .cardProgressBar__line {
  height: 6px;
  border-radius: 100px;
  position: relative;
  top: -2px;
}
.pofile__col .box-col-project__progress .cardTarget {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  height: 42px;
}
.pofile__col .box-col-project__progress .cardTarget__title {
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  opacity: 0.7;
  color: #070809;
}
.pofile__col .box-col-project__progress .cardTarget__number {
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #070809;
}
.pofile__col .box-col-project__progress .cardUser {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin-bottom: 5px;
}
.pofile__col .box-col-project__progress .cardUser__item {
  width: 20px;
  min-width: 20px;
  height: 20px;
  border-radius: 100%;
  overflow: hidden;
  border: 1px solid #fff;
  margin-left: -8px;
}
.pofile__col .box-col-project__progress .cardUser__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pofile__col .box-col-project__footer-label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pofile__col .box-col-project__footer-label .label-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 568px) {
  .pofile__col .box-col-project__footer-label .label-item:nth-child(1) {
    display: none;
  }
}
.pofile__col .box-col-project__footer-label .label-item .icon {
  width: 12px;
  height: 12px;
  opacity: 0.5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pofile__col .box-col-project__footer-label .label-item .icon img {
  width: 12px;
  height: 12px;
  object-fit: contain;
}
.pofile__col .box-col-project__footer-label .label-item .title {
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: normal;
  height: 14px;
  color: #070809;
  opacity: 0.5;
}

.settings .pageCaption {
  align-items: flex-start;
}
@media screen and (max-width: 568px) {
  .settings .input-group {
    display: flex;
    flex-direction: column;
  }
  .settings .input-group__col {
    width: 100%;
  }
}
@media screen and (max-width: 568px) {
  .settings .card-form .upload-avatar__file {
    width: 80px;
    min-width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 568px) {
  .settings .upload-avatar {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 375px) {
  .settings .box-wrap-action {
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
  }
  .settings .box-wrap-action .btn {
    width: 100%;
  }
}

.promotion .pageCaption {
  align-items: flex-start;
}
.promotion .pageTitle {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.promotion .pageTitle .title-project {
  opacity: 0.5;
}
.promotion__container {
  display: flex;
  gap: 100px;
  margin-top: 50px;
}
@media screen and (max-width: 1200px) {
  .promotion__container {
    gap: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .promotion__container {
    flex-direction: column;
  }
}
.promotion__settings {
  width: calc(100% - 420px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1200px) {
  .promotion__settings {
    width: calc(100% - 320px);
  }
}
@media screen and (max-width: 1024px) {
  .promotion__settings {
    width: 100%;
  }
}
.promotion__setitem {
  background: #fff;
  border-radius: 15px;
  border: 1px solid #F3F3F4;
  padding: 30px 30px;
  width: auto;
  gap: 15px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 568px) {
  .promotion__setitem {
    padding: 15px;
    border-radius: 10px;
  }
}
.promotion__setitem .card-form__input {
  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  line-height: 24px;
  width: 200px;
  height: 45px;
  position: relative;
  background: #f8f8f9;
  padding: 8px 16px;
  border-radius: 10px;
}
.promotion__setitem .card-form__input:focus {
  border: 1px solid #F3F3F4;
}
.promotion__result {
  width: 320px;
}
@media screen and (max-width: 1024px) {
  .promotion__result {
    margin: 0 auto;
  }
}
@media screen and (max-width: 568px) {
  .promotion__result {
    width: 100%;
  }
}
.promotion .title {
  color: #070809;
  font-family: "Onest", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.promotion .box-day {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.promotion .checkbox-block {
  position: relative;
  cursor: pointer;
  display: block;
  user-select: none;
  -webkit-user-select: none;
  -mz-user-select: none;
  -ms-user-select: none;
  width: auto;
  border: 1px solid #F3F3F4;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 12px 16px;
  background: #f8f8f9;
  width: 86px;
  min-width: 86px;
  height: 86px;
}
@media screen and (max-width: 568px) {
  .promotion .checkbox-block {
    width: 56px;
    min-width: 56px;
    height: 56px;
  }
}
.promotion .checkbox-block input {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  pointer: cursor;
  opacity: 0;
}
.promotion .checkbox-block input:checked ~ .checkbox-block__bg {
  background-color: #0293E9;
  opacity: 1;
}
.promotion .checkbox-block input:checked ~ .checkbox-block__content .checkbox-block__info .checkbox-block__title {
  color: #fff;
}
.promotion .checkbox-block__bg {
  opacity: 0;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  position: absolute;
  border-radius: 10px;
  border: 1px solid #0293E9;
  background-color: #0293E9;
}
.promotion .checkbox-block__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-weight: 500;
  color: #070809;
  gap: 10px;
}
.promotion .checkbox-block__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.promotion .checkbox-block__title {
  font-size: 25px;
  font-weight: 500;
  font-family: "Onest", sans-serif;
  font-style: normal;
  color: #070809;
}
@media screen and (max-width: 568px) {
  .promotion .checkbox-block__title {
    font-size: 18px;
  }
}
.promotion .checkbox-block__subtitle {
  font-size: 14px;
  font-weight: normal;
  color: #070809;
  font-style: normal;
  font-family: "Onest", sans-serif;
  opacity: 0.5;
}
.promotion .checkbox-block__images {
  margin-bottom: 8px;
  width: 56px;
  height: 56px;
  overflow: hidden;
}
.promotion .checkbox-block__images img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.promotion .checkbox-block__color {
  width: 24px;
  min-width: 24px;
  height: 24px;
  border-radius: 100%;
}
.promotion .box-watch__label {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 15px;
}
.promotion .box-watch__label .watch-item {
  display: flex;
  align-items: center;
}
.promotion .box-watch__label .watch-item .title {
  font-size: 16px;
  font-weight: normal;
  font-family: "Onest", sans-serif;
  font-style: normal;
  color: #070809;
  border-top: 1px solid #F3F3F4;
  border-bottom: 1px solid #F3F3F4;
  border-left: 1px solid #F3F3F4;
  padding: 4px 12px;
  height: 32px;
  border-radius: 5px 0px 0px 5px;
}
.promotion .box-watch__label .watch-item .close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background-color: #F3F3F4;
  border-radius: 0px 5px 5px 0px;
}
.promotion .box-watch__label .watch-item .close img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.promotion .result-item {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #F3F3F4;
}
.promotion .result-caption {
  display: flex;
  flex-direction: column;
}
.promotion .result-caption .title {
  font-size: 18px;
  font-weight: 500;
  font-family: "Onest", sans-serif;
  font-style: normal;
  color: #070809;
  opacity: 0.5;
}
.promotion .result-caption .number {
  font-size: 25px;
  font-weight: 500;
  font-family: "Onest", sans-serif;
  font-style: normal;
  color: #070809;
  opacity: 1;
}
.promotion .result-btn {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.promotion .result-btn .btn {
  width: 100%;
}
.promotion .labels {
  font-size: 15px;
  font-weight: normal;
  font-family: "Onest", sans-serif;
  font-style: normal;
  text-decoration: none;
  display: inline-flex;
  align-self: flex-start;
  margin-top: 5px;
}
.promotion .labels.draft {
  background-color: #F3F3F4;
  padding: 4px 10px;
  border-radius: 10px;
  color: rgba(7, 8, 9, 0.5);
}
.promotion .labels.moderation {
  background-color: rgba(228, 145, 62, 0.1);
  padding: 4px 10px;
  border-radius: 10px;
  color: #E4903E;
}
.promotion .labels.sucssesfull {
  background-color: rgba(62, 228, 69, 0.1);
  padding: 4px 10px;
  border-radius: 10px;
  color: #3EC843;
}
.promotion .labels.error {
  background-color: rgba(228, 62, 62, 0.1);
  padding: 4px 10px;
  border-radius: 10px;
  color: #DD3E37;
}