/* stylelint-disable order/properties-alphabetical-order */
/* stylelint-enable */
@import url("https://use.typekit.net/wtw8vfn.css");
:root {
  --font-family: effra, sans-serif;
  --font-family--heading: var(--font-family);
  --font-weight--thin: 100;
  --font-weight--extra-light: 200;
  --font-weight--light: 300;
  --font-weight--normal: 400;
  --font-weight--medium: 500;
  --font-weight--semi-bold: 600;
  --font-weight--bold: 700;
  --font-weight--extra-bold: 800;
  --font-weight--black: 900;
  --line-height: 1.5;
  --line-height--heading: 1.2;
  --border-radius: 0.1875rem;
  --spacing: 1.5rem;
  --spacing--small: 0.75rem;
  --border-width: 0.0625rem;
  --border: var(--border-width) solid currentColor;
  --focus-outline-width: 0.1875rem;
  --focus-outline-offset: 0.125rem;
  --focus-outline: var(--focus-outline-width) solid #66AFFF;
  --duration: 150ms;
  --timing: ease;
}

button,
[type=button],
[type=reset],
[type=submit] {
  appearance: none;
  background-color: #66AFFF;
  border: 0;
  border-radius: var(--border-radius);
  color: inherit;
  cursor: pointer;
  display: inline-block;
  font-family: var(--font-family-base);
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  font-weight: 600;
  line-height: 1;
  padding: var(--spacing--small) var(--spacing);
  text-align: center;
  text-decoration: none;
  transition: background-color var(--duration) var(--timing);
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;
}
button:hover,
[type=button]:hover,
[type=reset]:hover,
[type=submit]:hover {
  background-color: #66AFFF;
}
button:focus,
[type=button]:focus,
[type=reset]:focus,
[type=submit]:focus {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}
button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

:root {
  --form-box-shadow: inset 0 --border-width 0.1875rem rgba(#000, 0.06);
  --form-box-shadow-focus: var(--form-box-shadow), 0 0 0.3125rem #66AFFF;
}

fieldset {
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 0;
}

legend {
  font-weight: 600;
  margin-bottom: var(--spacing--small);
  padding: 0;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--spacing--small);
}

input,
select,
textarea {
  display: block;
  font-family: var(--font-family);
  font-size: 1rem;
}

[type=color],
[type=date],
[type=datetime],
[type=datetime-local],
[type=email],
[type=month],
[type=number],
[type=password],
[type=search],
[type=tel],
[type=text],
[type=time],
[type=url],
[type=week],
input:not([type]),
textarea {
  appearance: none;
  background-color: transparent;
  border: var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--form-box-shadow);
  box-sizing: border-box;
  margin-bottom: var(--spacing--small);
  padding: calc(var(--spacing) / 3);
  transition: border-color var(--duration) var(--timing);
  width: 100%;
}
[type=color]:focus,
[type=date]:focus,
[type=datetime]:focus,
[type=datetime-local]:focus,
[type=email]:focus,
[type=month]:focus,
[type=number]:focus,
[type=password]:focus,
[type=search]:focus,
[type=tel]:focus,
[type=text]:focus,
[type=time]:focus,
[type=url]:focus,
[type=week]:focus,
input:not([type]):focus,
textarea:focus {
  box-shadow: var(--form-box-shadow-focus);
}
[type=color]:disabled,
[type=date]:disabled,
[type=datetime]:disabled,
[type=datetime-local]:disabled,
[type=email]:disabled,
[type=month]:disabled,
[type=number]:disabled,
[type=password]:disabled,
[type=search]:disabled,
[type=tel]:disabled,
[type=text]:disabled,
[type=time]:disabled,
[type=url]:disabled,
[type=week]:disabled,
input:not([type]):disabled,
textarea:disabled {
  cursor: not-allowed;
}
[type=color]:disabled:hover,
[type=date]:disabled:hover,
[type=datetime]:disabled:hover,
[type=datetime-local]:disabled:hover,
[type=email]:disabled:hover,
[type=month]:disabled:hover,
[type=number]:disabled:hover,
[type=password]:disabled:hover,
[type=search]:disabled:hover,
[type=tel]:disabled:hover,
[type=text]:disabled:hover,
[type=time]:disabled:hover,
[type=url]:disabled:hover,
[type=week]:disabled:hover,
input:not([type]):disabled:hover,
textarea:disabled:hover {
  border: var(--border);
}
[type=color]::placeholder,
[type=date]::placeholder,
[type=datetime]::placeholder,
[type=datetime-local]::placeholder,
[type=email]::placeholder,
[type=month]::placeholder,
[type=number]::placeholder,
[type=password]::placeholder,
[type=search]::placeholder,
[type=tel]::placeholder,
[type=text]::placeholder,
[type=time]::placeholder,
[type=url]::placeholder,
[type=week]::placeholder,
input:not([type])::placeholder,
textarea::placeholder {
  color: #090909;
  opacity: 0.25;
}

