blockquote {
  position: relative;
  padding: 0 0 0 10px;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 24px;
}
blockquote p:last-of-type {
  margin-bottom: 0;
}
blockquote:before {
  position: absolute;
  content: "";
  width: 3px;
  height: 100%;
  background: #FFA800;
  border-radius: 1px;
  left: 0;
}

.other {
  background: #F6F8FC;
  border-radius: 16px;
  padding: 24px;
  margin-top: 24px;
}
.other-title {
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 100%;
  color: #000000;
}
@media (max-width: 768px) {
  .other-title {
    font-size: 24px;
  }
}
.other li {
  font-size: 20px;
  line-height: 155.52%;
  color: #333333;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  margin: 24px 0 0 24px;
}

.greet {
  font-size: 26px;
  font-weight: 600;
  padding: 23px 0;
  line-height: 31px;
}

.blog-article {
  margin-top: 36px;
  display: flex;
  justify-content: space-between;
}
.blog-article > div:not(.author-info) h1 {
  margin-top: 8px;
  font-size: 36px;
  line-height: 48px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .blog-article > div:not(.author-info) h1 {
    font-size: 28px;
    line-height: 1.25;
  }
}

.blog-left {
  max-width: calc(100% - 328px);
  width: 100%;
  padding: 24px 16px;
  border-radius: 16px;
  background-color: #ffffff;
}
.blog-right {
  max-width: 328px;
  width: 100%;
  margin-left: 16px;
  position: sticky;
  height: fit-content;
  top: 99px;
}
@media screen and (max-width: 768px) {
  .blog-right {
    margin-left: 0;
  }
}
.blog-social {
  margin: 16px 0 0 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 32px;
  height: 60px;
  background: #ffffff;
  border-radius: 16px;
}
.blog-social a {
  width: 40px;
  height: 40px;
  background: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border-radius: 50%;
  font-size: 20px;
}
.blog-bottom {
  display: flex;
  align-items: center;
  margin: 24px 0 0 0;
}
@media screen and (max-width: 768px) {
  .blog-bottom {
    flex-direction: column;
    gap: 16px;
  }
}
.blog-bottom .blog-social {
  gap: 16px;
  margin: 0 0 0 24px;
}
@media screen and (max-width: 768px) {
  .blog-bottom .blog-social {
    margin: 0;
  }
}
.blog-side-left {
  width: 50%;
}
.blog-side-right {
  width: 50%;
}
.blog-side-content {
  padding: 16px;
  background: #333333;
  border-radius: 16px;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: #FFFFFF;
  margin-top: 16px;
}
.blog-side-content.inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.blog-side-content a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 13px 26px;
  background: linear-gradient(93.77deg, #FAE002 -2.72%, #FFE500 104.62%);
  border-radius: 16px;
  margin-top: 16px;
  font-style: normal;
  font-weight: 700;
  font-size: 21px;
  line-height: 25px;
  color: #333333;
}
.blog-side-content a.coffee {
  padding: 0;
  border: none;
  background: none;
  border-radius: 0;
}
.blog-side-content h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 21px;
  line-height: 25px;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.date {
  display: flex;
}
.date span {
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
  color: #8F8F8F;
}
.date span:nth-child(2) {
  margin-left: 24px;
}
.date a {
  font-size: 20px;
}

