* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Хлебные крошки */
.breadcrumbs {
  padding: 15px 0;
  font-size: 14px;
  margin-bottom: 20px;
}

.breadcrumbs a {
  color: #005a9c;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumbs a:hover {
  color: #ffcc00;
  text-decoration: underline;
}

.breadcrumbs span {
  color: #777;
  margin: 0 5px;
}

.breadcrumbs .current {
  color: #333;
}

h1 {
  font-size: 2.2em;
  padding-bottom: 10px;
}

.highlight {
  background-color: #f0f8ff;
  padding: 15px;
  border-left: 4px solid #0056b3;
  margin: 20px 0;
}
section h2 {
margin-top: 30px;
}

section ul {
  padding-left: 20px;
}
section ul li {
  margin-bottom: 10px;
}

header {
  background-color: #231f20;
  color: white;
  padding: 20px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: relative;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: block;
  font-size: 0;
  font-weight: bold;
  /*z-index: 1001;*/
}
.mobile-nav.active .logo {
  position: absolute;
  top: 20px;
  left: 16px;
}
.logo img {
  height: 50px;
}

.logo div {
  line-height: 1;
}
.small {
  font-size: 12px;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
}

.desktop-nav ul li {
  margin-left: 20px;
  line-height: 42px;
}

.desktop-nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.desktop-nav ul li a:hover {
  color: #ffcc00;
}

.mobile-icons {
  display: flex;
}

.search-icon {
  display: inline-block;
  position: relative;
  top: 3px;
  width: 20px;
  height: 20px;
}
.search-icon:hover {
  cursor: pointer;
}
.phone-icon {
  display: inline-block;
  position: relative;
  top: 8px;
  width: 27px;
  height: auto;
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
  margin-top: 10px;
  margin-left: 10px;
}

.burger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: white;
  transition: all 0.3s ease;
}


.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  /*max-width: 300px;*/
  height: 100vh;
  background-color: #005a9c;
  padding: 80px 20px 20px;
  transition: right 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
}

.mobile-nav.active {
  /*right: 0;*/
  left: 0;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav ul li {
  margin-bottom: 15px;
}

.mobile-nav ul li a, .mobile-nav ul li span {
  color: white;
  text-decoration: none;
  font-size: 18px;
  display: block;
  padding: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav ul li a:hover {
  color: #ffcc00;
}


.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}


.burger-menu.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}


.hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/images/bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
}

.btn {
  display: inline-block;
  background-color: #ffcc00;
  color: #333;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #e6b800;
}


.categories, .goods, .page-about {
  padding: 0 0 30px;
}
.page-about {
  padding-bottom: 30px;
}
.page-about--page {
  margin-top: 30px;
}

.page-about.page-about--page h1 {
  font-size: 25px;
}

.section-title {
  margin-bottom: 40px;
  font-size: 22px;
  color: #005a9c;
  line-height: 100%;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  width: calc(100% - 250px);
}

.category-grid.filters-hidden {
  width: 100%;
  display: grid;
}
.pagination.filters-hidden {
  margin-left: 0;
  display: flex;
}

.category-grid--100 {
  width: 100%;
}

.category-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  text-decoration: none;
}

.category-card:hover {
  transform: translateY(-5px);
  cursor: pointer;
}

.category-img {
  height: 200px;
  overflow: hidden;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s;
}

.category-card:hover .category-img img {
  transform: scale(1.05);
}

.category-info {
  padding: 20px;
  position: relative;
  height: calc(100% - 200px);
}

.category-info h3 {
  margin-bottom: 10px;
  color: #005a9c;
}

.category-info p {
  margin-bottom: 70px;
  color: black;
  max-height: 108px;
  overflow: hidden;
}

.advantages {
  background-color: #333;
  color: white;
  padding: 30px 0;
}
.advantages .section-title {
  text-align: center;
  margin-top: 0;
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.advantage-item {
  text-align: center;
  padding: 20px;
}

.advantage-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #ffcc00;
}

.advantage-item h3 {
  margin-bottom: 10px;
}

.product-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto 30px;
}
.product-gallery {
  flex: 1 1 400px;
  min-width: 300px;
  padding: 20px;
}
.product-image {
  width: 100%;
  height: auto;
  border: 1px solid #eee;
  border-radius: 4px;
}
.product-info {
  flex: 2 1 500px;
  padding: 25px;
}
.product-title {
  color: #0056b3;
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 15px;
}

