body {
  margin: 0;
  padding: 0;
  font-family: "Lato";
}

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

a {
  text-decoration: none;
  color: #000;
}

.wrapper {
  max-width: 1250px;
  margin: 0 auto;
}

.nav {
  margin: 25px 50px 0px 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 600px) {
  .nav {
    margin: 25px 25px 25px 25px;
  }
}

.nav h1 {
  font-family: "Roboto Slab";
  font-size: 2.7em;
  font-weight: 400;
}

@media (max-width: 600px) {
  .nav h1 {
    font-size: 1.5em;
  }
}

.nav ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 25px;
  margin-top: 20px;
}

@media (max-width: 970px) {
  .nav ul {
    display: none;
  }
}

.nav ul li {
  margin-left: 20px;
  font-size: 0.9em;
  font-weight: 700;
}

.nav ul li:last-child {
  border: 3px solid #000;
  border-radius: 10px;
  padding: 7px 25px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}

.nav ul li:last-child:active {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}

.nav ul li:last-child:hover {
  background-color: #000;
}

.nav ul li:last-child:hover a {
  color: #fff;
}

.hamburger {
  position: relative;
  display: none;
  z-index: 100;
  cursor: pointer;
}

@media (max-width: 970px) {
  .hamburger {
    display: block;
  }
}

.hamburger span {
  position: absolute;
  right: 0;
  width: 35px;
  height: 3px;
  background: #292929;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.hamburger span:nth-child(2) {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}

.hamburger span:nth-child(3) {
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}

.hamburger.x span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #000;
}

.hamburger.x span:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger.x span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background: #000;
}

.hamburger.x span:nth-child(3) {
  opacity: 0;
}

#menuOverlay {
  position: absolute;
  display: none;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: left;
      -ms-flex-align: left;
          align-items: left;
  visibility: hidden;
  width: calc(100% - 25px);
  height: 210px;
  border-radius: 10px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  z-index: 2;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media (max-width: 970px) {
  #menuOverlay {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 15px;
  }
}

@media (max-width: 600px) {
  #menuOverlay {
    margin-top: -5px;
  }
}

#menuOverlay nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: left;
  list-style: none;
}

#menuOverlay nav ul li {
  padding: 7.5px 0;
  font-size: 1.5em;
  font-weight: 700;
  opacity: 1;
}

#menuOverlay nav ul li a {
  color: #000;
}

#menuOverlay.open {
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.intro {
  font-weight: 400;
  width: 325px;
  line-height: 1.5em;
  margin: 0px 75px 35px 75px;
}

@media (max-width: 600px) {
  .intro {
    margin: 0px 25px 20px 25px;
  }
}

.calculator {
  height: 100%;
  margin: 0px 75px 65px 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 1175px) {
  .calculator {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (max-width: 600px) {
  .calculator {
    margin: 0px 25px 65px 25px;
  }
}

form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 400;
  width: 435px;
}

@media (max-width: 1175px) {
  form {
    width: 100%;
    margin: 0 25px;
  }
}

form label {
  margin: 15px 0 8px 0;
  font-size: 0.9em;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

form .inputContainer {
  position: relative;
  width: 420px;
}

@media (max-width: 600px) {
  form .inputContainer {
    width: 100%;
  }
}

form .inputContainer .kr {
  position: absolute;
  top: 50%;
  right: 0px;
  -webkit-transform: translate(0px, -50%);
          transform: translate(0px, -50%);
}

@media (max-width: 600px) {
  form .inputContainer .kr {
    margin-right: 10px;
  }
}

form input {
  height: 45px;
  border: 2.5px solid #000;
  border-radius: 10px;
  font-size: 1em;
  padding: 0 10px 0 20px;
  width: 400px;
}

@media (max-width: 600px) {
  form input {
    padding: 0 0 0 20px;
    width: calc(100% - 20px);
  }
}

form input:focus {
  outline: none;
}

form .smallInputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 435px;
}

@media (max-width: 1175px) {
  form .smallInputs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 600px) {
  form .smallInputs {
    width: auto;
  }
}

form .smallInputs div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

form .smallInputs div input {
  width: 150px;
}

form .smallInputs div .rente {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

form .smallInputs .value-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: solid #000;
  margin: 0px;
  width: 40px;
  height: 45px;
  text-align: center;
  background: #fff;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: 0.1s ease;
  transition: 0.1s ease;
}

form .smallInputs .value-button:hover {
  cursor: pointer;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.884);
}

form .smallInputs #decrease {
  border-radius: 10px 0 0 10px;
  border-width: 2.5px 0px 2.5px 2.5px;
}

form .smallInputs #increase {
  border-radius: 0 10px 10px 0;
  border-width: 2.5px 2.5px 2.5px 0px;
}

form .smallInputs #rente {
  text-align: center;
  border: none;
  border-top: 2.5px solid #000;
  border-bottom: 2.5px solid #000;
  width: 90px;
  height: 45px;
  border-radius: 0;
  padding: 0;
}

