/* ===============================
=            Choices            =
=============================== */
.choices {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  font-size: 16px;
}
.choices:focus {
  outline: none;
}
.choices:last-child {
  margin-bottom: 0;
}
.choices.is-open {
  overflow: visible;
}
.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
  background-color: #eaeaea;
  cursor: not-allowed;
  -webkit-user-select: none;
          user-select: none;
}
.choices.is-disabled .choices__item {
  cursor: not-allowed;
}
.choices [hidden] {
  display: none !important;
}

.choices[data-type*=select-one] {
  cursor: pointer;
}
.choices[data-type*=select-one] .choices__inner {
  padding-bottom: 7.5px;
}
.choices[data-type*=select-one] .choices__input {
  display: block;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  margin: 0;
}
.choices[data-type*=select-one] .choices__button {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
  padding: 0;
  background-size: 8px;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -10px;
  margin-right: 25px;
  height: 20px;
  width: 20px;
  border-radius: 10em;
  opacity: 0.25;
}
.choices[data-type*=select-one] .choices__button:hover, .choices[data-type*=select-one] .choices__button:focus {
  opacity: 1;
}
.choices[data-type*=select-one] .choices__button:focus {
  box-shadow: 0 0 0 2px #00bcd4;
}
.choices[data-type*=select-one] .choices__item[data-value=""] .choices__button {
  display: none;
}
.choices[data-type*=select-one]::after {
  content: "";
  height: 0;
  width: 0;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
  border-width: 5px;
  position: absolute;
  right: 11.5px;
  top: 50%;
  margin-top: -2.5px;
  pointer-events: none;
}
.choices[data-type*=select-one].is-open::after {
  border-color: transparent transparent #333 transparent;
  margin-top: -7.5px;
}
.choices[data-type*=select-one][dir=rtl]::after {
  left: 11.5px;
  right: auto;
}
.choices[data-type*=select-one][dir=rtl] .choices__button {
  right: auto;
  left: 0;
  margin-left: 25px;
  margin-right: 0;
}

.choices[data-type*=select-multiple] .choices__inner,
.choices[data-type*=text] .choices__inner {
  cursor: text;
}
.choices[data-type*=select-multiple] .choices__button,
.choices[data-type*=text] .choices__button {
  position: relative;
  display: inline-block;
  margin-top: 0;
  margin-right: -4px;
  margin-bottom: 0;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid #008fa1;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
  background-size: 8px;
  width: 8px;
  line-height: 1;
  opacity: 0.75;
  border-radius: 0;
}
.choices[data-type*=select-multiple] .choices__button:hover, .choices[data-type*=select-multiple] .choices__button:focus,
.choices[data-type*=text] .choices__button:hover,
.choices[data-type*=text] .choices__button:focus {
  opacity: 1;
}

.choices__inner {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  background-color: #f9f9f9;
  padding: 7.5px 7.5px 3.75px;
  border: 1px solid #ddd;
  border-radius: 2.5px;
  font-size: 14px;
  min-height: 44px;
  overflow: hidden;
}
.is-focused .choices__inner, .is-open .choices__inner {
  border-color: #b7b7b7;
}
.is-open .choices__inner {
  border-radius: 2.5px 2.5px 0 0;
}
.is-flipped.is-open .choices__inner {
  border-radius: 0 0 2.5px 2.5px;
}

.choices__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.choices__list--single {
  display: inline-block;
  padding: 4px 16px 4px 4px;
  width: 100%;
}
[dir=rtl] .choices__list--single {
  padding-right: 4px;
  padding-left: 16px;
}
.choices__list--single .choices__item {
  width: 100%;
}

.choices__list--multiple {
  display: inline;
}
.choices__list--multiple .choices__item {
  display: inline-block;
  vertical-align: middle;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 3.75px;
  margin-bottom: 3.75px;
  background-color: #00bcd4;
  border: 1px solid #00a5bb;
  color: #fff;
  word-break: break-all;
  box-sizing: border-box;
}
.choices__list--multiple .choices__item[data-deletable] {
  padding-right: 5px;
}
[dir=rtl] .choices__list--multiple .choices__item {
  margin-right: 0;
  margin-left: 3.75px;
}
.choices__list--multiple .choices__item.is-highlighted {
  background-color: #00a5bb;
  border: 1px solid #008fa1;
}
.is-disabled .choices__list--multiple .choices__item {
  background-color: #aaaaaa;
  border: 1px solid #919191;
}

