@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/BebasNeuePro-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
html, body, a, p {
  font-family: "Onest", sans-serif;
}

:root {
  --color-light: rgba(255, 255, 255, 1);
  --color-dark: rgba(11, 11, 24, 1);
  --color-grey: rgba(242, 245, 249, 1);
  --color-blue: rgba(71, 145, 231, 1);
  --background-blue: linear-gradient(90deg, #33B2DB 0%, #4691E7 100%);
  --font-family-base: "Onest", sans-serif;
  --container-width: 1200px;
  --container-padding-x: 15px;
  --transition-duration: 0.2s;
  --100vw: calc(100vw - var(--scrollbar-width, 0px));
  --header-topbar-bg: rgba(11, 11, 24, 1);
  --header-topbar-text: rgba(255, 255, 255, 0.75);
  --header-topbar-text-hover: rgba(255, 255, 255, 1);
  --header-topbar-height: 34px;
  --header-main-bg: rgba(255, 255, 255, 1);
  --header-main-height: 78px;
  --catalog-bg: rgba(255, 255, 255, 1);
  --catalog-item-hover: var(--background-blue);
  --catalog-item-active-bg: var(--color-dark);
  --catalog-sub-bg: #bfe5f8;
  --search-border: rgba(230, 236, 245, 1);
  --search-btn-bg: var(--color-dark);
  --search-btn-text: #fff;
  --mobile-menu-width: 320px;
}

.blog {
  padding: 5px 0 35px 0;
}
@media (max-width: 768px) {
  .blog {
    padding: 25px 0;
  }
}
.blog__top h2 {
  letter-spacing: 0.3px;
}
.blog__rows {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 26px 1fr 26px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 991px) {
  .blog__rows {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .blog__rows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-grid-columns: none;
    grid-template-columns: none;
    overflow-x: auto;
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    margin-left: calc(-1 * var(--container-padding, 15px));
    margin-right: calc(-1 * var(--container-padding, 15px));
    padding: 40px var(--container-padding, 15px) 30px;
    scrollbar-width: none;
  }
  .blog__rows::-webkit-scrollbar {
    display: none;
  }
}
.blog__column {
  min-width: 0;
}
@media (max-width: 768px) {
  .blog__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 77%;
            flex: 0 0 77%;
    max-width: 77%;
    scroll-snap-align: start;
  }
}
.blog__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  border-radius: 20px;
  -webkit-box-shadow: 0px 0px 38px 0px rgba(197, 197, 226, 0.45);
          box-shadow: 0px 0px 38px 0px rgba(197, 197, 226, 0.45);
  position: relative;
}
.blog .blog__cont {
  padding: 25px 20px 20px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.blog__image {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 0px;
  aspect-ratio: 382/270;
  background: #f3f4f6;
}
@media (max-width: 768px) {
  .blog__image {
    border-radius: 14px;
  }
}
.blog__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
@media (min-width: 992px) {
  .blog__image:hover img {
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
  }
}
.blog__title {
  margin-bottom: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-left: 10px;
  margin-right: 10px;
}
.blog__title h3 {
  font-size: 20px;
  font-weight: 400;
  color: rgb(0, 0, 0);
  letter-spacing: 0.3px;
  line-height: 1.2;
  margin: 0;
  font-family: "Onest";
  text-transform: none;
}
.blog__link {
  margin-top: auto;
  margin: 0 10px;
}
.blog__link a {
  background-color: rgb(230, 236, 245);
  border-radius: 10px;
  padding: 11px 20px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  color: rgb(32, 80, 116);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.blog__link a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.blog__link a span {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  margin-top: 2px;
}
.blog__link a svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 22px;
  height: 22px;
}
.blog__link a:hover {
  background-color: #d6e1ed;
}

.top-blog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .top-blog {
    margin-bottom: 0px;
  }
  .top-blog h2 {
    margin: 0;
  }
}
.top-blog__link a {
  color: rgb(32, 80, 116);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.3px;
  font-weight: 400;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
@media (max-width: 991px) {
  .top-blog__link a {
    font-size: 13px;
  }
}
.top-blog__link a:hover {
  text-decoration: underline;
}

.cta {
  margin-bottom: 15px;
  margin-top: 50px;
}
.cta__content {
  background-color: rgb(11, 11, 24);
  border-radius: 30px;
  padding: 50px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media (max-width: 1199px) {
  .cta__content {
    padding: 40px 40px;
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .cta__content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 36px 32px;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .cta__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 28px 24px;
    gap: 20px;
    border-radius: 24px;
  }
}
.cta__title {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media (max-width: 991px) {
  .cta__title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
@media (max-width: 768px) {
  .cta__title {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    width: 100%;
  }
}
.cta__title h2 {
  font-size: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
}
.cta__title h2 span {
  color: rgb(71, 145, 231);
}
.cta__desp {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 320px;
          flex: 0 1 320px;
}
@media (max-width: 991px) {
  .cta__desp {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
}
@media (max-width: 768px) {
  .cta__desp {
    width: 100%;
  }
}
.cta__desp p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}
.cta__form {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px;
  background-color: rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 991px) {
  .cta__form {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
@media (max-width: 768px) {
  .cta__form {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: transparent;
    border: none;
    gap: 10px;
  }
}
.cta__input {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  height: 60px;
  background: transparent;
  border: none;
  outline: none;
  padding: 0 20px;
  color: rgb(255, 255, 255);
  font-size: 17px;
  font-family: "Onest", sans-serif;
  background-color: rgb(255, 255, 255);
  color: rgba(0, 0, 0, 0.546) !important;
}
.cta__input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.546) !important;
}
.cta__input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.546) !important;
}
.cta__input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.546) !important;
}
.cta__input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.546) !important;
}
.cta__input::placeholder {
  color: rgba(0, 0, 0, 0.546) !important;
}
@media (max-width: 768px) {
  .cta__input {
    height: 52px;
    width: 100%;
    border-radius: 7px;
  }
}
.cta__btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  border-radius: 7px;
  right: 5px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  height: 50px;
  padding: 0 20px;
  background: -webkit-gradient(linear, left top, right top, from(#33B2DB), to(#4691E7));
  background: linear-gradient(90deg, #33B2DB 0%, #4691E7 100%);
  border: none;
  cursor: pointer;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1px;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  line-height: 1;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  font-family: "Bebas Neue", sans-serif;
}
.cta__btn:hover {
  opacity: 0.9;
}
@media (max-width: 768px) {
  .cta__btn {
    width: 100%;
    height: 52px;
    position: relative;
    border-radius: 7px;
    padding: 0 20px;
    right: 0;
    top: 0;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

section.blog {
  padding: 45px 0 35px 0 !important;
}
@media (max-width: 991px) {
  section.blog {
    padding: 25px 0 0px 0 !important;
  }
}

.cat-breadcrumbs {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .cat-breadcrumbs {
    margin-bottom: 20px;
  }
}
.cat-breadcrumbs ol {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px 0;
}
.cat-breadcrumbs li {
  list-style: none;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: rgba(32, 80, 116, 0.7);
  font-size: 14px;
  line-height: 1.3;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cat-breadcrumbs li svg {
  margin: 0 3px;
}
.cat-breadcrumbs a {
  color: rgba(32, 80, 116, 0.8);
  background-color: rgb(242, 245, 249);
  padding: 6px 10px;
  text-decoration: none;
  font-weight: 300;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 30px;
  gap: 10px;
}
@media (max-width: 991px) {
  .cat-breadcrumbs a {
    gap: 5px;
  }
}
.cat-breadcrumbs a span {
  color: rgb(32, 80, 116);
}
.cat-breadcrumbs a:hover {
  color: rgb(32, 80, 116);
  text-decoration: underline;
}
.cat-breadcrumbs span {
  color: rgb(0, 0, 0);
}

.margin-top {
  margin-top: 155px !important;
}

@media (max-width: 991px) {
  .margin-top {
    margin-top: 100px !important;
  }
}
@media (max-width: 768px) {
  .margin-top {
    margin-top: 10px !important;
  }
}
.single-blog-breadcrumbs {
  max-width: 834px !important;
  margin: 0 auto;
}

.single-article {
  padding: 0px 0 20px;
}
@media (max-width: 768px) {
  .single-article {
    padding: 25px 0 15px;
  }
}
.single-article article {
  max-width: 794px;
  margin: 0 auto;
}
.single-article h1 {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .single-article h1 {
    margin-bottom: 16px;
  }
}
.single-article img {
  display: block;
  width: 100%;
  min-width: 120%;
  -webkit-transform: translate(-10%, 0);
          transform: translate(-10%, 0);
  border-radius: 30px;
  margin-bottom: 35px;
  aspect-ratio: 1280/520;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .single-article img {
    border-radius: 20px;
    margin-bottom: 25px;
  }
}
.single-article h2 {
  margin-bottom: 24px;
  font-size: 30px;
  letter-spacing: 0.3px;
}
@media (max-width: 991px) {
  .single-article h2 {
    margin-bottom: 16px;
  }
}
.single-article .single-article__desp p {
  margin: 0 0 30px;
  color: rgba(11, 11, 24, 0.8);
  font-size: 24px;
  line-height: 1.4;
}
.single-article h3 {
  margin: 0 0 18px;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  color: rgb(11, 11, 24);
}
.single-article p {
  margin: 0 0 20px;
  color: rgba(11, 11, 24, 0.8);
  font-size: 18px;
  line-height: 1.55;
}
.single-article ul,
.single-article ol {
  margin: 0 0 28px;
  padding: 0;
}
.single-article ul li,
.single-article ol li {
  list-style: none;
  position: relative;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(11, 11, 24, 0.85);
}
.single-article ul {
  position: relative;
}
.single-article ul::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 80%;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  left: 4.3px;
  background-color: rgb(230, 236, 245);
  z-index: 2;
}
@media (max-width: 991px) {
  .single-article ul::after {
    height: 68%;
  }
}
.single-article ul li {
  padding-left: 20px;
  margin-bottom: 10px;
  margin-left: 5px;
}
.single-article ul li::before {
  content: "";
  width: 8px;
  z-index: 3;
  height: 8px;
  border-radius: 50%;
  background-color: rgb(184, 243, 67);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.single-article ol {
  counter-reset: single-article-counter;
}
.single-article ol li {
  counter-increment: single-article-counter;
  padding-left: 20px;
  margin-bottom: 10px;
  margin-left: 5px;
}
.single-article ol li::before {
  content: counter(single-article-counter);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: rgb(71, 145, 231);
  color: rgb(255, 255, 255);
  font-size: 10px;
  line-height: 1;
  font-weight: 600;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.single-article blockquote {
  margin: 0;
  padding: 20px;
  border: 1px solid rgb(51, 178, 219);
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.35);
  color: rgba(11, 11, 24, 0.85);
  font-size: 18px;
  line-height: 1.55;
}

.single-blog-main .blog {
  padding-top: 8px;
}

.single-blog-main .top-blog {
  margin-bottom: 42px;
}

.single-blog-main .top-blog__title h2 {
  font-size: 36px;
  text-transform: uppercase;
  line-height: 1.05;
}

@media (max-width: 768px) {
  .single-blog-main .blog__rows {
    padding-top: 30px;
  }
  .single-blog-main .top-blog {
    margin-bottom: 8px;
  }
}

/* статья */
 .margin-top {
    margin-top: 110px !important;
} 
 @media (max-width: 768px) {
    .margin-top {
        margin-top: 95px !important;
    }
nav.cat-breadcrumbs {
    margin-bottom: 0;
}

}

/* clamp -> fixed font-size overrides */
@media (max-width: 1024px) {
  .blog__title h3 { font-size: 18px; }
  .cta__title h2 { font-size: 34px; }
  .cta__desp p { font-size: 15px; }
  .cta__input { font-size: 16px; }
  .cta__btn { font-size: 15px; }
  .cat-breadcrumbs li { font-size: 13px; }
  .cat-breadcrumbs a { font-size: 11px; }
  .single-article h2 { font-size: 26px; }
  .single-article .single-article__desp p { font-size: 19px; }
  .single-article h3 { font-size: 22px; }
  .single-article p { font-size: 16px; }
  .single-article ol li { font-size: 16px; }
  .single-article blockquote { font-size: 16px; }
  .single-blog-main .top-blog__title h2 { font-size: 29px; }
}
@media (max-width: 767px) {
  .blog__title h3 { font-size: 17px; }
  .cta__title h2 { font-size: 30px; }
  .cta__desp p { font-size: 14px; }
  .cta__input { font-size: 16px; }
  .cta__btn { font-size: 15px; }
  .cat-breadcrumbs li { font-size: 12px; }
  .cat-breadcrumbs a { font-size: 10px; }
  .single-article h2 { font-size: 25px; }
  .single-article .single-article__desp p { font-size: 18px; }
  .single-article h3 { font-size: 21px; }
  .single-article p { font-size: 15px; }
  .single-article ol li { font-size: 15px; }
  .single-article blockquote { font-size: 15px; }
  .single-blog-main .top-blog__title h2 { font-size: 27px; }
}
