@charset "UTF-8";
@font-face {
  font-family: "Helvetica Neue Cyr";
  src: url("../fonts/HelveticaNeueCyr-Black.woff2") format("woff2"), url("../fonts/HelveticaNeueCyr-Black.woff") format("woff"), url("../fonts/HelveticaNeueCyr-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue Cyr";
  src: url("../fonts/HelveticaNeueCyr-Medium.woff2") format("woff2"), url("../fonts/HelveticaNeueCyr-Medium.woff") format("woff"), url("../fonts/HelveticaNeueCyr-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue Cyr", Helvetica, Arial, sans-serif;
  font-weight: 500;
  color: #231f20;
  background-color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #c9252c;
}

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

.container-wide {
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .container-wide {
    padding: 0 20px;
  }
}

main {
  flex: 1;
  padding-top: 70px;
}
@media (max-width: 480px) {
  main {
    padding-top: 60px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 {
  font-size: 1.5rem;
}
@media (max-width: 992px) {
  h1 {
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.3rem;
  }
}

h2 {
  font-size: 1.3rem;
}
@media (max-width: 992px) {
  h2 {
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.1rem;
  }
}

h3 {
  font-size: 1.2rem;
}

p {
  font-size: 1rem;
  opacity: 0.6;
  margin: 16px auto 0;
  line-height: 1.33;
}
p.faded {
  opacity: 0.85;
}

.btn-primary {
  display: inline-block;
  padding: 10px 28px;
  background-color: #c9252c;
  color: #ffffff;
  font-weight: 500;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}
.btn-primary:hover {
  background-color: #231f20;
  color: #ffffff;
}
@media (max-width: 768px) {
  .btn-primary {
    padding: 8px 20px;
    font-size: 0.85rem;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(35, 31, 32, 0.15);
  z-index: 1000;
  height: 70px;
}
@media (max-width: 480px) {
  header {
    height: 60px;
  }
}
header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 992px) {
  header .container {
    gap: 60px;
  }
}
@media (max-width: 768px) {
  header .container {
    gap: 20px;
  }
}

.header-logo {
  flex-shrink: 0;
  z-index: 1002;
}
.header-logo img {
  height: 30px;
  width: auto;
  display: block;
}
.header-logo .logo-short {
  display: none;
}
@media (max-width: 480px) {
  .header-logo .logo-full {
    display: none;
  }
  .header-logo .logo-short {
    display: block;
    height: 40px;
    margin-top: -5px;
  }
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  z-index: 1002;
  width: 100%;
  transition: all 0.3s ease;
}
@media (max-width: 1280px) {
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu-toggle .hamburger {
  position: relative;
  width: 24px;
  height: 2px;
  background-color: #231f20;
  transition: all 0.3s ease;
}
.mobile-menu-toggle .hamburger::before, .mobile-menu-toggle .hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: #231f20;
  transition: all 0.3s ease;
}
.mobile-menu-toggle .hamburger::before {
  top: -7px;
}
.mobile-menu-toggle .hamburger::after {
  top: 7px;
}
.mobile-menu-toggle .menu-text {
  font-size: 9px;
  position: absolute;
  top: 50%;
  opacity: 1;
  transform: translateY(-50%);
  background: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #231f20;
  transition: color 0.3s ease;
}
.mobile-menu-toggle:hover .hamburger,
.mobile-menu-toggle:hover .hamburger::before,
.mobile-menu-toggle:hover .hamburger::after {
  background-color: #c9252c;
}
.mobile-menu-toggle:hover .menu-text {
  color: #c9252c;
}
.mobile-menu-toggle.active .hamburger {
  background-color: transparent;
}
.mobile-menu-toggle.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}
.mobile-menu-toggle.active .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}
.mobile-menu-toggle.active .menu-text {
  color: #c9252c;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 50px;
  flex: 1;
}
@media (max-width: 768px) {
  .header-nav {
    gap: 15px;
  }
}
@media (max-width: 1280px) {
  .header-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 40px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1001;
    border-right: 1px solid rgba(35, 31, 32, 0.15);
  }
  .header-nav.active {
    transform: translateX(0);
  }
}
@media (max-width: 480px) {
  .header-nav {
    top: 60px;
    padding: 30px 20px;
  }
}
.header-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .header-nav a {
    font-size: 0.85rem;
  }
}
@media (max-width: 1280px) {
  .header-nav a {
    font-size: 1.2rem;
    padding: 18px 0;
    border-bottom: 1px solid rgba(35, 31, 32, 0.15);
  }
  .header-nav a:last-child {
    border-bottom: none;
  }
}
@media (max-width: 480px) {
  .header-nav a {
    font-size: 1.1rem;
    padding: 15px 0;
  }
}
.header-nav a:hover {
  color: #c9252c;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(35, 31, 32, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
@media (max-width: 480px) {
  .mobile-menu-overlay {
    top: 60px;
  }
}
.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.header-cta {
  flex-shrink: 0;
  z-index: 1002;
}
.header-cta a {
  border-radius: 3px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
@media (max-width: 480px) {
  .header-cta a .nosm {
    display: none;
  }
}

footer {
  background-color: #ffffff;
  color: #231f20;
  padding: 80px 0 40px;
  margin-top: 120px;
  border-top: 1px solid rgba(35, 31, 32, 0.15);
}

.footer-content {
  margin-bottom: 60px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
  transition: opacity 0.3s ease;
}
.footer-logo:hover {
  opacity: 0.7;
}
.footer-logo img {
  height: 24px;
  width: auto;
  display: block;
}

.col.footer-about {
  max-width: 100%;
  width: 600px;
  min-width: 200px;
}
.col.footer-about p {
  margin-top: 0;
  line-height: 1.8;
  opacity: 0.7;
  font-size: 1.05rem;
}

.disclaimer {
  text-align: left;
  font-size: 9px;
  color: #666;
  text-decoration: none;
  opacity: 0.8;
  margin-top: 16px;
}

.footer-links ul {
  list-style: none;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  opacity: 0.5;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  white-space: nowrap;
}
.footer-links a:hover {
  opacity: 1;
  color: #c9252c;
}

.footer-contacts p {
  font-size: 0.95rem;
  opacity: 0.7;
  margin-bottom: 13px;
  line-height: 1.6;
  margin-top: 0px;
}

.contact-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.contact-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #231f20;
  color: #231f20;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  font-weight: 900;
}
.contact-icon.large {
  width: 44px;
  height: 44px;
  font-size: 1rem;
}
.contact-icon:hover {
  border-color: #c9252c;
  color: #c9252c;
}
.contact-icon:hover:hover {
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(35, 31, 32, 0.15);
  opacity: 0.5;
  font-size: 0.85rem;
}

.diagonal-lines {
  position: relative;
  overflow: hidden;
}
.diagonal-lines::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(35, 31, 32, 0.15) 30px, rgba(35, 31, 32, 0.15) 31px);
  pointer-events: none;
  opacity: 0.15;
}

