/* USER VARIABLES SECTION */

:root {
  --accent: #000;
  --white: #fff;
  --dark-blue: #001d32;
  --blue-1: #0b72bf;
  --green-1: #00a582;
  --green-2: #4bcd8f;
  --blue-2: #2aa6e4;
  --yellow: #ffd600;
  --body: #333d45;
  --inputs: #808e98;
  --succes: rgba(75, 205, 143, 0.5);
  --input-fill: rgba(128, 142, 152, 0.15);
  --body-white: rgba(255, 255, 255, 0.6);
  --red: #e74a3b;
  --regular-text: 16px;
  --lineheight: 1.65;
  --font-family: "Onest", sans-serif;
  --second-family: "Murecho", sans-serif;
  --third-family: "Open Sans", sans-serif;
  --systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

/* BOOTSTRAP SETTINGS SECTION */

/* gutter 20px (10px + 10px). Comment this code for default gutter start at 1.5rem (24px) wide. */
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 0.938rem;
}

.row,
.row>* {
  --bs-gutter-x: 1.875rem;
}

@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1320px;
  }
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

input[type="checkbox"],
input[type="radio"],
input[type="file"] {
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  z-index: 1;
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
}

/* GENERAL CSS SETTINGS */

.svg-block {
  position: absolute;
  bottom: -9999px;
  left: -9999px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  height: 0;
}

.img-right {
  float: right;
  margin-left: 50px;
}

.img-left {
  float: left;
  margin-right: 50px;
}

.animate__animated {
  /* Анимация будет длиться 1 секунду */
  animation-duration: 2s;
  /* Запуск анимации один раз */
  animation-iteration-count: 1;
}

@media(max-width: 767px) {

  .img-right,
  .img-left {
    float: none;
    width: 100%;
    display: block;
    margin: 0 0 10px 0;
  }
}

::placeholder {
  color: #000;
  opacity: 1;
}

input,
textarea {
  outline: none;
}

input:focus:required:invalid,
textarea:focus:required:invalid {
  border-color: #14295E;
}

input:required:valid,
textarea:required:valid {
  border-color: green;
}

* {
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--font-family);
  font-size: var(--regular-text);
  line-height: var(--lineheight);
  color: var(--text);
  font-weight: 400;
  min-width: 320px;
  position: relative;
  overflow-x: hidden;
  background: #FFF;
}

/* common */
.title-h1 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 60px;
  line-height: 72px;
  text-align: center;
  color: var(--dark-blue);
  margin: 0 0 30px 0;
}

.phone {
  display: flex;
  align-items: center;
  gap: 0 8px;
  justify-content: center;
  text-decoration: none;
  border: 2px solid var(--blue-1);
  border-radius: 100px;
  height: 60px;
  width: 100%;
  max-width: 250px;
  transition: .2s ease-in-out;
}

.phone svg {
  fill: none;
  stroke: var(--blue-1);
  width: 24px;
  height: 24px;
  transition: .2s ease-in-out;
  stroke-width: 2.20px;
}

.phone span {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--blue-1);
  transition: .2s ease-in-out;
}

.phone:hover {
  background: var(--blue-1);
}

.phone:hover span {
  color: var(--white);
}

.phone:hover svg {
  stroke: var(--white);
}

.menu {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  gap: 0 50px;
  justify-content: end;
}

.menu>li {
  list-style-type: none;
  position: relative;
  padding: 0 0 20px 0;
  margin: 0 0 -20px 0;
}

.menu>li>a {
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0.02em;
  color: var(--dark-blue);
  text-decoration: none;
  position: relative;
  gap: 0 8px;
}

.menu>li>a svg {
  width: 10px;
  height: 5px;
  stroke: var(--dark-blue);
  fill: none;
}

.menu>li>a::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: #0d9276;
  transition: .2s ease-in-out;
  opacity: 0;
}

.menu>li>a:hover::after,
.menu>li.active>a::after {
  opacity: 1;
}

.submenu {
  position: absolute;
  margin: 20px 0 0 0;
  display: none;
  background: var(--white);
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 5px 20px 0 rgba(5, 13, 19, 0.3);
  min-width: 254px;
  flex-direction: column;
  gap: 4px 0;
  opacity: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}

.menu>li:hover .submenu {
  display: flex;
  opacity: 1;
}

.submenu>li {
  list-style-type: none;
}

.submenu>li>a {
  display: flex;
  align-items: center;
  border-radius: 6px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0.02em;
  color: var(--dark-blue);
  transition: .2s ease-in-out;
  text-decoration: none;
  height: 43px;
  transition: .2s ease-in-out;
  padding: 0 10px;
}

.submenu>li>a:hover {
  background: var(--blue-1);
  color: var(--white);
}

.lang {
  display: block;
  position: relative;
}

.lang__btn-current {
  display: flex;
  align-items: center;
  gap: 0 8px;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}

.lang__btn-current span {
  border: 2px solid var(--blue-1);
  width: 60px;
  height: 60px;
  border-radius: 100%;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--blue-1);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s ease-in-out;
}

.lang__btn-current svg {
  fill: none;
  stroke: var(--blue-1);
  width: 10px;
  height: 5px;
  transition: .2s ease-in-out;
}

.lang__btn-current:hover span,
.lang__btn-current.active span {
  background: var(--blue-1);
  color: var(--white);
}