.choices__list--dropdown, .choices__list[aria-expanded] {
  visibility: hidden;
  z-index: 1;
  position: absolute;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ddd;
  top: 100%;
  margin-top: -1px;
  border-bottom-left-radius: 2.5px;
  border-bottom-right-radius: 2.5px;
  overflow: hidden;
  word-break: break-all;
  will-change: visibility;
}
.is-active.choices__list--dropdown, .is-active.choices__list[aria-expanded] {
  visibility: visible;
}
.is-open .choices__list--dropdown, .is-open .choices__list[aria-expanded] {
  border-color: #b7b7b7;
}
.is-flipped .choices__list--dropdown, .is-flipped .choices__list[aria-expanded] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: -1px;
  border-radius: 0.25rem 0.25rem 0 0;
}
.choices__list--dropdown .choices__list, .choices__list[aria-expanded] .choices__list {
  position: relative;
  max-height: 300px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
}
.choices__list--dropdown .choices__item, .choices__list[aria-expanded] .choices__item {
  position: relative;
  padding: 10px;
  font-size: 14px;
}
[dir=rtl] .choices__list--dropdown .choices__item, [dir=rtl] .choices__list[aria-expanded] .choices__item {
  text-align: right;
}
@media (min-width: 640px) {
  .choices__list--dropdown .choices__item--selectable, .choices__list[aria-expanded] .choices__item--selectable {
    padding-right: 100px;
  }
  .choices__list--dropdown .choices__item--selectable::after, .choices__list[aria-expanded] .choices__item--selectable::after {
    content: attr(data-select-text);
    font-size: 12px;
    opacity: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  [dir=rtl] .choices__list--dropdown .choices__item--selectable, [dir=rtl] .choices__list[aria-expanded] .choices__item--selectable {
    text-align: right;
    padding-left: 100px;
    padding-right: 10px;
  }
  [dir=rtl] .choices__list--dropdown .choices__item--selectable::after, [dir=rtl] .choices__list[aria-expanded] .choices__item--selectable::after {
    right: auto;
    left: 10px;
  }
}
.choices__list--dropdown .choices__item--selectable.is-highlighted, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background-color: #f2f2f2;
}
.choices__list--dropdown .choices__item--selectable.is-highlighted::after, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted::after {
  opacity: 0.5;
}

.choices__item {
  cursor: default;
}

.choices__item--selectable {
  cursor: pointer;
}

.choices__item--disabled {
  cursor: not-allowed;
  -webkit-user-select: none;
          user-select: none;
  opacity: 0.5;
}

.choices__heading {
  font-weight: 600;
  font-size: 12px;
  padding: 10px;
  border-bottom: 1px solid #f7f7f7;
  color: gray;
}

