html {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0%;
  color: #0c0c0c;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  background-color: #fcfbfc;
}

body {
  height: 100%;
  display: flex;
  flex-direction: column;
}
body main {
  flex-grow: 1;
}

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

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
}

input,
button {
  outline: none;
  border: none;
}

.container {
  padding-inline: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

.policy {
  padding-block: 24px;
}
@media (min-width: 1200px) {
  .policy {
    padding-block: 32px;
  }
}
.policy__title {
  font-family: Roboto;
  font-weight: 600;
  font-size: 32px;
  line-height: 110%;
  letter-spacing: -2%;
  text-align: center;
  color: #0c0c0c;
}
@media (min-width: 1200px) {
  .policy__title {
    font-size: 36px;
  }
}
.policy__text {
  font-family: Roboto;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0%;
  color: #0c0c0c;
}
.policy__text ul {
  padding-left: 20px;
  margin-bottom: 10px;
  list-style: disc;
}
.policy__text h2 {
  margin-block: 10px;
  font-size: 20px;
  font-weight: 400;
}
.policy__text p {
  margin-bottom: 10px;
}

.cookies {
  padding: 20px;
  position: fixed;
  width: 90%;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  color: #fff;
  background-color: #0c0c0c;
  border-radius: 10px;
  box-shadow: 4px 6px 12px rgba(0, 0, 0, 0.15);
  z-index: 10;
}
.cookies--show {
  display: block;
}
@media (min-width: 1200px) {
  .cookies {
    padding: 32px;
  }
}
.cookies__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: end;
}
@media (min-width: 1200px) {
  .cookies__content {
    flex-direction: row;
    gap: 32px;
  }
}
.cookies__title {
  margin-bottom: 16px;
  font-family: Roboto;
  font-weight: 400;
  font-size: 32px;
  line-height: 110%;
  letter-spacing: 4%;
  text-transform: capitalize;
}
@media (min-width: 1200px) {
  .cookies__title {
    font-size: 40px;
  }
}
.cookies__text {
  font-family: Roboto;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0%;
}
.cookies__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.cookies__reject,
.cookies__accept {
  width: 295px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 19.2px;
  letter-spacing: 0px;
  text-align: center;
  cursor: pointer;
}
.cookies__accept {
  width: 295px;
  border-radius: 8px;
  background-color: #fff;
  color: #000;
}
.cookies__reject {
  color: #fff;
  background-color: transparent;
}

.primary-btn {
  padding: 8px;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-radius: 30px;
  background-color: #fff;
  font-family: Roboto;
  font-weight: 600;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0%;
  color: #0c0c0c;
  transition: background-color 0.3s;
}
.primary-btn:hover {
  background-color: #ccc9c9;
}
.primary-btn__img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.primary-btn--dark {
  background-color: #0c0c0c;
  color: #fff;
}
.primary-btn--dark:hover {
  background-color: #616161;
}

.no-scroll {
  overflow: hidden;
}

.nav {
  width: 100%;
}
.nav__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
@media (min-width: 1200px) {
  .nav__list {
    flex-direction: row;
  }
}
.nav__link {
  font-size: 30px;
  font-family: Roboto;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: capitalize;
  color: #0c0c0c;
  transition: color 0.3s;
}
.nav__link:hover {
  color: #a0a0a0;
}

.header {
  padding-block: 12px;
  background-color: #fcfbfc;
  position: sticky;
  top: 0;
}
.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero {
  padding-block: 32px 64px;
}
@media (min-width: 1200px) {
  .hero {
    padding-block: 0px 64px;
  }
}
.hero__title {
  font-family: Roboto;
  font-weight: 500;
  font-size: 63px;
  line-height: 110%;
  letter-spacing: 0%;
  margin-bottom: 56px;
  color: #0c0c0c;
}
@media (min-width: 1200px) {
  .hero__title {
    font-family: Roboto;
    font-weight: 500;
    font-size: 214px;
    line-height: 110%;
    letter-spacing: 0%;
  }
}
.hero__text {
  font-family: Roboto;
  font-weight: 400;
  font-size: 20px;
  line-height: 110%;
  letter-spacing: 0%;
  width: 100%;
}
@media (min-width: 1200px) {
  .hero__text {
    width: 356px;
  }
}
.hero__middle {
  margin-bottom: 12px;
  display: flex;
  gap: 56px;
  flex-direction: column;
  align-items: end;
}
@media (min-width: 1200px) {
  .hero__middle {
    flex-direction: row;
    justify-content: space-between;
  }
}
.hero__picture {
  width: 100%;
  height: 341px;
  border-radius: 10px;
}
.hero__img {
  width: 100%;
}