.lang__list {
  display: flex;
  visibility: hidden;
  flex-direction: column;
  gap: 8px 0;
  position: absolute;
  margin: 20px 0 0 0;
  right: 0;
  border-radius: 8px;
  padding: 8px 12px;
  background: var(--white);
  transition: .2s ease-in-out;
  opacity: 0;
  z-index: 999;
}

.lang__list.show {
  opacity: 1;
  visibility: visible;
}

.lang__list li {
  list-style-type: none;
}

.lang__list li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0.02em;
  color: var(--dark-blue);
  transition: .2s ease-in-out;
  height: 39px;
  gap: 0 12px;
  width: 100%;
  padding: 0 8px;
  border-radius: 7px;
}

.lang__list li a:hover {
  background: var(--blue-1);
  color: var(--white);
}

.btn-mobile-menu {
  display: none;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
}

.btn-mobile-menu span {
  background: var(--blue-1);
  border-radius: 5px;
  height: 3px;
  width: 25px;
}

.btn {
  border-radius: 100px;
  padding: 16px 32px;
  height: 60px;
  width: 100%;
  max-width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: .2s ease-in-out;
}

.btn-callback {
  color: var(--dark-blue);
}

.btn-callback:hover {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
}

.disabled {
  background: #fff;
  opacity: .5;
  pointer-events: none;
}

@media(max-width: 1024px) {
  .phone {
    width: 25px;
    height: 25px;
    border: none;
  }

  .phone span {
    display: none;
  }

  .phone svg {
    width: 28px;
    height: 28px;
  }

  .lang {
    display: none;
  }

  .btn-mobile-menu {
    display: flex;
    align-items: center;
    gap: 5px 0;
    flex-direction: column;
  }
}

@media(max-width: 991px) {
  .title-h1 {
    font-size: 40px;
    line-height: 52px;
    margin: 0 0 32px 0;
  }
}

/* end common */

/* header */
.header {
  padding: 20px 0 19px 0;
  position: relative;
  z-index: 9999;
}

.header .logo__img-white {
  display: none;
}

.header.header--inner .logo__img-white {
  display: block;
}

.header.header--inner .logo__img-color {
  display: none;
}

.header--blue {
  background: var(--blue-1);
}

.header--green {
  background: var(--green-1);
}

.header--shadow {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2);
}

.header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 24px;
}

.header.header--inner .menu>li>a {
  color: var(--white);
}

.header.header--inner .menu>li>a>svg {
  stroke: var(--white);
}

.header.header--inner .menu>li>a::after {
  background: var(--white);
}

.header.header--inner .lang__btn-current span {
  color: var(--white);
  border-color: var(--white);
}

.header.header--inner .lang__btn-current svg {
  stroke: var(--white);
}


.header.header--inner .lang__btn-current:hover span {
  background: var(--white);
  color: var(--blue-1);
}

.header.header--inner .phone {
  border-color: var(--white);
}

.header.header--inner .phone span {
  color: var(--white);
}

.header.header--inner .phone svg {
  stroke: var(--white);
}

.header.header--inner .phone:hover {
  background: var(--white);
}

.header.header--inner .phone:hover span {
  color: var(--blue-1);
}

.header.header--inner .phone:hover svg {
  stroke: var(--blue-1);
}

.header__mobile {
  position: fixed;
  right: -699px;
  top: 0;
  background: var(--white);
  width: 100%;
  max-width: 328px;
  height: 100%;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: .5s ease-in all;
}

.header__mobile.show {
  right: 0;
  visibility: visible;
  opacity: 1;
}

.header__mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 12px 20px;
  border-bottom: 1px solid #c2c7cb;
  margin: 0 0 32px 0;
}

.header__mobile-lang {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0 20px;
}

.header__mobile-lang li {
  list-style-type: none;
}

.header__mobile-menu>ul {
  padding: 0 14px 0 20px;
  margin: 0;
}

.header__mobile-menu li {
  margin: 0;
  padding: 0 0 12px 0;
  list-style-type: none;
  border-bottom: 1px solid #c2c7cb;
}

.header__mobile-menu li:not(:first-child) {
  padding: 12px 0 12px 0;
}

.header__mobile-menu>ul>li>a {
  text-decoration: none;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0.02em;
  color: var(--dark-blue);
}

.header__mobile-menu>ul>li>ul {
  padding: 0 14px 0 40px;
  margin: 0;
}

.header__mobile-menu>ul>li>ul>li {
  padding: 12px 0;
  border-bottom: 1px solid #c2c7cb;
}

.header__mobile-menu>ul>li>ul>li:last-child {
  border: none;
}

.header__mobile-menu>ul>li>ul>li>a {
  text-decoration: none;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0.02em;
  color: var(--dark-blue);
}

.header__mobile-btn-close {
  border: none;
  background: none;
}

.header__mobile-btn-close svg {
  fill: var(--blue-1);
  stroke: var(--blue-1);
  width: 24px;
  height: 24px;
}

.header--inner .btn-mobile-menu span {
  background: var(--white);
}

@media(max-width: 1024px) {
  .header__nav {
    display: none;
  }
}

@media(max-width: 768px) {
  .header__logo img {
    width: 100%;
    max-width: 161px;
    display: block;
  }
}

/* end header */

/* footer */
.footer {
  background: var(--dark-blue);
  padding: 274px 0 46px 0;
}

.footer__top-logo {
  display: block;
  text-align: center;
  margin: 0 0 40px 0;
}

.footer__top-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 40px 0;
}

.footer__top-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 50px;
  padding: 0;
  margin: 0;
}

