/*
Theme Name: K3-coffee

*/

@font-face {
  font-family: "MS";
  src: url("./assets/fonts/Montserrat-SemiBold.eot");
  src:
    url("./assets/fonts/Montserrat-SemiBold.eot?#iefix") format("embedded-opentype"),
    url("./assets/fonts/Montserrat-SemiBold.woff2") format("woff2"),
    url("./assets/fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "RC";
  src: url("./assets/fonts/RobotoCondensed-Regular.eot");
  src:
    url("./assets/fonts/RobotoCondensed-Regular.eot?#iefix") format("embedded-opentype"),
    url("./assets/fonts/RobotoCondensed-Regular.woff2") format("woff2"),
    url("./assets/fonts/RobotoCondensed-Regular.woff") format("woff"),
    url("./assets/fonts/RobotoCondensed-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.service-price__title {
  font-family: "JM", sans-serif;
  font-size: 2rem;
  line-height: 1.3;
}

html,
body {
  height: 100%;
}

body {
  font-family: "RC", sans-serif;
  font-size: 16px;
  margin: 0;
  min-width: 360px;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  color: #292929;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-button {
  display: none;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: #f29a0b;
}
::-webkit-scrollbar-thumb {
  border-radius: 50px;
}

@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}

.bounceInRight {
  animation-name: bounceInRight;
}

.bounceInLeft {
  animation-name: bounceInLeft;
}

.bounceInDown {
  animation-name: bounceInDown;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.delay-0s {
  animation-delay: 0.25s;
}

.animated.delay-1s {
  animation-delay: 0.5s;
}

.animated.delay-2s {
  animation-delay: 0.75s;
}

.main {
  flex: 1 0 auto;
  margin-top: 127px;
  position: relative;
}
.main::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #88a4b5;
  width: 50%;
  height: 100%;
  z-index: -1;
}
.main .container {
  max-width: 1540px;
}
.main-button {
  background-color: #f29a0b;
  color: #292929;
  font-family: "MS", sans-serif;
  font-size: 1.25rem;
  border: 1px solid #f29a0b;
  border-radius: 10px;
  padding: 1.125rem 2.5rem;
  transition: 0.3s ease;
}
.main-button:hover {
  background-color: #ffffff;
  transform: scale(0.9);
}

.footer {
  flex: 0 0 auto;
}

a,
a:hover {
  text-decoration: none;
  color: #292929;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

li {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.mobile {
  display: none;
}

.cookie-modal {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 9999;
}

.cookie-modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid #e0e0e0;
}

.cookie-modal-content p {
  margin: 0 0 15px 0;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

.cookie-modal-content a {
  color: #007bff;
  text-decoration: underline;
}

.cookie-modal-content a:hover {
  color: #0056b3;
}

.cookie-accept-btn {
  background-color: #f29a0b;
  border: 1px solid #f29a0b;
  color: #292929;
  padding: 10px 24px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s;
}

.cookie-accept-btn:hover {
  background-color: #fff;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  background: rgba(41, 56, 69, 0.5);
}
.modal.open {
  display: flex;
}
.modal__wrapper {
  width: 100%;
  max-width: 720px;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 2rem 3rem;
  position: relative;
}
.modal__button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: transparent;
  padding: 0;
  border: 0;
}
.modal__header {
  margin-bottom: 2rem;
}
.modal__title {
  font-family: "MS", sans-serif;
  font-size: 2rem;
  text-align: center;
}
.modal__text {
  text-align: center;
  font-size: 1.25rem;
}
.modal__box form p {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

.modal__box form p br {
  display: none;
}
.modal__box form p span {
  width: 100%;
}
.modal__box form input[type="checkbox"] {
  margin-top: 0;
}
.modal__box form input {
  padding: 0.9375rem 1.5rem;
  width: 100%;
  box-sizing: border-box;
}
.modal__box form input[type="submit"] {
  padding: 1rem 2rem;
  width: 100%;
}

.modal__box .question__form-checkbox label,
.modal__box .question__form-checkbox label a {
  color: #292929;
  font-size: 1rem;
}

.header {
  padding: 1.25rem 0;
  background-color: #88a4b5;
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #ffffff;
  width: 50%;
  z-index: 0;
}
.header .container {
  max-width: 1870px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.header__logo {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.header__logo img {
  max-width: 422px;
}
.header__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
}
.header__phone {
  color: #292929;
  font-size: 1.875rem;
  position: relative;
  transition: 0.3s ease;
}
.header__phone::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  left: -30px;
  background-image: url("./assets/images/phone.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 26px;
  height: 25px;
  margin-top: -10px;
  transition: 0.3s ease;
}
.header__phone:hover {
  color: #f29a0b;
}
.header__phone:hover::before {
  left: -40px;
}
.header__nav {
  writing-mode: vertical-rl;
  transform: rotate(180deg) translateY(-1rem);
  position: absolute;
  top: 6rem;
  left: 0;
}
.header__nav.main-page {
  display: none;
}
.header__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
}
.header__list a {
  font-family: "MS", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  white-space: nowrap;
  transition: 0.3s ease-in;
  display: inline-block;
}
.header__list a:hover {
  color: #f29a0b;
  transform: scale(1.1);
}

.main-nav {
  margin-top: 3.125rem;
}
.main-nav__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.main-nav__box {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  max-width: 100%;
  flex-grow: 1;
  background-color: #ffffff;
  border-radius: 10px;
  border: 1.5px solid transparent;
  padding: 0.425rem;
  position: relative;
  transition: 0.3s ease-in-out;
}
.main-nav__box:hover {
  transform: scale(0.9);
  background-color: #f29a0b;
}
.main-nav__title {
  position: absolute;
  top: 1.875rem;
  left: 1.875rem;
  font-family: "MS", sans-serif;
  font-size: 2rem;
}
.main-nav .container .row > .col-12:first-child .main-nav__wrapper .main-nav__box {
  border: 1.5px solid #f29a0b;
  min-height: 260px;
}
.main-nav .container .row > .col-12:first-child .main-nav__wrapper .main-nav__box:not(:last-child) {
  justify-content: center;
  min-height: 300px;
}
.main-nav .container .row > .col-12:last-child .main-nav__wrapper .main-nav__box {
  min-height: 260px;
}
.main-nav .container .row > .col-12:last-child .main-nav__wrapper .main-nav__box:not(:first-child) {
  min-height: 300px;
}
.main__title {
  font-family: "MS", sans-serif;
  font-size: 2rem;
}
.main__text {
  font-size: 1.25rem;
  max-width: 675px;
  text-align: justify;
  display: flex;
  justify-self: flex-end;
}

.features {
  margin-top: 10rem;
}
.features__box {
  background-color: #ffffff;
  border-radius: 10px;
  min-height: 195px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.25rem 1.875rem;
}
.features__img {
  margin-bottom: 0.875rem;
}
.features__wrapper {
  margin-top: 4rem;
}
.features__wrapper .col-12:nth-child(-n + 2) .features__box {
  background-color: #f29a0b;
}
.features__text {
  font-size: 1.2rem;
}

.main-catalog {
  margin-top: 10rem;
}
.main-catalog__wrapper {
  max-width: 504px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-self: center;
  justify-self: center;
}
.main-catalog__box {
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 1rem 3.75rem;
  background-color: #ffffff;
  transition: 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.main-catalog__box:hover {
  transform: scale(0.9);
  background-color: #f29a0b;
}
.main-catalog__box:nth-last-child(4) {
  background-color: #f29a0b;
}

.main-catalog__box:nth-last-child(4):hover {
  background-color: #ffffff;
}

.main-catalog__box:nth-last-child(3) {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
.main-catalog__box:nth-last-child(2) {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}
.main-catalog__box:last-child {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.main-catalog__item {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  gap: 1.25rem;
}
.main-catalog__item p {
  font-family: "MS", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0;
}
.main-catalog__title {
  font-family: "MS", sans-serif;
  font-size: 2rem;
  margin-bottom: 4.6rem;
  text-align: center;
}
.main-catalog__link {
  text-align: center;
  margin: 5.625rem auto 0;
  max-width: 275px;
  display: block;
}
.main-catalog .container .row .col-12:first-child .main-catalog__box {
  border-color: #f29a0b;
}

.main-seo {
  margin-top: 10rem;
}
.main-seo__text {
  max-width: 1324px;
  width: 100%;
  margin: 0 auto;
  padding: 3.75rem 3.5rem;
  background: linear-gradient(89.78deg, #ffffff 51.07%, rgba(255, 255, 255, 0) 98.63%);
}
.main-seo__text p {
  font-size: 1.25rem;
  margin-bottom: 0;
}
.main-seo__text ul {
  list-style-type: disc;
  padding-left: 2rem;
  margin-bottom: 1rem;
}
.main-seo__text li {
  list-style-type: disc;
  font-size: 1.25rem;
}

.question {
  margin-top: 10rem;
}
.question__wrapper {
  border-radius: 20px;
  background-color: #293845;
  padding: 5rem 4rem 4rem;
  max-width: 1540px;
  margin: 4.125rem auto 2.25rem;
}
.question.main-question .question__wrapper {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: #293845;
  padding: 5.125rem;
  margin: 0;
  max-width: 100%;
  margin-top: 4.125rem;
}
.question.main-question .question__box {
  max-width: 1404px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.question.main-question .question__box::before {
  content: "";
  position: absolute;
  top: -305px;
  right: -110px;
  background-image: url("./assets/images/coffee.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 300px;
  height: 223px;
}
.question__form p {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.875rem;
}

.question__form p span {
  display: block;
  width: 48.5%;
}

.question__form p span:last-child {
  width: 100%;
}

.question__form input,
.question__form textarea,
.modal__box input,
.modal__box textarea,
.wpcf7-textarea {
  flex-grow: 1;
  border-radius: 20px;
  padding: 1.5rem 2rem;
  color: #292929;
  border: 1px solid #293845;
  font-size: 1.25rem;
  box-sizing: border-box;
  width: 100%;
}
.question__form input::-moz-placeholder,
.question__form textarea::-moz-placeholder,
.modal__box input::-moz-placeholder,
.modal__box textarea::-moz-placeholder,
.wpcf7-textarea::-moz-placeholder {
  color: #292929;
}
.question__form input::placeholder,
.question__form textarea::placeholder,
.modal__box input::placeholder,
.modal__box textarea::placeholder,
.wpcf7-textarea::placeholder {
  color: #292929;
}
.question__form textarea,
.modal__box textarea,
.wpcf7-textarea {
  width: 100%;
  resize: none;
}
.question__form-checkbox {
  margin-top: -1rem;
}
.question__form-checkbox label::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-top: -5px;
  border: 2px solid #88a4b5;
  border-radius: 4px;
  margin-right: 8px;
  vertical-align: middle;
  transition: 0.3s ease;
}
.question__form-checkbox input[type="checkbox"]:checked + label::before {
  background-color: #f29a0b;
  border-color: #f29a0b;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23fff"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>');
  background-size: cover;
}
.question__form-checkbox label:hover::before {
  border-color: #f29a0b;
}
.question__form-checkbox input[type="checkbox"]:focus + label::before {
  box-shadow: 0 0 0 0.2rem rgba(255, 153, 0, 0.548);
}
.question__form-checkbox input[type="checkbox"]:disabled + label::before {
  background-color: #88a4b5;
  border-color: #88a4b5;
  cursor: not-allowed;
}
input[type="checkbox"] {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  opacity: 0;
  position: absolute;
  outline: none;
}
.question form {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.875rem;
}
.question__form-checkbox label {
  font-size: 1.25rem;
  color: #ffffff;
  padding-left: 0.625rem;
  cursor: pointer;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
}
.question__form-checkbox label a {
  font-size: 1.25rem;
  color: #ffffff;
  transition: 0.3s ease-in;
}
.question__form-checkbox label a:hover {
  color: #f29a0b;
}

.wpcf7-response-output {
  display: none;
}
.question__box input[type="submit"],
.modal__box input[type="submit"] {
  font-size: 1.25rem;
  background-color: #f29a0b;
  border-radius: 20px;
  border: 1px solid #f29a0b;
  padding: 1.5rem 7rem;
  transition: 0.3s ease;
}
.question__box input[type="submit"]:hover,
.modal__box input[type="submit"]:hover {
  background-color: #ffffff;
  transform: scale(0.9);
}

.breadcrumbs {
  margin: 4rem 0 3.375rem;
}
.breadcrumbs__wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 0.625rem;
  column-gap: 0.625rem;
}
.breadcrumbs__link,
.breadcrumbs__divider,
.breadcrumbs__item {
  font-size: 1.25rem;
  color: #292929;
  transition: 0.3s ease-in;
}
.breadcrumbs__link:hover {
  color: #f29a0b;
}

.catalog .row {
  row-gap: 1.5rem;
}
.catalog__wrapper {
  margin: 5.125rem 0 12.25rem;
}
.catalog .container .row .col-12:first-child .main-catalog__box {
  border-color: #f29a0b;
}
.catalog-category {
  margin-bottom: 7.5rem;
}

.catalog-category .main-slider__title {
  max-width: 304px;
}

.catalog-category__title {
  display: flex;
  align-items: center;
  height: 100%;
}
.catalog-category__button {
  display: flex;
  justify-content: flex-end;
}
.catalog-category__button .main-button {
  font-size: 1.25rem;
  padding: 1.125rem 4.875rem;
}
.catalog-category__text {
  justify-self: start;
  max-width: 598px;
  margin: 1rem 0 3.125rem;
}
.catalog-seo {
  margin: 5.25rem 0 0;
}
.catalog-seo + .question {
  margin-top: 8.25rem;
}

.main-slider .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
}
.main-slider .owl-prev {
  position: absolute;
  left: -4.5rem;
}
.main-slider .owl-next {
  position: absolute;
  right: -4.5rem;
}
.main-slider__box {
  height: 100%;
  border: 1px solid #f29a0b;
  border-radius: 10px;
  padding: 1.125rem;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s ease-in;
}
.main-slider__box:hover {
  background-color: #f29a0b;
  transform: scale(0.9);
}
.main-slider__box.sale-box {
  background-color: #f29a0b;
}
.main-slider__box.sale-box:hover {
  background-color: #ffffff;
}
.main-slider__img {
  margin-bottom: 1rem;
}
.main-slider__title {
  text-align: center;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.main-slider__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.25rem;
}
.main-slider__text span {
  font-size: 1.25rem;
  text-align: center;
}
.main-slider__text-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.325rem;
}
.main-slider__text-box span {
  font-size: 1.125rem;
}

.sold__title {
  font-weight: 600;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3.625rem;
}
.sold__box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}
.sold__item {
  flex-grow: 1;
}
.sold__item .noAvaliable {
  color: #ef1136;
}

.extra {
  margin-top: 4rem;
}
.extra-category + .question {
  margin-top: 15rem;
}

.product__img {
  margin-top: 4.75rem;
}
.product__img-mark {
  margin-top: 1rem;
  font-size: 1.125rem;
  margin-bottom: 10rem;
  position: relative;
  padding-left: 4rem;
  max-width: 680px;
}
.product__img-mark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("./assets/images/mark.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 48px;
  height: 48px;
}
.product__main {
  padding-left: 5.5rem;
}
.product__wrapper {
  margin-top: 4.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 682px;
  width: 100%;
  padding-left: 5.5rem;
}
.product__title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.product__title b {
  font-size: 1.25rem;
}
.product__subtitle {
  font-size: 1.25rem;
  margin-bottom: 4.25rem;
}
.product__text {
  font-size: 1.25rem;
  margin-bottom: 3.5rem;
}
.product__price {
  font-size: 1.25rem;
  margin-bottom: 3rem;
}
.product__button {
  font-size: 1.25rem;
  padding: 1.125rem 4.25rem;
}
.product__table {
  width: 100%;
  margin-bottom: 1.125rem;
}
.product__table tr:nth-child(even) {
  background-color: #ffffff;
}
.product__table tr:nth-child(odd) {
  background-color: rgba(41, 56, 69, 0.23);
}
.product__table td {
  padding: 0.875rem 1.125rem;
}
.product__table td:last-child {
  text-align: right;
}
.product-mark {
  font-size: 1.25rem;
  margin-bottom: 2.6rem;
}
.product__description {
  font-size: 1.25rem;
  margin: 10rem 0;
}
.product__description table {
  margin: 1.25rem 0;
  max-width: 1200px;
  width: 100%;
}
.product__description table td {
  border: 1px solid #292929;
  padding: 0.875rem 1rem;
  background-color: #ffffff;
}
.product__description ul {
  margin: 1.25rem 0;
  padding-left: 2rem;
  list-style-type: disc;
}
.product__description li {
  list-style-type: disc;
}

.rent .product__price {
  margin-top: 2rem;
}

.service .main__text {
  max-width: 100%;
  margin-bottom: 7.5rem;
  flex-direction: column;
  row-gap: 0.625rem;
}
.service__text {
  font-size: 1.25rem;
}
.service__img {
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 4.5rem;
}
.service__img img {
  width: 100%;
}
.service ul {
  margin-top: 0;
  padding: 1rem 2rem 0;
  list-style-type: disc;
  -moz-columns: 2;
  columns: 2;
}
.service li {
  list-style-type: disc;
  font-size: 1.25rem;
}
.service + .question {
  margin-top: 10rem;
}
.service-price {
  margin-top: 6rem;
}
.service-price__title {
  font-weight: 600;
}
.service-price table {
  width: 100%;
  margin-top: 2rem;
  border-collapse: collapse;
}
.service-price table tr {
  display: flex;
  flex-direction: row;
  width: 100%;
  background-color: #88a4b5;
  padding: 1rem 1rem;
}
.service-price table td {
  flex: 0 0 30%;
}
.service-price table td:first-child {
  flex: 0 0 70%;
}
.service-price table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}
.service-price table thead tr {
  background-color: #88a4b5;
}
.service-price__text {
  font-size: 1rem;
  margin-top: 2rem;
}

.about__text {
  font-size: 1.25rem;
}
.about__text ul {
  list-style-type: disc;
  padding-left: 2rem;
}
.about__text ul li {
  list-style-type: disc;
}
.about__img {
  margin: 6rem 0;
}
.about__img img {
  width: 100%;
}
.about-wrapper__img {
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 10px;
}
.about-wrapper__box {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
.about-wrapper__item {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
.about-wrapper__item span {
  font-size: 1.5rem;
}
.about-wrapper__item a {
  font-size: 1.5rem;
  color: #292929;
  transition: 0.3s ease-in;
}
.about-wrapper__item a:hover {
  color: #f29a0b;
}
.about-wrapper__mark {
  font-size: 1rem;
  max-width: 362px;
}
.about-wrapper + .question {
  margin-top: 10rem;
}

.footer {
  background-color: #293845;
  padding-top: 4.25rem;
}
.footer .container {
  max-width: 1540px;
}
.footer__logo {
  margin-bottom: 1.875rem;
}
.footer__box {
  max-width: 255px;
  display: flex;
  flex-direction: column;
  row-gap: 0.75rem;
  color: #ffffff;
  margin-bottom: 1.875rem;
}
.footer__box span {
  font-size: 1.25rem;
}
.footer__list a,
.footer__link,
.footer__bottom a {
  font-size: 1.25rem;
  transition: 0.3s ease-in;
  color: #ffffff;
  cursor: pointer;
}
.footer__list a:hover,
.footer__link:hover,
.footer__bottom a:hover {
  color: #f29a0b;
}
.footer__text {
  font-size: 1.25rem;
  color: #ffffff;
}
.footer__nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  justify-self: flex-end;
  gap: 1.25rem;
  max-width: 312px;
  width: 100%;
}
.footer__list {
  display: flex;
  flex-direction: column;
  row-gap: 1.875rem;
}
.footer__map {
  border-radius: 10px;
  overflow: hidden;
}
.footer__bottom {
  margin: 5rem 0 2rem;
}
.footer__bottom .container .row .col-12:last-child {
  text-align: right;
}

.policy {
  margin-top: 1rem;
}
.policy h2 {
  margin: 2rem 0 1rem;
}
.policy a {
  color: #f29a0b;
  transition: 0.3s ease-in;
}
.policy a:hover {
  color: #292929;
}
.policy ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.policy ul li {
  list-style-type: disc;
}

@media (min-width: 768px) {
  .cookie-modal {
    left: auto;
    right: 20px;
    max-width: 400px;
  }
}

@media (max-width: 1680px) {
  .main .container {
    max-width: 1340px;
  }
  .main-nav .container .row > .col-12:last-child .main-nav__wrapper .main-nav__box:not(:first-child) {
    max-width: 48%;
  }
  .main-slider .owl-next {
    right: -3.5rem;
  }
  .main-slider .owl-prev {
    left: -3.5rem;
  }
  .features__box {
    height: 100%;
  }
  .question.main-question .question__box::before {
    right: -30px;
  }

  .question__form p span {
    width: 48.4%;
  }
  .question__wrapper {
    max-width: 1340px;
  }
  .product {
    margin-bottom: 4rem;
  }
  .footer .container {
    max-width: 1340px;
  }
}

@media (max-width: 1472px) {
  .question__form p span {
    width: 48.3%;
  }
}

@media (max-width: 1440px) {
  .header__logo img {
    max-width: 300px;
  }
  .header__phone {
    font-size: 1.5rem;
  }
  .main {
    margin-top: 100px;
  }
  .main .container {
    max-width: 1240px;
    padding: 0 1.875rem;
  }
  .main-button {
    padding: 0.8rem 1.5rem;
  }
  .main-nav .container .row > .col-12:first-child .main-nav__wrapper .main-nav__box:not(:last-child) {
    max-width: 48%;
  }
  .main-slider {
    max-width: 1000px;
    margin: 4rem auto 0;
  }
  .features__text {
    font-size: 1rem;
  }
  .question__wrapper {
    margin: 4.125rem auto 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .question__form p span {
    width: 48.2%;
  }
  .footer .container {
    max-width: 1240px;
  }
  .footer__logo img {
    max-width: 300px;
  }
}

@media (max-width: 1360px) {
  .question__form p span {
    width: 47.8%;
  }
}

@media (max-width: 1260px) {
  .question__form p span {
    width: 47.6%;
  }
}

@media (max-width: 1200px) {
  .main__title {
    font-size: 1.5rem;
  }
  .main__text {
    font-size: 1rem;
  }
  .main-nav__title {
    font-size: 1.25rem;
    top: 1rem;
    left: 1rem;
  }
  .main-nav .img-fluid {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: bottom right;
    object-position: bottom right;
  }
  .main-nav .container .row > .col-12:first-child .main-nav__wrapper .main-nav__box {
    min-height: auto;
    height: 200px;
  }
  .main-nav .container .row > .col-12:first-child .main-nav__wrapper .main-nav__box:not(:last-child) {
    max-width: 47%;
    justify-content: flex-end;
    min-height: auto;
    height: 200px;
  }
  .main-nav .container .row > .col-12:last-child .main-nav__wrapper .main-nav__box {
    min-height: auto;
    height: 200px;
  }
  .main-nav .container .row > .col-12:last-child .main-nav__wrapper .main-nav__box:not(:first-child) {
    max-width: 47%;
    min-height: auto;
    height: 200px;
  }
  .main-catalog__title {
    font-size: 1.5rem;
  }
  .main-slider {
    max-width: 850px;
  }
  .main-seo__text p {
    font-size: 1rem;
  }
  .main-seo__text li {
    font-size: 1rem;
  }
  .breadcrumbs__link,
  .breadcrumbs__item,
  .breadcrumbs__divider {
    font-size: 1rem;
  }
  .features__box {
    padding: 1rem 1.25rem;
  }
  .question.main-question .question__box::before {
    top: -271px;
  }
  .question.main-question .question__wrapper {
    padding: 3rem 0;
  }
  .question form {
    gap: 1.25rem;
  }
  .question__form-checkbox label {
    font-size: 1rem;
  }
  .question__form-checkbox label a {
    font-size: 1rem;
  }
  .question__form input,
  .question__form textarea {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  .question__box input[type="submit"],
  .modal__box input[type="submit"] {
    padding: 1rem 7rem;
    font-size: 1rem;
  }
  .product__wrapper {
    padding-left: 0.5rem;
    margin-top: 1.5rem;
  }
  .product__img-mark {
    font-size: 1rem;
  }
  .product__main {
    padding-left: 0.5rem;
  }
  .service .main__text {
    margin-bottom: 2.5rem;
  }
  .service__img {
    margin-bottom: 2.5rem;
  }
  .service__text {
    font-size: 1rem;
  }
  .service li {
    font-size: 1rem;
  }
  .about__text {
    font-size: 1rem;
  }
  .about-wrapper__box {
    row-gap: 1.5rem;
  }
  .about-wrapper__item {
    row-gap: 0.5rem;
  }
  .about-wrapper__item span {
    font-size: 1rem;
  }
  .about-wrapper__item a {
    font-size: 1rem;
  }
  .footer__bottom {
    margin: 3rem 0 1rem;
  }
  .footer__bottom .footer__text {
    font-size: 1rem;
  }
  .footer__bottom .footer__link {
    font-size: 1rem;
  }
}

@media (max-width: 1260px) {
  .question__form p span {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .header .mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    position: relative;
  }
  .header .mobile__menu {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 14px;
    width: 20px;
    padding: 0;
    border: 0;
    background-color: transparent;
  }
  .header .mobile__menu span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #292929;
    position: relative;
    transition: 0.3s ease;
    border-radius: 5px;
  }
  .header .mobile__menu span::before,
  .header .mobile__menu span::after {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    background-color: #292929;
    transition: 0.3s ease;
    border-radius: 5px;
  }
  .header .mobile__menu span::before {
    top: -7px;
  }
  .header .mobile__menu span::after {
    bottom: -7px;
  }
  .header .mobile .header__nav {
    display: block;
    transform: rotate(0) translateY(0);
    right: -300px;
    left: auto;
    writing-mode: horizontal-tb;
    width: 200px;
    background-color: #88a4b5;
    top: 4rem;
    border-radius: 10px;
    transition: 0.3s ease;
  }
  .header .mobile .header__nav .header__list {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 2rem 2rem 1.5rem;
    row-gap: 1.5rem;
  }
  .header .mobile .header__nav .header__list a {
    font-size: 1rem;
  }
  .header .mobile.active span {
    transform: rotate(360deg);
    background-color: transparent;
  }
  .header .mobile.active span::before {
    top: -1px;
    height: 3px;
    transform: rotate(45deg);
  }
  .header .mobile.active span::after {
    bottom: 0;
    height: 3px;
    transform: rotate(-45deg);
  }
  .header .mobile.active .header__nav {
    right: 0;
  }
  .header__nav {
    display: none;
  }
  .header__logo img {
    max-width: 250px;
  }
  .header__phone {
    font-size: 1.25rem;
  }
  .main {
    margin-top: 95px;
  }
  .main-button {
    font-size: 1rem;
  }
  .main-catalog {
    margin-top: 7rem;
  }
  .main-catalog__wrapper {
    margin-bottom: 4rem;
    max-width: 529px;
  }
  .main-catalog__item {
    grid-template-columns: repeat(2, 256px);
    gap: 1rem;
  }
  .main-catalog__box {
    padding: 1rem 2.75rem;
  }
  .main-catalog__link {
    margin: 0 auto;
  }
  .main-seo {
    margin-top: 7rem;
  }
  .main__text {
    justify-self: flex-start;
  }
  .main-slider__box {
    padding: 0.75rem;
  }
  .main-slider__title {
    font-size: 1.25rem;
  }
  .main-slider__text span {
    font-size: 1rem;
  }
  .features {
    margin-top: 7rem;
  }
  .features .features__wrapper .col-12:nth-child(-n + 2) .features__box {
    background-color: #ffffff;
  }
  .features .features__wrapper .col-12:nth-child(2n + 1) .features__box {
    background-color: #f29a0b;
  }
  .features .features__wrapper.row {
    row-gap: 1rem;
  }
  .features__box {
    margin-bottom: 1rem;
  }
  .question {
    margin-top: 7rem;
  }
  .question.main-question .question__box::before {
    content: none;
  }
  .question__wrapper {
    margin: 2.125rem auto 0;
    padding: 4rem 1rem 2rem;
  }
  .catalog__wrapper {
    margin: 4rem 0 7rem;
  }
  .catalog-category {
    margin-bottom: 5.5rem;
  }
  .catalog-category__button .main-button {
    padding: 0.75rem 2.5rem;
    font-size: 1rem;
  }
  .catalog-seo + .question {
    margin-top: 7rem;
  }
  .product__text {
    font-size: 1rem;
  }
  .product__button {
    margin: 0 auto;
  }
  .product__main {
    flex-direction: column;
    align-items: flex-end;
  }
  .product-mark {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .product__description {
    font-size: 1rem;
    margin: 5rem 0 1rem;
  }
  .extra-category + .question {
    margin-top: 7rem;
  }
  .main-slider {
    max-width: 650px;
  }
  .service + .question {
    margin-top: 7rem;
  }
  .about__img {
    margin: 2rem 0;
  }
  .about-wrapper__img {
    margin-top: 2rem;
  }
  .about-wrapper + .question {
    margin-top: 4rem;
  }
  .footer > .container .row .col-12:nth-child(2) {
    order: 1;
    align-self: flex-end;
  }
  .footer > .container .row .col-12:last-child {
    align-self: flex-end;
  }
  .footer__nav {
    margin-bottom: 1.875rem;
  }
  .footer__logo img {
    max-width: 200px;
  }
  .footer__box {
    max-width: 100%;
  }
  .footer__box span {
    font-size: 1rem;
  }
  .footer__list a,
  .footer__link,
  .footer__bottom a {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .header__phone {
    display: none;
  }
  .header__button {
    display: none;
  }
  .main-nav__wrapper {
    gap: 1rem;
  }
  .main-nav__box {
    border: 1.5px solid #f29a0b;
  }
  .main-nav .container .row {
    row-gap: 1rem;
  }
  .main-catalog__box {
    border: 1.5px solid #f29a0b;
    padding: 1rem;
  }
  .main-catalog__item {
    grid-template-columns: repeat(2, 251px);
  }
  .main-slider .owl-nav {
    display: none;
  }
  .main-slider__text-box {
    align-items: flex-start;
  }
  .features .main__text {
    margin-top: 1rem;
  }
  .product {
    margin-bottom: 6rem;
  }
  .product__img-mark {
    padding-left: 2rem;
    margin-bottom: 3rem;
    font-size: 0.875rem;
  }
  .product__img-mark::before {
    width: 28px;
    height: 28px;
  }
  .product__main {
    align-items: flex-start;
    padding-left: 0;
    margin-top: 1rem;
  }
  .product__title span {
    font-size: 1.25rem;
  }
  .product__subtitle {
    margin-bottom: 1.5rem;
  }
  .product__text {
    margin-bottom: 2rem;
  }
  .product__wrapper {
    margin: 0;
  }
  .service + .question {
    margin-top: 4rem;
  }
  .question form {
    flex-direction: column;
  }
  .question__box input[type="submit"],
  .modal__box input[type="submit"] {
    width: 100%;
  }
  .footer__bottom .footer__text {
    margin-bottom: 1rem;
  }
}
@media (max-width: 576px) {
  .main::before {
    content: none;
  }
  .header {
    background-color: #ffffff;
  }
  .header::before {
    content: none;
  }
  .header .mobile__menu {
    position: relative;
    z-index: 100;
  }
  .header .mobile.active .header__nav {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header .mobile.active .header__nav .header__list {
    align-items: center;
  }
  .main-catalog__title {
    margin-bottom: 1.5rem;
  }
  .main-catalog__item {
    display: flex;
    flex-direction: column-reverse;
  }
  .main-catalog__box:first-child {
    display: flex;
  }
  .features__box {
    border: 1.5px solid #f29a0b;
  }
  .breadcrumbs__wrapper {
    flex-wrap: wrap;
  }
  .breadcrumbs__link,
  .breadcrumbs__item,
  .breadcrumbs__divider {
    font-size: 0.875rem;
  }
  .main-seo__text {
    padding: 2.5rem 0;
  }
  .main-slider {
    margin: 2.5rem auto 0;
  }
  .catalog-category__title {
    font-size: 1.25rem;
  }
  .catalog-category__button {
    justify-content: center;
    margin-top: 1.875rem;
  }
  .service ul {
    -moz-columns: 1;
    columns: 1;
    margin-bottom: 1rem;
  }
  .service-price table td {
    flex: 0 0 37%;
  }
  .service-price table td:first-child {
    flex: 0 0 63%;
  }
  .footer__nav {
    max-width: 100%;
  }
}
