@import url("global.css");
@import url("variable.css");
body {
  background-color: #000000;
}
main {
  font-family: 'Montserrat', sans-serif;
}
header {
  background-color: transparent;
  color: var(--primary-color);
  padding: 0 15px 0;
  margin-bottom: 20px;
  justify-content: space-between;
  display: flex;
  align-items: center;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.header-btn {
  margin-right: 40px;
}
.header-btn:last-child {
  margin-right: 60px;
}
.header-btn {
  color: var(--primary-color);
}
.header-btn:hover {
  color: var(--hover-color);
}
nav a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 18px;
}
.logo-header {
  width: 130px;
  height: 51px;
}
.header__nav {
  display: flex;
  align-items: center;
}
.header__nav.show {
  display: flex;
  z-index: 3;
}
.icon-language {
  margin-right: 30px;
  width: 25px;
  height: 20px;
}
.icon-basket {
  width: 30px;
  height: 30px;
}
.first-section {
  padding-top: 30px;
  background-image: url(/Kreska/assets/img/Banner-img2.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 105vh;
  margin-bottom: 50px;
}
.first-section-img {
  width: 454px;
  height: 393px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
.slider-container {
  width: 460px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  padding-top: 110px;
}
.slider {
  display: flex;
  transition: transform 0.3s ease-in-out;
}
.slide {
  width: 100%;
  height: auto;
  background-size: cover;
}
.title-first-section {
  color: #fff;
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}
.title-md {
  font-size: 32px;
}
.subtitle {
  color: #fff;
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  font-weight: 500;
}
.marquee-logo {
  width: 100%;

}
.marquee-container {
  width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}

.marquee-wrapper {
  display: flex;
  animation: marquee 10s linear infinite;
}

.marquee-content {
  white-space: nowrap;
  display: inline-block;
  margin-bottom: 50px;
}

@keyframes marquee {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-100%);
  }
}



