.services {
  padding-block: 64px;
}
.services__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1200px) {
  .services__content {
    flex-direction: row;
    justify-content: space-between;
  }
}
.services__left {
  width: 100%;
}
@media (min-width: 1200px) {
  .services__left {
    width: 287px;
  }
}
.services__cards {
  width: 100%;
  justify-content: flex-start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media (min-width: 768px) {
  .services__cards {
    flex-direction: row;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (min-width: 1200px) {
  .services__cards {
    width: 857px;
  }
}
.services__title {
  margin-bottom: 12px;
  font-family: Roboto;
  font-weight: 400;
  font-size: 56px;
  line-height: 110%;
  letter-spacing: 0%;
}
.services__text {
  font-family: Roboto;
  font-weight: 400;
  font-size: 14px;
  line-height: 110%;
  letter-spacing: 0%;
  margin-bottom: 12px;
}

.service {
  padding: 12px;
  border-radius: 20px;
  width: 100%;
  height: 435px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
}
.service--1 {
  background: url(/wp-content/themes/архів/assets/images/services/1.png) center/cover no-repeat;
}
.service--2 {
  background: url(/wp-content/themes/архів/assets/images/services/2.png) center/cover no-repeat;
}
.service--3 {
  background: url(/wp-content/themes/архів/assets/images/services/3.png) center/cover no-repeat;
}
.service--4 {
  background: url(/wp-content/themes/архів/assets/images/services/4.png) center/cover no-repeat;
}
.service--5 {
  background: url(/wp-content/themes/архів/assets/images/services/5.png) center/cover no-repeat;
}
@media (min-width: 1200px) {
  .service {
    width: 268px;
    height: 457px;
  }
}
.service__content {
  padding: 12px;
  border-radius: 10px;
  background-color: #fff;
}
.service__top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}
.service__title {
  font-family: Roboto;
  font-weight: 600;
  font-size: 20px;
  line-height: 110%;
  letter-spacing: 5%;
  color: #000;
}
.service__price {
  font-family: Roboto;
  font-weight: 500;
  font-size: 32px;
  line-height: 110%;
  letter-spacing: 5%;
  color: #000;
}

.tools {
  padding-block: 64px;
  background-color: #0c0c0c;
  color: #fff;
}
.tools__top {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
}
@media (min-width: 1200px) {
  .tools__top {
    flex-direction: row;
    justify-content: space-between;
  }
}
.tools__top-right {
  display: flex;
  justify-content: space-between;
}
.tools__title {
  font-family: Roboto;
  font-weight: 400;
  font-size: 56px;
  line-height: 110%;
  letter-spacing: 0%;
  width: 100%;
}
@media (min-width: 1200px) {
  .tools__title {
    width: 422px;
  }
}
.tools__text {
  font-family: Roboto;
  font-weight: 400;
  font-size: 14px;
  line-height: 110%;
  letter-spacing: 0%;
  width: 100%;
}
@media (min-width: 1200px) {
  .tools__text {
    width: 422px;
  }
}

/* Gallery styles */
.tools__gallery-top,
.tools__gallery-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.tools__gallery-bottom {
  margin-bottom: 0;
}

.tools__gallery-top-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

/* Picture and image styles */
.tools__picture {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  display: block;
}

.tools__picture--big {
  height: 412px;
}

.tools__picture--small {
  height: 200px;
}

.tools__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.tools__picture:hover .tools__img {
  transform: scale(1.05);
}

/* Tablet styles */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }
  .tools__top {
    gap: 40px;
    margin-bottom: 40px;
  }
  .tools__title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
  }
  .tools__text {
    font-size: 15px;
  }
  .tools__picture--big {
    height: 350px;
  }
  .tools__picture--small {
    height: 169px;
  }
}
/* Mobile styles */
@media (max-width: 768px) {
  .tools {
    padding: 60px 0;
  }
  .container {
    padding: 0 20px;
  }
  .tools__top {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }
  .tools__num {
    order: -1;
  }
  .tools__top-right {
    gap: 25px;
    max-width: 100%;
  }
  .tools__title {
    font-size: clamp(2.2rem, 6vw, 3rem);
  }
  .tools__text {
    font-size: 14px;
    max-width: 100%;
  }
  .tools__gallery-top,
  .tools__gallery-bottom {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 10px;
  }
  .tools__gallery-top-right {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .tools__picture--big {
    height: 250px;
  }
  .tools__picture--small {
    height: 150px;
  }
}
@media (max-width: 480px) {
  .tools {
    padding: 40px 0;
  }
  .container {
    padding: 0 16px;
  }
  .tools__top {
    gap: 25px;
    margin-bottom: 35px;
  }
  .tools__top-right {
    gap: 20px;
  }
  .tools__title {
    font-size: 2rem;
  }
  .tools__text {
    font-size: 13px;
  }
  .tools__gallery-top,
  .tools__gallery-bottom {
    gap: 8px;
    margin-bottom: 8px;
  }
  .tools__gallery-top-right {
    gap: 8px;
  }
  .tools__picture--big {
    height: 200px;
  }
  .tools__picture--small {
    height: 120px;
  }
}
/* Very small mobile - single column */
@media (max-width: 360px) {
  .tools__gallery-top-right {
    grid-template-columns: 1fr;
  }
  .tools__picture--small {
    height: 140px;
  }
}
h1,
h2,
h3 {
  word-break: break-word;
}

.how {
  padding-block: 0 64px;
  background-color: #0c0c0c;
  color: #fff;
}
.how__top {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1200px) {
  .how__top {
    flex-direction: row;
    justify-content: space-between;
  }
}
.how__title {
  font-family: Roboto;
  font-weight: 400;
  font-size: 63px;
  line-height: 101%;
  letter-spacing: 0%;
  text-transform: uppercase;
  width: 100%;
}
@media (min-width: 1200px) {
  .how__title {
    width: 856px;
  }
}
.how__num {
  font-family: Roboto;
  font-weight: 400;
  font-size: 14px;
  line-height: 110%;
  letter-spacing: 0%;
}
.how__cards {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}
.how__img {
  width: 130px;
  height: 135px;
  object-fit: contain;
}
@media (min-width: 1200px) {
  .how__img {
    width: 376px;
    height: 341px;
  }
}

.blog {
  padding-block: 12px;
}
.blog__content {
  padding: 72px 12px 12px;
  background: url(/wp-content/themes/архів/assets/images/blog.png) center/cover no-repeat;
  border-radius: 10px;
}
@media (min-width: 1200px) {
  .blog__content {
    padding: 377px 32px 32px;
  }
}
.blog__title {
  font-family: Roboto;
  font-weight: 400;
  font-size: 40px;
  line-height: 110%;
  letter-spacing: 0%;
  color: #fff;
  margin-bottom: 12px;
}
@media (min-width: 1200px) {
  .blog__title {
    font-family: Roboto;
    font-weight: 400;
    font-size: 56px;
    line-height: 110%;
    letter-spacing: 0%;
  }
}
.blog__btn {
  width: fit-content !important;
}

.footer {
  color: #0c0c0c;
}
.footer__top {
  padding-block: 32px 74px;
  display: flex;
  flex-direction: column;
  gap: 72px;
}
@media (min-width: 1200px) {
  .footer__top {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__box {
  width: 100%;
}
.footer__box--1 {
  max-width: 185px;
}
.footer__box--2 {
  width: 200px;
}
.footer__box--3 {
  width: 140px;
}
.footer__right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1200px) {
  .footer__right {
    flex-direction: row;
    gap: 72px;
  }
}
.footer__title {
  margin-bottom: 32px;
  font-family: Roboto;
  font-weight: 500;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0px;
  text-align: center;
  text-transform: capitalize;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer__item {
  font-family: Roboto;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0px;
  color: #0c0c0c;
  transition: color 0.3s;
}
.footer__item:hover {
  color: #a0a0a0;
}
.footer__label {
  font-family: Roboto;
  font-weight: 500;
  font-size: 43px;
  line-height: 110%;
  letter-spacing: 0%;
  text-transform: lowercase;
  color: #0c0c0c;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}
@media (min-width: 1200px) {
  .footer__label {
    font-family: Roboto;
    font-weight: 500;
    font-size: 114px;
    line-height: 110%;
    letter-spacing: 0%;
    text-transform: lowercase;
  }
}

.product {
  padding-block: 0 64px !important;
}
.product__title {
  font-family: Roboto;
  font-weight: 500;
  font-size: 63px;
  line-height: 110%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 32px;
  padding-top: 64px;
}
@media (min-width: 1200px) {
  .product__title {
    font-family: Roboto;
    font-weight: 500;
    font-size: 214px;
    line-height: 110%;
    letter-spacing: 0%;
    text-align: center;
    padding-top: 10px;
  }
}
.product .services__cards {
  margin: 0 auto;
}

.product {
  padding-block: 64px;
}
.product__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 1200px) {
  .product__content {
    flex-direction: row;
  }
}
.product__left {
  width: 100% !important;
}
@media (min-width: 1200px) {
  .product__left {
    width: 582px !important;
  }
}
.product .service__content {
  width: 100%;
}
.product__right {
  border-radius: 10px;
  padding: 12px;
  background-color: #0c0c0c;
  color: #fff;
  width: 100% !important;
}
@media (min-width: 1200px) {
  .product__right {
    width: 582px !important;
  }
}
.product__title {
  margin-bottom: 12px;
  font-family: Roboto;
  font-weight: 400;
  font-size: 56px;
  line-height: 110%;
  letter-spacing: 0%;
}
.product__text {
  font-family: Roboto;
  font-weight: 400;
  font-size: 14px;
  line-height: 110%;
  letter-spacing: 0%;
  margin-bottom: 72px;
}
@media (min-width: 1200px) {
  .product__text {
    margin-bottom: 80px;
  }
}
.product__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product__price {
  font-family: Roboto;
  font-weight: 600;
  font-size: 20px;
  line-height: 110%;
  letter-spacing: 5%;
}
