:root {
  --bg-color: #fff;
  --bg-color-grey: #f5f5f7;
  --bg-color-mid-grey: #e4e4e4;
  --bg-color-mid-grey-2: #dcdcdc;
  --bg-color-dark-grey: #333;
  --bg-orange: #ffa900;
  --brand-primary: #ff2f2f;
  --brand-primary-light: #ff9d9d;
  --font-color: #3d3642;
  --font-color-grey: #797878;
  --font-color-light: #cdcdcf;
}

@font-face {
  font-family: "SF Pro";
  src:
    url(/assets/fonts/sfpro/SFProDisplay-Light.woff2) format("woff2"),
    url(/assets/fonts/sfpro/SFProDisplay-Light.ttf) format("ttf");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "SF Pro";
  src:
    url(/assets/fonts/sfpro/SFProDisplay-Regular.woff2) format("woff2"),
    url(/assets/fonts/sfpro/SFProDisplay-Regular.ttf) format("ttf");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "SF Pro";
  src:
    url(/assets/fonts/sfpro/SFProDisplay-Medium.woff2) format("woff2"),
    url(/assets/fonts/sfpro/SFProDisplay-Medium.ttf) format("ttf");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "SF Pro";
  src:
    url(/assets/fonts/sfpro/SFProDisplay-Semibold.woff2) format("woff2"),
    url(/assets/fonts/sfpro/SFProDisplay-Semibold.ttf) format("ttf");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "SF Pro";
  src:
    url(/assets/fonts/sfpro/SFProDisplay-Bold.woff2) format("woff2"),
    url(/assets/fonts/sfpro/SFProDisplay-Bold.ttf) format("ttf");
  font-weight: 700;
  font-style: normal;
}

/*======================== General =========================*/
html,
body {
  height: 100%;
}

body {
  min-width: 320px;
  font-size: 17px;
  font-family: "SF Pro", sans-serif;
  line-height: 25px;
  font-weight: 400;
  font-style: normal;
  background-color: var(--bg-color);
  color: var(--font-color);
}

img {
  max-width: 100%;
  height: auto;
}

.btn {
  padding: 12px 35px;
  font-weight: 500;
}

.btn-primary {
  background-color: var(--bg-color-dark-grey);
  border-color: var(--bg-color-dark-grey);
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.btn-primary:active {
  background-color: var(--brand-primary) !important;
  border-color: var(--brand-primary) !important;
}

.btn-primary:focus-visible {
  background-color: var(--brand-primary);
  border: none;
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
  box-shadow: 0 0 5px var(--brand-primary);
}

section h1,
section h2 {
  color: var(--brand-primary);
  font-size: 40px;
  font-weight: 600;
  line-height: 62px;
  margin-bottom: 50px;
}

.hidden {
  display: none;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

main.main {
  flex: 1 1 auto;
}

#goToTop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background-color: var(--font-color-light);
  color: var(--bg-color);
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  opacity: 0.5;
  font-size: 25px;
  transition: all 0.3s;
  z-index: 10;
  display: none;
}

#goToTop:hover {
  background-color: var(--brand-primary);
  opacity: 1;
}

#offcanvasCookie {
  height: auto;
}

#offcanvasCookie p {
  font-size: 17px;
  line-height: 26px;
}

#allow-cookie {
  width: 180px;
  margin-bottom: 5px;
  margin-left: 5px;
}

.breadcrumb {
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 15px;
}

.breadcrumb a {
  color: var(--bg-color-dark-grey);
  text-decoration: none;
  transition: all 0.3s;
}

.breadcrumb a:hover {
  color: var(--brand-primary);
}

.breadcrumb a.active {
  color: var(--font-color);
}

/*======================== Header =========================*/
.navbar {
  border-bottom: 1px solid var(--bg-color-grey);
}

.navbar a {
  color: var(--font-color);
  font-size: 16px;
  font-weight: 400;
}

.navbar a:active {
  background-color: var(--bg-color-grey);
}

.navbar .main-menu {
  text-transform: uppercase;
  margin-right: 30px;
}

.navbar .main-menu::after {
  display: none;
}

.navbar-brand {
  margin-right: 100px;
}

.navbar .navbar-nav > li > a::before {
  content: "";
  width: 100%;
  display: block;
}

.navbar-side {
  display: flex;
  position: relative;
}

.navbar-side ul {
  list-style: none;
  gap: 25px;
  margin-bottom: 0;
}

.navbar-side ul i {
  transition: all 0.3s;
}

.navbar-side .dropdown-item:hover {
  background-color: var(--bg-color-grey);
}

.navbar-phone a {
  text-decoration: none;
}

.navbar-language {
  display: flex;
  align-items: center;
}

.navbar-language a {
  text-decoration: none;
}

.navbar-language img {
  margin-right: 10px;
}

.navbar-language .dropdown-toggle::after {
  content: "\f078";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  font-size: 12px;
  border: 0;
}

.offcanvas-bottom ul {
  display: flex;
  list-style: none;
  justify-content: space-between;
  padding: 20px;
  margin: 0;
}

.offcanvas-bottom a {
  text-decoration: none;
}

.navbar-toggler {
  border: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.animate {
  animation-duration: 0.5s;
}

.slideIn {
  animation-name: slideIn;
}

@keyframes slideIn {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }

  100% {
    transform: translateY(0rem);
    opacity: 1;
  }
}

.navbar-btns {
  display: flex;
  align-items: center;
  gap: 5px !important;
  position: relative;
  margin: 0;
  margin-left: 15px;
  padding: 0;
}

.navbar-btns a {
  margin: 0;
  padding: 10px;
  text-align: center;
  border: none;
  transition: all 0.3s;
}