form .smallInputs .rente[type=number]::-webkit-inner-spin-button,
form .smallInputs .rente[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

form .smallInputs .selectBorder {
  border: 2.5px solid #000;
  border-radius: 10px;
  overflow: hidden;
  width: 140px;
  padding: 0 10px 0 20px;
  position: relative;
}

form .smallInputs .selectBorder select {
  height: 45px;
  background-color: #fff;
  border: 0px;
  font-size: 1em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent url("../img/arrow.svg") no-repeat;
  background-position: 95% 55%;
  background-size: 13px;
  cursor: pointer;
}

form .smallInputs .selectBorder select:focus {
  outline: none;
}

form .info {
  font-size: 0.9em;
  margin-top: 20px;
}

.resultContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  margin-left: 100px;
  width: 550px;
}

@media (max-width: 1175px) {
  .resultContainer {
    margin-top: 50px;
    width: 100%;
    margin-left: 0px;
    max-width: none;
  }
}

.resultContainer label {
  font-size: 0.9em;
}

.resultContainer .resultBackground {
  width: 100%;
  height: 268px;
  background-color: #F5F6FA;
  border-radius: 13px;
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
}

@media (max-width: 1175px) {
  .resultContainer .resultBackground {
    width: 100%;
  }
}

.resultContainer .resultBackground .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 550px;
}

@media (max-width: 1175px) {
  .resultContainer .resultBackground .row {
    margin: 25px 85px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: auto;
  }
}

@media (max-width: 600px) {
  .resultContainer .resultBackground .row {
    margin: 30px 50px 25px 50px;
  }
}

.resultContainer .resultBackground .row .result {
  margin: 25px 85px;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  white-space: nowrap;
}

.resultContainer .resultBackground .row .result:last-child .resultTitle {
  padding-left: 22px;
}

.resultContainer .resultBackground .row .result:last-child .resultNumber {
  text-align: center;
}

@media (max-width: 1175px) {
  .resultContainer .resultBackground .row .result:last-child {
    margin: 0px;
  }
}

@media (max-width: 1175px) {
  .resultContainer .resultBackground .row .result {
    margin: 0px;
  }
}

.resultContainer .resultBackground .row .result .resultTitle {
  font-size: 1em;
}

@media (max-width: 600px) {
  .resultContainer .resultBackground .row .result .resultTitle {
    font-size: 0.8em;
  }
}

.resultContainer .resultBackground .row .result .resultNumber {
  font-size: 1.8em;
  font-weight: 700;
  margin-top: 10px;
}

@media (max-width: 600px) {
  .resultContainer .resultBackground .row .result .resultNumber {
    font-size: 1.5em;
  }
}

.resultContainer .resultBackground .table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.resultContainer .resultBackground .table div {
  margin: 10px 85px 0 85px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1.3px dashed #000;
}

@media (max-width: 600px) {
  .resultContainer .resultBackground .table div {
    margin: 10px 50px 0 50px;
  }
}

.resultContainer .resultBackground .table div span {
  padding-bottom: 3px;
  font-size: 0.9em;
}

.resultContainer .resultBackground .table .resultInfo {
  text-align: center;
  margin: 20px 0;
  font-size: 0.8em;
}

@media (max-width: 600px) {
  .resultContainer .resultBackground .table .resultInfo {
    margin-top: 25px;
  }
}

.aboutContainer {
  margin: 75px;
}

@media (max-width: 600px) {
  .aboutContainer {
    margin: 75px 25px;
  }
}

.aboutContainer h2 {
  margin-bottom: 25px;
}

.about {
  height: 250px;
  background-color: #F5F6FA;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 10px;
}

@media (max-width: 1175px) {
  .about {
    height: auto;
  }
}

.about div {
  margin: 0 30px 0 50px;
}

@media (max-width: 1175px) {
  .about div {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .about div {
    margin: 20px 35px;
  }
}

.about div p {
  font-size: 0.9em;
  line-height: 1.8em;
  max-width: 750px;
}

.about img {
  width: 115px;
  margin-right: 100px;
}

@media (max-width: 1175px) {
  .about img {
    margin-left: 50px;
  }
}

@media (max-width: 600px) {
  .about img {
    display: none;
  }
}

.questions {
  margin: 50px 75px 35px 75px;
}

@media (max-width: 600px) {
  .questions {
    margin: 75px 25px 35px 25px;
  }
}

.collapsible {
  background-color: #F5F6FA;
  color: #000;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  margin-top: 15px;
  border-radius: 10px;
  font-weight: 400;
}

.collapsible:after {
  content: '\002B';
  color: #000;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
  background-color: #fff;
  font-size: 0.9em;
  line-height: 1.5em;
}

footer {
  position: relative;
  bottom: 0;
  width: 100%;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer span {
  font-size: 0.95em;
  font-weight: 700;
  cursor: pointer;
  margin: 0 80px;
}

@media (max-width: 600px) {
  footer span {
    margin: 0 30px;
  }
}
/*# sourceMappingURL=style.css.map */