/*
Theme Name: Arta
Theme URI: https://artaprint.ru/
Author: Arta
Author URI: https://artaprint.ru/
Description: Arta
Version: 1.0
*/
:root {
  --font-family-base: "Montserrat", sans-serif;
  --font-family-title: "Circe Rounded", sans-serif;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-size-base: 14px;
  --font-size-h1: 24px;
  --font-size-h2: 18px;
  --line-height-base: 1.5;
  --line-height-title: 1.2;
  --container-width: 1200px;
  --container-padding: 16px;
  --grid-columns: 12;
  --grid-gap: 24px;
  --color-text-base: #000;
  --color-text-light: #404041;
  --color-yellow: #fec900;
  --color-blue: #28abe2;
  --color-purple: #e51886;
  --z-index-modal: 1000;
  --z-index-dropdown: 500;
}
@media (min-width: 1180px) {
  :root {
    --font-size-base: 16px;
    --font-size-h1: 40px;
    --font-size-h2: 32px;
  }
}

@font-face {
  font-family: "Circe Rounded";
  src: url("../fonts/CirceRounded-Regular.eot");
  src: local("Circe Rounded"), local("CirceRounded-Regular"), url("../fonts/CirceRounded-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/CirceRounded-Regular.woff2") format("woff2"), url("../fonts/CirceRounded-Regular.woff") format("woff"), url("../fonts/CirceRounded-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font: var(--font-size-base)/var(--line-height-base) var(--font-family-base);
  color: var(--color-text-base);
}

img,
svg {
  max-width: 100%;
  vertical-align: middle;
}

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

button {
  padding: 0;
  font: inherit;
  color: inherit;
  background: 0;
  border: 0;
  outline: 0;
}
button:not(:disabled) {
  cursor: pointer;
}

input,
select,
textarea {
  display: block;
  padding: 0;
  font: inherit;
  color: inherit;
  background: 0;
  border: 0;
  outline: 0;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-family-title);
  line-height: var(--line-height-title);
  text-transform: uppercase;
}

h1,
.h1 {
  font-size: var(--font-size-h1);
}

h2,
.h2 {
  font-size: var(--font-size-h2);
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--container-padding);
  padding-left: var(--container-padding);
}

.grid {
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), 1fr);
  grid-column-gap: var(--grid-gap);
}

.btn, .product-description .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: var(--font-weight-semibold);
  line-height: 24px;
  text-align: center;
  color: #fff;
  background-color: var(--color-blue);
  border-radius: 4px;
  transition: color 0.15s, background-color 0.15s;
}
.btn:hover, .product-description .wp-block-button__link:hover {
  color: var(--color-blue);
  background: 0;
  box-shadow: inset 0 0 0 2px var(--color-blue);
}
.btn--sm, .btn--lg, .product-description .wp-block-button__link {
  padding: 8px 18px;
}
.btn--block {
  display: flex;
  width: 100%;
}
.btn--secondary {
  background-color: var(--color-purple);
}
.btn--secondary:hover {
  color: #fff;
  background-color: #ce1678;
  box-shadow: none;
}
.btn--outline {
  color: var(--color-blue);
  background: 0;
  box-shadow: inset 0 0 0 2px var(--color-blue);
}
.btn--outline:hover {
  color: #fff;
  background-color: var(--color-blue);
}
.btn--loading {
  pointer-events: none;
}
.btn__spinner {
  display: none;
  width: 24px;
  height: 24px;
  margin-right: 16px;
  border: 3px solid #fff;
  border-bottom-color: transparent;
  border-radius: 12px;
  animation: spinner 0.8s linear infinite;
}
.btn--loading .btn__spinner {
  display: block;
}
@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (min-width: 1180px) {
  .btn--lg, .product-description .wp-block-button__link {
    padding: 18px 48px;
  }
}

