@charset "UTF-8";

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.header-top {
    padding: 5px 0;
}

.header-top__lang-wrapper {
	 display: flex;
    align-items: center;
}

.header-top__lang-title {
	color: #fcf9f9;
    font-size: 18px;
    line-height: 150%;
    font-weight: 400;	
    margin-right: 7px;
}



.header-top__lang ul {
display: flex;
}

.header-top__lang li {
    display: flex;
    align-items: center;
    margin-right: 10px; /* Расстояние между флагом и текстом */
}

.header-top__lang li a {
	display: flex;
    height: 100%;
    
    font-weight: 300;
    font-size: 18px;
    line-height: 145%;
    color: #fcf9f9;
    transition: all .3s ease 0s;
}

.header-top__lang li:hover a {
	color: #f16848;
}

.header-top__lang li.current-lang a {
	color: #f16848;
}

.header-top__lang ul li img {
	width: 20px!important;
	height: 16px!important;
}



html,
body {
  width: 100%;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  overflow-anchor: none;
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  box-sizing: border-box;
  background-color: rgba(206, 207, 211, 0.45);
}

html.lock {
  overflow: hidden;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 15px;
}

img,
svg {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: calc(24px + 10 * (100vw / 1330));
  line-height: 120%;
  color: var(--dark-brown);
}

h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: calc(24px + 10 * (100vw / 1330));
  line-height: 120%;
  color: var(--dark-brown);
}

h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: calc(20px + 10 * (100vw / 1330));
  line-height: 120%;
  color: var(--dark-brown);
}

h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: var(--dark-brown);
  margin: 30px 0 15px;
}

h4:first-child {
  margin: 0 0 30px 0;
}

a {
  text-decoration: none;
}

p {
  margin: 0;
  padding: 5px 0;
  font-weight: 300;
  font-size: 18px;
  line-height: 145%;
  /* color: var(--dark-brown); */
  /* opacity: 0.8; */
}

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

input,
button,
textarea {
  font: inherit;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  background: none;
  min-width: 10px;
}

textarea {
  width: 100%;
  resize: none;
}

label {
  margin: 0;
  padding: 0;
  font-size: 12px;
}

select {
  outline: none;
  border: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

picture {
  display: block;
  max-width: 100%;
}

::-webkit-input-placeholder {
  color: #c9c9c9;
}

::-moz-placeholder {
  color: #c9c9c9;
}

:-ms-input-placeholder {
  color: #c9c9c9;
}

::-ms-input-placeholder {
  color: #c9c9c9;
}

::placeholder {
  color: #c9c9c9;
}

.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.single-main {
  padding: 50px 0;
  background-color: #fff;
}

.header {
  background-color: #000;
  padding: 5px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 6;
}

.header-fixed {
  position: fixed;
  -webkit-animation-name: header_fixed;
  animation-name: header_fixed;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

@-webkit-keyframes header_fixed {
  0% {
    opacity: 0;
    top: -100%;
  }

  100% {
    opacity: 1;
    top: 0;
  }
}

@keyframes header_fixed {
  0% {
    opacity: 0;
    top: -100%;
  }

  100% {
    opacity: 1;
    top: 0;
  }
}

.header-content__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.custom-logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 55px;
}

.custom-logo-link img {
  width: auto;
  height: 100%;
}

.header-content__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-content__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-content__menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 20px;
}

.header-content__menu-item:first-child {
  margin-left: 0;
}

.header-content__menu-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-content__menu-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 22px;
  margin-right: 10px;
}

.header-content__menu-img img {
  width: auto;
  height: 100%;
}

.header-content__menu-text {
  color: #fff;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  line-height: 120%;
  font-weight: 500;
  text-transform: uppercase;
}

.menu-item-has-children {
  position: relative;
  padding-right: 15px;
}

.menu-item-has-children:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  right: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid white;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.menu-item-has-children.active:after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.primary-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.primary-btn__link {
  color: #fff;
  font-size: 15px;
  font-family: "Arial", sans-serif;
  line-height: 120%;
  font-weight: 600;
  border-radius: 30px;
  background-color: #f16848;
  border: 1px solid #f16848;
  padding: 10px 25px;
  transition: all .3s ease 0s;
}

.primary-btn__link:hover {
	background-color: transparent;
    color: #f16848;
}

.section-breakdowns {
  padding: 50px 0;
  background-color: #fff;
}

.section-title__title {
  color: #000;
  font-size: 25px;
  font-family: "Montserrat", sans-serif;
  line-height: 135%;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}

.section-title__subtitle {
  color: #000;
  font-size: 21px;
  font-family: "Montserrat", sans-serif;
  line-height: 135%;
  font-weight: 400;
  text-align: center;
}

.breakdowns-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 35px -20px -20px;
}

.breakdowns-body__item {
  width: 33.333%;
  padding: 20px;
}

.breakdowns-body__wrapper:hover {
  top: -20px;
}