[type=search] {
  -webkit-appearance: textfield;
}

textarea {
  resize: vertical;
}

[type=checkbox],
[type=radio] {
  display: inline;
  margin-right: var(--spacing--small);
}

[type=file] {
  margin-bottom: var(--spacing--small);
  width: 100%;
}

select {
  margin-bottom: var(--spacing--small);
  width: 100%;
}

[type=checkbox]:focus,
[type=radio]:focus,
[type=file]:focus,
select:focus {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}

html {
  background-color: #fff;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
}

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

dl {
  margin: 0;
}

dt {
  font-weight: 600;
  margin: 0;
}

dd {
  margin: 0;
}

figure {
  margin: 0;
}

img,
picture {
  margin: 0;
  max-width: 100%;
}

table {
  border-collapse: collapse;
  margin: var(--spacing) 0;
  table-layout: fixed;
  text-align: left;
  width: 100%;
}

thead {
  line-height: var(--line-height--heading);
  vertical-align: bottom;
}

tbody {
  vertical-align: top;
}

tr {
  border-bottom: var(--border);
}

th {
  font-weight: 600;
}

th,
td {
  padding: var(--spacing--small) var(--spacing--small) var(--spacing--small) 0;
}

html {
  color: #090909;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: var(--line-height);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family--heading);
  font-size: 1.25em;
  line-height: var(--line-height--heading);
  margin: 0 0 var(--spacing--small);
}

p {
  margin: 0 0 var(--spacing--small);
}

a {
  color: #66AFFF;
  text-decoration-skip: ink;
  transition: color var(--duration) var(--timing);
}
a:hover {
  color: #66AFFF;
}
a:focus {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}

hr {
  border-bottom: var(--border);
  border-left: 0;
  border-right: 0;
  border-top: 0;
  margin: var(--spacing) 0;
}