.footer__top-menu>li {
  list-style-type: none;
}

.footer__top-menu>li>a {
  text-decoration: none;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0.02em;
  color: var(--white);
  transition: .2s ease-in-out;
}

.footer__top-official {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 15px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0.02em;
  color: var(--white);
}

.footer__top-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  padding: 0;
  margin: 30px 0 50px 0;
}

.footer__bottom-copy {
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0.02em;
  color: var(--body-white);
  padding: 0 50px 0 0;
}

.footer__bottom-paymants {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 16px;
}

.footer__bottom-paymants span {
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0.02em;
  text-align: right;
  color: var(--body-white);
}

.footer__bottom-paymants ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0 21px;
}

.footer__bottom-paymants ul li {
  list-style-type: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.footer__bottom-paymants ul li:first-child::before {
  content: '';
  height: 40px;
  width: 1px;
  background: var(--body-white);
  position: absolute;
  right: -11px;
  top: -5px;
}

.footer__bottom-develop {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 0 20px;
  text-align: right;
  width: 100%;
  text-decoration: none;
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0.02em;
  text-align: right;
  color: var(--body-white);
  transition: .2s ease-in-out;
}

.footer__bottom-develop svg {
  fill: var(--body-white);
  width: 120px;
  height: 39px;
}

.footer__bottom-develop:hover {
  color: var(--white);
}

@media(max-width: 991px) {
  .footer__top-line {
    margin: 32px 0;
  }

  .footer__bottom-copy {
    text-align: center;
    padding: 0 0 20px 0;
  }

  .footer__bottom-develop {
    justify-content: center;
    flex-direction: column;
    gap: 20px 0;
  }

  .footer__top-official {
    flex-direction: column;
    gap: 20px 0;
  }

  .footer__top-menu {
    flex-direction: column;
    gap: 16px 0;
  }
}

/* end footer */

/* bottom-callback */
.bottom-callback {
  padding: 180px 0 0 0;
  margin: 0 0 -200px 0;
}

.bottom-callback__row {
  background: var(--blue-1);
  border-radius: 30px;
  position: relative;
  display: flex;
}

.bottom-callback__info {
  width: 100%;
  max-width: 840px;
  padding: 40px 0 40px 40px;
}

.bottom-callback__info h2 {
  margin: 0 0 32px 0;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 45px;
  line-height: 60px;
  color: var(--white);
}

.bottom-callback__info p {
  margin: 0 0 40px 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
}

.bottom-callback__form {
  display: flex;
  align-items: end;
  gap: 0 20px;
}


.bottom-callback__img {
  position: absolute;
  right: 40px;
  bottom: 0;
}

@media(max-width: 1024px) {
  .bottom-callback {
    padding: 128px 0 0 0;
  }

  .bottom-callback__info {
    max-width: calc(100% - 440px);
    padding: 40px 20px 0 20px;
  }

  .bottom-callback__form {
    flex-wrap: wrap;
    gap: 20px 0;
    padding: 0 0 40px 0;
  }

  .bottom-callback__info h2 {
    font-size: 32px;
    line-height: 40px;
    margin: 0 0 24px 0;
  }

  .bottom-callback__info p {
    font-size: 16px;
    line-height: 24px;
  }

  .bottom-callback__form .control {
    width: 100%;
  }

  .bottom-callback__form .control input {
    max-width: 100%;
  }

  .bottom-callback__form .control .iti {
    width: 100%;
  }

  .btn-callback {
    max-width: 100%;
  }
}

@media(max-width: 991px) {
  .bottom-callback__row {
    flex-direction: column;
    overflow: hidden;
  }

  .bottom-callback__info {
    max-width: 100%;
  }

  .bottom-callback__info h2 {
    text-align: center;
  }

  .bottom-callback__info p {
    text-align: center;
  }

  .bottom-callback__img {
    position: unset;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
  }
}

@media(max-width: 500px) {

  .bottom-callback__img img {
    width: 100%;
    display: block;
  }
}

/* end bottom-callback */

/* control */
.control {
  position: relative;
}

.control label {
  display: block;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 0 0 8px 0;
}

.control label sup {
  color: var(--red);
}

.control input {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0 20px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0.02em;
  color: var(--white);
  height: 59px;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 276px;
}

.control input[name="phone"] {
  padding: 0 20px 0 62px;
}

.control input::placeholder {
  color: var(--body-white);
}

.control .iti__search-input {
  display: none;
}

.control .iti__selected-country-primary {
  padding: 0 10px 0 20px;
}

.iti--allow-dropdown input.iti__tel-input,
.iti--allow-dropdown input.iti__tel-input[type="text"],
.iti--allow-dropdown input.iti__tel-input[type="tel"] {
  padding: 0 20px 0 62px;
}

.control textarea {
  resize: none;
  height: 130px;
  padding: 12px;
  border: 1px solid var(--inputs);
  width: 100%;
  max-width: 100%;
  color: var(--body);
  border-radius: 8px;
}

.control textarea::placeholder {
  color: var(--inputs);
}

/* end control */

/* seo-block */
.seo-block {
  padding: 128px 0 0 0;
}

.seo-block__wrap {
  height: 108px;
  overflow: hidden;
  position: relative;
}

.seo-block__wrap::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60px;
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 80%);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 80%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
}

.seo-block__wrap.show {
  height: auto;
}

.seo-block__wrap.show::before {
  visibility: hidden;
}

.seo-block__wrap p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.02em;
  color: var(--body);
  margin: 0 0 20px 0;
}