.breakdowns-body__wrapper {
  position: relative;
  top: 0;
  aspect-ratio: 16/7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.breakdowns-body__bg img {
  position: absolute;
  bottom: 10px;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.breakdowns-body__fon {
  position: absolute;
  width: 100%;
  height: 75%;
  left: 0;
  bottom: 0;
  border-radius: 5px;
  -webkit-box-shadow: -4px 2px 14px 0px rgba(32, 48, 60, 0.22);
  box-shadow: -4px 2px 14px 0px rgba(32, 48, 60, 0.22);
}

.breakdowns-body__bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
  width: 50%;
}

.breakdowns-body__title {
  position: absolute;
  top: 50%;
  left: 25px;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  width: 50%;
  padding-right: 25px;
  -webkit-transform: translate(0, -25%);
      -ms-transform: translate(0, -25%);
          transform: translate(0, -25%);
}

.section-content {
  padding-bottom: 50px;
}

.home .section-content {
  background-color: #fff;
}

.section-content__title {
  margin-bottom: 20px;
}

.content-body {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  font-family: "Montserrat", sans-serif;
}

.section-map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: auto;
  position: relative;
  aspect-ratio: 16/5;
  overflow: hidden;
}

.section-map p,
.section-map iframe {
  width: 100%;
  height: 100%;
}

.section-map p {
  padding: 0;
}

.map-body {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 15px;
  width: 100%;
  max-width: 500px;
  z-index: 2;
}

.map-body__title {
  padding: 10px;
  background-color: #000;
  -webkit-box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.4);
  border-radius: 0 0 20px 20px;
  color: #fff;
  text-align: center;
}

.page-content {
  background-color: #dddde0;
}

.page-body {
  padding: 50px 0;
  color: #000;
  font-size: 25px;
  font-family: "Montserrat", sans-serif;
  line-height: 135%;
  font-weight: 400;
}

.page-body h1 {
  margin-bottom: 20px;
}

.main-about {
  position: relative;
  z-index: 2;
}

.main-about .about-body__title {
  color: #fff;
}

.about-body {
  padding: 50px 0;
}

.no-webp .main-about:after{
  background: url("../img/about-bg.jpg") no-repeat center top/cover; }

.main-about:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.main-about:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  z-index: -1;
}

.about-body__title-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 560px;
  margin: 0 auto 50px;
}

.about-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -10px;
}

.about-body__title {
  color: #fff;
  font-size: 39px;
  line-height: 135%;
  font-weight: 600;
  color: #000000;
  text-align: center;
}

.about-body__subtitle {
  color: #fff;
  font-size: 18px;
  line-height: 135%;
  font-weight: 400;
  text-align: center;
}

.about-content__wrapper {
  width: 33.333%;
  padding: 10px;
}

.about-content__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100px;
  height: 100px;
  overflow: hidden;
  margin: 0 auto;
}

.about-content__img img {
  width: 100%;
  height: auto;
}

.about-content__title {
  color: #fff;
  font-size: 28px;
  line-height: 135%;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}

.about-content__body {
  color: #fff;
  font-size: 15px;
  line-height: 135%;
  font-weight: 400;
  text-align: center;
}

.contacts-body {
  padding: 50px 0;
}

.contacts-body__title {
  margin-bottom: 30px;
}

.contacts-body__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  height: 30px;
}

.contacts-body__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.contacts-body__item:last-child {
  margin-bottom: 0px;
}

.contacts-body__img {
  margin-right: 15px;
}

.contacts-body__img img {
  height: 100%;
}

.contacts-body__text {
  font-size: 20px;
  line-height: 135%;
  font-weight: 400;
}

.contacts-body .primary-btn {
  margin-top: 50px;
}

.main-category__cat-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -5px -5px 20px -5px;
}

.main-category__cat-list-item {
  padding: 5px;
}

.main-category__cat-list-item.active .main-category__cat-list-link {
  color: #fff;
  background-color: #000;
}

.main-category__cat-list-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #000;
  padding: 6px 20px;
  border-radius: 40px;
  border: 1px solid #000;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.main-category__cat-list-link:hover {
  color: #fff;
  background-color: #000;
}

/* color: #ffffff !important; */

.posts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -30px;
}

.posts__item {
  padding: 30px;
  width: 33.333%;
}

.posts__inner {
  -webkit-box-shadow: -4px 2px 14px 0px rgba(32, 48, 60, 0.22);
          box-shadow: -4px 2px 14px 0px rgba(32, 48, 60, 0.22);
}

.posts__inner:hover .posts__title {
  color: #f16848;
}

.posts__inner:hover .posts__img img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.posts__img {
  aspect-ratio: 16/9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.posts__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.posts__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.posts__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
  padding: 20px;
}

.posts__text p {
  font-size: 14px;
}

.posts__date {
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 1px;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 10px;
}

.term-title p {
  color: #000;
  font-size: 20px;
  font-family: "Ubuntu", sans-serif;
  line-height: 135%;
  font-weight: 400;
}