.text-field {
  position: relative;
}
.text-field__input {
  width: 100%;
  padding: 11px 15px 3px;
  font-size: 12px;
  font-weight: var(--font-weight-medium);
  line-height: 24px;
  border: 1px solid #000;
  border-radius: 2px;
}
.text-field__input::placeholder {
  opacity: 0;
}
.text-field__input:focus {
  border-color: var(--color-blue);
}
.text-field textarea {
  height: 100%;
}
.text-field--light .text-field__input {
  color: #fff;
  border-color: #fff;
}
.text-field--error .text-field__input {
  border-color: #f00;
}
.text-field--light.text-field--error .text-field__input {
  border-color: #a40000;
}
.text-field__label {
  position: absolute;
  top: 8px;
  left: 16px;
  font-size: 12px;
  font-weight: var(--font-weight-medium);
  line-height: 24px;
  transition: all 0.15s;
  cursor: text;
}
.text-field--light .text-field__label {
  color: #fff;
}
.text-field__input:focus + .text-field__label, .text-field__input:not(:placeholder-shown) + .text-field__label {
  top: -3px;
  font-size: 10px;
}
.text-field__input::-webkit-outer-spin-button, .text-field__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.text-field__input[type=number] {
  -moz-appearance: textfield;
}
.text-field__error {
  margin-top: 8px;
  font-size: 14px;
  color: #f00;
}
.text-field--light .text-field__error {
  color: #a40000;
}
@media (min-width: 1180px) {
  .text-field__input {
    padding: 25px 23px 9px;
    font-size: var(--font-size-base);
  }
  .text-field__label {
    position: absolute;
    top: 18px;
    left: 24px;
    font-size: 16px;
  }
  .text-field__input:focus + .text-field__label, .text-field__input:not(:placeholder-shown) + .text-field__label {
    top: 6px;
    font-size: 12px;
  }
}

.select__field {
  width: 100%;
  padding: 7px 15px;
  font-size: 12px;
  font-weight: var(--font-weight-medium);
  line-height: 24px;
  background-repeat: no-repeat;
  background-position: top 7px right 7px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10L12 15' stroke='%23292929' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 15L17 10' stroke='%23292929' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  border: 1px solid #000;
  border-radius: 2px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.select--light .select__field {
  color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10L12 15' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 15L17 10' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  border-color: #fff;
}
.select--error .select__field {
  border-color: #f00;
}
.select--light.select--error .select__field {
  border-color: #a40000;
}
.select__error {
  margin-top: 8px;
  font-size: 14px;
  color: #f00;
}
.select--light .select__error {
  color: #a40000;
}
@media (min-width: 1180px) {
  .select__field {
    padding: 17px 23px;
    font-size: var(--font-size-base);
    background-position: top 17px right 13px;
  }
}

.header {
  padding-top: 29px;
  padding-bottom: 29px;
}
.header__main {
  display: flex;
  align-items: center;
  margin-bottom: 37px;
}
.header__logo {
  height: 35px;
}
.header__hamburger {
  margin-left: auto;
  flex-shrink: 0;
}
.header__callback {
  display: none;
}
@media (min-width: 1180px) {
  .header__logo {
    height: auto;
  }
  .header__hamburger {
    display: none;
  }
  .header__callback {
    display: inline-block;
    margin-left: auto;
  }
}

.nav {
  position: fixed;
  z-index: var(--z-index-modal);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
}
.nav--visible {
  visibility: visible;
}
.nav__drawer {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 270px;
  height: 100%;
  padding: 16px;
  background-color: var(--color-blue);
  transform: translateX(-100%);
  transition: transform 0.3s;
}
.nav--visible .nav__drawer {
  transform: translateX(0);
}
.nav__close {
  position: absolute;
  top: 15px;
  right: 15px;
}
.nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav__list > .menu-item + .menu-item {
  margin-top: 18px;
}
.nav__list > .menu-item > a {
  display: block;
  font-family: var(--font-family-title);
  color: #fff;
  text-transform: uppercase;
}
.nav .sub-menu {
  display: none;
}
.nav__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(64, 64, 65, 0.8);
  opacity: 0;
  transition: opacity 0.15s;
}
.nav--visible .nav__backdrop {
  opacity: 1;
}
@media (min-width: 1180px) {
  .nav {
    position: static;
    visibility: visible;
  }
  .nav__drawer {
    position: static;
    padding: 0;
    background: 0;
    transform: none;
    transition: none;
  }
  .nav__list {
    display: flex;
    justify-content: space-between;
  }
  .nav__list > .menu-item {
    padding-bottom: 8px;
  }
  .nav__list > .menu-item + .menu-item {
    margin: 0 0 0 30px;
  }
  .nav__list > .menu-item > a {
    color: var(--color-text-light);
  }
  .nav__list > .menu-item-has-children > a {
    display: inline-flex;
    align-items: baseline;
  }
  .nav__list > .menu-item-has-children > a::after {
    content: "";
    width: 8px;
    height: 11px;
    margin-left: 4px;
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='11' viewBox='0 0 8 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.53563 7.17157L4.35365 10.3536C4.15839 10.5488 3.8418 10.5488 3.64654 10.3536L0.464562 7.17157C0.2693 6.97631 0.2693 6.65973 0.464562 6.46447C0.659824 6.2692 0.976407 6.2692 1.17167 6.46447L3.5001 8.79289V0H4.5001V8.79289L6.82852 6.46447C7.02378 6.2692 7.34037 6.2692 7.53563 6.46447C7.73089 6.65973 7.73089 6.97631 7.53563 7.17157Z' fill='%2328ABE2'/%3E%3C/svg%3E%0A");
    transition: transform 0.15s;
  }
  .nav__list > .menu-item:hover > a {
    color: var(--color-blue);
  }
  .nav__list > .menu-item:hover > a::after {
    transform: scaleY(-1);
  }
  .nav__list > .menu-item:hover > .sub-menu {
    display: grid;
  }
  .nav .sub-menu {
    position: absolute;
    z-index: var(--z-index-dropdown);
    display: none;
    grid-template-columns: 280px;
    grid-gap: 16px 32px;
    margin: 8px 0 0;
    padding: 24px;
    list-style: none;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }
  .nav .sub-menu a {
    display: block;
  }
  .nav .sub-menu a:hover {
    color: var(--color-blue);
  }
  .nav .menu-item-columns .sub-menu {
    grid-template-columns: 200px 200px;
  }
  .nav__backdrop {
    display: none;
  }
}