.corner-accent {
  position: relative;
  padding-top: 40px;
}
.corner-accent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background-color: #c9252c;
}

.hidden,
.contact-app-selector[style*="display: none"],
.contact-email-field[style*="display: none"] {
  display: none !important;
}

.contact-app-selector,
.contact-email-field {
  display: block;
}

.calc-form .form-line,
.simple-contact-form .form-line {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.calc-form .form-field,
.simple-contact-form .form-field {
  flex: 1;
}
.calc-form .form-field.hidden,
.simple-contact-form .form-field.hidden {
  display: none;
}
.calc-form .form-field label,
.simple-contact-form .form-field label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #231f20;
}
.calc-form .form-field input[type=text],
.calc-form .form-field input[type=number],
.calc-form .form-field input[type=tel],
.calc-form .form-field input[type=email],
.calc-form .form-field select,
.calc-form .form-field textarea,
.simple-contact-form .form-field input[type=text],
.simple-contact-form .form-field input[type=number],
.simple-contact-form .form-field input[type=tel],
.simple-contact-form .form-field input[type=email],
.simple-contact-form .form-field select,
.simple-contact-form .form-field textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}
.calc-form .form-field input[type=text]:focus,
.calc-form .form-field input[type=number]:focus,
.calc-form .form-field input[type=tel]:focus,
.calc-form .form-field input[type=email]:focus,
.calc-form .form-field select:focus,
.calc-form .form-field textarea:focus,
.simple-contact-form .form-field input[type=text]:focus,
.simple-contact-form .form-field input[type=number]:focus,
.simple-contact-form .form-field input[type=tel]:focus,
.simple-contact-form .form-field input[type=email]:focus,
.simple-contact-form .form-field select:focus,
.simple-contact-form .form-field textarea:focus {
  outline: none;
  border-color: #c9252c;
}
.calc-form .form-field textarea,
.simple-contact-form .form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-block {
  margin: 2rem 0;
}
.contact-block h4 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: #231f20;
  font-size: 1.25rem;
  font-weight: 600;
}
.contact-block .contact-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact-block .contact-summary .contact-summary-text {
  font-weight: 500;
  color: #231f20;
}
.contact-block .contact-summary .contact-edit-btn {
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid #c9252c;
  color: #c9252c;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.contact-block .contact-summary .contact-edit-btn:hover {
  background: #c9252c;
  color: white;
}
.contact-block .contact-form .contact-method-selector {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-block .contact-form .contact-method-selector .radio-option {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.contact-block .contact-form .contact-method-selector .radio-option input[type=radio] {
  margin-right: 0.5rem;
  cursor: pointer;
}
.contact-block .contact-form .contact-method-selector .radio-option span {
  font-weight: 500;
}
.contact-block .contact-form .contact-method-selector .radio-option:hover {
  border-color: #c9252c;
  background: white;
}
.contact-block .contact-form .contact-method-selector .radio-option:has(input:checked) {
  border-color: #c9252c;
  background: rgb(248.3928571429, 219.1071428571, 220.3571428571);
}
.contact-block .contact-form .contact-app-selector,
.contact-block .contact-form .contact-phone-field,
.contact-block .contact-form .contact-email-field {
  margin-bottom: 1rem;
}
.contact-block .contact-form .contact-app-selector label,
.contact-block .contact-form .contact-phone-field label,
.contact-block .contact-form .contact-email-field label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #231f20;
}
.contact-block .contact-form .contact-app-selector select,
.contact-block .contact-form .contact-app-selector input,
.contact-block .contact-form .contact-phone-field select,
.contact-block .contact-form .contact-phone-field input,
.contact-block .contact-form .contact-email-field select,
.contact-block .contact-form .contact-email-field input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}
.contact-block .contact-form .contact-app-selector select:focus,
.contact-block .contact-form .contact-app-selector input:focus,
.contact-block .contact-form .contact-phone-field select:focus,
.contact-block .contact-form .contact-phone-field input:focus,
.contact-block .contact-form .contact-email-field select:focus,
.contact-block .contact-form .contact-email-field input:focus {
  outline: none;
  border-color: #c9252c;
}
.contact-block .contact-form .phone-input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transition: border-color 0.2s;
}
.contact-block .contact-form .phone-input-wrapper:focus-within {
  border-color: #c9252c;
}
.contact-block .contact-form .phone-input-wrapper .phone-prefix {
  padding: 0.75rem 0.5rem 0.75rem 0.75rem;
  font-weight: 500;
  color: #231f20;
  background: #f5f5f5;
  border-right: 1px solid #e0e0e0;
}
.contact-block .contact-form .phone-input-wrapper input {
  flex: 1;
  border: none;
  border-radius: 0 4px 4px 0;
}
.contact-block .contact-form .phone-input-wrapper input:focus {
  border: none;
}
.contact-block .contact-form .phone-hint {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: #666;
}