.wrapper .inner {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}
.wrapper section {
  padding: 20px 0 20px;
}
.wrapper section .text {
  max-width: 600px;
  margin: auto;
}
.wrapper section h2 {
  font-size: 2em;
}
.wrapper #header {
  text-align: center;
}
.wrapper #header h1 {
  font-size: 15vw;
  line-height: 0.8em;
  max-width: 80%;
  margin: 20px auto 0;
  color: #FF794D;
}
@media screen and (min-width: 701px) {
  .wrapper #header h1 {
    font-size: 8vw;
  }
}
@media screen and (min-width: 1101px) {
  .wrapper #header h1 {
    font-size: 6em;
  }
}
.wrapper #header .hero {
  height: 0;
  margin-top: -2%;
  padding-bottom: 39.2%;
  background-image: url(../img/header.svg);
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 30px;
}
.wrapper #table {
  background-color: #66AFFF;
  color: #fff;
}
.wrapper #table .text {
  text-align: center;
}
.wrapper #table .text p.b {
  font-weight: 700;
  font-size: 1.1em;
}
.wrapper #table .table_wrap {
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.17);
  padding: 20px;
  width: 100%;
  overflow: auto;
  margin: 20px 0 40px;
}
.wrapper #table .table_wrap .table_inner .row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 10px;
}
.wrapper #table .table_wrap .table_inner .header {
  margin-bottom: 10px;
}
.wrapper #table .table_wrap .table_inner .header div {
  background-color: #66AFFF;
  border-radius: 20px;
  padding: 10px 20px 10px 5px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1em;
}
.wrapper #table .table_wrap .table_inner .header div.active:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #fff;
  right: 5px;
  top: 50%;
  margin-top: -10px;
  border-radius: 100px;
}
.wrapper #table .table_wrap .table_inner .header div.active:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid #66AFFF;
  right: 10px;
  top: 50%;
  margin-top: -2px;
  transition: all 0.1s;
}
.wrapper #table .table_wrap .table_inner .header div.active.reverse:after {
  transform: rotate(180deg);
  margin-top: -4px;
}
.wrapper #table .table_wrap .table_inner .body {
  color: #090909;
  font-weight: 700;
}
.wrapper #table .table_wrap .table_inner .body .row {
  padding: 2px 0;
  border-bottom: 1px solid #66AFFF;
}
.wrapper #table .table_wrap .table_inner .body .row div {
  text-align: center;
  color: #66AFFF;
}
.wrapper #table .table_wrap .table_inner .body .row div:nth-child(1) {
  text-align: left;
  padding-left: 10px;
  color: #090909;
}
.wrapper #table .table_wrap .table_inner .body .row div span {
  border-radius: 20px;
  color: #fff;
  display: block;
  margin: auto;
}
.wrapper #table .table_wrap .table_inner .body .row div.diff span {
  background-color: #44AF69;
  width: 50px;
}
.wrapper #table .table_wrap .table_inner .body .row div.diff span.rent {
  background-color: #E83E33;
}
.wrapper #table .table_wrap .table_inner .body .row div.result span {
  background-color: #F9B114;
  width: 100px;
}
.wrapper #table .table_wrap .table_inner .body .row div.result span.rent {
  background-color: #FF794D;
}
@media screen and (max-width: 700px) {
  .wrapper #table .table_wrap {
    padding: 10px;
    font-size: 0.7em;
  }
  .wrapper #table .table_wrap .table_inner {
    min-width: 355px;
  }
  .wrapper #table .table_wrap .table_inner .header div {
    border-radius: 0;
    color: #66AFFF;
    background-color: transparent;
    text-align: center;
    padding: 0;
    font-weight: 700;
    justify-content: flex-start;
  }
  .wrapper #table .table_wrap .table_inner .header div:nth-child(1) {
    text-align: left;
    padding-left: 10px;
  }
  .wrapper #table .table_wrap .table_inner .header div.active:before {
    display: none;
  }
  .wrapper #table .table_wrap .table_inner .header div.active:after {
    position: relative;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #66AFFF;
    bottom: auto;
    right: auto;
    margin-top: -2em;
    margin-left: 5px;
  }
  .wrapper #table .table_wrap .table_inner .header div.active.reverse:after {
    margin-top: -2em;
  }
  .wrapper #table .table_wrap .table_inner .body .row div span {
    width: 100% !important;
  }
  .wrapper #table .table_wrap .table_inner .row {
    grid-gap: 2px;
  }
}
@media screen and (min-width: 701px) {
  .wrapper #table .cols {
    columns: 2;
  }
}
.wrapper #table .cols p span {
  font-weight: 700;
}
.wrapper #widget {
  text-align: center;
  padding: 40px 0;
}
.wrapper #widget .widget_box {
  border-radius: 25px;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.17);
  padding: 20px 20px 0;
}
.wrapper #widget .widget_box .widget_inner h2 {
  text-transform: uppercase;
  color: #66AFFF;
  letter-spacing: 3px;
  font-size: 1.5em;
}
.wrapper #widget .widget_box .widget_inner p {
  margin: 0;
}
.wrapper #widget .widget_box .widget_inner .slider_wrap {
  margin-top: 30px;
  background-image: url(../img/slider-bg.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 20px;
}
.wrapper #widget .widget_box .widget_inner .slider_wrap select {
  border-radius: 20px;
  border: 0;
  background-color: #66AFFF;
  color: #fff;
  padding: 0 10px 0;
  max-width: 200px;
  margin: 20px auto 30px;
}
.wrapper #widget .widget_box .widget_inner .slider_wrap h3 {
  font-weight: 100;
  text-transform: uppercase;
  font-size: 1em;
  letter-spacing: 6px;
  margin: 20px 0 40px;
}
.wrapper #widget .widget_box .widget_inner .slider_wrap .slider {
  margin: 0 40px;
}
.wrapper #widget .widget_box .widget_inner .slider_wrap .slider .rangeslider {
  position: relative;
  height: 10px;
  border-radius: 20px;
  width: 100%;
  background-color: #fff;
  margin-top: 60px;
}
.wrapper #widget .widget_box .widget_inner .slider_wrap .slider .rangeslider__handle {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: #66AFFF;
  border: 2px solid #fff;
  touch-action: pan-y;
  cursor: pointer;
  display: inline-block;
  position: absolute;
  z-index: 3;
  top: -5px;
  background-image: none !important;
}
.wrapper #widget .widget_box .widget_inner .slider_wrap .slider .rangeslider__handle__value {
  transition: transform 0.1s;
  width: 30px;
  height: 30px;
  border-radius: 100px;
  background-color: #fff;
  color: #090909;
  left: -7px;
  bottom: 35px;
  position: absolute;
  border: 2px solid #66AFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1 !important;
  font-size: 0.9em;
}
.wrapper #widget .widget_box .widget_inner .slider_wrap .slider .rangeslider__handle__value:before {
  transition: border-top-color 0.2s;
  position: absolute;
  bottom: -18px;
  left: calc(50% - 10px);
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 20px solid;
  border-top-color: #66AFFF;
  z-index: -1 !important;
}
.wrapper #widget .widget_box .widget_inner .slider_wrap .slider .rangeslider__fill {
  position: absolute;
  top: 0;
  z-index: 1;
  height: 100%;
  background-color: #66AFFF;
  border-radius: 5px;
}
.wrapper #widget .widget_box .widget_inner .slider_wrap .slider .rangeslider__labels {
  position: absolute;
  width: 100%;
  z-index: 2;
  display: flex;
  justify-content: space-between;
}
.wrapper #widget .widget_box .widget_inner .slider_wrap .slider .rangeslider__labels__label {
  font-size: 0.9em;
  position: relative;
  padding-top: 15px;
  color: #090909;
  font-weight: 700;
}
.wrapper #widget .widget_box .widget_inner .slider_wrap .slider .rangeslider__labels__label:first-child {
  transform: translateX(-48%);
}
.wrapper #widget .widget_box .widget_inner .slider_wrap .slider .rangeslider__labels__label:last-child {
  transform: translateX(48%);
}
.wrapper #widget .widget_box .widget_inner .slider_wrap .slider .rangeslider.rangeslider--active .rangeslider__handle__value {
  transform: translateY(-5px);
}
.wrapper #widget .widget_box .widget_inner .slider_wrap .output {
  background-color: #F9B114;
  color: #fff;
  margin: 60px auto 0;
  padding: 10px 0;
  border-radius: 100px;
  max-width: 300px;
}
.wrapper #widget .widget_box .widget_inner .slider_wrap .output p {
  margin: 0;
  line-height: 1em;
}
.wrapper #widget .widget_box .widget_inner .slider_wrap .output .heading {
  text-transform: uppercase;
  letter-spacing: 7px;
  margin-bottom: 5px;
  font-size: 0.9em;
}
.wrapper #widget .widget_box .widget_inner .slider_wrap .output .result {
  font-weight: 700;
  letter-spacing: 15px;
  font-size: 2em;
}
.wrapper #footer {
  background-color: #4D2FC3;
  color: #fff;
}
.wrapper #footer .center {
  text-align: center;
  margin: 40px 0 0;
  font-size: 0.8em;
}
.wrapper #footer .center .logo {
  max-width: 150px;
  margin: 20px auto 0;
}