.footer {
  padding: 54px 0 77px;
  color: var(--color-text-light);
  background-color: #d9d9d9;
}
.footer__container {
  align-items: flex-start;
}
.footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px var(--grid-gap);
  grid-column: span 12;
  margin: 0 0 50px;
  padding: 0;
  list-style: none;
}
.footer__nav a {
  display: block;
  font-weight: var(--font-weight-medium);
}
.footer__contacts {
  grid-column: span 12;
  margin-bottom: 50px;
}
.footer__contacts-section + .footer__contacts-section {
  margin-top: 24px;
}
.footer__contacts-city {
  margin-bottom: 2px;
  font-weight: var(--font-weight-bold);
}
.footer__brand {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  grid-column: span 12;
}
.footer__email {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
}
.footer__copyright {
  font-size: 12px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .footer__nav {
    grid-column: span 6;
  }
  .footer__contacts, .footer__brand {
    grid-column: span 3;
  }
  .footer__brand {
    align-items: flex-end;
  }
}
@media (min-width: 1180px) {
  .footer__nav {
    grid-column: span 4;
    margin-bottom: 0;
  }
  .footer__nav a:hover {
    color: var(--color-blue);
  }
  .footer__contacts {
    grid-column: 6/10;
    margin-bottom: 0;
  }
  .footer__email {
    font-size: 20px;
  }
  .footer__email:hover {
    color: var(--color-blue);
  }
}

.main-banners {
  margin-bottom: 40px;
}
.main-banners__img {
  display: block;
  border-radius: 8px;
  overflow: hidden;
}
.main-banners__img img {
  width: 100%;
}
.main-banners__pagination {
  display: flex;
  justify-content: center;
  column-gap: 5px;
  margin-top: 25px;
}
.main-banners__bullet {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background-color: #d9d9d9;
  transition: width 0.15s;
}
.main-banners__bullet--active {
  width: 24px;
  background-color: var(--color-blue);
}
@media (min-width: 1180px) {
  .main-banners {
    margin-bottom: 82px;
  }
  .main-banners__pagination {
    margin-top: 39px;
    column-gap: 8px;
  }
  .main-banners__bullet {
    width: 10px;
    height: 10px;
    border-radius: 5px;
  }
  .main-banners__bullet--active {
    width: 40px;
  }
}

