/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox {
  position: relative;
}
.custom-checkbox.error span {
  color: red !important;
}
.custom-checkbox.error span:before {
  border-color: red;
}
.custom-checkbox.done span {
  color: var(--cl-k) !important;
}
.custom-checkbox.done span:before {
  border-color: var(--br-k);
}
.custom-checkbox .wpcf7-not-valid-tip {
  display: none;
}
.custom-checkbox input {
  position: absolute;
  visibility: hidden;
  z-index: -1;
  opacity: 0;
  inset: 0;
}
.custom-checkbox span {
  margin: 0 !important;
  cursor: pointer;
  position: relative;
  z-index: 2;
  display: inline-flex;
  gap: 4px;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 100%;
  color: var(--cl-b);
  font-family: var(--font-main);
  font-size: 16px !important;
  font-style: normal;
  font-weight: 400;
  line-height: 110% !important;
}
.custom-checkbox span::before {
  cursor: pointer;
  content: "\e905";
  font-size: 10px;
  color: var(--cl-a);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin: 2px;
  flex-shrink: 0;
  flex-grow: 0;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  border: 1px solid #868686;
  border-radius: 3px;
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.custom-checkbox input:checked + span::before {
  border-color: var(--br-e);
  background-color: var(--bg-e);
}

.wpcf7-list-item {
  margin: 0;
}

.main-button {
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
  height: 4.3rem;
  padding: 1.2rem 6rem;
  border: 0.1rem solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-color: var(--cl-d);
  font-family: var(--font-main);
  text-align: center;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: var(--cl-a);
  transition: 0.3s ease-in-out;
}
.main-button:disabled {
  opacity: 0.6;
}
.main-button--transparent {
  border-color: var(--cl-a);
  background: transparent;
}
.main-button--green {
  background: var(--cl-i);
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: clamp(32px, 7.29vw, 5.5rem) auto 0;
}
.slider-controls.red .slider-btn {
  border-color: var(--cl-e);
  color: var(--cl-e);
}

.slider-btn {
  width: 4.8rem;
  height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: solid 0.1rem var(--cl-a);
  cursor: pointer;
  color: var(--cl-a);
}
.slider-btn.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.slider-btn svg {
  width: 3.2rem;
  height: 3.2rem;
}

[data-btn-modal] svg {
  pointer-events: none;
}

.modal {
  position: relative;
  margin: auto;
  transform: scale(0.8);
  display: none;
}
.modal::before {
  position: absolute;
  content: "";
  z-index: -1;
  pointer-events: none;
  inset: 0;
}
.modal [data-loader]::before {
  inset: -0.5rem;
}
.modal [data-loader=true]::before {
  opacity: 1;
}
.modal.active {
  transform: scale(1);
}
.modal__container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.modal .close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  right: 1.6rem;
  top: 1.6rem;
  width: 1.2rem;
  height: 1.2rem;
  transition: all 0.3s;
  color: var(--cl-a);
  cursor: pointer;
}
.modal .close:hover {
  opacity: 0.5;
}
.modal .close svg {
  pointer-events: none;
}

:root {
  --loader: #000;
  --loader-fade: rgba(0, 0, 0, 0.2);
  --loader-mid: rgba(0, 0, 0, 0.5);
  --loader-strong: rgba(0, 0, 0, 0.7);
}

[data-loader] {
  position: relative;
  z-index: 10;
}
[data-loader]::before, [data-loader]::after {
  content: "";
  position: absolute;
  z-index: 10;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}
[data-loader]::before {
  inset: -2px;
  background-color: rgba(255, 255, 255, 0.4);
}
[data-loader]::after {
  top: 50%;
  left: 50%;
  font-size: clamp(8px, 1vw, 12px);
  width: 1em;
  height: 1em;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  text-indent: -9999em;
  animation: mulShdSpin 1.1s infinite ease;
}

[data-loader=false]::before,
[data-loader=false]::after {
  opacity: 0;
}