.calc-result {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 6px;
}
.calc-result .result-price {
  padding: 1rem;
  background: rgb(234.4322709163, 246.0677290837, 234.9023904382);
  border: 2px solid #4CAF50;
  border-radius: 4px;
  color: #231f20;
  font-weight: 500;
}
.calc-result .result-error {
  padding: 1rem;
  background: white;
  border: 2px solid #f44336;
  border-radius: 4px;
  color: #f44336;
  font-weight: 500;
}

.intro {
  padding: 40px 0;
}
.intro h1, .intro h2 {
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  line-height: 1;
}
@media (max-width: 992px) {
  .intro h1, .intro h2 {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  .intro h1, .intro h2 {
    font-size: 1.1rem;
  }
}
.intro h2 {
  margin-left: -0.4em;
}

.page-header {
  padding: 80px 0 40px;
  border-bottom: 1px solid rgba(35, 31, 32, 0.15);
}
.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.page-header .lead {
  font-size: 1rem;
  opacity: 0.6;
}

.products-preview h2 {
  font-size: 2rem;
  margin-bottom: 60px;
}

.advantages {
  padding: 100px 0;
  background-color: #ffffff;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
@media (max-width: 992px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
}

.advantage-item {
  text-align: center;
  padding: 0;
}
.advantage-item h3 {
  margin-bottom: 20px;
  color: #231f20;
  font-size: 0.95rem;
}
.advantage-item p {
  line-height: 1.8;
  opacity: 0.7;
  font-size: 0.95rem;
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(45px, 9fr));
  gap: 48px;
  row-gap: 24px;
}
@media (max-width: 480px) {
  .items-grid {
    row-gap: 8px;
  }
}

.item-card {
  background-color: #ffffff;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
  min-height: 108px;
}
.item-card:hover {
  background-color: #fafafa;
}
.item-card:hover .item-card-image img {
  transform: scale(1.02);
}

.item-card-image {
  width: 100%;
  overflow: hidden;
  display: flex;
}
.item-card-image > div {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item-card-image svg {
  width: 37px;
  opacity: 0.5;
}
.item-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.item-card-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex: 1;
  min-height: 44px;
}
.item-card-content h3 {
  margin-bottom: 12px;
  font-size: 0.9rem;
  font-weight: normal;
  text-transform: none;
  line-height: 1.2;
  overflow: visible;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.item-card-content p {
  opacity: 0.6;
  font-size: 0.8rem;
  display: none;
}

.hero-slider {
  width: 100%;
  margin: 10px auto 40px;
  padding: 0 40px;
}
@media (max-width: 480px) {
  .hero-slider {
    padding: 0 20px;
  }
}

.swiper.main-slider {
  width: 100%;
  margin: 0 auto;
  height: 370px;
  padding-bottom: 50px;
}
.swiper.main-slider .swiper-wrapper {
  height: 100%;
  max-height: 100%;
}
.swiper.main-slider .swiper-slide {
  overflow: hidden;
  border-radius: 16px;
  height: 320px;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
}
.swiper.main-slider .swiper-slide picture {
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
}
.swiper.main-slider .swiper-slide img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper.main-slider .pagiwrap {
  padding: 32px 0 0 0;
  justify-content: center;
  gap: 20px;
  align-items: center;
}
.swiper.main-slider .swiper-pagination {
  position: relative;
  width: auto;
  min-height: 34px;
}
@media (max-width: 480px) {
  .swiper.main-slider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}
@media (max-width: 480px) {
  .swiper.main-slider .swiper-pagination-bullet-active {
    width: 10px;
    height: 10px;
  }
}
.swiper.main-slider .swiper-pagination-bullet {
  background: #000;
  opacity: 1;
}
.swiper.main-slider .swiper-pagination-bullet-active {
  background: #c51a1b;
}
.swiper.main-slider .swiper-button-next,
.swiper.main-slider .swiper-button-prev {
  position: relative;
  color: #c51a1b;
  min-width: 40px;
  min-height: 40px;
}
.swiper.main-slider .swiper-button-next::after,
.swiper.main-slider .swiper-button-prev::after {
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
  background-color: #fff;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail,
.technology-detail {
  padding: 60px 0 100px;
}
@media (max-width: 768px) {
  .product-detail,
  .technology-detail {
    padding: 40px 0 60px;
  }
}

.page-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
@media (max-width: 992px) {
  .page-title {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .page-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
}

.product-layout,
.technology-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media (max-width: 992px) {
  .product-layout,
  .technology-layout {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .product-layout,
  .technology-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.product-gallery,
.technology-gallery {
  position: sticky;
  top: 100px;
  height: fit-content;
  max-width: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .product-gallery,
  .technology-gallery {
    position: static;
  }
}

.product-swiper,
.technology-swiper {
  border-radius: 9px;
  overflow: hidden;
  background-color: #f5f5f5;
  margin-bottom: 10px;
  width: 100%;
  max-width: 100%;
  height: 600px;
}
@media (max-width: 992px) {
  .product-swiper,
  .technology-swiper {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .product-swiper,
  .technology-swiper {
    height: 400px;
  }
}
@media (max-width: 480px) {
  .product-swiper,
  .technology-swiper {
    height: 300px;
  }
}
.product-swiper .swiper-slide,
.technology-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.product-swiper .swiper-slide img,
.technology-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-swiper .swiper-button-next,
.product-swiper .swiper-button-prev,
.technology-swiper .swiper-button-next,
.technology-swiper .swiper-button-prev {
  color: #ffffff;
  background-color: rgba(35, 31, 32, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.product-swiper .swiper-button-next::after,
.product-swiper .swiper-button-prev::after,
.technology-swiper .swiper-button-next::after,
.technology-swiper .swiper-button-prev::after {
  font-size: 16px;
}
.product-swiper .swiper-button-next:hover,
.product-swiper .swiper-button-prev:hover,
.technology-swiper .swiper-button-next:hover,
.technology-swiper .swiper-button-prev:hover {
  background-color: rgba(35, 31, 32, 0.8);
}
.product-swiper .swiper-pagination-bullet,
.technology-swiper .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.5;
}
.product-swiper .swiper-pagination-bullet-active,
.technology-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: #c9252c;
}

.product-thumbs .swiper-slide,
.technology-thumbs .swiper-slide {
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  aspect-ratio: 4/3;
}
.product-thumbs .swiper-slide:hover,
.technology-thumbs .swiper-slide:hover {
  opacity: 0.8;
}
.product-thumbs .swiper-slide-thumb-active,
.technology-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}
.product-thumbs .swiper-slide img,
.technology-thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info .short-summary,
.technology-info .short-summary {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .product-info .short-summary,
  .technology-info .short-summary {
    font-size: 1rem;
  }
}
.product-info .info-section,
.technology-info .info-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(35, 31, 32, 0.15);
}
.product-info .info-section.market-averages,
.technology-info .info-section.market-averages {
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.product-info .info-section:last-child,
.technology-info .info-section:last-child {
  border-bottom: none;
}
.product-info .info-section h3,
.technology-info .info-section h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .product-info .info-section h3,
  .technology-info .info-section h3 {
    font-size: 1.1rem;
  }
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-tag {
  display: inline-block;
  padding: 8px 16px;
  background-color: #fafafa;
  color: #231f20;
  border: 1px solid rgba(35, 31, 32, 0.15);
  border-radius: 5px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.tech-tag:hover {
  background-color: #c9252c;
  color: #ffffff;
  border-color: #c9252c;
}

.tech-requirements {
  list-style: none;
  padding: 0;
}
.tech-requirements li {
  padding: 12px 0;
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
  border-bottom: 1px solid rgba(35, 31, 32, 0.15);
}
.tech-requirements li:last-child {
  border-bottom: none;
}
.tech-requirements li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #c9252c;
  font-weight: bold;
}

.templates-grid {
  display: grid;
  gap: 10px;
}

.template-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background-color: #fafafa;
  border: 1px solid rgba(35, 31, 32, 0.15);
  border-radius: 5px;
  transition: all 0.3s ease;
}
.template-link:hover {
  background-color: #c9252c;
  color: #ffffff;
  border-color: #c9252c;
}
.template-link:hover .download-icon {
  transform: translateY(2px);
}
.template-link .download-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.calc-section {
  background-color: #fafafa;
  padding: 30px;
  border-radius: 9px;
  border: 1px solid rgba(35, 31, 32, 0.15);
}
.calc-section h3 {
  margin-top: 0;
}

.presets {
  margin-bottom: 20px;
}
.presets label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 8px;
  font-weight: 500;
}
.presets select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(35, 31, 32, 0.15);
  border-radius: 5px;
  background-color: #ffffff;
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 0.3s ease;
}
.presets select:hover, .presets select:focus {
  border-color: #c9252c;
  outline: none;
}

.calc-form .form-line {
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
}
.calc-form .form-line .form-field {
  flex: 1;
}
.calc-form .form-line:last-of-type {
  margin-bottom: 30px;
}
.calc-form .form-field.hidden {
  display: none;
}
.calc-form .form-field label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 6px;
  font-weight: 500;
}
.calc-form .form-field input[type=text],
.calc-form .form-field input[type=number],
.calc-form .form-field select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(35, 31, 32, 0.15);
  border-radius: 5px;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}
.calc-form .form-field input[type=text]:hover, .calc-form .form-field input[type=text]:focus,
.calc-form .form-field input[type=number]:hover,
.calc-form .form-field input[type=number]:focus,
.calc-form .form-field select:hover,
.calc-form .form-field select:focus {
  border-color: #c9252c;
  outline: none;
}
.calc-form .form-field .checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.calc-form .form-field .checkbox-label input[type=checkbox] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.calc-form .form-field .checkbox-label span {
  font-size: 0.95rem;
  font-weight: normal;
}
.calc-form button[type=submit] {
  width: 100%;
}

.calc-result,
.form-result {
  margin-top: 20px;
  padding: 16px;
  border-radius: 5px;
  background-color: #ffffff;
}
.calc-result .result-price,
.calc-result .result-message,
.form-result .result-price,
.form-result .result-message {
  font-size: 1.3rem;
  font-weight: 600;
  color: #c9252c;
}
.calc-result .result-error,
.form-result .result-error {
  color: #c9252c;
  font-size: 0.95rem;
}

.advice-box {
  background: linear-gradient(135deg, rgba(201, 37, 44, 0.05) 0%, rgba(201, 37, 44, 0.02) 100%);
  padding: 24px;
  border-radius: 9px;
  border-left: 4px solid #c9252c;
  margin-bottom: 40px;
}
.advice-box h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #c9252c;
}
.advice-box p {
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}