.navbar-btns a:hover {
  background-color: var(--bg-color-mid-grey-2);
  color: var(--brand-primary);
  cursor: pointer;
}

.navbar-btns i {
  font-size: 18px;
}

.navbar-btns .circle {
  display: flex;
  justify-content: center;
  align-items: center;

  background-color: var(--brand-primary);
  color: var(--bg-color);
  font-size: 14px;
  font-weight: 300;
  width: 20px;
  height: 20px;
  border-radius: 50%;

  position: absolute;
  top: -1px;
  right: -1px;
}

#navbar-compare-products {
  display: none;
}

/*======================== ./Header =========================*/

/*======================== Slider ===========================*/
.carousel {
  margin-bottom: 50px;
}

.carousel-caption {
  width: 450px;
  height: 350px;
  left: 62%;
  right: auto;
  top: auto;
  bottom: 5%;
  background: rgba(0, 0, 0, 0.8);
  text-align: left;
  padding: 20px;
}

.carousel-caption h5 {
  color: var(--brand-primary);
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 10px;
  margin-top: 20px;
}

.carousel-caption p {
  font-size: 19px;
  color: var(--bg-color-grey);
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: -50px;
}

.carousel-indicators > button {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50%;
  background-color: var(--brand-rimary-light);
}

.carousel-indicators .active {
  width: 10px !important;
  height: 10px !important;
  background-color: var(--brand-primary);
}

/*======================== ./Slider =========================*/

/*======================== Why =========================*/

.why {
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: center;
}

.why-item {
  display: flex;
  text-align: left;
}

.why-item .why-num {
  color: var(--brand-primary);
  font-size: 400%;
  font-weight: 700;
  padding: 20px;
  padding-right: 40px;
}

.why-item h3 {
  font-size: 18px;
  font-weight: 700;
}

.why-item a {
  text-decoration: none;
  color: var(--font-color);
  font-weight: 600;
  border-bottom: 1px dotted var(--font-color);
  transition: all 0.3s;
}

.why-item a:hover {
  color: var(--brand-primary) !important;
}

.why-item .btn {
  text-decoration: none;
  border-bottom: 1px dotted var(--font-color);
  border-radius: 0;
  color: var(--font-color) !important;
  transition: all 0.3s;
}

.why-item .btn:hover {
  color: var(--brand-primary) !important;
}

/*======================== ./Why =========================*/

/*======================== Our-products =========================*/
.our-products {
  padding: 20px;
  text-align: center;
}

.our-products .our-products-item {
  background-color: var(--bg-color-grey);
  padding: 30px;
  margin-bottom: 20px;
}

.our-products .our-products-desc {
  margin-bottom: 20px;
}

.our-products a {
  text-decoration: none;
  color: var(--font-color);
}

.our-products h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

.our-products p {
  font-size: 20px;
}

.our-products .btn {
  background-color: var(--brand-primary);
  color: var(--bg-color);
  border: none;
  border-radius: 20px;
  padding: 10px;
  transition: all 0.3s;
}

.our-products .btn:hover {
  background-color: var(--bg-color-dark-grey);
}

.our-products img {
  max-width: 300px;
  max-height: auto;
}

/*======================== ./Our-products =========================*/

/*======================== Learn-more =========================*/
.learn-more {
  background-color: var(--bg-color-grey);
  padding-top: 25px;
  padding-bottom: 50px;
  text-align: center;
}

.learn-more .learn-more-item {
  background-color: var(--bg-color);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.5s ease;
  text-align: left;
  height: 100%;
}

.learn-more .learn-more-item a {
  text-decoration: none;
}

.learn-more .learn-more-item:hover {
  transform: scale(1.01);
}

.learn-more .learn-more-desc {
  color: var(--font-color);
  padding: 30px;
}