@keyframes mulShdSpin {
  0%, 100% {
    box-shadow: 0em -2.6em 0em 0em var(--loader), 1.8em -1.8em 0 0em var(--loader-fade), 2.5em 0em 0 0em var(--loader-fade), 1.75em 1.75em 0 0em var(--loader-fade), 0em 2.5em 0 0em var(--loader-fade), -1.8em 1.8em 0 0em var(--loader-fade), -2.6em 0em 0 0em var(--loader-mid), -1.8em -1.8em 0 0em var(--loader-strong);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em var(--loader-strong), 1.8em -1.8em 0 0em var(--loader), 2.5em 0em 0 0em var(--loader-fade), 1.75em 1.75em 0 0em var(--loader-fade), 0em 2.5em 0 0em var(--loader-fade), -1.8em 1.8em 0 0em var(--loader-fade), -2.6em 0em 0 0em var(--loader-fade), -1.8em -1.8em 0 0em var(--loader-mid);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em var(--loader-mid), 1.8em -1.8em 0 0em var(--loader-strong), 2.5em 0em 0 0em var(--loader), 1.75em 1.75em 0 0em var(--loader-fade), 0em 2.5em 0 0em var(--loader-fade), -1.8em 1.8em 0 0em var(--loader-fade), -2.6em 0em 0 0em var(--loader-fade), -1.8em -1.8em 0 0em var(--loader-fade);
  }
}
:root {
  --select-height: clamp(17px, 1.3636vw, 2.4rem);
  --select-width: 100%;
  --select-min-height: clamp(17px, 1.3636vw, 2.4rem);
  --select-padding-horizontal: 0;
  --select-padding-vertical: 0;
  --select-border-radius: 0;
  --select-border-width: 0;
  --select-font-size: clamp(14px, 1.1364vw, 2rem);
  --select-line-height: 120%;
  --select-mob-padding-vertical: 0;
  --select-mob-padding-horizontal: 0;
  --select-background-color: transparent;
  --select-border-color: #e2e8f0;
  --select-border-color-hover: #cbd5e1;
  --select-border-color-focus: var(--cl-c);
  --select-text-color: var(--cl-a);
  --select-placeholder-color: rgba(250, 248, 248, 0.5);
  --select-background-hover: transparent;
  --select-background-focus: transparent;
  --select-shadow-focus: initial;
  --select-background-disabled: #f8fafc;
  --select-border-color-disabled: #e2e8f0;
  --select-text-color-disabled: #94a3b8;
  --select-opacity-disabled: 0.6;
  --select-option-selected-background: transparent;
  --select-option-selected-color: var(--cl-a);
  --select-option-selected-border: transparent;
  --select-option-selected-padding: 0;
  --select-option-selected-font-weight: 400;
  --select-option-selected-border-radius: 0;
  --select-option-selected-font-size: clamp(14px, 1.1364vw, 2rem);
  --select-option-selected-width: 30rem;
  --select-option-label-width: 26rem;
  --select-mob-option-selected-font-size: clamp(14px, 1.1364vw, 2rem);
  --select-mob-option-selected-padding: 0;
  --select-remove-button-size: 1.6rem;
  --select-remove-button-color: #64748b;
  --select-remove-button-hover-color: #ef4444;
  --select-remove-button-hover-background: rgba(100, 116, 139, .2);
  --select-arrow-size: 2.2rem;
  --select-arrow-color: var(--cl-a);
  --select-arrow-hover-color: #64748b;
  --select-dropdown-background: var(--cl-e);
  --select-dropdown-border-color: var(--cl-d);
  --select-dropdown-shadow: 0 1rem 3rem rgba(221, 218, 218, 0.1), 0 0.4rem 0.6rem rgba(221, 218, 218, 0.15);
  --select-dropdown-border-radius: 0.8rem;
  --select-dropdown-max-height: 20rem;
  --select-dropdown-z-index: 50;
  --select-dropdown-top: 0.4rem;
  --select-option-padding: 1.2rem 1.6rem;
  --select-option-font-size: 1.4rem;
  --select-option-color: var(--cl-a);
  --select-option-hover-background: var(--cl-d);
  --select-option-hover-color: var(--cl-a);
  --select-option-active-background: var(--cl-c);
  --select-option-active-color: #ffffff;
  --select-option-disabled-color: #94a3b8;
  --select-option-disabled-background: #f8fafc;
  --select-mob-option-padding: 1.2rem 1.6rem;
  --select-mob-option-font-size: 1.4rem;
  --select-transition-duration: 0.2s;
  --select-transition-timing: cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-select {
  position: relative;
  width: var(--select-width);
  font-family: inherit;
  text-align: left;
}
.custom-select input[type=hidden] {
  display: none;
}
.custom-select .select-field {
  display: flex;
  align-items: center;
  min-height: var(--select-min-height);
  padding: var(--select-padding-vertical) var(--select-padding-horizontal);
  background-color: var(--select-background-color);
  border: var(--select-border-width) solid var(--select-border-color);
  border-radius: var(--select-border-radius);
  cursor: pointer;
  transition: all var(--select-transition-duration) var(--select-transition-timing);
}
.custom-select .select-field:hover:not(.disabled) {
  background-color: var(--select-background-hover);
  border-color: var(--select-border-color-hover);
}
.custom-select .select-field:hover:not(.disabled) .arrow-down {
  color: var(--select-arrow-hover-color);
}
.custom-select .select-field:focus-within:not(.disabled) {
  background-color: var(--select-background-focus);
  border-color: var(--select-border-color-focus);
  box-shadow: var(--select-shadow-focus);
  outline: none;
}
.custom-select .select-field.active:not(.disabled) {
  border-color: var(--select-border-color-focus);
  box-shadow: var(--select-shadow-focus);
}
.custom-select .select-field.active:not(.disabled) .arrow-down {
  transform: scale(-1);
}
.custom-select .select-field.disabled {
  background-color: var(--select-background-disabled);
  border-color: var(--select-border-color-disabled);
  cursor: not-allowed;
  opacity: var(--select-opacity-disabled);
}
.custom-select .select-field.disabled .arrow-down {
  cursor: not-allowed;
}
.custom-select .selected-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  flex: 1;
  min-width: 0;
}
.custom-select .selected-options .placeholder {
  color: var(--select-placeholder-color);
  font-size: var(--select-font-size);
  line-height: var(--select-line-height);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.custom-select .selected-option {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: var(--select-option-selected-padding);
  background-color: var(--select-option-selected-background);
  color: var(--select-option-selected-color);
  border: var(--select-border-width) solid var(--select-option-selected-border);
  border-radius: var(--select-option-selected-border-radius);
  font-size: var(--select-option-selected-font-size);
  text-transform: var(--select-option-selected-text-transform);
  font-weight: var(--select-option-selected-font-weight);
  line-height: 1.2;
  max-width: var(--select-option-selected-width);
}
.custom-select .selected-option .option-label {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: var(--select-option-label-width);
}
.custom-select .selected-option i.sprite {
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  margin-right: 0.4rem;
}
.custom-select .selected-option .remove-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--select-remove-button-size);
  height: var(--select-remove-button-size);
  color: var(--select-remove-button-color);
  background: none;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--select-transition-duration) var(--select-transition-timing);
  flex-shrink: 0;
}
.custom-select .selected-option .remove-btn svg {
  width: 1.2rem;
  height: 1.2rem;
}
.custom-select .selected-option .remove-btn:hover {
  color: var(--select-remove-button-hover-color);
  background-color: var(--select-remove-button-hover-background);
}
.custom-select .arrow-down {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--select-arrow-size);
  height: var(--select-arrow-size);
  color: var(--select-arrow-color);
  margin-left: 0.8rem;
  transition: all var(--select-transition-duration) var(--select-transition-timing);
  flex-shrink: 0;
}
.custom-select .arrow-down svg {
  width: 100%;
  height: 100%;
}
.custom-select .options-container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: var(--select-dropdown-z-index);
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: var(--select-dropdown-background);
  border: var(--select-border-width) solid var(--select-dropdown-border-color);
  border-radius: var(--select-dropdown-border-radius);
  box-shadow: var(--select-dropdown-shadow);
  max-height: var(--select-dropdown-max-height);
  max-width: var(--select-dropdown-max-width);
  min-width: var(--select-dropdown-min-width);
  overflow-y: auto;
  overflow-x: hidden;
  margin-top: var(--select-dropdown-top);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.8rem);
  transition: all var(--select-transition-duration) var(--select-transition-timing);
}
.custom-select .options-container.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.custom-select .options-container::-webkit-scrollbar {
  width: 0.6rem;
}
.custom-select .options-container::-webkit-scrollbar-track {
  background: transparent;
}
.custom-select .options-container::-webkit-scrollbar-thumb {
  background: var(--select-border-color);
  border-radius: 0.3rem;
}
.custom-select .options-container::-webkit-scrollbar-thumb:hover {
  background: var(--select-border-color-hover);
}
.custom-select .option {
  display: flex;
  align-items: center;
  padding: var(--select-option-padding);
  color: var(--select-option-color);
  font-size: var(--select-option-font-size);
  line-height: var(--select-line-height);
  cursor: pointer;
  transition: all var(--select-transition-duration) var(--select-transition-timing);
  max-width: 100%;
}
.custom-select .option .option-text {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: var(--select-option-max-width);
}
.custom-select .option i.sprite {
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  margin-right: 0.8rem;
}
.custom-select .option:hover:not(.disabled):not(.active) {
  background-color: var(--select-option-hover-background);
  color: var(--select-option-hover-color);
}
.custom-select .option.active {
  pointer-events: none;
  background-color: var(--select-option-active-background);
  color: var(--select-option-active-color);
}
.custom-select .option.disabled {
  color: var(--select-option-disabled-color);
  background-color: var(--select-option-disabled-background);
  cursor: not-allowed;
  opacity: var(--select-opacity-disabled);
}
.custom-select .option:first-child {
  border-top-left-radius: calc(var(--select-dropdown-border-radius) - var(--select-border-width));
  border-top-right-radius: calc(var(--select-dropdown-border-radius) - var(--select-border-width));
}
.custom-select .option:last-child {
  border-bottom-left-radius: calc(var(--select-dropdown-border-radius) - var(--select-border-width));
  border-bottom-right-radius: calc(var(--select-dropdown-border-radius) - var(--select-border-width));
}
.custom-select[aria-expanded=true]:not(.disabled) .arrow-down {
  transform: scale(-1);
}
.custom-select[aria-expanded=true]:not(.disabled) .options-container {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.custom-select.selected .placeholder {
  display: none;
}
.custom-select:focus-visible {
  outline: 0.2rem solid var(--select-border-color-focus);
  outline-offset: 0.2rem;
}
.custom-select[aria-disabled=true] .select-field, .custom-select.disabled .select-field {
  background-color: var(--select-background-disabled);
  border-color: var(--select-border-color-disabled);
  cursor: not-allowed;
  opacity: var(--select-opacity-disabled);
}
.custom-select[aria-disabled=true] .select-field:hover, .custom-select.disabled .select-field:hover {
  background-color: var(--select-background-disabled);
  border-color: var(--select-border-color-disabled);
}
.custom-select[aria-disabled=true] .selected-option .remove-btn,
.custom-select[aria-disabled=true] .arrow-down, .custom-select.disabled .selected-option .remove-btn,
.custom-select.disabled .arrow-down {
  cursor: not-allowed;
  opacity: 0.5;
  pointer-events: none;
}
.custom-select[aria-disabled=true] .placeholder, .custom-select.disabled .placeholder {
  color: var(--select-text-color-disabled);
}

.custom-select.size-small {
  --select-height: 3.6rem;
  --select-min-height: 3.6rem;
  --select-padding-horizontal: 1.2rem;
  --select-padding-vertical: 0.8rem;
  --select-font-size: 1.3rem;
  --select-option-selected-font-size: 1.2rem;
  --select-option-font-size: 1.3rem;
  --select-dropdown-max-width: 25rem;
  --select-dropdown-min-width: 15rem;
  --select-option-max-width: 20rem;
}
.custom-select.size-small .selected-options {
  max-width: 15rem;
}
.custom-select.size-small .selected-options .option-label {
  max-width: 12rem;
}
.custom-select.size-large {
  --select-height: 5.6rem;
  --select-min-height: 5.6rem;
  --select-padding-horizontal: 2rem;
  --select-padding-vertical: 1.6rem;
  --select-font-size: 1.6rem;
  --select-option-selected-font-size: 1.4rem;
  --select-option-font-size: 1.6rem;
  --select-dropdown-max-width: 35rem;
  --select-dropdown-min-width: 25rem;
  --select-option-max-width: 30rem;
}
.custom-select.size-large .selected-options {
  max-width: 25rem;
}
.custom-select.size-large .selected-options .option-label {
  max-width: 20rem;
}
.custom-select.variant-error {
  --select-border-color: #ef4444;
  --select-border-color-hover: #dc2626;
  --select-border-color-focus: #ef4444;
  --select-shadow-focus: 0 0 0 0.3rem rgba(239, 68, 68, 0.1);
}
.custom-select.variant-success {
  --select-border-color: #10b981;
  --select-border-color-hover: #059669;
  --select-border-color-focus: #10b981;
  --select-shadow-focus: 0 0 0 0.3rem rgba(16, 185, 129, 0.1);
}
.custom-select.variant-warning {
  --select-border-color: #f59e0b;
  --select-border-color-hover: #d97706;
  --select-border-color-focus: #f59e0b;
  --select-shadow-focus: 0 0 0 0.3rem rgba(245, 158, 11, 0.1);
}

.langs {
  position: relative;
  display: flex;
}
.langs__trigger {
  display: flex;
  cursor: pointer;
}
.langs__body {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 1rem);
}
.langs__list {
  padding: 0 0.5rem;
  background-color: var(--cl-c);
  display: flex;
  flex-direction: column;
  border-radius: 1.2rem;
}
.langs__item {
  padding: 1rem 0.5rem;
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 100%;
  font-weight: 400;
  transition: all 0.3s ease;
}
.langs__item:not(:last-child) {
  border-bottom: 0.1rem solid var(--cl-h);
}
.langs__item.active {
  color: var(--cl-h);
  font-weight: 700;
}

