@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Regular.ttf") format("ttf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Medium.ttf") format("ttf");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-SemiBold.ttf") format("ttf");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("fonts/Lato-Light.ttf") format("ttf");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("fonts/Lato-Regular.ttf") format("ttf");
  font-weight: 400;
  font-style: normal;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-size: 16px;
  font-style: "Inter", "sans-serif";
  line-height: 34px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.title-black {
  color: black;
  text-transform: uppercase;
  position: relative;
  margin-left: 40px;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 35px;
}
.title-black::before {
  content: "";
  height: 1px;
  width: 30px;
  background-color: black;
  position: absolute;
  top: 50%;
  left: -40px;
}

.title-white {
  color: white;
  text-transform: uppercase;
  position: relative;
  margin-left: 40px;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 35px;
}
.title-white::before {
  content: "";
  height: 1px;
  width: 30px;
  background-color: white;
  position: absolute;
  top: 50%;
  left: -40px;
}

.subtitle-black {
  font-family: "Inter", sans-serif;
  font-size: 45px;
  font-weight: 500;
  color: black;
  line-height: 1.2;
}

.subtitle-white {
  font-family: "Inter", sans-serif;
  font-size: 45px;
  font-weight: 500;
  color: white;
  line-height: 1.2;
}

@media (max-width: 1200px) {
  .container {
    padding: 0 20px;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  height: -moz-max-content;
  height: max-content;
}

.header__logo-container {
  line-height: 0;
}

.header__logo {
  height: 50px;
}

.navigation {
  display: flex;
  align-items: center; /* Center items horizontally */
  justify-content: center; /* Center items vertically */
}

.navigation.is-active {
  left: 0;
}

.navigation__menu {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: center;
  width: 100%;
}

.navigation__item a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #4F5052;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
}