.learn-more h3 {
  color: var(--font-color);
  font-size: 26px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.learn-more h4 {
  color: var(--font-color);
  font-size: 18px;
  font-weight: 700;
}

.learn-more .learn-more-item img {
  margin-top: auto;
  object-fit: cover;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.learn-more .learn-more-item i {
  color: var(--bg-color-dark-grey);
  position: absolute;
  font-size: 36px;
  right: 10px;
  bottom: 20px;
  transition: all 0.3s;
  border-color: var(--bg-orange);
}

.learn-more .learn-more-item i:hover {
  color: var(--brand-primary);
}

.learn-more-controls {
  text-align: center;
  margin-top: 40px;
}

.learn-more-controls .prev-btn {
  margin-right: 20px;
}

.learn-more-controls i {
  font-size: 30px;
  cursor: pointer;
  color: var(--bg-color-dark-grey);
  transition: all 0.3s;
}

.learn-more-controls span.disabled i {
  color: var(--bg-color-mid-grey);
}
/*======================== ./Learn-more =========================*/

/*======================== OWL-CAROUSEL - for all blocks =========================*/
.owl-stage {
  padding-left: 0 !important;
  display: flex;
}

.owl-nav {
  display: none;
}

.owl-item {
  display: flex;
}

.item {
  display: flex;
  flex-direction: column;
  height: 100%;
}
/*======================== ./ OWL-CAROUSEL =========================*



/*======================== footer =========================*/
.footer {
  background-color: var(--bg-color-dark-grey);
}

.footer-top {
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer h3 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: var(--bg-color);
  margin-bottom: 25px;
}

.footer ul {
  list-style: none;
  padding-left: 0;
}

.footer li {
  margin-bottom: 10px;
}

.footer a {
  color: var(--bg-color);
  text-decoration: none;
  transition: all 0.3s;
}

.footer a:hover {
  border-bottom: 1px solid var(--bg-color);
}

.footer-logo-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.footer-social ul {
  display: flex;
  margin-bottom: 0;
  gap: 15px;
}

.footer-social a:hover {
  border: none;
}

.footer-social svg {
  fill: var(--bg-color);
  transition: all 0.3s;
}

.footer-social a:hover svg {
  fill: var(--brand-primary);
}

.footer-bottom {
  border-top: 1px solid #626262;
  padding-top: 25px;
  padding-bottom: 25px;
}

.footer-bottom ul {
  display: flex;
}

.footer-bottom li {
  color: var(--font-color-light);
  font-size: 14px;
  margin-right: 10px;
}

.footer-bottom li a {
  color: var(--font-color-light);
  text-decoration: none;
}

.footer-bottom li.left {
  margin-right: 50px;
}

.footer-bottom li.right {
  margin-left: auto;
}

/*======================== ./footer =========================*/

/*======================== products-page =========================*/
.products-page {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.products-page h1 {
  color: var(--font-color);
  font-size: 28px;
  line-height: 42px;
  font-weight: 600;
  margin-bottom: 30px;
}

.products-page .btn-outline-primary {
  border: 1px solid var(--bg-color-mid-grey-2);
  color: var(--font-color);
  padding-bottom: 7px;
  padding-top: 7px;
}

.products-page .btn-outline-primary:hover {
  border: 1px solid var(--brand-primary);
  color: var(--bg-color) !important;
  background-color: var(--brand-primary) !important;
}

.filters {
  padding: 25px;
  margin-top: 30px;
  margin-bottom: 20px;
  border: 1px solid var(--bg-color-mid-grey-2);
}

.filters h3 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  color: var(--font-color);
}

#filters-accordion .accordion-item {
  border-left: 0;
  border-right: 0;
  padding-bottom: 10px;
  padding-top: 10px;
}

#filters-accordion .accordion-item:first-child {
  border-top: 0;
}

#filters-accordion .accordion-item:last-of-type {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

#filters-accordion .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
  color: var(--font-color);
}

#filters-accordion .accordion-button:focus {
  box-shadow: none;
}

#filters-accordion .accordion-button,
#filters-accordion .accordion-body {
  padding-left: 0;
  padding-right: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}

#filters-accordion .accordion-button {
  font-weight: 500;
  padding-bottom: 5px;
  padding-top: 5px;
}

#filters-accordion .accordion-body {
  margin-bottom: 15px;
}

.filter-price {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
}

.filter-price input {
  width: 100%;
  height: 40px;
  text-align: center;
  border-radius: 5%;
  appearance: textfield;
  -moz-appearance: textfield; /* Firefox - remove arrows */
}

/* input number remove arrows */
/* Chrome, Safari, Edge, Opera */
.filter-price input::-webkit-outer-spin-button,
.filter-price input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.filter-price .form-control:focus {
  border-color: var(--bg-color-dark-grey);
  box-shadow: none;
}

#filters-accordion .ui-slider-horizontal {
  height: 2px;
  border: none;
  background-color: var(--brand-primary-light);
}

#filters-accordion .ui-slider-range {
  background-color: var(--brand-primary);
}

#filters-accordion .ui-slider-handle {
  top: -0.5em;
  background-color: var(--brand-primary);
  border: 1px solid var(--brand-primary);
  border-radius: 50%;
}

#filters-accordion .ui-slider-handle:focus {
  outline: none;
  box-shadow: none;
}

.filters-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  max-height: 200px;
  overflow-y: auto;
  padding-right: 5px;
}

.filters-list-item .form-check {
  display: flex;
  gap: 8px;
}

.filters-list-item .form-check-label {
  flex: 1 1 auto;
  font-size: 15px;
  line-height: 24px;
}

.filters-list-item .form-check-input:checked {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.filters-list-item .form-check-input:focus {
  box-shadow: none;
}

.filters-list-item span {
  font-size: 12px;
  line-height: 24px;
  color: var(--font-color-grey);
  font-weight: 300;
}

/*======================== product-card =========================*/
.products-content-top {
  display: flex;
  justify-content: end;
}

.products-content-top select {
  width: 220px;
  margin-left: auto;
}

.products-content-top option {
  font-size: 15px;
  line-height: 24px;
}

.products-content-top select:hover,
.products-content-top select:focus {
  box-shadow: none;
  border: 1px solid var(--bg-color-mid-grey-2);
}

#compare-products {
  display: none;
}

.products-content-top i {
  margin-right: 10px;
}

.products-list {
  margin-top: 32px;
  margin-bottom: 50px;
  flex-grow: 1;
}

.product-card {
  position: relative;
  border: 1px solid var(--bg-color-mid-grey-2);
  background-color: var(--bg-color);
  overflow: visible; /* shadow is not to cut off */
  margin-bottom: 25px;
}

.product-card-thumb {
  padding: 10px;
  text-align: center;
}

.product-card-thumb img {
  height: 250px;
  width: 250px;
  object-fit: contain;
}

.product-card-details {
  padding: 10px;
  margin-bottom: 0;
}

.product-card-details a {
  text-decoration: none;
  font-size: 16px;
  line-height: 20px;
  color: var(--font-color);
  font-weight: 400;
  transition: all 0.3s;
  height: 44px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-card-details a:hover {
  color: var(--brand-primary);
  text-decoration: solid;
}

.product-card-details-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-card-price {
  color: var(--brand-primary);
  font-size: 20px;
  font-weight: 700;
}

.product-card-price del {
  color: var(--font-color-grey);
  font-size: 14px;
  font-weight: 300;
  margin-left: 5px;
}

.product-card-price span {
  margin-left: 3px;
}

.product-card-btns {
  display: flex;
  justify-content: end;
  align-items: center;
  background-color: transparent;
}

.product-card-btns a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  border: none;
  width: 35px;
  height: 35px;
  position: relative;
}