.main-services {
  margin-bottom: 35px;
}
.main-services__slide {
  height: auto;
}
.main-services__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 119px;
  padding: 16px 16px 14px;
  border-radius: 8px;
}
.main-services__item--blue {
  background-color: var(--color-blue);
}
.main-services__item--purple {
  background-color: var(--color-purple);
}
.main-services__item--yellow {
  background-color: var(--color-yellow);
}
.main-services__item--black {
  background-color: var(--color-text-light);
}
.main-services__img {
  height: 24px;
}
.main-services__name {
  display: flex;
  font-family: var(--font-family-title);
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
}
.main-services__name::after {
  content: "";
  flex-shrink: 0;
  width: 12px;
  height: 9px;
  margin-left: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.48525 1.12142L11.6672 4.3034C11.8625 4.49866 11.8625 4.81525 11.6672 5.01051L8.48525 8.19249C8.28999 8.38775 7.97341 8.38775 7.77814 8.19249C7.58288 7.99723 7.58288 7.68064 7.77814 7.48538L10.1066 5.15696H-3.05176e-05V4.15696H10.1066L7.77814 1.82853C7.58288 1.63327 7.58288 1.31668 7.77814 1.12142C7.97341 0.92616 8.28999 0.92616 8.48525 1.12142Z' fill='white'/%3E%3C/svg%3E%0A");
}
.main-services__pagination {
  display: flex;
  justify-content: center;
  column-gap: 5px;
  margin-top: 16px;
}
.main-services__bullet {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background-color: #d9d9d9;
  transition: width 0.15s;
}
.main-services__bullet--active {
  width: 24px;
  background-color: var(--color-purple);
}
@media (min-width: 1180px) {
  .main-services {
    margin-bottom: 56px;
  }
  .main-services__item {
    height: 196px;
    padding: 34px 24px 26px;
  }
  .main-services__img {
    height: auto;
  }
  .main-services__name::after {
    transition: transform 0.15s;
  }
  .main-services__item:hover .main-services__name::after {
    transform: translateX(4px);
  }
  .main-services__pagination {
    margin-top: 50px;
    column-gap: 8px;
  }
  .main-services__bullet {
    width: 10px;
    height: 10px;
    border-radius: 5px;
  }
  .main-services__bullet--active {
    width: 40px;
  }
}

.main-description {
  margin-bottom: 34px;
}
.main-description__title {
  margin-bottom: 12px;
}
.main-description__title-line {
  position: relative;
}
.main-description__title-line::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 4px;
  border-radius: 2px;
}
.main-description__title-line--purple::after {
  background-color: var(--color-purple);
}
.main-description__title-line--blue::after {
  background-color: var(--color-blue);
}
.main-description__text {
  grid-column: span 12;
  margin-bottom: 21px;
}
.main-description__quote {
  grid-column: span 12;
  color: var(--color-text-light);
}
.main-description__quote-img {
  width: 100%;
  margin-bottom: 27px;
  border-radius: 8px;
}
.main-description__quote-text {
  margin-bottom: 11px;
  padding-left: 90px;
  font-family: var(--font-family-title);
  font-size: 24px;
  line-height: var(--line-height-title);
}
.main-description__quote-cite {
  padding-left: 90px;
  font-size: 16px;
  font-style: italic;
}
@media (min-width: 1180px) {
  .main-description {
    margin-bottom: 73px;
  }
  .main-description__title {
    margin-bottom: 47px;
  }
  .main-description__title-line::after {
    bottom: 8px;
    height: 8px;
    border-radius: 4px;
  }
  .main-description__grid {
    align-items: flex-start;
  }
  .main-description__text {
    grid-column: span 3;
    margin-bottom: 0;
  }
  .main-description__quote {
    position: relative;
    grid-column: span 9;
    color: #fff;
  }
  .main-description__quote-img {
    margin-bottom: 0;
  }
  .main-description__quote-content {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    width: 55%;
    height: 100%;
    padding-right: 48px;
    background: linear-gradient(to left, rgba(35, 31, 32, 0.8), transparent);
    border-radius: 0 8px 8px 0;
  }
  .main-description__quote-text {
    margin-bottom: 19px;
    font-size: 30px;
  }
}

