/*
Theme Name: Apple
Version: 1.0.0
*/

@import "assets/css/variables.css";
@import "assets/css/header.css";
@import "assets/css/hero.css";
@import "assets/css/text_image.css";
@import "assets/css/cards.css";
@import "assets/css/cta_request.css";
@import "assets/css/steps.css";
@import "assets/css/text_gallery.css";
@import "assets/css/print_monument.css";
@import "assets/css/advantages.css";
@import "assets/css/who_choose_us.css";
@import "assets/css/solution_long_term.css";
@import "assets/css/faq.css";
@import "assets/css/thank_you.css";
@import "assets/css/contacts.css";
@import "assets/css/table_block.css";
@import "assets/css/photo_preparation.css";
@import "assets/css/catalog_cards.css";
@import "assets/css/work_steps.css";
@import "assets/css/blog.css";
@import "assets/css/services.css";
@import "assets/css/footer.css";
@import "assets/css/popup_form.css";

@font-face {
  font-family: "Rubik";
  src: url("assets/fonts/Rubik-VariableFont.woff2") format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}



/* =========================
   BASE RESET
========================= */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

/* =========================
   TYPOGRAPHY
========================= */

body {
  font-family: "Rubik", system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Arial, sans-serif;
  font-size: var(--fs-sm);
  line-height: var(--lh-text);
  color: #000;
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.6em;
  font-weight: 600;
  line-height: var(--lh-title);
}

p {
  margin: 0 0 1em;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button,
input,
textarea,
select {
  font: inherit;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 8px 12px;
  text-align: left;
}

.image-wrap {
  display: flex;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.hidden {
  display: none !important;
}

/* =========================
   BUTTONS
========================= */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.button--primary {
  background: #fff;
  color: #000;
}

.button--primary:hover {
  background: #000;
  color: #fff;
  text-decoration: none;
}

.button--secondary {
  background: transparent;
  border-color: #1a1a1a;
  color: #1a1a1a;
}

.button--secondary:hover {
  background: rgba(0,0,0,0.1);
  text-decoration: none;
}

.entry-content > *:last-child {
  margin-bottom: 0;
}

.entry-content ul {
  list-style: disc;
  padding-left: 20px;
}

.entry-content ol {
  list-style: decimal;
  padding-left: 20px;
}

.breadcrumbs {
    padding: 32px 24px 0;
    font-size: var(--fs-xs);
    color: #9a9a9a;
}

.breadcrumbs__list {
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 0;
    max-width: var(--max-width);
}

.breadcrumbs a {
    color: #9a9a9a;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs__item--current {
    color: #9a9a9a;
}

.green {
  color: #009b3e;
}

.fs {
  font-size: 20px;
  font-weight: 500;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  padding: 10px 32px 10px 14px;

  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>")
    no-repeat right 8px center;

  background-size: 14px;
}



@media (max-width: 768px) {
  .button {
    min-width: 238px;
    font-size: var(--fs-md);
  }

  .container {
    padding: 0 16px;
  }
}