.blog-article .img {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  margin-top: 24px;
  height: 332px;
}
.blog-article .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  margin-top: 24px;
  color: #333333;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 155.52%;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.blog-content ul, .blog-content ol, .blog-content p, .blog-content h1, .blog-content h2, .blog-content h3, .blog-content h4, .blog-content h5 {
  margin-bottom: 24px;
}
.blog-content p:has(+ p) {
  margin-bottom: 16px;
}
.blog-content p {
  font-size: 16px;
}
@media (max-width: 768px) {
  .blog-content p {
    font-size: 16px;
  }
}
.blog-content h2, .blog-content h3, .blog-content h4, .blog-content h5 {
  font-weight: 500;
}
@media (max-width: 768px) {
  .blog-content h2 {
    font-size: 24px;
  }
  .blog-content h3 {
    font-size: 20px;
  }
  .blog-content h2, .blog-content h3, .blog-content h4, .blog-content h5 {
    line-height: 1.25;
  }
}
.blog-content ul, .blog-content ol {
  padding-left: 16px;
}
.blog-content ul li, .blog-content ol li {
  font-size: 16px;
}
.blog-content ul p, .blog-content ol p {
  margin: 0 0 10px 0;
}
.blog-content ul > li {
  list-style: none;
  position: relative;
  padding-left: 8px;
}
.blog-content ul > li:before {
  position: absolute;
  content: "";
  left: -16px;
  top: 9px;
  width: 10px;
  height: 10px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  color: #000000;
  text-align: center;
  border-radius: 50%;
  background-color: #FFA800;
}
.blog-content ol {
  counter-reset: myOrderedListItemsCounter;
}
.blog-content ol > li {
  list-style-type: none;
  position: relative;
  padding-left: 24px;
}
.blog-content ol > li p {
  text-align: initial !important;
}
.blog-content ol > li::before {
  position: absolute;
  content: "";
  top: 1px;
  left: -16px;
  width: 24px;
  height: 24px;
  min-width: 30px;
  font-size: 28px;
  margin-right: 20px;
  line-height: 24px;
  font-weight: 600;
  color: #FFA800;
  text-align: center;
  border-radius: 50%;
}
.blog-content ol > li:before {
  counter-increment: myOrderedListItemsCounter;
  content: counter(myOrderedListItemsCounter);
}
.blog-content a {
  text-decoration: underline;
}
.blog-content figure.table {
  padding: 8px;
  border: 1px solid #F3F3F3;
  border-radius: 8px;
  background: #F1F4F9;
  width: 100%;
  overflow-x: auto;
}
.blog-content figure.table table {
  width: 100%;
}
.blog-content figure.table th {
  padding: 4px 8px;
  font-size: clamp(12px, 1.0417vw, 15px);
  line-height: 1.25;
  white-space: nowrap;
  min-width: 50px;
}
.blog-content figure.table tr {
  padding: 12px;
  gap: 10px;
  text-align: center;
}
.blog-content figure.table td {
  padding: 4px 8px;
  font-size: clamp(12px, 1.0417vw, 14px);
  line-height: 1.25;
  background: #F8F8F8;
  border-radius: 8px;
}
.blog-content figure.image {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}
.blog-content figure.image img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.views {
  padding: 10px 24px;
  border-radius: 41px;
  background-color: #F1F1F1;
  display: flex;
  width: fit-content;
  height: 60px;
  align-items: center;
  margin: 0;
}
.views p {
  font-size: 16px;
  line-height: 16px;
  font-weight: 300;
  color: #000000;
}
.views p i {
  margin-right: 4px;
}
.views p:not(:first-child) {
  margin-left: 16px;
}

.author-info {
  display: flex;
  height: fit-content;
  padding: 16px;
  border-radius: 16px;
  background-color: #ffffff;
}
.author-info > div:nth-child(1) {
  width: 100%;
  max-width: 76px;
  overflow: hidden;
  margin-right: 16px;
  border-radius: 50%;
}
.author-info > div:nth-child(1) img {
  width: 100%;
}
.author-info > div:nth-child(2) p:nth-child(1) {
  font-size: 21px;
  line-height: 25.41px;
  font-weight: 700;
  color: #333333;
}
.author-info > div:nth-child(2) p:nth-child(2), .author-info > div:nth-child(2) a {
  font-size: 15px;
  line-height: 18.15px;
  font-weight: 400;
  color: #333333;
}
.author-info > div:nth-child(2) a {
  display: inline-block;
  margin-top: 8px;
  font-style: italic;
  color: #3083FF;
  text-decoration: underline;
}

.subscribe-block {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  height: fit-content;
  padding: 24px;
  border-radius: 16px;
  background-color: #F6F8FC;
}
@media screen and (max-width: 768px) {
  .subscribe-block {
    display: none;
  }
}
.subscribe-block a {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 12px 16px;
  gap: 16px;
  flex: 1;
  white-space: nowrap;
  height: 48px;
  background: #FFDD00;
  border-radius: 8px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
}
.subscribe-block a:last-child {
  background: #333333;
  color: #FFDD00;
}
@media screen and (max-width: 768px) {
  .subscribe-block a {
    white-space: wrap;
    min-height: 48px;
    height: fit-content;
  }
}
.subscribe-block a i {
  font-size: 24px;
}

.blog-right .subscribe-block {
  flex-direction: column;
  background-color: #ffffff;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px;
}
.blog-right .subscribe-block a {
  max-width: 100%;
}

[data-section=ware] {
  margin-top: 12px;
}
[data-section=ware] nav {
  margin-top: 16px;
  display: flex;
  padding: 23px 16px;
  background-color: #ffffff;
  border-radius: 16px;
}
[data-section=ware] nav a {
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  color: #8F8F8F;
  text-transform: uppercase;
  border-right: 1px solid rgba(0, 16, 61, 0.14);
}
[data-section=ware] nav span {
  padding: 8px;
  color: #FA4F4F;
  font-size: 14px;
  line-height: 14px;
  background: rgba(200, 200, 200, 0.17);
  border-radius: 8px;
  margin-left: 16px;
}
[data-section=ware] nav .current {
  color: #000000;
}
[data-section=ware] nav a:not(:first-child) {
  padding: 7px 37px;
}
[data-section=ware] nav a:first-child {
  padding: 7px 37px 7px 0;
}

