@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@200..1000&display=swap");
:root {
  --page-bg: #F3F3F3;
  --white-color: #fff;
  --primary-color: #EF6A37;
  --pr-hover-color: #e26634;
  --dark-color: #141414;
  --grey-color: #DCE0E3;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
}

.sharpening__body {
  margin: 140px 0 100px;
}

.sharpening__hedding {
  margin-bottom: 140px;
}
.sharpening__hedding .sharpening__title {
  font-weight: 800;
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.3;
  color: var(--dark-color);
  margin-bottom: 30px;
  text-align: center;
}
.sharpening__hedding img {
  border-radius: 20px;
}

.types__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  margin: 50px 0 80px;
}
.types__body .types__subtitle {
  font-weight: 700;
  font-size: 30px;
  line-height: 1.3;
  line-height: 1.3;
  color: var(--dark-color);
  margin-bottom: 25px;
}
.types__body .types__list {
  margin-bottom: 25px;
}
.types__body .types__list li {
  list-style: inside;
  line-height: 1.6;
  font-weight: 400;
  font-size: 16px;
}

.gallery {
  margin: 50px 0;
}

.gallery__title {
  margin-bottom: 60px;
}

.gallery__wrapp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
.gallery__wrapp .gallery-item {
  display: none;
  overflow: hidden;
  height: 270px;
  border-radius: 15px;
}
.gallery__wrapp .gallery-item img {
  transition: all 1s ease 0s;
  -o-object-position: center;
    object-position: center;
	object-fit: cover;
    height: 100%;
}
.gallery__wrapp .gallery-item img:hover {
  transform: scale(1.2);
}
.gallery__wrapp .gallery-item.show {
  display: inline-block;
}

.read-more {
  display: flex;
  justify-content: center;
}
.read-more .more {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 30px;
  padding: 20px 64px;
  transition: all 0.3s ease 0s;
  margin: 0 auto;
}
.read-more .more:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.gallery__body-video {
  margin-top: 50px;
}

.gallery__wrapp-video {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
.gallery__wrapp-video .video-item {
  display: none;
}
.gallery__wrapp-video .video-item iframe {
  border-radius: 15px;
}
.gallery__wrapp-video .video-item.show {
  display: inline-block;
}

.more_video {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 30px;
  padding: 20px 64px;
  transition: all 0.3s ease 0s;
  margin: 0 auto;
}
.more_video:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.workcutter {
  margin: 100px 0 50px;
}

.workcutter__title {
  margin-bottom: 60px;
}

.workcutter__body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 20px;
}

.workcutter__left h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: var(--dark-color);
  margin-bottom: 15px;
}
.workcutter__left p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: var(--dark-color);
  margin-bottom: 30px;
}

.process {
  padding: 50px 0 100px;
}

.process__title {
  max-width: 690px;
}

.process__wrap-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 70px;
  margin-top: 60px;
}

.item__process .number {
  font-weight: 600;
  font-size: 64px;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.item__process .proc__subtitle {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: var(--dark-color);
  margin-bottom: 10px;
}
.item__process .proc__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: var(--dark-color);
}

/*=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/==/=*/
/*================= АДАПТАЦІЯ СТИЛІВ ДЛЯ МОБІЛЬНИХ ПРИСТРОЇВ ===================================*/
/*=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/*/
@media (max-width: 767.98px) {
  .sharpening__hedding {
    margin-bottom: 70px;
  }
  .sharpening__hedding img {
    height: 180px;
  }
  .types__body {
    grid-template-columns: 1fr;
  }
  .types__image {
    order: 2;
  }
  .gallery__wrapp {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery__wrapp .gallery-item {
    height: 200px;
  }
  .gallery__wrapp-video {
    grid-template-columns: repeat(2, 1fr);
  }
  .workcutter__body {
    grid-template-columns: 1fr;
  }
  .process__wrap-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 30px;
  }
}
@media (max-width: 430.98px) {
  .gallery__wrapp {
    grid-template-columns: 1fr;
  }
  .gallery__wrapp-video {
    grid-template-columns: 1fr;
  }
  .process__wrap-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}/*# sourceMappingURL=sharpening.css.map */