.product-card-btns a:hover {
  background-color: var(--bg-color-mid-grey-2);
  cursor: pointer;
}

.product-card-btns .check-icon {
  position: absolute;
  top: 2px;
  right: 2px;

  width: 14px;
  height: 14px;
  border-radius: 50%;

  background-color: var(--brand-primary);
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 10px;
}

.product-card-btns .check-icon i {
  color: #fff;
}

.product-card-bottom {
  position: absolute;
  top: 100%;
  left: -0.5px;
  right: -1px;
  background: var(--bg-color);
  border: 1px solid var(--bg-color-mid-grey-2);
  border-top: none;
  border-bottom: none;
  padding: 10px;

  pointer-events: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 2;
}

.product-card:hover .product-card-bottom {
  opacity: 1;
  transform: translateY(0);
}

.product-card-bottom p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.product-card-bottom a,
.product-card-bottom button {
  pointer-events: auto;
}

.product-card-shadow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%; /* height of main block */
  background: rgba(0, 0, 0, 0); /* transparent, only for box-shadow */
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 1;
}

.product-card:hover .product-card-shadow {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  height: calc(
    100% + var(--bottom-height, 100px)
  ); /* adjust for product-card-bottom */
}

.product-card-top-sales span {
  background-color: var(--brand-primary);
  color: var(--bg-color);
  text-align: center;
  width: 100px;
  height: 24px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  position: absolute;
  top: 10px;
  left: 10px;
}

.not-in-stock {
  color: var(--font-color-grey);
  font-size: 12px;
  font-weight: 400;
}

/*======================== ./product-card =========================*/

/*======================== product-card pagination =========================*/
.pagination-container {
  margin-top: auto;
  padding-top: 80px;
  z-index: 10;
  position: relative;
}

.pagination .page-item {
  width: 40px;
  height: 40px;
  text-align: center;
}

.pagination .page-item:first-child {
  margin-right: 20px;
}

.pagination .page-item:last-child {
  margin-left: 20px;
}

.pagination .page-link {
  border: 0;
  color: var(--font-color);
}

.pagination .active .page-link {
  background-color: var(--brand-primary);
  color: var(--bg-color);
}

.pagination .disabled .page-link {
  background-color: transparent;
  color: var(--bg-color-mid-grey-2);
}

.pagination .page-link:focus {
  box-shadow: none;
}

/*======================== ./product-card pagination =========================*/

.selected-filters p {
  margin-bottom: 0;
  cursor: pointer;
  font-size: 16px;
  color: var(--font-color-grey);
}

.selected-filters i {
  color: var(--brand-primary);
  margin-right: 5px;
}

/*======================== ./products-page =========================*/

/*======================== product-page =========================*/
.swiper-gallery {
  margin-bottom: 20px;
  text-align: center;
}

.swiper-thumbs .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.3s;
}

.swiper-thumbs .swiper-slide .swiper-slide-thumb-active,
.swiper-thumbs .swiper-slide:hover {
  opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--font-color-grey);
}

.product-main-desc h1 {
  font-size: 24px;
  line-height: 30px;
  color: var(--font-color);
  margin-top: 15px;
  margin-bottom: 15px;
}

.product-main-desc .product-code {
  color: var(--font-color-grey);
  font-size: 14px;
  font-weight: 300;
}

.product-main-desc .product-short-decs {
  margin-top: 15px;
}

.product-main-desc .product-short-decs p {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 0;
}

.product-main-desc .product-short-decs a {
  color: var(--brand-primary);
  text-decoration: none;
  font-size: 15px;
  line-height: 20px;
  font-weight: 300;
  transition: all 0.3s;
}

.product-main-desc .product-short-decs a:hover {
  color: var(--font-color-grey);
}

.product-main-desc .product-set {
  margin-top: 30px;
}

.product-main-desc .product-set .product-set-title {
  font-weight: 600;
}

.product-main-desc .product-set .product-set-add {
  display: flex;
  margin-top: 10px;
}

.product-main-desc .product-set select {
  width: 400px;
}

.product-main-desc .product-set label {
  font-size: 17px;
  font-weight: 600;
  margin-right: 10px;
}

.product-main-desc .product-price-block {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  margin-bottom: 30px;
}

.product-main-desc .product-price-block .product-price {
  color: var(--font-color);
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
}

.product-main-desc .product-price-block .product-price del {
  color: var(--font-color-grey);
  font-size: 22px;
  line-height: 36px;
  font-weight: 300;
  margin-left: 5px;
  display: none;
}

.product-main-desc .product-price-block .product-price span {
  margin-left: 3px;
}

.product-main-desc .product-price-block a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 25px;
  border: none;

  color: var(--bg-color);
  background-color: var(--bg-color-dark-grey);
  font-size: 17px;
  font-weight: 300;
  transition: all 0.3s;
}

.product-main-desc .product-price-block a:hover,
.product-main-desc .product-price-block a:active {
  color: var(--bg-color);
  background-color: var(--brand-primary);
  cursor: pointer;
}

.product-main-desc .product-price-block .compare-products-text {
  margin-left: 10px;
}

.product-desc-tabs {
  border: 0;
  margin-top: 40px;
}

.product-desc-tabs .nav-link {
  padding: 0;
  padding-bottom: 10px;
  margin-left: 50px;
  color: var(--font-color);
  font-size: 18px;
  font-weight: 500;
}

.product-desc-tabs .nav-item:first-child .nav-link {
  margin-left: 0;
}