.social {
  position: relative;
  display: flex;
}
.social__trigger {
  display: flex;
  cursor: pointer;
}
.social__body {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 1rem);
}
.social__list {
  padding: 1rem;
  background-color: var(--cl-c);
  border-radius: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.social__item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.social__item span {
  font-family: var(--font-main);
  font-size: 1.6rem;
  line-height: 150%;
  font-weight: 400;
}

.menu {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.header {
  z-index: 30;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: var(--cl-a);
  transition: border-color 0.3s;
}
.header.open-menu {
  z-index: 30;
}
.header__box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header__logo {
  display: flex;
  position: absolute;
  top: 50%;
  left: calc(50% - 0.3rem);
  transform: translate(-50%, -50%);
}
.header__top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  width: 100%;
  position: relative;
  z-index: 1;
  height: 8.6rem;
}
.header__top:before {
  content: "";
  width: 100vw;
  height: 0.1rem;
  background: #ccc;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  bottom: 0;
  position: absolute;
}
.header__nav {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 6.7rem;
}
.header__nav ul {
  display: flex;
  align-items: center;
  gap: 6.5rem;
}
.header__nav ul svg {
  display: flex;
  max-width: 2.9rem;
  max-height: 2.9rem;
  transition: all 0.3s;
}
.header__nav ul li {
  display: flex;
}
.header__nav ul li.current-menu-item a, .header__nav ul li.current-menu-item button, .header__nav ul li.current-menu-item span {
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}
.header__nav ul .menu-link:has(.sprite) .menu-text {
  display: none;
}
.header__nav ul a, .header__nav ul button, .header__nav ul span {
  color: var(--cl-b);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: all 0.3s;
}
.header__nav ul a svg, .header__nav ul button svg, .header__nav ul span svg {
  transition: all 0.3s;
}
.header__wrapp {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.header .burger {
  justify-self: end;
  --burger-width: 40px;
  --burger-height: 40px;
  --burger-line-height: 2px;
  --border-radius: 999px;
  background: var(--cl-d);
  color: var(--cl-a);
  position: relative;
  border: none;
  width: var(--burger-width);
  height: var(--burger-height);
  flex-shrink: 0;
  cursor: pointer;
}
.header .burger::before, .header .burger::after {
  content: "";
  position: absolute;
  width: 20px;
  left: 50%;
  transform: translateX(-50%);
  height: var(--burger-line-height);
  background: currentColor;
  transform-origin: left top;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, opacity 0.5s, background 0.3s ease-in-out;
  border-radius: var(--border-radius);
}
.header .burger::before {
  top: 13.5px;
}
.header .burger::after {
  bottom: 13.5px;
}
.header .burger__line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: var(--burger-line-height);
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease-in-out, opacity 0.5s, background 0.3s ease-in-out;
  border-radius: var(--border-radius);
}
.header .burger:hover {
  opacity: 0.7;
}
.header .burger.active {
  background: var(--cl-a);
}
.header .burger.active::before {
  background: var(--cl-d);
  top: 50%;
  transform: rotate(45deg) translate(-50%, -50%);
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
}
.header .burger.active::after {
  background: var(--cl-d);
  top: 50%;
  transform: rotate(-45deg) translate(-50%, -50%);
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
}
.header .burger.active .burger__line {
  background: var(--cl-d);
  transform: scale(0);
  transition: transform 0.3s ease-in-out;
}

.mobile {
  width: 100%;
  height: 100%;
  z-index: 90;
  overflow: hidden;
  transition: all 0.4s linear;
  flex-direction: column;
}
.mobile::-webkit-scrollbar {
  display: none;
}
.mobile.active {
  display: flex;
}
.mobile__box {
  display: flex;
  flex-direction: column;
  gap: 3.8rem;
  flex-grow: 1;
  width: 100%;
  align-items: center;
}

.footer {
  background-color: var(--cl-c);
  padding: 3.9rem 0;
}
.footer__wrapp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}
.footer__logo {
  display: flex;
  flex-shrink: 0;
  width: 16.6rem;
  height: 5.4rem;
}
.footer__logo svg, .footer__logo img {
  width: 100%;
  height: auto;
}
.footer__socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
.footer__socials-title {
  color: var(--cl-d);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.footer__socials ul {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.footer__socials a {
  transition: all 0.3s ease;
  width: 2.4rem;
  height: 2.4rem;
  transition: all 0.3s;
  color: var(--cl-d);
}
.footer__socials a svg, .footer__socials a img, .footer__socials a i {
  width: 100%;
  height: 100%;
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 2.4rem 4rem;
}
.footer-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.4rem 3.9rem;
  flex-wrap: wrap;
}
.footer-nav ul .menu-link:has(.sprite) .menu-text {
  display: none;
}
.footer-nav ul a, .footer-nav ul span {
  color: var(--cl-d);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.footer-nav ul a svg, .footer-nav ul span svg {
  display: flex;
  max-width: 2.9rem;
  max-height: 2.9rem;
  transition: all 0.3s;
}

.modal {
  max-width: 80rem;
  width: 90vw;
  background: var(--cl-a);
  padding: 5.6rem 1.6rem;
}
.modal [data-loader]:before {
  backdrop-filter: blur(3px);
}
.modal .h2, .modal h3, .modal h1 {
  max-width: 92%;
}
.modal__bg {
  width: 24.8rem;
  height: 24rem;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.modal__bg svg, .modal__bg img, .modal__bg .sprite {
  width: 100%;
  height: auto;
}
.modal__container {
  width: 100%;
  max-width: 42rem;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.modal__box {
  width: 100%;
}
.modal__box > .row .main-button {
  width: 100%;
}
.modal--search .modal__container {
  gap: 1.6rem;
  flex-direction: column;
  max-width: 72rem;
}
.modal--search .main-button {
  margin: 0 auto;
  min-width: 31rem;
}
.modal .main-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.modal .main-form__label {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.modal .main-form input:not([type=submit]), .modal .main-form textarea {
  padding: 1.1rem 1.6rem;
  width: 100%;
  background-color: var(--cl-a);
  font-family: var(--font-main);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  height: 4.2rem;
  border: 1px solid var(--cl-j);
  transition: all 0.4s;
  color: var(--cl-b);
}
.modal .main-form input:not([type=submit])::-moz-placeholder, .modal .main-form textarea::-moz-placeholder {
  color: var(--cl-d);
}
.modal .main-form input:not([type=submit])::placeholder, .modal .main-form textarea::placeholder {
  color: var(--cl-d);
}
.modal .main-form input:not([type=submit]):focus, .modal .main-form textarea:focus {
  border-color: var(--cl-e);
}
.modal .main-form textarea {
  max-height: 96px;
}
.modal .main-form .main-button {
  cursor: pointer;
  width: 100%;
}
.modal .main-form .wpcf7 {
  position: relative;
  z-index: 1;
}
.modal .main-form .wpcf7-form-control-wrap {
  display: flex;
  width: 100%;
}
.modal .main-form .wpcf7-spinner {
  display: none;
}
.modal .main-form .wpcf7-not-valid-tip {
  bottom: 2px;
  left: 20px;
  position: absolute;
  opacity: 0;
  transition: opacity 0.2s;
  transition-delay: 0.2s;
}
.modal .main-form .wpcf7-response-output {
  display: none;
  position: absolute;
}
.modal .file-upload__placeholder {
  color: var(--cl-d);
  text-align: center;
  letter-spacing: -0.01em;
  margin-left: 0.3rem;
  font-family: var(--font-second);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.4rem;
  transition: all 0.3s;
}
.modal .file-upload__filename {
  display: none;
  flex-grow: 1;
  margin-left: 0.8rem;
  color: var(--cl-d);
  font-family: var(--font-second);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.4rem;
  letter-spacing: -0.01em;
}
.modal .file-upload__remove {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath stroke='%23414755' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.333' d='m4.667 4.667 6.666 6.666m-6.666 0 6.666-6.666'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h16v16H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  width: 1.6rem;
  height: 1.6rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.3s;
  display: none;
}
.modal .file-upload__label {
  border: 0.1rem dashed var(--cl-d);
  padding: 1.2rem 1.6rem;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal .file-upload__label:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cg stroke='%23414755' stroke-linejoin='round' stroke-width='2' clip-path='url(%23a)'%3E%3Cpath stroke-linecap='round' d='M7 21a2 2 0 0 1-2-2V3h9l5 5v11a2 2 0 0 1-2 2z'/%3E%3Cpath d='M13 3v6h6'/%3E%3Cpath stroke-linecap='round' d='M9 13h6M9 17h6'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h24v24H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  width: 2.4rem;
  display: block;
  height: 2.4rem;
  flex-shrink: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 0.7rem;
  margin-left: 0.1rem;
  margin-top: -0.2rem;
  transition: all 0.3s;
}
.modal .file-upload__input {
  display: none;
}
.modal .file-upload.is-loaded {
  min-height: 2.4rem;
}
.modal .file-upload.is-loaded .wpcf7-form-control-wrap {
  width: 0;
}
.modal .file-upload.is-loaded .file-upload__label {
  padding: 0;
  border-color: transparent;
  flex-direction: row;
}
.modal .file-upload.is-loaded .file-upload__label:before {
  margin: 0 0 0 -0.2rem;
}
.modal .file-upload.is-loaded .file-upload__remove {
  display: block;
}
.modal .file-upload.is-loaded .file-upload__placeholder {
  display: none;
}
.modal .file-upload.is-loaded .file-upload__filename {
  display: inline-block;
}
.modal .search-form {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.modal .search-form input:not([type=submit]), .modal .search-form textarea {
  padding: 1.1rem 1.6rem;
  width: 100%;
  background-color: var(--cl-a);
  font-family: var(--font-main);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  height: 4.2rem;
  border: 1px solid var(--cl-j);
  transition: all 0.4s;
  color: var(--cl-b);
}
.modal .search-form input:not([type=submit])::-moz-placeholder, .modal .search-form textarea::-moz-placeholder {
  color: var(--cl-d);
}
.modal .search-form input:not([type=submit])::placeholder, .modal .search-form textarea::placeholder {
  color: var(--cl-d);
}
.modal .search-form input:not([type=submit]):focus, .modal .search-form textarea:focus {
  border-color: var(--cl-e);
}
.modal .search-results {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.modal .search-results .blog-card {
  height: 7rem;
  display: grid;
  align-items: flex-start;
  grid-template-columns: 7rem 1fr;
  gap: 0.8rem 1.7rem;
}
.modal .search-results .blog-card .tag {
  display: none;
}
.modal .search-results .blog-card__image {
  height: 7rem;
}
.modal .search-results .blog-card__box {
  gap: 0.8rem;
}
.modal .search-results .blog-card__box p {
  display: none;
}
.modal .search-results .blog-card .h2 {
  font-family: var(--font-main);
  font-size: 2.1rem;
  font-weight: 500;
  min-height: 4.6rem;
  max-width: 99%;
}

.author-section {
  padding: 4rem 0;
  position: relative;
  z-index: 1;
  margin-bottom: 3.9rem;
  border-bottom: solid 0.1rem #CCC;
}
.author-section__bg {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
}
.author-section__bg img, .author-section__bg picture, .author-section__bg svg {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.author-section__thumb {
  width: 16.2rem;
  height: 16.2rem;
  display: flex;
}
.author-section__thumb img, .author-section__thumb picture, .author-section__thumb svg {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.author-section__box {
  display: grid;
  grid-template-columns: 16.2rem 1fr;
  gap: 2.4rem 4.1rem;
}
.author-section__inner {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  max-width: 116rem;
}
.author-section__inner p {
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: 0.006em;
  font-family: var(--font-second);
}
.author-section__info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.author-section__info:last-child {
  flex: 1;
  min-width: 0;
}
.author-section__info:last-child span {
  display: block;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.author-section__info svg {
  flex-shrink: 0;
}
.author-section + section {
  margin-top: 0 !important;
}

.blog-section {
  overflow: hidden;
  margin: var(--default-padding) 0;
}
.blog-section__box {
  gap: clamp(32px, 7.29vw, 5.6rem);
  display: flex;
  flex-direction: column;
}
.blog-section__list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.blog-section__list:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0.1rem;
  left: -2rem;
  transform: translateX(-50%);
  background: #CCC;
  pointer-events: none;
}
.blog-section__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
.blog-section + .cta-section + .blog-section {
  margin-top: 0.7rem;
}

.default-section {
  margin-bottom: 0.8rem;
}
.default-section .container {
  --container-width: calc(69.4rem + (var(--container-offset) * 2));
}
.default-section__box {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.default-section .editor p:not([class]) + p:not([class]) {
  margin-top: 8px;
}
.default-section .editor .h3 {
  font-family: var(--font-second);
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.1rem;
}
.default-section__bottom {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: nowrap;
  min-width: 0;
}
.default-section__info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.default-section__info:last-child {
  flex: 1;
  min-width: 0;
}
.default-section__info:last-child span {
  display: block;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.default-section__info svg {
  flex-shrink: 0;
}

.hero-section {
  margin-bottom: var(--default-padding);
  background: var(--cl-g);
}
.hero-section:has(~ .about-section) {
  background: var(--cl-c);
}
.hero-section--blog:has(~ .blogs-section) .hero-section__inner .h3 {
  color: var(--cl-d);
}
.hero-section__link {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hero-section__info a {
  position: relative;
  z-index: 3;
  text-decoration: underline;
  transition: all 0.3s;
}
.hero-section__image .tag {
  z-index: 4;
}
.hero-section__box {
  position: relative;
}
.hero-section__inner {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  justify-content: space-between;
  padding: 7rem 0;
}
.hero-section__inner > .h3 {
  margin-left: -0.2rem;
}
.hero-section__inner .editor {
  margin-top: -2.4rem;
  gap: 2.4rem;
}
.hero-section__inner .editor .h1 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.005em;
}
.hero-section__inner .editor p:not([class]) {
  letter-spacing: 0.0063em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-section__inner:has(.editor:only-of-type) {
  justify-content: center;
}
.hero-section__inner:has(.editor:only-of-type) p:not([class]) {
  -webkit-line-clamp: 4;
}
.hero-section__box {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 4rem;
}
.hero-section__bottom {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: nowrap;
  min-width: 0;
}
.hero-section__info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.hero-section__info:last-child {
  flex: 1;
  min-width: 0;
}
.hero-section__info:last-child span {
  display: block;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hero-section__info svg {
  flex-shrink: 0;
}
.hero-section__image {
  display: flex;
  position: relative;
  z-index: 3;
}
.hero-section__image .tag {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background-color: var(--cl-d);
  color: var(--cl-a);
}
.hero-section__image svg, .hero-section__image img, .hero-section__image picture {
  margin-top: auto;
  width: 100%;
  height: 100%;
}
.hero-section__image p {
  color: var(--cl-k);
  font-size: 1.4rem;
  font-style: italic;
  font-family: var(--font-main);
  font-weight: 400;
  line-height: normal;
  flex: 1 0 0;
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  max-width: 95%;
}
.hero-section__image--book {
  align-items: center;
  justify-content: center;
  background: var(--cl-c);
}
.hero-section__image--book svg, .hero-section__image--book img, .hero-section__image--book picture {
  margin-top: 0;
  width: 37.2rem;
  height: 52rem;
  box-shadow: 0 0.4rem 0.8rem 0 rgba(0, 0, 0, 0.4);
}
.hero-section:has(.hero-section__image--book) {
  background: var(--cl-j);
}
.hero-section.is-culture {
  background: var(--cl-g);
}
.hero-section.is-reviews {
  background: var(--cl-j);
}
.hero-section.is-ideas {
  background: var(--cl-f);
}
.hero-section.is-politics {
  background: var(--cl-d);
}
.hero-section.is-politics .hero-section__inner .h3 {
  font-weight: 400;
  color: var(--cl-c) !important;
}
.hero-section.is-politics .hero-section__inner .h3 .sprite {
  color: var(--cl-c) !important;
}
.hero-section.is-politics .hero-section__inner .h3 .sprite * {
  color: var(--cl-c) !important;
}
.hero-section.is-politics * {
  color: var(--cl-a) !important;
}
.hero-section.is-politics .hero-section__image p {
  color: var(--cl-k) !important;
}

.similar-section {
  position: relative;
  z-index: 1;
  margin: 0.5rem 0 4rem !important;
}
.similar-section .h1 {
  color: var(--cl-d);
}
.similar-section__box {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 7.29vw, 5.6rem);
}
.similar-section .blog-list__item {
  grid-column: initial;
}
.similar-section:before {
  content: "";
  background: var(--cl-g);
  z-index: -1;
  position: absolute;
  height: calc(100% + 4.5rem + clamp(4rem, 8.33vw, 6.4rem) / 2);
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  bottom: -4rem;
  pointer-events: none;
}

.term-oglyady .hero-section {
  background: var(--cl-j);
}

.error-section {
  position: relative;
  z-index: 1;
  margin: 4.8rem 0 8rem !important;
  overflow: hidden;
}
.error-section .container {
  position: static;
  height: 100%;
}
.error-section__box {
  display: flex;
  flex-direction: column;
  gap: 3.8rem;
  height: 100%;
  padding-left: 0.2rem;
}
.error-section__box img, .error-section__box picture, .error-section__box svg {
  width: 136rem;
  height: 32rem;
  margin: 0 auto;
}
.error-section__box .editor {
  align-items: center;
}
.error-section__box .editor * {
  text-align: center;
}
.error-section__box .editor .main-button {
  min-width: 31rem;
  margin: 0.8rem auto 0;
}

.search-section {
  margin-bottom: 6.4rem !important;
  margin-top: 4rem;
}
.search-section__box {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.search-section .editor {
  gap: 2.5rem;
  align-items: center;
  max-width: 70rem;
  width: 100%;
  align-self: center;
}
.search-section .editor * {
  text-align: center;
}
.search-section .editor .sprite, .search-section .editor img, .search-section .editor svg {
  width: 100%;
  height: 100%;
  max-width: 20.3rem;
  max-height: 19.6rem;
}
.search-section__top {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.search-section__info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.search-section__info:last-child {
  flex: 1;
  min-width: 0;
}
.search-section__info:last-child span {
  display: block;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.search-section__info svg {
  flex-shrink: 0;
}
.search-section__inner {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.search-section .navigation.pagination {
  margin: 2rem auto 0;
}
.search-section .navigation.pagination .screen-reader-text {
  display: none;
}
.search-section .navigation.pagination .nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.search-section .navigation.pagination .page-numbers {
  width: 4.8rem;
  height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.1rem solid var(--cl-k);
  color: var(--cl-b);
  background: transparent;
  text-decoration: none;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.search-section .navigation.pagination .page-numbers.prev {
  background-image: url("../../assets/img/sprite/arrow-l.svg");
  background-position: center;
  background-size: 2.4rem;
  background-repeat: no-repeat;
  font-size: 0;
}
.search-section .navigation.pagination .page-numbers.next {
  background-image: url("../../assets/img/sprite/arrow-r.svg");
  background-position: center;
  background-size: 2.4rem;
  background-repeat: no-repeat;
  font-size: 0;
}
.search-section .navigation.pagination .page-numbers.current {
  pointer-events: none;
  opacity: 0.3;
}
.search-section .navigation.pagination .page-numbers:hover {
  transform: scale(1.05);
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4rem;
}
.blog-list__item {
  position: relative;
  z-index: 1;
  grid-column: span 3;
}
.blog-list__item:has(+ .blog-list__item.mode) + .blog-list__item.mode.highlight + .blog-list__item.mode:not(.highlight):after {
  content: none;
}
.blog-list__item:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0.1rem;
  right: -2rem;
  transform: translateX(50%);
  background: #CCC;
  pointer-events: none;
}
.blog-list__item.mode {
  grid-column: span 2;
  z-index: 3;
  margin: 4rem 0;
}
.blog-list__item.mode.highlight {
  position: relative;
  z-index: 2;
}
.blog-list__item.mode .blog-card__box p:not([class]) {
  -webkit-line-clamp: 3;
}
.blog-list__item.ajax-loaded {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.blog-list__item.ajax-loaded.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.blog-list .blog-card__box:has(.h2) {
  display: grid;
  grid-template-rows: 1fr auto auto;
}

.blog-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.3rem;
  position: relative;
  z-index: 1;
}
.blog-card__box {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  justify-content: flex-end;
  min-width: 0;
}
.blog-card__box .h3 {
  margin-bottom: auto;
}
.blog-card__box .h2, .blog-card__box .h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-card__box p:not([class]) {
  font-family: var(--font-second);
  display: -webkit-box;
  line-height: 150%;
  font-size: 1.6rem;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.008em;
  margin-bottom: auto;
}
.blog-card__bottom {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: nowrap;
  min-width: 0;
  margin-top: -0.2rem;
}
.blog-card__info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.blog-card__info a {
  text-decoration: underline;
  transition: all 0.3s;
}
.blog-card__info:last-child {
  flex: 1;
  min-width: 0;
}
.blog-card__info:last-child span, .blog-card__info:last-child a {
  display: block;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.blog-card__info svg {
  flex-shrink: 0;
}
.blog-card__image {
  z-index: -1;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-shrink: 0;
  height: 30rem;
}
.blog-card__image img, .blog-card__image picture, .blog-card__image svg {
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}
.blog-card .tag {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background-color: var(--cl-d);
  color: var(--cl-a);
}

.book-card {
  gap: 2.3rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.book-card.ajax-loaded {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.book-card.ajax-loaded.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.book-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cl-c);
  width: 100%;
  height: 30rem;
  overflow: hidden;
  flex-shrink: 0;
}
.book-card__image img, .book-card__image picture {
  width: 18.6rem;
  flex-shrink: 0;
  transition: all 0.3s;
  aspect-ratio: 88/123;
}
.book-card .h2, .book-card .h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: auto;
}
.book-card__box {
  gap: 2.3rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.book-card__box * {
  color: var(--cl-a);
}
.book-card__bottom {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: nowrap;
  min-width: 0;
}
.book-card__info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.book-card__info a {
  text-decoration: underline;
  transition: all 0.3s;
  text-underline-offset: 0.2rem;
}
.book-card__info:last-child {
  flex: 1;
  min-width: 0;
}
.book-card__info:last-child span {
  display: block;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.book-card__info svg {
  flex-shrink: 0;
}
@media (min-width: 576px) {
  .modal {
    padding: 4rem;
  }
  .blog-section + .cta-section {
    margin-top: 0.8rem;
  }
  .hero-section__image p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }
  .hero-section--blog .hero-section__inner .editor p:not([class]) {
    max-width: 99%;
  }
}
@media (min-width: 992px) {
  .header.header-hidden {
    border-color: transparent;
  }
  .header.header-hidden .header__nav {
    max-height: 0;
    transition: max-height 0.3s ease;
  }
  .header .header__nav {
    overflow: hidden;
    max-height: 250px;
    transition: max-height 0.7s ease;
  }
  .header__wrapp > .langs {
    margin-top: -0.2rem;
  }
  .header .burger {
    display: none;
  }
  .header {
    border-bottom: solid 0.1rem var(--cl-j);
  }
  .mobile .header__logo {
    display: none;
  }
  .mobile .langs {
    display: none;
  }
  .mobile__box {
    display: contents;
  }
  .mobile {
    display: contents;
  }
  .hero-section__image {
    height: 600px;
    width: calc(100% + var(--container-offset));
    margin-right: calc(-1 * var(--container-offset));
  }
  .similar-section .blog-list__item:nth-of-type(2):before {
    content: "" !important;
  }
  .similar-section .blog-list__item .blog-card__box p:not([class]) {
    -webkit-line-clamp: 4;
  }
  .similar-section .blog-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .blog-list__item:has(+ .blog-list__item.mode):not(.mode):before {
    content: none;
  }
  .blog-list__item:last-of-type:before {
    content: none;
  }
  .blog-list__item.mode:last-of-type:before {
    content: none;
  }
  .blog-list__item.mode:last-of-type:after {
    position: absolute;
    content: "";
    width: 100vw;
    z-index: -1;
    pointer-events: none;
    height: calc(100% + 8rem);
    background: var(--cl-g);
    top: 50%;
    left: calc(var(--container-offset) * -1);
    transform: translate(0%, -50%);
  }
  .blog-list__item.mode:nth-child(5n):before {
    content: none;
  }
  .blog-list__item.mode.highlight:after {
    position: absolute;
    content: "";
    width: 100vw;
    z-index: -1;
    pointer-events: none;
    height: calc(100% + 8rem);
    background: var(--cl-g);
    top: 50%;
    left: calc(50% - 0.5rem);
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 1024px) {
  .header__top {
    margin-right: -1.1rem;
  }
  .header__nav ul {
    margin-right: -0.5rem;
  }
  .blog-section + .cta-section + .blog-section {
    margin-bottom: 6.3rem;
  }
  .hero-section--blog.is-politics .hero-section__inner .h3 {
    margin-top: initial !important;
  }
  .hero-section.is-politics .hero-section__inner .h3 {
    margin-top: -1.5rem;
  }
}
@media (min-width: 1241px) {
  .hero-section--blog .hero-section__inner .editor {
    margin-top: -2.6rem;
  }
  .hero-section--blog .hero-section__inner {
    padding: 2.1rem 0 2.4rem;
  }
  .hero-section:has(.hero-section__image--book) .hero-section__inner .editor {
    margin-top: -5rem;
  }
  .hero-section:has(.hero-section__image--book) .hero-section__inner {
    padding: 7rem 0 6.8rem;
  }
  .similar-section__box {
    padding: 0 4rem;
  }
}
@media (min-width: 1441px) {
  .header__logo {
    left: calc(50% - 0.1rem);
  }
  .header__top {
    margin: 0;
  }
  .header__nav ul {
    margin-right: -0.1rem;
  }
}
@media (max-width: 1440px) {
  .footer {
    padding: 3.7rem 0 3.5rem;
  }
  .hero-section__inner .editor p:not([class]) {
    max-width: 95%;
  }
  .hero-section__inner .editor {
    margin-top: -1px;
  }
  .hero-section__box {
    grid-template-columns: 1fr 0.93fr;
  }
  .blog-list {
    gap: 42px 40px;
    margin: 0 -7px 0 3px;
  }
  .blog-card__box p:not([class]) {
    -webkit-line-clamp: 3;
    letter-spacing: 0.01em;
  }
}
@media (max-width: 1440px) and (min-width: 1024px) {
  .blog-section__inner {
    grid-template-columns: calc(50% + 0.5rem - 2rem) calc(50% - 2.5rem);
  }
}
@media (max-width: 1440px) and (min-width: 1241px) {
  .similar-section .blog-list {
    margin: -3px -7px 0 3px;
  }
  .blog-card__box p:not([class]) {
    max-width: 95%;
  }
}
@media (max-width: 1440px) and (min-width: 576px) {
  .footer__socials {
    margin-top: 0.5rem;
  }
  .blog-list__item.mode .blog-card__box p:not([class]) {
    -webkit-line-clamp: 4;
  }
}
@media (max-width: 1240px) {
  .hero-section__inner {
    padding: 33px 0 34px;
  }
  .hero-section__box {
    grid-template-columns: 1fr 0.9fr;
  }
  .blog-list {
    margin: 0 -5px 0 0;
  }
  .book-card__image img, .book-card__image picture {
    aspect-ratio: 71/99;
    width: 121px;
  }
  .book-card__image {
    height: 19.6rem;
  }
}
@media (max-width: 1240px) and (min-width: 576px) {
  .hero-section--blog .hero-section__inner .editor {
    margin-top: 0;
  }
  .hero-section:has(.hero-section__image--book) .hero-section__inner .editor {
    margin-top: 2px;
  }
}
@media (max-width: 1240px) and (min-width: 992px) {
  .header__top {
    margin-right: -14px;
  }
  .header__nav ul {
    margin-right: -8px !important;
  }
  .similar-section .blog-list__item:before {
    right: -14px;
  }
  .similar-section .blog-list {
    gap: 42px 28px;
  }
}
@media (max-width: 1024px) {
  .hero-section__inner {
    padding: 47px 0 45px;
  }
}
@media (max-width: 1024px) and (min-width: 1020px) {
  .slider-controls {
    margin-top: 57px;
  }
}
@media (max-width: 1023px) {
  .header__logo {
    left: 50%;
  }
  .blog-section__list:before {
    top: -20px;
    width: 100%;
    height: 1px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .blog-section__inner {
    grid-template-columns: 100%;
  }
  .hero-section__image--book svg, .hero-section__image--book img, .hero-section__image--book picture {
    width: 258.204px;
    height: 360px;
  }
}
@media (max-width: 1023px) and (max-width: 575px) {
  .blog-section__list:before {
    top: -23.5px;
    width: 100vw;
  }
}
@media (max-width: 1023px) and (min-width: 576px) {
  .similar-section {
    margin-bottom: 40px !important;
  }
}
@media (max-width: 991px) {
  .header__top {
    padding-top: 3px;
    justify-content: space-between;
  }
  .header__wrapp > .langs {
    display: none;
  }
  .mobile.active {
    overflow-y: auto;
    transform: translateX(0);
  }
  .mobile .langs {
    gap: 24px;
  }
  .mobile .langs li:last-of-type a {
    font-family: var(--font-main);
    font-weight: 400;
  }
  .mobile .langs a {
    font-size: 16px;
    color: var(--cl-a);
    font-family: var(--font-main);
  }
  .mobile .langs a.active {
    font-weight: 700;
    pointer-events: none;
  }
  .mobile__top {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
    padding: 23px 0;
    width: 100%;
  }
  .mobile__top .header__logo {
    filter: brightness(50);
  }
  .mobile__top:before {
    content: "";
    position: absolute;
    z-index: -1;
    background: var(--cl-j);
    width: 100vw;
    left: 50%;
    height: 1px;
    transform: translateX(-50%);
    bottom: 0;
    pointer-events: none;
  }
  .mobile {
    position: fixed;
    top: 0;
    left: 0;
    max-width: 100vw;
    width: 100%;
    height: 100dvh;
    bottom: 0;
    z-index: 90;
    transition: all 0.3s ease;
    transform: translateX(-110%);
    background: var(--bg-a);
    padding: 0 40px 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--cl-d);
  }
  .mobile .header__nav {
    width: 100%;
    flex-direction: column;
    display: flex;
    position: relative;
    justify-content: flex-start;
    z-index: 1;
  }
  .mobile .header__nav:only-child {
    flex-grow: 1;
  }
  .mobile .header__nav ul {
    transition: 0.3s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5.6rem;
  }
  .mobile .header__nav ul .sprite {
    width: 65px;
    filter: brightness(50);
    height: 35px;
  }
  .mobile .header__nav ul .sprite svg {
    max-width: initial;
    max-height: initial;
    width: 100%;
    height: auto;
  }
  .mobile .header__nav ul a,
  .mobile .header__nav ul .menu-button, .mobile .header__nav ul span {
    width: 100%;
    justify-content: start;
    color: var(--cl-a);
    font-size: 2.8rem;
  }
  .mobile .header__nav ul a.disabled,
  .mobile .header__nav ul .menu-button.disabled, .mobile .header__nav ul span.disabled {
    display: none;
  }
  .mobile .header__nav ul .menu-button {
    width: -moz-fit-content;
    width: fit-content;
    justify-content: space-between;
  }
  .mobile .header__nav ul .menu-item-has-children {
    width: 100%;
  }
  .mobile .header__nav .sub-menu {
    align-items: center;
  }
  .hero-section__inner:has(.editor:only-of-type) .h1 br {
    display: none;
  }
  .hero-section__inner {
    padding: 0 0 41px;
  }
  .hero-section__box {
    gap: 60px;
    grid-template-columns: 100%;
  }
  .hero-section__image .tag {
    left: var(--container-offset);
  }
  .hero-section__image p {
    left: var(--container-offset);
    max-width: 91%;
  }
  .hero-section__image {
    order: -1;
    height: 400px;
    width: calc(100% + var(--container-offset) * 2);
    margin-left: calc(-1 * var(--container-offset));
  }
  .blog-list__item:first-of-type:before {
    content: none;
  }
  .blog-list__item:before {
    top: -20px;
    width: 100vw;
    height: 1px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .blog-list__item.mode.highlight {
    margin: -43px 0 -41px;
    z-index: 4;
  }
  .blog-list__item.mode.highlight:after {
    height: calc(100% + 7.5rem);
  }
  .blog-list__item.mode.highlight + .mode {
    z-index: 5;
  }
  .blog-list__item.mode:has(+ .highlight):before {
    content: none !important;
  }
  .blog-list__item.mode {
    margin: 40px 0;
  }
  .blog-list__item.mode:after {
    position: absolute;
    content: "";
    width: 100vw;
    z-index: -1;
    pointer-events: none;
    height: calc(100% + 8rem);
    background: var(--cl-g);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .blog-list__item {
    grid-column: initial !important;
  }
  .blog-list {
    margin: 0;
    grid-template-columns: 100%;
    gap: 40px;
  }
  .book-card__image {
    height: 255px;
  }
}
@media (max-width: 991px) and (max-width: 575px) {
  .mobile .header__nav ul .sprite {
    width: 48px;
    height: 26px;
  }
  .mobile .header__nav ul a,
  .mobile .header__nav ul .menu-button, .mobile .header__nav ul span {
    font-size: 21px;
  }
  .mobile .header__nav ul {
    gap: 40px;
  }
  .blog-list__item:before {
    top: -23.5px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .mobile .header__nav .sub-menu a {
    font-size: 1.6rem;
  }
}
@media (max-width: 991px) and (min-width: 576px) {
  .author-section {
    padding-bottom: 38px;
  }
  .blog-section + .cta-section + .blog-section {
    margin-top: -7px;
  }
  .hero-section__inner {
    gap: 38px;
  }
  .hero-section--blog {
    margin-bottom: 6px;
  }
}
@media (max-width: 768px) {
  .custom-select .select-field {
    padding: var(--select-mob-padding-vertical) var(--select-mob-padding-horizontal);
  }
  .custom-select .selected-option {
    font-size: var(--select-mob-option-selected-font-size);
    padding: var(--select-mob-option-selected-padding);
  }
  .custom-select .option {
    padding: var(--select-mob-option-padding);
    font-size: var(--select-mob-option-font-size);
  }
}
@media (max-width: 766px) {
  .footer__wrapp {
    flex-direction: column;
  }
  .author-section__inner {
    gap: 1.6rem;
  }
}
@media (max-width: 575px) {
  .slider-controls {
    margin: 32px auto 0;
  }
  .mobile__box {
    gap: 39px;
  }
  .mobile {
    padding: 0 16px 40px;
  }
  .footer__socials {
    margin-top: -10px;
  }
  .footer {
    padding-top: 3.9rem;
  }
  .modal {
    padding: 24px 16px;
  }
  .modal .search-results .blog-card__image {
    height: 50px;
    align-self: start;
  }
  .modal .search-results .blog-card .h2 {
    font-size: 1.6rem;
    min-height: initial;
  }
  .modal .search-results .blog-card {
    height: -moz-fit-content;
    height: fit-content;
    grid-template-columns: 50px 1fr;
  }
  .author-section__thumb {
    width: 100px;
    justify-self: center;
    height: 100px;
  }
  .author-section__box {
    grid-template-columns: 100%;
  }
  .author-section {
    padding: 24px 0 21px;
    margin-bottom: 32px;
  }
  .blog-section + .cta-section {
    margin-top: 3px;
  }
  .blog-section__box {
    gap: 32px;
  }
  .blog-section__item {
    position: relative;
    z-index: 1;
    padding-bottom: 24px;
  }
  .blog-section__item:before {
    content: "";
    position: absolute;
    background: #CCC;
    pointer-events: none;
    height: 1px;
    left: 50%;
    transform: translate(-50%, -50%);
    top: -24px;
    width: 100vw;
  }
  .blog-section__list {
    gap: 24px;
  }
  .blog-section__inner {
    gap: 47px;
  }
  .blog-section + .cta-section + .blog-section {
    margin-top: 3px;
  }
  .default-section__bottom {
    margin-top: -2px;
  }
  .default-section {
    margin-bottom: 23px;
  }
  .default-section + .cta-section .h2 {
    line-height: 144%;
  }
  .hero-section__inner .editor .h1 {
    -webkit-line-clamp: 5;
    margin-bottom: -4px;
  }
  .hero-section__inner .editor p:not([class]) {
    max-width: 100%;
    -webkit-line-clamp: 4;
  }
  .hero-section__inner:has(.editor:only-of-type) p:not([class]) {
    -webkit-line-clamp: 8;
  }
  .hero-section__inner {
    gap: 24px;
    padding: 0 0 32px;
  }
  .hero-section__box {
    gap: 61px;
  }
  .hero-section__bottom {
    margin-top: -2px;
  }
  .hero-section__image .tag {
    left: 8px;
  }
  .hero-section__image--book svg, .hero-section__image--book img, .hero-section__image--book picture {
    width: 186.481px;
    height: 260px;
  }
  .hero-section__image {
    height: 300px;
  }
  .hero-section--blog .hero-section__inner .editor {
    gap: 26px;
  }
  .similar-section__box {
    gap: 32px;
  }
  .similar-section:before {
    bottom: -32px;
  }
  .similar-section {
    margin: 13px 0 32px !important;
  }
  .error-section__box img, .error-section__box picture, .error-section__box svg {
    width: 67.9rem;
    height: 16rem;
  }
  .error-section__box {
    gap: 24px;
  }
  .error-section {
    margin: 80px 0 50px !important;
  }
  .search-section__box {
    gap: 25px;
  }
  .search-section .editor .h1, .search-section .editor .h2, .search-section .editor .h3, .search-section .editor .h4 {
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .search-section .editor .h1 + p, .search-section .editor .h2 + p, .search-section .editor .h3 + p, .search-section .editor .h4 + p {
    margin-top: -10px;
  }
  .search-section .editor .sprite, .search-section .editor img, .search-section .editor svg {
    max-width: 166px;
    max-height: 160px;
  }
  .search-section {
    margin-top: 2.4rem;
    margin-bottom: 145px !important;
  }
  .blog-list__item.mode.highlight {
    margin: -40px 0 -40px;
  }
  .blog-list__item.mode.highlight + .mode {
    margin-bottom: 31px;
  }
  .blog-list__item.mode:has(+ .highlight) {
    margin-top: 9px;
  }
  .blog-list__item.mode:has(+ .highlight):after {
    height: calc(100% + 64px);
  }
  .blog-list__item.mode .blog-card__box p:not([class]) {
    max-width: 100%;
    -webkit-line-clamp: 4;
  }
  .blog-list {
    gap: 47px;
  }
  .blog-card__box .h3 {
    min-height: 30px;
  }
  .blog-card__box p:not([class]) {
    -webkit-line-clamp: 4;
  }
  .blog-card__box {
    gap: 16px;
  }
  .blog-card__bottom {
    margin: -1px 0 0 2px;
  }
  .blog-card__image {
    height: 200px;
  }
  .blog-card {
    gap: 24px;
  }
  .book-card__image img, .book-card__image picture {
    width: 130px;
  }
  .book-card__image {
    height: 214px;
  }
  .book-card__box {
    gap: 16px;
  }
  .book-card__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }
}
@media (max-width: 575px) and (min-width: 376px) {
  .blog-card__box p:not([class]) {
    max-width: 95%;
  }
}
@media (max-width: 480px) {
  .modal .search-results .blog-card__bottom {
    display: grid;
    gap: 8px;
    grid-template-columns: auto 1fr;
  }
  .modal .search-results .blog-card__info:last-of-type {
    grid-column: 1/-1;
  }
  .error-section__box .editor .row {
    width: 100%;
  }
  .error-section__box .editor .main-button {
    width: 100%;
  }
}
@media (max-width: 375px) {
  .header__top {
    padding-top: 0;
  }
  .footer__socials {
    margin: -3px 0 20px;
  }
  .footer-nav ul {
    gap: 2.3rem 3.9rem;
  }
  .blog-section__item:nth-child(2) .h3 {
    margin-bottom: 5px;
  }
  .blog-list__item.mode:has(+ .highlight):after {
    height: calc(100% + 64px);
  }
}
@media (hover: hover) {
  .main-button--transparent:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.8);
  }
  .main-button--green:hover {
    background-color: rgb(78.3305084746, 139.2542372881, 66.1457627119);
    box-shadow: 0 0.6rem 1.6rem rgba(90, 160, 76, 0.25);
  }
  .main-button:hover {
    background-color: rgb(78.26, 85.484, 102.34);
    box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.15);
  }
  .slider-btn:hover svg {
    transform: scale(1.2);
  }
  .langs__item:hover {
    color: var(--cl-h);
  }
  .header__nav ul svg:hover {
    transform: scale(1.05);
  }
  .header__nav ul a:hover, .header__nav ul button:hover, .header__nav ul span:hover {
    color: var(--cl-e);
  }
  .header__nav ul a:hover svg, .header__nav ul button:hover svg, .header__nav ul span:hover svg {
    transform: scale(1.05);
  }
  .footer__socials a:hover {
    transform: scale(1.1);
  }
  .footer-nav ul a:hover, .footer-nav ul span:hover {
    color: var(--cl-e);
  }
  .footer-nav ul a:hover svg, .footer-nav ul span:hover svg {
    transform: scale(1.05);
  }
  .modal .file-upload__remove:hover {
    opacity: 0.7;
  }
  .modal .file-upload:hover .file-upload__label:before, .modal .file-upload:hover .file-upload__placeholder {
    opacity: 0.7;
  }
  .hero-section__info a:hover {
    text-decoration-color: transparent;
  }
  .blog-card__info a:hover {
    text-decoration-color: transparent;
  }
  .blog-card:hover .blog-card__image img, .blog-card:hover .blog-card__image picture, .blog-card:hover .blog-card__image svg {
    transform: scale(1.06);
  }
  .book-card__info a:hover {
    text-decoration-color: transparent;
  }
  .book-card:hover .book-card__image img, .book-card:hover .book-card__image picture {
    transform: scale(1.03);
  }
}
@media (hover: none) {
  .main-button--transparent:active {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.8);
  }
  .main-button--green:active {
    background-color: rgb(78.3305084746, 139.2542372881, 66.1457627119);
    box-shadow: 0 0.6rem 1.6rem rgba(90, 160, 76, 0.25);
  }
  .main-button:active {
    background-color: rgb(78.26, 85.484, 102.34);
    box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.15);
  }
  .slider-btn:active svg {
    transform: scale(1.2);
  }
  .langs__item:active {
    color: var(--cl-h);
  }
  .header__nav ul svg:active {
    transform: scale(1.05);
  }
  .header__nav ul a:active, .header__nav ul button:active, .header__nav ul span:active {
    color: var(--cl-e);
  }
  .header__nav ul a:active svg, .header__nav ul button:active svg, .header__nav ul span:active svg {
    transform: scale(1.05);
  }
  .footer__socials a:active {
    transform: scale(1.1);
  }
  .footer-nav ul a:active, .footer-nav ul span:active {
    color: var(--cl-e);
  }
  .footer-nav ul a:active svg, .footer-nav ul span:active svg {
    transform: scale(1.05);
  }
  .modal .file-upload__remove:active {
    opacity: 0.7;
  }
  .modal .file-upload:active .file-upload__label:before, .modal .file-upload:active .file-upload__placeholder {
    opacity: 0.7;
  }
  .hero-section__info a:active {
    text-decoration-color: transparent;
  }
  .blog-card__info a:active {
    text-decoration-color: transparent;
  }
  .blog-card:active .blog-card__image img, .blog-card:active .blog-card__image picture, .blog-card:active .blog-card__image svg {
    transform: scale(1.06);
  }
  .book-card__info a:active {
    text-decoration-color: transparent;
  }
  .book-card:active .book-card__image img, .book-card:active .book-card__image picture {
    transform: scale(1.03);
  }
}
/*# sourceMappingURL=style.css.map */