@charset "UTF-8";
/* =============================================================================
Media queries for different screen sizes
========================================================================== */
header, .header {
  position: fixed;
  background-color: #FFFFFF;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  top: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 10;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
header > .container, .header > .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
header__logo, .header__logo {
  display: flex;
  flex-direction: row;
  align-items: center;
}
header__logo img, .header__logo img {
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
header__menu__desk, .header__menu__desk {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
header__menu__desk a, .header__menu__desk a {
  font-size: 1.1rem;
  line-height: 1.1rem;
  color: #040f16;
  text-decoration: none;
}
header__menu__desk a:hover, .header__menu__desk a:hover {
  color: #BFDAAE;
}
header__contacts, .header__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
header__contacts__item, .header__contacts__item {
  display: flex;
  font-size: 0.95rem;
  line-height: 0.95rem;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease-in;
  color: #0B4F6C;
}
header__contacts__item svg path, .header__contacts__item svg path {
  transition: all 0.3s ease-in;
}
header__contacts__item:hover, .header__contacts__item:hover {
  color: #399105;
}
header__contacts__item:hover svg path, .header__contacts__item:hover svg path {
  fill: #399105;
}
header__user__link, .header__user__link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    font-size: 1.1rem;
    line-height: 1.1rem;
    text-decoration: none;
    color: #399105;
}
header__user__link:hover, .header__user__link:hover {
  color: #399105;
}
header__user__link:hover svg path, .header__user__link:hover svg path {
  fill: #399105;
}
header__mob, .header__mob {
  display: none;
}
header__mob__menu, .header__mob__menu {
  display: none;
}
header__spacer, .header__spacer {
  position: relative;
  height: 50px;
  background-color: #FFFFFF;
}

/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  touch-action: none;
  -moz-user-select: none;
  user-select: none;
  box-sizing: border-box;
}

.noUi-target {
  position: relative;
}

.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}

.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}

/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}

/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0;
}

.noUi-horizontal .noUi-origin {
  height: 0;
}

.noUi-handle {
  backface-visibility: hidden;
  position: absolute;
}

.noUi-touch-area {
  height: 100%;
  width: 100%;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  transition: transform 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 5px;
}

.noUi-horizontal .noUi-handle {
  width: 22px;
  height: 22px;
  right: -11px;
  top: -8px;
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  width: 22px;
  height: 22px;
  right: -11px;
  top: -8px;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}

/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #e6e6e6;
  border-radius: 4px;
}

.noUi-connects {
  border-radius: 3px;
}

.noUi-connect {
  background: #01baef;
}

/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-handle {
  background-color: rgba(1, 186, 239, 0.2);
  border-radius: 50%;
  cursor: pointer;
}
.noUi-handle::before {
  display: block;
  content: "";
  width: 11px;
  height: 11px;
  background: #01baef;
  border-radius: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all ease-in-out 150ms;
}
.noUi-handle:hover::before {
  transform: translate(-50%, -50%) scale(1.5);
}

.noUi-active::before {
  transform: translate(-50%, -50%) scale(1.5);
}

/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}

[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}

/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}

/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}

.noUi-marker-sub {
  background: #AAA;
}

.noUi-marker-large {
  background: #AAA;
}

/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}

.noUi-value-horizontal {
  transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
  transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}

/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}

.noUi-value-vertical {
  transform: translate(0, -50%);
  padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
  transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}

.noUi-horizontal .noUi-origin > .noUi-tooltip {
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}

.noUi-vertical .noUi-origin > .noUi-tooltip {
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}