.description-section {
  margin-bottom: 40px;
}
.description-section h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .description-section h3 {
    font-size: 1.1rem;
  }
}
.description-section .content {
  line-height: 1.8;
  font-size: 0.95rem;
  white-space: pre-wrap;
}
.description-section .content p {
  margin-bottom: 16px;
}
.description-section .content p:last-child {
  margin-bottom: 0;
}
.description-section .content ul,
.description-section .content ol {
  margin: 16px 0;
  padding-left: 24px;
}
.description-section .content li {
  margin-bottom: 8px;
}
.description-section .content strong {
  font-weight: 600;
}

.technologies-section {
  margin-bottom: 40px;
}
.technologies-section h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .technologies-section h3 {
    font-size: 1.1rem;
  }
}

.technologies-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: #f5f5f5;
  border: 1px solid rgba(35, 31, 32, 0.15);
  border-radius: 20px;
  color: #231f20;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.tech-chip:hover {
  background: #c9252c;
  color: #ffffff;
  border-color: #c9252c;
  transform: translateY(-2px);
}

.products-using-tech .products-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.products-using-tech .products-list li {
  margin-bottom: 12px;
}
.products-using-tech .products-list li:last-child {
  margin-bottom: 0;
}
.products-using-tech .products-list li a {
  display: block;
  padding: 10px 16px;
  background: #f5f5f5;
  border: 1px solid rgba(35, 31, 32, 0.15);
  border-radius: 7px;
  color: #231f20;
  text-decoration: none;
  transition: all 0.2s ease;
}
.products-using-tech .products-list li a:hover {
  background: #c9252c;
  color: #ffffff;
  border-color: #c9252c;
  transform: translateX(5px);
}