.tech-flex {
  display: flex;
}

.product-subtitle {
  color: #666;
  font-size: 18px;
  margin-bottom: 20px;
}
.product-price {
  font-size: 24px;
  color: #d32f2f;
  font-weight: bold;
  margin: 20px 0;
}
.price-old {
  text-decoration: line-through;
  color: #999;
  font-size: 18px;
  margin-left: 10px;
}
.product-features {
  margin: 25px 0;
  padding: 0 40px;
}
.product-features--cont {
  column-count: 2;
}
.product-features--cont ul, .product-features--cont h3 {
  break-inside: avoid;
}

.product-features--cont ul {
  margin-left: 20px;
}

.page-about h1 {
  font-size: 22px;
  color: #005a9c;
}

.product-features h2,
.product-features h3,
.page-about h2,
.page-about h3{
  margin: 10px 0 10px;
  color: #005a9c;
  font-size: 22px;
  line-height: 100%;
}

.page-about h1 {
  font-size: 32px;
  line-height: 1.5;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  padding: 0;
}

.page-about h2 {
  font-size: 24px;
  line-height: 1.5;
  margin-top: 1.5rem;
  margin-bottom: .75rem;
  padding: 0;
}
.page-about h3{
  font-size: 19px;
  line-height: 1.5;
  margin-top: 1.5rem;
  margin-bottom: .5rem;
  padding: 0;
}

.page-about h3 strong {
  font-weight: inherit;
}

.page-about .container ol {
  margin-left: 30px;
}

.feature-list {
  columns: 2;
  column-gap: 30px;
}
.feature-item {
  margin-bottom: 12px;
  break-inside: avoid;
}
.tech-specs {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 6px;
  margin: 25px 0;
  width: 60%;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.spec-table tr:nth-child(even) {
  background: #f0f0f0;
}
.spec-table td {
  padding: 10px 15px;
  border-bottom: 1px solid #ddd;
}
.spec-name {
  font-weight: bold;
  width: 40%;
}
.cta-buttons {
  display: flex;
  gap: 15px;
  margin: 50px auto 80px;
  height: fit-content;
}
.btn {
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  position: absolute;
  bottom: 20px;
  left: calc(50% - 69px);
  text-wrap: nowrap;
}
.btn-primary {
  background: #0056b3;
  color: white;
  position: unset;
  left: unset;
}
.btn-primary:hover {
  background: #003d82;
  cursor: pointer;
}
.btn-secondary {
  background: white;
  color: #0056b3;
  border: 2px solid #0056b3;
  position: unset;

}
.btn-secondary:hover {
  background: #f0f6ff;
}
.btn-primary--yellow {
  background-color: #ffcc00;
  color: #231f20;
}

.btn.btn-primary.btn-primary--yellow {
  background-color: #ffcc00;
  color: #231f20;
  font-size: 16px;
  line-height: 16px;
}
.badge {
  display: inline-block;
  padding: 4px 8px;
  background: #4CAF50;
  color: white;
  border-radius: 3px;
  font-size: 12px;
  margin-left: 10px;
  vertical-align: middle;
}
.delivery-info {
  margin-top: 20px;
  padding: 15px;
  background: #e8f5e9;
  border-radius: 4px;
  display: flex;
  align-items: center;
}
.delivery-icon {
  margin-right: 10px;
  color: #2e7d32;
  font-size: 20px;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  align-items: center;
  gap: 10px;
}
.service-feature {
  background: white;
  color: #0056b3;
  border: 2px solid #0056b3;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  height: 100%;
  display: flex;
  font-size: 16px;
}
.service-feature span {
  margin: auto;
  text-align: center;
}
footer {
  background-color: #231f20;
  color: white;
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-column h3 {
  color: #ffcc00;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a, .copyright a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: white;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  color: #aaa;
  font-size: 14px;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0 0 250px;
  font-family: Arial, sans-serif;
}

.pagination-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 15px;
}

.pagination-item {
  margin: 0 5px;
}

.pagination-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.pagination-link:hover {
  background-color: #f5f5f5;
}

.pagination-link.active {
  background-color: #0056b3;
  color: white;
  border-color: #0056b3;
}

.pagination-link.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.pagination-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: #f5f5f5;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-arrow:hover {
  background-color: #e0e0e0;
}

