:root {
  --background: #fff;

  --background--secondary: #0a3451;
  --color-error: #fcc;
  --color-gray: #ddd;
  --color-primary: #1b66d6;
  --color-quaternary: #ebf5ff;
  --color-secondary: #2f334b;
  --color-tertiary: #191919;
  --foreground: #000;
  --inner-width: 1168px;
}

* {
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

#__next {
  overflow: hidden;
}

html,
body {
  margin: 0;

  background: var(--background);

  overflow-x: hidden;

  text-rendering: optimizeLegibility;

  font-family: 'Inter';

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

*::-moz-selection {
  background-color: rgba(27, 110, 214, 0.99);

  color: var(--background);
}

*::selection {
  background-color: rgba(27, 110, 214, 0.99);

  color: var(--background);
}

input,
label,
select,
button,
textarea {
  display: inline-block;

  margin: 0;

  border: 0;

  background: none;

  padding: 0;

  vertical-align: middle;

  line-height: 1;
  white-space: normal;
}

input:focus {
  outline: 0;
}

input,
textarea {
  box-sizing: border-box;
}

button,
input[type='reset'],
input[type='button'],
input[type='submit'],
input[type='checkbox'],
input[type='radio'],
select {
  box-sizing: border-box;
}

ul {
  margin: 0;

  padding: 0;

  list-style: none;
}

img {
  display: inline-block;

  width: auto;
  max-width: 100%;
}

small {
  font-size: 50%;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}

h1 {
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--color-tertiary);

  font-size: max(38px, 2.917vw);
  font-weight: 700;
}

h2 {
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--color-tertiary);

  font-size: max(30px, 2.5vw);
  font-weight: 700;
}

h3 {
  line-height: 1.8;

  font-size: calc(28px + (46 - 28) * (100vw - 375px) / (1700 - 375));
}

h4 {
  font-size: calc(24px + (36 - 24) * (100vw - 375px) / (1700 - 375));
}

h5 {
  margin-bottom: 10px;

  text-transform: uppercase;

  line-height: 1.7;

  font-size: 15px;
  font-weight: 500;
}

p {
  margin: 0;

  line-height: 1.8;

  font-family: 'Inter';
  font-size: 15px;
  font-weight: 400;
}

p.large {
  margin: 0 auto;

  max-width: 76ch;

  line-height: 1.7;

  font-size: max(16px, 0.938vw);
}

.centered {
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid #eaeaea;

  background-color: transparent;

  text-align: left;
}

.faq-item__contentInner {
  border-top: 0;

  padding: 0 max(60px, 4.888vw) max(30px, 2.344vw) 0;
}

.faq-item__contentInner p {
  margin-bottom: 10px;

  line-height: 20px;

  font-size: 14px;
}

.faq-item__contentInner p:last-child {
  margin-bottom: 0;
}

.faq-item__trigger {
  display: block;
  position: relative;

  margin-bottom: 0;

  background: transparent;
  font-weight: 400;

  cursor: pointer;

  padding: max(26px, 1.667vw);
  padding-right: max(60px, 4.888vw);
  padding-left: 0;

  text-transform: none;

  line-height: 1.7;
  color: var(--color-tertiary);

  font-size: max(16px, 0.938vw);
}

@media (max-width: 850px) {
  .faq-item__trigger {
    padding: 25px;
    padding-right: 60px;

    font-size: 15px;
  }
}

.faq-item:first-of-type {
  border-top: 1px solid #eaeaea;
}

.faq-item__trigger:after {
  display: block;
  position: absolute;
  top: 35px;
  right: 0;

  transform-origin: center;

  transition: all 200ms ease;

  width: 20px;

  height: 20px;

  line-height: 20px;

  content: url("data:image/svg+xml; utf8, %3Csvg width='18' height='19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M17.357 10.628H9.643v7.714a.643.643 0 01-1.286 0v-7.714H.643a.643.643 0 010-1.287h7.714V1.627a.643.643 0 011.286 0V9.34h7.714a.643.643 0 010 1.287z' fill='%231B66D6'/%3E%3C/svg%3E");
}

@media (max-width: 850px) {
  .faq-item__trigger:after {
    top: 30px;
  }
}

.faq-item__contentInner {
  padding-left: 25px;
}
.faq-item__trigger.is-open:after {
  transform: rotate(45deg);
  transform-origin: center center;

  -webkit-transform: rotate(45deg);
  -webkit-transform-origin: center center;
}

.faq-item__trigger.is-disabled {
  opacity: 0.5;

  background-color: grey;
}

.rangeslider {
  position: relative;

  margin: 20px 0;

  background: rgba(172, 197, 255, 0.1);

  -ms-touch-action: none;
  touch-action: none;
}

.rangeslider,
.rangeslider .rangeslider__fill {
  display: block;
}

.rangeslider .rangeslider__handle {
  display: inline-block;
  position: absolute;

  z-index: 20;

  box-shadow: 0 0 15px rgba(63, 162, 247, 0.23);

  background: #2069d7;

  cursor: pointer;

  -webkit-box-shadow: 0 0 15px rgba(63, 162, 247, 0.23);
}