.faq-section h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .faq-section h3 {
    font-size: 1.1rem;
  }
}

.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(35, 31, 32, 0.15);
}
.faq-item:first-child {
  padding-top: 0;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #231f20;
  font-weight: 600;
}
.faq-item p {
  line-height: 1.7;
  opacity: 0.8;
  margin: 0;
  font-size: 0.95rem;
}

.ratings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.rating-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rating-market-value {
  margin-bottom: 0.5rem;
}

.rating-label-text {
  font-size: 0.75em;
  color: #999;
  opacity: 0.7;
  margin-bottom: 0.4rem;
  border-bottom: 1px solid #eee;
}

.rating-value-text {
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.2;
}
.rating-value-text .approx {
  color: #aaa;
  margin-right: 0.1em;
}

.rating-circles-block {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rating-circles-label {
  font-size: 0.95em;
  font-weight: 500;
}

.rating-circles {
  display: flex;
  gap: 0.35rem;
}

.rating-circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #ddd;
  display: inline-block;
  transition: background-color 0.3s ease;
}
.rating-circle[data-position="1"][data-rating="1"], .rating-circle[data-position="1"][data-rating="2"], .rating-circle[data-position="1"][data-rating="3"], .rating-circle[data-position="1"][data-rating="4"], .rating-circle[data-position="1"][data-rating="5"] {
  background-color: #22c55e;
}
.rating-circle[data-position="2"][data-rating="2"], .rating-circle[data-position="2"][data-rating="3"], .rating-circle[data-position="2"][data-rating="4"], .rating-circle[data-position="2"][data-rating="5"] {
  background-color: #84cc16;
}
.rating-circle[data-position="3"][data-rating="3"], .rating-circle[data-position="3"][data-rating="4"], .rating-circle[data-position="3"][data-rating="5"] {
  background-color: #eab308;
}
.rating-circle[data-position="4"][data-rating="4"], .rating-circle[data-position="4"][data-rating="5"] {
  background-color: #f97316;
}
.rating-circle[data-position="5"][data-rating="5"] {
  background-color: #ef4444;
}

