:root {
  --bs-white: #fff;
  --bs-primary: #0f91ed;
  --bs-primary-hover: #f6953b;
  --bs-dark: #111827;
  --bs-dark-opacity: rgba(0, 0, 0, 0.5);
  --bs-body: #475569;
  --font-body: 'Inter';
  --font-fallback: sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  --bs-body-font-family: var(--font-body), var(--font-fallback);
  --font-size-3xl: 47px;
  --font-size-2xl: 36px;
  --font-size-xl: 24px;
  --font-size-lg: 20px;
  --font-size-md: 18px;
  --font-size-sm: 16px;
  --font-size-xs: 14px;
  --font-size-2xs: 12px;
  --font-size-3xs: 10px;
  --grid-col: 225px;
  --gap: clamp(15px, 2vw, 30px);
  --transition-duration-fast: 0.2s;
  --ease-linear: linear;
  --ease-in: ease-in;
  --ease-out: ease-out;
  --ease-in-out: ease-in-out;
  --transition-base: var(--transition-duration-fast) var(--ease-linear);
}
@media screen and (max-width: 991px) {
  :root {
    --font-size-3xl: 36px;
    --font-size-2xl: 30px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --font-size-3xl: 30px;
    --font-size-2xl: 26px;
  }
}
button {
  background: transparent;
  border: none;
  padding: 0;
}
img {
  max-width: 100%;
  max-height: auto;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  height: 100%;
}
body {
  margin: 0;
  background: var(--bs-white);
  font-family: var(--bs-body-font-family);
  color: var(--bs-body);
  font-size: var(--font-size-base);
  line-height: 1.2;
  overflow-x: hidden;
  font-weight: 500;
  position: relative;
  top: 0 !important;
}
.ui-dialog .ui-dialog-content a {
  color: var(--bs-primary);
}
/* переопределение active и focus */
.page .form-control:focus,
.page .form-checkbox:focus {
  /* background-color: inherit; */
  border-color: inherit;
}
.page :focus,
.ui-dialog :focus {
  outline: 1px dotted var(--color-focus);
  outline-offset: 1px;
}
.page .form-control:focus,
.page .form-checkbox:focus {
  outline: 1px dotted var(--color-focus);
  outline-offset: 0px;
}
.view-content > div {
  position: relative;
}
.ajax-progress-throbber {
  position: fixed !important;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ajax-progress-throbber .throbber {
  content: '';
  display: block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-image: url('/sites/all/themes/vesta_theme/image/i_loading.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px 30px;
  background-color: var(--color-white);
  animation: spin 1.25s linear infinite;
}
.ajax-progress-throbber .message {
  font-size: 0;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
#mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 45px;
  background-color: var(--bs-white);
  z-index: 100;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}
#mobile-header .page-header {
  flex-grow: 1;
  font-weight: 300;
  align-self: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding: 0 5px;
}
#mobile-header > a {
  color: inherit;
  font-size: 32px;
  line-height: 1;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  min-width: 45px;
}
.region-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-mobile-block {
  display: none;
}
.search-api-page-block-form {
  position: relative;
}
.search-api-page-block-form .btn-primary {
  padding: 7px 10px 7px 11px;
  border-radius: 6px;
}
.search-api-page-block-form form {
  display: flex;
}
.search-api-page-block-form .form-type-search {
  width: 100%;
}
.search-api-page-block-form .form-search:focus {
  outline-offset: -1px;
}
.search-api-page-block-form .form-actions .btn {
  position: absolute;
  right: 0;
  top: 0;
}
.cart--cart-block .cart-block--link__expand {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}
.node--type-slide {
  display: grid;
  align-items: center;
  color: var(--bs-white);
}
.node--type-slide div[data-once='contextual-render'] {
  top: 36px;
}
.node--type-slide .field--name-field-image {
  grid-area: 1/1;
}
.node--type-slide .field--name-field-image img {
  min-height: 290px;
}
.node--type-slide .content {
  grid-area: 1/1;
  display: flex;
  flex-direction: column;
  /* gap: 1rem; */
}
.node--type-slide::after {
  content: none;
}
#map-block {
  margin: 0;
}
#map-block .field--name-body {
  display: flex;
}
.footer .vesta {
  padding: 1.125em;
  font-size: 14px;
  color: var(--bs-white);
  display: flex;
  justify-content: center;
}
.form-item {
  margin: 0;
}
.form-control::placeholder {
  color: var(--color-placeholder);
}
.form-type-checkbox {
  display: flex;
  align-items: flex-start;
}
.form-type-checkbox .form-checkbox {
  margin: 0.25rem 0 0 0;
}
/* .form-type-checkbox .description {} */
/* ### WEBFORM DIALOG ### */
body .ui-dialog :is(.ui-widget-header, .ui-dialog-buttonpane) {
  background-color: transparent;
}
.ui-dialog .webform-submission-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ui-dialog .webform-submission-form .form-type-processed-text {
  margin-top: 1rem;
  font-size: 13px;
}
.view-grid .view-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--grid-col), 1fr));
  gap: var(--gap);
}
.view-news.view-display-id-page_1 .content {
  background-color: var(--color-bg-gray);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
/* .mm-navbar{} */
.region-navigation-mobile .menu {
  display: grid;
}
.region-navigation-mobile .menu a {
  background-color: transparent;
  color: var(--bs-black);
}
.region-navigation-mobile .menu .is-active {
  color: var(--bs-white);
  background-color: var(--bs-primary);
  pointer-events: none;
}
.region-navigation-mobile .menu .menuparent + ul {
  display: none;
}
.nav-tabs {
  margin-top: 20px;
  margin-bottom: 20px;
  gap: 2px;
  border-bottom: 0;
}
.nav-tabs .nav-item a,
.nav-tabs .nav-item.active a:hover {
  font-size: 12px;
  padding: 10px 14px;
  border-radius: 0;
}
.nav-tabs .nav-item.active a,
.nav-tabs .nav-item a:hover {
  background-color: var(--bs-primary);
  color: var(--bs-white);
}
/* ### ADAPTIVE ### */
@media screen and (max-width: 991px) {
  /* ### MOBILE MENU ### */
  .mm-page {
    padding-top: 0 !important;
    /* 64px */
  }
  #block-vesta-theme-osnovnayanavigaciya-2 :is(.sf-accordion-toggle, #superfish-main-accordion) {
    display: none;
  }
  #block-vesta-theme-osnovnayanavigaciya-2 #superfish-main {
    display: flex !important;
  }
  .header-mobile-block {
    display: block;
    padding: 8px 0;
    width: 100%;
    z-index: 400;
    background-color: var(--bs-white);
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
  }
  .header-mobile-block .region-header-mobile {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  #mobile-nav .navigation {
    display: block;
  }
  /* ### webform ### */
  .webform-submission-form {
    grid-template-columns: 1fr;
  }
}
/* ### contextual-region ### */
.contextual-region .contextual {
  display: none;
  top: -8px;
  right: 8px;
}
.contextual-region .contextual-region .contextual {
  top: 8px;
}
.contextual-region:hover .contextual {
  display: block;
}
.contextual-region .contextual .trigger {
  width: 22px !important;
  height: 22px !important;
  background-size: 14px 14px;
}
/* ### commerce ### */
.view-commerce-cart-form .form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.view-commerce-cart-form .btn-primary {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}
.view-commerce-cart-form .btn-primary:hover {
  background-color: var(--bs-white);
  color: var(--bs-primary);
}
.view-commerce-cart-form .table-wrapper {
  overflow-x: auto;
}
/* toolbar */
.toolbar .toolbar-tab .toolbar-icon {
  padding: 0.75em 1.5em 0.75em 2.5em;
}
.container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.form-control:focus {
  box-shadow: none;
  border-color: var(--bs-primary);
}
.modal-dialog .form-item {
  margin-bottom: 14px;
}
.modal-dialog .form-item label {
  margin-bottom: 4px;
}
.modal-dialog .form-item--error-message {
  margin-top: 5px;
  text-align: center;
  font-size: var(--font-size-2xs);
  color: var(--bs-body);
  margin-left: auto;
  margin-right: auto;
}
.modal-dialog .form-item--error-message strong {
  font-weight: 400;
}
.modal-dialog .form-control {
  color: var(--bs-dark);
  border: 1px solid #dce2eb;
  transition: border var(--transition-base);
}
.modal-dialog .form-control::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.modal-dialog .form-control:hover,
.modal-dialog .form-control:focus {
  border: 1px solid var(--bs-primary);
}
.modal-dialog .modal-footer {
  display: flex;
  justify-content: center;
}
.modal-dialog .btn-close {
  margin-right: 2px;
}
.modal-dialog .btn-close:focus {
  box-shadow: unset;
}
.modal-dialog .btn:active {
  background-color: var(--bs-primary-hover);
}
.modal-dialog .input-disabled input {
  pointer-events: none;
  /* отключает клики и ввод */
  background-color: #f3f3f3;
  /* серый фон как у disabled */
  color: #5a5a5a;
  /* тусклый текст */
  opacity: 0.7;
  /* визуально "неактивное" */
  border: none;
  font-size: 14px;
}
.modal-dialog .alert-error {
  background-color: #6b7280;
  border: 1px solid var(--bs-white);
  color: var(--bs-white);
}
.modal-dialog .alert-error a {
  color: var(--bs-white);
  text-decoration: none;
  transition: color var(--transition-base);
}
.modal-dialog .alert-error a:hover {
  color: var(--bs-primary);
}
.modal-dialog .alert-error .btn-close {
  filter: invert(1);
}
.cookies #vpa-short-wrapper {
  max-width: 937px;
  border-radius: 0;
  background-color: #fff;
  gap: 10px;
  border: none;
  border-radius: 16px;
  padding: 30px;
}
@media screen and (max-width: 1199px) {
  .cookies #vpa-short-wrapper {
    padding: 15px;
  }
}
@media screen and (max-width: 767px) {
  .cookies #vpa-short-wrapper {
    max-width: 100%;
    right: 0;
  }
}
.cookies #vpa-btn-ok {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 15px 30px 15px 30px;
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.1), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  background: var(--bs-primary);
  border-radius: 30px;
  transition: background-color var(--transition-base);
  font-weight: 500;
  font-size: var(--font-size-xs);
  line-height: 143%;
  color: var(--bs-white);
  text-decoration: none;
  width: 304px;
}
.cookies #vpa-btn-ok:hover {
  background-color: var(--bs-primary-hover);
}
.cookies #vpa-btn-ok::after {
  content: '';
  display: block;
  height: 11px;
  width: 12px;
  background-image: url('/sites/all/themes/vesta_theme/image/arrow-btn-primary.svg');
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 1199px) {
  .cookies #vpa-btn-ok {
    max-width: 304px;
    width: 100%;
  }
}
.cookies #vpa-btn-ok::after {
  display: none;
}
.cookies__content {
  max-width: 670px;
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #161616;
}
.cookies__content a {
  text-decoration: none;
  transition: color var(--transition-base);
  color: #000;
}
.cookies__content a:hover {
  color: var(--bs-primary-hover);
}
.search-result-text a {
  color: var(--bs-dark);
  text-decoration: underline;
  text-decoration-skip-ink: none;
  transition: color var(--transition-base);
}
.search-result-text a:hover {
  color: var(--bs-dark-hover);
}
.pagination {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.pagination .page-link {
  border: none;
  background-color: var(--bs-primary);
  color: var(--bs-white) !important;
  text-decoration: none !important;
  transition: background-color var(--transition-base);
}
.pagination .page-link:focus {
  box-shadow: none;
}
.pagination .page-link:hover {
  background-color: var(--bs-primary-hover);
}
.pagination .is-active .page-link {
  background-color: var(--bs-primary-hover);
}
.suptitle-styles {
  display: inline-block;
  font-weight: 500;
  font-size: var(--font-size-2xs);
  line-height: 133%;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid #9ca3af;
  border-radius: 20px;
}
.suptitle {
  display: inline-block;
  font-weight: 500;
  font-size: var(--font-size-2xs);
  line-height: 133%;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid #9ca3af;
  border-radius: 20px;
}
.title-styles {
  font-weight: 700;
  font-size: var(--font-size-2xl);
  line-height: 111%;
  letter-spacing: -0.01em;
  color: var(--bs-dark);
}
.title {
  font-weight: 700;
  font-size: var(--font-size-2xl);
  line-height: 111%;
  letter-spacing: -0.01em;
  color: var(--bs-dark);
}
.btn-primary-styles {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 15px 30px 15px 30px;
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.1), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  background: var(--bs-primary);
  border-radius: 30px;
  transition: background-color var(--transition-base);
  font-weight: 500;
  font-size: var(--font-size-xs);
  line-height: 143%;
  color: var(--bs-white);
  text-decoration: none;
}
.btn-primary-styles:hover {
  background-color: var(--bs-primary-hover);
}
.btn-primary-styles::after {
  content: '';
  display: block;
  height: 11px;
  width: 12px;
  background-image: url('/sites/all/themes/vesta_theme/image/arrow-btn-primary.svg');
  background-repeat: no-repeat;
  background-position: center;
}
.btn-primary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 15px 30px 15px 30px;
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.1), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  background: var(--bs-primary);
  border-radius: 30px;
  transition: background-color var(--transition-base);
  font-weight: 500;
  font-size: var(--font-size-xs);
  line-height: 143%;
  color: var(--bs-white);
  text-decoration: none;
}
.btn-primary:hover {
  background-color: var(--bs-primary-hover);
}
.btn-primary::after {
  content: '';
  display: block;
  height: 11px;
  width: 12px;
  background-image: url('/sites/all/themes/vesta_theme/image/arrow-btn-primary.svg');
  background-repeat: no-repeat;
  background-position: center;
}
.btn-secondary-styles {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  padding: 15px 50px 15px 30px;
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.1), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 30px;
  transition: background-color var(--transition-base);
  font-weight: 700;
  font-size: var(--font-size-xs);
  line-height: 143%;
  color: var(--bs-primary);
  text-decoration: none;
  border: none;
}
.btn-secondary-styles:hover {
  background-color: #e7e7e7;
  color: var(--bs-primary);
}
.btn-secondary-styles::after {
  content: '';
  display: block;
  width: 12px;
  height: 11px;
  background-image: url('/sites/all/themes/vesta_theme/image/btn-arrow-secondary.svg');
  background-repeat: no-repeat;
  background-position: center;
}
.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  padding: 15px 50px 15px 30px;
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.1), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 30px;
  transition: background-color var(--transition-base);
  font-weight: 700;
  font-size: var(--font-size-xs);
  line-height: 143%;
  color: var(--bs-primary);
  text-decoration: none;
  border: none;
}
.btn-secondary:hover {
  background-color: #e7e7e7;
  color: var(--bs-primary);
}
.btn-secondary::after {
  content: '';
  display: block;
  width: 12px;
  height: 11px;
  background-image: url('/sites/all/themes/vesta_theme/image/btn-arrow-secondary.svg');
  background-repeat: no-repeat;
  background-position: center;
}
.btn-secondary-two-styles {
  border-radius: 30px;
  padding: 15px 30px;
  border: 1px solid #dce2eb;
  background-color: var(--bs-white);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--font-size-xs);
  line-height: 143%;
  color: var(--bs-dark);
  transition: color var(--transition-base), background-color var(--transition-base);
}
.btn-secondary-two-styles:hover {
  background-color: var(--bs-primary-hover);
  color: var(--bs-white);
}
.btn-secondary-two {
  border-radius: 30px;
  padding: 15px 30px;
  border: 1px solid #dce2eb;
  background-color: var(--bs-white);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--font-size-xs);
  line-height: 143%;
  color: var(--bs-dark);
  transition: color var(--transition-base), background-color var(--transition-base);
}
.btn-secondary-two:hover {
  background-color: var(--bs-primary-hover);
  color: var(--bs-white);
}
#block-vesta-theme-page-title {
  margin-bottom: 40px;
}
.title,
#block-vesta-theme-page-title h1 {
  margin-bottom: 0;
  font-weight: 700;
  font-size: var(--font-size-2xl);
  line-height: 111%;
  letter-spacing: -0.01em;
  color: var(--bs-dark);
}
.page-product #block-vesta-theme-page-title {
  display: none;
}
.breadcrumb {
  margin-bottom: 30px;
}
.breadcrumb .breadcrumb-item {
  color: var(--bs-gray-600);
}
.breadcrumb .breadcrumb-item a {
  color: var(--bs-secondary);
  transition: color var(--transition-base);
  text-decoration: none;
}
.breadcrumb .breadcrumb-item a:hover {
  color: var(--bs-primary);
}
.opytnyh-speciali-form {
  display: flex;
  flex-direction: column;
}
.opytnyh-speciali-form .form-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.opytnyh-speciali-form .webform-element-description {
  font-size: var(--font-size-xs);
  font-weight: 400;
}
.opytnyh-speciali-form .webform-element-description a {
  text-decoration: none;
  transition: color var(--transition-base);
  color: var(--bs-secondary-dark);
}
.opytnyh-speciali-form .webform-element-description a:hover {
  color: var(--bs-secondary-hover);
}
.opytnyh-speciali-form__label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin-left: auto;
  margin-right: auto;
}
.opytnyh-speciali-form__customcheckbox {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15px;
  height: 15px;
  border: 1px solid var(--bs-dark);
  border-radius: 0;
  background-color: transparent;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.opytnyh-speciali-form__customcheckbox::before {
  content: '';
  position: relative;
  right: 1px;
  top: -1px;
  width: 11px;
  height: 11px;
  opacity: 0;
  background-image: url('/sites/all/themes/vesta_theme/image/check-form.svg');
  background-repeat: no-repeat;
  transition: opacity var(--transition-base);
}
.form-checkbox:checked + .opytnyh-speciali-form__customcheckbox::before {
  opacity: 1;
}
.webform-button--submit:hover {
  border-color: transparent;
}
.webform-button--submit:active {
  border-color: transparent !important;
  background-color: var(--bs-primary-hover) !important;
}
.webform-button--submit:focus-visible {
  box-shadow: none !important;
  background-color: var(--bs-primary-hover) !important;
  border-color: transparent !important;
}
.form-number {
  /* Firefox */
  -moz-appearance: textfield;
}
.form-number::-webkit-outer-spin-button,
.form-number::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url('/sites/all/themes/vesta_theme/image/select-arrow.svg') no-repeat right;
}
input[type='search']::-webkit-search-decoration,
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-results-button,
input[type='search']::-webkit-search-results-decoration {
  display: none;
}
.page-top {
  padding-top: 20px;
  padding-bottom: 60px;
  box-shadow: 0 8px 50px -6px rgba(0, 0, 0, 0.1), 0 10px 55px -5px rgba(0, 0, 0, 0.1);
  background: linear-gradient(180deg, #e8ebee 0%, #dce2eb 100%);
}
@media screen and (max-width: 991px) {
  .page-top {
    padding-bottom: 20px;
  }
}
.logo__text {
  margin-bottom: 0;
  max-width: 133px;
  font-weight: 700;
  font-size: var(--font-size-sm);
  line-height: 125%;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  color: var(--bs-dark);
}
@media (max-width: 384px) {
  .logo__text {
    font-size: 12px;
  }
}
.header {
  position: relative;
  margin-bottom: 60px;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  .header {
    margin-bottom: 40px;
  }
}
.header__inner {
  padding: 20px 25px;
  border-radius: 30px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.02);
  background: #fff;
}
.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 37px;
}
.header__laptop {
  margin-top: 20px;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__search {
  max-width: 270px;
  width: 100%;
  flex-shrink: 0;
  position: relative;
}
.header__search .form-control {
  border: 1px solid #dce2eb;
  border-radius: 20px;
  padding: 8px 20px;
  height: 31px;
  font-size: 12px;
  transition: border var(--transition-base);
  background: #f8fafc;
}
.header__search .form-control::placeholder {
  color: #9ca3af;
  font-size: 12px;
}
.header__search .form-control:focus {
  box-shadow: none;
  border: 1px solid var(--bs-primary-hover);
}
.header__search .close-search-button {
  display: none;
}
.header__search .form-item-search-api-fulltext label {
  display: none;
}
.header__search .form-item {
  margin-right: 0;
}
.header__search .form-item input {
  margin: 0;
}
.header__search .form-actions button,
.header__search .search-form__submit {
  font-size: 0;
  background-color: transparent;
  border: none;
  padding: 0;
  height: 100%;
}
.header__search .form-actions button::before,
.header__search .search-form__submit::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  right: 20px;
  width: 11px;
  height: 12px;
  transform: translateY(-50%);
  background-image: url('/sites/all/themes/vesta_theme/image/search.svg');
}
.header__search .form-actions button::after,
.header__search .search-form__submit::after {
  content: '';
  display: none;
}
.header__search .region-search {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header__navigation {
    display: none;
  }
}
.header__navigation .nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 8px;
  column-gap: 20px;
  max-width: 338px;
}
@media screen and (max-width: 1199px) {
  .header__navigation .nav {
    max-width: 100%;
    gap: 14px;
  }
}
.header__navigation .dropdown-menu {
  border: 1px solid #dce2eb;
}
.header__navigation .nav-item .dropdown-item {
  font-size: 12px;
}
.header__navigation .nav-item .dropdown-item:focus {
  background-color: var(--bs-primary);
  color: var(--bs-white);
}
.header__navigation .nav-link {
  font-weight: 500;
  font-size: var(--font-size-2xs);
  line-height: 133%;
  color: #475569;
  padding: 0;
}
.header__navigation .nav-link:hover {
  color: var(--bs-primary-hover);
}
.header__contacts {
  display: flex;
  align-items: center;
  gap: 37px;
}
.header__contacts-wrapper {
  display: flex;
  flex-direction: column;
}
.header__phone {
  font-weight: 600;
  font-size: var(--font-size-2xs);
  line-height: 133%;
  text-align: right;
  color: var(--bs-dark);
  text-decoration: none;
  transition: color var(--transition-base);
}
.header__phone:hover {
  color: var(--bs-primary-hover);
}
.header__callback {
  font-weight: 400;
  font-size: var(--font-size-3xs);
  line-height: 150%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-align: right;
  color: var(--bs-primary);
  transition: color var(--transition-base);
}
.header__callback:hover {
  color: var(--bs-primary-hover);
}
.header__tg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: var(--bs-primary);
  border-radius: 16px;
  transition: background-color var(--transition-base);
}
.header__tg:hover {
  background-color: var(--bs-primary-hover);
}
.mobile-menu-wrapper {
  padding-top: 20px;
  padding-bottom: 10px;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: var(--bs-white);
}
.mobile-menu-wrapper .btn-close {
  background: none;
  top: 11px;
  right: 20px;
  opacity: 1;
}
.mobile-menu-wrapper .btn-close:focus {
  box-shadow: unset;
}
.mobile-menu-wrapper__top {
  display: flex;
  justify-content: space-between;
  position: relative;
  text-align: center;
  width: 100%;
  padding: 10px;
  color: var(--bs-dark);
  font-size: var(--font-size-xs);
}
.mobile-menu-wrapper .mobile-menu-wrapper__close {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  min-width: unset;
  color: var(--bs-white) !important;
}
.mobile-menu-wrapper .mobile-menu-wrapper__close svg {
  transition: transform var(--transition-base);
  color: var(--bs-body);
}
.mobile-menu-wrapper .mobile-menu-wrapper__close:hover svg {
  transform: scale(1.1);
}
.mobile-menu-wrapper .header__search {
  max-width: 250px;
}
@media (max-width: 1140px) {
  .mobile-menu-wrapper .btn.use-ajax {
    padding: 10px 21px 10px;
    font-size: 16px;
  }
}
.mobile-menu-wrapper .header__contacts {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding-left: 16px;
}
.mobile-menu-wrapper .header__callback {
  text-align: left;
}
.mobile-menu-wrapper .header__tg {
  width: 40px;
  height: 40px;
}
.mobile-menu-wrapper .nav > .nav-item:hover .dropdown-menu {
  top: 27px;
  left: -15px;
}
.mobile-nav {
  margin-top: 10px;
  margin-bottom: 14px;
}
.mobile-nav .nav {
  display: flex;
  flex-direction: column;
}
.mobile-nav .nav > .nav-item:first-child {
  border-top: 1px solid var(--bs-gray-400);
}
.mobile-nav .nav-link {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--bs-gray-400);
  color: var(--bs-body);
  transition: color var(--transition-base);
}
.mobile-nav .nav-link:hover {
  color: var(--bs-primary-hover);
}
.mobile-nav .nav-link::after {
  display: none;
}
.mobile-nav .submenu-arrow {
  cursor: pointer;
  user-select: none;
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  border-left: 1px solid var(--bs-secondary);
}
.mobile-nav .submenu-arrow::after {
  content: '';
  display: block;
  background-image: url('/sites/all/themes/vesta_theme/image/mobile-arrow.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px;
  transition: transform var(--transition-base);
  width: 40px;
  height: 100%;
}
.mobile-nav .nav-item.open .submenu-arrow::after {
  transform: rotate(90deg);
}
.mobile-nav#js-mobile-nav .dropdown-menu {
  display: none;
  padding-left: 15px;
  position: relative;
  top: auto;
  left: auto;
  border-radius: 0;
  background-color: transparent;
}
.mobile-nav#js-mobile-nav .dropdown-item {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 0;
  background-color: transparent;
  transition: color var(--transition-base);
}
.mobile-nav#js-mobile-nav .dropdown-item:hover {
  color: var(--bs-primary-hover);
}
.mobile-nav#js-mobile-nav .nav {
  flex-direction: column;
}
.mobile-nav#js-mobile-nav .nav li.dropdown {
  position: relative;
}
.wrapper_intro {
  position: relative;
}
.wrapper_intro .wrapper_intro-decor {
  position: absolute;
  left: 0px;
  right: 0;
  bottom: 40px;
  width: 1971px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1199px) {
  .wrapper_intro .wrapper_intro-decor {
    display: none;
  }
}
.intro {
  display: flex;
  justify-content: space-between;
  gap: 120px;
}
@media screen and (max-width: 1199px) {
  .intro {
    gap: 20px;
  }
}
@media screen and (max-width: 991px) {
  .intro {
    flex-direction: column;
    gap: 40px;
  }
}
.intro__btns {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .intro__btns {
    flex-direction: column;
    align-items: flex-start;
  }
}
.intro__left {
  max-width: 479px;
  flex-shrink: 0;
}
@media screen and (max-width: 991px) {
  .intro__left {
    max-width: 650px;
  }
}
.intro__right {
  min-width: 570px;
  padding: 20px 20px 48px 20px;
  box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.1);
  background: var(--bs-white);
  border-radius: 30px;
}
@media screen and (max-width: 1199px) {
  .intro__right {
    min-width: auto;
    max-width: 100%;
  }
}
.intro__right .blazy--field-izobrazhenie {
  height: 353px;
}
@media screen and (max-width: 767px) {
  .intro__right .blazy--field-izobrazhenie {
    height: 250px;
  }
}
.intro__right .media--image {
  height: 100%;
}
.intro__right img {
  border-radius: 18px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.intro .blazy--field-preimushchestva {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1199px) {
  .intro .blazy--field-preimushchestva {
    margin-top: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
@media screen and (max-width: 991px) {
  .intro .blazy--field-preimushchestva {
    justify-content: space-between;
    flex-direction: row;
  }
}
@media (max-width: 587px) {
  .intro .blazy--field-preimushchestva {
    flex-direction: column;
  }
}
.intro .blazy--field-preimushchestva .field--name-field-product-param-param {
  font-weight: 700;
  font-size: var(--font-size-xl);
  line-height: 133%;
  letter-spacing: -0.01em;
  color: var(--bs-primary);
}
.intro .blazy--field-preimushchestva .field--name-field-product-param-value {
  font-weight: 500;
  font-size: var(--font-size-2xs);
  line-height: 133%;
  color: #9ca3af;
}
.intro .field--name-field-podpis-k-zagolovku {
  margin-bottom: 30px;
  display: inline-block;
  font-weight: 500;
  font-size: var(--font-size-2xs);
  line-height: 133%;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid #9ca3af;
  border-radius: 20px;
}
@media screen and (max-width: 991px) {
  .intro .field--name-field-podpis-k-zagolovku {
    margin-bottom: 20px;
  }
}
.intro .field--name-node-title {
  margin-bottom: 40px;
}
@media screen and (max-width: 991px) {
  .intro .field--name-node-title {
    margin-bottom: 20px;
  }
}
.intro .field--name-node-title h1 {
  margin-bottom: 0;
  font-weight: 700;
  font-size: var(--font-size-3xl);
  line-height: 106%;
  letter-spacing: -0.01em;
  color: var(--bs-dark);
}
.intro .field--name-body {
  margin-bottom: 40px;
}
@media screen and (max-width: 991px) {
  .intro .field--name-body {
    margin-bottom: 20px;
  }
}
.intro .field--name-body p {
  margin-bottom: 0;
  font-weight: 400;
  font-size: var(--font-size-md);
  line-height: 163%;
}
.wrapper_about {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 991px) {
  .wrapper_about {
    margin-bottom: 20px;
  }
}
.view-about.view-display-id-block_1 {
  text-align: center;
}
.view-about.view-display-id-block_1 .field--name-field-podpis-k-zagolovku {
  margin-bottom: 30px;
  display: inline-block;
  font-weight: 500;
  font-size: var(--font-size-2xs);
  line-height: 133%;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid #9ca3af;
  border-radius: 20px;
}
@media screen and (max-width: 991px) {
  .view-about.view-display-id-block_1 .field--name-field-podpis-k-zagolovku {
    margin-bottom: 20px;
  }
}
.view-about.view-display-id-block_1 .field--name-node-title {
  margin-bottom: 20px;
}
.view-about.view-display-id-block_1 .field--name-node-title h2 {
  font-weight: 700;
  font-size: var(--font-size-2xl);
  line-height: 111%;
  letter-spacing: -0.01em;
  color: var(--bs-dark);
}
.view-about.view-display-id-block_1 .field--name-body {
  max-width: 570px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  font-size: var(--font-size-md);
  line-height: 163%;
  text-align: center;
}
.wrapper_benefits {
  margin-bottom: 30px;
  position: relative;
}
.wrapper_benefits .wrapper_benefits-decor {
  position: absolute;
  left: 0px;
  right: 0;
  top: -6px;
  width: 1971px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1199px) {
  .wrapper_benefits .wrapper_benefits-decor {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .wrapper_benefits {
    margin-bottom: 20px;
  }
}
.view-preimushchestva .view-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media screen and (max-width: 1199px) {
  .view-preimushchestva .view-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .view-preimushchestva .view-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.view-preimushchestva .views-row {
  box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.03);
  background: var(--bs-white);
  border: 1px solid #f8fafc;
  border-radius: 30px;
  padding: 30px 30px 54px 30px;
}
@media screen and (max-width: 576px) {
  .view-preimushchestva .views-row {
    padding: 20px 10px;
  }
}
.view-preimushchestva .blazy--field-ikonka {
  margin-bottom: 12px;
}
.view-preimushchestva .blazy--field-ikonka .media--image {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  width: 48px;
  height: 48px;
  background: #f8fafc;
}
.view-preimushchestva .field--name-body {
  font-weight: 500;
  font-size: var(--font-size-2xs);
  line-height: 167%;
}
.view-preimushchestva .field--name-node-title {
  margin-bottom: 12px;
}
.view-preimushchestva .field--name-node-title h2 {
  font-weight: 700;
  font-size: var(--font-size-lg);
  line-height: 130%;
  letter-spacing: -0.01em;
  color: var(--bs-dark);
}
@media screen and (max-width: 767px) {
  .view-preimushchestva .field--name-node-title h2 {
    font-size: 14px;
  }
}
.view-specialnye-predlozheniya .view-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media screen and (max-width: 576px) {
  .view-specialnye-predlozheniya .view-content {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.view-specialnye-predlozheniya .views-row {
  padding: 30px 30px 32px 30px;
  border: 1px solid var(--bs-primary);
  border-radius: 30px;
  box-shadow: 0 20px 50px 0 rgba(15, 145, 237, 0.03);
  background: #ebf7ff;
}
@media screen and (max-width: 767px) {
  .view-specialnye-predlozheniya .views-row {
    padding: 30px 20px 32px 20px;
  }
}
@media screen and (max-width: 576px) {
  .view-specialnye-predlozheniya .views-row {
    padding: 20px;
  }
}
.view-specialnye-predlozheniya .field--name-node-title {
  margin-bottom: 12px;
}
.view-specialnye-predlozheniya .field--name-node-title h2 {
  margin-bottom: 0;
  font-weight: 700;
  font-size: var(--font-size-lg);
  line-height: 130%;
  letter-spacing: -0.01em;
  color: var(--bs-dark);
}
.view-specialnye-predlozheniya .blazy--field-ikonka--teaser {
  margin-bottom: 12px;
}
.view-specialnye-predlozheniya .blazy--field-ikonka--teaser .media--image {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background-color: var(--bs-primary);
  width: 48px;
  height: 48px;
}
.view-specialnye-predlozheniya .field--name-body p {
  font-weight: 500;
  font-size: var(--font-size-2xs);
  line-height: 167%;
  color: var(--bs-body);
}
.wrapper_levels_of_education {
  position: relative;
  margin-top: 40px;
  margin-bottom: 40px;
  padding-top: 30px;
  padding-bottom: 40px;
  background-color: #f5f8fa;
}
@media screen and (max-width: 767px) {
  .wrapper_levels_of_education {
    padding-bottom: 20px;
    padding-top: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.view-display-id-page_2 .view-header {
  margin-bottom: 40px;
}
.view-catalog.view-display-id-block_front .view-header,
.view-catalog.view-display-id-page .view-header {
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .view-catalog.view-display-id-block_front .view-header,
  .view-catalog.view-display-id-page .view-header {
    margin-bottom: 20px;
  }
}
.view-catalog.view-display-id-block_front .view-header .suptitle,
.view-catalog.view-display-id-page .view-header .suptitle {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .view-catalog.view-display-id-block_front .view-header .suptitle,
  .view-catalog.view-display-id-page .view-header .suptitle {
    margin-bottom: 20px;
  }
}
.view-catalog.view-display-id-block_front .view-header .title,
.view-catalog.view-display-id-page .view-header .title {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .view-catalog.view-display-id-block_front .view-header .title,
  .view-catalog.view-display-id-page .view-header .title {
    margin-bottom: 20px;
  }
}
.view-catalog.view-display-id-block_front .view-header .catalog-description,
.view-catalog.view-display-id-page .view-header .catalog-description {
  max-width: 570px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  font-size: var(--font-size-md);
  line-height: 163%;
  text-align: center;
}
.view-catalog.view-display-id-block_front .view-footer,
.view-catalog.view-display-id-page .view-footer {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .view-catalog.view-display-id-block_front .view-footer,
  .view-catalog.view-display-id-page .view-footer {
    margin-top: 20px;
  }
}
.view-catalog.view-display-id-block_front .view-content,
.view-catalog.view-display-id-page .view-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .view-catalog.view-display-id-block_front .view-content,
  .view-catalog.view-display-id-page .view-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 568px) {
  .view-catalog.view-display-id-block_front .view-content,
  .view-catalog.view-display-id-page .view-content {
    grid-template-columns: repeat(1, 1fr);
  }
}
.view-catalog.view-display-id-block_front .views-row,
.view-catalog.view-display-id-page .views-row {
  cursor: pointer;
  box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.03);
  background: var(--bs-white);
  border-radius: 30px;
  padding: 30px;
  transition: background-color var(--transition-base);
}
@media screen and (max-width: 991px) {
  .view-catalog.view-display-id-block_front .views-row,
  .view-catalog.view-display-id-page .views-row {
    padding: 20px;
  }
}
.view-catalog.view-display-id-block_front .views-row .taxonomy-term,
.view-catalog.view-display-id-page .views-row .taxonomy-term {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.view-catalog.view-display-id-block_front .views-row:hover,
.view-catalog.view-display-id-page .views-row:hover {
  background-color: var(--bs-primary);
}
.view-catalog.view-display-id-block_front .views-row:hover .field--name-taxonomy-term-title a,
.view-catalog.view-display-id-page .views-row:hover .field--name-taxonomy-term-title a {
  color: var(--bs-white);
}
.view-catalog.view-display-id-block_front .views-row:hover .field--name-field-kratkoe-opisanie p,
.view-catalog.view-display-id-page .views-row:hover .field--name-field-kratkoe-opisanie p {
  color: var(--bs-white);
}
.view-catalog.view-display-id-block_front .views-row:hover .field--name-field-podrobnee-o-programmah,
.view-catalog.view-display-id-page .views-row:hover .field--name-field-podrobnee-o-programmah {
  color: var(--bs-white);
}
.view-catalog.view-display-id-block_front .views-row:hover .field--name-field-ikonka,
.view-catalog.view-display-id-page .views-row:hover .field--name-field-ikonka {
  background-color: var(--bs-white);
  color: var(--bs-primary);
}
.view-catalog.view-display-id-block_front .views-row:nth-child(4),
.view-catalog.view-display-id-page .views-row:nth-child(4) {
  grid-column: 1;
}
@media screen and (max-width: 767px) {
  .view-catalog.view-display-id-block_front .views-row:nth-child(4),
  .view-catalog.view-display-id-page .views-row:nth-child(4) {
    grid-column: unset;
  }
}
.view-catalog.view-display-id-block_front .views-row:nth-child(5),
.view-catalog.view-display-id-page .views-row:nth-child(5) {
  grid-column: 2 / 4;
}
@media screen and (max-width: 767px) {
  .view-catalog.view-display-id-block_front .views-row:nth-child(5),
  .view-catalog.view-display-id-page .views-row:nth-child(5) {
    grid-column: unset;
  }
}
.view-catalog.view-display-id-block_front .field--name-field-ikonka,
.view-catalog.view-display-id-page .field--name-field-ikonka {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  width: 60px;
  height: 60px;
  background: #f8fafc;
  transition: color var(--transition-base);
}
.view-catalog.view-display-id-block_front .field--name-taxonomy-term-title a,
.view-catalog.view-display-id-page .field--name-taxonomy-term-title a {
  font-weight: 700;
  font-size: var(--font-size-xl);
  line-height: 133%;
  letter-spacing: -0.01em;
  color: var(--bs-dark);
  text-decoration: none;
  transition: color var(--transition-base);
}
@media screen and (max-width: 767px) {
  .view-catalog.view-display-id-block_front .field--name-taxonomy-term-title a,
  .view-catalog.view-display-id-page .field--name-taxonomy-term-title a {
    font-size: 20px;
  }
}
.view-catalog.view-display-id-block_front .field--name-field-kratkoe-opisanie,
.view-catalog.view-display-id-page .field--name-field-kratkoe-opisanie {
  margin-bottom: 15px;
}
.view-catalog.view-display-id-block_front .field--name-field-kratkoe-opisanie p,
.view-catalog.view-display-id-page .field--name-field-kratkoe-opisanie p {
  margin-bottom: 0;
  font-weight: 400;
  font-size: var(--font-size-xs);
  line-height: 143%;
  transition: color var(--transition-base);
}
.view-catalog.view-display-id-block_front .field--name-field-podrobnee-o-programmah,
.view-catalog.view-display-id-page .field--name-field-podrobnee-o-programmah {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #dce2eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 700;
  font-size: var(--font-size-xs);
  line-height: 143%;
  color: var(--bs-primary);
  transition: color var(--transition-base);
}
.view-catalog.view-display-id-block_front .field--name-field-podrobnee-o-programmah::after,
.view-catalog.view-display-id-page .field--name-field-podrobnee-o-programmah::after {
  content: '';
  display: block;
  background-color: #f8fafc;
  width: 40px;
  height: 40px;
  border-radius: 30px;
  background-image: url('/sites/all/themes/vesta_theme/image/btn-arrow-secondary.svg');
  background-repeat: no-repeat;
  background-position: center;
}
.wrapper_order_of_receipt {
  position: relative;
  margin-bottom: 60px;
}
@media screen and (max-width: 991px) {
  .wrapper_order_of_receipt {
    margin-bottom: 40px;
  }
}
.wrapper_order_of_receipt .wrapper_order_of_receipt-decor {
  position: absolute;
  left: 0px;
  right: 0;
  bottom: -65px;
  width: 1971px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1199px) {
  .wrapper_order_of_receipt .wrapper_order_of_receipt-decor {
    display: none;
  }
}
.node--type-kak-nachat-obuchenie {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 991px) {
  .node--type-kak-nachat-obuchenie {
    flex-direction: column;
  }
}
.node--type-kak-nachat-obuchenie .poryadok-postupleniya-right img {
  border-radius: 30px;
}
.view-poryadok-postupleniya .view-header,
.node--type-kak-nachat-obuchenie .view-header {
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .view-poryadok-postupleniya .view-header,
  .node--type-kak-nachat-obuchenie .view-header {
    margin-bottom: 20px;
  }
}
.view-poryadok-postupleniya .view-header .suptitle,
.node--type-kak-nachat-obuchenie .view-header .suptitle {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .view-poryadok-postupleniya .view-header .suptitle,
  .node--type-kak-nachat-obuchenie .view-header .suptitle {
    margin-bottom: 20px;
  }
}
.view-poryadok-postupleniya .view-header .title,
.node--type-kak-nachat-obuchenie .view-header .title {
  margin-bottom: 20px;
}
.view-poryadok-postupleniya .view-header .catalog-description,
.node--type-kak-nachat-obuchenie .view-header .catalog-description {
  max-width: 570px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  font-size: var(--font-size-md);
  line-height: 163%;
  text-align: center;
}
.view-poryadok-postupleniya .node--type-kak-nachat-obuchenie,
.node--type-kak-nachat-obuchenie .node--type-kak-nachat-obuchenie {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 991px) {
  .view-poryadok-postupleniya .node--type-kak-nachat-obuchenie,
  .node--type-kak-nachat-obuchenie .node--type-kak-nachat-obuchenie {
    flex-direction: column;
  }
}
.view-poryadok-postupleniya .field--name-field-podacha-dokumentov,
.node--type-kak-nachat-obuchenie .field--name-field-podacha-dokumentov {
  margin-bottom: 30px;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #dce2eb;
}
@media screen and (max-width: 767px) {
  .view-poryadok-postupleniya .field--name-field-podacha-dokumentov,
  .node--type-kak-nachat-obuchenie .field--name-field-podacha-dokumentov {
    margin-bottom: 20px;
  }
}
.view-poryadok-postupleniya .field--name-field-podacha-dokumentov > .field__item,
.node--type-kak-nachat-obuchenie .field--name-field-podacha-dokumentov > .field__item {
  counter-increment: step;
  position: relative;
  padding-left: 60px;
}
@media screen and (max-width: 576px) {
  .view-poryadok-postupleniya .field--name-field-podacha-dokumentov > .field__item,
  .node--type-kak-nachat-obuchenie .field--name-field-podacha-dokumentov > .field__item {
    padding-left: 42px;
  }
}
.view-poryadok-postupleniya .field--name-field-podacha-dokumentov > .field__item::before,
.node--type-kak-nachat-obuchenie .field--name-field-podacha-dokumentov > .field__item::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 30px;
  padding: 10px;
  width: 40px;
  height: 40px;
  background: var(--bs-white);
  font-weight: 700;
  font-size: var(--font-size-xs);
  line-height: 143%;
  color: var(--bs-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 576px) {
  .view-poryadok-postupleniya .field--name-field-podacha-dokumentov > .field__item::before,
  .node--type-kak-nachat-obuchenie .field--name-field-podacha-dokumentov > .field__item::before {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
}
.view-poryadok-postupleniya .field--name-field-podacha-dokumentov > .field__item:last-child::before,
.node--type-kak-nachat-obuchenie .field--name-field-podacha-dokumentov > .field__item:last-child::before {
  content: '';
  background-image: url('/sites/all/themes/vesta_theme/image/successful-enrollment.svg');
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  width: 40px;
  height: 40px;
  background-color: var(--bs-primary);
}
@media screen and (max-width: 576px) {
  .view-poryadok-postupleniya .field--name-field-podacha-dokumentov > .field__item:last-child::before,
  .node--type-kak-nachat-obuchenie .field--name-field-podacha-dokumentov > .field__item:last-child::before {
    width: 30px;
    height: 30px;
  }
}
.view-poryadok-postupleniya .submission-of-documents,
.node--type-kak-nachat-obuchenie .submission-of-documents {
  width: 770px;
  flex-shrink: 0;
  padding: 30px;
  background-color: #f5f8fa;
  box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.03);
  background: #f5f8fa;
  border: 1px solid #f8fafc;
  border-radius: 30px;
}
@media screen and (max-width: 1199px) {
  .view-poryadok-postupleniya .submission-of-documents,
  .node--type-kak-nachat-obuchenie .submission-of-documents {
    max-width: 100%;
    width: 100%;
    flex-shrink: 1;
  }
}
@media screen and (max-width: 767px) {
  .view-poryadok-postupleniya .submission-of-documents,
  .node--type-kak-nachat-obuchenie .submission-of-documents {
    padding: 25px 20px;
  }
}
.view-poryadok-postupleniya .submission-of-documents .field--name-node-link a,
.node--type-kak-nachat-obuchenie .submission-of-documents .field--name-node-link a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-weight: 700;
  font-size: 14px;
  line-height: 143%;
  color: var(--bs-primary);
  transition: color var(--transition-base);
  text-decoration: none;
}
.view-poryadok-postupleniya .submission-of-documents .field--name-node-link a::after,
.node--type-kak-nachat-obuchenie .submission-of-documents .field--name-node-link a::after {
  content: '';
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8fafc;
  border-radius: 30px;
  width: 40px;
  height: 40px;
  background-image: url('/sites/all/themes/vesta_theme/image/btn-arrow-secondary.svg');
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}
.view-poryadok-postupleniya .submission-of-documents .field--name-node-link a:hover,
.node--type-kak-nachat-obuchenie .submission-of-documents .field--name-node-link a:hover {
  color: var(--bs-primary-hover);
}
.view-poryadok-postupleniya .submission-of-documents .submission-of-documents__info,
.node--type-kak-nachat-obuchenie .submission-of-documents .submission-of-documents__info {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 400;
  font-size: var(--font-size-2xs);
  line-height: 167%;
  color: var(--bs-primary-hover);
}
.view-poryadok-postupleniya .submission-of-documents .submission-of-documents__info::before,
.node--type-kak-nachat-obuchenie .submission-of-documents .submission-of-documents__info::before {
  content: '';
  background-image: url('/sites/all/themes/vesta_theme/image/info.svg');
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  width: 10px;
  height: 10px;
}
.view-poryadok-postupleniya .submission-of-documents .field--name-node-title,
.node--type-kak-nachat-obuchenie .submission-of-documents .field--name-node-title {
  margin-bottom: 30px;
}
.view-poryadok-postupleniya .submission-of-documents .field--name-node-title h3,
.node--type-kak-nachat-obuchenie .submission-of-documents .field--name-node-title h3 {
  margin-bottom: 0;
  font-weight: 700;
  font-size: var(--font-size-xl);
  line-height: 133%;
  letter-spacing: -0.01em;
  color: var(--bs-dark);
}
.view-poryadok-postupleniya .submission-of-documents .field--name-field-zagolovok,
.node--type-kak-nachat-obuchenie .submission-of-documents .field--name-field-zagolovok {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: var(--font-size-sm);
  line-height: 125%;
  letter-spacing: -0.01em;
  color: var(--bs-dark);
}
.view-poryadok-postupleniya .submission-of-documents .field--name-field-opisanie,
.node--type-kak-nachat-obuchenie .submission-of-documents .field--name-field-opisanie {
  font-weight: 400;
  font-size: var(--font-size-xs);
  line-height: 143%;
}
.view-poryadok-postupleniya .submission-of-documents .field--name-field-opisanie a,
.node--type-kak-nachat-obuchenie .submission-of-documents .field--name-field-opisanie a {
  font-weight: 700;
  color: var(--bs-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}
.view-poryadok-postupleniya .submission-of-documents .field--name-field-opisanie a:hover,
.node--type-kak-nachat-obuchenie .submission-of-documents .field--name-field-opisanie a:hover {
  color: var(--bs-primary-hover);
}
.view-poryadok-postupleniya .submission-of-documents .field--name-field-opisanie ul,
.node--type-kak-nachat-obuchenie .submission-of-documents .field--name-field-opisanie ul {
  padding-left: 23px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.view-poryadok-postupleniya .poryadok-postupleniya-right,
.node--type-kak-nachat-obuchenie .poryadok-postupleniya-right {
  min-width: 370px;
}
@media screen and (max-width: 1199px) {
  .view-poryadok-postupleniya .poryadok-postupleniya-right,
  .node--type-kak-nachat-obuchenie .poryadok-postupleniya-right {
    max-width: 100%;
    flex-shrink: 1;
    min-width: unset;
  }
}
@media screen and (max-width: 991px) {
  .view-poryadok-postupleniya .poryadok-postupleniya-right,
  .node--type-kak-nachat-obuchenie .poryadok-postupleniya-right {
    display: flex;
    align-items: center;
    gap: 20px;
  }
}
@media (max-width: 608px) {
  .view-poryadok-postupleniya .poryadok-postupleniya-right,
  .node--type-kak-nachat-obuchenie .poryadok-postupleniya-right {
    display: block;
  }
}
.view-poryadok-postupleniya .field--name-field-image,
.node--type-kak-nachat-obuchenie .field--name-field-image {
  margin-bottom: 30px;
}
@media screen and (max-width: 991px) {
  .view-poryadok-postupleniya .field--name-field-image,
  .node--type-kak-nachat-obuchenie .field--name-field-image {
    display: flex;
    align-items: center;
    margin-bottom: 0;
  }
}
@media (max-width: 608px) {
  .view-poryadok-postupleniya .field--name-field-image,
  .node--type-kak-nachat-obuchenie .field--name-field-image {
    margin-bottom: 10px;
  }
}
.view-poryadok-postupleniya .field--name-field-image a,
.node--type-kak-nachat-obuchenie .field--name-field-image a {
  display: block;
  height: 509px;
  overflow: hidden;
  border-radius: 30px;
}
@media screen and (max-width: 991px) {
  .view-poryadok-postupleniya .field--name-field-image a,
  .node--type-kak-nachat-obuchenie .field--name-field-image a {
    height: 300px;
  }
}
@media (max-width: 608px) {
  .view-poryadok-postupleniya .field--name-field-image a,
  .node--type-kak-nachat-obuchenie .field--name-field-image a {
    width: 100%;
  }
}
.view-poryadok-postupleniya .field--name-field-image a img,
.node--type-kak-nachat-obuchenie .field--name-field-image a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.view-poryadok-postupleniya .translation-unit,
.node--type-kak-nachat-obuchenie .translation-unit {
  box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.1);
  background: #0f91ed;
  border-radius: 30px;
  padding: 30px;
}
.view-poryadok-postupleniya .translation-unit .field--name-field-zagolovok-perevoda,
.node--type-kak-nachat-obuchenie .translation-unit .field--name-field-zagolovok-perevoda {
  margin-bottom: 20px;
  max-width: 310px;
  font-weight: 700;
  font-size: var(--font-size-xl);
  line-height: 117%;
  letter-spacing: -0.01em;
  color: var(--bs-white);
}
.view-poryadok-postupleniya .translation-unit .field--name-field-opisanie-perevoda,
.node--type-kak-nachat-obuchenie .translation-unit .field--name-field-opisanie-perevoda {
  margin-bottom: 30px;
  font-weight: 400;
  font-size: var(--font-size-xs);
  line-height: 143%;
  color: var(--bs-white);
}
.view-poryadok-postupleniya .translation-unit .field--name-field-opisanie-perevoda a,
.node--type-kak-nachat-obuchenie .translation-unit .field--name-field-opisanie-perevoda a {
  color: var(--bs-white);
  text-decoration: underline;
  text-decoration-skip-ink: none;
  transition: var(--transition-base);
}
.view-poryadok-postupleniya .translation-unit .field--name-field-opisanie-perevoda a:hover,
.node--type-kak-nachat-obuchenie .translation-unit .field--name-field-opisanie-perevoda a:hover {
  color: #e7e7e7;
}
.view-poryadok-postupleniya .translation-unit .field--name-field-ssylka-perevoda a,
.node--type-kak-nachat-obuchenie .translation-unit .field--name-field-ssylka-perevoda a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  padding: 15px 50px 15px 30px;
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.1), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 30px;
  transition: background-color var(--transition-base);
  font-weight: 700;
  font-size: var(--font-size-xs);
  line-height: 143%;
  color: var(--bs-primary);
  text-decoration: none;
  border: none;
  width: 100%;
  text-align: center;
}
.view-poryadok-postupleniya .translation-unit .field--name-field-ssylka-perevoda a:hover,
.node--type-kak-nachat-obuchenie .translation-unit .field--name-field-ssylka-perevoda a:hover {
  background-color: #e7e7e7;
  color: var(--bs-primary);
}
.view-poryadok-postupleniya .translation-unit .field--name-field-ssylka-perevoda a::after,
.node--type-kak-nachat-obuchenie .translation-unit .field--name-field-ssylka-perevoda a::after {
  content: '';
  display: block;
  width: 12px;
  height: 11px;
  background-image: url('/sites/all/themes/vesta_theme/image/btn-arrow-secondary.svg');
  background-repeat: no-repeat;
  background-position: center;
}
.wrapper_gallery {
  margin-top: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 991px) {
  .wrapper_gallery {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .wrapper_gallery {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.view-fotogalereya .view-header {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .view-fotogalereya .view-header {
    margin-bottom: 20px;
  }
}
.view-fotogalereya .view-header h2 {
  margin: 0;
  text-align: center;
}
.view-fotogalereya .item-list ul {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 30px;
  column-gap: 28px;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 991px) {
  .view-fotogalereya .item-list ul {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 15px;
    column-gap: 15px;
  }
}
@media screen and (max-width: 576px) {
  .view-fotogalereya .item-list ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.view-fotogalereya .item-list li {
  max-width: 270px;
  height: 238px;
  overflow: hidden;
  border-radius: 15px;
}
@media screen and (max-width: 991px) {
  .view-fotogalereya .item-list li {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .view-fotogalereya .item-list li {
    height: 174px;
  }
}
.view-fotogalereya .item-list li a {
  display: block;
  height: 100%;
}
.view-fotogalereya .item-list li a img {
  transition: transform var(--transition-base);
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.view-fotogalereya .item-list li a:hover img {
  transform: scale(1.1);
}
.view-fotogalereya .view-footer {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .view-fotogalereya .view-footer {
    margin-top: 20px;
  }
}
.wrapper_consultancy_by_receiving {
  position: relative;
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (max-width: 991px) {
  .wrapper_consultancy_by_receiving {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .wrapper_consultancy_by_receiving {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.wrapper_consultancy_by_receiving .block-content--type-konsultaciya-po-postupleniyu {
  display: flex;
  justify-content: center;
}
.wrapper_consultancy_by_receiving .field--name-field-fonovoe-izobrazhenie {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.wrapper_consultancy_by_receiving .field--name-field-fonovoe-izobrazhenie img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wrapper_consultancy_by_receiving .contextual-region {
  position: static;
}
.wrapper_consultancy_by_receiving .consultancy_by_receiving-left {
  max-width: 460px;
}
.wrapper_consultancy_by_receiving .consultancy_by_receiving-left .field--name-field-fonovoe-izobrazhenie {
  display: none;
}
@media (max-width: 864px) {
  .wrapper_consultancy_by_receiving .consultancy_by_receiving-left {
    max-width: 100%;
  }
}
.wrapper_consultancy_by_receiving .consultancy_by_receiving-right {
  max-width: 520px;
}
@media screen and (max-width: 991px) {
  .wrapper_consultancy_by_receiving .consultancy_by_receiving-right {
    max-width: 100%;
    width: 100%;
  }
}
.wrapper_consultancy_by_receiving .consultancy_by_receiving-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding-top: 48px;
  padding-bottom: 44px;
  padding-left: 40px;
  padding-right: 40px;
  max-width: 1200px;
  width: 100%;
  margin-left: 15px;
  margin-right: 15px;
  border-radius: 30px;
  background: #f8fafc;
}
@media screen and (max-width: 991px) {
  .wrapper_consultancy_by_receiving .consultancy_by_receiving-content {
    margin-left: 15px;
    margin-right: 15px;
    padding: 25px;
  }
}
@media (max-width: 864px) {
  .wrapper_consultancy_by_receiving .consultancy_by_receiving-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
.wrapper_consultancy_by_receiving .consultancy_by_receiving-contact {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 20px;
}
.wrapper_consultancy_by_receiving .consultancy_by_receiving-contact:hover span {
  color: var(--bs-primary-hover);
}
.wrapper_consultancy_by_receiving .consultancy_by_receiving-contact p {
  margin-bottom: 6px;
  font-weight: 500;
  font-size: var(--font-size-2xs);
  line-height: 167%;
  color: #6b7280;
}
.wrapper_consultancy_by_receiving .consultancy_by_receiving-contact span {
  transition: color var(--transition-base);
  font-weight: 700;
  font-size: var(--font-size-sm);
  line-height: 125%;
  letter-spacing: -0.01em;
  color: #6b7280;
}
.wrapper_consultancy_by_receiving .consultancy_by_receiving-contact__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 26px;
  background-color: #fff;
}
.wrapper_consultancy_by_receiving .consultancy_by_receiving-tg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: var(--bs-primary);
  border-radius: 16px;
  transition: background-color var(--transition-base);
}
.wrapper_consultancy_by_receiving .consultancy_by_receiving-tg:hover {
  background-color: var(--bs-primary-hover);
}
.wrapper_consultancy_by_receiving .field--name-field-podpis-k-zagolovku {
  display: inline-block;
  font-weight: 500;
  font-size: var(--font-size-2xs);
  line-height: 133%;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid #9ca3af;
  border-radius: 20px;
  margin-bottom: 30px;
}
.wrapper_consultancy_by_receiving .field--name-block-description {
  margin-bottom: 20px;
}
.wrapper_consultancy_by_receiving .field--name-block-description h2 {
  margin-bottom: 0;
  font-weight: 700;
  font-size: var(--font-size-2xl);
  line-height: 111%;
  letter-spacing: -0.01em;
  color: var(--bs-dark);
}
.wrapper_consultancy_by_receiving .field--name-body {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: var(--font-size-md);
  line-height: 163%;
  color: #6b7280;
}
.wrapper_consultancy_by_receiving .field--name-body p {
  margin-bottom: 0;
}
.wrapper_consultancy_by_receiving .webform-submission-poluchenie-konsultacii-form .alert-error {
  background-color: #6b7280;
  border: 1px solid var(--bs-white);
  color: var(--bs-white);
}
.wrapper_consultancy_by_receiving .webform-submission-poluchenie-konsultacii-form .alert-error a {
  color: var(--bs-dark-900);
  text-decoration: none;
  transition: color var(--transition-base);
}
.wrapper_consultancy_by_receiving .webform-submission-poluchenie-konsultacii-form .alert-error a:hover {
  color: var(--bs-primary);
}
.wrapper_consultancy_by_receiving .webform-submission-poluchenie-konsultacii-form .alert-error .visually-hidden {
  color: var(--bs-dark-900);
}
.wrapper_consultancy_by_receiving .webform-submission-poluchenie-konsultacii-form .alert-error .btn-close {
  filter: invert(1);
}
.wrapper_consultancy_by_receiving .webform-submission-poluchenie-konsultacii-form .webform-button--submit {
  width: 100%;
}
.wrapper_consultancy_by_receiving .webform-submission-poluchenie-konsultacii-form .webform-button--submit[disabled] {
  border-color: var(--bs-primary);
  background-color: var(--bs-primary);
}
.wrapper_consultancy_by_receiving .webform-submission-poluchenie-konsultacii-form .opytnyh-speciali-form {
  margin-top: 28px;
  margin-bottom: 32px;
}
@media screen and (max-width: 576px) {
  .wrapper_consultancy_by_receiving .webform-submission-poluchenie-konsultacii-form .opytnyh-speciali-form {
    padding-left: 0;
  }
}
.wrapper_consultancy_by_receiving .webform-submission-poluchenie-konsultacii-form .opytnyh-speciali-form__customcheckbox {
  border: 1px solid #9ca3af;
}
.wrapper_consultancy_by_receiving .webform-submission-poluchenie-konsultacii-form .opytnyh-speciali-form .webform-element-description {
  font-weight: 400;
  font-size: 10px;
  line-height: 150%;
  color: #6b7280;
}
.wrapper_consultancy_by_receiving .webform-submission-poluchenie-konsultacii-form .opytnyh-speciali-form .form-item--error-message {
  margin-bottom: 4px;
}
.wrapper_consultancy_by_receiving .webform-submission-poluchenie-konsultacii-form label.form-required {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: var(--font-size-xs);
  line-height: 143%;
  color: var(--bs-dark);
}
.wrapper_consultancy_by_receiving .webform-submission-poluchenie-konsultacii-form .form-control {
  border: 1px solid #dce2eb;
  border-radius: 16px;
  padding: 8px 20px;
  width: 100%;
  height: 48px;
  font-size: var(--font-size-2xs);
  background: #f8fafc;
}
.wrapper_consultancy_by_receiving .webform-submission-poluchenie-konsultacii-form .form-control::placeholder {
  font-weight: 400;
  font-size: var(--font-size-2xs);
  color: #9ca3af;
}
.wrapper_consultancy_by_receiving .webform-submission-poluchenie-konsultacii-form .form-control:hover,
.wrapper_consultancy_by_receiving .webform-submission-poluchenie-konsultacii-form .form-control:focus {
  border: 1px solid var(--bs-primary);
}
@media (max-width: 864px) {
  .wrapper_consultancy_by_receiving .webform-submission-poluchenie-konsultacii-form .form-item {
    margin-bottom: 10px;
  }
}
.wrapper_consultancy_by_receiving .webform-submission-poluchenie-konsultacii-form .form-item--error-message {
  margin-top: 4px;
  display: flex;
  justify-content: center;
  font-size: var(--font-size-2xs);
}
.wrapper_consultancy_by_receiving .webform-submission-poluchenie-konsultacii-form .form-item--error-message strong {
  font-weight: 400;
}
.footer {
  padding-top: 40px;
  padding-bottom: 20px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer .footer__logo {
  display: block;
  margin-bottom: 20px;
}
.footer .footer__logo img {
  width: 107px;
}
.footer .footer__logo-text {
  max-width: 133px;
  font-weight: 700;
  font-size: var(--font-size-sm);
  line-height: 125%;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  color: var(--bs-dark);
}
.footer .footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.footer .footer__nav a {
  padding: 0;
  text-decoration: none;
  font-weight: 500;
  font-size: var(--font-size-2xs);
  line-height: 133%;
  color: var(--bs-body);
  transition: color var(--transition-base);
}
.footer .footer__nav a::after {
  display: none;
}
.footer .footer__nav a:hover {
  color: var(--bs-primary-hover);
}
.footer .nav .dropdown-menu {
  display: none !important;
  visibility: hidden;
}
.footer .footer__nav-title {
  font-weight: 700;
  font-size: var(--font-size-2xs);
  line-height: 167%;
}
.footer .footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer .footer__contact a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 700;
  font-size: var(--font-size-xs);
  line-height: 143%;
  color: #6b7280;
  text-decoration: none;
}
.footer .footer__telegram {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: var(--bs-primary);
  border-radius: 16px;
  transition: background-color var(--transition-base);
}
.footer .footer__telegram:hover {
  background-color: var(--bs-primary-hover);
}
.footer .footer__label {
  font-weight: 500;
  font-size: var(--font-size-2xs);
  line-height: 167%;
  color: #6b7280;
}
.footer .footer__bottom {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .footer__bottom .footer__copyright {
  margin-bottom: 0;
  font-weight: 500;
  font-size: var(--font-size-2xs);
  line-height: 133%;
}
.footer .footer__bottom .footer__copyright span {
  font-weight: 700;
}
.footer .footer__bottom a {
  font-weight: 500;
  font-size: var(--font-size-2xs);
  line-height: 133%;
  color: var(--bs-body);
  text-decoration: none;
  transition: color var(--transition-base);
}
.footer .footer__bottom a:hover {
  color: var(--bs-primary-hover);
}
.view-tovary .view-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media screen and (max-width: 991px) {
  .view-tovary .view-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .view-tovary .view-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .view-tovary .view-content {
    gap: 10px;
  }
}
.product-item-teaser {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  border: 1px solid transparent;
  transition: border var(--transition-base);
}
.product-item-teaser__image {
  position: relative;
  overflow: hidden;
  height: 250px;
}
@media screen and (max-width: 767px) {
  .product-item-teaser__image {
    height: 200px;
  }
}
@media screen and (max-width: 576px) {
  .product-item-teaser__image {
    height: 160px;
  }
}
.product-item-teaser__image .blazy--field-image-product-view,
.product-item-teaser__image a,
.product-item-teaser__image .media--image,
.product-item-teaser__image .field__item {
  display: block;
  height: 100%;
}
.product-item-teaser__image img {
  width: 100%;
  height: 100% !important;
  transition: transform var(--transition-base);
  object-fit: cover;
  margin-left: -1;
  margin-right: -1;
}
@media screen and (max-width: 991px) {
  .product-item-teaser__image img {
    width: 100%;
  }
}
.product-item-teaser__image:hover img {
  transform: scale(1.1);
}
.product-item-teaser .field--name-title {
  margin-bottom: 10px;
}
.product-item-teaser__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 10px 20px;
}
@media screen and (max-width: 576px) {
  .product-item-teaser__content {
    padding: 10px;
  }
}
.product-item-teaser__wrapper {
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.product-item-teaser__wrapper a {
  font-weight: 500;
  line-height: 133%;
  color: var(--bs-body);
  transition: color var(--transition-base);
  text-decoration: none;
  font-size: var(--font-size-md);
}
@media screen and (max-width: 767px) {
  .product-item-teaser__wrapper a {
    font-size: 16px;
  }
}
@media (max-width: 400px) {
  .product-item-teaser__wrapper a {
    font-size: 14px;
  }
}
@media (max-width: 356px) {
  .product-item-teaser__wrapper a {
    font-size: 12px;
  }
}
.product-item-teaser__wrapper:hover a {
  color: var(--bs-primary-hover);
}
.product-item-teaser__footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-full__content {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .product-full__content {
    flex-direction: column;
  }
}
.product-full .photoswipe-gallery {
  width: 450px;
  height: 450px;
}
@media screen and (max-width: 991px) {
  .product-full .photoswipe-gallery {
    width: 350px;
    height: 373px;
  }
}
@media screen and (max-width: 991px) {
  .product-full .photoswipe-gallery {
    width: 100%;
    height: 373px;
  }
}
.product-full .photoswipe-gallery a {
  display: block;
  overflow: hidden;
  height: 100%;
  border-radius: 15px;
}
.product-full .photoswipe-gallery a:hover img {
  transform: scale(1.1);
}
.product-full .photoswipe-gallery img {
  width: 100%;
  height: 100% !important;
  transition: transform var(--transition-base);
  object-fit: cover;
}
.product-full .field--name-dynamic-token-fieldcommerce-product-h1-tovara h1 {
  margin-bottom: 0;
  font-weight: 700;
  font-size: var(--font-size-2xl);
  line-height: 111%;
  letter-spacing: -0.01em;
  color: var(--bs-dark);
}
.product-full .field--name-field-nomer {
  margin-bottom: 0;
  font-weight: 700;
  font-size: var(--font-size-lg);
  line-height: 133%;
  letter-spacing: -0.01em;
  color: var(--bs-dark);
}
.product-full .field--name-body {
  font-weight: 500;
  font-size: var(--font-size-md);
  line-height: 150%;
}
.product-full .field--name-body p {
  margin-bottom: 0;
}
.product-full .btn-primary {
  margin-top: 20px;
  max-width: 270px;
}
.product-full .product-full__footer h3 {
  font-weight: 700;
  font-size: var(--font-size-xl);
  line-height: 133%;
  letter-spacing: -0.01em;
  color: var(--bs-dark);
  text-decoration: none;
}
.product-full .product-full__description {
  margin-top: 20px;
  border: 1px solid #9ca3af;
  padding: 16px 16px 16px 16px;
  border-radius: 20px;
}
.product-full .product-full__profili {
  margin-top: 40px;
}
.product-full .product-full__profili h2 {
  margin-bottom: 20px;
}
.product-full .field--name-field-profili {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media screen and (max-width: 991px) {
  .product-full .field--name-field-profili {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .product-full .field--name-field-profili {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .product-full .field--name-field-profili {
    gap: 10px;
  }
}
.contacts__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 576px) {
  .contacts__header {
    flex-direction: column;
  }
}
.contacts__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 35px;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 991px) {
  .contacts__content {
    gap: 20px;
  }
}
.contacts__maps {
  display: flex;
  align-items: center;
}
.contacts .socials-contacts__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: var(--bs-primary);
  border-radius: 16px;
  transition: background-color var(--transition-base);
}
.contacts .socials-contacts__item:hover {
  background-color: var(--bs-primary-hover);
}
.contacts-item__title {
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: var(--font-size-lg);
}
.contacts-item a {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  transition: color var(--transition-base), background-color var(--transition-base);
  color: var(--bs-body);
}
.contacts-item a:hover {
  color: var(--bs-primary-hover);
}
.contacts-item p {
  margin: 0;
}