.rangeslider .rangeslider__handle .rangeslider__active {
  opacity: 1;
}

.rangeslider .rangeslider__handle-tooltip {
  display: inline-block;
  position: absolute;
  left: 50%;

  transform: translate3d(-50%, 0, 0);

  transition: all 0.1s ease-in;

  border-radius: 4px;

  background-color: rgba(255, 255, 255, 0.8);

  width: 40px;

  height: 40px;

  text-align: center;

  color: var(--color-secondary);

  font-size: 14px;
  font-weight: 400;

  -webkit-transform: translate3d(-50%, 0, 0);
  -webkit-transition: all 0.1s ease-in;
}

.rangeslider .rangeslider__handle-tooltip span {
  display: inline-block;

  margin-top: 12px;

  line-height: 100%;
}

.rangeslider .rangeslider__handle-tooltip:after {
  position: absolute;

  width: 0;

  height: 0;

  content: ' ';
}

.rangeslider-horizontal {
  border-radius: 4px;

  height: 6px;
}

.rangeslider-horizontal .rangeslider__fill {
  top: 0;

  border-radius: 6px;

  background-color: #2069d7;

  height: 100%;
}

.rangeslider-horizontal .rangeslider__handle {
  top: 50%;

  transform: translate3d(-50%, -50%, 0);

  border-radius: 30px;

  width: 27px;

  height: 27px;

  -webkit-transform: translate3d(-50%, -50%, 0);
}

.rangeslider-horizontal .rangeslider__handle:after {
  position: absolute;
  top: 6px;
  left: 6px;

  border-radius: 50%;

  background-color: transparent;

  width: 16px;

  height: 16px;

  content: ' ';
}

.rangeslider-horizontal .rangeslider__handle-tooltip {
  top: -55px;
}

.rangeslider-horizontal .rangeslider__handle-tooltip:after {
  bottom: -7px;
  left: 50%;

  transform: translate3d(-50%, 0, 0);

  border-top: 8px solid rgba(255, 255, 255, 0.8);
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;

  -webkit-transform: translate3d(-50%, 0, 0);
}

.rangeslider-vertical {
  margin: 20px auto;

  background-color: transparent;

  max-width: 10px;

  height: 150px;
}

.rangeslider-vertical .rangeslider__fill,
.rangeslider-vertical .rangeslider__handle {
  position: absolute;
}

.rangeslider-vertical .rangeslider__fill {
  bottom: 0;

  box-shadow: none;

  background-color: #2069d7;

  width: 100%;

  -webkit-box-shadow: none;
}

.rangeslider-vertical .rangeslider__handle {
  left: -10px;

  box-shadow: none;

  width: 30px;

  height: 10px;

  -webkit-box-shadow: none;
}

.rangeslider-vertical .rangeslider__handle-tooltip {
  top: 50%;
  left: -100%;

  transform: translate3d(-50%, -50%, 0);

  -webkit-transform: translate3d(-50%, -50%, 0);
}

.rangeslider-vertical .rangeslider__handle-tooltip:after {
  top: 12px;
  left: 100%;

  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid rgba(0, 0, 0, 0.8);
}

.rangeslider-reverse.rangeslider-horizontal .rangeslider__fill {
  right: 0;
}

.rangeslider-reverse.rangeslider-vertical .rangeslider__fill {
  top: 0;
  bottom: inherit;
}

.rangeslider__labels {
  position: relative;
}

.rangeslider-vertical .rangeslider__labels {
  position: relative;
  left: 10px;

  margin: 0 0 0 24px;

  padding: 0;

  width: 250px;

  height: 100%;

  list-style-type: none;

  text-align: left;
}

.rangeslider-vertical .rangeslider__labels .rangeslider__label-item {
  position: absolute;

  transform: translate3d(0, -50%, 0);

  -webkit-transform: translate3d(0, -50%, 0);
}

.rangeslider-vertical .rangeslider__labels .rangeslider__label-item::before {
  position: absolute;
  top: 50%;
  left: -14px;

  transform: translateY(-50%);

  z-index: -1;

  background: #000;

  width: 10px;

  height: 2px;

  content: '';

  -webkit-transform: translateY(-50%);
}

.rangeslider__labels .rangeslider__label-item {
  display: inline-block;
  position: absolute;
  top: 20px;

  transform: translate3d(-50%, 0, 0);

  cursor: pointer;

  color: #fff;

  font-family: 'Inter';
  font-size: 15px;
  font-weight: 400;

  -webkit-transform: translate3d(-50%, 0, 0);
}

.rangeslider__labels .rangeslider__label-item:after {
  position: absolute;
  top: -20px;
  left: 50%;

  background-color: rgba(172, 197, 255, 0.2);

  width: 1px;

  height: 10px;

  content: ' ';
}

.main__section {
  margin-top: max(82px, 10.417vw);
}

.anime__item {
  will-change: transform, opacity;
}