.product-desc-tabs .nav-link:focus,
.product-desc-tabs .nav-link:hover {
  border-color: transparent;
}

.product-desc-tabs .nav-link:focus-visible {
  box-shadow: none;
}

.product-desc-tabs .nav-item.show .nav-link,
.product-desc-tabs .nav-link.active {
  border-color: transparent;
  border-bottom: 3px solid var(--brand-primary);
}

.product-desc-tabs-content {
  margin-top: 25px;
  margin-bottom: 25px;
}

.product-desc-tabs-content .table th {
  color: var(--font-color);
  font-weight: 500;
  width: 20%;
}

.product-desc-tabs-content .table td {
  color: var(--font-color);
  font-size: 15px;
  width: 60%;
}

.product-desc-tabs-content .table > :not(caption) > * > * {
  padding: 1rem 0.8rem;
}

.product-desc-tabs-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.product-desc-tabs-content h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.product-desc-tabs-content ul {
  list-style: none;
  padding-left: 15px;
}

.product-desc-tabs-content ul > li {
  position: relative;
  padding-left: 25px;
}

.product-desc-tabs-content ul > li::before {
  content: "\f00c";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
}

.product-desc-tabs-content .product-manual {
  display: flex;
  align-items: center;
  margin-bottom: 150px;
}

.product-desc-tabs-content .product-manual a {
  color: var(--font-color);
  text-decoration: none;
}

.product-desc-tabs-content .product-manual a:hover {
  color: var(--brand-primary);
}

.product-desc-tabs-content .product-manual i {
  color: var(--brand-primary);
  font-size: 30px;
  margin-right: 25px;
}

.product-accessories-title h2 {
  color: var(--font-color);
  font-size: 28px;
  line-height: 36px;
  font-weight: 500;
}

.product-accessories {
  margin-top: 40px;
  margin-bottom: 40px;
  padding-bottom: 20px;
}

.product-accessories-item {
  position: relative;
  padding-bottom: 30px;
}

.product-accessories img {
  height: 250px;
}

.product-accessories h2 {
  color: var(--font-color);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  margin-top: 15px;
}

.product-accessories ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.product-accessories .accessories-price {
  position: absolute;
  bottom: 0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.product-accessories a {
  text-decoration: none;
  transition: all 0.3s;
}

.product-accessories a h2:hover {
  color: var(--brand-primary);
}

.product-accessories a img:hover {
  transition: all 0.3s;
}

.product-accessories a img:hover {
  transform: scale(1.05);
}

.product-accessories-controls {
  text-align: center;
  margin-top: 40px;
}

.product-accessories .prev-btn {
  margin-right: 20px;
}

.product-accessories i {
  font-size: 30px;
  cursor: pointer;
  color: var(--bg-color-dark-grey);
  transition: all 0.3s;
}

.product-accessories span.disabled i {
  color: var(--bg-color-mid-grey);
}

/*======================== ./product-page =========================*/

/*======================== product-page-2 =========================*/
.product-header {
  margin-top: 20px;
  margin-bottom: 50px;
}

.product-header h1 {
  color: var(--font-color);
  font-size: 54px;
  line-height: 64px;
  font-weight: 400;
  margin-top: 40px;
  margin-bottom: 50px;
}

.product-header ul {
  list-style: none;
  padding-left: 15px;
}

.product-header ul > li {
  position: relative;
  padding-left: 30px;
  padding-bottom: 5px;
  font-size: 17px;
  font-weight: 500;
}

.product-header ul > li::before {
  content: "\f00c";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: var(--brand-primary);
  position: absolute;
  left: 0;
  top: 0;
}

/* product types */

.product-types {
  padding-top: 25px;
  padding-bottom: 50px;
}

.product-types h2 {
  color: var(--brand-primary);
  font-size: 32px;
  font-weight: 400;
  line-height: 46px;
  margin-bottom: 30px;
}

.product-types .product-types-item {
  background-color: var(--bg-color-mid-grey);
  padding: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: left;
  padding-left: 20px;
  padding-right: 20px;
  height: 100%;
}

.product-types h3 {
  font-size: 26px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.product-types h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

.product-types-item i {
  position: absolute;
  font-size: 36px;
  right: 10px;
  bottom: 20px;
  transition: all 0.3s;
}

.product-types-item i:hover {
  color: var(--brand-primary);
}

.product-types-controls {
  text-align: center;
  margin-top: 40px;
}

.product-types-controls .prev-btn {
  margin-right: 20px;
}

.product-types-controls i {
  font-size: 30px;
  cursor: pointer;
  color: var(--bg-color-dark-grey);
  transition: all 0.3s;
}

.product-types-controls span.disabled i {
  color: var(--bg-color-mid-grey);
}

/* product advanteges */
.product-advantages {
  padding-top: 25px;
  padding-bottom: 25px;
}

.product-advantages .product-advantages-item {
  margin-bottom: 30px;
}

.product-advantages h2 {
  color: var(--brand-primary);
  font-size: 32px;
  font-weight: 400;
  line-height: 46px;
  margin-bottom: 40px;
}

.product-advantages h3 {
  font-size: 24px;
  margin-bottom: 10px;
  margin-top: 20px;
}

.product-advantages img {
  padding-right: 50px;
}

/* product colors */
.product-colors {
  padding-top: 25px;
  padding-bottom: 25px;
}

.product-colors .product-colors-item {
  margin-bottom: 30px;
  text-align: center;
}

.product-colors h2 {
  color: var(--brand-primary);
  font-size: 32px;
  font-weight: 400;
  line-height: 46px;
  margin-bottom: 40px;
}

.product-colors h3 {
  font-size: 22px;
  font-weight: 400;
  margin-top: 20px;
}

.product-colors h4 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
}

.product-colors p {
  font-size: 15px;
  font-weight: 300;
  padding: 0;
  margin: 0;
}

.product-colors img {
  transition: all 0.3s;
}

.product-colors img:hover {
  transform: scale(1.05);
}

.product-colors a {
  color: var(--brand-primary);
  text-decoration: none;
  transition: all 0.3s;
}

.product-colors a:hover {
  color: var(--font-color-grey);
}

.product-colors-bottom {
  display: flex;
  justify-content: space-between;
}

/* product colors detail */
.product-colors-detail {
  display: none;
  margin-top: 20px;
  margin-bottom: 20px;
}

.product-colors-detail img {
  width: 100px;
  height: 35px;
}

.product-colors-detail th {
  text-align: center;
  vertical-align: middle;
}

.product-colors-detail td {
  text-align: center;
  vertical-align: middle;
}

.product-colors-detail td.col-left {
  text-align: left;
}

/* product-gd-accessories */
.product-install-types {
  margin-top: 40px;
  margin-bottom: 20px;
}

.product-install-types {
  margin-top: 50px;
  margin-bottom: 50px;
}
.product-install-types .product-install-types-desc {
  padding-left: 10px;
}

.product-install-types h2 {
  color: var(--brand-primary);
  font-size: 32px;
  font-weight: 400;
  line-height: 46px;
  margin-bottom: 20px;
}

.product-install-types h3 {
  font-size: 22px;
  font-weight: 500;
  margin-top: 20px;
}

.product-install-types-controls {
  text-align: center;
  margin-top: 40px;
}

.product-install-types-controls .prev-btn {
  margin-right: 20px;
}

.product-install-types-controls i {
  font-size: 30px;
  cursor: pointer;
  color: var(--bg-color-dark-grey);
  transition: all 0.3s;
}

.product-install-types-controls span.disabled i {
  color: var(--bg-color-mid-grey);
}

/* product-gd-accessories */
.product-gd-accessories {
  margin-bottom: 50px;
}

.product-gd-accessories .product-gd-accessories-item {
  text-align: center;
  margin-bottom: 20px;
}

.product-gd-accessories .product-gd-accessories-item-desc {
  text-align: left;
  margin-bottom: 40px;
}

.product-gd-accessories h2 {
  color: var(--brand-primary);
  font-size: 32px;
  font-weight: 400;
  line-height: 46px;
  margin-bottom: 20px;
}

.product-gd-accessories h3 {
  font-size: 22px;
  font-weight: 500;
  margin-top: 40px;
}

.product-gd-accessories h4 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  margin-top: 10px;
}