.main-brands {
  margin-bottom: 43px;
}
.main-brands__title {
  margin-bottom: 47px;
}
.main-brands__title-line {
  position: relative;
}
.main-brands__title-line::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-blue);
  border-radius: 1px;
}
.main-brands__container {
  position: relative;
  padding: 0 34px;
}
.main-brands__item {
  width: auto;
}
.main-brands__img {
  height: 40px;
}
.main-brands__btn {
  position: absolute;
  top: 50%;
  width: 24px;
  height: 24px;
  background: var(--color-blue) url("data:image/svg+xml,%3Csvg width='13' height='16' viewBox='0 0 13 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.6042 0.928933L1.24024 7.29289C0.849719 7.68342 0.849719 8.31658 1.24024 8.70711L7.6042 15.0711C7.99473 15.4616 8.62789 15.4616 9.01842 15.0711C9.40894 14.6805 9.40894 14.0474 9.01842 13.6569L4.36156 9L12.0526 9L12.0526 7L4.36156 7L9.01842 2.34315C9.40894 1.95262 9.40894 1.31946 9.01842 0.928933C8.62789 0.538409 7.99473 0.538409 7.6042 0.928933Z' fill='white'/%3E%3C/svg%3E%0A") no-repeat left 5px center;
}
.main-brands__btn--prev {
  left: 0;
  transform: translateY(-50%);
}
.main-brands__btn--next {
  right: 0;
  transform: translateY(-50%) scaleX(-1);
}
@media (min-width: 1180px) {
  .main-brands {
    margin-bottom: 61px;
  }
  .main-brands__title {
    margin-bottom: 41px;
  }
  .main-brands__title-line::after {
    bottom: 6px;
    height: 4px;
    border-radius: 2px;
  }
  .main-brands__container {
    padding: 0 47px;
  }
  .main-brands__container::after {
    content: "";
    position: absolute;
    z-index: 1;
    width: 200px;
    height: 100%;
    top: 0;
    right: 47px;
    background: linear-gradient(to left, #fff, transparent);
  }
  .main-brands__img {
    height: auto;
  }
  .main-brands__btn {
    width: 38px;
    height: 38px;
    background-image: url("data:image/svg+xml,%3Csvg width='17' height='16' viewBox='0 0 17 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.65685 0.928942L0.292893 7.2929C-0.0976308 7.68343 -0.0976308 8.31659 0.292893 8.70712L6.65686 15.0711C7.04738 15.4616 7.68055 15.4616 8.07107 15.0711C8.46159 14.6806 8.46159 14.0474 8.07107 13.6569L3.41421 9.00001L17 9.00001L17 7.00001L3.41421 7.00001L8.07107 2.34316C8.46159 1.95263 8.46159 1.31947 8.07107 0.928941C7.68054 0.538417 7.04738 0.538417 6.65685 0.928942Z' fill='white'/%3E%3C/svg%3E%0A");
    background-position-x: 11px;
  }
}

.main-order {
  margin-bottom: 40px;
}
.main-order__content {
  grid-column: span 12;
  margin-bottom: 17px;
}
.main-order__title {
  margin-bottom: 13px;
}
.main-order__title-line {
  position: relative;
}
.main-order__title-line::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-blue);
  border-radius: 2px;
}
.main-order__form {
  display: flex;
  flex-direction: column;
  grid-column: span 12;
  row-gap: 16px;
}
@media (min-width: 1180px) {
  .main-order {
    margin-bottom: 80px;
  }
  .main-order__content {
    grid-column: span 5;
  }
  .main-order__title {
    margin-bottom: 17px;
  }
  .main-order__title-line::after {
    bottom: 8px;
    height: 4px;
    border-radius: 2px;
  }
  .main-order__form {
    grid-column: 7/13;
  }
}

.product-title {
  margin-bottom: 24px;
}
.product-title__line {
  position: relative;
}
.product-title__line::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-purple);
  border-radius: 2px;
}
@media (min-width: 1180px) {
  .product-title {
    margin-bottom: 0;
  }
  .product-title__line::after {
    bottom: 8px;
    height: 8px;
    border-radius: 4px;
  }
}

.product-section {
  margin-bottom: 40px;
}
@media (min-width: 1180px) {
  .product-section {
    margin-bottom: 60px;
  }
}

.product-intro__grid {
  align-items: center;
}
.product-intro__left {
  grid-column: span 12;
  margin-bottom: 18px;
}
.product-intro__media {
  max-width: 100%;
  grid-column: span 12;
  margin-bottom: 40px;
  border-radius: 8px;
}
.product-intro__right {
  grid-column: span 12;
}
@media (min-width: 768px) {
  .product-intro__left {
    grid-column: span 5;
  }
  .product-intro__media {
    grid-column: span 7;
  }
  .product-intro__right {
    grid-column: span 12;
  }
}
@media (min-width: 1180px) {
  .product-intro__left {
    grid-column: span 4;
    margin-bottom: 0;
  }
  .product-intro__media {
    grid-column: span 5;
    margin-bottom: 0;
  }
  .product-intro__right {
    grid-column: span 3;
  }
}