.pagination-arrow.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.pagination-dots {
  display: flex;
  align-items: flex-end;
  height: 40px;
  padding-bottom: 8px;
  margin: 0 5px;
}

#pagination-more {
  display: none;
  background-color: #fccf04;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  padding: 12px 25px;
  font-size: 16px;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c3e50;
  color: white;
  padding: 15px 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
}

.cookie-consent-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.cookie-consent-content p {
  margin: 0;
  flex: 1;
  min-width: 300px;
}

.cookie-consent-content a {
  color: #3498db;
  text-decoration: underline;
}

.cookie-consent-buttons {
  display: flex;
  gap: 10px;
}

.cookie-consent-button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.cookie-consent-button.accept {
  background: #27ae60;
  color: white;
}

.cookie-consent-button.reject {
  background: #e74c3c;
  color: white;
}

.service {
  margin: 30px 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 25px 25px;
}

.service h1 {
  font-size: 24px;
  line-height: 26px;
  color: #0056b3;
  margin: 10px 20px 15px;
}

.service ol, .service ul {
  list-style: none;
}

.ab {
  display: flex;
}

.filters {
  width: 250px;
  position: relative;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.filter-tags a {
  display: inline-block;
  background-color: #fccf04;
  border-radius: 5px;
  padding: 5px 15px;
  color: white;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .3s;
}

a.tag-selected {
  background-color: #0056b3;
}

.filter-tags a:hover {
  background-color: #0056b3;
}

.filters-hidden {
  display: none;
}
.filter-title--container {

}

.filter-title {
  background-color: #fccf04;
  padding: 3px 0;
  color: #333;
  font-weight: bolder;
  margin-right: 20px;
  text-align: center;
}
.filter-title--icon {
  display: none;
  width: 20px;
  color: #005a9c;
  position: relative;
  margin-right: 10px;
  box-sizing: content-box;
  float: left;
  top: 2px;
}
.filter {
  border: 1px #fccf04 solid;
  border-radius: 3px;
  padding: 3px 20px 3px 10px;
  margin-right: 20px;
  background-color: white;
  box-sizing: border-box;
  transition: background-color .3s;
  position: relative;
  font-size: 14px;
}
.filter ul {
  padding-left: 0;
}
.filter-name {
  font-weight:  bolder;
  position: relative;
  user-select: none;
}
.attribute-value {
  display: none;
}

.filter {
  cursor: pointer;
}
.filter.filter-open {

  background-color: #fccf04;
}
.filter.filter-open .filter-name .attribute-value {
  display: flex;
}

.filter-button--container {
  margin-right: 20px;
  margin-top: 20px;
}

.filter-button {
  background-color: #fccf04;
  text-align: center;
  width: 150px;
  margin: 5px auto 0;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  padding: 10px 0;
  display: block;
  border: none;
}

.attribute-value input {
  cursor: pointer;

}
.attribute-value label {
  cursor: pointer;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  padding-left: 20px;
}

.attribute-value--text {
  width: 50px;
  margin: 0 10px;
}

.filter-arrow, .filter-arrow-open {
  display: inline-block;
  float: right;
}
.filter.filter-open .filter-arrow {
  display: none;
}
.filter .filter-arrow-open {
  display: none;
}
.filter.filter-open .filter-arrow-open {
  display: inline-block;
}
.filter.filter-open .attribute-value {
  display: block;
}

.page-about ul li {
  margin-left: 10px;
  padding-left: 10px;
  margin-bottom: 0;
}

.hidden {
  display: none;
}

.service.privacy-policy ul li {
  margin-left: 10px;
  padding-left: 10px;
  margin-bottom: 20px;
}
.service.privacy-policy ol li ol {
  list-style: "-";
  margin-left: 20px;
}
.service.privacy-policy ol li {
  margin-left: 10px;
  padding-left: 10px;
  margin-bottom: 0;
}
.service.privacy-policy p {
  margin: 5px 20px 15px;
}

.service.privacy-policy.privacy ul {
  list-style: disc;
  margin-left: 30px;
}

.service--contact {
  text-align: center;
  min-height: calc(100vh - 530px);
}

.email-info {
  display: block;
  max-width: 800px;
  text-align: left;
  margin: 0 auto;
  border: 2px #f2f2f2 solid;
  border-radius: 10px;
  padding: 20px;
}

.contactInfo__row {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
  justify-content: center;
  margin-top: 30px;
}



.contactInfo__box {
  display: block;
  border: 2px #f2f2f2 solid;
  border-radius: 10px;
  padding: 10px;
}
.contactInfo__box h3 {
  text-align: center;
}
.contactInfo__box__row {
  display: flex;
  gap: 30px;
}
.contactInfo__box__row p {
  display: block
}
.contactInfo__box__row span {
  display: block;
}


.message-box--box {
  width: 400px;
  height: auto;
  margin: auto;
  background-color: white;
  border: 1px silver solid;
  padding: 20px 30px 30px;
  border-radius: 30px;

}
.message-box--title {
  font-size: 20px;
  font-weight: bold;
  margin-left: 12px;
}

.message-box--message {
  font-size: 15px;
  margin: 10px 0 25px;
  text-align: left;
  border-left: 2px #fccf04 solid;
  padding-left: 10px;
  line-height: 120%;
}

.message-box--button {
  padding: 10px 30px;
  background-color: #fccf04;
  border: none;
  border-radius: 10px;
  text-align: center;
}
.message-box--button:hover {
  cursor: pointer;
}

#request-form, #message-box {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(90, 90, 90, 0.42);
  font-size: 15px;
  overflow-y: auto;
}
#message-box {
  z-index: 1100;
}
.fillForm {
  width: 700px;
  height: auto;
  margin: auto;
  background-color: white;
  border: 1px silver solid;
  padding: 30px;
}

