* {
  border: none;
  margin: 0;
  padding: 0;
}
*,
:after,
:before {
  box-sizing: border-box;
}
a,
a:link,
a:visited {
  color: #000;
}
a,
a:hover,
a:link,
a:visited {
  text-decoration: none;
}
aside,
footer,
header,
main,
nav,
section {
  display: block;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}
img {
  vertical-align: top;
}
img,
svg {
  height: auto;
  max-width: 100%;
}
address {
  font-style: normal;
}
button,
input,
select,
textarea {
  background-color: transparent;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
}
input::-ms-clear {
  display: none;
}
button,
input[type="submit"] {
  background-color: transparent;
  background: none;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
}
button:active,
button:focus,
input:active,
input:focus,
textarea:active,
textarea:focus {
  outline: none;
}
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
label {
  cursor: pointer;
}
legend {
  display: block;
}
body {
  font-family: Inter;
}
:root {
  --header-color: #1e1f1f;
  --gray-bg: #efefef;
  --color-primary: #ffb800;
  --color-secondary: #ff9100;
  --color-light-gray: #f9f9f9;
  --color-lightest-gray: #f0f0f0;
  --color-dark-gray: #333;
  --color-border: #ddd;
  --color-white: #fff;
  --color-black: #000;
  --width-blocks: clamp(280px, 90vw, 1410px);
  --width-sidebar: clamp(200px, 25vw, 320px);
  --width-card: clamp(250px, 30vw, 350px);
  --font-size-s: clamp(13px, 4vw, 15px);
  --font-size-m: clamp(14px, 1.5vw, 18px);
  --font-size-subtitle: clamp(16px, 2vw, 22px);
  --font-size-h1: clamp(28px, 5.5vw, 58px);
  --font-size-h2: clamp(24px, 5vw, 45px);
  --font-size-h3: clamp(22px, 4vw, 32px);
  --font-size-h4: clamp(19px, 3vw, 26px);
  --font-size-h5: clamp(18px, 2.5vw, 22px);
  --font-size-h6: clamp(17px, 2vw, 18px);
  --font-size-card-title: clamp(20px, 3vw, 25px);
}
h1 {
  font-size: var(--font-size-h1);
  line-height: 105%;
}
h1,
h2 {
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
h2 {
  font-size: var(--font-size-h2);
  line-height: 110%;
}
h2 span {
  color: #ebac06;
}
table {
  border-radius: 25px;
  overflow: hidden;
  width: 100%;
}
table tbody {
  background-color: #fbfbfb;
}
table td {
  padding: 25px;
}
table td.yellow {
  color: #ebac06;
  font-weight: 500;
}
table tr:nth-child(2n) td {
  background-color: #efefef;
}
@media (max-width: 640px) {
  td {
	font-size: 12px !important;
    padding: 8px !important;
  }
}

a,
b,
li,
strong,
td {
  font-size: var(--font-size-m);
}
.archive {
  margin: 90px auto 110px;
  max-width: var(--width-blocks);
}
.archive_title {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}
.archive_title h1 {
  line-height: 1;
}
.archive_title_count {
  margin-top: 5px;
}
.archive_title_count p {
  opacity: 0.4;
}
.archive_content {
  display: flex;
  gap: 30px;
  margin: 0 auto;
  max-width: var(--width-blocks);
}
.archive_content .filters {
  background-color: #f6f5f5;
  border-radius: 30px;
  margin-bottom: 20px;
  min-width: 330px;
  padding: 25px 30px;
}
.archive_content .filters h3 {
  border-bottom: 1px solid #dfdfdf;
  font-size: var(--font-size-m);
  font-weight: 500;
  padding-bottom: 25px;
  text-align: center;
}
.archive_content .filters .accordion-header {
  cursor: pointer;
  padding: 10px;
  position: relative;
}
.archive_content .filters .accordion-header span {
  font-family: Inter;
  font-size: var(--font-size-m);
  font-weight: 400;
  transition: all 0.5s ease;
}
.archive_content .filters .accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.archive_content .filters .accordion-body ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.archive_content .filters .accordion-body li {
  margin-bottom: 5px;
  padding: 5px 10px;
}
.archive_content .filters .accordion-body.open {
  max-height: 500px;
}
.archive_content .filters .hidden-checkbox {
  display: none;
}
.archive_content .filters .styled-checkbox-link {
  align-items: center;
  cursor: pointer;
  display: flex;
  text-decoration: none;
}
.archive_content .filters .styled-checkbox-link label:before {
  background-color: transparent;
  border: 2px solid #ccc;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 20px;
  transition: all 0.3s ease;
  width: 20px;
}
.archive_content .filters .styled-checkbox-link input:checked + label:before {
  background-color: #ffc107;
  border-color: #ffc107;
}
.archive_content .filters .styled-checkbox-link label {
  display: flex;
  font-size: var(--font-size-m);
  font-weight: 400;
  gap: 10px;
}
@media (max-width: 1279px) {
  .archive_content .filters {
    min-width: 270px;
  }
}
@media (max-width: 480px) {
  .archive_content .filters {
    padding: 15px 20px;
  }
  .archive_content .filters h3 {
    padding-bottom: 15px;
  }
}
.archive_content .drop-filter {
  display: block;
  font-size: var(--font-size-m);
  margin: 0 auto;
  text-decoration: underline;
  width: fit-content;
}
.archive_content_items {
  display: grid;
  gap: 85px 29px;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 1279px) {
  .archive_content_items {
    gap: 85px 15px;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1023px) {
  .archive_content_items {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 950px) {
  .archive_content_items {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .archive_content_items {
    grid-template-columns: 1fr;
  }
}
.archive_content_item {
  position: relative;
}
@media (max-width: 640px) {
  .archive_content_item {
    position: relative;
    width: 86svw;
  }
}
.archive_content_item_char {
  margin-top: 15px;
  margin-left: -5px;
}
.archive_content_item_char table {
  border-radius: 10px;
}

.archive_content_item_char td {
  font-size: 12px !important;
  padding: 10px 5px;
}
.archive_content_item_char tr {
  display: grid;
  grid-template-columns: 1fr auto;
}

@media (max-width: 640px) {
  .archive_content_item_char table {
    border-radius: 10px;
    width: 100%;
  }
  .archive_content_item_char tbody {
    width: 100%;
  }
}

.archive_content_item_container {
  background-color: #efefef;
  border-radius: 30px;
  overflow: hidden;
  padding-bottom: 55px;
  height: 100%;
}
.archive_content_item_content {
  margin-top: 20px;
  padding: 0 30px;
}
.archive_content_item_content h3 {
  font-size: var(--font-size-subtitle);
  font-weight: 600;
  margin-bottom: 10px;
}
.archive_content_item_content p {
  font-size: var(--font-size-m);
  font-weight: 600;
}
.archive_content_item_content .availability-block {
  align-items: center;
  border: 1px solid;
  border-radius: 20px;
  display: flex;
  font-size: var(--font-size-m);
  gap: 10px;
  margin-bottom: 10px;
  padding: 7px 18px;
  width: fit-content;
}
.archive_content_item_content .availability-block:before {
  border-radius: 50%;
  content: "";
  display: block;
  height: 10px;
  width: 10px;
}
.archive_content_item_content .availability-green {
  border-color: #1bd704;
  color: #1bd704;
}
.archive_content_item_content .availability-green:before {
  background-color: #1bd704;
}
.archive_content_item_content .availability-red {
  border-color: #d72404;
  color: #d72404;
}
.archive_content_item_content .availability-red:before {
  background-color: #d72404;
}
.archive_content_item_content .availability-orange {
  border-color: #ffbe00;
  color: #ffbe00;
}
.archive_content_item_content .availability-orange:before {
  background-color: #ffbe00;
}
.archive_content_item_button {
  bottom: -30px !important;
  right: -15px !important;
}
.archive_content_item_image {
  height: 250px;
}
.archive_content_item_image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 1023px) {
  .archive .accordion_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .archive_content {
    flex-direction: column;
  }
}
@media (max-width: 640px) {
  .archive .accordion_container {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.archive .pagination {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 90px;
}
.archive .pagination .page-numbers {
  color: rgba(33, 33, 33, 0.486);
  font-weight: 500;
  margin: 0 7px;
}
.archive .pagination .current {
  color: #212121;
}
.archive .pagination .prev {
  border: 1px solid rgba(33, 33, 33, 0.486);
  border-radius: 50%;
  margin-right: 21px;
}
.archive .pagination .next,
.archive .pagination .prev {
  align-items: center;
  display: flex;
  height: 60px;
  justify-content: center;
  width: 60px;
}
.archive .pagination .next {
  background-color: #ffb800;
  border-radius: 50%;
  margin-left: 21px;
}
.archive .pagination .next img,
.archive .pagination .prev img {
  max-width: 22px;
  object-fit: contain;
}
@media (max-width: 440px) {
  .archive .pagination .next,
  .archive .pagination .prev {
    height: 45px;
    width: 45px;
  }
}
@media (max-width: 480px) {
  .archive {
    margin: 45px auto;
  }
}
.breadcrumbs-block.tech {
  background-color: #eee;
}
.breadcrumbs {
  color: #000;
  font-size: var(--font-size-m);
  margin: 0 auto;
  max-width: var(--width-blocks);
  opacity: 0.6;
  padding-top: 30px;
}
.breadcrumbs a {
  margin-bottom: 10px;
  transition: all 0.5s ease;
}
.breadcrumbs a:hover {
  color: #ffb800;
  opacity: 1;
}
.header {
  background: #1b1c1c;
  padding: 29px 0;
}
.header a {
  color: #fff;
  font-size: calc(var(--font-size-m) - 1px);
  font-weight: 400;
}
.header .container {
  align-items: center;
  display: flex;
  gap: 5px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--width-blocks);
  padding: 0 10px;
  position: relative;
}
.header .logo img {
  height: 40px;
  max-width: clamp(180px, 14vw, 235px);
  width: 100%;
}
@media (max-width: 1250px) {
  .header .logo img {
    max-width: 235px;
  }
}
@media (max-width: 480px) {
  .header .logo img {
    max-width: 160px;
  }
}
.header .nav-all {
  display: flex;
  gap: 10px;
}
.header .nav {
  align-items: center;
  display: flex;
  gap: clamp(15px, 1.2vw, 35px);
  justify-content: center;
}
.header .nav a:hover {
  text-decoration: underline;
}
@media (max-width: 1250px) {
  .header .nav {
    background: #1b1c1c;
    border-radius: 8px;
    display: none;
    flex-direction: column;
    padding: 15px;
    position: absolute;
    right: 10px;
    top: 80px;
    width: 200px;
    z-index: 10;
  }
}
.header .nav.active {
  align-items: start;
  display: flex;
  padding: 20px;
  right: 0;
  top: 60px;
  width: 100%;
}
.header .contacts {
  display: flex;
  gap: clamp(13px, 1.1vw, 30px);
}
@media (max-width: 1250px) {
  .header .contacts {
    margin-right: 45px;
  }
}
@media (max-width: 800px) {
  .header .contacts {
    background: #1b1c1c;
    border-radius: 8px;
    display: none;
    flex-direction: column-reverse;
    margin-right: 0;
    padding: 15px;
    position: absolute;
    right: 10px;
    top: 240px;
    width: 200px;
    z-index: 10;
  }
  .header .contacts.active {
    display: flex;
    padding: 20px;
    right: 0;
    top: 230px;
    width: 100%;
  }
}
.header .contacts .icon {
  align-items: center;
  display: flex;
  gap: clamp(8px, 0.8vw, 15px);
}
.header .contacts .icon img {
  max-width: 40px;
  width: 100%;
}
@media (max-width: 1500px) {
  .header .contacts .icon img {
    max-width: 35px;
  }
}
.header .contacts .icon a {
  font-size: var(--font-size-m);
  font-weight: 500;
}
@media (max-width: 800px) {
  .header .contacts .icon a {
    font-weight: 400;
  }
}
.header .burger {
  cursor: pointer;
  display: none;
  flex-direction: column;
  height: 28px;
  justify-content: space-between;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
}
.header .burger span {
  background: #fff;
  border-radius: 2px;
  display: block;
  height: 3px;
  transition: 0.3s;
  width: 100%;
}
.header .burger.active span:first-child {
  transform: translateY(12px) rotate(45deg);
}
.header .burger.active span:nth-child(2) {
  opacity: 0;
}
.header .burger.active span:nth-child(3) {
  transform: translateY(-12px) rotate(-45deg);
}
@media (max-width: 1250px) {
  .header .burger {
    display: flex;
  }
}
.main {
  background: #eee;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  width: 100%;
}
.main .swiper {
  margin: 30px auto 30px auto;
  max-width: var(--width-blocks);  
  position: relative;
  width: 100svw;
  max-height:715px;
	border-radius:20px
}

.main .swiper .swiper-slide {
  align-items: center;
  display: flex;
  justify-content: center;
}
.main .hero {
  align-items: center;
  display: flex;
  justify-content: space-between;
  max-width: var(--width-blocks);
  padding: 0 10px;
  width: 100%;
}
@media (max-width: 800px) {
  .main .hero {
    flex-direction: column-reverse;
  }
}
.main .hero__content {
  max-width: 500px;
}
.main .hero__content .title {
  margin-bottom: 25px;
}
.main .hero__content .subtitle {
  color: #333;
  font-size: var(--font-size-subtitle);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 150%;
  margin-bottom: 42px;
  text-align: left;
}
.main .hero__content .btn {
  align-items: center;
  background: #ffb800;
  border-radius: 100px;
  display: flex;
  gap: 10px;
  padding: 23px 68px;
  width: fit-content;
}
.main .hero__content .btn p {
  font-size: var(--font-size-s);
  font-weight: 700;
  font-weight: 500;
  line-height: 18px;
  text-transform: uppercase;
}
@media (max-width: 480px) {
  .main .hero__content .btn {
    padding: 12px 32px;
  }
}
.main .hero__image img {
  height: auto;
  width: 100%;
  max-height: 410px;
}
@media (max-width: 800px) {
  .main .hero__image img {
    max-width: 60svw;
  }
}
.main .btn-swiper {
  display: flex;
  gap: 20px;
  position: absolute;
  right: 3%;
  top: 90%;
  z-index: 10;
}

@media (max-width: 800px) {
	.main .btn-swiper{
		opacity:0;
		visibility:hidden;
	}
}

.main .btn-swiper .swiper-button-next,
.main .btn-swiper .swiper-button-prev {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: #fff;
  display: flex;
  height: 60px;
  justify-content: center;
  position: static;
  transition: background 0.3s ease;
  width: 60px;
}
.main .btn-swiper .swiper-button-next img,
.main .btn-swiper .swiper-button-prev img {
  user-select: none;
}
.main .btn-swiper .swiper-button-next:hover,
.main .btn-swiper .swiper-button-prev:hover {
  background-color: #ffbe00;
}
.main .btn-swiper .swiper-button-next:after,
.main .btn-swiper .swiper-button-prev:after {
  content: none;
}
.main .btn-swiper .swiper-button-prev img {
  transform: rotate(180deg);
}
@media (max-width: 480px) {
  .main .btn-swiper {
    opacity: 0;
    visibility: hidden;
  }
}
.main .catalog_container {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin: 60px auto 90px;
  max-width: var(--width-blocks);
}
@media (max-width: 1020px) {
  .main .catalog_container {
    flex-direction: column;
  }
}
.main .catalog_swiper {
  max-height: 590px;
  max-width: 690px;
  position: relative;
}
.main .catalog_swiper .swiper {
  height: 300px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.main .catalog_swiper .swiper-slide {
  background-position: 50%;
  background-size: cover;
}
.main .catalog_swiper .mySwiper2 {
  height: 80%;
  width: 100%;
}
@media (max-width: 480px) {
  .main .catalog_swiper .mySwiper2 {
    height: 320px;
  }
}
.main .catalog_swiper .mySwiper {
  box-sizing: border-box;
  height: 20%;
  padding: 10px 0;
}
.main .catalog_swiper .mini {
  margin: 0 auto;
  max-width: 75%;
}
@media (max-width: 1440px) {
  .main .catalog_swiper .mini {
    max-width: 60%;
  }
}
@media (max-width: 1280px) {
  .main .catalog_swiper .mini {
    max-width: 50%;
  }
}
@media (max-width: 1020px) {
  .main .catalog_swiper .mini {
    display: none;
  }
}
.main .catalog_swiper .mySwiper .swiper-slide {
  height: 100%;
  opacity: 0.4;
  width: 25%;
}

@media (max-width: 1020px) {
  .main .catalog_swiper .swiper-slide {
    min-height: 60svh;
    max-height: 470px !important;
  }
  .main .catalog_swiper .swiper-slide img {
    height: 100%;
  }
}

@media (max-width: 440px) {
  .main .catalog_swiper .swiper-slide {
    min-height: unset;
    max-height: 320px !important;
  }
  .main .catalog_swiper .swiper-slide img {
    object-fit: contain;
    height: 100%;
  }
}

.main .catalog_swiper .mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.main .catalog_swiper .swiper-slide img {
  border-radius: 30px;
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.main .catalog_swiper .swiper-button-next {
  bottom: 20px;
  left: unset;
  right: 0;
  top: unset;
}
.main .catalog_swiper .swiper-button-prev {
  bottom: 20px;
  left: 0;
  right: unset;
  top: unset;
}
.main .catalog_swiper .swiper-button-prev img {
  transform: rotate(180deg);
}
@media (max-width: 1020px) {
  .main .catalog_swiper .swiper-button-next,
  .main .catalog_swiper .swiper-button-prev {
    bottom: -10px;
  }
  .main .catalog_swiper .swiper-button-next {
    right: -10px;
  }
  .main .catalog_swiper .swiper-button-prev {
    left: -10px;
  }
}
.main .catalog_swiper .catalog__button:after {
  display: none;
}
@media (max-width: 1440px) {
  .main .catalog_swiper {
    max-width: 520px;
  }
}
@media (max-width: 1280px) {
  .main .catalog_swiper {
    max-width: 360px;
  }
}
@media (max-width: 1020px) {
  .main .catalog_swiper {
    max-width: none;
  }
}
.main .catalog_content {
  background-color: #fff;
  border-radius: 55px;
  padding: 40px;
  width: 100%;
}
.main .catalog_content h1 {
  font-size: var(--font-size-h2);
  margin-bottom: 20px;
}
.main .catalog_content h3 {
  font-size: var(--font-size-card-title);
  font-weight: 700;
  margin-bottom: 20px;
}
.main .catalog_content .availability-block {
  align-items: center;
  border: 1px solid;
  border-radius: 20px;
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  padding: 7px 24px;
  width: fit-content;
}
.main .catalog_content .availability-block:before {
  border-radius: 50%;
  content: "";
  display: block;
  height: 10px;
  width: 10px;
}
.main .catalog_content .availability-green {
  border-color: #1bd704;
  color: #1bd704;
}
.main .catalog_content .availability-green:before {
  background-color: #1bd704;
}
.main .catalog_content .availability-red {
  border-color: #d72404;
  color: #d72404;
}
.main .catalog_content .availability-red:before {
  background-color: #d72404;
}
.main .catalog_content .availability-orange {
  border-color: #ffbe00;
  color: #ffbe00;
}
.main .catalog_content .availability-orange:before {
  background-color: #ffbe00;
}
.main .catalog_content .catalog_content_btn {
  align-items: center;
  background-color: #ffb800;
  border-radius: 30px;
  display: flex;
  font-size: var(--font-size-m);
  gap: 8px;
  margin: 20px auto 0;
  padding: 22px 60px;
  text-transform: uppercase;
}
.main .catalog_content .catalog_content_btn img {
  margin-top: 3px;
  max-width: 22px;
}
@media (max-width: 480px) {
  .main .catalog_content {
    border-radius: 30px;
    padding: 20px;
  }
  .main .catalog_content .catalog_content_btn {
    padding: 12px 30px;
  }
}
.about-us {
  margin: 90px auto;
  max-width: var(--width-blocks);
}
.about-us__top {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media (max-width: 750px) {
  .about-us__top {
    flex-direction: column;
  }
}
.about-us__top .title {
  max-width: 600px;
}
.about-us__top .description {
  color: #212121;
  font-size: var(--font-size-m);
  font-weight: 400;
  line-height: 160%;
  max-width: 690px;
}
.about-us__features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.about-us__features .feature {
  background-color: var(--gray-bg);
  border-radius: 55px;
  max-width: clamp(350px, 25vw, 450px);
  overflow: hidden;
  padding: 0 40px 40px;
  position: relative;
  text-align: left;
  transition: box-shadow 0.3s ease-in-out;
}
.about-us__features .feature:hover {
  box-shadow: 1px 1px 5px 5px rgba(0, 0, 0, 0.1);
}
.about-us__features .feature__icon {
  left: -60px;
  position: relative;
  top: -30px;
}
.about-us__features .feature__icon img {
  height: 210px;
  width: 210px;
}
.about-us__features .feature__title {
  font-size: var(--font-size-card-title);
  font-weight: 500;
  line-height: 110%;
  margin-bottom: 15px;
  text-align: left;
}
.about-us__features .feature__text {
  color: rgba(33, 33, 33, 0.8);
  font-size: var(--font-size-m);
  font-weight: 400;
  line-height: 140%;
}
.catalog {
  background-color: var(--gray-bg);
}
.catalog .conteiner {
  margin: 0 auto;
  max-width: var(--width-blocks);
  padding: 90px 0;
}
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  margin-top: 50px;
}
@media (max-width: 640px) {
  .catalog__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
.catalog__item {
  align-items: center;
  border: 1px solid #dfdfdf;
  display: flex;
  flex-direction: column;
  padding: 30px 10px;
  position: relative;
}
.catalog__item:before {
  background: #fff;
  border-radius: 50%;
  content: "";
  height: 310px;
  position: absolute;
  width: 310px;
  z-index: 0;
  transition:0.5s ease all;
}
.catalog__item:hover:before{
	background:#ecac06;
	transition:0.5s ease all;
}
.catalog__item_content {
  position: relative;
  width: 330px;
  cursor: pointer;
}
.catalog__item img {
  height: 300px;
  max-width: 300px;
  object-fit: contain;
  object-position: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.catalog__item h3 {
  color: #212121;
  font-size: var(--font-size-card-title);
  font-weight: 500;
  line-height: 110%;
  margin-top: 50px;
}
.catalog__item p {
  color: rgba(33, 33, 33, 0.6);
  font-size: calc(var(--font-size-m) - 1);
  font-weight: 400;
  line-height: 21px;
}
@media (max-width: 640px) {
  .catalog__item:before {
    background: #fff;
    border-radius: 50%;
    content: "";
    height: 290px;
    position: absolute;
    width: 290px;
    z-index: 0;
  }
  .catalog__item_content {
    position: relative;
    width: 290px;
  }
  .catalog__item img {
    height: 260px;
  }
}
.catalog__button {
  align-items: center;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  bottom: 85px;
  display: flex;
  height: 80px;
  justify-content: center;
  overflow: hidden;
  position: absolute;
  right: 20px;
  transition: 0.3s ease all;
  width: 80px;
}
.catalog__button:hover {
  bottom: 90px;
}
.catalog__button img {
  max-width: 24px;
}
@media (max-width: 640px) {
  .catalog__button {
    bottom: 55px;
    right: 0;
  }
}
.our-services {
  margin: 90px auto;
  max-width: var(--width-blocks);
}
.our-services__content {
  align-items: stretch;
  display: flex;
  gap: 30px;
  margin-top: 50px;
}
@media (max-width: 1250px) {
  .our-services__content {
    align-items: center;
  }
}
.our-services .left,
.our-services .right {
  align-items: center;
  display: flex;
  flex: 1;
  flex-direction: column;
  height: clamp(400px, 45vw, 610px);
  justify-content: center;
  max-height: 610px;
  max-width: 100%;
  width: 50%;
}
@media (max-width: 1250px) {
  .our-services .left,
  .our-services .right {
    align-items: start;
    height: auto;
    max-height: fit-content;
  }
}
.our-services .left {
  background: var(--gray-bg);
  border-radius: 55px;
}
@media (max-width: 1250px) {
  .our-services .right {
    display: none;
  }
}
.our-services .right img {
  border-radius: 55px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.our-services .service {
  align-items: center;
  border-bottom: 1px solid #dfdfdf;
  display: flex;
  padding: clamp(20px, 2vw + 20px, 41px);
  width: 100%;
}
.our-services .service:last-child {
  border-bottom: none;
}
.our-services .service__icon {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-right: clamp(10px, 2vw + 10px, 35px);
}
.our-services .service__icon img {
  height: 90px;
  min-width: 60px;
  width: 60px;
}
.our-services .service__info h3 {
  font-size: var(--font-size-card-title);
  font-weight: 700;
}
.our-services .service__info p {
  color: rgba(33, 33, 33, 0.8);
  font-size: calc(var(--font-size-m) - 1);
  margin-top: 12px;
}
.our-services .service__info a {
  align-items: center;
  color: #212121;
  display: inline-block;
  display: flex;
  font-size: 15px;
  font-weight: 500;
  gap: 10px;
  line-height: 18px;
  margin-top: 22px;
  text-transform: uppercase;
  width: fit-content;
}
.our-services .service__info a:hover {
  text-decoration: underline;
}
.news {
  background-color: var(--gray-bg);
}
.news .conteiner {
  margin: 0 auto;
  max-width: var(--width-blocks);
  padding: 90px 0;
}
.news__content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 50px;
}
.news__content .news-card {
  background: #fff;
  border-radius: 55px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: clamp(400px, 35vw, 450px);
  overflow: hidden;
  text-align: left;
}
.news__content .news-card__img {
  height: 315px;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 480px) {
  .news__content .news-card__img {
    height: 220px;
  }
}
.news__content .news-card__info {
  padding: 35px 40px 30px;
}
.news__content .news-card__date {
  color: rgba(33, 33, 33, 0.62);
  font-size: calc(var(--font-size-m) - 1px);
  font-weight: 300;
  line-height: 140%;
  margin-bottom: 10px;
}
.news__content .news-card__title {
  color: #212121;
  font-size: var(--font-size-card-title);
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 60px;
}
@media (max-width: 480px) {
  .news__content .news-card__title {
    margin-bottom: 30px;
  }
}
.news__content .news-card__link {
  align-items: center;
  border-top: 1px solid #dfdfdf;
  display: flex;
  font-size: var(--font-size-m);
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  padding-top: 32px;
  text-align: center;
}
.news__content .news-card__link:hover {
  text-decoration: underline;
}
@media (max-width: 480px) {
  .news__content .news-card__link {
    padding-top: 20px;
  }
  .news__content .news-card {
    border-radius: 35px;
  }
}
.news .btn-wrapp {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 35px;
}
.news__btn {
  background: #dfdfdf;
  border-radius: 100px;
  cursor: pointer;
  font-size: var(--font-size-m);
  font-weight: 400;
  line-height: 24px;
  padding: 22px 65px;
}
.news__btn:hover {
  background: #d6d5d5;
}
@media (max-width: 480px) {
  .news__btn {
    padding: 12px 32px;
  }
}
.consultant-form {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 90px auto;
  max-width: var(--width-blocks);
}
.consultant-form__title {
  max-width: 615px;
  text-align: center;
}
.consultant-form__subtitle {
  font-size: var(--font-size-m);
  font-weight: 400;
  line-height: 160%;
  margin-top: 12px;
}
.consultant-form__content {
  align-items: center;
  display: flex;
  gap: 30px;
  margin-top: 30px;
}
.consultant-form__content .left {
  background-color: var(--gray-bg);
  border-radius: 55px;
  padding: clamp(20px, 4vw + 10px, 50px);
}
.consultant-form__content .left .form {
  align-items: center;
  display: flex;
  flex-direction: column;
}
.consultant-form__content .left .form-group {
  width: 100%;
}
.consultant-form__content .left .form-group .form-label {
  color: rgba(33, 33, 33, 0.8);
  font-size: var(--font-size-m);
  font-weight: 500;
  line-height: 22px;
  text-transform: uppercase;
}
.consultant-form__content .left .form-group .form-input,
.consultant-form__content .left .form-group .form-textarea {
  background-color: #fff;
  border-radius: 18px;
  color: rgba(33, 33, 33, 0.4);
  font-size: var(--font-size-m);
  font-weight: 300;
  line-height: 22px;
  margin: 12px 0 26px;
  padding: 22px 25px;
  resize: none;
  width: 100%;
}
@media (max-width: 480px) {
  .consultant-form__content .left .form-group .form-input,
  .consultant-form__content .left .form-group .form-textarea {
    line-height: 1.3;
    margin: 12px 0 20px;
    padding: 14px 20px;
  }
  .consultant-form__content .left .form-group .form-textarea {
    min-height: 120px;
  }
}
.consultant-form__content .left .form-group:first-child {
  display: flex;
  gap: 30px;
}
@media (max-width: 480px) {
  .consultant-form__content .left .form-group:first-child {
    flex-direction: column;
    gap: unset;
  }
}
.consultant-form__content .left .form .submit-button {
  align-items: center;
  background-color: #ffb800;
  border-radius: 100px;
  color: #212121;
  display: flex;
  font-size: var(--font-size-m);
  gap: 10px;
  justify-content: center;
  margin: 8px 0 20px;
  padding: 25px;
  width: 100%;
}
@media (max-width: 480px) {
  .consultant-form__content .left .form {
    padding: 12px 32px;
  }
}
.consultant-form__content .left .form .agreement-text {
  color: #999;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  text-align: center;
}
@media (max-width: 480px) {
  .consultant-form__content .left .form {
    padding: 0;
  }
  .consultant-form__content .left {
    border-radius: 30px;
  }
}
.consultant-form__content .right {
  height: 640px;
  max-width: 690px;
}
@media (max-width: 1250px) {
  .consultant-form__content .right {
    display: none;
  }
}
.consultant-form__content .right img {
  border-radius: 55px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.stock {
  background-color: var(--gray-bg);
}
.stock .container {
  margin: 0 auto;
  max-width: var(--width-blocks);
  padding: 90px 0;
}
.stock-card-info {
  background-color: #fcb500;
  border-radius: 100px;
  font-size: 17px;
  font-weight: 300;
  line-height: 140%;
  padding: 7px 24px;
}
.stock-title {
  margin-top: 12px;
}
.stock .btn-wrapp {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 55px;
}
.stock .btn-wrapp .swiper-button-next,
.stock .btn-wrapp .swiper-button-prev {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: #fff;
  display: flex;
  height: 60px;
  justify-content: center;
  position: static;
  transition: background 0.3s ease;
  width: 60px;
}
.stock .btn-wrapp .swiper-button-next img,
.stock .btn-wrapp .swiper-button-prev img {
  user-select: none;
}
.stock .btn-wrapp .swiper-button-next:hover,
.stock .btn-wrapp .swiper-button-prev:hover {
  background-color: #ffbe00;
}
.stock .btn-wrapp .swiper-button-next:after,
.stock .btn-wrapp .swiper-button-prev:after {
  content: none;
}
.stock .btn-wrapp .swiper-button-prev img {
  transform: rotate(180deg);
}
.techcontent .container {
  margin: 0 auto;
  max-width: var(--width-blocks);
  padding: 50px 0;
}
.techcontent .head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.techcontent .head .tabs {
  display: flex;
  gap: 30px;
}
.techcontent .head .tabs button {
  align-items: center;
  display: flex;
  gap: 30px;
}
.techcontent .head .tabs button:first-child:after {
  background-color: silver;
  content: "";
  height: 12px;
  width: 1px;
}
.techcontent .head .tabs .tab-button.active {
  color: #ffb800;
}
@media (max-width: 640px) {
  .techcontent .head {
    flex-direction: column;
  }
  .techcontent .head .tabs {
    margin-top: 20px;
  }
}
.techcontent .tab-content {
  background-color: #fff;
  display: none;
}
.techcontent .tab-content table td:nth-child(2n) {
  width: 60%;
}
.techcontent #description h2 {
  color: #1b1b1b;
  font-size: var(--font-size-h2);
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.techcontent #description h3 {
  border-bottom: 2px solid #ecf0f1;
  color: #1b1b1b;
  font-size: var(--font-size-h3);
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 30px;
  padding-bottom: 10px;
}
.techcontent #description p {
  color: #333;
  font-size: var(--font-size-m);
  margin-bottom: 20px;
}
.techcontent #description ul {
  list-style-type: disc;
  margin-bottom: 20px;
  margin-left: 20px;
}
.techcontent #description li {
  color: #333;
  font-size: var(--font-size-m);
  line-height: 1.8;
}
.techcontent #description strong {
  font-weight: 700;
}
.techcontent #description a {
  color: #ffb800;
  font-size: var(--font-size-m);
  font-weight: 700;
  text-decoration: none;
}
.techcontent #description a:hover {
  text-decoration: underline;
}
.techcontent #description .call-to-action {
  background-color: #ffb800;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  margin-top: 30px;
  padding: 12px 24px;
  text-align: center;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}
.techcontent #description hr {
  background: #ecf0f1;
  border: 0;
  height: 1px;
  margin: 30px 0;
}
.techcontent .tab-content.active {
  display: block;
}
.footer {
  background: var(--header-color);
  color: #fff;
  padding: 50px 0 20px;
}
.footer .wrapper {
  margin: 0 auto;
  max-width: var(--width-blocks);
}
.footer__top {
  display: flex;
  margin-bottom: 35px;
  width: 100%;
}
.footer__top .footer__contact-form {
  display: flex;
  gap: 60px;
}
@media (max-width: 950px) {
  .footer__top .footer__contact-form {
    flex-wrap: wrap;
  }
}
.footer__top .footer__contact-form-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__top h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 29px;
}
.footer__top p {
  font-size: var(--font-size-s);
  font-weight: 400;
  line-height: 150%;
  max-width: 290px;
}
.footer__form {
  flex-direction: column;
}
.footer__form,
.footer__form-top {
  display: flex;
  gap: 20px;
}
.footer__form-top input {
  width: 100%;
}
@media (max-width: 480px) {
  .footer__form-top {
    flex-direction: column;
  }
}
.footer__form-under {
  display: flex;
  gap: 20px;
}
.footer__form-under .btn-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 32%;
  width: 100%;
}
.footer__form-under .btn-wrapper button {
  background: #fcb500;
  border-radius: 100px;
  color: #212121;
  font-size: var(--font-size-s);
  font-weight: 500;
  line-height: 18px;
  padding: 20px;
}
.footer__form-under .btn-wrapper .footer__privacy {
  color: #999;
  font-size: var(--font-size-s);
  font-weight: 400;
  line-height: 17px;
  text-align: left;
}
.footer__form-under .btn-wrapper .footer__privacy a {
  color: #999;
  text-decoration: underline;
}
.footer__form-under textarea {
  height: 80px;
  resize: none;
  width: 68%;
}
@media (max-width: 480px) {
  .footer__form-under {
    flex-direction: column;
  }
  .footer__form-under textarea {
    width: 100%;
  }
  .footer__form-under .btn-wrapper {
    max-width: 100%;
  }
}
.footer__form input,
.footer__form textarea {
  border: 1px solid hsla(0, 0%, 100%, 0.6);
  border-radius: 10px;
  font-size: var(--font-size-m);
  font-weight: 400;
  line-height: 22px;
  max-width: 100%;
  padding: clamp(10px, 4vw, 20px);
}
.footer__bottom {
  align-items: start;
  border-top: 1px solid hsla(0, 0%, 100%, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  padding-top: 45px;
}
.footer__info {
  max-width: 330px;
}
.footer__info p {
  font-size: var(--font-size-s);
  font-weight: 400;
  line-height: 150%;
}
.footer__logo {
  margin-bottom: 25px;
  max-width: 250px;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer__nav a {
  color: #fff;
  font-size: var(--font-size-m);
  font-weight: 600;
  line-height: 22px;
  text-transform: uppercase;
}
.footer__nav a:hover {
  color: #ffb400;
}
.footer__contacts {
  max-width: 410px;
}
.footer__contacts .footer__contact-item {
  align-items: start;
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.footer__contacts .footer__contact-item strong {
  color: #f5b203;
  font-size: var(--font-size-m);
  font-weight: 600;
  line-height: 22px;
}
.footer__contacts .footer__contact-item img {
  height: 45px;
  width: 45px;
}
.footer__contacts .footer__contact-item a,
.footer__contacts .footer__contact-item p {
  color: #fff;
  font-size: var(--font-size-m);
  font-weight: 400;
  line-height: 140%;
}
.footer__socials {
  display: flex;
  gap: 15px;
}
.footer__socials a img {
  height: 45px;
  width: 45px;
}
.footer__bottom-bar {
  border-top: 1px solid hsla(0, 0%, 100%, 0.18);
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 20px;
}
.footer__bottom-bar a,
.footer__bottom-bar p {
  color: hsla(0, 0%, 100%, 0.502);
  font-size: var(--font-size-s);
  font-weight: 400;
  line-height: 150%;
}
.catform {
  align-items: center;
  backdrop-filter: blur(3px);
  background-color: rgba(0, 0, 0, 0.125);
  display: flex;
  flex-direction: column;
  height: 100svh;
  justify-content: center;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: all 0.5s ease;
  visibility: hidden;
  width: 100svw;
  z-index: 9999;
}
.catform_content {
  background-color: #fff;
  border-radius: 35px;
  max-width: 1040px;
  padding: 45px;
  position: relative;
  width: 95svw;
}
.catform_content h2 {
  display: block;
  font-size: var(--font-size-h2);
  margin: 0 auto 20px;
  width: fit-content;
}
@media (max-height: 780px) {
  .catform_content {
    overflow-y: scroll;
  }
}
@media (max-width: 640px) {
  .catform_content {
    padding: 20px;
  }
}
.catform_close {
  position: absolute;
  right: 20px;
  top: 20px;
}
.catform_form_grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 980px) {
  .catform_form_grid {
    display: flex;
    flex-direction: column;
  }
}
.catform_form_left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.catform_form_left img {
  border-radius: 30px;
  max-height: 280px;
}
@media (max-width: 980px) {
  .catform_form_left {
    flex-direction: column-reverse;
  }
  .catform_form_left img {
    border-radius: 30px;
    margin: 0 auto 20px;
    max-height: 280px;
    width: fit-content;
  }
}
.catform_form_info {
  background-color: #f7f7f7;
  border-radius: 30px;
  display: grid;
  gap: 24px 10px;
  grid-template-columns: 1fr 1.5fr;
  padding: 30px;
}
.catform_form_info .gray {
  color: rgba(33, 33, 33, 0.384);
}
.catform_form_info p {
  font-size: var(--font-size-m);
}
.catform_form_info input {
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}
.catform_form_rigth p {
  font-size: var(--font-size-m);
  margin-bottom: 10px;
}
.catform_form_input {
  margin-bottom: 15px;
}
.catform_form_input.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 640px) {
  .catform_form_input.grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
  }
}
.catform_form_input:last-child {
  margin-bottom: 0;
}
.catform input {
  margin-bottom: 10px;
}
.catform input,
.catform textarea {
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 20px;
  padding: 19px 25px;
  width: 100%;
}
.catform textarea {
  min-height: 100px;
  resize: none;
}
.catform_btn {
  align-items: center;
  background-color: #ffb800;
  border-radius: 30px;
  display: flex;
  gap: 8px;
  margin: 20px auto;
  padding: 22px 60px;
  text-transform: uppercase;
}
.catform_btn img {
  margin-top: 3px;
  max-width: 22px;
}
.catform .text {
  color: rgba(33, 33, 33, 0.384);
  font-size: var(--font-size-s);
  margin: 0 auto;
  max-width: 390px;
  text-align: center;
}
.catform .text a {
  color: rgba(33, 33, 33, 0.384);
  text-decoration: underline;
}
.catform.active {
  opacity: 1;
  visibility: visible;
}
.main_single {
  margin: 90px auto;
  max-width: var(--width-blocks);
}
.main_single h1 {
  max-width: 80%;
}
@media (max-width: 640px) {
  .main_single {
    margin: 45px auto;
  }
}
.single {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin: 90px auto;
  max-width: var(--width-blocks);
  position: relative;
}
.single h1,
.single h2,
.single h3,
.single h4,
.single h5,
.single h6 {
  font-weight: 600;
  line-height: 1.2;
  margin: 20px 0;
}
.single h2 {
  font-size: var(--font-size-h2);
  margin: 30px 0 20px;
}
.single h3 {
  font-size: var(--font-size-h3);
  margin: 25px 0;
}
.single h4 {
  font-size: var(--font-size-h4);
  margin: 20px 0;
}
.single h5,
.single h6 {
  font-size: var(--font-size-m);
  margin: 15px 0;
}
.single p {
  font-size: var(--font-size-m);
  line-height: 1.6;
  margin: 10px 0;
}
.single img {
  border-radius: 35px;
  display: block;
  height: auto;
  margin: 20px 0;
  max-width: 100%;
}
.single a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}
.single a:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}
.single ol,
.single ul {
  line-height: 1.6;
  margin: 15px 0;
  padding-left: 20px;
}
.single ol li,
.single ul li {
  margin: 5px 0;
}
.single ul {
  list-style-type: disc;
}
.single ol {
  list-style-type: decimal;
}
.single blockquote {
  background-color: var(--color-light-gray);
  border-left: 5px solid var(--color-primary);
  color: var(--color-dark-gray);
  font-size: var(--font-size-m);
  font-style: italic;
  line-height: 1.6;
  margin: 20px 0;
  padding: 15px 20px;
}
.single blockquote p {
  margin: 0;
}
.single .wp-block-button__link {
  background-color: var(--color-primary);
  border-radius: 8px;
  color: #fff;
  display: inline-block;
  font-size: var(--font-size-m);
  padding: 10px 20px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.single .wp-block-button__link:hover {
  background-color: var(--color-secondary);
}
.single_content {
  max-width: 80%;
}
@media (max-width: 768px) {
  .single_content {
    max-width: 100%;
  }
}
.single .tech-page {
  height: fit-content;
  position: sticky;
  top: 30px;
}
.single .tech-page h3 {
  margin-top: 0;
}
.single .tech-page ul {
  list-style: none;
  padding-left: 0;
}
.single .tech-page ul a {
  color: #333;
  text-decoration: none;
}
.single .tech-page ul a.yellow,
.single .tech-page ul a:hover {
  color: #ffb800;
}
.single .tech-page ul li {
  font-size: var(--font-size-m);
}
@media (max-width: 640px) {
  .single {
    flex-direction: column;
    margin: 45px auto;
  }
}
.more_post {
  margin: 40px auto;
  max-width: var(--width-blocks);
  overflow: hidden;
}
.more_post p {
  opacity: 0.6;
}
.more_post_list {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  height: 80px;
  position: relative;
}
.more_post_list::-webkit-scrollbar {
  display: none;
}
.more_post_list_container {
  display: flex;
  gap: 20px;
  padding: 10px 0;
  width: fit-content;
}
.more_post_list h3 {
  font-size: var(--font-size-m);
  margin: 0;
  white-space: nowrap;
}
.more_post_list h3 a {
  border: 1px solid #ffb800;
  border-radius: 20px;
  color: #000;
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  width: 100%;
}
.more_post_list h3 a:hover {
  background-color: #ffb800;
  color: #fff;
}
.posts {
  margin: 90px auto;
  max-width: var(--width-blocks);
}
.posts .news-card {
  background: #fff;
  border-radius: 55px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: clamp(400px, 35vw, 450px);
  overflow: hidden;
  text-align: left;
}
.posts .news-card__img {
  height: 315px;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 480px) {
  .posts .news-card__img {
    height: 220px;
  }
}
.posts .news-card__info {
  padding: 35px 40px 30px;
}
.posts .news-card__date {
  color: rgba(33, 33, 33, 0.62);
  font-size: calc(var(--font-size-m) - 1px);
  font-weight: 300;
  line-height: 140%;
  margin-bottom: 10px;
}
.posts .news-card__title {
  color: #212121;
  font-size: var(--font-size-card-title);
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 60px;
}
@media (max-width: 480px) {
  .posts .news-card__title {
    margin-bottom: 30px;
  }
}
.posts .news-card__link {
  align-items: center;
  border-top: 1px solid #dfdfdf;
  display: flex;
  font-size: var(--font-size-m);
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  padding-top: 32px;
  text-align: center;
}
.posts .news-card__link:hover {
  text-decoration: underline;
}
@media (max-width: 480px) {
  .posts .news-card__link {
    padding-top: 20px;
  }
  .posts .news-card {
    border-radius: 35px;
  }
}
.posts h1 {
  font-size: var(--font-size-h2);
  margin-bottom: 30px;
}
.posts .posts-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}
.posts .post-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.posts .post-card:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
.posts .post-card__thumbnail img {
  display: block;
  height: auto;
  max-height: 210px;
  object-fit: cover;
  width: 100%;
}
.posts .post-card__content {
  padding: 15px;
}
.posts .post-card__title {
  font-size: 1.2rem;
  line-height: 1.3;
  margin-bottom: 10px;
}
.posts .post-card__title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.posts .post-card__title a:hover {
  color: #ffb800;
}
.posts .post-card__excerpt {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 15px;
}
.posts .post-card__link {
  color: #ffb800;
  display: inline-block;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
.posts .post-card__link:hover {
  color: #ffb800;
}
.posts .pagination {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 90px;
}
.posts .pagination #load-more-button {
  background-color: #ffb800;
  border-radius: 20px;
  color: #fff;
  padding: 12px 22px;
}

.banner-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-link {
    display: block;
    width: 100%;
    height: 100%;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

.catalog_single-image{
	max-width:480px;
	width:100%;
}