.seo-block__btn {
  border: none;
  background: none;
  padding: 0;
  margin: 10px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.seo-block__btn svg {
  fill: none;
  stroke: var(--dark-blue);
  width: 20px;
  height: 20px;
}

.seo-block__btn.active svg {
  transform: scale(-1);
}

@media(max-width: 1024px) {
  .seo-block {
    padding: 60px 0 0 0;
  }
}

/* end seo-block */

/* main-first-block */
.main-first-block {
  margin: -99px 0 0 0;
  position: relative;
  min-height: 800px;
}

.main-first-block__img {
  height: 800px;
}

.main-first-block__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.main-first-block__text {
  position: absolute;
  z-index: 999;
  top: 200px;
  left: 0;
  width: 100%;
  margin: 0 auto;
}

.main-first-block__text h2 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 60px;
  line-height: 80px;
  color: var(--dark-blue);
  margin: 0 0 30px 0;
}

.main-first-block__text p {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.02em;
  color: var(--body);
}

.main-first-block__text-link {
  text-decoration: none;
  margin: 60px 0 0 0;
  background: var(--blue-1);
  color: var(--white);
}

.main-first-block__text-link:hover {
  background: #3985bd;
  color: var(--white);
}

@media(max-width: 1024px) {
  .main-first-block__text {
    top: 120px;
  }

  .main-first-block__text h2 {
    font-size: 40px;
    line-height: 52px;
    margin: 0 0 24px 0;
    text-align: center;
  }

  .main-first-block__text p {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }

  .main-first-block__text-link {
    margin: 40px auto 0 auto;
  }

  .main-first-block {
    min-height: 720px;
  }

  .main-first-block__img {
    height: 720px;
  }
}

/* end main-first-block */

/* calculators */
.calculators {
  margin: -150px 0 0 0;
  position: relative;
  z-index: 1000;
}

.calculators__row {
  gap: 30px 0;
}

.calculators__item {
  background: var(--blue-1);
  border-radius: 20px;
  padding: 20px 32px 116px 32px;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none
}

.calculators__item:hover{
  text-decoration: none;
}

.calculators__item--green {
  background: var(--green-1);
}

.calculators__item--disabled::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(96, 105, 109, 0.6);
  z-index: 99;
}

.calculators__item h2 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 35px;
  line-height: 42px;
  text-align: center;
  color: var(--white);
  padding: 0 10px;
  margin: 0 0 20px 0;
}

.calculators__item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.calculators__item-icon svg {
  width: 113px;
  height: 130px;
}

.calculators__item-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--dark-blue);
  background: var(--white);
  height: 60px;
  border-radius: 100px;
  width: 100%;
  max-width: 250px;
  transition: .2s ease-in-out;
  border: 2px solid transparent;
  position: absolute;
  bottom: 20px;
  cursor: pointer;
}

.calculators__item-link:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.calculators__item-cooming {
  position: absolute;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 35px;
  line-height: 42px;
  text-align: center;
  color: var(--white);
  padding: 0 40px;
  width: 100%;
  margin: 0 auto;
  left: 0;
}

@media(max-width: 1024px) {
  .calculators__item-link {
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    line-height: 16px;
  }
}

/* end calculators */

/* what-work-us */
.what-work-us {
  background: var(--blue-1);
  padding: 97px 0;
  margin: 128px 0 0 0;
}

.what-work-us__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 45px;
  line-height: 58px;
  color: var(--white);
  margin: 0 0 60px 0;
  text-align: center;
}

.what-work-us__row {
  gap: 30px 0;
}

.what-work-us__item {
  display: flex;
  align-items: center;
  gap: 0 24px;
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
}

.what-work-us__item-icon svg {
  fill: var(--dark-blue);
  transition: .2s ease-in-out;
}

.what-work-us__item-info h3 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: var(--dark-blue);
  margin: 0 0 16px 0;
}

.what-work-us__item-info p {
  padding: 0;
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: var(--body);
}

.what-work-us__item:hover .what-work-us__item-icon svg {
  fill: var(--green-2);
}

.what-work-us .col-lg-4:nth-child(2n) .what-work-us__item:hover .what-work-us__item-icon svg {
  fill: var(--blue-2);
}

@media(max-width: 1024px) {
  .what-work-us {
    padding: 75px 0;
    margin: 60px 0 0 0;
  }

  .what-work-us__title {
    font-size: 32px;
    line-height: 32px;
    margin: 0 0 32px 0;
  }
}

/* end what-work-us */

/* history */
.history {
  padding: 128px 0;
}

.history__content img {
  object-fit: cover;
  width: 100%;
}

.history__content h2 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 45px;
  line-height: 58px;
  color: var(--dark-blue);
  margin: 0 0 30px 0;
}

.history__content--right h2 {
  margin: 36px 0 30px 0;
}

.history__content p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.02em;
  color: var(--body);
  margin: 0 0 36px 0;
}

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

.history__content-item {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
}

.history__content-item strong {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 45px;
  line-height: 45px;
  color: var(--dark-blue);
}

.history__content-item span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0.02em;
  color: var(--body);
}

@media(max-width: 1024px) {
  .history {
    padding: 60px 0;
  }

  .history__content h2 {
    font-size: 32px;
    line-height: 40px;
    margin: 0 0 24px 0;
  }

  .history__content--right h2 {
    margin: 36px 0 24px 0;
  }

  .history__content p {
    font-size: 16px;
    line-height: 24px;
  }

  .history__content-item strong {
    font-size: 32px;
    line-height: 32px;
  }

  .history__content-item span {
    font-size: 16px;
    line-height: 24px;
  }
}