.choices__button {
  text-indent: -9999px;
  -webkit-appearance: none;
          appearance: none;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.choices__button:focus {
  outline: none;
}

.choices__input {
  display: inline-block;
  vertical-align: baseline;
  background-color: #f9f9f9;
  font-size: 14px;
  margin-bottom: 5px;
  border: 0;
  border-radius: 0;
  max-width: 100%;
  padding: 4px 0 4px 2px;
}
.choices__input:focus {
  outline: 0;
}
.choices__input::-webkit-search-decoration, .choices__input::-webkit-search-cancel-button, .choices__input::-webkit-search-results-button, .choices__input::-webkit-search-results-decoration {
  display: none;
}
.choices__input::-ms-clear, .choices__input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
[dir=rtl] .choices__input {
  padding-right: 2px;
  padding-left: 0;
}

.choices__placeholder {
  opacity: 0.5;
}

/* =====  End of Choices  ====== */

*{padding:0;margin:0;box-sizing:border-box;-webkit-print-color-adjust:exact;print-color-adjust:exact;-webkit-tap-highlight-color:rgba(0,0,0,0);outline:0}*::after,*::before{box-sizing:border-box}ol,ul{list-style:none}img{display:block}input{border:none;padding:0;margin:0}input[type=number]{-moz-appearance:textfield}input[type=number]::-webkit-outer-spin-button,input[type=number]::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}textarea{resize:none}button,input,textarea,select{background-color:rgba(0,0,0,0);border:0;border-radius:0;outline:0;cursor:pointer}button::-ms-clear,button::-ms-reveal,input::-ms-clear,input::-ms-reveal,textarea::-ms-clear,textarea::-ms-reveal,select::-ms-clear,select::-ms-reveal{display:none}button::-moz-focus-inner,button::-moz-focus-outer,input::-moz-focus-inner,input::-moz-focus-outer,textarea::-moz-focus-inner,textarea::-moz-focus-outer,select::-moz-focus-inner,select::-moz-focus-outer{border:0}svg{pointer-events:none;display:block;height:100%;width:100%}a{text-decoration:none;outline:0;cursor:pointer}@font-face{font-family:"Roboto";src:url(/special/converter/dist/assets/fonts/Roboto-Regular.woff) format("woff");src:url(/special/converter/dist/assets/fonts/Roboto-Regular.woff2) format("woff2");font-weight:normal;font-style:normal;font-display:swap}@font-face{font-family:"Roboto";src:url(/special/converter/dist/assets/fonts/Roboto-Bold.woff) format("woff");src:url(/special/converter/dist/assets/fonts/Roboto-Bold.woff2) format("woff2");font-weight:700;font-style:normal;font-display:swap}html{font-size:16px}body{position:relative;display:flex;flex-direction:column;min-height:100vh;padding-top:40px;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;-webkit-overflow-scrolling:touch;font-family:"Roboto",sans-serif,-apple-system;color:#080717;overflow-x:hidden;font-size:16px;line-height:22px}@media(min-width: 768px){body{padding-top:65px}}img{image-rendering:-webkit-optimize-contrast}button{font-family:inherit}a{color:inherit}.container{position:relative;padding:0 16px;margin:0 auto;width:100%}@media(min-width: 440px){.container{padding:0;width:408px}}@media(min-width: 768px){.container{width:624px}}@media(min-width: 1024px){.container{width:884px}}@media(min-width: 1280px){.container{width:1136px}}@media(min-width: 1280px){.link:hover{text-decoration:none}}.overflow-hidden{overflow:hidden}.share__icons{display:flex;justify-content:center}.share__divider{width:1px;height:25px;margin:0 12px 0 10px;background:#ecebeb}.share__social{position:relative;display:flex;justify-content:center;align-items:center;width:20px;height:20px;border-radius:50%;cursor:pointer}.share__social:hover svg{fill:#ed5e42}.share__social svg{position:relative;display:block;width:34px;height:36px;fill:#080717;transition:fill .3s}.picture{display:block;max-width:100%;height:auto}.picture__img{display:block;max-width:100%;height:auto}.header{position:fixed;z-index:100;top:0;left:0;width:100%;height:40px;background:#fefdfc;filter:drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.1))}@media(min-width: 768px){.header{height:65px}}.header__logo{display:block;position:relative;fill:#fefdfc}.header__logo--main{width:74px;height:12px}@media(min-width: 440px){.header__logo--main{width:106px;height:18px}}.header__logo--partner{font-size:16px;line-height:19px;color:#b9b9bb}.header__divider{width:1px;height:25px;margin:0 7px;background:#ecebeb}@media(min-width: 440px){.header__divider{margin:0 13px}}.header__share{margin-left:auto}.header__container{display:flex;align-items:center;height:100%}.footer{position:absolute;bottom:0;left:0;width:100%;z-index:100;font-size:14px;line-height:16px;background:#080717;padding:16px}.footer__container{display:flex;flex-direction:column;align-items:center;justify-content:space-between;flex-wrap:wrap}@media(min-width: 768px){.footer__container{flex-direction:row}}.footer__copyright{order:4}@media(min-width: 768px){.footer__copyright{order:1}}.footer__link{color:inherit;text-decoration:underline;cursor:pointer}@media(min-width: 1280px){.footer__link{transition:color .3s ease}.footer__link:hover{color:#fefdfc;text-decoration:underline}}.footer__ads-text{order:0;flex:0 0 100%;max-width:100%;margin-bottom:37px}@media(min-width: 768px){.footer__ads-text{margin-bottom:23px}}@media(min-width: 1024px){.footer__ads-text{order:2;flex-basis:auto;margin-bottom:0}}.footer__team{position:relative;order:3;margin-bottom:26px}@media(min-width: 768px){.footer__team{margin-bottom:0}}.footer__team-link:focus+.footer__team-popup{opacity:1;pointer-events:auto}@media(min-width: 1280px){.footer__team-link:hover+.footer__team-popup{opacity:1;pointer-events:auto}}.footer__team-popup{position:absolute;transform:translateX(50%);right:50%;bottom:47px;width:320px;padding:14px 8px;border-radius:56px;background:#fefdfc;font-size:12px;line-height:16px;pointer-events:none;opacity:0;transition:opacity .3s ease;color:#080717}@media(min-width: 1024px){.footer__team-popup{right:0;transform:none}}.footer__team-popup-row{display:flex;align-items:flex-start;justify-content:center}.footer__team-popup-cell:first-child{flex:0 0 119px;max-width:119px;margin-right:16px;text-align:right}.footer__team-popup-cell:last-child{flex:0 0 calc(100% - 135px);max-width:calc(100% - 135px)}.cover{position:relative;padding-top:15px;padding-bottom:16px;background:#1e4a43;overflow:hidden}@media(min-width: 440px){.cover{padding-top:19px;padding-bottom:28px}}@media(min-width: 768px){.cover{padding-top:38px;padding-bottom:184px}}@media(min-width: 1024px){.cover{padding-bottom:302px}}.cover::before{content:"";position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:676px;height:100%;background:url(/special/converter/dist/assets/images/cover-bg.png) repeat-y center bottom/100% 437px}@media(min-width: 440px){.cover::before{width:811px;background-size:100% 542px}}@media(min-width: 768px){.cover::before{width:795px;background-size:100% 530px}}@media(min-width: 1024px){.cover::before{width:992px;background-size:100% 683px}}.cover__inner-container{position:relative;width:100%}@media(min-width: 768px){.cover__inner-container{display:flex;align-items:flex-start;justify-content:space-between;width:557px;margin-left:auto;margin-right:auto}}.cover__decorative-img{position:absolute}.cover__decorative-img--1{top:-8px;left:-118px;width:110px;animation:fly-1 16s linear infinite}@media(min-width: 440px){.cover__decorative-img--1{top:21px;left:-170px;width:135px}}@media(min-width: 768px){.cover__decorative-img--1{top:30px;left:-133px;width:180px}}@media(min-width: 1024px){.cover__decorative-img--1{top:38px;left:-260px;width:242px}}@media(min-width: 1280px){.cover__decorative-img--1{top:3px;left:-282px}}.cover__decorative-img--2{top:-7px;right:-96px;width:63px;animation:fly-2 16s linear infinite}@media(min-width: 440px){.cover__decorative-img--2{top:10px;right:-171px;width:100px}}@media(min-width: 768px){.cover__decorative-img--2{top:95px;right:-92px}}@media(min-width: 1024px){.cover__decorative-img--2{top:128px;right:-250px;width:135px}}@media(min-width: 1280px){.cover__decorative-img--2{top:90px;right:-233px}}.cover__decorative-img-wrap{position:absolute;top:0;left:50%;transform:translate(-50%);width:100px;height:100%}@media(min-width: 440px){.cover__decorative-img-wrap{width:157px}}@media(min-width: 768px){.cover__decorative-img-wrap{top:0;left:0;transform:none;width:100%;height:100%}}.cover__texts{text-align:center}@media(min-width: 768px){.cover__texts{flex:0 0 368px;max-width:368px;text-align:left}}.cover__img{display:block;width:100%;height:auto}.cover__img-wrap{width:100px;margin-left:auto;margin-right:auto;margin-bottom:22px;border-radius:10px;overflow:hidden;box-shadow:0px 4px 4px rgba(0,0,0,.15)}@media(min-width: 440px){.cover__img-wrap{width:157px;margin-bottom:32px}}@media(min-width: 768px){.cover__img-wrap{flex:0 0 157px;max-width:157px;width:auto;margin:0}}.cover__heading{margin-bottom:16px;font-weight:700;font-size:24px;line-height:28px}@media(min-width: 440px){.cover__heading{margin-bottom:8px;font-size:40px;line-height:40px}}@media(min-width: 768px){.cover__heading{margin-bottom:16px}}@keyframes fly-1{0%{transform:translateY(-15%)}50%{transform:translateY(15%)}100%{transform:translateY(-15%)}}@keyframes fly-2{0%{transform:translateY(15%)}50%{transform:translateY(-15%)}100%{transform:translateY(15%)}}.form{position:relative;padding:40px 16px;border-radius:4px;background:#fafafa;box-shadow:0px 4px 10px rgba(0,0,0,.15)}@media(min-width: 440px){.form{padding:40px 60px}}@media(min-width: 768px){.form{padding:44px 130px 36px}}.form__label{display:block;margin-bottom:16px;font-weight:700}.form__select-wrap{display:block;position:relative;margin-bottom:16px}.form__selects{flex:0 0 178px;max-width:178px}.form__selects .form__select-wrap{margin-bottom:0}.form__number-input{width:100%;height:40px;border:1px solid #ddd;border-radius:3px;font-size:16px;line-height:22px;text-align:center;background:#fefdfc}.form__number-input-wrap{width:calc(100% - 194px)}@media(min-width: 440px){.form__number-input-wrap{width:134px}}.form__number-inputs{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:16px}.form__radio{position:absolute;width:1px;height:1px;margin:-1px;border:0;padding:0;white-space:nowrap;clip-path:inset(100%);clip:rect(0 0 0 0);overflow:hidden}.form__radio:checked+.form__radio-circle{border-color:#ed5e42}.form__radio:checked+.form__radio-circle::before{opacity:1}.form__radio-wrap{position:relative;padding-left:28px;min-height:16px;margin-right:16px;cursor:pointer}.form__radio-circle{position:absolute;top:3px;left:0;display:block;width:16px;height:16px;border-radius:50%;border:2px solid #9a9a9a}.form__radio-circle::before{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:8px;height:8px;border-radius:50%;background:#ed5e42;opacity:0}.form__radio-text{display:block}.form__radios{display:flex;flex-wrap:wrap;margin:0 0 16px;border:none}.form__radios .form__label{flex:0 0 100%;max-width:100%}.form__result{font-weight:700;font-size:40px;line-height:40px}.form__result::before{content:"="}.form__result.is-disabled{color:#ddd}.form__result-wrap{display:flex;align-items:center;justify-content:space-between;padding-top:16px;border-top:1px solid #dcdce1}.form__reset-btn{display:flex;align-items:center;font-weight:700;font-size:14px;line-height:16px;color:#3670f9}.form__reset-btn svg{width:16px;height:16px;margin-right:8px}.form .choices{z-index:0;font-size:16px;line-height:22px}.form .choices[data-type*=select-one]::after{z-index:3;border-color:#ed5e42 rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0)}.form .choices[data-type*=select-one].is-open{z-index:5}.form .choices[data-type*=select-one].is-open::after{border-color:rgba(0,0,0,0) rgba(0,0,0,0) #ed5e42 rgba(0,0,0,0)}.form .choices[data-type*=select-one] .choices__inner{padding-bottom:4px}.form .choices[data-type*=select-one] .choices__input{padding:14px 14px 14px 16px;font-size:16px}.form .choices.is-focused .choices__inner{border-color:#ddd}.form .choices.is-open{box-shadow:0px 4px 10px rgba(0,0,0,.15)}.form .choices.is-open .choices__inner{border-radius:3px 3px 0 0;border-color:#fefdfc}.form .choices.is-open .choices__list--dropdown{box-shadow:0px 4px 10px rgba(0,0,0,.15);border-color:#fefdfc}.form .choices__placeholder{opacity:1}.form .choices__placeholder:not(:only-child){display:none}.form .choices__inner{position:relative;z-index:2;height:40px;min-height:40px;padding:10px 10px 4px 16px;border-radius:3px;background:#fefdfc;font-size:16px;white-space:nowrap}.form .choices__list--single{padding:0 16px 0 0}.form .choices__list--single .choices__placeholder{overflow:hidden;text-overflow:ellipsis}.form .choices__list--dropdown{box-shadow:0px 4px 10px rgba(0,0,0,.15);border-color:#fefdfc}.form .choices__list--dropdown .choices__item{padding:14px 14px 14px 16px;font-size:16px}.form .choices__list--dropdown .choices__item--selectable.is-highlighted{background:#ed5e42;color:#fefdfc}.calculator{position:relative;margin-bottom:80px}@media(min-width: 768px){.calculator__inner-container{width:580px;margin-left:auto;margin-right:auto}}.calculator__heading{margin-bottom:16px;font-size:24px;line-height:28px;font-weight:700}.calculator__texts-block:not(:last-child){margin-bottom:24px}.calculator__text:not(:last-child){margin-bottom:12px}.calculator__list{margin-bottom:16px}.calculator__list-item{display:flex}.calculator__list-item-number{width:14px;margin-right:2px}.calculator .form{position:relative;left:50%;transform:translateX(-50%);width:100vw;margin-bottom:40px}@media(min-width: 440px){.calculator .form{width:440px}}@media(min-width: 768px){.calculator .form{left:auto;transform:none;width:100%;margin-top:-103px}}@media(min-width: 1024px){.calculator .form{margin-top:-222px}}.articles{padding:60px 0 40px;background:#1c2529}.articles__heading{margin-bottom:38px;font-weight:700;font-size:32px;line-height:38px;color:#90989c}@media(min-width: 768px){.articles__heading{text-align:center;font-size:40px;line-height:40px}}@media(min-width: 440px){.articles__container{width:368px}}@media(min-width: 768px){.articles__container{width:624px}}@media(min-width: 1024px){.articles__container{width:884px}}@media(min-width: 1280px){.articles__container{width:1136px}}.articles__row{display:grid;grid-template-columns:1fr;grid-row-gap:16px;justify-items:center;margin-bottom:40px}@media(min-width: 1280px){.articles__row{grid-template-columns:repeat(3, 1fr);grid-column-gap:16px;grid-row-gap:none}}.articles__item{display:block;border-radius:10px;overflow:hidden;background:#fefdfc;transition:color .3s ease,transform .3s ease}@media(min-width: 768px){.articles__item{display:flex;width:594px}}@media(min-width: 1280px){.articles__item{display:block;width:auto}}.articles__item:hover{color:#ed5e42}@media(min-width: 1280px){.articles__item:hover{transform:translateY(-30px)}}.articles__item-main{display:flex;align-items:center;padding:16px 18px 32px}@media(min-width: 440px){.articles__item-main{padding:16px 32px 32px}}@media(min-width: 1280px){.articles__item-main{display:block}}.articles__item-title{font-weight:700;font-size:18px;line-height:21px}@media(min-width: 440px){.articles__item-title{font-size:24px;line-height:28px}}.articles__item-img{display:block;width:100%;height:auto}@media(min-width: 768px){.articles__item-img-wrap{flex:0 0 275px;max-width:275px}}@media(min-width: 1280px){.articles__item-img-wrap{max-width:100%}}.articles__footer{color:#46545b}.articles__footer-title{margin-bottom:32px;font-weight:700}@media(min-width: 1024px){.articles__footer-title{margin-bottom:8px}}.articles__footer-team{display:grid;grid-template-columns:1fr;justify-content:space-between;grid-row-gap:16px;margin-bottom:40px;font-size:14px;line-height:15px;white-space:nowrap}@media(min-width: 1024px){.articles__footer-team{grid-template-columns:repeat(3, 272px)}}.articles__footer-link{color:#ed5e42;text-decoration:underline}.articles__footer-link:hover{text-decoration:none}