.product-gd-accessories img {
  transition: all 0.3s;
}

.product-gd-accessories img:hover {
  transform: scale(1.05);
}

/*======================== compare-products-list =========================*/
.compare-products-list {
  margin-top: 50px;
  margin-bottom: 50px;
}

.compare-products-list h1 {
  color: var(--font-color);
  font-size: 28px;
  line-height: 42px;
  font-weight: 600;
  margin-bottom: 30px;
}

.compare-products-list .compare-products-list-item {
  position: relative;
  margin-bottom: 30px;
  padding: 20px;
  width: 100%;
  border: 1px solid var(--bg-color-mid-grey-2);
  transition: all 0.3s;
}

.compare-products-list .compare-products-list-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.compare-products-list .compare-products-list-item .compare-products-thumb {
  text-align: center;
  margin-bottom: 20px;
}

.compare-products-list .compare-products-list-item a {
  text-decoration: none;
}

.compare-products-list .compare-products-list-item h3 {
  color: var(--font-color);
  font-size: 17px;
  line-height: 28px;
  font-weight: 600;
  margin: 0;
  padding: 0;
}

.compare-products-list .compare-products-list-item p {
  color: var(--font-color);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

.compare-products-list .compare-products-list-item img {
  width: 200px;
  object-fit: contain;
}

.compare-products-list .compare-products-list-item .compare-products-remove a {
  color: var(--font-color);
  width: 35px;
  height: 35px;
  text-align: center;
  padding: 5px;
  border: none;
  transition: all 0.3s;

  position: absolute;
  top: 10px;
  right: 10px;
}

.compare-products-list
  .compare-products-list-item
  .compare-products-remove
  a:hover {
  background-color: var(--bg-color-mid-grey-2);
  color: var(--brand-primary);
  cursor: pointer;
}
/*======================== ./compare-products-list =========================*/
/*======================== compare-products =========================*/

.compare-products {
  margin-top: 50px;
  margin-bottom: 50px;
}

.compare-products h1 {
  color: var(--font-color);
  font-size: 28px;
  line-height: 42px;
  font-weight: 600;
  margin-bottom: 10px;
}

.compare-products h2 {
  color: var(--font-color);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.compare-products h3 {
  color: var(--font-color);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 15px;
}

.compare-products a {
  text-decoration: none;
  transition: all 0.3s;
}

.compare-products img {
  width: 250px;
  height: auto;
}

.compare-products .table {
  width: 100%;
  table-layout: auto;
}

.compare-products td,
.compare-products th {
  width: 20%;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
}

.compare-products td:first-child,
.compare-products th:first-child {
  text-align: left;
}

.compare-products th {
  vertical-align: top;
}

.compare-products td {
  vertical-align: middle;
}

.compare-products-price {
  color: var(--brand-primary);
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  margin-top: auto;
}

.compare-products-price del {
  color: var(--font-color-grey);
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
  margin-left: 5px;
}

.compare-products-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding: 20px;
  height: 100%;
}

.compare-products-img {
  width: 250px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare-products-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.compare-products-detail {
  /* display: inline-flex; */
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
  width: fit-content;
  height: 100%;
}

.compare-products-remove a {
  color: var(--font-color);
  width: 35px;
  height: 35px;
  text-align: center;
  padding: 5px;
  border: none;
  transition: all 0.3s;

  position: absolute;
  top: 10px;
  right: 10px;
}

.compare-products-remove a:hover {
  background-color: var(--bg-color-mid-grey-2);
  color: var(--brand-primary);
  cursor: pointer;
}

/*======================== ./compare-products =========================*/

/*======================== ./product-page-2 =========================*/

/*======================== article =========================*/
.article {
  background-color: var(--bg-color-grey);
  padding-top: 50px;
  padding-bottom: 50px;
}

.article .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.article .article-header {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-bottom: 20px;
}

.article .article-header h1 {
  color: var(--font-color);
  font-size: 30px;
  line-height: 42px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 50px;
}

.article .article-header .desc {
  color: var(--font-color);
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
}

.article .article-section {
  background-color: var(--bg-color);
  border: 1px solid var(--bg-color-mid-grey-2);
  border-radius: 15px;
  width: 700px;
  margin-top: 20px;
  padding: 20px;
}

.article .article-section-title {
  text-align: center;
}

.article .article-section-title span {
  color: var(--brand-primary);
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
}

.article .article-section-title h3 {
  color: var(--font-color);
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 20px;
}

.article .article-section-content {
  line-height: 1.6;
}

.article .article-section-content p {
  color: var(--font-color);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

.article .article-section-content .article-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.article .type-text {
  display: block;
}

.article .type-image-left .article-image {
  float: left;
  width: 200px;
  margin-right: 20px;
  margin-bottom: 10px;
}

.article .type-image-right .article-image {
  float: right;
  width: 200px;
  margin-left: 20px;
  margin-bottom: 10px;
}

.article .type-image-top {
  display: flex;
  flex-direction: column;
}

.article .type-image-bottom {
  display: flex;
  flex-direction: column-reverse;
}

.article .article-section-content::after {
  content: "";
  display: block;
  clear: both;
}

.article .article-section .article-section-content ul {
  list-style: none;
  padding-left: 15px;
  overflow: hidden;
}

.article .article-section .article-section-content ul > li {
  position: relative;
  padding-left: 30px;
  padding-bottom: 15px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

.article .article-section .article-section-content ul > li::before {
  content: "\f00c";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: var(--font-color);
  position: absolute;
  left: 0;
  top: 0;
}

.article .article-section .article-section-content ul.list-number {
  list-style: none;
  counter-reset: item;
}

.article .article-section .article-section-content .list-number li {
  counter-increment: item;
  position: relative;
  padding-left: 35px;
  margin-bottom: 10px;
}

.article .article-section .article-section-content .list-number li::before {
  content: counter(item) ".";

  position: absolute;
  left: 0;
  top: 0;

  width: 28px;
  height: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 16px; /* трохи менше виглядає краще */
  line-height: 1;

  border-radius: 50%;
  background: #eee;
}

.article-video {
  background-color: var(--bg-color-grey);
  padding-top: 50px;
  padding-bottom: 50px;
}

.article-video .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.article-video .article-header {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-bottom: 20px;
  width: 75%;
}

.article-video .article-header h1 {
  color: var(--font-color);
  font-size: 30px;
  line-height: 42px;
  font-weight: 600;
  margin-bottom: 20px;
}

.article-video .article-header .desc {
  color: var(--font-color);
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 30px;
}

.article-video .article-section {
  background-color: var(--bg-color);
  border: 1px solid var(--bg-color-mid-grey-2);
  border-radius: 15px;
  width: 700px;
  margin-top: 20px;
  padding: 20px;
}

.article-video .article-section p {
  color: var(--font-color);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

/*======================== ./article =========================*/
/*======================== blog =========================*/
.blog {
  background-color: var(--bg-color-grey);
  padding-top: 50px;
  padding-bottom: 50px;
}

.blog .container {
  width: 960px;
}

.blog h1 {
  color: var(--font-color);
  font-size: 30px;
  line-height: 42px;
  font-weight: 600;
  margin-bottom: 20px;
}

.blog a {
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}

.blog .blog-item {
  display: flex;
  background-color: var(--bg-color);
  border-radius: 20px;
  margin-bottom: 20px;
}

.blog .blog-item-vertical {
  flex-direction: column;
}

.blog .blog-item-horizontal .blog-image {
  width: 300px;
  height: auto;
  margin-right: 50px;
}

.blog .blog-item-horizontal .blog-image img {
  width: 300px;
  height: auto;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.blog .blog-item-vertical .blog-image {
  width: 100%;
  height: auto;
}

.blog .blog-item-vertical .blog-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.blog .blog-item .blog-text {
  position: relative;
  padding: 30px;
}

.blog .blog-item .blog-text h4 {
  color: var(--font-color-grey);
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}

.blog .blog-item .blog-text h3 {
  color: var(--font-color);
  font-size: 30px;
  line-height: 42px;
  font-weight: 600;
}

.blog .blog-item .blog-text .blog-desc {
  position: absolute;
  left: 30px;
  bottom: 20px;
  color: var(--font-color-grey);
  font-size: 17px;
  font-weight: 500;
}

.blog .blog-item-vertical .blog-text h4 {
  color: var(--font-color-grey);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.blog .blog-item-vertical .blog-text h3 {
  color: var(--font-color);
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 40px;
}

/*======================== ./blog =========================*/

/*======================== about =========================*/
/* about, career + career vacancies, contacts, become a dealer */
.about {
  margin-top: 50px;
  margin-bottom: 50px;
}

.about h1 {
  color: var(--font-color);
  font-size: 30px;
  line-height: 42px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about img {
  margin-bottom: 50px;
}

.about h3 {
  color: var(--font-color);
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 20px;
}

.about h4 {
  color: var(--font-color);
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 20px;
}

.about p {
  color: var(--font-color);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

.about a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--font-color);
  transition: all 0.3s;
}

.about a.inline {
  display: inline;
}

.about a:hover {
  color: var(--brand-primary);
}

.about ul {
  list-style: none;
  gap: 25px;
  margin-bottom: 0;
  margin-left: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 28px;
}

.about ul i {
  color: var(--brand-primary);
  margin-right: 8px;
  transition: all 0.3s;
}

.about i {
  color: var(--brand-primary);
  margin-right: 8px;
  transition: all 0.3s;
}

/* our-brands */
.about .our-brands {
  margin: 100px 0;
  text-align: center;
}

.about .our-brands h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 50px;
}

.about .our-brands .brand-card {
  height: 160px;
  background: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.about .our-brands .brand-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.about .our-brands .brand-card img {
  max-width: 140px;
  max-height: 70px;
  object-fit: contain;
  display: block;
  margin: auto;
}

.about ul.fa-check-list > li {
  position: relative;
  padding-left: 25px;
}

.about ul.fa-check-list > li::before {
  content: "\f00c";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
}

.about .fa-cloud-arrow-down {
  font-size: 22px;
  line-height: 32px;
}

/*======================== ./about =========================*/

/*======================== manuals =========================*/
.manuals {
  margin-top: 50px;
  margin-bottom: 50px;
}

.manuals h1 {
  color: var(--font-color);
  font-size: 30px;
  line-height: 42px;
  font-weight: 600;
  margin-bottom: 20px;
}

.manuals .manuals-brands .brand-card {
  height: 160px;
  background: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.manuals .manuals-brands .brand-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.manuals .manuals-brands .brand-card img {
  max-width: 140px;
  max-height: 70px;
  object-fit: contain;
  display: block;
  margin: auto;
}
/*======================== ./manuals =========================*/

/*======================== manuals-brand =========================*/
.manuals-brand {
  background-color: var(--bg-color-grey);
  padding-top: 50px;
  padding-bottom: 50px;
}

.manuals-brand .manuals-brand-col {
  margin-bottom: 20px;
}

.manuals-brand h1 {
  color: var(--font-color);
  font-size: 30px;
  line-height: 42px;
  font-weight: 600;
  margin-bottom: 20px;
}

.manuals-brand a {
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}

.manuals-brand .manuals-brand-item {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-color);
  border-radius: 20px;
  margin-bottom: 20px;
}

.manuals-brand .manuals-brand-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 10px;
}

.manuals-brand .manuals-brand-image img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  transition: all 0.3s;
}

.manuals-brand .manuals-brand-image img:hover {
  transform: scale(1.05);
}

.manuals-brand .manuals-brand-item .manuals-brand-text {
  padding: 15px;
  margin-top: 20px;
  text-align: center;
}

.manuals-brand .manuals-brand-item .manuals-brand-text h3 {
  color: var(--font-color);
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
}

/*======================== ./manuals-brand =========================*/

/*======================== manuals-list =========================*/
.manuals-list {
  background-color: var(--bg-color);
  padding-top: 50px;
  padding-bottom: 50px;
}

.manuals-list h1 {
  color: var(--font-color);
  font-size: 30px;
  line-height: 42px;
  font-weight: 600;
  margin-bottom: 20px;
}

.manuals-list a {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}

.manuals-list ul {
  list-style: none;
  gap: 25px;
  margin-bottom: 0;
  margin-left: 0;
  margin-top: 30px;
  padding: 0;
  font-size: 20px;
  line-height: 30px;
}

.manuals-list li {
  padding-bottom: 10px;
}

.manuals-list ul i {
  color: var(--brand-primary);
  font-size: 30px;
  line-height: 30px;
  margin-right: 8px;
  margin-bottom: 8px;
  transition: all 0.3s;
}

.manuals-list ul span {
  color: var(--font-color);
}

.manuals-list ul span:hover {
  color: var(--brand-primary);
}

/*======================== ./manuals-list =========================*/

/*======================== sitemap =========================*/
.sitemap {
  margin-top: 50px;
  margin-bottom: 50px;
}

.sitemap h1 {
  color: var(--font-color);
  font-size: 30px;
  line-height: 42px;
  font-weight: 600;
  margin-bottom: 20px;
}

.sitemap .sitemap-list {
  column-count: 3;
  column-gap: 20px;
}

.sitemap .sitemap-list .sitemap-group {
  break-inside: avoid;
  margin-bottom: 30px;
}

.sitemap .sitemap-list a {
  color: var(--font-color);
  text-decoration: none;
  transition: all 0.3s;
}

.sitemap .sitemap-list a:hover {
  color: var(--brand-primary);
}

.sitemap .sitemap-list h3 {
  color: var(--font-color);
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 10px;
  break-inside: avoid;
}

.sitemap .sitemap-list p {
  color: var(--font-color);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  padding: 0;
  margin: 0;
}

.sitemap .sitemap-children,
.sitemap .grandchildren {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.sitemap .grandchild-item {
  margin-left: 20px;
}

.sitemap .grandchild-item:last-child {
  margin-bottom: 20px;
}

/*======================== ./sitemap =========================*/

/*======================== feedback =========================*/
#feedbackForm {
  width: 500px;
}
/*======================== ./feedback =========================*/

/*======================== copy =========================*/
/*======================== ./copy =========================*/