@media(max-width: 991px) {
  .history__content--right {
    margin: 40px 0 0 0;
  }
}

/* end history */

/* reviews */

.reviews__title {
  margin: 0 0 60px 0;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 45px;
  line-height: 58px;
  color: var(--dark-blue);
  text-align: center;
}

.reviews__slider-swiper {
  overflow: hidden;
  position: relative;
  padding: 0 0 60px 0;
}

.reviews__item {
  position: relative;
  border-radius: 20px;
  background: var(--blue-1);
  padding: 40px 0 34px 0;
}

.reviews__item--green {
  background: var(--green-1);
}

.reviews__item-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 5px;
}

.reviews__item-desc {
  position: relative;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--white);
  margin: 50px 0 0 0;
  padding: 0 88px;
}

.reviews__item-desc::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 32px;
  display: block;
  width: 45px;
  height: 45px;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url('../images/marks.svg');
}

.reviews__item-desc::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: 32px;
  display: block;
  width: 45px;
  height: 45px;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url('../images/marks.svg');
  transform: scale(-1);
}

.reviews__item-name {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 35px;
  line-height: 42px;
  text-align: center;
  color: var(--white);
  margin: 14px 0 0 0;
}

.item-rating svg {
  width: 36px;
  height: 36px;
  fill: var(--yellow);
}

.reviews__slider-swiper-scrollbar {
  width: 100%;
  max-width: 400px;
  bottom: 0 !important;
  margin: 0 0 0 50%;
  transform: translateX(-50%);
  background: rgba(11, 114, 191, 0.2);
}

.reviews__slider-swiper-scrollbar .swiper-scrollbar-drag {
  background: var(--blue-1);
}

@media(max-width: 1024px) {
  .reviews__slider-swiper {
    padding: 0 0 40px 0;
  }

  .reviews__title {
    font-size: 32px;
    line-height: 40px;
    margin: 0 0 32px 0;
  }

  .reviews__item-desc::before {
    width: 23px;
    height: 20px;
    left: 16px;
  }

  .reviews__item-desc::after {
    width: 23px;
    height: 20px;
    right: 16px;
  }

  .reviews__item-desc {
    font-size: 16px;
    line-height: 24px;
    margin: 50px 0 0 0;
    padding: 0 50px;
  }

  .reviews__item-name {
    margin: 12px 0 0 0;
    font-size: 32px;
    line-height: 32px;
  }
}

/* end reviews */

/* cookie-block */
.cookie-block {
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  margin: 0 auto;
  background: var(--white);
  padding: 20px 50px;
  z-index: 9999;
}

.cookie-block__row {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.cookie-block-close {
  position: absolute;
  right: 0;
  top: -12px;
  border: none;
  background: none;
}

.cookie-block-close svg {
  width: 12px;
  height: 12px;
  fill: var(--dark-blue);
}

.cookie-block__left h3 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: var(--dark-blue);
  margin: 0 0 20px 0;
}

.cookie-block__left p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0.02em;
  color: var(--dark-blue);
  margin: 0;
}

.cookie-block__btn {
  display: flex;
  align-items: center;
  gap: 0 20px;
  width: 40%;
  justify-content: end;
}

.cookie-block__link {
  border: 2px solid var(--blue-1);
  border-radius: 100px;
  height: 40px;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--blue-1);
  text-decoration: none;
  max-width: 200px;
}

.cookie-block__link:hover {
  color: var(--white);
  background: var(--blue-1);
}

.cookie-block__btn-accept {
  color: var(--white);
  background: var(--blue-1);
  height: 40px;
  max-width: 200px;
  border: 2px solid transparent;
}

.cookie-block__btn-accept:hover {
  background: var(--white);
  color: var(--blue-1);
  border-color: var(--blue-1);
}

@media(max-width: 991px) {
  .cookie-block {
    padding: 12px 15px;
  }

  .cookie-block__row {
    flex-direction: column;
    justify-content: center;
    gap: 20px 0;
  }

  .cookie-block__btn {
    width: 100%;
    justify-content: center;
  }

  .cookie-block__left h3,
  .cookie-block__left p {
    text-align: center;
  }
}

/* end cookie-block */

/* info-page */
.info-page {
  padding: 130px 0 0 0;
}

.info-page__img {
  text-align: center;
  margin: 0 0 80px 0;
}

.info-page__text h1 {
  text-align: center;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 60px;
  line-height: 70px;
  color: var(--dark-blue);
  margin: 0 0 32px 0;
}

.info-page__text p {
  text-align: center;
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.02em;
  color: var(--dark-blue);

}

.link-home {
  text-decoration: none;
  background: var(--blue-1);
  color: var(--white);
  margin: 60px auto 0 auto;
}

.link-home:hover {
  background: var(--white);
  border-color: var(--blue-1);
  color: var(--blue-1);
}

@media(max-width: 991px) {
  .info-page {
    padding: 70px 0 0 0;
  }

  .info-page__img {
    margin: 0 0 60px 0;
  }

  .info-page__img img {
    width: 100%;
    height: 100%;
    max-width: 350px;
    object-fit: cover;
  }

  .info-page__img--success img {
    width: 200px;
    height: 200px;
  }

  .info-page__text h1 {
    font-size: 40px;
    line-height: 52px;
    margin: 0 0 30px 0;
  }

  .info-page__text p {
    font-size: 16px;
    line-height: 24px;
  }
}