.parallax-container {
  position: relative;
  overflow: hidden;
  padding: 90px 0 85px;
}
.parallax-layer {
  background-image: url(/Kreska/assets/img/video-img.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 850px;
  z-index: -1; /* Помещаем фоновый слой ниже контента */
}
.title-second-section {
  color: #fff;
  font-size: 40px;
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  font-weight: 600;
}
.text-second-section {
  color: #fff;
  font-size: 16px;
  line-height: 27px;
  max-width: 850px;
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 45px;
}
.btn-play {
  background-image: url(../img/Button-Play.png);
  background-color: transparent;
  background-size: cover;
  border: none;
  width: 70px;
  height: 70px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  transition: 0.250s ease-in-out;
  animation-duration: 0.250s;
}
.btn-play:hover {
  opacity: 70%;
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.modal-content {
  padding: 1%;
  background: transparent;
  border: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
video {
  width: 80%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.close {
  text-align: right;
  color: #fff;
  float: right;
  font-size: 28px;
  font-weight: bold;
  margin-right: 10px;
}
.close:hover,
.close:focus {
  color: #e0e0e0;
  text-decoration: none;
  cursor: pointer;
}
.third-section {
  padding-top: 90px;
  background-color: #fff;
}
.main-title {
  color: var(--primary-color);
  font-size: 40px;
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 110px;
  font-weight: 500;
}
.custom-modal {
  display: none;
  position: fixed;
  z-index: 2; /* Установите значение z-index, чтобы модальное окно было поверх остального контента */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  backdrop-filter: blur(3px); /* Применяем размытие к фону */
  background-color: rgba(0, 0, 0, 0.5); /* Задайте цвет подложки */
}
.custom-modal-content {
  background-color: #fefefe; /* Цвет фона модального окна */
  margin: 15% auto; /* Расположение модального окна по центру */
  padding: 35px;
  border: 2px solid #2d3969;
  border-radius: 10px; 
  width: 80%;
}
.custom-close {
  color: #aaa; /* Цвет крестика закрытия */
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.custom-close:hover,
.custom-close:focus {
  color: #000; /* Цвет крестика закрытия при наведении */
  text-decoration: none;
}
.characteristics-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.characteristics-box-img {
  width: 35%;
  height: 35%;
  margin-left: 70px;
}
.characteristics-col {
  margin-top: 50px;
  width: 50%;
}
.characteristics-card {
  background-color: #F5F5F5;
  margin: 30px 20px 30px 0;
  padding: 30px;
  border-radius: 10px;
}
.characteristics-stroke {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  margin-bottom: 15px;
}
.characteristics-stroke:last-child {
  margin-bottom: 0;
}
.description-modal-card {
  margin: 0 ;
  font-weight: 500;
}
.stroke-line {
  flex-grow: 1; /* Занимает все доступное пространство */
  height: 1px; /* Высота линии */
  margin: 0 20px 0;
  background-color: #2d39691a;
}
.product-img {
  width: 586px;
  height: 323px;
}
.zelmotor-logo{
  width: 202px;
  height: 56px;
  margin: 0 50px;
  background-repeat: repeat;
}
.smap-logo {
  width: 150px;
  height: 56px;
  background-repeat: repeat;
}
.products-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 110px;
}
.products-block-2 {
  margin-bottom: 0;
}
.product-column-2{
  margin-left: 90px;
}
.product-column{
  margin-top: auto;
  margin-bottom: auto;
}
.products-title {
  color: #1F3076;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 20px;
}
.description {
  color: #000000;
  line-height: 24px;
  margin-bottom: 20px;
  font-weight: 400;
}
.button-primary {
  background-color: #1F3076;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px; /* 150% */
  text-decoration: none;
  border: 2px solid #1F3076;
  border-radius: 5px;
  display: inline-block;
  padding: 8px 30px;
  margin-right: 5px;
  transition: 0.500s ease-in-out;
  animation-duration: 0.3s;
}
.button-primary:hover {
  background-color: transparent;
  color: #1F3076;
}
.button-primary:last-child {
  margin-right: 0;
}
.button-outline {
  color: #1F3076;
  background-color: transparent;
  margin-right: 0;
}
.button-outline:hover {
  background-color: #1F3076;
  color: #fff;
  transition: 300ms;
}
.img-grinder {
  width: 495px;
  height: 300px;
  margin-left: 90px;
}
.fourth-section {
  background-color: #FFF;
  padding-top: 170px;
}
.offers-title {
  color: #1F3076;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 20px;
}
.card {
  padding: 0;
  margin-right: 10px;
  margin-top: 0;
  margin-bottom: 10px;
  width: 250px;
}
.card-body {
  padding: 10px 15px 25px;
  background-color: #1F3076;
  text-align: left;
}
.card-title {
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 40px;
}
.price-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-price {
  text-decoration: line-through;
  color: #aaa;
  margin-right: 10px;
  margin-bottom: 0;
}
.card-sale {
  background-color: #FFCC00;
  padding: 3px 3px;
  border-radius: 3px;
  font-size: 13px;
  color: #FFF;
  margin-bottom: 0;
}
.new-price {
  display: flex;
}
.btn-basket {
  padding: 10px 30px;
  background: #FFCC00;
  border: none;
  border-radius: 3px;
  transition: 0.500s ease-in-out;
  animation-duration: 0.3s;
}
.btn-basket:hover {
  background: #e5b807;
}
.price {
  color: #FFF;
  font-size: 24px;
  font-weight: 500;
  line-height: 18px; /* 69.231% */
  margin-top: 15px;
}
.slick-prev {
  font-size: 0;
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 5px;
  background: center no-repeat transparent;
  background-color: #1F3076;
  background-image: url(../img/arrow-left33.png);
  left: 511px;
  transform: translate(0, -50%);
}
.slick-next {
  font-size: 0;
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 5px;
  background: center no-repeat transparent;
  background-color: #1F3076;
  background-image: url(../img/arrow-right33.png);
  top: -490px;
  right: -558px;
  transform: translate(0, -50%);
}
.slick-arrow {
  position: relative;
  z-index: 1;
}
.slick-arrow:hover {
  background-color: #4a5ba2;
}
.fifth-section {
  padding: 110px 0 90px;
  background-color: #FFF;
}
.row {
  padding: 0 15px;
  justify-content: center;
}
.col {
  width: 270px;
  margin-right: 100px;
}
.col-last {
  margin-right: 0;
}
.icon-sevices {
  width: 60px;
  height: 60px;
  margin-bottom: 45px;
}
.services-text {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.advantages {
  color: #1F3076;
  font-weight: 600;
}
.parallax-layer-contact {
  background-image: url(/Kreska/assets/img/Contact-image.png);
  background-size: 2830px;
  height: 1800px;
}
.title-sixth-section {
  color: #fff;
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
.contacts-subtitle {
  color: #FFF;
  font-size: 24px;
  font-weight: 500;
  line-height: 24px; /* 100% */
  margin-bottom: 30px;
}
.schedule-text {
  color: #FFF;
  font-size: 19px;
  font-weight: 500;
  line-height: 24px; /* 126.316% */
  margin-bottom: 10px;
}
.schedule-text-2 {
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 55px;
}
.button-primary-outline-white:hover {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  transition: 300ms;
}
footer {
  background-image: url(/Kreska/assets/img/footer-img.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0 40px;
  font-family: 'Montserrat', sans-serif;
}
h5 {
  color: #FFF;
  font-size: 19px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 30px;
}
.footer-navigation {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
}
.footer-navigation:hover {
  text-decoration: underline;
}
.col-2 {
  margin-right: 50px;
  width: 150px;
  padding: 0;
}
.col-last {
  margin-right: 0;
}
.footer-btn-box {
  display: grid;
}
.social-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.social-icon:hover {
  opacity: 0.5;
}
.social-icon-2 {
  margin-right: 0;
}
.copyright {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.divider {
  height: 1px;
  background-color: #FFF;
  border: none;
  margin: 50px 0;
}