.product-quote {
  position: relative;
  padding-left: 50px;
  font-family: var(--font-family-title);
  line-height: var(--line-height-title);
  font-size: 24px;
}
.product-quote::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 38px;
  height: 34px;
  background-image: url("data:image/svg+xml,%3Csvg width='38' height='34' viewBox='0 0 38 34' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36.88 7.23994L28.4 16.9999L36.8 26.9199C37.4933 27.7733 37.84 28.7066 37.84 29.7199C37.84 30.9466 37.3866 31.9333 36.48 32.6799C35.7866 33.2666 34.9333 33.5599 33.92 33.5599C32.48 33.5599 31.36 33.0799 30.56 32.1199L20.4 20.1199C19.6533 19.2133 19.28 18.1733 19.28 16.9999C19.28 15.8266 19.6533 14.7866 20.4 13.8799L30.88 1.87994C31.68 0.919942 32.7466 0.439941 34.08 0.439941C35.2 0.439941 36.1066 0.786608 36.8 1.47994C37.6 2.22661 38 3.13328 38 4.19994C38 5.31994 37.6266 6.33327 36.88 7.23994ZM18.56 7.23994L10.08 16.9999L18.48 26.9199C19.1733 27.7733 19.52 28.7066 19.52 29.7199C19.52 30.9466 19.0666 31.9333 18.16 32.6799C17.4666 33.2666 16.6133 33.5599 15.6 33.5599C14.16 33.5599 13.04 33.0799 12.24 32.1199L2.07996 20.1199C1.33329 19.2133 0.959961 18.1733 0.959961 16.9999C0.959961 15.8266 1.33329 14.7866 2.07996 13.8799L12.56 1.87994C13.36 0.919942 14.4266 0.439941 15.76 0.439941C16.88 0.439941 17.7866 0.786608 18.48 1.47994C19.28 2.22661 19.68 3.13328 19.68 4.19994C19.68 5.31994 19.3066 6.33327 18.56 7.23994Z' fill='%23FEC900'/%3E%3C/svg%3E%0A");
}
@media (min-width: 1180px) {
  .product-quote {
    font-size: 30px;
  }
  .product-quote::before {
    top: 6px;
  }
}

.product-features__title {
  margin-bottom: 15px;
}
.product-features__grid {
  row-gap: 28px;
}
.product-features__item {
  grid-column: span 6;
  font-size: 12px;
}
.product-features--column .product-features__item {
  grid-column: span 4;
}
.product-features__icon {
  height: 24px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .product-features__item {
    grid-column: span 3;
  }
}
@media (min-width: 1180px) {
  .product-features__title {
    margin-bottom: 32px;
  }
  .product-features--column .product-features__title {
    margin-bottom: 22px;
  }
  .product-features--column .product-features__item {
    grid-column: span 12;
  }
  .product-features__item {
    display: flex;
    align-items: flex-start;
    font-size: var(--font-size-base);
  }
  .product-features__icon {
    flex-shrink: 0;
    height: auto;
    margin: 0 8px 0 0;
  }
}

.product-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 10px;
}
.product-categories__item {
  padding: 0 10px;
  line-height: 22px;
  color: var(--color-text-light);
  border: 1px solid var(--color-text-light);
  border-radius: 4px;
}
.product-categories__item:hover {
  color: var(--color-blue);
  border-color: var(--color-blue);
}
.product-categories__item--active {
  color: #fff;
  background-color: var(--color-blue);
  border-color: var(--color-blue);
}
@media (min-width: 1180px) {
  .product-categories__item {
    padding: 0 15px;
    line-height: 30px;
  }
}

.product-description__title {
  margin-bottom: 24px;
}
.product-description__grid {
  row-gap: 24px;
}
.product-description__grid + .product-description__grid {
  margin-top: 58px;
}
.product-description__img {
  max-width: 100%;
  grid-column: span 12;
}

.product-description_container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem
}

.product-description_container,
.product-description__content {
  grid-column: span 12;
}

.product-description_container .product-description__img {
	grid-column: auto;
	margin: 0 auto;
}

.product-description_container .product-description__text>*:first-child {
	margin-top: 0
}