/* end info-page */

/* inner-page */
.inner-page {
  padding: 80px 0 0 0;
}

@media(max-width: 991px) {
  .inner-page {
    padding: 40px 0 0 0;
  }
}

/* end inner-page */

/* cms-content */
.cms-content p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.02em;
  color: var(--body);
  margin: 0 0 20px 0;
}

.cms-content p:last-child {
  margin: 0;
}

.cms-content h2 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 45px;
  line-height: 45px;
  color: var(--dark-blue);
  margin: 0 0 32px 0;
}

.cms-content h3 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 35px;
  line-height: 35px;
  color: var(--dark-blue);
  margin: 0 0 32px 0;
}

.cms-content h4 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  color: var(--dark-blue);
  margin: 0 0 32px 0;
}

.cms-content ul {
  padding: 0 0 0 20px;
  margin: 0 0 32px 0;
}

.cms-content ul li {
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0.02em;
  color: var(--body);
  margin: 0 0 10px 0;
}

.cms-content ul li:last-child {
  margin: 0;
}

@media(max-width: 991px) {

  .cms-content p,
  .cms-content ul li {
    font-size: 16px;
    line-height: 24px;
  }

  .cms-content h2 {
    font-size: 32px;
    line-height: 32px;
  }

  .cms-content h3 {
    font-size: 24px;
    line-height: 24px;
  }

  .cms-content h4 {
    font-size: 20px;
    line-height: 20px;
  }
}

/* end cms-content */

/* faq-page */
.faq-page {
  padding: 80px 0 0 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item__head {
  padding: 26px 20px;
  border-bottom: 1px solid rgba(0, 29, 50, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-item__head h2 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0.02em;
  color: var(--dark-blue);
  margin: 0;
}

.faq-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid var(--dark-blue);
  width: 40px;
  height: 40px;
}

.faq-item__icon svg {
  fill: none;
  stroke: var(--dark-blue);
  width: 16px;
  height: 16px;
}

.faq-item__head.active,
.faq-item__head.active .faq-item__icon {
  border-color: var(--blue-1);
}

.faq-item__head.active h2 {
  color: var(--blue-1);
}

.faq-item__head.active .faq-item__icon svg {
  stroke: var(--blue-1);
  transform: scale(-1);
}

.faq-item__body {
  padding: 32px 40px 0 40px;
  display: none;
}

.faq-item__body.show {
  display: block;
}

.faq-item__body p {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.02em;
  color: var(--dark-blue);
}

.faq-inner {
  padding: 128px 0 0 0;
}

.faq-inner__title {
  margin: 0 0 50px 0;
  text-align: center;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 45px;
  line-height: 50px;
  color: var(--dark-blue);
}

@media(max-width: 1024px) {
  .faq-page {
    padding: 20px 0 0 0;
  }

  .faq-inner {
    padding: 60px 0 0 0;
  }

  .faq-inner__title {
    margin: 0 0 32px 0;
    font-size: 32px;
    line-height: 32px;
  }
}

@media(max-width: 991px) {
  .faq-item__head {
    padding: 20px 12px;
    gap: 0 28px;
  }

  .faq-item__icon {
    width: 30px;
    height: 30px;
  }

  .faq-item__head h2 {
    font-size: 16px;
    line-height: 24px;
    width: calc(100% - (30px + 28px));
  }

  .faq-item__body p {
    font-size: 16px;
    line-height: 24px;
  }

  .faq-item__body {
    padding: 20px 20px 0 20px;
  }
}

/* end faq-page */

/* contact-page */
.contact-page {
  padding: 80px 0 0 0;
}

.contact-page__container {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.contact-text {
  margin: 0 0 40px 0;
}

.contact-text p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--body);
  margin: 0;
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 0 19px;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.02em;
  color: var(--body);
}

.contact-phone svg {
  fill: none;
  stroke: var(--body);
  width: 24px;
  height: 24px;
}

.contact-phone strong {
  font-weight: 600;
}

.contact-phone a {
  text-decoration: none;
  color: inherit;
}

.contact-email {
  display: flex;
  align-items: center;
  gap: 0 19px;
  justify-content: center;
  margin: 16px 0 0 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.02em;
  color: var(--body);
}

.contact-email svg {
  fill: none;
  stroke: var(--body);
  width: 24px;
  height: 24px;
}

.contact-email strong {
  font-weight: 600;
}

.contact-email a {
  text-decoration: none;
  color: inherit;
}

.contact-form {
  margin: 60px 0 0 0;
}

.contact-form .tit {
  width: 100%;
}

.contact-form .control:not(:first-child) {
  margin: 30px 0 0 0;
}

.contact-form .control>label {
  color: var(--body);
}

.contact-form .control>input,
.contact-form .control .phoneSelect {
  border: 1px solid var(--inputs);
  width: 100%;
  max-width: 100%;
  color: var(--body);
}

.contact-form .control>input::placeholder {
  color: var(--inputs);
}

.iti--inline-dropdown {
  max-width: 100%;
  width: 100%;
}

.control-politics {
  margin: 32px 0 0 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: var(--body);
}

.control-politics>label {
  display: block;
}

.control-politics a {
  text-decoration: underline;
  color: var(--dark-blue);
}

.control-politics span {
  display: flex;
  gap: 0 20px;
  position: relative;
  cursor: pointer;
}