.bottom-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  border-radius: 7px;
  padding: 10px;
  position: relative;
  z-index: 2;
  margin: 30px auto 0;
}

.bottom-block:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background-color: #aeaeb0;
  z-index: -1;
}

.bottom-block__express {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 30px;
  background-color: #fff705;
  padding: 5px 15px;
}

.bottom-block__express-moto {
  width: 40px;
  height: 40px;
}

.bottom-block__express-text {
  padding: 0 20px;
  text-align: center;
}

.bottom-block__express-icon {
  border-radius: 50px;
  width: 27px;
  height: 27px;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
  background-color: #ff7300;
  position: relative;
  cursor: pointer;
}

.bottom-block__express-tooltip {
  visibility: hidden;
  width: 350px;
  background-color: #f9f9f9;
  color: #000;
  text-align: center;
  border-radius: 6px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.bottom-block__express-icon:hover .bottom-block__express-tooltip {
  opacity: 1;
  visibility: visible;
}

.bottom-block__text {
  font-weight: 700;
  padding: 0 20px;
}

.article-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.article-content__text {
  width: 50%;
}

.article-content__img {
  width: 50%;
  aspect-ratio: 10/10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-transform: translate(50%, 0);
      -ms-transform: translate(50%, 0);
          transform: translate(50%, 0);
  opacity: 0;
  -webkit-transition: all 1.5s ease 0.5s;
  transition: all 1.5s ease 0.5s;
  justify-content: center;
}

.article-content__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.section-tax-content {
  padding: 50px 0;
}

.price-block__title {
  padding: 10px;
  background-color: #000;
  -webkit-box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.4);
  border-radius: 15px;
}

.price-block {
  margin-top: 50px;
}

.price-block__title h2 {
  color: #fff;
  text-align: center;
  line-height: 135%;
  font-weight: 300;
}

.price-block__body {
  margin-top: 20px;
}

.price-block__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 5px;
  position: relative;
  z-index: 2;
  margin-bottom: 5px;
  padding: 10px 20px;
}

.price-block__item:last-child {
  margin-bottom: 0;
}

.price-block__item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 0.65;
  background-color: #fff;
  -webkit-box-shadow: 1px 1px 3px 2px rgba(0, 0, 0, 0.3);
          box-shadow: 1px 1px 3px 2px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}

/*Block Name*/

.price-block__wrapper.price-block__wrapper_name {
  width: 20%;
}

.price-block__wrapper.price-block__wrapper_descr {
  width: 50%;
  text-align: center;
  padding: 0 10px;
}

.price-block__wrapper.price-block__wrapper_time {
  width: 15%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 10px;
}

.price-block__wrapper.price-block__wrapper_price {
  width: 15%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 10px;
}

/* Основной стиль блока */

.price-block__wrapper-item-img {
  position: relative;
  display: inline-block;
}

.price-block__wrapper-item-img img {
  width: 25px;
  height: 25px;
}

/* Скрываем подсказку по умолчанию */

.price-block__wrapper-item-info {
  visibility: hidden;
  width: 200px;
  /* Ширина всплывающего блока */
  background-color: #f9f9f9;
  /* Цвет фона */
  color: #000;
  /* Цвет текста */
  text-align: center;
  border-radius: 6px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  /* Расположение всплывающего блока */
  left: 50%;
  margin-left: -100px;
  /* Сдвиг влево на половину ширины */
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  /* Тень */
}

/* Стилизация наконечника всплывающего блока */

.price-block__wrapper-item-info::after {
  content: "";
  position: absolute;
  top: 100%;
  /* Расположение наконечника */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #f9f9f9 transparent transparent transparent;
}

/* Показать подсказку при наведении */
.price-block__wrapper-item-img:hover .price-block__wrapper-item-info {
  visibility: visible;
  opacity: 1;
}

.how-work__body {
  margin: 50px auto 0;
  width: 100%;
  max-width: 820px;
}

.how-work__item {
  border-radius: 5px;
  padding: 20px 10px;
  position: relative;
  z-index: 2;
  margin-top: 30px;
}

.how-work__item:first-child {
  margin-top: 0;
}

.how-work__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.4;
  background-color: #aeaeb0;
  border-radius: 5px;
}

.how-work__number {
  position: absolute;
  top: -15px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  background-color: #fff705;
  color: #000;
  font-size: 18px;
  line-height: 135%;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 50px;
}

.how-work__text {
  color: #242323;
  font-size: 16px;
  line-height: 135%;
  font-weight: 400;
  text-align: center;
}

.how-work__btn {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.term-bottom {
  margin-top: 50px;
}

.term-bottom__text {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  line-height: 135%;
}

.term-bottom__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 20px auto 0;
}

.tax-digital-technology-category {
  background-color: #fff;
}

.section-questions {
  padding-bottom: 50px;
}

.term-title {
  text-align: center;
  max-width: 590px;
  margin: 0 auto;
}