:root {
  --primary: #075289;
  --primary-light: rgba(7, 82, 137, 0.1);
  --dark: #181825;
  --white: #fff;
  --link: #181825;
  --text: #212529;
  --green: #07B474;
  --red: #E75555;
  --light-red: rgba(231, 85, 85, 0.1);
  --h-font: 'Graphik', sans-serif;
  --b-font: 'Graphik', sans-serif;
  --border-rad: 50px;
  --progress-bar-width: 20%;
}

.theme-green {
  --primary: #07B474;
  --primary-light: rgba(7, 180, 116, 0.32);
}

.theme-blue {
  --primary: #06b2ff;
  --primary-light: rgba(6, 178, 255, 0.27);
}

.theme-yellow {
  --primary: #FBB817;
  --primary-light: rgba(251,184,23, 0.1);
}

.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  background: var(--primary);
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 2px;
}

.pace .pace-progress-inner {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px var(--primary), 0 0 5px var(--primary);
  opacity: 1.0;
  -webkit-transform: rotate(3deg) translate(0px, -4px);
  -moz-transform: rotate(3deg) translate(0px, -4px);
  -ms-transform: rotate(3deg) translate(0px, -4px);
  -o-transform: rotate(3deg) translate(0px, -4px);
  transform: rotate(3deg) translate(0px, -4px);
}

.pace .pace-activity {
  display: block;
  position: fixed;
  z-index: 2000;
  top: 15px;
  right: 15px;
  width: 14px;
  height: 14px;
  border: solid 2px transparent;
  border-top-color: var(--primary);
  border-left-color: var(--primary);
  border-radius: 10px;
  -webkit-animation: pace-spinner 400ms linear infinite;
  -moz-animation: pace-spinner 400ms linear infinite;
  -ms-animation: pace-spinner 400ms linear infinite;
  -o-animation: pace-spinner 400ms linear infinite;
  animation: pace-spinner 400ms linear infinite;
}