.control-politics span::before {
  width: 20px;
  height: 20px;
  border: 1px solid var(--inputs);
  border-radius: 5px;
  content: '';
  background: var(--white);
}

.control-politics span::after {
  position: absolute;
  left: 3px;
  top: 3px;
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: var(--blue-1);
  transform: scale(0);
  transition: .2s ease-in-out;
}

.control-politics input:checked+span::after {
  transform: scale(1);
}

.control-politics span div {
  width: 100%;
  max-width: calc(100% - (20px * 2));
}

.contact-form__btn {
  margin: 60px auto 0 auto;
  background: #6695b7;
  color: var(--white);
}

.contact-form__btn:hover {
  background: #72a7cd;
}

@media(max-width: 991px) {
  .contact-page {
    padding: 20px 0 0 0;
  }

  .contact-text {
    margin: 0 0 30px 0;
  }

  .contact-text p {
    font-size: 16px;
    line-height: 24px;
  }

  .contact-phone {
    font-size: 16px;
    line-height: 24px;
  }

  .contact-email {
    margin: 12px 0 0 0;
    font-size: 16px;
    line-height: 24px;
  }

  .contact-form {
    margin: 40px 0 0 0;
  }

  .contact-form__btn {
    margin: 40px auto 0 auto;
  }
}

/* end contact-page */

/* inner-first-block */
.inner-first-block {
  padding: 60px 0 223px 0;
  background: var(--blue-1);
}

.inner-first-block--green {
  background: var(--green-1);
}

.inner-first-block__text h1 {
  margin: 0 0 32px 0;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 60px;
  line-height: 130%;
  color: var(--white);
}

.inner-first-block__text p {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.02em;
  color: var(--white);
}

.inner-first-block__img {
  display: flex;
  justify-content: end;
}

@media(max-width: 1024px) {
  .inner-first-block__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media(max-width: 991px) {
  .inner-first-block {
    padding: 23px 0 45px 0;
  }

  .inner-first-block__text h1 {
    font-size: 40px;
    line-height: 40px;
    margin: 0 0 30px 0;
    text-align: center;
  }

  .inner-first-block__text p {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }

  .inner-first-block__img {
    padding: 40px 0 0 0;
  }
}

/* end inner-first-block */

/* calculator-inner */
.calculator-inner {
  margin: -120px 0 0 0;
}

.calculator-inner__wrap {
  background: var(--white);
  border-radius: 30px;
  padding: 60px;
  box-shadow: 0 5px 20px 0 rgba(5, 13, 19, 0.3);
  position: relative;
}

.calculator-inner__steps-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 564px;
  margin: 0 auto;
  position: relative;
}

.calculator-inner__steps-row::before {
  content: '';
  position: absolute;
  top: 23px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: rgba(11, 114, 191, 0.2);
}

.calculator-inner__step {
  display: flex;
  flex-direction: column;
  gap: 12px 0;
}

.calculator-inner__step span {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 1px solid var(--blue-1);
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  color: var(--dark-blue);
  padding: 0;
  z-index: 2;
  margin: 0 auto;
}

.calculator-inner__step.active span {
  background: var(--blue-1);
  color: var(--white);
}

.calculator-inner__step h3 {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0.02em;
  color: var(--dark-blue);
  text-align: center;
}

.calculator-form__btn {
  margin: 60px auto 0 auto;
  background: var(--blue-1);
  color: var(--white);
  border: 1px solid var(--blue-1);
}

.calculator-form__btn:hover {
  background: var(--white);
  color: var(--dark-blue);
}

.calculator-form__btn.disabled,
.calculator-form__btn[disabled] {
  background: #6695b7;
  color: var(--white);
  pointer-events: none;
  opacity: .5
}

.calculator-form {
  margin: 80px 0 0 0;
}

.calculator-form .control-politics {
  margin: 24px 0 0 0;
}

.calculator-form .control input {
  max-width: 100%;
  border: 1px solid var(--inputs);
  padding: 0 46px 0 12px;
  color: var(--body);
  height: 51px;
}

.calculator-form .control input.disabled,
.calculator-form .control input[disabled]{
  opacity: .5;
  pointer-events: none;
}

.calculator-form .control input:focus {
  border: 1px solid var(--body);
}

.calculator-form .control input::placeholder {
  color: var(--inputs);
}

.calculator-form .control>label {
  color: var(--body);
}

.c-tooltip {
  position: absolute;
  bottom: 13px;
  right: 12px;
  cursor: pointer;
  z-index: 99;
}

.c-tooltip svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #808E98;
  transition: .2s ease-in-out;
}

.c-tooltip:hover svg {
  fill: #333D45;
}
 
.tippy-box[data-theme~='prof'] {
  background-color: #808E98;
  color: #fff;
}

.tippy-box[data-theme~='prof'][data-placement^='top'] > .tippy-arrow::before {
  border-top-color: #808E98;
}
.tippy-box[data-theme~='prof'][data-placement^='bottom'] > .tippy-arrow::before {
  border-bottom-color: #808E98;
}
.tippy-box[data-theme~='prof'][data-placement^='left'] > .tippy-arrow::before {
  border-left-color: #808E98;
}
.tippy-box[data-theme~='prof'][data-placement^='right'] > .tippy-arrow::before {
  border-right-color: #808E98;
}

.calculator-form__left .control:not(:first-child),
.calculator-form__right .control:not(:first-child) {
  margin: 24px 0 0 0;
}

