@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;
}

.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);
  }
}

.cat-pagination {
  background-color: rgb(219, 226, 235);
  border-radius: 18px;
  padding: 20px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  margin-top: 60px;
  margin-bottom: 20px;
}
@media (max-width: 640px) {
  .cat-pagination {
    border-radius: 14px;
    padding: 10px;
  }
}
.cat-pagination__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.cat-pagination__arrow:hover {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.cat-pagination__list {
  margin: 0;
  padding: 0;
  list-style: none;
  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: 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.cat-pagination__list li {
  list-style: none;
}
.cat-pagination__list a,
.cat-pagination__list span {
  min-width: 28px;
  line-height: 1;
  height: 40px;
  border-radius: 10px;
  padding: 14px 20px;
  font-family: "Bebas Neue", sans-serif;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: rgb(0, 0, 0);
  font-size: 16px;
  line-height: 1;
  background-color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.cat-pagination__list a.is-active {
  color: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left top, right top, from(#33B2DB), to(#4691E7));
  background: linear-gradient(90deg, #33B2DB 0%, #4691E7 100%);
}
.cat-pagination__list span {
  background-color: transparent;
  min-width: auto;
  padding: 0;
}

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

@media (max-width: 991px) {
  .margin-top {
    margin-top: 100px !important;
  }
}
@media (max-width: 768px) {
  .margin-top {
    margin-top: 100px !important;
  }
}
.blog-catalog h1 {
  font-size: 36px;
  margin-bottom: 40px;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .blog-catalog h1 {
    margin-bottom: 20px;
  }
}

.blog-catalog__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 26px minmax(0, 1fr) 26px minmax(0, 1fr);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
@media (max-width: 1199px) {
  .blog-catalog__grid {
    gap: 16px;
  }
}
@media (max-width: 991px) {
  .blog-catalog__grid {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .blog-catalog__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.blog-catalog-card__cont {
  padding: 8px 30px 18px 30px;
}
@media (max-width: 991px) {
  .blog-catalog-card__cont {
    padding: 8px 10px 10px 10px;
  }
}

.blog-catalog-card {
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 28px;
  -webkit-box-shadow: 0px 0px 38px 0px rgba(197, 197, 226, 0.32);
          box-shadow: 0px 0px 38px 0px rgba(197, 197, 226, 0.32);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
@media (max-width: 768px) {
  .blog-catalog-card {
    border-radius: 20px;
    padding: 8px 8px 14px;
  }
}
.blog-catalog-card img {
  display: block;
  width: 100%;
  aspect-ratio: 382/270;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 22px;
  margin-bottom: 14px;
}
@media (max-width: 768px) {
  .blog-catalog-card img {
    border-radius: 16px;
    margin-bottom: 12px;
  }
}
.blog-catalog-card h3 {
  margin: 0 0 8px;
  color: rgb(0, 0, 0);
  font-size: 20px;
  text-transform: none;
  line-height: 1.2;
  letter-spacing: 0.3px;
  font-family: "Onest", sans-serif;
  font-weight: 400;
  min-height: 84px;
}
@media (max-width: 640px) {
  .blog-catalog-card h3 {
    min-height: 0;
  }
}
.blog-catalog-card__btn {
  margin-top: auto;
  width: 100%;
  min-height: 40px;
  background-color: rgb(230, 236, 245);
  border-radius: 8px;
  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: 8px;
  color: rgb(32, 80, 116);
  text-transform: uppercase;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.blog-catalog-card__btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.blog-catalog-card__btn span {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1;
  margin-top: 1px;
}
.blog-catalog-card__btn svg {
  width: 18px;
  height: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.blog-catalog-card__btn:hover {
  background-color: rgb(205, 222, 240);
}

.blog-filter {
  background-color: rgb(5, 7, 29);
  border-radius: 40px;
  padding: 30px;
  position: relative;
}
@media (max-width: 991px) {
  .blog-filter {
    grid-column: 1/-1;
    -webkit-box-ordinal-group: 10001;
        -ms-flex-order: 10000;
            order: 10000;
    border-radius: 24px;
    padding: 20px;
  }
}
.blog-filter h2 {
  margin-bottom: 20px;
  color: rgb(255, 255, 255);
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
}
.blog-filter__list {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.blog-filter__item {
  list-style: none;
  position: relative;
}
.blog-filter__item:hover .blog-filter__sublist, .blog-filter__item:focus-within .blog-filter__sublist {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translate(0px, -50%);
          transform: translate(0px, -50%);
}
.blog-filter__item:nth-last-child(-n+2) .blog-filter__sublist {
  top: auto;
  bottom: 0;
  -webkit-transform: translate(12px, 0);
          transform: translate(12px, 0);
}
.blog-filter__item:nth-last-child(-n+2):hover .blog-filter__sublist, .blog-filter__item:nth-last-child(-n+2):focus-within .blog-filter__sublist {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.blog-filter__link {
  width: 100%;
  min-height: 32px;
  border-radius: 8px;
  padding: 6px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.25;
}
.blog-filter__link .nones {
  position: relative;
  z-index: 4;
  color: #fff !important;
}
.blog-filter__link .nones::after {
  content: "";
  display: none;
}
.blog-filter__link .nones::before {
  content: "";
  display: none;
}
.blog-filter__link span {
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
  border-radius: 7px;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  position: relative;
}
.blog-filter__link span::before {
  content: "";
  background-color: rgba(242, 245, 249, 0.1);
  border-radius: 7px;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.blog-filter__link span::after {
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(#33B2DB), to(#4691E7));
  background: linear-gradient(90deg, #33B2DB 0%, #4691E7 100%);
  border-radius: 7px;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.blog-filter__link:hover span::after {
  content: "";
  opacity: 1;
}
.blog-filter__link:hover .blog-filter__count {
  border: 1px solid transparent;
}
.blog-filter__link.is-active {
  color: rgb(255, 255, 255);
}
.blog-filter__link.is-active span {
  background: -webkit-gradient(linear, left top, right top, from(#33B2DB), to(#4691E7));
  background: linear-gradient(90deg, #33B2DB 0%, #4691E7 100%);
}
.blog-filter__link.is-active .blog-filter__count {
  background: -webkit-gradient(linear, left top, right top, from(#33B2DB), to(#4691E7));
  background: linear-gradient(90deg, #33B2DB 0%, #4691E7 100%);
}
.blog-filter__count {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 34px;
  height: 30px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.85);
}
.blog-filter__sublist {
  position: absolute;
  top: 50%;
  left: calc(100% + 10px);
  -webkit-transform: translate(12px, -50%);
          transform: translate(12px, -50%);
  width: 260px;
  margin: 0;
  padding: 10px;
  border-radius: 12px;
  list-style: none;
  background-color: rgba(15, 21, 45, 0.96);
  -webkit-box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
          box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  z-index: 6;
}
.blog-filter__sublist li {
  margin-bottom: 4px;
}
.blog-filter__sublist li:last-child {
  margin-bottom: 0;
}
.blog-filter__sublist a {
  width: 100%;
  min-height: 30px;
  border-radius: 7px;
  padding: 6px 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  line-height: 1.25;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.blog-filter__sublist a:hover {
  color: rgb(255, 255, 255);
  background-color: rgba(71, 145, 231, 0.85);
}

.blog-pagination {
  margin-top: 28px;
  background-color: rgb(219, 226, 235);
  border-radius: 18px;
  padding: 18px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
}
@media (max-width: 640px) {
  .blog-pagination {
    margin-top: 22px;
    border-radius: 14px;
    padding: 10px 10px;
  }
}
.blog-pagination__arrow {
  border-radius: 50%;
  border: 1px solid rgba(11, 11, 24, 0.45);
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.blog-pagination__arrow svg {
  width: 48px;
  min-width: 48px;
  height: 48px;
}
.blog-pagination__arrow:hover {
  background-color: rgb(255, 255, 255);
  border-color: rgba(11, 11, 24, 0.7);
}
.blog-pagination__list {
  margin: 0;
  padding: 0;
  list-style: none;
  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: 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.blog-pagination__list li {
  list-style: none;
}
.blog-pagination__list a,
.blog-pagination__list span {
  min-width: 28px;
  height: 28px;
  border-radius: 7px;
  padding: 0 8px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: rgba(11, 11, 24, 0.9);
  font-size: 13px;
  line-height: 1;
  background-color: rgba(255, 255, 255, 0.8);
}
.blog-pagination__list a.is-active {
  color: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left top, right top, from(#33B2DB), to(#4691E7));
  background: linear-gradient(90deg, #33B2DB 0%, #4691E7 100%);
}
.blog-pagination__list span {
  background-color: transparent;
  min-width: auto;
  padding: 0;
}

.blog-page .cta {
  margin-top: 30px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .blog-page .cta {
    margin-top: 24px;
  }
}

@media (max-width: 991px) {
  .blog-filter__sublist {
    display: none;
  }
}


.margin-top {
    margin-top: 95px !important;
}
@media (max-width: 768px) {
    .margin-top {
        margin-top: 60px !important;
    }
}



/* cat */
	  .page-title .container {
    max-width: 100%;
    margin-inline: auto !important;
    padding-inline: 0 !important;
}
.main-page-wrapper  .container {
    max-width: 100%;
    margin-inline: auto !important;
    padding-inline: 0 !important;
}

.main-page-wrapper .container {
    padding: 0 20px !important;
}

/* clamp -> fixed font-size overrides */
@media (max-width: 1024px) {
  .cta__title h2 { font-size: 34px; }
  .cta__desp p { font-size: 15px; }
  .cta__input { font-size: 16px; }
  .cta__btn { font-size: 15px; }
  .cat-pagination__list span { font-size: 15px; }
  .blog-catalog h1 { font-size: 29px; }
  .blog-catalog-card h3 { font-size: 18px; }
  .blog-catalog-card__btn span { font-size: 13px; }
  .blog-filter h2 { font-size: 20px; }
  .blog-filter__link { font-size: 13px; }
  .blog-filter__sublist a { font-size: 12px; }
}
@media (max-width: 767px) {
  .cta__title h2 { font-size: 30px; }
  .cta__desp p { font-size: 14px; }
  .cta__input { font-size: 16px; }
  .cta__btn { font-size: 15px; }
  .cat-pagination__list span { font-size: 14px; }
  .blog-catalog h1 { font-size: 27px; }
  .blog-catalog-card h3 { font-size: 17px; }
  .blog-catalog-card__btn span { font-size: 13px; }
  .blog-filter h2 { font-size: 19px; }
  .blog-filter__link { font-size: 13px; }
  .blog-filter__sublist a { font-size: 12px; }
}