[data-popup=search-emmet] {
  position: absolute;
  top: 97px;
  left: 0;
  width: calc(100% - 254px);
  border-radius: 16px;
  background-color: #ffffff;
  padding: 20px;
}
[data-popup=search-emmet] .hint {
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
  border-bottom: 1px solid #8F8F8F;
}
[data-popup=search-emmet] .hint a {
  font-size: 20px;
  line-height: 31px;
  letter-spacing: 0.24px;
  font-weight: 400;
  color: #333333;
  padding: 10px;
  border-radius: 8px;
}
[data-popup=search-emmet] .hint a:hover {
  background: linear-gradient(93.77deg, rgba(255, 208, 0, 0.5) -2.72%, rgba(255, 188, 0, 0.5) 104.62%);
}
[data-popup=search-emmet] .visual {
  margin-top: 20px;
}
[data-popup=search-emmet] .visual a {
  flex-direction: row;
  max-width: initial;
  padding: 7px;
  justify-content: space-between;
  width: 100%;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.05);
}
[data-popup=search-emmet] .visual a > div:not(.img) {
  margin-left: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
[data-popup=search-emmet] .visual a .img {
  max-width: 90px;
  min-width: 90px;
  height: 76px;
  overflow: hidden;
  border-radius: 7px;
}
[data-popup=search-emmet] .visual a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
[data-popup=search-emmet] .visual a:not(:last-child) {
  margin-bottom: 20px;
}
[data-popup=search-emmet] .visual .title {
  font-size: 16px;
  line-height: 17px;
  margin-top: 0;
}
[data-popup=search-emmet] .visual .price {
  display: initial;
  font-size: 18px;
  line-height: 17px;
  margin-top: 0;
}
[data-popup=search-emmet] .visual .description {
  margin-top: 0;
  white-space: nowrap;
  max-width: 350px;
  text-overflow: ellipsis;
  display: initial;
  color: #828282;
  height: initial;
}
[data-popup=search-emmet] .visual .info {
  margin-top: 0;
}
[data-popup=search-emmet] .visual .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.list-blog {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .list-blog {
    margin-top: 20px;
  }
}
.list-blog .block h2 {
  font-size: 32px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .list-blog .block h2 {
    font-size: 22px;
  }
}
.list-blog .content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.list-blog .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  overflow: hidden;
}
.list-blog .blog, .list-blog .list > div {
  padding: 0;
  border-radius: 16px;
  background-color: #ffffff;
}
.list-blog .blog .img img {
  border-radius: 16px;
  height: 413px;
  width: 100%;
}
.list-blog .description p {
  color: #4F4F4F;
  margin-top: 16px;
}
.list-blog .info .link {
  position: relative;
  width: 155px;
  height: 28px;
}
.list-blog .info .link:hover .normal {
  opacity: 0;
}
.list-blog .info .link:hover .gradient {
  opacity: 1;
}
.list-blog .info .link .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  padding: 4.5px 8px;
  transition: opacity 0.3s ease-in-out;
  background: linear-gradient(90deg, #7921EF 0.21%, #B921EF 101.21%);
  position: absolute;
  top: 0;
  left: 0;
}
.list-blog .info .link .normal {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.list-blog .info .link .gradient {
  color: white;
  opacity: 0;
  margin: 0;
  border-radius: 4px;
}
.list-blog .info span {
  font-size: 12px;
  font-weight: 400;
  line-height: 14.5px;
  color: #8F8F8F;
  position: relative;
}
.list-blog .info span:before {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
}
.list-blog .info span:not(:first-child) {
  margin-left: 12px;
}
.list-blog .info .rate {
  padding-left: 18px;
}
.list-blog .info .location {
  padding-left: 13px;
}
.list-blog .info .status {
  padding-left: 16px;
}
.list-blog .info .rate:before {
  top: 0;
  left: 0;
  width: 14px;
  height: 13px;
  background-image: url("../site_assets/images/icons/rate.svg");
}
.list-blog .info .location:before {
  top: 0;
  left: 0;
  width: 9px;
  height: 13px;
  background-image: url("../site_assets/images/icons/location.svg");
}
.list-blog .info .status:before {
  top: 0;
  left: 0;
  width: 12px;
  height: 15px;
  background-image: url("../site_assets/images/icons/status.svg");
}
.list-blog .info p {
  margin: 0;
}
@media (max-width: 768px) {
  .list-blog .swiper-pagination.blog-list {
    bottom: -4px;
  }
  .list-blog .swiper-pagination.blog-list .swiper-pagination-bullet {
    background: #44bb50;
    opacity: 0.5;
    width: 12px;
    height: 12px;
    margin: 0 8px;
  }
  .list-blog .swiper-pagination.blog-list .swiper-pagination-bullet-active {
    opacity: 1;
  }
}
.list-blog .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .list-blog .list.swiper-wrapper {
    display: flex;
    grid-row-gap: unset;
    gap: unset;
    padding-bottom: 24px;
  }
}
.list-blog .list .short {
  height: 0;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
}
.list-blog .list > div {
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.list-blog .list > div:hover {
  background-color: #F3F0E2;
}
.list-blog .list > div:hover .short {
  height: 84px;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  color: #333333;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.list-blog .list > div:hover .description {
  background-color: #F3F0E2;
}
.list-blog .list .img {
  min-height: 211px;
  max-height: 211px;
  max-width: 100%;
  margin-bottom: 84px;
}
.list-blog .list .img img {
  object-fit: cover;
  width: 100%;
  height: 100% !important;
}
.list-blog .list .description {
  padding: 16px 16px 0 16px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #ffffff;
  transition: all 0.3s ease-in-out;
  width: 100%;
  overflow: hidden;
}
.list-blog .list .created-at {
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: #A3B9CE;
}
.list-blog .list h2 {
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  color: #333333;
  margin-top: 8px;
}
.list-blog .list .info {
  margin: 0;
  padding: 40px 16px 24px 16px;
  display: flex;
  justify-content: space-between;
}
.list-blog .list .info > div {
  display: flex;
  gap: 16px;
  color: #A3B9CE;
}
.list-blog .list .info > div i {
  margin-right: 8px;
}
.list-blog .allArticles {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 0;
  background: #44bb50;
  color: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  height: 100%;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  max-width: 222px;
  margin: 24px auto 0;
}
@media screen and (max-width: 768px) {
  .list-blog .allArticles {
    width: 100%;
  }
}

.toc {
  display: flex;
  padding: 16px;
  background: #F4F4F4;
  flex-wrap: wrap;
  border-radius: 16px;
}
.toc.open i {
  transform: rotate(180deg);
}
.toc.open ul {
  display: block;
}
.toc-title {
  font-style: normal;
  font-weight: 700;
  font-size: 21px;
  line-height: 25px;
  color: #333333;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.toc > ul {
  display: none;
  padding: 0 0 0 15px;
  margin: 16px 0 0 0;
}
.toc li::marker {
  color: #0F3BAF;
}
.toc a {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  display: flex;
  align-items: center;
  color: #0F3BAF;
  margin: 0 0 10px 0;
}
.toc .menu_level_1 {
  margin: 0 0 0 15px;
}

@media (max-width: 768px) {
  .blog-article {
    margin-top: 10px;
    flex-direction: column;
  }
  .blog-article > div:not(.author-info) {
    max-width: 100%;
  }
  .blog-article .author-info {
    margin: 32px 0;
    justify-content: space-between;
    max-width: 100%;
  }
  .blog-article .author-info p {
    width: 100%;
  }
  .blog-article .author-info div:nth-child(2) {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .blog-article .author-info div:nth-child(2) a {
    margin-top: 0;
  }
  [data-section=ware] .nav-wr {
    overflow-y: hidden;
    overflow-x: scroll;
    border-radius: 16px;
    background-color: #ffffff;
    margin-top: 16px;
    padding: 0 16px;
  }
  [data-section=ware] nav {
    margin-top: 0;
    padding: 15px 0;
  }
  [data-section=ware] nav a {
    font-size: 12px;
    white-space: nowrap;
    border-right: none;
  }
  [data-section=ware] nav a:not(:last-child) {
    border-right: 1px solid rgba(0, 16, 61, 0.14);
  }
  [data-section=ware] nav a:first-child {
    padding: 7px 10px 7px 0;
  }
  [data-section=ware] nav a:not(:first-child) {
    padding: 7px 10px;
  }
  .list-blog .img {
    height: 271px;
  }
  .list-blog .blog {
    padding: 10px;
  }
}
@media (min-width: 769px) and (max-width: 1000px) {
  .blog-article {
    flex-direction: column;
  }
  .blog-article > div {
    padding: 10px;
  }
  .blog-article > div:not(.author-info) {
    padding: 10px;
    width: 100%;
    max-width: 100%;
  }
  .blog-article .author-info {
    margin-left: 0;
    margin-bottom: 10px;
    max-width: 100%;
  }
}
@media (max-width: 450px) {
  .send-comment-blog .popup {
    width: 100%;
    left: 0;
  }
  .send-comment-blog .modal {
    max-width: initial;
    min-width: initial;
  }
}
@media (max-width: 670px) {
  .list-blog .list {
    grid-template-columns: 1fr;
    grid-row-gap: 10px;
  }
  .list-blog .list .img {
    height: 90px;
  }
  .list-blog .list .description p {
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 20px;
  }
}
@media (min-width: 671px) and (max-width: 1024px) {
  .list-blog .list {
    grid-template-columns: 1fr 1fr;
  }
}

/*# sourceMappingURL=blog.css.map */