.fillForm textarea, .fillForm input, .fillForm div {
  font-size: 13px;
}


.fillForm h2 {
  font-size: 24px;
  line-height: 26px;
  color: #0056b3;
  margin: 0 20px 15px 0;
}
.request-attention {
  font-size: 15px;
  line-height: 120%;
  margin-bottom: 20px;
}
.input__box {
  position: relative;
  width: 100%;
  height: 50px;
  margin-bottom: 10px;
}
.input__box input, .textarea__box  textarea {
  width: 100%;
  height: 100%;
  padding: 5px 10px;
  border: 1px silver solid;
  border-radius: 10px;
  transition: background-color .5s ease;
}

.input__box--flex {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
}
.input__box--flex input {
  width: auto;

}

.inn-result {
  position: absolute;
  z-index: 1000;
  background-color: white;
  padding: 10px;
  overflow: hidden;
  box-shadow: 0 10px 10px 10px rgba(0, 0, 0, 0.2);
  width: calc(100% - 20px);
  left: 10px;
}
.inn-result div {
  overflow: hidden;
  text-wrap: nowrap;
  text-overflow: ellipsis;
}
.inn-result div:hover {
  cursor: pointer;
  background-color: #eeeeee;
}

#post-form-files {
  margin: 20px 0;
}


#file-select {
  display: none;
}
.file-select--label {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.file-select--label:hover {
  cursor: pointer;
}
.file-select--title {
  background-color: white;
  border: 1px silver solid;
  border-radius: 3px;
  padding: 2px 20px;
  width: auto;
}
.files {
  padding: 10px 3px;
}
.files-container {
  display: flex;
  justify-content: flex-start;

}
.files-container .drop {
  color: red;
}
.files-container .drop:hover {
  cursor: pointer;
}

.files-container div {
  margin-right: 10px;
}

.message-text {
  margin-left: 30px;
}
.privacy-policy--checkbox {
  margin-right: 10px;
}
.submit-btn--red {
  padding: 10px 20px;
  background-color: #fccf04;
  border-radius: 10px;
  border: none;
  display: block;
  /*margin: 20px auto;*/
}

.submit-btn--white {
  padding: 10px 20px;
  background-color: white;
  border-radius: 10px;
  border: 1px #fccf04 solid;
  display: block;
  /*margin: 20px auto;*/
  margin-left: 20px;
}

.request-buttons {
  display: flex;
  width: fit-content;
  margin: 20px auto;
}

.form-error {
  background-color: rgba(255, 0, 0, .3);
}

#search-form {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(90, 90, 90, 0.42);
  z-index: 1010;
}

