.calculator--title {
  max-width: 100%;
}

.calculator--title_mob {
  display: none;
}

.calculator--range_form {
  padding-top: 20px;
}

.calculator--content {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 37px;
}

.calculator .container {
  position: relative;
}

.calculator .decor {
  position: absolute;
  width: 172px;
  height: 172px;
  right: -120px;
  top: -50px;
  z-index: 2;
}

.calculator--renge_wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0;
  grid-auto-rows: auto;
}

.calculator--renge_title_wrapper {
  grid-column: 1/5;
  grid-row: 1/2;
}

.calculator--renge_result_wrapper {
  grid-column: 1/2;
  grid-row: 2/3;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.calculator--renge_body {
  grid-column: 2/5;
  grid-row: 2/3;
  padding-left: 40px;
  box-sizing: border-box;
}

.calculator--values {
  width: 66.6%;
}

.calculator--result {
  width: 33%;
  box-sizing: border-box;
  padding-left: 33px;
}

.result--btn_mob {
  display: none;
}

.calculator--renge_body .irs--round .irs-bar,
.calculator--renge_body .irs--round .irs-line {
  height: 8px;
  top: 23px;
}

.calculator--renge_body .irs--round .irs-handle {
  top: 15px;
}

.calculator--renge_body .irs--round.irs-with-grid {
  height: 55px;
}

.calculator--renge_body .irs--round .irs-handle {
  border: 6px solid var(--accent);
  cursor: pointer;
  box-shadow: 0px 0px 5px rgba(89, 0, 0, 0.7);
  padding: 0 !important;
}

.calculator--renge_body .irs--round .irs-bar {
  background-color: var(--accent);
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
}

.calculator--renge_body .irs--round .irs-grid-pol {
  background-color: transparent;
}

.calculator--renge_body .irs--round .irs-line {
  background: #e6eaff;
}

.calculator--renge_title {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.15);
  margin-bottom: 15px;
}

.calculator--renge_wrapper-padding {
  padding-bottom: 17px;
}

.calculator--renge_result {
  background: var(--accent);
  border: 4px solid #ffffff;
  height: 50px;
  width: 180px;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 5px;
}

.calculator--result_body {
  height: 147px;
  max-height: 100%;
  margin-top: 64px;
  box-sizing: border-box;
  background: var(--accent);
  border: 4px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 5px;
  font-style: normal;
  font-weight: 700;
  font-size: 42px;
  line-height: 50px;
  color: #ffffff;
}

.irs-grid-text {
  font-style: normal;
  font-weight: 600;
  font-size: 14px !important;
  line-height: 17px;
  color: #ffffff !important;
  top: 15px;
}

.irs-grid-text .js-grid-text-4 {
  left: 108% !important;
}

.calculator_inner {
  width: 100%;
  display: flex;
}