.product-description__text {
  margin-bottom: 28px;
}
.product-description__caption {
  margin-bottom: 24px;
  font-family: var(--font-family-title);
  text-transform: uppercase;
}
.product-description__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.product-description__list li + li {
  margin-top: 8px;
}
.product-description__list a {
  color: var(--color-blue);
  text-decoration: underline;
}
.product-description__list a:hover {
  text-decoration: none;
}
.product-description__btn {
  width: 100%;
}
.product-description .wp-block-columns {
  margin-bottom: 0;
}
.product-description .wp-block-columns + .wp-block-columns {
  margin-top: 58px;
}
.product-description figure {
  margin-bottom: 0;
}
.product-description .wp-block-buttons {
  margin-top: 28px;
}
.product-description h3 {
  margin: 0 0 24px;
  font-family: var(--font-family-title);
  text-transform: uppercase;
}
.product-description ul {
  margin: 0 0 1em 0;
  padding: 0 2.3em;
}
.product-description ul li + li {
  margin-top: 8px;
}
.product-description ul a {
  color: var(--color-blue);
  text-decoration: underline;
}
.product-description ul a:hover {
  text-decoration: none;
}
@media (min-width: 1180px) {
  .product-description__grid {
    align-items: flex-end;
  }
  .product-description__grid:nth-child(odd) {
    align-items: flex-start;
  }
  .product-description__img {
/*     grid-column: span 6; */
    margin-bottom: 0;
  }
/*   .product-description__content {
    grid-column: span 6;
  } */
  .product-description__btn {
    width: auto;
  }
	
.product-description_container {
	grid-template-columns: 1fr 1fr;
}
}

.product-formats__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
}
.product-formats__item {
  max-width: 50%;
}

.product-order {
  padding: 40px 0 80px;
  background-color: var(--color-blue);
}
.product-order__header {
  grid-column: span 12;
  margin-bottom: 20px;
  color: #fff;
}
.product-order__title {
  margin-bottom: 15px;
  font-size: var(--font-size-h1);
}
.product-order__form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px 22px;
  margin-bottom: 16px;
}
.product-order__form-col {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.product-order__form-btn {
  width: 100%;
}
@media (min-width: 768px) {
  .product-order {
    padding-top: 60px;
  }
  .product-order__header {
    margin-bottom: 40px;
  }
  .product-order__title {
    margin-bottom: 24px;
  }
  .product-order__form-grid {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 24px;
  }
  .product-order__form-comment {
    height: 100%;
  }
  .product-order__form-action {
    text-align: center;
  }
  .product-order__form-btn {
    width: 380px;
    max-width: 100%;
  }
}
@media (min-width: 1180px) {
  .product-order__header {
    grid-column: span 6;
  }
  .product-order__title {
    font-size: var(--font-size-h2);
  }
  .product-order__title-line {
    position: relative;
  }
  .product-order__title-line::after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--color-purple);
    border-radius: 4px;
  }
  .product-order__title-line-inner {
    position: relative;
    z-index: 1;
  }
}

.product-directions__title {
  margin-bottom: 24px;
}
.product-directions__title-line {
  position: relative;
}
.product-directions__title-line::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-blue);
  border-radius: 1px;
}
.product-directions__grid {
  row-gap: 16px;
}
.product-directions__item {
  display: flex;
  align-items: flex-start;
  grid-column: span 12;
  column-gap: 16px;
  text-transform: uppercase;
  font-family: var(--font-family-title);
  transition: color 0.15s;
}
.product-directions__item:hover {
  color: var(--color-blue);
}
.product-directions__icon {
  margin-top: 2px;
}
@media (min-width: 768px) {
  .product-directions__item {
    grid-column: span 4;
  }
}
@media (min-width: 1180px) {
  .product-directions__title {
    margin-bottom: 32px;
  }
  .product-directions__title-line::after {
    bottom: 6px;
    height: 4px;
    border-radius: 2px;
  }
}

.contacts-title {
  margin-bottom: 24px;
}
.contacts-title__line {
  position: relative;
}
.contacts-title__line::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-purple);
  border-radius: 2px;
}
@media (min-width: 1180px) {
  .contacts-title {
    margin-bottom: 40px;
  }
  .contacts-title__line::after {
    bottom: 8px;
    height: 8px;
    border-radius: 4px;
  }
}