.close-btn {
  display: none;
  position: relative;
  cursor: pointer;
  font-size: 24px;
  z-index: 1002;
  background-color: black;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.close-btn::after {
  position: absolute;
  content: "";
  width: 3px;
  height: 31px;
  background-color: white;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-btn::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 31px;
  background-color: white;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.navigation__item {
  margin-right: 35px;
}
.navigation__item:last-child {
  margin-right: 65px;
}

.navigation-dropdown {
  position: relative;
  font-family: "Lato", sans-serif;
}

.navigation-dropdown__selected {
  background-color: #ffffff;
  cursor: pointer;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
}

.navigation-dropdown__arrow {
  margin-left: 5px;
}

.navigation-dropdown__menu {
  display: none;
  position: absolute;
  z-index: 1000 !important;
  width: 50px;
  top: 100%;
  background-color: #ffffff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  z-index: 1000;
}

.navigation-dropdown__item {
  display: block;
  padding: 0 20px 0 10px;
  text-align: center;
  cursor: pointer;
  background-color: white;
  transition: background-color 0.2s;
  text-decoration: none;
  color: #4F5052;
}

.navigation-dropdown__selected-language {
  font-size: 16px;
}

.navigation-dropdown__item {
  font-size: 16px;
}

.navigation-dropdown__item:hover {
  background-color: #f5f5f5;
}

.header__bar {
  display: none;
  position: relative;
  cursor: pointer;
}
.header__bar::before {
  content: "";
  position: absolute;
  width: 43px;
  height: 5px;
  background-color: black;
  right: 0;
  transform: translateY(-5px);
}
.header__bar::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 5px;
  background-color: black;
  top: 0;
  right: 0;
  transform: translateY(5px);
}

@media (max-width: 992px) {
  .header__logo {
    height: 40px;
  }
  .navigation__item a {
    font-size: 14px;
  }
  .navigation__item:last-child {
    margin-right: 45px;
  }
  .navigation-dropdown__selected-language {
    font-size: 14px;
  }
  .navigation-dropdown__item {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .navigation {
    display: none;
  }
  .navigation-dropdown__item {
    text-align: left;
    padding: 0;
    color: #7D7D7E;
  }
  .navigation {
    position: fixed;
    left: -100vw; /* Off-screen initially */
    top: 0;
    height: 100vh; /* Full viewport height */
    width: 100vw; /* Full viewport width */
    overflow-y: scroll;
    background-color: #fff; /* Background color */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items horizontally */
    justify-content: flex-start; /* Align items to the top */
    transition: left 0.3s ease-in-out; /* Smooth slide-in effect */
    z-index: 1001; /* Above other content */
  }
  .navigation.is-active {
    display: flex;
    flex-direction: column;
    align-items: normal;
  }
  .header__bar {
    display: block;
  }
  .navigation__menu {
    flex-direction: column;
    padding: 46px 30px 0 30px;
    text-align: left;
    margin-bottom: 50px;
  }
  .navigation-dropdown {
    margin: 0 30px;
    padding: 10px 10px 0 10px;
    border-top: 1px solid black;
  }
  .navigation-dropdown__menu {
    box-shadow: none;
  }
  .navigation__item a {
    color: black;
  }
  .navigation-dropdown__selected {
    justify-content: space-between;
  }
  .close-btn-container {
    display: flex;
    justify-content: flex-end;
  }
  .close-btn {
    display: block;
    margin: 20px 30px 0 0;
  }
}
.no-scroll {
  overflow: hidden;
  position: fixed; /* Add this line */
  width: 100%; /* Add this line */
}

@media (max-width: 400px) {
  .header__logo {
    height: 30px;
  }
  .header__bar::before {
    transform: translateY(-7.5px);
  }
  .header__bar::after {
    transform: translateY(2.5px);
  }
}
.footer {
  background-color: #1E1E1F;
}

.footer__main {
  display: flex;
  justify-content: space-between;
  padding: 50px 0;
  border-bottom: 1px solid white;
}

.footer__content {
  display: flex;
  margin-top: 40px;
}

.footer__content > * {
  flex: 1;
}

.footer__image {
  height: 50px;
  margin-top: 40px;
}

.footer__copyright {
  font-size: 14px;
  font-family: "Inter", sans-serif;
  color: white;
  text-align: center;
  padding: 20px 0;
}

.footer-title {
  font-family: "Inter", sans-serif;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 18px;
  color: white;
}

.footer__links-items {
  display: flex;
  flex-direction: column;
}

.footer__links-item {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  color: white;
  font-size: 16px;
  text-decoration: none;
  line-height: 1;
  margin-bottom: 17px;
}

.footer__contacts-info {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  color: white;
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.2;
  display: flex;
  align-items: center;
}
.footer__contacts-info:last-child {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 992px) {
  .footer__main {
    flex-direction: column;
  }
  .footer__image {
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (max-width: 400px) {
  .footer__image {
    height: 30px;
  }
  .footer__links-title {
    font-size: 14px;
  }
  .footer__links-item, .footer__contacts-info {
    font-size: 14px;
  }
}
.product__inner {
  display: flex;
  padding: 120px 0 65px 0;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  margin-top: 20px;
}

.product__photos {
  display: flex;
}
.product__photos a {
  line-height: 0;
}

.product__thumbnail-link > img {
  max-height: 442px;
  max-width: 480px;
}

.product_photos--small {
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  margin-right: 8px;
  max-height: 442px;
}
.product_photos--small a {
  line-height: 0;
}
.product_photos--small a img {
  height: 142px;
  width: 124px;
  margin-bottom: 8px;
}
.product_photos--small a:last-child img {
  margin: 0;
}

/* Styles for the scrollbar track */
.product_photos--small::-webkit-scrollbar-track {
  background-color: #f1f1f1; /* Light grey track */
}

/* Styles for the scrollbar thumb */
.product_photos--small::-webkit-scrollbar-thumb {
  background-color: #888; /* Darker grey thumb */
  border-radius: 10px; /* Rounded corners on the thumb */
}

.product_photos--small::-webkit-scrollbar-thumb:hover {
  background: #555; /* Slightly darker grey thumb on hover */
}

/* Set the width of the scrollbar */
.product_photos--small::-webkit-scrollbar {
  width: 8px; /* Width of the scrollbar */
}

.product__text {
  margin-left: 70px;
}

.product__title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 38px;
  margin-bottom: 40px;
}

.product__description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #4F5052;
  margin-bottom: 45px;
}

.product__button {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 18px;
  padding: 20px 80px;
  background-color: black;
  color: white;
  text-decoration: none;
}

.specification {
  margin: 60px 0 170px 0;
}

.specification__title {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.specification__header, .specification__body {
  display: flex;
}

.specification__body {
  margin-top: 25px;
}

.specification__header-item, .specification__body-item {
  width: 175px;
  padding-right: 25px;
}
.specification__header-item:last-child, .specification__body-item:last-child {
  padding: 0;
}

.specification__header-item {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #636262;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  width: 100%;
}

.specification__body-item {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  white-space: nowrap;
}

.specification__table {
  margin-bottom: 52px;
}

.specification__button {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  padding: 15px 50px;
  border: 1px solid black;
  color: black;
  text-decoration: none;
}

.specification__row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px; /* Spacing between rows */
  flex-direction: column;
}

.specification__table {
  display: flex;
  flex-wrap: wrap;
}

.specification__table > * {
  flex: 1;
}

@media screen and (max-width: 768px) {
  .specification__row {
    flex-direction: column;
  }
  .specification__header-item, .specification__body-item {
    width: auto; /* Adjust the width for smaller screens */
  }
}
@media (max-width: 1200px) {
  .product__text {
    margin-left: 20px;
  }
  .product__title {
    margin-bottom: 20px;
  }
  .product__description {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .product__inner {
    flex-direction: column;
    padding-top: 60px;
  }
  .product__text {
    margin: 40px 0 0 0;
  }
  .product__title {
    margin-bottom: 40px;
  }
  .product__description {
    margin-bottom: 40px;
  }
  .specification__button {
    padding: 10px 40px;
    font-size: 14px;
  }
  .product__button {
    padding: 15px 60px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .specification {
    margin-bottom: 100px;
  }
  .product__photos {
    flex-direction: column-reverse;
    justify-content: center;
    max-width: 480px;
  }
  .product__photos img {
    max-width: 100%;
  }
  .product_photos--small {
    overflow-y: hidden;
    overflow-x: auto;
    flex-direction: row;
    margin: 5px 0 0 0;
    max-width: 100%;
  }
  .product_photos--small a {
    flex: 1;
    max-width: 160px;
    margin-right: 5px;
  }
  .product_photos--small a:last-child {
    margin: 0;
  }
  .product_photos--small a img {
    min-width: 100%;
  }
}
@media (max-width: 400px) {
  .product__thumbnail-link > img {
    max-height: 300px;
  }
}/*# sourceMappingURL=product.css.map */