@charset "UTF-8";
* {
  box-sizing: border-box;
}

html, body {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  font-family: sans-serif;
  overflow-x: hidden;
  background: rgb(240, 244, 247);
}

@font-face {
  font-family: "ltr";
  src: url("/fonts/Lato-Regular.ttf");
}
@font-face {
  font-family: "ltb";
  src: url("/fonts/Lato-Bold.ttf");
}
@font-face {
  font-family: "rb";
  src: url("/fonts/Roboto-VariableFont_wdth,wght.ttf");
}
/* Адаптивные стили */
@media (max-width: 768px) {
  .calc__fl .content {
    font-size: 1.4rem;
    overflow-x: auto;
  }
}
@media (max-width: 480px) {
  .calc__fl .content {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 960px) {
  .katex {
    font-family: serif !important;
    color: #000 !important;
    font-size: 95% !important;
  }
  .calc {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .calc .calc__title .calc__title_txt {
    width: 100% !important;
    font-size: 1.35rem !important;
  }
  .calc .calc__content {
    display: flex !important;
    flex-direction: column !important;
  }
  .calc .calc__output {
    margin-top: 20px !important;
    margin-left: 0 !important;
  }
  .calc .calc__pl {
    margin: 40px !important;
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .calc .calc__fl {
    margin-left: 0 !important;
    margin-top: 20px !important;
  }
  .calc .calc__fl .content {
    font-family: "rb";
    font-size: 20px;
    font-weight: bold;
    color: #6C757D;
  }
  .calc_list {
    grid-template-columns: 100% !important;
  }
  .menu__btn {
    display: block;
    cursor: pointer;
  }
  .header {
    align-content: center !important;
    height: 75px !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .header .logo {
    align-items: center;
  }
  .header__menu {
    flex-direction: column !important;
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 0.5px solid #ccc;
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .header__menu .menu__item {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 45px;
  }
  .main .main_calc {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .main .main__btns a {
    min-width: 100px !important;
    font-size: 90% !important;
  }
  .main .main__title {
    font-size: 1.7rem !important;
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
  .main .main__desc {
    width: 80%;
    font-size: 1rem !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .main .best_list {
    flex-direction: column !important;
  }
  .main .best_list .list__item {
    margin-bottom: 80px !important;
  }
  .main .best_list .list__item:last-child {
    margin-bottom: 0 !important;
  }
  .main .tools__cards {
    grid-template-columns: auto !important;
    justify-items: center !important;
  }
  .main .tools__cards .tool__card {
    margin-bottom: 25px !important;
    width: 90% !important;
  }
  .main .tools_c .more_btn {
    margin-top: 40px !important;
  }
}
.best_tools {
  display: none !important;
}

.main .main_calc {
  padding-bottom: 150px !important;
}

.container .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 65px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: rgb(255, 255, 255);
  padding-left: 90px;
  padding-right: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.container .header .header__menu.active {
  margin-left: 0 !important;
  padding-left: 20px !important;
  width: 100% !important;
  height: auto !important;
  background: #ffffff !important;
  border-bottom: 0.5px solid #ccc;
}
.container .header .header__menu.active .menu__item {
  display: block;
}
.container .header .header__menu {
  display: flex;
}
.container .header .header__menu .menu__item:hover {
  text-decoration: underline;
}
.container .header .header__menu .menu__item {
  padding-left: 8px;
  padding-right: 8px;
  font-size: 0.875rem;
  color: #6C757D;
  text-decoration: none;
  margin-right: 35px;
}
.container .header .header__menu .menu__item:last-child {
  margin-right: 0;
}
.container .header .header__menu .menu__item:hover {
  color: #ffffff;
}
.container .header .logo {
  display: flex;
  text-decoration: none;
  align-items: center;
}
.container .header .logo .logo__img {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(0, 123, 255);
  border-radius: 4px;
}
.container .header .logo .logo__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 12px;
}
.container .header .logo .logo__info .logo__name {
  font-size: 1.3rem;
  font-weight: bold;
  font-family: "ltb";
  color: #000;
}
.container .header .logo .logo__info .logo__desc {
  font-size: 0.9rem;
  color: #6C757D;
  margin-top: 5px;
}
.container .main .main__title {
  width: 100%;
  font-size: 2.4rem;
  color: #0A2A66;
  margin-top: 140px;
  text-align: center;
  font-family: "rb";
  font-weight: bold;
}
.container .main .main__desc {
  width: 100% !important;
  padding-left: 15%;
  padding-right: 15%;
  font-size: 1.125rem;
  color: #0A2A66;
  margin-top: 1.5rem;
  text-align: center !important;
  font-family: "rb";
  color: #6C757D;
}
.container .main .main__btns {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.container .main .main__btns .list_calc_btn:hover {
  background: rgb(1, 110, 226);
}
.container .main .main__btns .list_calc_btn {
  font-family: "rb";
  font-size: 1rem;
  font-weight: bold;
  background: rgb(0, 123, 255);
  color: #fff;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 400ms, color 200ms;
}
.container .main .main__btns .about_btn:hover {
  background: rgb(0, 123, 255);
  color: #fff;
}
.container .main .main__btns .about_btn {
  font-family: "rb";
  font-size: 1rem;
  margin-left: 15px;
  border: 0.5px solid rgb(0, 123, 255);
  color: rgb(0, 123, 255);
  padding: 15px;
  min-width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 400ms, color 200ms;
}
.container .main .best_list {
  display: none;
  justify-content: space-around;
  margin-top: 100px;
  padding-bottom: 100px;
}
.container .main .best_list .list__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.container .main .best_list .list__item .item__icon {
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: rgb(229, 237, 247);
}
.container .main .best_list .list__item .item__title {
  font-family: "rb";
  font-weight: bold;
  font-size: 1.125rem;
  margin-top: 30px;
  margin-bottom: 15px;
}
.container .main .best_list .list__item .item__desc {
  text-align: center;
  color: rgb(108, 117, 125);
}
.container .main .best_tools {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: rgb(248, 249, 250);
}
.container .main .best_tools .tools__title {
  width: 100%;
  text-align: center;
  font-family: "rb";
  font-weight: bold;
  font-size: 1.875rem;
  color: #0a2a66;
}
.container .main .best_tools .tools__desc {
  width: 100%;
  text-align: center;
  font-family: "rb";
  color: #6c757d;
  margin-top: 30px;
}
.container .main .best_tools .tools_c {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  flex-direction: column;
}
.container .main .best_tools .tools_c .more_btn:hover {
  background: rgb(1, 110, 226);
}
.container .main .best_tools .tools_c .more_btn_c {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
.container .main .best_tools .tools_c .more_btn_c .more_btn {
  font-family: "rb";
  font-size: 1rem;
  font-weight: bold;
  background: rgb(0, 123, 255);
  color: #fff;
  padding: 15px;
  max-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  min-width: 220px;
  transition: background 400ms, color 200ms;
}
.container .main .best_tools .tools__cards {
  display: grid;
  justify-content: center;
  grid-template-columns: 390px 390px;
  grid-template-rows: 210px 210px 80px;
  position: relative;
}
.container .main .best_tools .tools__cards .tool__card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid #007BFF;
}
.container .main .best_tools .tools__cards .tool__card {
  width: 360px;
  height: 180px;
  background: #fff;
  border: 0.5px solid rgb(221, 226, 229);
  display: flex;
  padding: 24px;
  border-radius: 3px;
  transition: all 300ms;
  cursor: pointer;
  text-decoration: none;
}
.container .main .best_tools .tools__cards .tool__card .left {
  margin-right: 16px;
}
.container .main .best_tools .tools__cards .tool__card .left .card__icon {
  width: 48px;
  height: 48px;
  background: rgb(234, 244, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
}
.container .main .best_tools .tools__cards .tool__card .right .card__title {
  font-family: "rb";
  font-weight: bold;
  font-size: 1.125rem;
  color: #0A2A66;
}
.container .main .best_tools .tools__cards .tool__card .right .card__desc {
  font-family: "rb";
  font-size: 0.875rem;
  color: #6C757D;
  margin-top: 8px;
}

.calc {
  padding-left: 90px;
  padding-right: 90px;
  padding-top: 30px;
  margin-bottom: 80px;
  margin-top: 80px;
}
.calc .calc__content {
  display: flex;
  margin-top: 45px;
  display: flex;
  flex-direction: row;
}
.calc .calc__content .calc__input {
  width: 100%;
  background: #fff;
  border: 0.5px solid rgb(221, 226, 229);
  padding: 25px;
}
.calc .calc__content .calc__input .calc__btns {
  display: flex;
}
.calc .calc__content .calc__input .calc__btns .calc__btn {
  margin-right: 12px;
  background: rgb(0, 123, 255);
  font-family: "rb";
  font-size: 0.95rem;
  color: #fff;
  padding: 15px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.calc .calc__content .calc__input .calc__btns .reset__btn {
  min-width: 50px;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #6C757D;
  background: #fff;
  border: 0.5px solid #DDE2E5;
  cursor: pointer;
}
.calc .calc__content .calc__input .calc__input_c .input__item {
  margin-bottom: 30px;
}
.calc .calc__content .calc__input .calc__input_c .input__item .item__label {
  font-family: "rb";
  font-weight: bold;
  font-size: 0.875rem;
  color: #0A2A66;
  margin-bottom: 15px;
}
.calc .calc__content .calc__input .calc__input_c .input__item .item__field {
  font-family: "rb";
  font-size: 0.875rem;
  background: #fff;
  border: 0.5px solid #DDE2E5;
  padding: 12px;
  width: 100%;
  margin-top: 8px;
}
.calc .calc__content .calc__fl {
  width: 100%;
  background: #fff;
  border: 0.5px solid rgb(221, 226, 229);
  padding: 25px;
  margin-top: 0;
  margin-left: 20px;
}
.calc .calc__content .calc__fl .katex {
  font-family: serif !important;
  color: #000 !important;
}
.calc .calc__content .calc__fl .katex-display > .katex {
  white-space: normal !important;
}
.calc .calc__content .calc__fl .katex-display > .base {
  margin: 0.25em 0;
}
.calc .calc__content .calc__fl .katex-display .base:has(.mord) {
  margin-top: 15px;
}
.calc .calc__content .calc__output {
  width: 100%;
  background: #fff;
  border: 0.5px solid rgb(221, 226, 229);
  padding: 25px;
  margin-top: 0;
  margin-left: 20px;
}
.calc .calc__content .calc__output .calc__pl {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px;
  margin-left: 20px !important;
  margin-right: 20px !important;
}
.calc .calc__content .calc__output .calc__pl .result {
  width: 100%;
  font-family: "rb";
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.calc .calc__content .calc__output .calc__pl .pl {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.calc .calc__content .calc__output .calc__pl .pl__text {
  width: 100%;
  margin-top: 0;
  font-family: "rb";
  font-size: 0.875rem;
  color: rgb(108, 117, 125);
  text-align: center;
}
.calc .calc__content .calc__tl {
  font-family: "rb";
  font-size: 1.125rem;
  font-weight: bold;
  color: #0A2A66;
  margin-bottom: 30px;
}
.calc .calc__header .calc__desc {
  color: #6C757D;
  font-size: 16px;
  margin-top: 16px;
}
.calc .calc__header .calc__title {
  display: flex;
  display: flex;
  align-items: center;
}
.calc .calc__header .calc__title .calc__title_txt {
  font-family: "rb";
  font-size: 1.875rem;
  font-weight: 600;
  color: #0A2A66;
}
.calc .calc__header .calc__title .item__icon {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(0, 123, 255);
  border-radius: 4px;
  margin-right: 15px;
}

.footer {
  margin-top: inherit;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: #0A2A66;
  width: 100%;
  padding-left: 20px;
}
.footer .footer__links {
  display: grid;
  grid-template-columns: 55% 45%;
}
.footer .footer__links .fl_logo:hover .tl {
  text-decoration: underline !important;
}
.footer .footer__links .fl_logo {
  text-decoration: none;
  cursor: pointer;
}
.footer .footer__links .fl_logo .link__desc {
  width: 75%;
}
.footer .footer__links .footer__link {
  margin-bottom: 40px;
}
.footer .footer__links .footer__link .link__links {
  display: flex;
  flex-direction: column;
}
.footer .footer__links .footer__link .link__links .links__link:hover {
  text-decoration: underline;
}
.footer .footer__links .footer__link .link__links .links__link {
  text-align: left;
  text-decoration: none;
  color: oklch(87.2% 0.01 258.338deg);
  margin-bottom: 15px;
}
.footer .footer__links .footer__link .link__tl {
  color: #fff;
  font-family: "rb";
  font-size: 1.125rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.footer .footer__links .footer__link .link__tl .tl {
  font-family: "rb";
  font-weight: bold;
  margin-left: 8px;
}
.footer .footer__links .footer__link .link__desc {
  font-family: "rb";
  font-size: 0.875rem;
  color: #fff;
}
.footer .footer__info {
  display: block;
  width: 100%;
  text-align: center;
  font-family: "rb";
  font-size: 0.875rem;
  color: oklch(70.7% 0.022 261.325deg);
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-top: 0.5px solid rgb(54, 65, 83);
  padding-right: 50px;
}

.calc_list {
  margin-top: 15px;
  margin-left: 15px;
  padding-left: 15px;
  margin-top: 90px;
  padding: 15px;
  display: grid;
  grid-template-columns: 50% 50%;
  justify-content: space-between;
  position: relative;
}
.calc_list #cg_sr {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background: #ffffff;
  font-size: 16.5px;
  border: 0.5px solid #ccc;
  border-radius: 4px;
  outline: none;
  max-width: 390px;
  width: 100%;
}
.calc_list .cg:nth-child(3n) {
  margin-top: 20px;
}
.calc_list .cg {
  margin-top: 20px;
  width: 80%;
}
.calc_list .cg .cg__name {
  font-family: "rb";
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
  text-decoration: none;
  color: #000;
}
.calc_list .cg .cg__items {
  margin-top: 8px;
}
.calc_list .cg .cg__items .cg__item:hover {
  text-decoration: underline;
}
.calc_list .cg .cg__items .cg__item {
  display: block;
  padding-top: 3.5px;
  padding-bottom: 3.5px;
  font-family: "rb";
  font-size: 16.5px;
  text-decoration: none;
  color: #041830;
}

.qr_code {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.qr_code .dl_qr {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  background: #0095da;
  color: #fff;
  border-radius: 5px;
  min-width: 140px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 35px;
  padding-right: 35px;
  outline: none;
  border: none;
  cursor: pointer;
  margin-top: 15px;
}

.main_calc {
  display: flex;
  justify-content: center;
  padding-bottom: 40px !important;
  padding-top: 80px;
}/*# sourceMappingURL=style.css.map */