.contacts-list {
  row-gap: 32px;
  margin-bottom: 40px;
}
.contacts-list__item {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  grid-column: span 12;
}
.contacts-list__email {
  text-decoration: underline;
  color: var(--color-blue);
}
@media (min-width: 1180px) {
  .contacts-list {
    margin-bottom: 60px;
  }
  .contacts-list__item {
    grid-column: span 4;
    row-gap: 16px;
  }
}

.contacts-map {
  height: 500px;
  margin-bottom: 60px;
}
@media (min-width: 1180px) {
  .contacts-map {
    margin-bottom: 80px;
  }
}

.portfolio-title {
  margin-bottom: 24px;
}
.portfolio-title__line {
  position: relative;
}
.portfolio-title__line::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-purple);
  border-radius: 2px;
}
@media (min-width: 1180px) {
  .portfolio-title {
    margin-bottom: 40px;
  }
  .portfolio-title__line::after {
    bottom: 8px;
    height: 8px;
    border-radius: 4px;
  }
}

.portfolio-work {
  margin-bottom: 40px;
  row-gap: 24px;
}
.portfolio-work + .portfolio-work {
  margin-top: 40px;
}
.portfolio-work__media {
  grid-column: span 12;
}
.portfolio-work__description {
  order: 1;
  grid-column: span 12;
}
.portfolio-work p:first-child {
  margin-top: 0;
}
.portfolio-work p:last-child {
  margin-bottom: 0;
}
.portfolio-work__pagination {
  display: flex;
  justify-content: center;
  column-gap: 5px;
  margin-top: 16px;
}
.portfolio-work__bullet {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background-color: #d9d9d9;
  transition: width 0.15s;
}
.portfolio-work__bullet--active {
  width: 24px;
  background-color: var(--color-blue);
}
@media (min-width: 1180px) {
  .portfolio-work {
    margin-bottom: 80px;
  }
  .portfolio-work + .portfolio-work {
    margin-top: 60px;
  }
  .portfolio-work__media {
    grid-column: span 7;
  }
  .portfolio-work__media img {
    width: 100%;
  }
  .portfolio-work--right .portfolio-work__media {
    order: 1;
  }
  .portfolio-work__description {
    order: unset;
    grid-column: span 5;
  }
  .portfolio-work__pagination {
    column-gap: 8px;
  }
  .portfolio-work__bullet {
    width: 10px;
    height: 10px;
    border-radius: 5px;
  }
  .portfolio-work__bullet--active {
    width: 40px;
  }
}

.portfolio-pagination {
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}
@media (min-width: 1180px) {
  .portfolio-pagination {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

.offers-title {
  margin-bottom: 24px;
}
.offers-title__line {
  position: relative;
}
.offers-title__line::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-purple);
  border-radius: 2px;
}
@media (min-width: 1180px) {
  .offers-title {
    margin-bottom: 40px;
  }
  .offers-title__line::after {
    bottom: 8px;
    height: 8px;
    border-radius: 4px;
  }
}

.offers-list {
  row-gap: 24px;
  margin-bottom: 40px;
}
.offers-list__item {
  grid-column: span 12;
}
.offers-list__img {
  width: 100%;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .offers-list {
    margin-bottom: 80px;
  }
  .offers-list__item {
    grid-column: span 4;
  }
}

.offers-pagination {
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}

.modal {
  position: fixed;
  z-index: var(--z-index-modal);
  top: 0;
  left: 0;
  display: none;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 24px;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  overflow-y: auto;
}
.modal--visible {
  display: flex;
}
.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: auto;
  padding: 32px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
}
.modal__close:hover {
  color: var(--color-blue);
}
@media (min-width: 1180px) {
  .modal__dialog {
    padding: 40px;
  }
  .modal__close {
    top: 24px;
    right: 24px;
  }
}

.callback__title {
  margin-bottom: 8px;
  font-family: var(--font-family-title);
  font-size: var(--font-size-h2);
  font-weight: bold;
  line-height: var(--line-height-title);
}
.callback__text {
  margin-bottom: 24px;
}
.callback__form {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
@media (min-width: 1180px) {
  .callback__text {
    margin-bottom: 32px;
  }
}

.notice {
  margin-bottom: 32px;
  padding: 24px;
  color: #065f46;
  background-color: #d1fae5;
  border-radius: 4px;
}
.notice--error {
  color: #991b1b;
  background-color: #fee2e2;
}

/*# sourceMappingURL=main.css.map */