.search-form--cont {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  height: 90px;
  width: 100vw;
  padding: 0 10px;
  background-color: white;
  justify-content: center;
}
.search-form--cont input {
  height: 40px;
  margin: auto 0;
}
.search-form--cont input[type=text] {
  width: 80%;
  padding: 0 20px;
  border: 1px #fccf04 solid;
  border-radius: 10px;
}

.search-form--cont input[type=submit] {
  padding: 0 20px;
  margin-left: 10px;
  background-color: #fccf04;
  border: none;
  border-radius: 10px;
  color: white;
}

.container-loader svg{
  height: 30px;
  text-align: center;
  margin: auto;
  display: block;
}
.over-flow--hidden {
  overflow: hidden
}


.mobile-only {
  display: none;
}

.fixed-static {
  position: fixed;
  width: inherit;
  top: 0;
  background-color: #f5f5f5;
}
.fixed-static--absolute {
  position: absolute;
  top: unset;
  bottom: 0;
}

.need-form--center {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 100px;
  margin: 25px auto;
  padding: 50px 100px;
  border-radius: 20px;
  border: 2px #ffcc00 solid;
  /*margin-left: 250px;*/
}

section.need-more h3 {
  font-size: 36px;
  line-height: 120%;
}

section.need-more span {
  display: block;
}

section.need-more .container {
  width: fit-content;

}

.need-more--form {
  height: auto;
}

@media (max-width: 600px) {
  .cookie-consent-content {
    flex-direction: column;
  }

  .cookie-consent-buttons {
    width: 100%;
  }

  .cookie-consent-button {
    flex: 1;
  }

}
@media (max-width: 1200px) {
  .tech-flex {
    flex-direction: column-reverse;
  }
  .cta-buttons {
    margin-top: 0;
  }
}
@media (max-width: 869px) {
  .filters {
    width: 100%;
    margin-bottom: 10px;
  }
  .filter-title--icon {
    display: block;
    cursor: pointer;
  }
  .filter-title {
    margin: 0 0 10px;
    display: none;
  }
  .filter-title:hover {
    cursor: pointer;
  }
  .filter {
    display: none;
    border-top: none;
    border-right: none;
    border-left: none;
  }
  .filter-button {
    display: none;
  }
  .filters.child-open .filter, .filters.child-open .filter-button {
    display: block;
  }
  .ab {
    display: block;
  }
  .category-grid {
    width: auto;
  }
  .pagination {
    margin-left: 0;
  }
  .pagination-list {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(auto-fill, minmax(35px, 1fr));
    grid-gap: 5px;
  }
  .section-title {
    margin-bottom: 10px;
  }
  .product-features--cont {
    column-count: unset;
  }

  section.need-more h3 {
    font-size: 26px;
    margin-bottom: 20px;
  }

  section.need-more span {
    display: inline-block;
  }

  section.need-more .container {
    width: fit-content;
  }

  .need-form--center {
    display: block;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero p {
    font-size: 16px;
  }
  .breadcrumbs {
    font-size: 12px;
    padding: 10px 0;
  }

  .cta-buttons {
    margin-bottom: 25px;
  }

  .tech-specs {
    width: 100%;
  }

  .mobile-only {
    display: inline-block;
  }
  .desktop-only {
    display: none;
  }

  .need-form--center {
    padding: 30px 30px;

  }
}

@media (max-width: 576px) {
  .pagination {
    justify-content: flex-start;
  }
  .pagination-link {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .pagination-arrow {
    width: 35px;
    height: 35px;
  }
  .service {
    margin: 10px;
    padding: 10px 0;
  }
  .service h1 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .service.privacy-policy p {
    font-size: 16px;
  }
  .contactInfo__row {
    display: block;
  }
  .contactInfo__box {
    margin: 20px;
  }
  .email-info {
    margin: 20px;
  }
  section.need-more .container {
    margin: 25px 30px;
  }
}

@media (max-width: 472px) {
  .input__box--flex {
    display: block;
    height: auto;
  }
  .input__box--flex input {
    height: 50px;
    width: 100%;
    display: block;
    margin-bottom: 10px;
  }
  section.need-more h3 {
    font-size: 20px;
  }
}

@media (min-width: 1400px) {
  .service {
    max-width: 1400px;
    margin-right: auto;
    margin-left: auto;
  }
}

/****/