.calc-type {
  display: grid;
  grid-template-columns: repeat(2, 50%);
}
.calc-type .calc-type__left {
  border-radius: 20px 0px 0px 20px;
  background: #F0F3FF;
  padding: 50px 110px;
}
.calc-type .irs-grid-text,
.calc-type .irs-grid-pol {
  display: none;
}
.calc-type .irs--round .irs-handle {
  background-color: var(--accent-color);
  border: none;
  cursor: pointer;
}
.calc-type .irs--round .irs-bar {
  background-color: var(--accent-color);
}
.calc-type .irs--round .irs-line {
  background-color: #828282;
}
.calc-type .calc-type__currency {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 35px;
}
.calc-type .calc-type__currency button {
  border-radius: 20px;
  background: var(--Gray-4, #BDBDBD);
  color: var(--Gray-6, #F2F2F2);
  font-size: 16px;
  font-weight: 500;
  line-height: 178.571%;
  width: 120px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.calc-type .calc-type__currency button.currency-button--active {
  background: var(--accent-color);
  color: var(--Gray-6, #F2F2F2);
}
.calc-type .calc-type__field--title {
  color: var(--Greyscale-Grey-500, #70707A);
  font-size: 14px;
  font-weight: 500;
  line-height: 160%;
}
.calc-type .field-invest__input {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3px;
  border-bottom: 3px solid #828282;
}
.calc-type .field-invest__input::before {
  content: attr(data-prefix);
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 28px;
  font-weight: 600;
  bottom: 10px;
  transform: translateY(-1px);
}
.calc-type .field-invest__input input {
  width: 100%;
  font-size: 28px;
  font-weight: 600;
  line-height: 178.571%;
}
.calc-type .field-invest__input input::placeholder {
  color: var(--Gray-3, #828282);
}
.calc-type .calc-type__template {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 35px;
}
.calc-type .calc-type__template {
  color: var(--Greyscale-Grey-500, #70707A);
  font-size: 16px;
  font-weight: 600;
  line-height: 160%;
}
.calc-type .invest-button,
.calc-type .time-button {
  display: flex;
  transition: all 0.3s ease-in-out;
  padding: 6px;
  border-radius: 8px;
  gap: 3px;
}
@media (any-hover: hover) {
  .calc-type .invest-button:hover,
  .calc-type .time-button:hover {
    background: rgba(5, 43, 55, 0.2509803922);
  }
}
.calc-type .invest-button.invest-button--active, .calc-type .invest-button.time-button--active,
.calc-type .time-button.invest-button--active,
.calc-type .time-button.time-button--active {
  background: var(--accent-color);
  color: var(--Gray-6, #F2F2F2);
}
.calc-type .field-time {
  margin-top: 55px;
}
.calc-type .field-time .calc-type__field--title {
  color: var(--Gray-1, #333);
  font-size: 28px;
  font-weight: 600;
  line-height: 80%;
}
.calc-type .time-wrap {
  margin-top: 10px;
}
.calc-type .calc-type__right {
  border-radius: 0px 20px 20px 0px;
  background: var(--accent-color);
  padding: 100px 50px 55px;
  display: flex;
  flex-direction: column;
}
.calc-type .calc-type__right--title {
  color: var(--Gray-5, #E0E0E0);
  font-size: 36px;
  font-weight: 600;
  line-height: 50px;
}
.calc-type .calc-type__right--result {
  color: #F28F03;
  font-size: 70px;
  font-weight: 700;
  line-height: 71.429%;
  margin-top: 25px;
  display: flex;
  flex-wrap: nowrap;
  gap: 15px;
}
.calc-type .calc-type__right--bottom {
  margin-top: 120px;
  padding-top: 10px;
  border-top: 1px solid rgba(224, 224, 224, 0.537254902);
}
.calc-type .calc-type__right--bottom--title {
  color: var(--Gray-5, #E0E0E0);
  font-size: 24px;
  font-weight: 500;
  opacity: 0.5;
}
.calc-type .calc-type__right--bottom--result {
  color: var(--Gray-5, #E0E0E0);
  font-size: 32px;
  font-weight: 700;
  line-height: 156.25%;
  margin-top: 4px;
}
.calc-type.calc-type--four {
  border-radius: 20px;
  background: var(--Gray-6, #F2F2F2);
  padding: 65px 110px;
}
.calc-type.calc-type--four .calc-type__right {
  grid-column: 1/2;
  grid-row: 1/2;
  border-radius: 0;
  background: transparent;
  padding: 0;
  padding-right: 50px;
}
.calc-type.calc-type--four .calc-type__left {
  grid-column: 2/3;
  border-radius: 0;
  background: transparent;
  padding: 0;
}
.calc-type.calc-type--four .calc-type__right--title,
.calc-type.calc-type--four .calc-type__right--bottom--title,
.calc-type.calc-type--four .calc-type__right--bottom--result {
  color: var(--accent-color);
}
.calc-type.calc-type--four .calc-type__right--bottom--title {
  color: #BDBDBD;
}
.calc-type.calc-type--four .calc-type__right--bottom {
  padding-top: 0;
  border-top: none;
  padding-left: 12px;
  border-left: 3px solid var(--accent-color);
}
.calc-type.calc-type--four .calc-type__right--result {
  color: #082852;
  font-size: 60px;
}
.calc-type.calc-type--four .field-invest__input {
  border-bottom: none;
  gap: 0;
  display: block;
}
.calc-type.calc-type--four .field-invest__input::before {
  display: none;
}
.calc-type.calc-type--four .field-invest__sum {
  position: relative;
  color: var(--accent-color);
  font-size: 30px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: -10px;
}
.calc-type.calc-type--four .field-invest__sum::before {
  content: attr(data-prefix);
  font-size: 28px;
  font-weight: 600;
  transform: translateY(-1px);
  padding-right: 2px;
}
.calc-type.calc-type--four .calc-type-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  margin-top: 20px;
}
.calc-type.calc-type--four .invest-wrap {
  margin-top: 0;
}
.calc-type.calc-type--four .calc-type__template {
  gap: 5px;
}
.calc-type.calc-type--four .calc-type-inner__input {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
}
.calc-type.calc-type--four .calc-type-inner__input::before {
  position: absolute;
  left: 8px;
  content: attr(data-prefix);
  padding-right: 2px;
}
.calc-type.calc-type--four .calc-type-inner__input input {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #BDBDBD;
  background: #F0F3FF;
  padding: 8px 8px 8px 23px;
}
.calc-type.calc-type--four .calc-type-inner__input input:focus {
  border: 1px solid var(--accent-color);
}
.calc-type.calc-type--four .time-wrap {
  margin-top: 0;
}
.calc-type.calc-type--four .field-time .calc-type-inner__input input {
  padding-left: 8px;
}
.calc-type.calc-type--three {
  border-radius: 20px;
  background: var(--accent-color);
  padding: 130px 80px;
}
.calc-type.calc-type--three .calc-type__right--title {
  color: #C5EDFF;
}
.calc-type.calc-type--three .calc-type__right--result {
  background: var(--Liner, linear-gradient(91deg, #C0FF3A 17.46%, #00FFA3 93.13%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 121.429%;
  margin-top: 10px;
}
.calc-type.calc-type--three .calc-type__right {
  border-radius: 0;
  background: transparent;
  padding: 0 0 0 40px;
  padding-right: 50px;
  position: relative;
}
.calc-type.calc-type--three .calc-type__right::before {
  content: "";
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='617' fill='none'%3E%3Cpath fill='%23C5EDFF' d='M2 .667a1.333 1.333 0 1 0 0 2.666A1.333 1.333 0 0 0 2 .667Zm0 613a1.333 1.333 0 1 0 0 2.667 1.333 1.333 0 0 0 0-2.667ZM1.75 2v613h.5V2h-.5Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 4px;
  height: 580px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.calc-type.calc-type--three .calc-type__right--bottom--text strong {
  color: #C5EDFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 117.7%;
  letter-spacing: -0.48px;
}
.calc-type.calc-type--three .calc-type__right--bottom--text h2 {
  color: #FFF;
  font-size: 54px;
  line-height: 100%;
}
.calc-type.calc-type--three .calc-type__right--bottom--buttons {
  display: flex;
  gap: 20px;
  margin-top: 50px;
}
.calc-type.calc-type--three .calc-type__right--bottom--buttons .calc-type__right--button {
  background: #fff;
  color: var(--accent-color);
}
.calc-type.calc-type--three .calc-type__right--bottom--buttons .calc-type__right--button:hover {
  color: #fff;
}
.calc-type.calc-type--three .calc-type__right--bottom--buttons .button_style_4 {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}
.calc-type.calc-type--three .calc-type__left {
  border-radius: 0;
  background: transparent;
  padding: 0 120px 0 0;
}
.calc-type.calc-type--three .calc-type__right--bottom {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
  color: #fff;
}
.calc-type.calc-type--three .calc-type-inner__title {
  color: #C5EDFF;
  font-size: 24px;
  font-weight: 600;
  line-height: 208.333%;
}
.calc-type.calc-type--three .calc-type-inner {
  margin-top: 30px;
}
.calc-type.calc-type--three .calc-type-inner__input {
  position: relative;
  border-radius: 5px;
  border: 1.5px solid #C5EDFF;
  background: #FFF;
  box-shadow: 0px 0px 0px 3.55px rgba(24, 144, 255, 0.2);
  height: 70px;
}
.calc-type.calc-type--three .calc-type-inner__input::before {
  position: absolute;
  content: attr(data-prefix);
  font-size: 24px;
  font-weight: 600;
  line-height: 208.333%;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.calc-type.calc-type--three .calc-type-inner__input input {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  font-size: 24px;
  font-weight: 600;
  line-height: 208.333%;
  padding: 0 20px 2px 52px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: textfield;
}
.calc-type.calc-type--three .calc-type-inner__input input::placeholder {
  color: #BDBDBD;
}
.calc-type.calc-type--three .calc-type-inner__input input::-webkit-outer-spin-button,
.calc-type.calc-type--three .calc-type-inner__input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.calc-type.calc-type--three .number-buttons {
  position: absolute;
  right: 0;
  height: 100%;
  width: 40px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #E0E0E0;
  top: 0;
}
.calc-type.calc-type--three .number-buttons .arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50%;
  position: relative;
}
@media (any-hover: hover) {
  .calc-type.calc-type--three .number-buttons .arrow:hover::before {
    opacity: 0.5;
  }
}
.calc-type.calc-type--three .number-buttons .arrow::before {
  content: "";
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='14' fill='none'%3E%3Cpath fill='%238C8C8C' d='M11.634 3.25h-1.04a.223.223 0 0 0-.179.092l-3.94 5.43-3.939-5.43a.223.223 0 0 0-.179-.092h-1.04c-.09 0-.143.103-.09.176l4.89 6.741c.177.244.54.244.717 0l4.89-6.74a.11.11 0 0 0-.09-.177Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  width: 13px;
  height: 14px;
  transition: opacity 0.3s ease-in-out;
}
.calc-type.calc-type--three .number-buttons .up {
  border-bottom: 1px solid #E0E0E0;
  height: calc(50% + 1px);
}
.calc-type.calc-type--three .number-buttons .up::before {
  transform: rotate(180deg);
}
.calc-type.calc-type--three .field-time {
  margin-top: 35px;
}
.calc-type.calc-type--three .field-time .calc-type__field--title {
  color: #F2F2F2;
  font-size: 28px;
  font-weight: 500;
  line-height: 100%;
}
.calc-type.calc-type--three .irs--round .irs-handle {
  border-radius: 21px;
  background: var(--Liner, linear-gradient(91deg, #C0FF3A 17.46%, #00FFA3 93.13%));
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  width: 16px;
  height: 31px;
}
.calc-type.calc-type--three .irs--round .irs-bar {
  background: #C5EDFF;
  height: 8px;
}
.calc-type.calc-type--three .irs--round .irs-line {
  border-radius: 39px;
  background: #C5EDFF;
  height: 8px;
}

@media (max-width: 1200px) {
  .calculator {
    padding: 180px 0 100px;
  }
  .calculator--content {
    padding: 40px;
  }
  .calculator .container::before {
    transform: rotate(15.77deg);
    width: 161px;
    height: 161px;
    right: 0px;
    top: -140px;
  }
  .calculator_inner {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .calculator--values {
    width: 100%;
  }
  .calculator--renge_wrapper-padding {
    padding-bottom: 37px;
  }
  .calculator--renge_title_wrapper {
    padding-left: 36px;
  }
  .calculator--result {
    padding: 0;
    width: 100%;
  }
  .calculator--result_body {
    max-width: 336px;
    margin: 96px auto 0;
  }
  .calc-type {
    grid-template-columns: 1fr;
    width: calc(100% + 30px);
    margin-left: -15px;
  }
  .calc-type .calc-type__right {
    grid-row: 1/2;
    border-radius: 0;
    padding: 60px 30px 60px;
  }
  .calc-type .calc-type__left {
    padding: 40px 30px;
    border-radius: 0;
  }
  .calc-type .calc-type__right--bottom {
    display: none;
  }
  .calc-type .calc-type__right--result {
    line-height: 100%;
    font-size: 52px;
  }
  .calc-type .calc-type__right--title {
    font-size: 24px;
  }
  .calc-type .calc-type__template {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    gap: 0;
    margin-top: 20px;
  }
  .calc-type .invest-button,
  .calc-type .time-button {
    text-align: center;
    justify-content: center;
  }
  .calc-type .field-time {
    margin-top: 30px;
  }
  .calc-type .time-wrap {
    margin-top: 10px;
  }
  .calc-type.calc-type--four {
    gap: 60px;
  }
  .calc-type.calc-type--four .calc-type__left {
    grid-column: 1/2;
  }
  .calc-type.calc-type--four .calc-type-inner {
    flex-direction: column;
    gap: 15px;
  }
  .calc-type.calc-type--four .calc-type__template {
    width: 100%;
  }
  .calc-type.calc-type--four .field-time {
    margin-top: 50px;
  }
  .calc-type.calc-type--three {
    padding: 60px 30px;
    gap: 50px;
  }
  .calc-type.calc-type--three .calc-type__right {
    padding: 0;
    grid-row: 2/3;
  }
  .calc-type.calc-type--three .calc-type__right::before {
    display: none;
  }
  .calc-type.calc-type--three .calc-type__right--bottom {
    display: block;
  }
  .calc-type.calc-type--three .calc-type__right--bottom--buttons {
    display: none;
  }
}
@media (max-width: 720px) {
  .calculator {
    padding: 50px 0;
  }
  .calculator--content {
    padding: 40px 20px;
  }
  .calculator .container::before {
    width: 75px;
    height: 75px;
    right: -3px;
    top: -40px;
  }
  .calculator--range_form {
    padding-top: 28px;
  }
  .calculator--renge_title_wrapper {
    padding-left: 30px;
  }
  .calculator--renge_wrapper {
    display: flex;
    flex-direction: column;
  }
  .calculator--renge_wrapper-padding {
    padding-bottom: 33px;
  }
  .calculator--renge_body {
    order: 1;
    padding: 0;
  }
  .calculator--renge_title_wrapper {
    padding: 0;
    text-align: center;
  }
  .calculator--renge_title {
    font-size: 16px;
    line-height: 19px;
  }
  .calculator--renge_result {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 10px;
  }
  .calculator--result_body {
    margin: 51px auto 0;
    max-width: 276px;
    height: 106px;
    font-size: 30px;
    line-height: 36px;
  }
  .calc-type .calc-type__right {
    padding: 40px 15px;
  }
  .calc-type .calc-type__left {
    padding: 40px 15px;
  }
  .calc-type.calc-type--four {
    padding: 60px 15px;
    border-radius: 0;
  }
  .calc-type.calc-type--four .calc-type__right--title {
    font-size: 36px;
  }
  .calc-type.calc-type--four .calc-type__right--result {
    font-size: 52px;
  }
  .calc-type.calc-type--three {
    border-radius: 0;
    padding: 60px 15px;
  }
  .calc-type.calc-type--three .calc-type__right--bottom--text h2 {
    font-size: 40px;
  }
  .calc-type.calc-type--three .calc-type__left {
    padding-right: 0;
  }
}
.cards__wrapper {
  display: grid;
  gap: 20px;
}
.cards__wrapper.columns--1 {
  grid-template-columns: 1fr;
}
.cards__wrapper.columns--2 {
  grid-template-columns: repeat(2, 1fr);
}
.cards__wrapper.columns--3 {
  grid-template-columns: repeat(3, 1fr);
}
.cards__wrapper.columns--4 {
  grid-template-columns: repeat(4, 1fr);
}
.cards__wrapper.icon-card .cards-block {
  flex-direction: column;
  gap: 0;
}
.cards__wrapper.icon-card .cards-block__title {
  margin-bottom: 0 !important;
}
.cards__wrapper.image-left .cards-block__image, .cards__wrapper.image-right .cards-block__image, .cards__wrapper.image-bottom .cards-block__image {
  min-width: 300px;
  margin-bottom: 0;
}
.cards__wrapper.image-left .cards-block {
  display: flex;
}
.cards__wrapper.image-right .cards-block {
  flex-direction: row-reverse;
  display: flex;
}
.cards__wrapper.image-bottom .cards-block {
  flex-direction: column-reverse;
  display: flex;
}
.cards__wrapper.image-bottom .cards-block__image {
  height: 100%;
}

.cards-block {
  padding: 30px;
  gap: 30px;
}
.cards-block.image-left .cards-block__image, .cards-block.image-right .cards-block__image, .cards-block.image-bottom .cards-block__image {
  min-width: 300px;
  margin-bottom: 0;
}
.cards-block.image-left {
  flex-direction: row;
  display: flex;
}
.cards-block.image-right {
  flex-direction: row-reverse;
  display: flex;
}
.cards-block.image-bottom {
  flex-direction: column-reverse;
  display: flex;
}
.cards-block.columns--1 {
  grid-column: 1/2;
}
.cards-block.columns--2 {
  grid-column: 1/3;
}
.cards-block.columns--3 {
  grid-column: 1/4;
}
.cards-block.columns--4 {
  grid-column: 1/5;
}

.cards-block__image {
  margin-bottom: 30px;
  height: 230px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cards-block__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.cards-block-icons__top {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.cards-block__icon {
  width: 50px;
  min-width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cards-block__icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.cards-block__title {
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .cards-block__text {
    font-size: 16px;
  }
  .cards-block__text p {
    font-size: 16px;
  }
  .cards-block {
    padding: 20px;
  }
  .cards__wrapper {
    gap: 15px;
  }
  .cards-block__image {
    margin-bottom: 20px;
    height: 140px;
  }
  .cards__wrapper.columns--3,
  .cards__wrapper.columns--4,
  .cards-block.columns--3,
  .cards-block.columns--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards-block.columns--3,
  .cards-block.columns--4 {
    grid-column: span 1;
  }
  .cards__wrapper.image-left .cards-block__image,
  .cards__wrapper.image-right .cards-block__image {
    min-width: 260px;
    height: 100%;
  }
  .cards-block.image-left,
  .cards-block.image-right {
    flex-direction: column !important;
  }
}
@media (max-width: 720px) {
  .cards__wrapper.image-right .cards-block,
  .cards__wrapper.image-left .cards-block {
    flex-direction: column !important;
  }
  .cards__wrapper.columns--2,
  .cards__wrapper.columns--3,
  .cards__wrapper.columns--4,
  .cards-block.columns--3,
  .cards-block.columns--4 {
    grid-template-columns: 1fr;
  }
  .cards--more .cards__wrapper.columns--2,
  .cards--more .cards__wrapper.columns--3,
  .cards--more .cards__wrapper.columns--4,
  .cards--more .cards-block.columns--3,
  .cards--more .cards-block.columns--4 {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    width: calc(100% + 15px);
    padding-right: 15px;
    scroll-snap-type: x mandatory;
  }
  .cards--more .cards__wrapper.columns--2 .cards-block,
  .cards--more .cards__wrapper.columns--3 .cards-block,
  .cards--more .cards__wrapper.columns--4 .cards-block,
  .cards--more .cards-block.columns--3 .cards-block,
  .cards--more .cards-block.columns--4 .cards-block {
    min-width: 80vw;
    scroll-snap-align: start;
  }
  .cards-block.columns--3,
  .cards-block.columns--4 {
    grid-column: 1/2;
  }
}
.hero {
  position: relative;
  z-index: 1;
}

.acfe-flexible-placeholder .hero {
  z-index: 1;
}

.hero__wrapper {
  display: grid;
  grid-template-columns: 65% 35%;
}
.hero__wrapper.form-right .hero__form {
  order: 2;
}
.hero__wrapper.form-right .hero__content {
  order: 1;
  padding-right: 80px;
}
.hero__wrapper.form-left {
  grid-template-columns: 35% 65%;
}
.hero__wrapper.form-left .hero__form {
  order: 1;
}
.hero__wrapper.form-left .hero__content {
  padding-left: 80px;
  grid-column: 2/3;
  order: 2;
}
.hero__wrapper.text-left, .hero__wrapper.text-right {
  grid-template-columns: 1fr;
}
.hero__wrapper.text-left .hero__content, .hero__wrapper.text-right .hero__content {
  display: grid;
  grid-template-columns: 60% 40%;
  padding-right: 0;
  padding-left: 0;
}
.hero__wrapper.text-left .hero__text {
  padding-right: 50px;
  grid-column: 1/2;
  grid-row: 1/2;
}
.hero__wrapper.text-right .hero__content {
  grid-template-columns: 40% 60%;
}
.hero__wrapper.text-right .hero__text {
  padding-left: 50px;
  grid-column: 2/3;
  grid-row: 1/2;
}

.hero__video {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 430px;
}
.hero__video video,
.hero__video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .hero__wrapper {
    grid-template-columns: 1fr !important;
  }
  .hero__wrapper.form-left .hero__content {
    grid-column: 1/2;
  }
  .hero .hero__wrapper .hero__content {
    padding-right: 0;
    padding-left: 0;
    margin-bottom: 40px;
    grid-template-columns: 1fr;
  }
  .hero__image {
    height: 100%;
    height: 360px;
  }
  .hero__wrapper.text-left .hero__content,
  .hero__wrapper.text-right .hero__content {
    grid-template-columns: 1fr;
    height: auto;
    margin-bottom: 0;
  }
  .hero__wrapper.text-left .hero__content .hero__text,
  .hero__wrapper.text-right .hero__content .hero__text {
    grid-column: 1/2;
    grid-row: 2/3;
    margin-top: 35px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 720px) {
  .blur-overley::before {
    border-radius: 0 !important;
  }
  .hero__video {
    height: 260px;
  }
}
.columns__row {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  margin-bottom: 60px;
}
.columns__row:last-child {
  margin-bottom: 0;
}

.column__img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .columns__row {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .columns__row .column {
    width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.faq__wrapper.type-1 .faq-item__question.active {
  color: var(--accent-color);
}
.faq__wrapper.type-2 .faq-item {
  margin-bottom: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.faq__wrapper.type-2 .faq-item.active {
  transform: scale(1.01);
}
.faq__wrapper.type-2 .faq-item__question {
  padding-left: 50px;
}
.faq__wrapper.type-2 .faq-item__question .faq-item__question--plus {
  top: calc(50% + 7.5px);
}
.faq__wrapper.type-2 .faq-item__answer {
  padding: 0 120px 15px 50px;
}
.faq__wrapper.type-3 {
  display: grid;
  grid-template-columns: 40% 60%;
}
.faq__wrapper.type-3 .faq__list {
  padding-left: 40px;
  margin-top: -25px;
}
.faq__wrapper.type-3 .faq-item__question {
  gap: 15px;
  padding: 30px 100px 15px 95px;
}
.faq__wrapper.type-3 .faq-item__question .faq-item__question--plus {
  top: calc(50% + 7.5px);
}
.faq__wrapper.type-3 .faq-item__count {
  font-size: 20px;
  width: 30px;
  min-width: 30px;
}
.faq__wrapper.type-3 .faq-item__answer {
  padding: 0 60px 15px 95px;
}

.faq-item {
  transition: border 0.3s ease-in-out, transform 0.3s ease-in-out;
  padding-bottom: 15px;
  border-bottom: 1px solid #E0E0E0;
}
.faq-item:last-child {
  border-bottom: none;
}

.faq-item__question {
  font-size: calc(var(--text-size-h3) - 4px);
  font-weight: 700;
  padding: 30px 120px 15px 130px;
  position: relative;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
  line-height: 130%;
  gap: 50px;
  user-select: none;
}
.faq-item__question .faq-item__question--plus {
  position: absolute;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  color: var(--accent-color);
  background-color: rgba(241, 241, 241, 0.9450980392);
}
.faq-item__question svg {
  width: 22px;
  height: 22px;
  transform: rotate(0);
  transition: transform 0.3s ease-in-out;
  stroke: currentColor;
}
.faq-item__question span {
  word-spacing: -4px;
}
.faq-item__question.active .faq-item__question--plus svg {
  transform: rotate(45deg) !important;
}

.faq-item__count {
  position: absolute;
  color: var(--accent-color);
  font-size: 44px;
  font-weight: 700;
  display: block;
  width: 60px;
  left: 50px;
}

.faq-item__answer {
  padding: 0 120px 15px 130px;
  display: none;
  font-size: 16px;
  opacity: 0.9;
}

@media (max-width: 1200px) {
  .faq__wrapper.type-1 .faq-item__question {
    padding: 30px 85px 15px 85px;
  }
  .faq__wrapper.type-1 .faq-item__answer {
    padding: 0 80px 15px 85px;
  }
  .faq__wrapper.type-1 .faq-item__count {
    font-size: 38px;
    top: 40px;
  }
  .faq-item__answer {
    font-size: 14px;
  }
  .faq-item__answer p {
    font-size: 14px;
  }
  .faq-item__question {
    font-size: calc(var(--text-size-h3) - 6px);
  }
  .faq__wrapper.type-2 .faq-item__question {
    padding: 30px 90px 15px 30px;
  }
  .faq__wrapper.type-2 .faq-item__answer {
    padding: 0 90px 15px 30px;
  }
  .faq__wrapper.type-3 {
    grid-template-columns: 1fr;
  }
  .faq__wrapper.type-3 .faq__list {
    padding-left: 0;
    margin-top: 20px;
  }
  .faq__wrapper.type-3 .faq-item__question {
    padding: 20px 90px 10px 60px;
  }
  .faq-item__question .faq-item__question--plus {
    right: 15px;
  }
  .faq-item__count {
    left: 20px;
  }
  .faq-item {
    padding-bottom: 10px;
  }
  .faq__wrapper.type-3 .faq-item__answer {
    padding: 0 60px 10px 60px;
  }
  .faq__wrapper.type-3 .faq-item__question::before {
    right: 4px;
    width: 36px;
    height: 36px;
    top: 16px;
  }
}
@media (max-width: 720px) {
  .faq-item__question {
    font-size: calc(var(--text-size-h3) - 8px);
  }
  .faq__wrapper.type-2 .faq-item__question .faq-item__question--plus {
    right: 15px;
  }
  .faq__wrapper.type-2 .faq-item__answer {
    padding: 0 30px 15px 30px;
  }
  .faq__wrapper.type-1 .faq-item__question,
  .faq__wrapper.type-3 .faq-item__question {
    flex-direction: column;
    padding: 60px 15px 15px 15px;
    gap: 20px;
  }
  .faq__wrapper.type-1 .faq-item__count,
  .faq__wrapper.type-3 .faq-item__count {
    font-size: 32px;
    left: 15px;
    top: 15px;
  }
  .faq__wrapper.type-1 .faq-item__question .faq-item__question--plus,
  .faq__wrapper.type-3 .faq-item__question .faq-item__question--plus {
    top: 17px;
    transform: translateY(0);
  }
  .faq__wrapper.type-1 .faq-item__answer,
  .faq__wrapper.type-3 .faq-item__answer {
    padding: 0px 30px 15px 15px;
  }
  .faq-item__count {
    left: 10px;
  }
  .faq-item__question::before {
    width: 39px;
    height: 39px;
  }
}
.reviews__wrapper.type-1 .reviews-item__author {
  display: flex;
  align-items: center;
  gap: 20px;
}
.reviews__wrapper.type-1 .reviews-item__text {
  margin-top: 15px;
}
.reviews__wrapper.type-2 .reviews-item {
  display: flex;
  gap: 10px;
}
.reviews__wrapper.type-2 .reviews-item__author {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 130px;
  width: 130px;
}
.reviews__wrapper.type-3 .reviews-item {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  gap: 20px;
}
.reviews__wrapper.type-3 .reviews-item__author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 30px;
  width: 100%;
}
.reviews__wrapper .reviews-swiper {
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 50px;
}

body.wp-admin .reviews .type-2 .swiper-wrapper .reviews-item,
body.wp-admin .reviews .type-3 .swiper-wrapper .reviews-item {
  display: flex;
}
body.wp-admin .reviews .swiper-wrapper {
  display: grid;
  gap: 30px;
}
body.wp-admin .reviews .swiper-wrapper .reviews-item {
  display: block;
}
body.wp-admin .reviews .swiper-wrapper.reviews--col-4 {
  grid-template-columns: repeat(4, 1fr);
}
body.wp-admin .reviews .swiper-wrapper.reviews--col-4 .reviews-item:nth-child(n+5) {
  display: none;
}
body.wp-admin .reviews .swiper-wrapper.reviews--col-3 {
  grid-template-columns: repeat(3, 1fr);
}
body.wp-admin .reviews .swiper-wrapper.reviews--col-3 .reviews-item:nth-child(n+4) {
  display: none;
}
body.wp-admin .reviews .swiper-wrapper.reviews--col-2 {
  grid-template-columns: repeat(2, 1fr);
}
body.wp-admin .reviews .swiper-wrapper.reviews--col-2 .reviews-item:nth-child(n+3) {
  display: none;
}
body.wp-admin .reviews .swiper-wrapper.reviews--col-1 {
  grid-template-columns: repeat(1, 1fr);
}
body.wp-admin .reviews .swiper-wrapper.reviews--col-1 .reviews-item:nth-child(n+2) {
  display: none;
}

.reviews-item {
  padding: 20px;
  height: auto;
  min-height: 100%;
}

.reviews-item__image {
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.reviews-item__image img {
  width: 100%;
  object-fit: cover;
}

.reviews-item__name {
  font-size: 20px;
  font-weight: 700;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  color: currentColor;
  font-size: 28px;
  font-weight: 700;
}

.swiper-button-next,
.swiper-button-prev {
  top: calc(50% - 25px);
}

.reviews-item__text {
  opacity: 0.8;
  transition: opacity 0.3s ease-in-out;
  font-size: calc(var(--default-text) - 2px);
}
.reviews-item__text:hover {
  opacity: 1;
}

.swiper-pagination-bullet {
  background-color: currentColor;
  border-radius: 15px;
  transition: width 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

@media (max-width: 1200px) {
  .reviews__wrapper .reviews-swiper {
    max-width: 620px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    top: calc(50% + 25px);
  }
}
@media (max-width: 720px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
  .reviews__wrapper .reviews-swiper {
    max-width: 100%;
  }
}
.seo__wrapper.image-text {
  display: grid;
  grid-template-columns: repeat(2, 50%);
}
.seo__wrapper.only-text {
  grid-template-columns: 100%;
}
.seo__wrapper.only-text .seo__image {
  display: none;
}
.seo__wrapper.only-text .seo__text {
  padding-right: 0;
}
.seo__wrapper.text-right {
  grid-template-columns: 50% 50%;
}
.seo__wrapper.text-right .seo__image {
  order: 1;
}
.seo__wrapper.text-right .seo__text {
  order: 2;
  padding-right: 0;
  padding-left: 40px;
  grid-column: 2/3;
}

.seo__text-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.seo__text-wrap .seo__text {
  padding-right: 0;
}

.seo__image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.seo__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.seo__text {
  padding-right: 40px;
}

.seo-block__top-title {
  margin-bottom: 30px;
}

.seo-block__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.seo-block__wrapper.text_left .seo-block__image {
  order: 2;
}
.seo-block__wrapper.text_left .seo-block__text {
  order: 1;
}

.seo-block__image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.seo-block__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .seo__wrapper,
  .seo-block__wrapper {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }
  .seo__image {
    grid-row: 2/3;
  }
  .seo-block__image {
    grid-row: 1/2;
  }
  .seo__text,
  .seo__wrapper.text-right .seo__text {
    padding-right: 0;
    padding-left: 0;
    grid-column: 1/2;
  }
  .seo__text-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .body.scroll-hide {
    overflow: hidden;
  }
}
.steps-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  padding-top: 40px;
  margin-top: 85px;
  gap: 30px;
}
.steps-columns.not-line {
  padding-top: 0;
  margin-top: 0;
}
.steps-columns.not-line::before {
  display: none;
}
.steps-columns.not-line .steps-item::before {
  display: none;
}
.steps-columns::before {
  content: "";
  position: absolute;
  background: linear-gradient(to left, transparent 0%, var(--accent-color) 50%, transparent 100%);
  background-repeat: no-repeat;
  background-size: cover;
  width: 110%;
  height: 2px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.steps-columns .steps-item {
  position: relative;
}
.steps-columns .steps-item-wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 20px;
  position: relative;
  opacity: 0.3;
  transition: all 0.3s ease-in-out;
}
.steps-columns .steps-item-wrap.active {
  opacity: 1;
}
.steps-columns .steps-item__title {
  margin-top: 20px;
}
.steps-columns .steps-item__label {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--accent-color);
}
.steps-columns .steps-item__label::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--accent-color);
  left: 50%;
  transform: translateX(-50%);
  bottom: -24px;
}

.steps-item__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.steps-horizontal {
  display: grid;
  grid-template-columns: 55% 45%;
  padding: 20px 0;
}
.steps-horizontal .steps-item {
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}
.steps-horizontal .steps-item:last-child {
  margin-bottom: 0;
}
.steps-horizontal .steps-item.active .steps-item__title {
  color: var(--accent-color);
}
.steps-horizontal .steps-item.active .steps-item__text {
  max-height: 1000px;
}
.steps-horizontal .steps-item__title {
  cursor: pointer;
  transition: color 0.3s ease-in-out;
}
.steps-horizontal .steps-item__text {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.steps-horizontal__list {
  padding-right: 50px;
}

.steps-horizontal__image {
  width: 100%;
  height: 400px;
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}
.steps-horizontal__image.fade {
  transform: translateY(20px);
  opacity: 0.3;
}
.steps-horizontal__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .steps-columns {
    grid-template-columns: 1fr;
    row-gap: 90px;
    margin-top: 60px;
  }
  .steps-columns.not-line {
    row-gap: 45px;
  }
  .steps-columns::before {
    display: none;
  }
  .steps-columns .steps-item .steps-item__title,
  .steps-columns .steps-item .steps-item__text,
  .steps-columns .steps-item .steps-item__image {
    opacity: 1 !important;
  }
  .steps-columns .steps-item__label {
    top: -55px;
  }
  .steps-columns .steps-item::before {
    content: "";
    position: absolute;
    background: linear-gradient(to left, transparent 0%, var(--accent-color) 50%, transparent 100%);
    background-repeat: no-repeat;
    background-size: cover;
    width: 110%;
    height: 2px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }
  .steps-horizontal__image {
    height: 290px;
  }
  .steps-horizontal__list {
    padding-right: 25px;
  }
}
@media (max-width: 720px) {
  .steps-horizontal {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  .steps-horizontal .steps-item {
    text-align: center;
  }
  .steps-horizontal .steps-item .steps-horizontal__image {
    justify-content: center;
    align-items: center;
    display: flex !important;
    height: auto;
    margin-bottom: 20px;
  }
  .steps-horizontal__image {
    display: none;
  }
  .steps-columns {
    row-gap: 40px;
  }
  .steps-columns.not-line {
    row-gap: 35px;
  }
}
/* Base */
/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

ul,
ul li {
  list-style: none;
}

img,
svg {
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

html {
  scroll-behavior: smooth;
}

body .page-site {
  background-color: var(--page-background);
}

.page-template section,
.acf-fields section,
body .page-site {
  color: var(--text-color);
  font-size: var(--default-text);
  font-family: var(--main-font);
}

.header-search-btn {
  display: none !important;
}

.fade {
  opacity: 0.5;
}

body:not(.wp-admin).scroll-hide {
  overflow: hidden;
}

body.wp-admin .acf-fields section {
  pointer-events: none;
}

section {
  position: relative;
  z-index: 0;
  scroll-margin-top: 50px;
}

.search {
  padding-top: 100px;
}

.sec-background,
.page-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
  pointer-events: none;
}

.page-background {
  position: fixed;
  z-index: 0;
}

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

.page-site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}

.blur-overley {
  position: relative;
}
.blur-overley::before {
  position: absolute;
  content: "";
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  z-index: -1;
  border-radius: 10px;
}

.decor-image {
  position: absolute;
  z-index: -1;
  max-width: unset;
  width: unset;
}

.iframe-block iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shortcode__btn {
  margin-top: 30px;
}
.shortcode__btn--left {
  margin-right: auto;
}
.shortcode__btn--right {
  margin-left: auto;
}
.shortcode__btn--center {
  margin: 30px auto 0;
}

.post-list {
  position: relative;
}

#wpd-bubble-wrapper {
  left: 30px !important;
  bottom: 30px !important;
}

.dashicons-button:before {
  font-family: "dashicons";
  content: "\f11a";
}

/* .select2-search {
	display: none !important;
} */
.select2-container.-acf {
  z-index: 0 !important;
}

a.wyp-btn .dashicons {
  padding-right: 42px !important;
}

.page-template-page-builder {
  padding-top: 100px;
}

.sec__top {
  margin-bottom: 50px;
}

.sec__bottom {
  margin-top: 50px;
}

.text-section {
  padding: 130px 0;
}
.text-section table {
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--Button-orange, #F2994A);
  font-size: 20px;
  font-weight: 700;
}
.rating svg {
  width: 25px;
  height: 24px;
  margin-bottom: 3px;
}

@media (max-width: 1200px) {
  .container {
    max-width: 720px;
  }
  .page-template-page-home {
    padding-top: 140px;
  }
  .sec__top {
    margin-bottom: 35px;
  }
  .sec__bottom {
    margin-top: 35px;
  }
  section:not(section:first-of-type) {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .sec__top {
    margin-bottom: 25px;
  }
  .decor-image {
    display: none;
  }
}
/* body .page-site a,
.page-template a,
.acf-fields a {
    color: currentColor;
} */
h1,
body.wp-admin h1 {
  font-size: var(--text-size-h1);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  margin-top: unset;
  color: currentColor;
}

body.wp-admin h1.wp-heading-inline,
body.wp-admin .media-frame-title h1 {
  font-size: initial;
  font-weight: initial;
  line-height: initial;
  margin-bottom: initial;
}

body.wp-admin .media-frame-title h1 {
  font-size: 22px;
  line-height: 228%;
}

h2,
#poststuff .acfe-fc-preview h2 {
  font-size: var(--text-size-h2);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  margin-top: unset;
  color: currentColor;
}

body.wp-admin h2.hndle,
body.wp-admin h2.media-frame-menu-heading,
body.wp-admin h2.media-attachments-filter-heading {
  font-size: initial;
  font-weight: initial;
  line-height: initial;
  margin-bottom: initial;
}

section p {
  font-size: var(--default-text);
  line-height: 140%;
  margin-bottom: 20px;
  margin-top: 0;
}
section p:last-child {
  margin-bottom: 0;
}

h3,
body.wp-admin h3 {
  font-size: var(--text-size-h3);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  margin-top: unset;
  color: currentColor;
}

h3.wp-heading-inline {
  font-size: initial;
  font-weight: initial;
  line-height: initial;
  margin-bottom: initial;
}

h4,
body.wp-admin h4 {
  font-size: var(--text-size-h4);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  margin-top: unset;
  color: currentColor;
}

h3.wp-heading-inline {
  font-size: initial;
  font-weight: initial;
  line-height: initial;
  margin-bottom: initial;
}

section ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
section ul li:last-child {
  margin-bottom: 0;
}
section ul li::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--text-color);
  left: 6px;
  top: 9px;
}

@media (max-width: 1200px) {
  h1,
  body.wp-admin h1 {
    font-size: calc(var(--text-size-h1) * 0.8);
  }
  br {
    display: none !important;
  }
  p span {
    font-size: var(--default-text) !important;
  }
  h2,
  #poststuff .acfe-fc-preview h2 {
    font-size: calc(var(--text-size-h2) * 0.8);
  }
  h3,
  body.wp-admin h3 {
    font-size: calc(var(--text-size-h3) * 0.9);
    margin-bottom: 15px;
  }
  h3 span,
  body.wp-admin h3 span {
    font-size: unset !important;
  }
  h4,
  body.wp-admin h4 {
    font-size: calc(var(--text-size-h4) * 0.9);
    margin-bottom: 15px;
  }
  h4 span,
  body.wp-admin h4 span {
    font-size: unset !important;
  }
}
@media (max-width: 720px) {
  h1,
  body.wp-admin h1 {
    margin-bottom: 20px;
    line-height: 1.1;
  }
  .sec__top {
    margin-bottom: 30px;
  }
  .hero__image {
    height: auto;
  }
  section p,
  p span {
    font-size: calc(var(--default-text) * 0.9) !important;
  }
  h2,
  #poststuff .acfe-fc-preview h2 {
    font-size: calc(var(--text-size-h2) * 0.7);
    line-height: 1.1;
  }
  h3,
  body.wp-admin h3 {
    font-size: calc(var(--text-size-h3) * 0.8);
  }
  h4,
  body.wp-admin h4 {
    font-size: calc(var(--text-size-h4) * 0.8);
  }
}
.btn {
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 8px 25px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  transition: all 0.3s ease-in-out;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn span::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 120%;
  background: var(--accent-color-hover);
  left: 50%;
  transform: translateX(-50%) translateY(-130%);
  transition: all 0.3s ease-in-out;
  z-index: -1;
}
.btn.button_style_1 {
  border-radius: 0;
}
.btn.button_style_2 {
  border-radius: 50px;
}
.btn.button_style_3 {
  transform: skewX(-20deg);
}
.btn.button_style_3 span {
  transform: skewX(20deg);
}
.btn.button_style_4 {
  background-color: transparent;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
}
.btn.button_style_4:hover {
  opacity: 1;
  background-color: var(--accent-color);
  color: #fff;
}
@media (any-hover: hover) {
  .btn:hover {
    /* background: var(--accent-color-hover); */
  }
  .btn:hover span::before {
    transform: translateX(-50%) translateY(-30%);
  }
}
.btn.btn--center {
  margin: 40px auto 0 auto;
}
.btn.btn--grey {
  background: rgba(17, 17, 20, 0.1);
  color: #111114;
}
@media (any-hover: hover) {
  .btn.btn--grey:hover {
    background: rgba(17, 17, 20, 0.2);
  }
}

.btn-show-form {
  position: fixed;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--accent-color);
  right: 30px;
  bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.btn-show-form:hover svg {
  animation: btn-show-form-icon ease-in-out 0.6s alternate;
}
.btn-show-form p {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.btn-show-form::before, .btn-show-form::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--accent-color);
  opacity: 0.5;
  border-radius: 50%;
  z-index: -1;
  animation: btn-show-form 1.6s infinite;
}
.btn-show-form::after {
  animation-delay: 0.3s;
  opacity: 0.2;
  animation: btn-show-form2 1.6s infinite;
}
.btn-show-form svg {
  width: 25px;
  height: 25px;
  fill: var(--contrast-color);
}

@keyframes btn-show-form {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes btn-show-form2 {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.4);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes btn-show-form-icon {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(50px);
    opacity: 0;
  }
  51% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@media (max-width: 1200px) {
  .btn.btn--center {
    margin: 30px auto 0 auto;
  }
}
/* Utils */
/* Blocks */
.archive .header.header--transparent {
  background-color: var(--header-background);
}
.archive .header.header--hide {
  transform: translateY(0);
}

.archive-nav {
  margin-top: 40px;
}

.archive-nav__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.breadcrumb {
  font-size: 16px;
  font-weight: 600;
}
.breadcrumb span span:last-child {
  opacity: 0.6;
}
.breadcrumb a {
  color: var(--text-color);
}

.archive-top {
  margin-top: 50px;
  text-align: center;
}

.archive-tags {
  max-width: 680px;
  margin: 40px auto 0;
}
.archive-tags ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.archive-tags ul a {
  border: 1px solid var(--accent-color);
  padding: 5px 9px;
  color: var(--accent-color);
  font-size: 14px;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .archive-tags ul a:hover {
    background-color: var(--accent-color);
    color: var(--page-background);
  }
}

.archive-main {
  margin-top: 70px;
}
.archive-main.radius-none .sidebar-top-posts {
  border-radius: 0;
}
.archive-main.radius-none .archive-main__main-post {
  border-radius: 0;
}

.archive-main__main-post {
  border-radius: 20px;
}

.archive-main__wrapper {
  display: grid;
  grid-template-columns: calc(65% - 30px) 35%;
  justify-content: space-between;
}

.sidebar-top-posts {
  border: 1px solid #FFF;
  background: #FFF;
  box-shadow: 0px 18px 35px 0px rgba(190, 190, 190, 0.15);
  padding: 20px 30px;
  border-radius: 20px;
}

.post-type-tabs {
  display: flex;
  align-items: center;
  gap: 20px;
  gap: 50px;
  margin-bottom: 22px;
  border-radius: 20px;
}

.post-type-tabs__tab {
  color: var(--dark-blue, #010831);
  font-size: 32px;
  font-weight: 700;
}
.post-type-tabs__tab.active {
  color: var(--accent-color);
}

.archive-grid {
  margin-top: 70px;
}

.archive-grid__title {
  color: #010831;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 30px;
}

.archive-grid__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  row-gap: 50px;
  position: relative;
  transition: height 0.5s ease;
}

.loading-indicator {
  position: absolute;
  width: 100%;
  height: calc(100% - 95px);
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
  z-index: 2;
}
.loading-indicator.is-active {
  opacity: 1;
}
.loading-indicator .loader-post {
  color: #2F80ED;
  position: absolute;
  font-size: 11px;
  background: #2F80ED;
  animation: escaleY 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
  animation-delay: -0.16s;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
}
.loading-indicator .loader-post:before,
.loading-indicator .loader-post:after {
  content: "";
  position: absolute;
  top: 0;
  left: 2em;
  background: #2F80ED;
  width: 1em;
  height: 4em;
  animation: escaleY 1s infinite ease-in-out;
}
.loading-indicator .loader-post:before {
  left: -2em;
  animation-delay: -0.32s;
}

@keyframes escaleY {
  0%, 80%, 100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}
.pagination-wrapper {
  margin-top: 50px;
  font-size: 18px;
  font-weight: 400;
  line-height: 155.556%;
}
.pagination-wrapper .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.pagination-wrapper .disabled {
  opacity: 0.5;
  pointer-events: none;
}
.pagination-wrapper .page-numbers.next,
.pagination-wrapper .page-numbers.prev {
  display: flex;
  gap: 8px;
  width: 60px;
}
.pagination-wrapper .page-numbers.next::before,
.pagination-wrapper .page-numbers.prev::before {
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  width: 16px;
  height: 16px;
}
.pagination-wrapper .page-numbers.next {
  flex-direction: row-reverse;
}
.pagination-wrapper .page-numbers.next::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='16' fill='none'%3E%3Cpath stroke='%23010831' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.6' d='M4.171 8h9.333m0 0L8.838 3.333M13.504 8l-4.666 4.667'/%3E%3C/svg%3E");
}
.pagination-wrapper .page-numbers.prev::before {
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='16' fill='none'%3E%3Cpath stroke='%23010831' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.6' d='M4.171 8h9.333m0 0L8.838 3.333M13.504 8l-4.666 4.667'/%3E%3C/svg%3E");
}
.pagination-wrapper span,
.pagination-wrapper a {
  padding: 8px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}
.pagination-wrapper span.current,
.pagination-wrapper a.current {
  background-color: #0D173F;
  color: white;
}

.article-page {
  margin-top: 60px;
}

.single {
  background-color: #F9FCFF;
  color: #1F2A50;
}
.single .container {
  max-width: 1430px;
}
.single .header.header--hide {
  transform: translateY(0);
}
.single .header {
  padding: 5px 0;
}
.single .header.header--transparent {
  background-color: var(--header-background);
}
.single .page-site {
  overflow: visible;
}
.single h1,
.single h2,
.single h3,
.single h4 {
  scroll-margin-top: 100px;
}

.article-page__wrapper {
  display: grid;
  grid-template-columns: minmax(170px, 200px) minmax(620px, 690px) minmax(300px, 360px);
  gap: 30px;
  justify-content: space-between;
}

.author-block {
  display: flex;
  align-items: center;
}

.author-block--small {
  gap: 15px;
}
.author-block--small .author-block__img {
  width: 50px;
  height: 50px;
}
.author-block--small .author-block__name {
  color: var(--accent-color);
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
}

.author-page .author-block__img {
  width: 160px;
  height: 160px;
}
.author-page .author-block__position {
  margin-top: 10px;
}

.author-block__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.author-block__position {
  color: #A7A9B1;
  font-size: 14px;
  font-weight: 400;
  line-height: 214.286%;
}

.author-block__descr {
  margin-top: 10px;
  max-width: 451px;
}

.article-anchor {
  position: sticky;
  top: 100px;
  margin-top: 108px;
}

.article-anchor__title {
  color: #010831;
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 19px;
}

.article-anchor__list a {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow-y: hidden;
  color: #010831;
  font-size: 14px;
  line-height: 214.286%;
  padding: 3px 0;
  transition: color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
  position: relative;
}
.article-anchor__list a::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 0;
  background: var(--accent-color);
  bottom: 6px;
  left: 12px;
  transition: width 0.3s ease-in-out;
}
.article-anchor__list a:hover {
  color: var(--accent-color);
}
.article-anchor__list a:hover::before {
  width: 100px;
}
.article-anchor__list .h3 {
  padding-left: 10px;
}
.article-anchor__list .h4 {
  padding-left: 20px;
}
.article-anchor__list .h4 a {
  font-size: 12px;
}

.article-page__center .post-card__tags {
  position: static;
}
.article-page__center .shortcode__btn {
  margin-bottom: 30px;
}

.article-info {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}

.article-content__text h1 {
  font-size: 44px;
}
.article-content__text h2 {
  font-size: 38px;
}
.article-content__text h3 {
  font-size: 34px;
}
.article-content__text p {
  margin-bottom: 30px;
}
.article-content__text ul,
.article-content__text ol {
  margin-bottom: 20px;
}
.article-content__text ul li,
.article-content__text ol li {
  margin-bottom: 10px;
}
.article-content__text ul li:last-child,
.article-content__text ol li:last-child {
  margin-bottom: 0;
}
.article-content__text ul li {
  padding-left: 26px;
  position: relative;
}
.article-content__text ul li::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--text-color);
  left: 7px;
  top: 9px;
}
.article-content__text ol li {
  margin-left: 20px;
}
.article-content__text > p > img {
  width: 100%;
}

.article-offer {
  padding: 20px 60px;
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: space-between;
  border-radius: 10px;
  margin: 60px 0;
}

blockquote {
  position: relative;
  margin: 60px 0;
  padding: 65px 0;
  color: #F2994A;
}
blockquote p {
  margin-bottom: 0 !important;
}
blockquote strong {
  font-size: 38px;
  font-weight: 700;
  line-height: 45px;
  margin-bottom: 30px;
  display: block;
}
blockquote::before, blockquote::after {
  content: '"';
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  width: 53.698px;
  height: 42.647px;
  top: 0;
  font-size: 75px;
  font-weight: 700;
}
blockquote::after {
  top: unset;
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}

.article-offer__text {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  max-width: 320px;
}

.article-offer__btn {
  width: 100%;
  max-width: 283px;
}

.article-offer__right img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.custom-wrap {
  border-radius: 10px;
  border: 1px solid currentColor;
  padding: 20px;
  text-align: center;
  margin: 60px 0;
  font-size: 18px;
  font-weight: 500;
}

.article-rating {
  margin-top: 60px;
  margin-bottom: 40px;
}
.article-rating .article--title {
  margin-bottom: 30px;
}

.article--title {
  font-size: 26px;
  font-weight: 700;
}

.post-ratings {
  font-size: 0 !important;
}

.post-ratings img,
.post-ratings-loading img,
.post-ratings-image img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.article-comments .article--title {
  margin-bottom: -10px;
}

.comments-area {
  margin-top: 0 !important;
}

.article-faq .faq-item {
  border-bottom: 1px solid #EFF0F0;
  padding-bottom: 0;
}
.article-faq .faq-item:last-child {
  border-bottom: none;
}
.article-faq .faq-item:nth-child(2) {
  border-top: 1px solid #EFF0F0;
}
.article-faq .faq-item__question.active::before,
.article-faq .faq-item__question.active svg {
  transform: rotateX(180deg) !important;
}
.article-faq .faq-item__question {
  padding: 20px 40px 20px 0;
  font-size: 18px;
}
.article-faq .faq-item__question::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='11' fill='none'%3E%3Cpath stroke='%231F2A50' stroke-linecap='round' stroke-width='2' d='m1 .998 8 8 8-8'/%3E%3C/svg%3E");
  background-color: transparent;
  width: 18px;
  height: 11px;
  right: 0px;
  top: 29px;
}
.article-faq .faq-item__answer {
  padding: 0 40px 20px 0;
}
.article-faq__title {
  font-size: 38px;
  font-weight: 700;
  line-height: 118.421%;
  margin-bottom: 23px;
}

.article-tags {
  margin-top: 50px;
}

.article-page__right .sidebar-top-posts {
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: none;
  margin-top: 129px;
}
.article-page__right .post-type-tabs__tab {
  font-size: 24px;
}
.article-page__right .post-card-small {
  padding-bottom: 10px;
  border-bottom: 1px solid #DEDEDE;
}
.article-page__right .post-card-small:last-child {
  border-bottom: none;
}
.article-page__right .post-card-small__image {
  display: none;
}
.article-page__right .post-card-small__title {
  margin-bottom: 0;
}
.article-page__right .post-card-small__title {
  font-size: 18px;
}

.article-form {
  border-radius: 10px;
  background: #0D173F;
  padding: 30px 20px;
  margin-top: calc(100vh - 613px);
  position: sticky;
  top: 100px;
}
.article-form .form__input.error {
  color: rgba(255, 255, 255, 0.8078431373);
}
.article-form .form__input.error::placeholder {
  color: rgba(255, 255, 255, 0.8078431373);
}
.article-form .form__input,
.article-form .acf-field .form__content .form__input {
  border-radius: 6px !important;
  padding: 0 20px 0 20px;
  height: 40px;
}
.article-form .form__row .form__input-wrapper::before {
  display: none;
}
.article-form .checkbox {
  color: #A7A9B1;
}
.article-form .checkbox a {
  color: #fff;
}
.article-form .form__row {
  gap: 16px;
}
.article-form .btn.button_style_2:hover {
  color: #fff;
}

.article-form__title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
}

.recommended-articles {
  margin-top: 100px;
}

.recommended-articles__title {
  font-size: 38px;
  font-weight: 700;
  line-height: 118.421%;
  margin-bottom: 50px;
}

.recommended-articles__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.article-bottom {
  margin-top: 100px;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 150px 0 80px;
}

.article-bottom__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  object-fit: cover;
}

.article-bottom__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.article-bottom__text {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
}

.article-bottom__btn {
  max-width: 286px;
  width: 100%;
}

.user-star-rating {
  font-size: 40px;
  cursor: pointer;
  display: inline-block;
  padding-bottom: 2px;
}

.user-star-rating span {
  color: #ccc;
  transition: color 0.2s ease-in-out;
}

.user-star-rating span.selected {
  color: #f5b301;
}

.user-star-rating.hover-enabled span:hover,
.user-star-rating.hover-enabled span:hover ~ span {
  color: #f5b301;
}

.user-star-rating.hover-enabled span:hover ~ span {
  color: #ccc;
}

.article-rating__wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #F2994A;
  font-size: 35px;
  font-weight: 700;
}

.author-page {
  margin-top: 50px;
}
.author-page .archive-grid__wrapper {
  margin-top: 50px;
}

.author-block--big {
  gap: 30px;
}

.author-block__name {
  font-size: 38px;
  font-weight: 700;
  line-height: 118.421%;
}

.author-posts {
  margin-top: 80px;
}
.author-posts .author-posts__title {
  font-size: 38px;
}
.author-posts .author-tags {
  position: static !important;
  display: flex;
  gap: 10px;
}
.author-posts .author-tags a {
  display: block;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  background-color: transparent;
  transition: border 0.3s ease-in-out, color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.author-posts .author-tags a:hover {
  background-color: var(--accent-color);
  color: white;
}

.contact {
  padding: 100px 0;
}

.contact__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.contact__text {
  max-width: 640px;
  display: flex;
  flex-direction: column;
}

.contact__columns {
  margin-top: auto;
  display: flex;
  gap: 50px;
}

.contact__column--title {
  font-size: 16px;
  font-weight: 400;
  opacity: 0.5;
  margin-bottom: 20px;
}

.contact__column--descr {
  font-size: 24px;
  font-weight: 700;
}
.contact__column--descr a::before {
  display: none !important;
}

.contact__form {
  max-width: 540px;
  padding: 48px 32px;
  background-color: var(--accent-color);
  color: var(--page-background);
  border-radius: 10px;
}
.contact__form .form__input-wrapper svg {
  display: none;
}
.contact__form .form__row {
  grid-template-columns: 1fr 1fr;
  column-gap: 10px;
  gap: 36px;
}
.contact__form .form__row .form__input-wrapper:nth-child(3), .contact__form .form__row .form__input-wrapper:nth-child(4) {
  grid-column: 1/3;
}
.contact__form .form__row .form__input-wrapper::before {
  display: none;
}
.contact__form .form__input.error {
  border: none;
  border-bottom: 1px solid #FF2633;
  background: rgba(255, 38, 51, 0);
}
.contact__form label.error {
  top: calc(100% + 4px);
}
.contact__form .form__input.valid {
  border: none;
  border-bottom: 1px solid #84E4A4;
  background-color: transparent;
}
.contact__form .btn {
  background-color: var(--page-background);
  color: var(--accent-color);
  margin-top: 48px;
}
@media (any-hover: hover) {
  .contact__form .btn:hover {
    filter: contrast(1);
    opacity: 0.9;
  }
}
.contact__form .intl-tel-input .selected-flag {
  padding: 10px 8px 11px 10px !important;
}
.contact__form .form__input,
.contact__form .acf-field .form__content .form__input {
  background-color: transparent;
  box-shadow: none;
  border-radius: 0 !important;
  border-bottom: 1px solid var(--page-background);
  color: var(--page-background);
  padding-left: 0;
}
.contact__form .form__input::placeholder,
.contact__form .acf-field .form__content .form__input::placeholder {
  color: var(--page-background);
}
.contact__form .intl-tel-input.separate-dial-code .selected-dial-code {
  color: var(--page-background);
}
.contact__form .checkbox a {
  color: var(--page-background);
  font-weight: 700;
}
.contact__form .selected-flag-line {
  background-color: var(--page-background);
}

.contact__form--title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact__form--descr {
  margin-bottom: 30px;
}

.intl-tel-input .country-list .country {
  color: #000;
}

.page-template-page-contact .faq .container {
  background: var(--light-blue, #F4F7FA);
  padding: 50px;
}
.page-template-page-contact .faq .sec__top,
.page-template-page-contact .faq .faq__wrapper {
  max-width: 870px;
  margin: 0 auto;
}
.page-template-page-contact .faq .faq-item {
  border-bottom: 1px solid #EFF0F0;
  padding-bottom: 0;
}
.page-template-page-contact .faq .faq-item:nth-child(2) {
  border-top: 1px solid #EFF0F0;
}
.page-template-page-contact .faq .faq-item__question.active::before,
.page-template-page-contact .faq .faq-item__question.active svg {
  transform: rotateX(180deg) !important;
}
.page-template-page-contact .faq .faq-item__question {
  padding: 20px 40px 20px 0;
  font-size: 18px;
}
.page-template-page-contact .faq .faq-item__question::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='11' fill='none'%3E%3Cpath stroke='%231F2A50' stroke-linecap='round' stroke-width='2' d='m1 .998 8 8 8-8'/%3E%3C/svg%3E");
  background-color: transparent;
  width: 18px;
  height: 11px;
  right: 0px;
  top: 29px;
}
.page-template-page-contact .faq .faq-item__answer {
  padding: 0 40px 20px 0;
}
.page-template-page-contact .faq .faq-item__count {
  display: none;
}

.footer {
  margin-top: auto;
  background-color: var(--footer-background);
  background-image: var(--footer-background-image);
  padding: 30px 0 50px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.footer .logo {
  width: 300px;
  height: 80px;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 150px;
  margin-bottom: 60px;
}

.footer__menus {
  display: flex;
  gap: 55px;
}

.footer__small-text {
  margin-top: 20px;
  line-height: 155.556%;
}

.footer__col {
  max-width: 250px;
}

.footer__col--title {
  font-size: 24px;
  font-weight: 700;
}

.footer-nav {
  margin-top: 10px;
}
.footer-nav a {
  color: currentColor;
}
.footer-nav a:hover {
  text-shadow: 0.5px 0 0 currentColor;
}
.footer-nav li {
  margin-bottom: 15px;
}
.footer-nav li:last-child {
  margin-bottom: 0;
}

a[href^="mailto:"] {
  position: relative;
}
a[href^="mailto:"]::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='25' fill='none'%3E%3Cpath fill='%2372859F' d='M20 20.95H4a2 2 0 0 1-2-2V6.863A2 2 0 0 1 4 4.95h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2ZM4 8.818V18.95h16V8.818l-8 5.332-8-5.332Zm.8-1.868 7.2 4.8 7.2-4.8H4.8Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  width: 24px;
  height: 25px;
  display: inline-block;
  margin-bottom: -6px;
}

.footer__text {
  opacity: 0.8;
  font-size: 14px;
}
.footer__text a {
  color: currentColor;
  text-decoration: underline;
}
.footer__text p {
  margin-bottom: 20px;
}
.footer__text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .footer__top {
    flex-wrap: wrap;
    gap: 25px;
  }
}
@media (max-width: 720px) {
  .footer__menu ul.nav {
    flex-direction: column;
  }
}
.form-block {
  width: 100%;
  position: relative;
  max-width: 100%;
}

.preloader {
  display: none;
  background: white;
  position: absolute;
  transform: scale(1.04);
  top: 0%;
  bottom: 0;
  left: 0%;
  right: 0;
  z-index: 9995;
  opacity: 0.5;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
}

.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  border: 3px solid;
  border-color: var(--accent-color) var(--accent-color) transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

.loader::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px solid;
  border-color: transparent var(--text-color) var(--text-color);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  animation: rotationBack 0.5s linear infinite;
  transform-origin: center center;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.form__title {
  text-align: left;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.form__row .form__input-wrapper {
  flex-basis: 50%;
  position: relative;
}
.form__row .form__input-wrapper::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 24px;
  height: 24px;
  top: 50%;
  transform: translateY(-50%);
  left: 12px;
  pointer-events: none;
}
.form__row .form__input-wrapper svg {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  transform: translateY(-50%);
  left: 12px;
  pointer-events: none;
}

.form__input-wrapper {
  width: 100%;
  position: relative;
}

.intl-tel-input.separate-dial-code .selected-dial-code {
  font-size: 16px !important;
}

.intl-tel-input .flag-container {
  top: -1px;
  bottom: -1px;
  left: -1px !important;
}

/* .first__name,
.last__last--name {
    &::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2M12 11a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z'/%3E%3C/svg%3E");
    }
} */
/* .input__email {
    &::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2Z'/%3E%3Cpath stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m22 6-10 7L2 6'/%3E%3C/svg%3E");
    }
} */
.form__input,
.acf-field .form__content .form__input {
  transition: border 0.3s ease-in-out, background 0.3s ease-in-out;
  width: 100%;
  border: none;
  color: #000;
  font-size: 16px !important;
  line-height: normal;
  height: 48px;
  padding: 0 20px 0 46px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.form__input::-webkit-input-placeholder {
  color: currentColor;
}

.form__input:-moz-placeholder {
  color: currentColor;
}

.form__input::-moz-placeholder {
  color: currentColor;
}

.form__input:-ms-input-placeholder {
  color: currentColor;
}

.form__input::placeholder {
  color: currentColor !important;
}

.form__input.error {
  border: 1px solid #FF2633;
  background: rgba(255, 38, 51, 0.4);
}

label.error {
  position: absolute;
  z-index: 2;
  top: calc(100% + 2px);
  left: 8px;
  width: 100%;
  max-width: 500px;
  background: #FF2633;
  border-radius: 8px;
  font-family: inherit;
  font-weight: 900;
  font-size: 14px;
  line-height: 18px;
  color: #FFF;
  padding: 7px 12px;
}

label.error::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 15px;
  height: 15px;
  background: #FF2633;
  border-radius: 2px;
  transform: translateZ(-1px) rotate(45deg);
  top: -6px;
  left: 10px;
  transform-style: preserve-3d;
}

.form__input.valid {
  border: 1px solid #84E4A4;
  background: rgba(132, 228, 164, 0.2);
}

.intl-tel-input .selected-flag {
  padding: 10px 8px 11px 20px !important;
  border-radius: 5px 0px 0px 5px;
}

.iti-arrow {
  display: none;
}

.intl-tel-input .country-list {
  list-style: none;
  width: 420px;
  max-width: unset;
}

.intl-tel-input .country-list .divider {
  display: none;
}

.intl-tel-input .country-list .country {
  font-size: 16px;
  white-space: break-spaces;
}
.intl-tel-input .country-list .country::before {
  display: none;
}

.selected-flag-line {
  position: absolute;
  right: 0;
  width: 1px;
  height: calc(100% - 25px);
  background-color: rgba(0, 0, 0, 0.3019607843);
}

.form__submit {
  width: 100%;
}

.form__description {
  margin-top: 30px;
  color: #020D1B;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 10px;
  color: var(--white);
  line-height: 116.667%;
}
.checkbox p {
  font-size: 10px;
  margin-bottom: 0;
}
.checkbox a {
  color: var(--accent-color);
}
.checkbox input {
  appearance: none;
  width: 18px;
  min-width: 18px;
  height: 18px;
  border-radius: 2px;
  border: 1.5px solid #FFF;
  position: relative;
  cursor: pointer;
  margin: 0 !important;
}
.checkbox input::before {
  content: "";
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='11' fill='none'%3E%3Cpath fill='%23fff' d='m13 1-8.25 9L1 5.91'/%3E%3Cpath stroke='%23020D1B' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m13 1-8.25 9L1 5.91'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  width: 100% !important;
  height: 100% !important;
  opacity: 0;
  margin: 0 !important;
}
.checkbox input:checked {
  background-color: #FFF;
}
.checkbox input:checked::before {
  opacity: 1;
}

.widefat tfoot td input[type=checkbox]:before,
.widefat th input[type=checkbox]:before,
.widefat thead td input[type=checkbox]:before {
  transform: translate(-7px);
}

.form__btn {
  width: 100%;
  margin-top: 20px;
  height: 50px;
}

@media (max-width: 1200px) {
  .form__item {
    padding: 30px 20px;
  }
  .form__title {
    margin-bottom: 20px;
    font-size: 32px;
  }
  .form__content {
    row-gap: 20px;
    margin-bottom: 20px;
  }
  .form__row {
    flex-direction: column;
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
  .form__input {
    font-size: 16px;
  }
  .form__input::placeholder {
    font-size: 16px;
  }
  .text-img-block {
    grid-template-columns: 1fr;
  }
  .box-row {
    grid-template-columns: 1fr !important;
  }
  .form__btn {
    height: 54px;
  }
  .checkbox p span {
    font-size: 12px !important;
  }
}
.header {
  position: fixed;
  background-color: var(--header-background);
  width: 100%;
  padding: 8px 0;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  z-index: 1000;
  top: 0;
}
.header.header--scroll {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.header.header--hide {
  transform: translateY(-100%);
}

.home .header.header--transparent {
  background-color: transparent;
}
.home .header.header--transparent.header--scroll {
  background-color: var(--header-background);
}

.header__top-text {
  position: absolute;
  font-size: 8px;
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.4;
  width: 100%;
  text-align: center;
  z-index: 3;
  color: var(--contrast-color);
}
.header__top-text a {
  color: var(--contrast-color) !important;
}

.menu-bottom-mob {
  display: none;
}

.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  max-width: 225px;
  height: 60px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.header__btn svg {
  display: none;
}

.with-timer .header {
  padding: 0 0 8px;
}
.with-timer .header__timer {
  display: block;
}
.with-timer .header__wrapper {
  padding-top: 8px;
}

.header__timer {
  padding: 15px 15px 5px;
  text-align: center;
  width: 100%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  position: relative;
  z-index: 2;
}

.wrap-nav {
  display: flex;
  gap: 20px;
}

ul.nav {
  display: flex;
  gap: 20px;
}
ul.nav a {
  font-size: 18px;
  position: relative;
  color: var(--text-color);
}
ul.nav a:hover::before {
  opacity: 1;
  transform: translateY(0);
}
ul.nav a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--text-color);
  opacity: 0;
  transform: translateY(3px);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.resources-nav {
  position: relative;
}
.resources-nav.active svg {
  transform: rotateX(180deg);
}

.resources-nav__title {
  cursor: pointer;
}
.resources-nav__title svg {
  width: 14px;
  height: 8px;
  transition: transform 0.1s ease-in-out;
}

.resources-nav__list {
  position: absolute;
  display: none;
  background-color: var(--header-background);
  padding: 10px 15px;
  top: 110%;
  width: calc(100% + 20px);
  left: -10px;
  border-radius: 5px;
}
.resources-nav__list.not-border {
  border-radius: none;
}
.resources-nav__list li {
  margin-bottom: 5px;
}
.resources-nav__list li:last-child {
  margin-bottom: 0;
}
.resources-nav__list a:hover {
  text-shadow: 0.5px 0 0 currentColor;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-wrap {
  margin-left: auto;
  width: 54px;
  height: 30px;
  position: relative;
  font-size: 0;
  user-select: none;
}
.lang-wrap img {
  width: 20px;
}
.lang-wrap .lang {
  /* width: calc(100% + 2px); */
  position: absolute;
  top: -2px;
  left: 0;
  padding: 0px 7px 0px;
  border: 1px solid var(--accent-color);
}
.lang-wrap .lang.active .lang__active svg {
  transform: rotateX(180deg);
}
.lang-wrap .lang__active {
  width: fit-content;
  height: 30px;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.lang-wrap .lang__active svg {
  /* content: '';
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' fill='none'%3E%3Cpath stroke='%23fff' stroke-linecap='square' stroke-linejoin='round' stroke-width='1.5' d='m2 1.5 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover; */
  width: 14px;
  height: 8px;
  transition: transform 0.1s ease-in-out;
}
.lang-wrap .lang__list {
  display: none;
  background: var(--accent);
  padding-top: 5px;
  width: 100%;
  padding-bottom: 7px;
  max-height: 70vh;
  overflow-y: auto;
}
.lang-wrap .lang__list li {
  margin-bottom: 10px;
  height: 15px;
}
.lang-wrap .lang__list li:last-child {
  margin-bottom: 0;
}
@media (any-hover: hover) {
  .lang-wrap .lang__list a:hover {
    font-weight: 700;
  }
}

.burger {
  height: 16px;
  width: 30px;
  justify-content: center;
  align-items: center;
  z-index: 350;
  cursor: pointer;
  transition: all 0.3s;
  display: none;
  position: relative;
  position: relative;
  margin-right: 12px;
}
.burger::before {
  position: absolute;
  content: "";
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.15);
  width: 44px;
  height: 40px;
  top: -10px;
}
.burger span {
  position: absolute;
  background: var(--accent-color);
  height: 3px;
  width: 30px;
  display: block;
  transition: all 0.3s;
  border-radius: 5px;
}
.burger span:nth-child(1) {
  top: 16px;
}
.burger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.burger span:nth-child(3) {
  bottom: 16px;
}
.burger.active span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  bottom: 7px;
  transform: rotate(-45deg);
}

.header-search-btn {
  display: none;
}

@media (max-width: 1200px) {
  .header {
    padding: 10px 0;
  }
  .with-timer .header {
    padding: 0 0 8px;
  }
  .header__timer {
    font-size: 16px;
    line-height: 110%;
    z-index: 2;
  }
  .header__right .lang-wrap {
    display: none;
  }
  .header__btn {
    font-size: 0 !important;
    padding: 7px;
    width: 40px;
    height: 40px;
  }
  .header__btn svg {
    display: block;
    width: 20px;
    height: 20px;
    fill: var(--page-background);
  }
  .menu-bottom-mob {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    order: 3;
    padding: 15px 15px 70px;
    margin: auto auto 0 auto;
    font-size: 12px;
    font-weight: 600;
    max-width: 340px;
    width: 100%;
    opacity: 0.5;
  }
  .menu-bottom-mob a {
    color: var(--text-color);
  }
  .btn-show-form {
    display: none;
  }
  .burger {
    display: flex;
    margin-left: auto;
    padding-top: 20px;
  }
  .logo {
    position: relative;
    z-index: 1;
  }
  .header .wrap-nav {
    position: fixed;
    left: 0;
    bottom: 0;
    background: var(--header-background);
    height: 100%;
    padding-top: 72px;
    width: 100%;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transform: translateY(10%);
    opacity: 0;
    pointer-events: none;
    flex-direction: column;
    gap: 0;
  }
  .header .wrap-nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .header .nav {
    padding: 20px 15px;
    max-width: 720px;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    order: 1;
    gap: 10px;
    border-top: 1px solid #F1f1f1;
  }
  .header .nav a {
    padding-bottom: 5px;
    display: block;
    min-width: 200px;
    text-align: center;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 6px;
  }
  .header .nav a::before {
    display: none;
  }
  .header .nav a.active {
    background: #E0E1F8;
  }
  .header .nav a:active {
    background: #f4f4fb;
  }
  .with-timer .header .wrap-nav {
    padding-top: 135px;
  }
  .resources-nav {
    order: 1;
    padding: 15px;
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
  }
  .resources-nav__list {
    position: static;
    padding: 0;
    padding-top: 20px;
  }
  .resources-nav__list li {
    margin-bottom: 10px;
    font-weight: 600;
  }
  .burger::before {
    top: -10px;
  }
  .burger.active span:nth-child(1) {
    top: 9px;
  }
  .burger.active span:nth-child(3) {
    bottom: 8px;
  }
  .header__top-text {
    top: 1px;
    z-index: 3;
  }
  .page-template-page-home .header-search-btn,
  .page-template-page-builder .header-search-btn,
  .page-template-page-default .header-search-btn {
    display: none !important;
  }
  .header-search-btn {
    display: block;
    margin-top: 8px;
  }
  .header-search-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-color);
    fill: none;
  }
  .burger {
    margin-right: 0;
  }
  .header__right {
    gap: 15px;
  }
  .lang-wrap {
    order: 2;
    margin: 10px auto 0;
  }
  .lang-wrap .lang__list {
    max-height: 150px;
  }
}
.modal-wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 20000000;
  overflow-y: auto;
  transition: opacity 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
}
.modal-wrap.active {
  opacity: 1;
  visibility: visible;
}
.modal-wrap.active .modal__body {
  transform: translateY(0);
  opacity: 1;
}
.modal-wrap.hide {
  animation: hide 0.3s ease-in-out;
}
.modal-wrap.hide .modal__body {
  transform: translateY(200px);
  opacity: 0;
}

@keyframes hide {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.modal {
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-y: auto;
  height: fit-content;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-height: 95vh;
  min-width: 680px;
  max-width: 680px;
  padding: 40px 0;
}
.modal::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.modal__body {
  background-color: var(--modal-background);
  padding: 30px;
  padding-top: 55px;
  width: 100%;
  position: relative;
  z-index: 2;
  transition: transform 0.6s cubic-bezier(0.53, 0.2, 0.71, 1.33), opacity 0.3s ease-in-out;
  transform: translateY(200px);
  opacity: 0;
}

.modal__title {
  font-size: var(--text-size-h3);
  font-weight: 700;
  margin-bottom: 20px;
}
.modal__title p {
  font-size: var(--text-size-h3);
  font-weight: 700;
}

.modal__close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
  color: var(--accent-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (any-hover: hover) {
  .modal__close:hover {
    opacity: 0.5;
  }
}
.modal__close svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent-color);
  transform: rotate(45deg);
}

@media (max-width: 1200px) {
  .modal {
    min-width: 90vw;
  }
  .modal__body {
    padding: 60px 15px 40px;
  }
  .modal__title p {
    font-size: calc(var(--text-size-h3) * 0.8);
  }
}
@media (max-width: 720px) {
  .modal__title p,
  .modal__title {
    font-size: calc(var(--text-size-h3) * 0.7) !important;
  }
  .modal__body {
    padding: 50px 15px 25px;
  }
}
.offer-bottom {
  margin-top: 100px;
  margin-bottom: 100px;
}
.offer-bottom__wrapper {
  position: relative;
  z-index: 1;
  padding: 120px 65px;
  border-radius: 10px;
  overflow: hidden;
}
.offer-bottom__wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-bottom__content {
  display: flex;
  align-items: center;
  gap: 80px;
}

.offer-bottom__title {
  font-size: 38px;
  font-weight: 700;
  line-height: 118.421%;
  color: #fff;
}

.offer-bottom__btn {
  font-size: 24px;
  padding: 20px;
  width: 100%;
  max-width: 280px;
}

.post-card {
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 15px 35px 0px rgba(190, 190, 190, 0.15);
  width: 100%;
  transition: box-shadow 0.3s ease-in-out;
  height: 530px;
}
.post-card:hover {
  box-shadow: 0px 15px 35px 0px rgba(190, 190, 190, 0.45);
}
.post-card.radius-none {
  border-radius: 0;
}
.post-card.radius-none .post-card__image {
  border-radius: 0;
}
.post-card.radius-none .post-card__content {
  border-radius: 0;
}

.archive-main .post-card {
  height: 100%;
}
.archive-main .post-card__head {
  height: 310px;
}
.archive-main .post-card__image img {
  width: 101%;
  object-fit: cover;
}
.archive-main .post-card__content {
  padding: 30px 50px;
}
.archive-main .post-card__title {
  font-size: 30px;
  height: fit-content;
}
.archive-main .post-card__rating {
  font-size: 24px;
}
.archive-main .post-card__rating svg {
  width: 30px;
  height: 28px;
}
.archive-main .post-card__tags {
  left: 50px;
}

.post-card__head {
  height: 250px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  width: 100%;
  position: relative;
}

.post-card__image {
  width: 100%;
  height: 100%;
  display: block;
}
.post-card__image:hover + .post-card__content .post-card__title {
  color: #2F80ED;
}
.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card__tags {
  position: absolute;
  left: 25px;
  top: 20px;
}
.post-card__tags a {
  border-radius: 10px;
  padding: 5px 9px;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  background-color: var(--accent-color);
  transition: opacity 0.3s ease-in-out;
  border: 1px solid transparent;
}
@media (max-width: 550px) {
  .header__timer {
    font-size: 12px;
  }
}
@media (any-hover: hover) {
  .post-card__tags a:hover {
    opacity: 0.9;
  }
}

.post-card__content {
  border-radius: 0 0 20px 20px;
  padding: 25px;
}

.post-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.post-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (any-hover: hover) {
  .post-card__author:hover .post-card__author--name {
    color: var(--accent-color);
    text-shadow: 0.3px 0 0 currentColor;
  }
}

.post-card__author--image {
  border-radius: 100px;
  overflow: hidden;
  width: 30px;
  height: 30px;
}
.post-card__author--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card__author--name {
  color: var(--accent-color);
  font-size: 18px;
  transition: color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}

.post-card__text {
  margin-top: 20px;
  display: block;
}
.post-card__text:hover .post-card__title {
  color: var(--accent-color);
}

.post-card__title {
  color: #010831;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 135%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow-y: hidden;
  transition: color 0.3s ease-in-out;
  height: 68px;
}

.post-card__description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow-y: hidden;
}

.post-card__bottom {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.post-card__date::before {
  background-image: url("../images/calendar.svg");
}

.post-card__comments::before {
  background-image: url("../images/message_writing.svg");
}

.post-card__views::before {
  background-image: url("../images/show.svg");
}

.post-card__date,
.post-card__comments,
.post-card__views {
  color: #A7A9B1;
  display: flex;
  align-items: center;
  gap: 5px;
}
.post-card__date::before,
.post-card__comments::before,
.post-card__views::before {
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  width: 30px;
  height: 30px;
  display: block;
}

.post-card-small {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.post-card-small:last-child {
  margin-bottom: 0;
}
.post-card-small .post-card__bottom {
  margin-top: 10px;
  gap: 8px;
}

.post-card-small__image {
  display: block;
  width: 100px;
  min-width: 100px;
  height: 100px;
}
.post-card-small__image:hover + .post-card-small__content .post-card-small__title {
  color: #2F80ED;
}
.post-card-small__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.post-card-small__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow-y: hidden;
  transition: color 0.3s ease-in-out;
}
.post-card-small__title:hover {
  color: var(--accent-color);
}

.post-card__date,
.post-card__comments,
.post-card__views {
  font-size: 14px;
}
.post-card__date::before,
.post-card__comments::before,
.post-card__views::before {
  width: 20px;
  height: 20px;
}

.search-post {
  position: relative;
}
.search-post input {
  border-radius: 15px;
  background: var(--light-blue, #F4F7FA);
  width: 360px;
  height: 40px;
  padding: 0 90px 0 25px;
}
.search-post .no-results {
  padding: 20px;
  background: #F4F7FA;
  border-radius: 15px;
}

.search__clean {
  display: none;
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23' height='23' fill='none'%3E%3Ccircle cx='11.5' cy='11.5' r='11.5' fill='%231F2A50'/%3E%3Cpath fill='%23fff' d='M7.532 6.715a.578.578 0 1 0-.817.817l3.36 3.36a.63.63 0 0 1 0 .892l-3.36 3.36a.578.578 0 1 0 .817.816l3.36-3.36a.63.63 0 0 1 .892 0l3.36 3.36a.578.578 0 0 0 .816-.817l-3.36-3.36a.63.63 0 0 1 0-.891l3.36-3.36a.578.578 0 0 0-.817-.817l-3.36 3.36a.63.63 0 0 1-.891 0l-3.36-3.36Z'/%3E%3C/svg%3E");
  background-size: 23px 23px;
  background-position: center;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  right: 50px;
  top: 0;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
}
.search__clean:hover {
  opacity: 0.8;
}

.search-results-list {
  position: absolute;
  width: 100%;
  z-index: 100;
  top: 45px;
}
.search-results-list ul {
  border-radius: 15px;
  background: #F4F7FA;
  width: 100%;
  overflow: hidden;
}
.search-results-list ul a {
  padding: 10px 20px;
  display: block;
  transition: text-shadow 0.3s ease-in-out;
}
.search-results-list ul a:hover {
  background: #edf2f7;
}
.search-results-list ul a:active {
  background: #d8e4ef;
}

.search__field {
  position: relative;
}

.search__btn {
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23' height='22' fill='none'%3E%3Cpath stroke='%23A7A9B1' stroke-linecap='round' stroke-linejoin='round' stroke-width='3.5' d='M16.012 15.444 20.568 20m-2.25-10.125a7.875 7.875 0 1 1-15.75 0 7.875 7.875 0 0 1 15.75 0Z'/%3E%3C/svg%3E");
  background-size: 23px 22px;
  background-position: center;
  background-repeat: no-repeat;
  width: 50px;
  height: 40px;
  right: 0;
  top: 0;
  transition: filter 0.3s ease-in-out;
}
.search__btn:hover {
  filter: contrast(0.1);
}

.search-results .archive-grid__title span {
  color: #A7A9B1;
}
.search-results .archive-grid__title {
  margin-bottom: 50px;
}

.search-results .archive-grid__wrapper .recommended-articles {
  grid-column: 1/4;
  margin-top: 0;
}

.search-error {
  grid-column: 1/4;
  font-size: 22px;
}

.tag-page .archive-grid__wrapper {
  margin-top: 70px;
}

.tag-tags {
  position: static;
  margin-top: 30px;
  margin-bottom: 50px;
}

.tag-posts__title {
  text-align: center;
  font-size: 38px;
}

.tag-posts__descr {
  max-width: 576px;
  margin: 25px auto 0;
  text-align: center;
}

.tag-posts__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* @import "./layouts/*.scss"; */
@media (max-width: 1200px) {
  body:not(.wp-admin) {
    padding-top: 90px;
  }
  .search-post {
    width: 100%;
    display: none;
  }
  .search-post input {
    width: 100%;
  }
  .archive-top {
    margin-top: 30px;
  }
  .archive-main__wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .archive-main {
    margin-top: 50px;
  }
  .archive-grid__wrapper {
    grid-template-columns: 1fr 1fr;
    row-gap: 30px;
  }
  .archive-grid__title,
  .post-type-tabs__tab {
    font-size: 30px;
  }
  .post-card__title {
    height: 48px;
    line-height: 135%;
    font-size: 20px;
  }
  .post-card__description {
    font-size: 14px;
  }
  .post-card__head {
    height: 200px;
  }
  .rating {
    font-size: 16px;
  }
  .rating svg {
    width: 20px;
    height: 20px;
  }
  .post-card {
    height: 450px;
  }
  .offer-bottom__title {
    font-size: 20px;
    text-align: center;
  }
  .offer-bottom__content {
    flex-direction: column;
    gap: 50px;
  }
  .offer-bottom__wrapper {
    padding: 70px 15px;
  }
  .offer-bottom__btn {
    padding: 14px;
  }
  .footer__top {
    margin-bottom: 50px;
  }
  .archive-main .post-card__content {
    padding: 30px 20px;
  }
  .archive-main .post-card__tags {
    left: 20px;
  }
  .single .container {
    max-width: 720px;
  }
  .article-page__wrapper {
    grid-template-columns: 1fr;
  }
  .article-anchor {
    position: fixed;
    bottom: 0;
    top: unset;
    width: 100%;
    left: 0;
    z-index: 100;
    background: var(--page-background);
    box-shadow: 0px 5px 25px 0px rgba(190, 190, 190, 0.1);
  }
  .article-anchor__title {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    margin-bottom: 0;
  }
  .article-anchor__title::before {
    content: "";
    position: absolute;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='31' fill='none'%3E%3Cpath stroke='%23010831' stroke-linecap='round' stroke-width='2' d='m10.026 12.5 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    width: 32px;
    height: 31px;
    right: 10px;
    top: 8px;
    transition: transform 0.3s;
  }
  .article-anchor__title.active::before {
    transform: rotateX(180deg);
  }
  .article-anchor__list {
    display: none;
    box-shadow: 0px 15px 35px 0px rgba(190, 190, 190, 0.15);
    padding: 15px;
    padding-bottom: 50px;
  }
  .article-page__right .sidebar-top-posts {
    display: none;
  }
  .article-form {
    position: static;
    margin: 40px 0;
  }
  .recommended-articles {
    margin-top: 0;
  }
  .comments-area {
    margin-bottom: 0 !important;
  }
  .recommended-articles__list {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .recommended-articles__title {
    margin-bottom: 30px;
  }
  .article-bottom {
    padding: 80px 0 70px;
  }
  .wpd-left-content {
    display: none !important;
  }
  .contact__wrapper {
    flex-direction: column;
  }
  .contact__form {
    width: 100%;
    max-width: 100%;
  }
  .contact__column--descr {
    font-size: 18px;
  }
  .contact__column--title {
    margin-bottom: 8px;
  }
  .contact__columns {
    flex-direction: column;
    gap: 20px;
  }
  .contact__form {
    width: calc(100% + 30px);
    max-width: unset;
    margin-left: -15px;
    border-radius: 0;
    padding: 30px 15px;
  }
  .page-template-page-contact .faq .container {
    padding: 30px 15px;
  }
  .offer-bottom {
    margin-top: 60px;
  }
  .iti-mobile .intl-tel-input.iti-container {
    top: 20%;
    bottom: 20%;
    left: 0;
    right: 0;
    position: fixed;
    z-index: 2222222222222222;
  }
}
@media (max-width: 720px) {
  .archive-tags {
    margin-top: 20px;
  }
  .archive-title h1 {
    font-size: 38px;
  }
  .archive-top {
    margin-top: 10px;
  }
  .archive-main .post-card__head {
    height: 200px;
  }
  .archive-main .post-card__content {
    padding: 20px 10px;
  }
  .archive-main .post-card__title {
    font-size: 22px;
  }
  .post-card-small__image {
    width: 75px;
    height: 75px;
    min-width: 75px;
  }
  .sidebar-top-posts {
    padding: 40px 15px;
    width: calc(100% + 30px);
    margin-left: -15px;
    border-radius: 0 !important;
  }
  .post-card-small__title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .post-card-small__image img {
    border-radius: 10px;
  }
  .archive-grid__wrapper {
    grid-template-columns: 1fr;
  }
  .post-card__content {
    padding: 20px 10px;
  }
  .archive-main .post-card__tags {
    left: 10px;
  }
  .post-card__tags {
    left: 10px;
  }
  .offer-bottom__wrapper {
    width: calc(100% + 30px);
    margin-left: -15px;
    border-radius: 0;
  }
  .footer__menus {
    flex-wrap: wrap;
    gap: 40px;
  }
  .pagination-wrapper {
    margin-top: 30px;
  }
  .pagination-wrapper .page-numbers.next,
  .pagination-wrapper .page-numbers.prev {
    font-size: 0;
    width: 40px;
    padding: 0;
  }
  .pagination-wrapper span,
  .pagination-wrapper a {
    padding: 3px 8px;
  }
  .post-card__tags a {
    border-radius: 8px;
    padding: 3px 9px;
  }
  .article-info {
    margin-bottom: 30px;
  }
  .article-page {
    margin-top: 15px;
  }
  .article-content__text h1 {
    font-size: 30px;
  }
  .article-content__text h2 {
    font-size: 26px;
  }
  .article-content__text h3 {
    font-size: 22px;
  }
  .custom-wrap {
    margin: 30px 0;
  }
  .article-offer {
    padding: 30px 20px;
    flex-direction: column;
    position: relative;
    z-index: 1;
    margin: 30px 0;
  }
  .recommended-articles__list {
    grid-template-columns: 1fr;
  }
  .article-bottom__text {
    font-size: 20px;
  }
  blockquote {
    padding: 50px 0;
  }
  blockquote strong {
    font-size: 28px;
    margin-bottom: 10px;
  }
  blockquote::before,
  blockquote::after {
    width: 33.698px;
    height: 27.647px;
  }
  .article-offer__right {
    position: absolute;
    z-index: -1;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    height: 75%;
    opacity: 0.5;
  }
  .article-faq__title {
    font-size: 30px;
  }
  .recommended-articles__title {
    font-size: 30px;
  }
  .article-tags {
    margin-top: 20px;
  }
  .archive-nav {
    margin-bottom: 20px;
  }
  .tag .archive-tags {
    margin-bottom: 40px;
    margin-top: 40px;
  }
  .archive-grid__title,
  .post-type-tabs__tab {
    font-size: 26px;
  }
  .logo {
    width: 180px;
    height: 50px;
  }
  .author-block:not(.author-block--small) {
    flex-direction: column;
    position: relative;
  }
  .author-block--small .author-block__name {
    padding-left: 0;
  }
  .author-block__name,
  .author-block__position {
    padding-left: 120px;
  }
  .author-page .author-block__img {
    position: absolute;
    width: 100px;
    height: 100px;
    left: 0px;
    top: -10px;
  }
  .author-block__descr {
    margin-top: 25px;
  }
  .author.archive-grid {
    margin-top: 50px;
  }
  .author-page .author-block__position {
    margin-top: 0;
  }
  .author-posts .author-posts__title {
    font-size: 30px;
  }
  .author .archive-grid,
  .author .author-posts {
    margin-top: 50px;
  }
  .archive-nav__wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: space-between;
  }
  .search-post {
    margin-bottom: 20px;
  }
  .breadcrumb a,
  .breadcrumb span {
    font-size: 16px !important;
  }
  .archive-grid h1 {
    font-size: 30px;
    margin-bottom: 0;
  }
  .search-results .archive-grid__title {
    margin-bottom: 30px;
  }
  .archive-grid.search-results {
    margin-top: 20px;
  }
  .search-error {
    font-size: 16px;
  }
  .contact {
    padding-top: 30px;
  }
  .contact__form .form__row {
    grid-template-columns: 1fr;
  }
  .contact__form .form__row .form__input-wrapper:nth-child(3),
  .contact__form .form__row .form__input-wrapper:nth-child(4) {
    grid-column: 1/2;
  }
  .article-info {
    gap: 14px;
  }
}
/*# sourceMappingURL=main.css.map */