.idno-fields{
  display: none;
  margin-top: 24px;
}

.idno-fields.active{
  display: block
}

.idno-fields-table{
  display: none;
}

.active.idno-fields-table{
  display: block;
}

.calculator-form__info {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.calculator-form__info-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  gap: 20px 0;
}

.calculator-form__info-wrap.loading{
  position: relative;
  z-index: 2;
}

.calculator-form__info-wrap.loading::before,
.calculator-form__info-wrap.loading::after{
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 3;
}

.calculator-form__info-wrap.loading::after {
  background: rgba(0,0,0, .2);
}

.calculator-form__info-wrap.loading::before {  
  top: 50%;
  left: 50%;
  margin: -75px 0 0 -75px; 
  z-index: 4;
}
 
.calculator-form__info label {
  display: block;
  margin: 0 0 8px 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0.02em;
  color: var(--body);
}

.calculator-form__info-wrap {
  border: 1px solid var(--body);
  border-radius: 8px;
  padding: 24px 20px;
  background: var(--input-fill);
}

.calculator-form__info-wrap table {
  border-collapse: collapse;
  width: 100%;
}

.calculator-form__info-wrap table tr td {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0.02em;
  color: var(--body);
  vertical-align: top;
}

.calculator-form__info-wrap table tr td:last-child {
  text-align: right;
}

.calculator-form__info-wrap table tr:not(:last-child) td {
  padding: 0 0 24px 0;
}

.calculator-form__info-wrap.add-active-table-field table tr:not(:last-child) td {
  padding: 0 0 18px 0;
}


.calculator-form__info-wrap table tr td strong {
  font-weight: 600;
}

.calculator-form__info-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 0 0;
  border-top: 1px solid var(--body);
}

.calculator-form__info-total span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0.02em;
  color: var(--body);
}

.calculator-form__info-total strong {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--dark-blue);
}

.calculator-inner__head {
  margin: 0 0 80px 0;
}

.calculator-inner__head h2 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 25px;
  line-height: 28px;
  letter-spacing: 0.02em;
  color: var(--dark-blue);
  text-align: center;
  margin: 0 0 20px 0;
}

.calculator-inner__head-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 20px;
}

.calculator-inner__head-item {
  border: none;
  border-radius: 4px;
  padding: 4px 8px;
  background: rgba(13, 146, 118, 0.3);
  width: 100%;
  max-width: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0.02em;
  color: var(--dark-blue);
  gap: 0 15px;
}

.control select {
  display: none;
}


.control .nice-select {
  width: 100%;
  border: 1px solid var(--inputs);
  border-radius: 8px;
  height: 51px;
  float: none;
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0.02em;
  color: var(--body);
}

.control .nice-select:focus {
  border: 1px solid var(--body);
}

.control .nice-select .nice-select-dropdown {
  width: 100%;
  border: 1px solid var(--inputs);
  border-radius: 8px;
  margin: 12px 0 0 0;
  padding: 0;
}

.control .nice-select .option {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0.02em;
  color: var(--body);
  padding: 10px 20px;
}

.calculator-form .iti {
  width: 100%;
}

.control__icon-date {
  position: absolute;
  right: 12px;
  top: 35px;
}

.control__icon-date svg {
  fill: none;
  width: 24px;
  height: 24px;
  stroke: var(--inputs);
}

.control input:focus~.control__icon-date svg {
  fill: var(--inputs);
  stroke: var(--body);
}

.control__info {
  display: flex;
  gap: 0 12px;
  padding: 20px 0 0 0;
}

.control__info svg {
  fill: none;
  width: 24px;
  height: 24px;
  stroke: var(--red);
}

.control__info span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.02em;
  color: var(--red);
  width: calc(100% - (24px + 12px));
}

@media(max-width: 991px) {
  .calculator-inner {
    margin: 0;
  }

  .calculator-inner__wrap {
    padding: 60px 0 0 0;
    box-shadow: none;
  }

  .calculator-form {
    margin: 40px 0 0 0;
  }

  .calculator-form__btn {
    margin: 40px auto 0 auto;
  }

  .calculator-form__row {
    gap: 20px 0;
  }

  .calculator-inner__steps-row {
    max-width: 400px;
  }

  .calculator-inner__steps-row::before {
    width: 70%;
  }

  .calculator-form .control input {
    height: 60px;
  }

  .control .nice-select {
    height: 60px;
  }

  .calculator-inner__head {
    margin: 0 0 40px 0;
  }

  .calculator-inner__head-row {
    flex-direction: column;
    gap: 20px 0;
  }

  .calculator-inner__head-item {
    max-width: 100%;
  }

  .c-tooltip {
    bottom: 18px;
  }
}


/* end calculator-inner */

/*
===========================================*/
.calc-steps{
    position: relative;
}


.calc-step{
  display: none;
}

.calc-step.active{
  display: block;
}

.btn-step{
  display: none !important;
}

.btn-step.active{
  display: flex !important;
}

.calculator-form .phoneSelect {
  padding-left: 110px !important;
}

/*
===========================================*/
.calc-errors {
    text-align: center;
    margin: -30px 0 0 0;
    padding: 0 0 30px;
    color: red;
}

.loading::before{
    content: "";
    width: 150px;
    height: 150px;
    background: url(../images/loader.svg) no-repeat;
    background-size: 100% 100%;
}

.calc-steps.loading::before{
    position: absolute;
    top: -150px;
    left: 50%;
    margin-left: -75px;
    z-index: 3;
}