@-webkit-keyframes pace-spinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes pace-spinner {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-o-keyframes pace-spinner {
  0% {
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-ms-keyframes pace-spinner {
  0% {
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes pace-spinner {
  0% {
    transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0-modified | 20110126
   License: none (public domain)
*/
*,
*:before,
*:after {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* make sure to set some focus styles for accessibility */
:focus {
  outline: 0;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

/**
 * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  max-width: 100%;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 * Known issue: no IE 6 support.
 */
[hidden] {
  display: none;
}

/**
 * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-size: 100%;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/**
 * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
 * 2. Improve image quality when scaled in IE 7.
 */
img {
  border: 0;
  /* 1 */
  -ms-interpolation-mode: bicubic;
  /* 2 */
}

/**
 * Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
 */
figure {
  margin: 0;
}

/**
 * Correct margin displayed oddly in IE 6/7.
 */
form {
  margin: 0;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct color not being inherited in IE 6/7/8/9.
 * 2. Correct text not wrapping in Firefox 3.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  white-space: normal;
  /* 2 */
  *margin-left: -7px;
  /* 3 */
}

/**
 * 1. Correct font size not being inherited in all browsers.
 * 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
 *    and Chrome.
 * 3. Improve appearance and consistency in all browsers.
 */
button,
input,
select,
textarea {
  font-size: 100%;
  /* 1 */
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */
  *vertical-align: middle;
  /* 3 */
}

/**
 * Address Firefox 3+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
  *overflow: visible;
  /* 4 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to content-box in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px;
  /* 3 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 3+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 6/7/8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

html,
button,
input,
select,
textarea {
  color: #222;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

img {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

.chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

/*======== START helpers ==========*/
a {
  color: var(--link);
  text-decoration: none;
}

b {
  font-weight: 500;
}

.highlight {
  color: var(--primary);
}

.text-light {
  color: var(--white);
}

.uppercase {
  text-transform: uppercase;
}

.font-400 {
  font-weight: 400;
}

/*======== END helpers ==========*/
/*=========== START spacing ===========*/
.mt-1 {
  margin-top: 10px;
}

.mb-1 {
  margin-bottom: 10px;
}

.mt-2 {
  margin-top: 20px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mt-3 {
  margin-top: 30px;
}

.mb-3 {
  margin-bottom: 30px;
}

.mt-4 {
  margin-top: 40px;
}

.mb-4 {
  margin-bottom: 40px;
}

.mt-5 {
  margin-top: 50px;
}

.mb-5 {
  margin-bottom: 50px;
}

.pt-1 {
  padding-top: 10px;
}

.pb-1 {
  padding-bottom: 10px;
}

.pt-2 {
  padding-top: 20px;
}

.pb-2 {
  padding-bottom: 20px;
}

.pt-3 {
  padding-top: 30px;
}

.pb-3 {
  padding-bottom: 30px;
}

.pt-4 {
  padding-top: 40px;
}

.pb-4 {
  padding-bottom: 40px;
}

.pt-5 {
  padding-top: 50px;
}

.pb-5 {
  padding-bottom: 50px;
}

/*=========== END spacing ===========*/
.text-center {
  text-align: center;
}

@font-face {
  font-family: 'Graphik';
  src: url("../fonts/Graphik-Regular.eot");
  src: local("Graphik Regular"), local("Graphik-Regular"), url("../fonts/Graphik-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Graphik-Regular.woff2") format("woff2"), url("../fonts/Graphik-Regular.woff") format("woff"), url("../fonts/Graphik-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Graphik';
  src: url("../fonts/Graphik-Medium.eot");
  src: local("Graphik Medium"), local("Graphik-Medium"), url("../fonts/Graphik-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Graphik-Medium.woff2") format("woff2"), url("../fonts/Graphik-Medium.woff") format("woff"), url("../fonts/Graphik-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Graphik';
  src: url("../fonts/Graphik-Bold.eot");
  src: local("Graphik Bold"), local("Graphik-Bold"), url("../fonts/Graphik-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Graphik-Bold.woff2") format("woff2"), url("../fonts/Graphik-Bold.woff") format("woff"), url("../fonts/Graphik-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

body {
  font-family: var(--h-font);
  font-weight: 500;
}

.font-alt {
  font-family: var(--b-font);
  font-weight: normal;
}

/*======== START headings ==========*/
.title-big {
  font-size: 30px;
  line-height: 46px;
  font-weight: bold;
}

.para {
  font-size: 18px;
  line-height: 34px;
  font-weight: 500;
}

.para-normal {
  font-size: 14px;
  line-height: 22px;
}

@media screen and (max-width: 420px) {
  .title-big {
    font-size: 20px;
    line-height: 30px;
    word-break: break-all;
  }
  .para {
    font-size: 16px;
    line-height: 26px;
    word-break: break-all;
  }
}

.container {
  width: 100%;
  max-width: 1180px;
  padding: 0 20px;
  margin: 0 auto;
}

input, select, textarea, button {
  font-family: var(--b-font);
  font-size: 16px;
  font-weight: 500;
}

input::placeholder, select::placeholder, textarea::placeholder, button::placeholder {
  font-family: var(--b-font);
  font-size: 16px;
}

input[type="number"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

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

input {
  border: 1px solid rgba(33, 37, 41, 0.1);
  box-sizing: border-box;
  border-radius: 25px;
  padding: 15px 40px 15px 20px;
  display: block;
  width: 100%;
}

input::placeholder {
  opacity: .5;
  color: #000;
}

.number-field {
  position: relative;
}

.number-field .btn-group {
  position: absolute;
  top: 45%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  justify-items: center;
  flex-wrap: wrap;
}

.number-field span {
  display: inline-block;
  line-height: 1;
  height: 12px;
  cursor: pointer;
}

.number-field span:hover {
  opacity: .5;
}

.number-field span img {
  width: 11px;
  height: auto;
}

select {
  border: 1px solid rgba(33, 37, 41, 0.1);
  box-sizing: border-box;
  border-radius: 25px;
  padding: 15px 40px 15px 20px;
  display: block;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("../images/down-arrow.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) 50%;
}

.info-box {
  font-size: 14px;
  line-height: 22px;
}

.info-box .para {
  line-height: 22px;
}

/*======== END btn ==========*/
.btn {
  background-color: transparent;
  border-radius: var(--border-rad);
  padding: 12px 35px;
  font-size: 18px;
  line-height: 21px;
  display: inline-block;
  border: none;
}

.btn.shadow {
  box-shadow: 0px 10px 20px rgba(7, 180, 116, 0.16);
}

.btn--primary {
  background-color: var(--primary);
  color: #fff;
  transition: background .3s ease-in-out, color .4s ease-in-out;
}

.btn--primary:hover {
  background-color: var(--dark);
  color: #fff;
}

.btn--light {
  background-color: var(--primary-light);
  color: #363D4D;
  transition: background .3s ease-in-out, color .4s ease-in-out;
}

.btn--light:hover {
  background-color: var(--primary);
  color: #fff;
}

.btn:disabled {
  background: #eee;
  color: #a0a0a0;
}

/*======== START btn ==========*/
/*======== START header ==========*/
.header {
  padding: 50px 0;
  overflow: hidden;
}

.header .container {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .header .container {
    justify-content: space-between;
  }
}

.brand {
  width: 100%;
  text-align: center;
  cursor: pointer;
}

.brand img {
  max-width: 110px;
}

@media screen and (min-width: 768px) {
  .brand {
    width: auto;
    text-align: left;
  }
}

/*======== END header ==========*/
#form-progress {
  position: relative;
  width: 300px;
  height: 30px;
  background: var(--primary-light);
  border: 1px solid var(--primary-light);
  box-sizing: border-box;
  border-radius: 20px;
}

#form-progress .bar {
  position: relative;
  background: var(--primary);
  border-radius: 19px;
  font-size: 16px;
  font-weight: 500;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: var(--progress-bar-width);
  color: #fff;
  transition: width .3s ease-out;
}

@media screen and (min-width: 768px) {
  #form-progress {
    margin-top: 0;
  }
}

@media screen and (max-width: 420px) {
  .title-big {
    font-size: 20px;
    line-height: 30px;
    word-break: break-all;
  }
  .para {
    font-size: 16px;
    line-height: 26px;
    word-break: break-all;
  }
}

.footer {
  padding: 10px 0 40px 0;
  font-size: 14px;
}

.footer a {
  text-decoration: underline;
  color: var(--primary);
}

/*======== START hero ==========*/
#hero {
  text-align: center;
  overflow: hidden;
}

#hero .sec-bg {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 130px;
  background-color: var(--dark);
}

#hero .para {
  max-width: 630px;
  margin: 10px auto 50px auto;
}

#hero .hero-image {
  margin-top: 68px;
}

#hero .hero-image img {
  max-width: 100%;
  display: block;
}

/*======== END hero ==========*/
.main-heading {
  width: 100%;
  max-width: 640px;
  margin: 20px auto 0 auto;
}

.main-heading .title-big {
  font-weight: 500;
}

.main-heading .para.para-normal {
  font-size: 16px;
  font-weight: 400;
}

/* ======= START calculator =======*/
#calculator {
  width: 100%;
  max-width: 655px;
  background: #FFFFFF;
  border: 1px solid rgba(33, 37, 41, 0.1);
  box-sizing: border-box;
  box-shadow: 0 20px 40px rgba(33, 37, 41, 0.04);
  border-radius: 20px;
  margin: 20px auto 80px auto;
  padding: 85px 15px 50px 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
}

#calculator .screen {
  display: none;
  width: 100%;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

#calculator .screen--active {
  display: block;
  position: relative !important;
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.calculator-header {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}

.calculator-header .go-back {
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
}

.calculator-header .go-back .icon {
  margin-right: 11px;
  transition: margin .3s ease-in-out;
}

.calculator-header .go-back:hover .icon {
  margin-right: 5px;
}

.calculator-header .go-reset {
  cursor: pointer;
}

.calculator-header .go-reset svg {
  height: 20px;
  width: 20px;
  transform: rotate(0);
  transition: transform .5s ease-in-out;
}

.calculator-header .go-reset svg rect {
  fill: var(--primary);
  transition: fill .5s ease-in-out;
}

.calculator-header .go-reset svg:hover {
  transform: rotate(360deg);
}

.calculator-header .go-reset svg:hover rect {
  fill: red;
}

/*======== screens ===========*/
.screen-2 .btn-group,
.screen-4 .btn-group {
  border: 1px solid rgba(33, 37, 41, 0.1);
  box-sizing: border-box;
  border-radius: 100px;
  padding: 6px;
  display: flex;
  justify-content: space-between;
}

.screen-2 .btn,
.screen-4 .btn {
  width: 48.5%;
}

.screen-3 .display-text-field input {
  background-image: url("../images/percent.svg");
  background-repeat: no-repeat;
  background-position: 95% 50%;
  background-size: 16px;
}

.screen-5 .display-text-field {
  position: relative;
}

.screen-5 .display-text-field input {
  color: var(--green);
}

.screen-5 .total-text {
  position: absolute;
  text-transform: capitalize;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-weight: normal;
  font-size: 16px;
  line-height: 32px;
}

.screen-5 ul li {
  word-break: break-all;
}

.screen-5 ul li:before {
  content: "";
  margin-right: 10px;
  background: url("../images/check-green.png");
  background-size: cover;
  display: inline-block;
  height: 10px;
  width: 12px;
}

.form-notices {
  margin-top: 35px;
}

.form-notices .error {
  background-color: var(--light-red);
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 15px;
  line-height: 20px;
}

.form-notices .error:last-child {
  margin-bottom: 0;
}

.general-infos ul {
  font-weight: 400;
}

.general-infos ul li {
  font-size: 14px;
  line-height: 22px;
}

.general-infos ul li:before {
  content: "";
  margin-right: 10px;
  background: url("../images/x-1.png");
  background-size: cover;
  display: inline-block;
  height: 14px;
  width: 14px;
}

/* ======= END calculator =======*/
@media screen and (min-width: 768px) {
  #calculator {
    padding: 130px 120px;
    margin: 30px auto 150px auto;
  }
}

/*# sourceMappingURL=main.css.map */