.contacts-content {
  padding: 60px 0;
}
@media (max-width: 768px) {
  .contacts-content {
    padding: 40px 0;
  }
}

.contacts-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
@media (max-width: 992px) {
  .contacts-layout {
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .contacts-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contacts-info-column .contact-item {
    margin-bottom: 2rem;
  }
}
.contacts-info-column .contact-item h3 {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(35, 31, 32, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.contacts-info-column .contact-item .contact-value {
  font-size: 2.05rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}
@media (max-width: 768px) {
  .contacts-info-column .contact-item .contact-value {
    font-size: 1.5rem;
  }
}
.contacts-info-column .contact-item .contact-value a {
  color: #231f20;
  text-decoration: none;
  transition: color 0.2s;
}
.contacts-info-column .contact-item .contact-value a:hover {
  color: #c9252c;
}
.contacts-info-column .contact-item .contact-note {
  font-size: 1rem;
  color: rgba(35, 31, 32, 0.6);
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.contacts-form-column .info-section {
  position: sticky;
  top: 100px;
}
@media (max-width: 768px) {
  .contacts-form-column .info-section {
    position: static;
  }
}

.gallery-section {
  padding: 4rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 3px;
  margin-bottom: 2rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery-item:hover {
  transform: scale(1.05);
}
.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #f0f0f0;
  transition: opacity 0.3s ease;
}
.gallery-thumbnail.lazy-loading {
  opacity: 0.5;
  background: linear-gradient(90deg, #f0f0f0 0%, #e0e0e0 50%, #f0f0f0 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
.gallery-thumbnail.lazy-loaded {
  opacity: 1;
}
.gallery-thumbnail.lazy-error {
  opacity: 0.3;
  background: #f5f5f5 url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"><path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"/><polyline points="7 10 12 15 17 10"/></svg>') center center no-repeat;
  background-size: 40%;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item-title {
  color: #fff;
  font-size: 1rem;
  text-align: center;
  padding: 1rem;
}

.no-items {
  text-align: center;
  padding: 3rem;
  color: #666;
  font-size: 1.2rem;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
}
.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease;
}
#lightbox-image.loading {
  opacity: 0.3;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.1) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  min-height: 300px;
}

.lightbox-caption {
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: 1.1rem;
  margin-top: 1rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 1rem;
  transition: background 0.3s ease;
  z-index: 10000;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-close {
  top: 20px;
  right: 30px;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  padding: 0.5rem 1rem;
}

.lightbox-prev {
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  line-height: 1;
  padding: 0.5rem 1.2rem;
}

.lightbox-next {
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  line-height: 1;
  padding: 0.5rem 1.2rem;
}

.gallery-carousel {
  padding: 3rem 0;
}
.gallery-carousel .container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.gallery-carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.gallery-carousel-slider {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 50px;
}
.gallery-carousel-slider .swiper-wrapper {
  height: 100%;
  max-height: 100%;
}
.gallery-carousel-slider .swiper-slide {
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 1;
  height: auto;
  background-color: #f0f0f0;
}
.gallery-carousel-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-carousel-slider .swiper-slide:hover img {
  transform: scale(1.05);
}
.gallery-carousel-slider .pagiwrap {
  padding: 0;
  justify-content: center;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  gap: 20px;
  align-items: center;
}
.gallery-carousel-slider .swiper-pagination {
  position: relative;
  width: auto;
  min-height: 34px;
}
.gallery-carousel-slider .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: auto;
  top: 0;
  margin-top: 23px;
  flex-direction: row;
  transform: none;
}
.gallery-carousel-slider .swiper-pagination-bullet {
  background: #000;
  opacity: 1;
}
@media (max-width: 480px) {
  .gallery-carousel-slider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}
.gallery-carousel-slider .swiper-pagination-bullet-active {
  background: #c51a1b;
}
@media (max-width: 480px) {
  .gallery-carousel-slider .swiper-pagination-bullet-active {
    width: 10px;
    height: 10px;
  }
}
.gallery-carousel-slider .swiper-button-next,
.gallery-carousel-slider .swiper-button-prev {
  position: relative;
  color: #c51a1b;
  min-width: 40px;
  min-height: 40px;
  margin: 0;
}
.gallery-carousel-slider .swiper-button-next::after,
.gallery-carousel-slider .swiper-button-prev::after {
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
  background-color: #fff;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: auto;
  margin: 0;
}

.gallery-carousel-item {
  cursor: pointer;
}

.gallery-carousel-link {
  display: flex;
  justify-content: flex-end;
  margin-top: 0;
}
.gallery-carousel-link .gallery-view-all {
  background: #fff;
  color: #c51a1b;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.gallery-carousel-link .gallery-view-all:hover {
  color: rgb(248.2959641256, 204.2040358744, 204.4618834081);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .lightbox-prev,
  .lightbox-next {
    font-size: 2rem;
    padding: 0.5rem 0.8rem;
  }
  .lightbox-close {
    font-size: 2.5rem;
    top: 10px;
    right: 15px;
  }
}
.products-carousel-section {
  padding: 1rem 0;
  overflow: hidden;
}

.skeleton {
  animation: skeleton-loading 1s linear infinite alternate;
}
.skeleton.item-card {
  pointer-events: none;
  cursor: default;
  min-height: 108px !important;
  display: flex !important;
  flex-direction: column !important;
}

.skeleton-box {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-wave 1.5s ease-in-out infinite;
  border-radius: 8px;
  width: 64px;
  height: 64px;
}

.skeleton-text {
  height: 2.16rem;
  width: 80%;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-wave 1.5s ease-in-out infinite;
  border-radius: 4px;
}

.item-card.skeleton .item-card-image {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item-card.skeleton .item-card-content {
  display: flex !important;
  justify-content: center;
  align-items: flex-start !important;
  flex: 1;
  min-height: 44px !important;
}

@keyframes skeleton-wave {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
@keyframes skeleton-loading {
  0% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
.empty-message {
  grid-column: 1/-1;
  text-align: center;
  padding: 3rem;
  color: #666;
}

.item-card.all-products-link {
  color: var(--color-primary, #c9252c);
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.item-card.all-products-link:hover {
  color: var(--color-primary-hover, #a31e22);
}
.item-card.all-products-link .item-card-image svg {
  width: 60%;
  height: 60%;
  filter: hue-rotate(0deg) saturate(5) brightness(0.8);
}

.flexcol {
  display: flex;
  flex-direction: column;
}

.flexrow {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
.flexrow.wrapping {
  flex-wrap: wrap;
}
.flexrow.center {
  justify-content: center;
}
.flexrow.space-between {
  justify-content: space-between;
}
.flexrow.vcenter {
  align-items: center;
}

.colgap {
  gap: 32px;
}

.subcolgap {
  gap: 16px;
}

.ingap {
  gap: 8px;
}

.flexgrow {
  flex-grow: 1;
}

.col {
  flex: 1;
  max-width: 100%;
}
.col.hug {
  flex: 0 0 auto;
}
.col.fixed {
  flex: 0 0 256px;
}
.col.fill {
  flex: 1;
  flex-grow: 1;
}

@media only screen and (max-width: 479px) {
  .wrap479 {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 639px) {
  .wrap639 {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 949px) {
  .wrap949 {
    flex-wrap: wrap;
  }
}