.calculator {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.calculator__wrapper {
  max-width: 576px;
  display: flex;
  margin: auto;
  flex-direction: column;
  gap: 30px;
  border-radius: 12px;
  background-color: #FFFFFF;
  padding: 30px 40px;
  box-shadow: 0 4px 10px rgba(130, 130, 130, 0.25);
  height: -moz-max-content;
  height: max-content;
  margin-bottom: 40px;
  margin-top: 20px;
  z-index: 4;
}
.calculator__wrapper h2 {
  font-size: 24px;
  line-height: 34px;
  text-transform: uppercase;
  color: #0B4F6C;
  font-weight: 700;
  text-align: center;
}
.calculator__wrapper .button {
  width: 100%;
  font-weight: 600;
}
.calculator__block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.calculator__block__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.calculator__block__header p {
  font-size: 22px;
  line-height: 26px;
  font-weight: 500;
}
.calculator__block__header p:nth-child(2) {
  color: #0B4F6C;
}
.calculator__block__result {
  position: relative;
  box-sizing: border-box;
}
.calculator__block__result input[type=tel] {
  box-sizing: border-box;
  pointer-events: all;
  -webkit-user-select: all;
     -moz-user-select: all;
          user-select: all;
  max-width: 150px;
  border: 1px solid #0B4F6C;
  padding: 14px 20px;
  padding-right: 40px;
  border-radius: 12px;
  font-size: 18px;
  line-height: 22px;
  color: #4f4e4e;
}
.calculator__block__result input[type=tel]::-webkit-outer-spin-button, .calculator__block__result input[type=tel]::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
}
.calculator__block__result::after {
  content: "₽";
  position: absolute;
  height: 100%;
  padding: 14px 20px;
  padding-left: 0;
  top: 0;
  right: 0;
  font-size: 18px;
  line-height: 22px;
}
.calculator__block__under {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.calculator__block__under p {
  font-size: 16px;
  line-height: 19px;
  font-weight: 300;
  color: #8a8a8a;
}
.calculator__info {
  display: flex;
  flex-direction: column;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  gap: 10px;
}
.calculator__info__item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.calculator__info__item__label {
  font-size: 16px;
  line-height: 18px;
  font-weight: 300;
  color: #8a8a8a;
}
.calculator__info__item__value {
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
}

.faq {
  padding: 0 0 80px 0;
}
.faq__wrapper {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
.faq__block {
  padding: 25px 0 15px 0;
  border-bottom: 1px solid #8a8a8a;
}
.faq__block:nth-child(1) {
  border-top: 1px solid #8a8a8a;
}
.faq__block__header {
  --width: 0;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr 40px;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.faq__block__header h1 {
  position: relative;
  font-size: 24px;
  line-height: 29px;
  font-weight: 700;
  margin: 0;
}
.faq__block__header h1::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: var(--width);
  height: 2px;
  background: #399105;
  transition: all 0.3s ease-in-out;
}
.faq__block__header__open {
  position: relative;
  width: 40px;
  height: 40px;
  background: linear-gradient(#399105, #399105), linear-gradient(#399105, #399105);
  background-position: center;
  background-size: 80% 2px, 2px 80%;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in;
}
.faq__block .rotate {
  transform: rotate(-45deg);
}
.faq__block__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}
.faq__block__body a {
  color: #0080d1;
}
.faq__block__body a:hover {
  color: rgba(0, 128, 209, 0.8);
}

.aheader {
  margin-top: 15px;
  padding: 40px 0;
  background-image: url("../images/header.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.aheader__bread {
  font-size: 16px;
  line-height: 18px;
  padding-bottom: 15px;
  color: #FFFFFF;
}
.aheader__bread a {
  color: #8a8a8a;
  text-decoration: none;
}
.aheader__title {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
}
.aheader__title a {
  height: 40px;
  width: 40px;
  text-decoration: none;
  transition: all 0.3s ease-in;
}
.aheader__title a svg circle {
  transition: all 0.3s ease-in;
}
.aheader__title a svg line {
  transition: all 0.3s ease-in;
}
.aheader__title a:hover svg circle {
  stroke: #399105;
}
.aheader__title a:hover svg line {
  stroke: #399105;
}
.aheader__title p {
  font-size: 32px;
  line-height: 32px;
  font-weight: 700;
}

.article {
  position: relative;
  padding: 40px 0;
}
.article > .container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
}
.article .calculator__wrapper {
  margin: 0 auto;
}
.article__text p {
  margin-bottom: 10px;
}
.article__text h1 {
  font-size: 26px;
  line-height: 32px;
  color: #0B4F6C;
  font-weight: 600;
}
.article__text h2 {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.article__text img {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 12px;
  box-shadow: 2px 10px 10px 0px rgba(129, 129, 129, 0.25);
}
.article__text__ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 40px;
  line-height: 40px;
  color: #399105;
  border: 2px solid #399105;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.about {
  position: relative;
  padding: 40px 0;
}
.about p {
  font-size: 18px;
  line-height: 21px;
  margin-bottom: 10px;
}
.about__wrap {
  padding: 20px 0;
  margin-bottom: 15px;
  background-color: #f5f7f9;
}
.about__wrap h1 {
  font-size: 34px;
  line-height: 38px;
  color: #0B4F6C;
  font-weight: 600;
  margin: 0;
}
.about__block {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}
.about__block img {
  padding: 0 100px;
  max-width: 500px;
}
.about__images {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-start;
  padding: 15px 0;
}
.about__images img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 250px;
  border-radius: 12px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.contacts {
  position: relative;
  padding: 40px 0;
}
.contacts p {
  font-size: 18px;
  line-height: 21px;
  margin-bottom: 10px;
}
.contacts__wrap {
  padding: 20px 0;
  margin-bottom: 15px;
  background-color: #f5f7f9;
}
.contacts__wrap h1 {
  font-size: 34px;
  line-height: 38px;
  color: #0B4F6C;
  font-weight: 600;
  margin: 0;
}
.contacts__main {
  display: grid;
  grid-template-columns: max-content max-content;
  grid-template-rows: 1fr 1fr;
  gap: 15px 30px;
  padding: 15px 0;
}
.contacts__main__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.contacts__main__item__link {
  display: flex;
  font-size: 16px;
  line-height: 18px;
  flex-direction: row;
  gap: 5px;
  align-items: flex-start;
  text-decoration: none;
  transition: all 0.3s ease-in;
  color: #0B4F6C;
}
.contacts__main__item__link svg {
  flex-shrink: 0;
}
.contacts__main__item__link svg path {
  transition: all 0.3s ease-in;
}
.contacts__main__item__link:hover {
  color: #399105;
}
.contacts__main__item__link:hover svg path {
  fill: #399105;
}
.contacts__requisites {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
}
.contacts__requisites div {
  max-width: 600px;
}
.contacts__requisites span {
  color: #4f4e4e;
  font-weight: 500;
}

.docs {
  position: relative;
  padding: 40px 0;
}
.docs p {
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 10px;
}
.docs > .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
}
.docs__block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.docs__block h2 {
  font-size: 21px;
  line-height: 24px;
  font-weight: 700;
  color: #040f16;
}
.docs a {
  font-size: 16px;
  line-height: 18px;
  color: #0B4F6C;
  transition: all 0.3s ease-in-out;
}
.docs a:hover {
  color: #399105;
}
.docs .faq__block {
  width: 100%;
  padding: 15px 0 5px 0;
  border-bottom: none;
}
.docs .faq__block:nth-child(1) {
  border-top: none;
}
.docs .faq__block__header {
  --width: 0;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr 40px;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.docs .faq__block__header h1 {
  position: relative;
  font-size: 18px;
  line-height: 21px;
  font-weight: 700;
  margin: 0;
}
.docs .faq__block__header h1::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: var(--width);
  height: 2px;
  background: #399105;
  transition: all 0.3s ease-in-out;
}
.docs .faq__block__header__open {
  position: relative;
  width: 22px;
  height: 22px;
  background: linear-gradient(#399105, #399105), linear-gradient(#399105, #399105);
  background-position: center;
  background-size: 80% 2px, 2px 80%;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in;
}
.docs .faq__block .rotate {
  transform: rotate(-45deg);
}
.docs .faq__block__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.page404 {
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.page404 svg {
  max-width: 500px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.page404__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}
.page404__text h1 {
  font-size: 32px;
  line-height: 34px;
  margin-bottom: 0;
}

footer, .footer {
  padding-top: 50px;
  padding-bottom: 30px;
  background-color: #f5f7f9;
}
footer__contacts, .footer__contacts {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 30px;
}
footer__contacts__que a, .footer__contacts__que a {
  font-size: 1.25rem;
  line-height: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  color: #0B4F6C;
}
footer__contacts__que a:hover, .footer__contacts__que a:hover {
  color: #399105;
}
footer__contacts__item, .footer__contacts__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 310px;
}
footer__contacts__item__head, .footer__contacts__item__head {
  display: flex;
  font-size: 1.15rem;
  line-height: 1.15rem;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease-in;
  color: #0B4F6C;
}
footer__contacts__item__head svg path, .footer__contacts__item__head svg path {
  transition: all 0.3s ease-in;
}
footer__contacts__item__head:hover, .footer__contacts__item__head:hover {
  color: #399105;
}
footer__contacts__item__head:hover svg path, .footer__contacts__item__head:hover svg path {
  fill: #399105;
}
footer__contacts__item p, .footer__contacts__item p {
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  color: #8a8a8a;
}
footer__menu, .footer__menu {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 20px 0;
  border-top: 1px solid #dadada;
  gap: 30px;
}
footer__menu__column, .footer__menu__column {
  display: flex;
  flex-direction: column;
}
footer__menu__column .mb, .footer__menu__column .mb {
  margin-bottom: 20px;
}
footer__menu__column .bold, .footer__menu__column .bold {
  font-weight: 600;
}
footer__menu__column p, .footer__menu__column p {
  font-size: 13px;
  line-height: 15px;
  margin-bottom: 4px;
}
footer__menu__column a, .footer__menu__column a {
  font-size: 13px;
  line-height: 15px;
  margin-bottom: 4px;
}
footer__copyright, .footer__copyright {
  border-top: 1px solid #dadada;
  padding-top: 20px;
  font-size: 12px;
  line-height: 14px;
  font-weight: 300;
  color: #8a8a8a;
}

@media (max-width: 71.0555555556em) {
  header__menu__desk, .header__menu__desk {
    gap: 10px;
  }
  header__menu__desk a, .header__menu__desk a {
    font-size: 1rem;
    line-height: 1rem;
  }
  header__contacts__item, .header__contacts__item {
    font-size: 0.8rem;
    line-height: 0.8rem;
  }
  header__user__link, .header__user__link {
    font-size: 1rem;
    line-height: 1rem;
  }
  .calculator__wrapper h2 {
    font-size: 21px;
    line-height: 26px;
  }
}
@media (max-width: 63.6111111111em) {
  body {
    font-size: 16px;
    line-height: 18px;
  }
  .title {
    font-size: 24px;
    line-height: 29px;
  }
  .button {
    font-size: 1rem;
    line-height: 1rem;
  }
  header, .header {
    padding: 15px 0;
  }
  header__logo img, .header__logo img {
    height: auto;
    width: 75%;
    -o-object-fit: contain;
       object-fit: contain;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  header__menu__desk, .header__menu__desk {
    display: none;
  }
  header__contacts, .header__contacts {
    display: none;
  }
  header__user__link, .header__user__link {
    display: none;
  }
  header__mob, .header__mob {
    display: block;
    width: 24px;
    height: 40px;
    position: relative;
    z-index: 15;
    overflow: hidden;
  }
  header__mob.open span:nth-child(1), .header__mob.open span:nth-child(1) {
    top: 18px;
    transform: translateX(-12px) rotate(135deg);
  }
  header__mob.open span:nth-child(2), .header__mob.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
  }
  header__mob.open span:nth-child(3), .header__mob.open span:nth-child(3) {
    top: 18px;
    transform: translateX(-12px) rotate(-135deg);
  }
  header__mob span, .header__mob span {
    width: 24px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #4f4e4e;
    transition: all 0.5s;
    border-radius: 10px;
  }
  header__mob span:nth-of-type(2), .header__mob span:nth-of-type(2) {
    top: calc(50% - 8px);
  }
  header__mob span:nth-of-type(3), .header__mob span:nth-of-type(3) {
    top: calc(50% + 8px);
  }
  header__mob__menu, .header__mob__menu {
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding: 60px 15px 30px 15px;
    position: absolute;
    transition: all 0.25s ease-in-out;
    transform: translateY(-120%);
  }
  header__mob__menu__desk, .header__mob__menu__desk {
    display: flex;
    padding: 15px 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid #8a8a8a;
    border-top: 1px solid #8a8a8a;
    gap: 30px;
  }
  header__mob__menu__desk a, .header__mob__menu__desk a {
    font-size: 1.5rem;
    line-height: 1.5rem;
    color: #0B4F6C;
    text-decoration: none;
  }
  header__mob__menu__desk a:hover, .header__mob__menu__desk a:hover {
    color: #BFDAAE;
  }
  header__mob__contacts, .header__mob__contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  header__mob__contacts__item, .header__mob__contacts__item {
    display: flex;
    font-size: 1.15rem;
    line-height: 1.15rem;
    flex-direction: row;
    gap: 5px;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease-in;
    color: #0B4F6C;
  }
  header__mob__contacts__item svg path, .header__mob__contacts__item svg path {
    transition: all 0.3s ease-in;
  }
  header__mob__contacts__item:hover, .header__mob__contacts__item:hover {
    color: #399105;
  }
  header__mob__contacts__item:hover svg path, .header__mob__contacts__item:hover svg path {
    fill: #399105;
  }
  header__mob__user, .header__mob__user {
    padding-bottom: 40px;
  }
  header__mob__user__link, .header__mob__user__link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    font-size: 1.5rem;
    line-height: 1.5rem;
    text-decoration: none;
    color: #BFDAAE;
  }
  header__mob__user__link:hover, .header__mob__user__link:hover {
    color: #399105;
  }
  header__mob__user__link:hover svg path, .header__mob__user__link:hover svg path {
    fill: #399105;
  }
  header .menu_expanded, .header .menu_expanded {
    transition: all 0.25s ease-in-out;
    transform: translateY(0) !important;
    background-color: #FFFFFF;
    z-index: 10;
  }
  header__spacer, .header__spacer {
    height: 20px;
  }
  .aheader {
    margin-top: 30px;
    padding: 30px 0;
  }
  .aheader__bread {
    font-size: 14px;
    line-height: 16px;
    padding-bottom: 10px;
  }
  .aheader__title p {
    font-size: 24px;
    line-height: 24px;
  }
  .article {
    padding: 30px 0;
  }
  .article > .container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .article__text p {
    margin-bottom: 5px;
  }
  .article__text h1 {
    font-size: 21px;
    line-height: 26px;
  }
  .article__text h2 {
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 10px;
  }
  .article__text img {
    display: block;
    margin: 15px auto;
    width: 90%;
  }
  .article__text__ul {
    width: 40px;
    height: 40px;
    font-size: 20px;
    line-height: 20px;
  }
  .calculator {
    gap: 10px;
  }
  .calculator__wrapper {
    padding: 20px 20px;
  }
  .calculator__wrapper h2 {
    font-size: 21px;
    line-height: 26px;
  }
  .calculator__block__header p {
    font-size: 19px;
    line-height: 24px;
  }
  .calculator__block__result input[type=tel] {
    max-width: 135px;
    font-size: 16px;
    line-height: 18px;
  }
  .calculator__block__result::after {
    padding: 14px 15px;
    font-size: 16px;
    line-height: 18px;
  }
  .calculator__block__under p {
    font-size: 14px;
    line-height: 16px;
  }
  .calculator__info__item__label {
    font-size: 14px;
    line-height: 16px;
  }
  .calculator__info__item__value {
    font-size: 14px;
    line-height: 16px;
  }
  .about {
    padding: 20px 0;
  }
  .about p {
    font-size: 18px;
    line-height: 21px;
  }
  .about__wrap {
    padding: 15px 0;
    margin-bottom: 10px;
  }
  .about__wrap h1 {
    font-size: 32px;
    line-height: 42px;
  }
  .about__block {
    flex-direction: column;
  }
  .about__block img {
    padding: 0;
    max-width: 70%;
  }
  .about__images {
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
    gap: 15px;
  }
  .about__images a {
    max-width: 80%;
  }
  .about__images img {
    width: 100%;
    max-width: unset;
  }
  .contacts {
    padding: 20px 0;
  }
  .contacts p {
    font-size: 18px;
    line-height: 21px;
  }
  .contacts__wrap {
    padding: 15px 0;
    margin-bottom: 10px;
  }
  .contacts__wrap h1 {
    font-size: 32px;
    line-height: 42px;
  }
  .contacts__main {
    grid-template-columns: 100%;
    grid-template-rows: unset;
    gap: 15px;
    padding: 10px 0;
  }
  .contacts__main__item {
    gap: 5px;
  }
  .contacts__main__item__link {
    font-size: 20px;
    line-height: 24px;
  }
  .contacts__main__item p {
    margin-bottom: 0;
  }
  .contacts__requisites {
    flex-direction: column;
    gap: 20px;
    padding: 10px 0;
  }
  .contacts__requisites div {
    max-width: unset;
  }
  .docs {
    padding: 20px 0;
  }
  .docs > .container {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .docs__block {
    gap: 10px;
  }
  .docs__block h2 {
    font-size: 18px;
    line-height: 21px;
  }
  footer, .footer {
    padding-top: 35px;
    padding-bottom: 15px;
  }
  footer__contacts, .footer__contacts {
    flex-direction: column;
    gap: 35px;
    padding-bottom: 15px;
    text-align: center;
    align-items: center;
  }
  footer__contacts__item, .footer__contacts__item {
    align-items: center;
    gap: 10px;
  }
  footer__menu, .footer__menu {
    grid-template-columns: 1fr;
    align-items: center;
    text-align: center;
  }
  footer__copyright, .footer__copyright {
    font-size: 10px;
    line-height: 12px;
    text-align: center;
  }
}/*# sourceMappingURL=pages.css.map */