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

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

.header {
  position: relative;
  z-index: 5;
  background-color: #083777;
}

.header__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__burger {
  display: none;
}

.header__logos {
  display: flex;
  align-items: center;
}

.header__flex {
  display: flex;
  align-items: center;
}

.header__tel {
  font-size: 20px;
  color: #fff;
}

.header__tel:not(:last-child) {
  margin-right: 20px;
}

.header__btn {
  background-color: #41A3F2;
  padding: 5px 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease 0s;
  line-height: 22px;
  cursor: pointer;
  border-radius: 5px;
}

.header__btn:hover {
  background-color: #1e99fd;
}

.header__btn a {
  color: #fff;
}

.logos {
  padding: 8px 0;
}

.logos__logo {
  width: 50px;
  height: 45px;
}

.logos__logo_a:not(:last-child) {
  margin: 0 30px 0 0;
}

.logos__logo_a img {
  width: 120px;
}

.footer {
  background-color: #41A3F2;
}

.footer__title {
  line-height: 140%;
  font-size: 14px;
  padding-top: 54px;
  padding-bottom: 54px;
}

.footer__title a {
  color: inherit;
  text-decoration: underline;
}

.select {
  position: relative;
  width: 100%;
}

.select__toggle {
  display: flex;
  background-color: #fff;
  cursor: pointer;
  align-items: center;
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  justify-content: space-between;
  border: 1px solid #A1C7E6;
  border-radius: 4px;
  padding: 15px;
}

.select__toggle::after {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  flex-shrink: 0;
  margin-left: 1rem;
  background-size: cover;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" height="100" width="100"%3E%3Cpath d="M97.625 25.3l-4.813-4.89c-1.668-1.606-3.616-2.41-5.84-2.41-2.27 0-4.194.804-5.777 2.41L50 52.087 18.806 20.412C17.223 18.805 15.298 18 13.03 18c-2.225 0-4.172.804-5.84 2.41l-4.75 4.89C.813 26.95 0 28.927 0 31.23c0 2.346.814 4.301 2.439 5.865l41.784 42.428C45.764 81.174 47.689 82 50 82c2.268 0 4.215-.826 5.84-2.476l41.784-42.428c1.584-1.608 2.376-3.563 2.376-5.865 0-2.26-.792-4.236-2.375-5.932z"/%3E%3C/svg%3E');
}

.select__toggle:focus {
  outline: none;
}

.select_show .select__toggle::after {
  transform: rotate(180deg);
}

.select__dropdown {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  border: 1px solid #ccc;
  max-height: 10rem;
  overflow-y: auto;
  border-radius: 0.3125rem;
  z-index: 2;
  background-color: #fff;
}

.select_show .select__dropdown {
  display: block;
}

.select_show .select__backdrop {
  display: block;
}

.select__options {
  margin: 0;
  padding: 0;
  list-style: none;
}

.select__option {
  padding: 0.375rem 0.75rem;
}

.select__option_selected {
  background-color: #e1f5fe;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.select__option_selected::after {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  color: #0277bd;
  background-size: cover;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" height="100" width="100" class="svg-inline--fa fa-check fa-w-16" data-icon="check" data-prefix="fas" aria-hidden="true"%3E%3Cpath d="M33.964 85.547l-32.5-32.251a4.935 4.935 0 010-7.017l7.071-7.017a5.027 5.027 0 017.071 0L37.5 60.987l46.894-46.534a5.028 5.028 0 017.07 0l7.072 7.017a4.935 4.935 0 010 7.017l-57.5 57.06a5.027 5.027 0 01-7.072 0z" fill="%230277bd"/%3E%3C/svg%3E');
}

.select__option:hover {
  background-color: #f5f5f5;
  cursor: pointer;
  transition: 0.2s background-color ease-in-out;
}

/*!
 * FilePond 4.30.4
 * Licensed under MIT, https://opensource.org/licenses/MIT/
 * Please visit https://pqina.nl/filepond/ for details.
 */

/* eslint-disable */

.filepond--assistant {
  position: absolute;
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Hard to override styles */

.filepond--browser.filepond--browser {
  /* is positioned absolute so it is focusable for form validation errors */
  position: absolute;
  margin: 0;
  padding: 0;
  /* is positioned ~behind drop label */
  left: 1em;
  top: 1.75em;
  width: calc(100% - 2em);
  /* hide visually */
  opacity: 0;
  font-size: 0;
  /* removes text cursor in Internet Explorer 11 */
}

.filepond--data {
  position: absolute;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  border: none;
  visibility: hidden;
  pointer-events: none;
  contain: strict;
}

.filepond--drip {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  opacity: 0.1;
  /* can't interact with this element */
  pointer-events: none;
  /* inherit border radius from parent (needed for drip-blob cut of) */
  border-radius: 0.5em;
  /* this seems to prevent Chrome from redrawing this layer constantly */
  background: rgba(0, 0, 0, 0.01);
}

.filepond--drip-blob {
  position: absolute;
  transform-origin: center center;
  top: 0;
  left: 0;
  width: 8em;
  height: 8em;
  margin-left: -4em;
  margin-top: -4em;
  background: #292625;
  border-radius: 50%;
  /* will be animated */
  will-change: transform, opacity;
}

.filepond--drop-label {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0;
  color: #4f4f4f;
  /* center contents */
  display: flex;
  justify-content: center;
  align-items: center;
  /* fixes IE11 centering problems (is overruled by label min-height) */
  height: 0px;
  /* dont allow selection */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* will be animated */
  will-change: transform, opacity;
}

/* Hard to override styles on purpose */

.filepond--drop-label.filepond--drop-label label {
  display: block;
  margin: 0;
  padding: 0.5em;
  /* use padding instead of margin so click area is not impacted */
}

.filepond--drop-label label {
  cursor: default;
  font-size: 0.875em;
  font-weight: normal;
  text-align: center;
  line-height: 1.5;
}

.filepond--label-action {
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  -webkit-text-decoration-color: #a7a4a4;
  text-decoration-color: #a7a4a4;
  cursor: pointer;
}

.filepond--root[data-disabled] .filepond--drop-label label {
  opacity: 0.5;
}

/* Hard to override styles */

.filepond--file-action-button.filepond--file-action-button {
  font-size: 1em;
  width: 1.625em;
  height: 1.625em;
  font-family: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  will-change: transform, opacity;
  /* hidden label */
}

.filepond--file-action-button.filepond--file-action-button span {
  position: absolute;
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  white-space: nowrap;
}

.filepond--file-action-button.filepond--file-action-button {
  /* scale SVG to fill button */
}

.filepond--file-action-button.filepond--file-action-button svg {
  width: 100%;
  height: 100%;
}

.filepond--file-action-button.filepond--file-action-button {
  /* bigger touch area */
}

.filepond--file-action-button.filepond--file-action-button::after {
  position: absolute;
  left: -0.75em;
  right: -0.75em;
  top: -0.75em;
  bottom: -0.75em;
  content: "";
}

/* Soft styles */

.filepond--file-action-button {
  /* use default arrow cursor */
  cursor: auto;
  /* reset default button styles */
  color: #fff;
  /* set default look n feel */
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  background-image: none;
  /* we animate box shadow on focus */
  /* it's only slightly slower than animating */
  /* a pseudo-element with transforms and renders */
  /* a lot better on chrome */
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  transition: box-shadow 0.25s ease-in;
}

.filepond--file-action-button:hover,
.filepond--file-action-button:focus {
  box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.9);
}

.filepond--file-action-button[disabled] {
  color: rgba(255, 255, 255, 0.5);
  background-color: rgba(0, 0, 0, 0.25);
}

.filepond--file-action-button[hidden] {
  display: none;
}

/* edit button */

.filepond--action-edit-item.filepond--action-edit-item {
  width: 2em;
  height: 2em;
  padding: 0.1875em;
}

.filepond--action-edit-item.filepond--action-edit-item[data-align*=center] {
  margin-left: -0.1875em;
}

.filepond--action-edit-item.filepond--action-edit-item[data-align*=bottom] {
  margin-bottom: -0.1875em;
}

.filepond--action-edit-item-alt {
  border: none;
  line-height: inherit;
  background: transparent;
  font-family: inherit;
  color: inherit;
  outline: none;
  padding: 0;
  margin: 0 0 0 0.25em;
  pointer-events: all;
  position: absolute;
}

.filepond--action-edit-item-alt svg {
  width: 1.3125em;
  height: 1.3125em;
}

.filepond--action-edit-item-alt span {
  font-size: 0;
  opacity: 0;
}

.filepond--file-info {
  position: static;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  margin: 0 0.5em 0 0;
  min-width: 0;
  /* will be animated */
  will-change: transform, opacity;
  /* can't do anything with this info */
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* no margins on children */
}

.filepond--file-info * {
  margin: 0;
}

.filepond--file-info {
  /* we don't want to have these overrules so these selectors are a bit more specific */
}

.filepond--file-info .filepond--file-info-main {
  font-size: 0.75em;
  line-height: 1.2;
  /* we want ellipsis if this bar gets too wide */
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.filepond--file-info .filepond--file-info-sub {
  font-size: 0.625em;
  opacity: 0.5;
  transition: opacity 0.25s ease-in-out;
  white-space: nowrap;
}

.filepond--file-info .filepond--file-info-sub:empty {
  display: none;
}

.filepond--file-status {
  position: static;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-grow: 0;
  flex-shrink: 0;
  margin: 0;
  min-width: 2.25em;
  text-align: right;
  /* will be animated */
  will-change: transform, opacity;
  /* can't do anything with this info */
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* no margins on children */
}

.filepond--file-status * {
  margin: 0;
  white-space: nowrap;
}

.filepond--file-status {
  /* font sizes */
}

.filepond--file-status .filepond--file-status-main {
  font-size: 0.75em;
  line-height: 1.2;
}

.filepond--file-status .filepond--file-status-sub {
  font-size: 0.625em;
  opacity: 0.5;
  transition: opacity 0.25s ease-in-out;
}

/* Hard to override styles */

.filepond--file-wrapper.filepond--file-wrapper {
  border: none;
  margin: 0;
  padding: 0;
  min-width: 0;
  height: 100%;
  /* hide legend for visual users */
}

.filepond--file-wrapper.filepond--file-wrapper > legend {
  position: absolute;
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  white-space: nowrap;
}

.filepond--file {
  position: static;
  display: flex;
  height: 100%;
  align-items: flex-start;
  padding: 0.5625em 0.5625em;
  color: #fff;
  border-radius: 0.5em;
  /* control positions */
}

.filepond--file .filepond--file-status {
  margin-left: auto;
  margin-right: 2.25em;
}

.filepond--file .filepond--processing-complete-indicator {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 3;
}

.filepond--file .filepond--processing-complete-indicator,
.filepond--file .filepond--progress-indicator,
.filepond--file .filepond--file-action-button {
  position: absolute;
}

.filepond--file {
  /* .filepond--file-action-button */
}

.filepond--file [data-align*=left] {
  left: 0.5625em;
}

.filepond--file [data-align*=right] {
  right: 0.5625em;
}

.filepond--file [data-align*=center] {
  left: calc(50% - 0.8125em);
  /* .8125 is half of button width */
}

.filepond--file [data-align*=bottom] {
  bottom: 1.125em;
}

.filepond--file [data-align=center] {
  top: calc(50% - 0.8125em);
}

.filepond--file .filepond--progress-indicator {
  margin-top: 0.1875em;
}

.filepond--file .filepond--progress-indicator[data-align*=right] {
  margin-right: 0.1875em;
}

.filepond--file .filepond--progress-indicator[data-align*=left] {
  margin-left: 0.1875em;
}

/* make sure text does not overlap */

[data-filepond-item-state=cancelled] .filepond--file-info,
[data-filepond-item-state*=invalid] .filepond--file-info,
[data-filepond-item-state*=error] .filepond--file-info {
  margin-right: 2.25em;
}

[data-filepond-item-state~=processing] .filepond--file-status-sub {
  opacity: 0;
}

[data-filepond-item-state~=processing] .filepond--action-abort-item-processing ~ .filepond--file-status .filepond--file-status-sub {
  opacity: 0.5;
}

[data-filepond-item-state=processing-error] .filepond--file-status-sub {
  opacity: 0;
}

[data-filepond-item-state=processing-error] .filepond--action-retry-item-processing ~ .filepond--file-status .filepond--file-status-sub {
  opacity: 0.5;
}

[data-filepond-item-state=processing-complete] {
  /* busy state */
}

[data-filepond-item-state=processing-complete] .filepond--action-revert-item-processing svg {
  -webkit-animation: fall 0.5s 0.125s linear both;
  animation: fall 0.5s 0.125s linear both;
}

[data-filepond-item-state=processing-complete] {
  /* hide details by default, only show when can revert */
}

[data-filepond-item-state=processing-complete] .filepond--file-status-sub {
  opacity: 0.5;
}

[data-filepond-item-state=processing-complete] .filepond--processing-complete-indicator:not([style*=hidden]) ~ .filepond--file-status .filepond--file-status-sub {
  opacity: 0;
}

[data-filepond-item-state=processing-complete] .filepond--file-info-sub {
  opacity: 0;
}

[data-filepond-item-state=processing-complete] .filepond--action-revert-item-processing ~ .filepond--file-info .filepond--file-info-sub {
  opacity: 0.5;
}

/* file state can be invalid or error, both are visually similar but */

/* having them as separate states might be useful */

[data-filepond-item-state*=invalid] .filepond--panel,
[data-filepond-item-state*=invalid] .filepond--file-wrapper,
[data-filepond-item-state*=error] .filepond--panel,
[data-filepond-item-state*=error] .filepond--file-wrapper {
  -webkit-animation: shake 0.65s linear both;
  animation: shake 0.65s linear both;
}

/* spins progress indicator when file is marked as busy */

[data-filepond-item-state*=busy] .filepond--progress-indicator svg {
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

/**
 * States
 */

@-webkit-keyframes spin {
  0% {
    transform: rotateZ(0deg);
  }

  100% {
    transform: rotateZ(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotateZ(0deg);
  }

  100% {
    transform: rotateZ(360deg);
  }
}

@-webkit-keyframes shake {
  10%, 90% {
    transform: translateX(-0.0625em);
  }

  20%, 80% {
    transform: translateX(0.125em);
  }

  30%, 50%, 70% {
    transform: translateX(-0.25em);
  }

  40%, 60% {
    transform: translateX(0.25em);
  }
}

@keyframes shake {
  10%, 90% {
    transform: translateX(-0.0625em);
  }

  20%, 80% {
    transform: translateX(0.125em);
  }

  30%, 50%, 70% {
    transform: translateX(-0.25em);
  }

  40%, 60% {
    transform: translateX(0.25em);
  }
}

@-webkit-keyframes fall {
  0% {
    opacity: 0;
    transform: scale(0.5);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  70% {
    opacity: 1;
    transform: scale(1.1);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  100% {
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes fall {
  0% {
    opacity: 0;
    transform: scale(0.5);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  70% {
    opacity: 1;
    transform: scale(1.1);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  100% {
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

/* ignore all other interaction elements while dragging a file */

.filepond--hopper[data-hopper-state=drag-over] > * {
  pointer-events: none;
}

/* capture all hit tests using a hidden layer, this speeds up the event flow */

.filepond--hopper[data-hopper-state=drag-over]::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
}

.filepond--progress-indicator {
  z-index: 103;
}

.filepond--file-action-button {
  z-index: 102;
}

.filepond--file-status {
  z-index: 101;
}

.filepond--file-info {
  z-index: 100;
}

.filepond--item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 0;
  margin: 0.25em;
  will-change: transform, opacity;
  /* item children order */
}

.filepond--item > .filepond--panel {
  z-index: -1;
}

/* has a slight shadow */

.filepond--item > .filepond--panel .filepond--panel-bottom {
  box-shadow: 0 0.0625em 0.125em -0.0625em rgba(0, 0, 0, 0.25);
}

.filepond--item {
  /* drag related */
}

.filepond--item > .filepond--file-wrapper,
.filepond--item > .filepond--panel {
  transition: opacity 0.15s ease-out;
}

.filepond--item[data-drag-state] {
  cursor: -webkit-grab;
  cursor: grab;
}

.filepond--item[data-drag-state] > .filepond--panel {
  transition: box-shadow 0.125s ease-in-out;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.filepond--item[data-drag-state=drag] {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.filepond--item[data-drag-state=drag] > .filepond--panel {
  box-shadow: 0 0.125em 0.3125em rgba(0, 0, 0, 0.325);
}

.filepond--item[data-drag-state]:not([data-drag-state=idle]) {
  z-index: 2;
}

/* states */

.filepond--item-panel {
  background-color: #64605e;
}

[data-filepond-item-state=processing-complete] .filepond--item-panel {
  background-color: #369763;
}

[data-filepond-item-state*=invalid] .filepond--item-panel,
[data-filepond-item-state*=error] .filepond--item-panel {
  background-color: #c44e47;
}

/* style of item panel */

.filepond--item-panel {
  border-radius: 0.5em;
  transition: background-color 0.25s;
}

/* normal mode */

.filepond--list-scroller {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  will-change: transform;
}

/* scroll mode */

.filepond--list-scroller[data-state=overflow] .filepond--list {
  bottom: 0;
  right: 0;
}

.filepond--list-scroller[data-state=overflow] {
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  -webkit-mask: linear-gradient(to bottom, #000 calc(100% - 0.5em), transparent 100%);
  mask: linear-gradient(to bottom, #000 calc(100% - 0.5em), transparent 100%);
}

/* style scrollbar */

.filepond--list-scroller::-webkit-scrollbar {
  background: transparent;
}

.filepond--list-scroller::-webkit-scrollbar:vertical {
  width: 1em;
}

.filepond--list-scroller::-webkit-scrollbar:horizontal {
  height: 0;
}

.filepond--list-scroller::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 99999px;
  border: 0.3125em solid transparent;
  background-clip: content-box;
}

/* hard to overide styles on purpose */

.filepond--list.filepond--list {
  position: absolute;
  top: 0;
  margin: 0;
  padding: 0;
  list-style-type: none;
  /* prevents endless paint calls on filepond--list-scroller */
  will-change: transform;
}

/* used for padding so allowed to be restyled */

.filepond--list {
  left: 0.75em;
  right: 0.75em;
}

.filepond--root[data-style-panel-layout~=integrated] {
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
}

.filepond--root[data-style-panel-layout~=circle] .filepond--panel-root,
.filepond--root[data-style-panel-layout~=integrated] .filepond--panel-root {
  border-radius: 0;
}

.filepond--root[data-style-panel-layout~=circle] .filepond--panel-root > *,
.filepond--root[data-style-panel-layout~=integrated] .filepond--panel-root > * {
  display: none;
}

.filepond--root[data-style-panel-layout~=circle] .filepond--drop-label,
.filepond--root[data-style-panel-layout~=integrated] .filepond--drop-label {
  bottom: 0;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 7;
}

.filepond--root[data-style-panel-layout~=circle],
.filepond--root[data-style-panel-layout~=integrated] {
  /* we're only loading one item, this makes the intro animation a bit nicer */
}

.filepond--root[data-style-panel-layout~=circle] .filepond--item-panel,
.filepond--root[data-style-panel-layout~=integrated] .filepond--item-panel {
  display: none;
}

.filepond--root[data-style-panel-layout~=compact] .filepond--list-scroller,
.filepond--root[data-style-panel-layout~=integrated] .filepond--list-scroller {
  overflow: hidden;
  height: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

.filepond--root[data-style-panel-layout~=compact] .filepond--list,
.filepond--root[data-style-panel-layout~=integrated] .filepond--list {
  left: 0;
  right: 0;
  height: 100%;
}

.filepond--root[data-style-panel-layout~=compact] .filepond--item,
.filepond--root[data-style-panel-layout~=integrated] .filepond--item {
  margin: 0;
}

.filepond--root[data-style-panel-layout~=compact] .filepond--file-wrapper,
.filepond--root[data-style-panel-layout~=integrated] .filepond--file-wrapper {
  height: 100%;
}

.filepond--root[data-style-panel-layout~=compact] .filepond--drop-label,
.filepond--root[data-style-panel-layout~=integrated] .filepond--drop-label {
  z-index: 7;
}

.filepond--root[data-style-panel-layout~=circle] {
  border-radius: 99999rem;
  overflow: hidden;
}

.filepond--root[data-style-panel-layout~=circle] > .filepond--panel {
  border-radius: inherit;
}

.filepond--root[data-style-panel-layout~=circle] > .filepond--panel > * {
  display: none;
}

.filepond--root[data-style-panel-layout~=circle] {
  /* circle cuts of this info, so best to hide it */
}

.filepond--root[data-style-panel-layout~=circle] .filepond--file-info {
  display: none;
}

.filepond--root[data-style-panel-layout~=circle] .filepond--file-status {
  display: none;
}

.filepond--root[data-style-panel-layout~=circle] .filepond--action-edit-item {
  opacity: 1 !important;
  visibility: visible !important;
}

/* dirfty way to fix circular overflow issue on safari 11+ */

.filepond--panel-root {
  border-radius: 0.5em;
  background-color: #f1f0ef;
}

.filepond--panel {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  margin: 0;
  /* defaults to 100% height (fixed height mode) this fixes problem with panel height in IE11 */
  height: 100% !important;
  /* no interaction possible with panel */
  pointer-events: none;
}

.filepond-panel:not([data-scalable=false]) {
  height: auto !important;
}

.filepond--panel[data-scalable=false] > div {
  display: none;
}

.filepond--panel[data-scalable=true] {
  /* this seems to fix Chrome performance issues */
  /* - when box-shadow is enabled */
  /* - when multiple ponds are active on the same page */
  transform-style: preserve-3d;
  /* prevent borders and backgrounds */
  background-color: transparent !important;
  border: none !important;
}

.filepond--panel-top,
.filepond--panel-bottom,
.filepond--panel-center {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
}

.filepond--panel-top,
.filepond--panel-bottom {
  height: 0.5em;
}

.filepond--panel-top {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-bottom: none !important;
  /* fixes tiny transparant line between top and center panel */
}

.filepond--panel-top::after {
  content: "";
  position: absolute;
  height: 2px;
  left: 0;
  right: 0;
  bottom: -1px;
  background-color: inherit;
}

.filepond--panel-center,
.filepond--panel-bottom {
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform-origin: left top;
  transform: translate3d(0, 0.5em, 0);
}

.filepond--panel-bottom {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  border-top: none !important;
  /* fixes tiny transparant line between bottom and center of panel */
}

.filepond--panel-bottom::before {
  content: "";
  position: absolute;
  height: 2px;
  left: 0;
  right: 0;
  top: -1px;
  background-color: inherit;
}

.filepond--panel-center {
  /* the center panel is scaled using scale3d to fit the correct height */
  /* we use 100px instead of 1px as scaling 1px to a huge height is really laggy on chrome */
  height: 100px !important;
  border-top: none !important;
  border-bottom: none !important;
  border-radius: 0 !important;
  /* hide if not transformed, prevents a little flash when the panel is at 100px height while attached for first time */
}

.filepond--panel-center:not([style]) {
  visibility: hidden;
}

.filepond--progress-indicator {
  position: static;
  width: 1.25em;
  height: 1.25em;
  color: #fff;
  /* can't have margins */
  margin: 0;
  /* no interaction possible with progress indicator */
  pointer-events: none;
  /* will be animated */
  will-change: transform, opacity;
}

.filepond--progress-indicator svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  transform-box: fill-box;
  /* should center the animation correctly when zoomed in */
}

.filepond--progress-indicator path {
  fill: none;
  stroke: currentColor;
}

.filepond--list-scroller {
  z-index: 6;
}

.filepond--drop-label {
  z-index: 5;
}

.filepond--drip {
  z-index: 3;
}

.filepond--root > .filepond--panel {
  z-index: 2;
}

.filepond--browser {
  z-index: 1;
}

.filepond--root {
  /* layout*/
  box-sizing: border-box;
  position: relative;
  margin-bottom: 1em;
  /* base font size for whole component */
  font-size: 1rem;
  /* base line height */
  line-height: normal;
  /* up uses default system font family */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  /* will increase font weight a bit on Safari */
  font-weight: 450;
  /* default text alignment */
  text-align: left;
  /* better text rendering on Safari */
  text-rendering: optimizeLegibility;
  /* text direction is ltr for now */
  direction: ltr;
  /* optimize rendering */
  /* https://developer.mozilla.org/en-US/docs/Web/CSS/contain */
  contain: layout style size;
  /* correct box sizing, line-height and positioning on child elements */
}

.filepond--root * {
  box-sizing: inherit;
  line-height: inherit;
}

.filepond--root *:not(text) {
  font-size: inherit;
}

.filepond--root {
  /* block everything */
}

.filepond--root[data-disabled] {
  pointer-events: none;
}

.filepond--root[data-disabled] .filepond--list-scroller {
  pointer-events: all;
}

.filepond--root[data-disabled] .filepond--list {
  pointer-events: none;
}

/**
 * Root element children layout
 */

.filepond--root .filepond--drop-label {
  min-height: 4.75em;
}

.filepond--root .filepond--list-scroller {
  margin-top: 1em;
  margin-bottom: 1em;
}

.filepond--root .filepond--credits {
  position: absolute;
  right: 0;
  opacity: 0.175;
  line-height: 0.85;
  font-size: 11px;
  color: inherit;
  text-decoration: none;
  z-index: 3;
  bottom: -14px;
}

.filepond--root .filepond--credits[style] {
  top: 0;
  bottom: auto;
  margin-top: 14px;
}

/*!
 * FilePondPluginImagePreview 4.6.11
 * Licensed under MIT, https://opensource.org/licenses/MIT/
 * Please visit https://pqina.nl/filepond/ for details.
 */

/* eslint-disable */

.filepond--image-preview-markup {
  position: absolute;
  left: 0;
  top: 0;
}

.filepond--image-preview-wrapper {
  z-index: 2;
}

.filepond--image-preview-overlay {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 5rem;
  max-height: 7rem;
  margin: 0;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.filepond--image-preview-overlay svg {
  width: 100%;
  height: auto;
  color: inherit;
  max-height: inherit;
}

.filepond--image-preview-overlay-idle {
  mix-blend-mode: multiply;
  color: rgba(40, 40, 40, 0.85);
}

.filepond--image-preview-overlay-success {
  mix-blend-mode: normal;
  color: #369763;
}

.filepond--image-preview-overlay-failure {
  mix-blend-mode: normal;
  color: #c44e47;
}

/* disable for Safari as mix-blend-mode causes the overflow:hidden of the parent container to not work */

@supports (-webkit-marquee-repetition: infinite) and ((-o-object-fit: fill) or (object-fit: fill)) {
  .filepond--image-preview-overlay-idle {
    mix-blend-mode: normal;
  }
}

.filepond--image-preview-wrapper {
  /* no interaction */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* have preview fill up all available space */
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 100%;
  margin: 0;
  /* radius is .05em less to prevent the panel background color from shining through */
  border-radius: 0.45em;
  overflow: hidden;
  /* this seems to prevent Chrome from redrawing this layer constantly */
  background: rgba(0, 0, 0, 0.01);
}

.filepond--image-preview {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  display: flex;
  /* this aligns the graphic vertically if the panel is higher than the image */
  align-items: center;
  height: 100%;
  width: 100%;
  pointer-events: none;
  background: #222;
  /* will be animated */
  will-change: transform, opacity;
}

.filepond--image-clip {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  /* transparency indicator (currently only supports grid or basic color) */
}

.filepond--image-clip[data-transparency-indicator=grid] img,
.filepond--image-clip[data-transparency-indicator=grid] canvas {
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg' fill='%23eee'%3E%3Cpath d='M0 0 H50 V50 H0'/%3E%3Cpath d='M50 50 H100 V100 H50'/%3E%3C/svg%3E");
  background-size: 1.25em 1.25em;
}

.filepond--image-bitmap,
.filepond--image-vector {
  position: absolute;
  left: 0;
  top: 0;
  will-change: transform;
}

.filepond--root[data-style-panel-layout~=integrated] .filepond--image-preview-wrapper {
  border-radius: 0;
}

.filepond--root[data-style-panel-layout~=integrated] .filepond--image-preview {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.filepond--root[data-style-panel-layout~=circle] .filepond--image-preview-wrapper {
  border-radius: 99999rem;
}

.filepond--root[data-style-panel-layout~=circle] .filepond--image-preview-overlay {
  top: auto;
  bottom: 0;
  transform: scaleY(-1);
}

.filepond--root[data-style-panel-layout~=circle] .filepond--file .filepond--file-action-button[data-align*=bottom]:not([data-align*=center]) {
  margin-bottom: 0.325em;
}

.filepond--root[data-style-panel-layout~=circle] .filepond--file [data-align*=left] {
  left: calc(50% - 3em);
}

.filepond--root[data-style-panel-layout~=circle] .filepond--file [data-align*=right] {
  right: calc(50% - 3em);
}

.filepond--root[data-style-panel-layout~=circle] .filepond--progress-indicator[data-align*=bottom][data-align*=left],
.filepond--root[data-style-panel-layout~=circle] .filepond--progress-indicator[data-align*=bottom][data-align*=right] {
  margin-bottom: calc(0.325em + 0.1875em);
}

.filepond--root[data-style-panel-layout~=circle] .filepond--progress-indicator[data-align*=bottom][data-align*=center] {
  margin-top: 0;
  margin-bottom: 0.1875em;
  margin-left: 0.1875em;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}

body._lock {
  overflow: hidden;
}

.ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.ibg img {
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

.container {
  max-width: 1170px;
  padding: 0 15px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease 0s;
  line-height: 22px;
  cursor: pointer;
  border-radius: 5px;
}

.btn:hover {
  background-color: #ff8a00;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-btn {
  background-color: #F96A15;
  padding: 15px 20px;
  color: #fff;
  font-size: 21px;
  grid-area: btn;
  align-self: start;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  font-weight: 400;
}

.page {
  flex-grow: 1;
}

.top__background {
  background-image: url(../img/main-desktop1.jpg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 500px;
}

.top__body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr 0.8fr 1fr;
  grid-template-areas: "title image" "info image" "btn image";
}

.top__text {
  display: flex;
  flex-direction: column;
}

.top__image {
  grid-area: image;
  margin: 20px 0 0 0;
  position: relative;
  padding: 0 0 95% 0;
}

.text-top__title {
  font-size: 46px;
  font-weight: 900;
  line-height: 120%;
  grid-area: title;
  align-self: end;
}

.text-top__title span {
  color: #fff;
  padding: 5px 10px;
  border-radius: 30px;
}

.text-top__info {
  font-size: 24px;
  line-height: 140%;
  grid-area: info;
  align-self: center;
  max-width: 500px;
}

.points {
  background-color: #083777;
}

.points__body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 15px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.point {
  text-align: center;
}

.point__icon {
  width: 80px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
}

.point__icon img {
  width: 100%;
}

.point__title {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: inline-flex;
  margin-top: 18px;
  margin-bottom: 18px;
}

.point__text {
  color: #fff;
  font-size: 18px;
  line-height: 120%;
}

.point__text a {
  color: inherit;
  text-decoration: underline;
  display: inline-flex;
  flex-wrap: nowrap;
}

.registration__background {
  background-image: url(../img/form.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

.registration__wrap {
  padding-top: 54px;
  padding-bottom: 54px;
}

.registration__title {
  line-height: 140%;
  max-width: 420px;
  margin-left: auto;
  font-size: 26px;
  margin-bottom: 58px;
}

.registration__title h2 {
  max-width: 420px;
}

.registration__body {
  max-width: 420px;
  width: 100%;
  margin-left: auto;
}

.registration__image {
  flex: 1 1 50%;
}

.registration__image img {
  width: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.form-reg {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.form-reg__input-wrap {
  max-width: 420px;
  width: 100%;
}

.form-reg__input-wrap:not(:last-child) {
  margin-bottom: 18px;
}

.form-reg__input-wrap:last-child {
  margin: 0 0 30px 0;
}

.form-reg__label {
  display: inline-flex;
  margin: 0 0 8px 0;
  font-size: 16px;
}

.form-reg__wrap {
  display: flex;
  flex-direction: column;
}

.form-reg__input {
  border: 1px solid #A1C7E6;
  border-radius: 4px;
  padding: 15px;
  max-width: 348px;
  width: 100%;
}

.form-reg__input::-moz-placeholder {
  color: #CACED4;
  font-size: 16px;
}

.form-reg__input:-ms-input-placeholder {
  color: #CACED4;
  font-size: 16px;
}

.form-reg__input::placeholder {
  color: #CACED4;
  font-size: 16px;
}

.form-reg__warning_message {
  margin: 5px 0 0 0;
  color: #b51f13;
  display: inline-flex;
}

.form-reg__error_message {
  margin: 5px 0 0 0;
  border-color: #D72F4B;
  color: #D72F4B;
  display: inline-flex;
}

.form-reg__valid_message {
  margin: 5px 0 0 0;
  border-color: #41A674;
  display: inline-flex;
}

.form-reg__btn {
  margin: 12px 0 0 0;
  background-color: #F96A15;
  padding: 15px 20px;
  color: #fff;
  font-size: 21px;
  align-self: start;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  font-weight: 400;
}

.questions {
  background-color: #083777;
}

.questions__body {
  padding-top: 54px;
  padding-bottom: 54px;
}

.questions__title {
  color: #fff;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
}

.questions__title:not(:last-child) {
  margin: 0 0 18px 0;
}

.accordion:not(:last-child) {
  margin: 0 0 9px 0;
}

.accordion__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion__title {
  color: #fff;
  font-weight: 500;
  font-size: 22px;
  line-height: 44px;
  margin: 0 15px 0 0;
}

.accordion__arrow {
  border: solid #fff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 5px;
  transform: rotate(45deg);
  transition: transform 0.3s ease 0s;
}

.accordion__arrow-transform {
  transform: rotate(225deg);
  cursor: pointer;
}

.accordion__content {
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  line-height: 140%;
  overflow: hidden;
  max-height: 0;
  transition: all 0.3s ease 0s;
  max-width: 800px;
}

.active .accordion__content {
  max-height: 1000px;
  transition: all 1s;
}

.info__wrap {
  padding-top: 54px;
  padding-bottom: 54px;
  background-image: url(../img/3.png);
  min-height: 400px;
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
}

.info__body {
  display: flex;
  flex-direction: column;
}

.info__bio {
  flex: 1 1 70%;
  margin: 0 0 30px 0;
}

.info__title {
  font-size: 22px;
  font-weight: 700;
}

.info__title:not(:last-child) {
  margin: 0 0 18px 0;
}

.info__text {
  line-height: 120%;
  max-width: 580px;
  font-size: 16px;
}

.info__text:not(:last-child) {
  margin: 0 0 28px 0;
}

.info__text span {
  font-weight: 600;
  font-style: italic;
}

.info__text_a {
  font-style: italic;
}

.info__image {
  flex: 1 1 30%;
}

.info__image img {
  width: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.instruction {
  background-color: #083777;
}

.instruction__wrap {
  padding-top: 54px;
  padding-bottom: 54px;
}

.instruction__wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.instruction__steps {
  display: flex;
  flex-direction: column;
}

.instruction__title {
  color: #fff;
  text-align: center;
  font-size: 28px;
  margin-bottom: 34px;
}

.step {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}

.step__circle {
  position: relative;
  min-width: 50px;
  height: 50px;
  background-color: #57B9E7;
  border-radius: 50%;
}

.step__circle:not(:last-child) {
  margin-right: 30px;
}

.step__number {
  position: absolute;
  color: #fff;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}

.step__text {
  color: #fff;
  max-width: 700px;
  font-size: 18px;
  line-height: 120%;
}

.step__text a {
  color: #fff;
  text-decoration: underline;
}

.step__text__link {
  text-decoration: underline;
}

.form-loss__body {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
}

.form-loss__input-wrap {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 14px;
}

.form-loss__label {
  display: inline-flex;
  margin: 0 0 5px 0;
  font-size: 16px;
}

.form-loss__input {
  border: 1px solid #A1C7E6;
  border-radius: 4px;
  padding: 15px;
  width: 100%;
}

.form-loss__input::-moz-placeholder {
  color: #CACED4;
}

.form-loss__input:-ms-input-placeholder {
  color: #CACED4;
}

.form-loss__input::placeholder {
  color: #CACED4;
}

.form-loss__select {
  display: block;
  width: 100%;
  border: 1px solid #A1C7E6;
  border-radius: 4px;
  color: inherit;
  padding: 15px;
  background-color: inherit;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  background-image: url(../img/dropdown-24.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.form-loss__warning_message {
  margin: 5px 0 0 0;
  color: #b51f13;
  display: inline-flex;
}

.form-loss__error_message {
  margin: 5px 0 0 0;
  border-color: #D72F4B;
  color: #D72F4B;
  display: inline-flex;
}

.form-loss__valid_message {
  margin: 5px 0 0 0;
  border-color: #41A674;
  display: inline-flex;
}

.form-loss__error {
  color: #b51f13;
  margin: 5px 0 0 0;
}

.form-loss__description {
  font-size: 16px;
  line-height: 120%;
  margin-bottom: 34px;
}

.form-loss__btn {
  background-color: #F96A15;
  padding: 15px 20px;
  color: #fff;
  font-size: 21px;
  font-weight: 400;
  width: 100%;
}

.info-form {
  padding-top: 54px;
}

.info-form__body {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px 0;
}

.info-form__text {
  color: inherit;
  font-size: 18px;
  line-height: 120%;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.js-input-date {
  width: 100%;
  background-color: inherit;
}

@media (min-width: 1455px) {
  .top__background {
    height: 80vh;
  }

  .registration__background {
    height: 60vh;
  }

  .info__wrap {
    height: 60vh;
  }
}

@media (min-width: 2000px) {
  .info__wrap {
    height: 70vh;
  }
}

@media (max-width: 1270px) {
  .header__tel {
    font-size: calc(16px + 4 * ((100vw - 320px) / 950));
  }

  .footer__title {
    font-size: calc(12px + 2 * ((100vw - 320px) / 950));
  }

  .footer__title {
    padding-top: calc(27px + 27 * ((100vw - 320px) / 950));
  }

  .footer__title {
    padding-bottom: calc(30px + 24 * ((100vw - 320px) / 950));
  }
}

@media (max-width: 1170px) {
  .main-btn {
    font-size: calc(14px + 7 * ((100vw - 320px) / 850));
  }

  .text-top__title {
    font-size: calc(24px + 22 * ((100vw - 320px) / 850));
  }

  .text-top__info {
    font-size: calc(18px + 6 * ((100vw - 320px) / 850));
  }

  .points__body {
    padding-bottom: calc(20px + 30 * ((100vw - 320px) / 850));
  }

  .point__title {
    font-size: calc(18px + 4 * ((100vw - 320px) / 850));
  }

  .point__title {
    margin-top: calc(14px + 4 * ((100vw - 320px) / 850));
  }

  .point__title {
    margin-bottom: calc(14px + 4 * ((100vw - 320px) / 850));
  }

  .point__text {
    font-size: calc(14px + 4 * ((100vw - 320px) / 850));
  }

  .registration__wrap {
    padding-top: calc(24px + 30 * ((100vw - 320px) / 850));
  }

  .registration__wrap {
    padding-bottom: calc(24px + 30 * ((100vw - 320px) / 850));
  }

  .registration__title {
    font-size: calc(22px + 4 * ((100vw - 320px) / 850));
  }

  .registration__title {
    margin-bottom: calc(12px + 46 * ((100vw - 320px) / 850));
  }

  .form-reg__input-wrap:not(:last-child) {
    margin-bottom: calc(12px + 6 * ((100vw - 320px) / 850));
  }

  .form-reg__label {
    font-size: calc(14px + 2 * ((100vw - 320px) / 850));
  }

  .form-reg__btn {
    font-size: calc(14px + 7 * ((100vw - 320px) / 850));
  }

  .questions__body {
    padding-top: calc(27px + 27 * ((100vw - 320px) / 850));
  }

  .questions__body {
    padding-bottom: calc(27px + 27 * ((100vw - 320px) / 850));
  }

  .questions__title {
    font-size: calc(22px + 10 * ((100vw - 320px) / 850));
  }

  .accordion__title {
    font-size: calc(16px + 6 * ((100vw - 320px) / 850));
  }

  .accordion__title {
    line-height: calc(22px + 22 * ((100vw - 320px) / 850));
  }

  .accordion__content {
    font-size: calc(14px + 4 * ((100vw - 320px) / 850));
  }

  .accordion__content {
    line-height: calc(20px + 4 * ((100vw - 320px) / 850));
  }

  .info__wrap {
    padding-top: calc(24px + 30 * ((100vw - 320px) / 850));
  }

  .info__wrap {
    padding-bottom: calc(24px + 30 * ((100vw - 320px) / 850));
  }

  .info__title {
    font-size: calc(18px + 4 * ((100vw - 320px) / 850));
  }

  .info__text {
    font-size: calc(14px + 2 * ((100vw - 320px) / 850));
  }

  .instruction__wrap {
    padding-top: calc(24px + 30 * ((100vw - 320px) / 850));
  }

  .instruction__wrap {
    padding-bottom: calc(24px + 30 * ((100vw - 320px) / 850));
  }

  .instruction__title {
    font-size: calc(18px + 10 * ((100vw - 320px) / 850));
  }

  .instruction__title {
    margin-bottom: calc(24px + 10 * ((100vw - 320px) / 850));
  }

  .step {
    margin-bottom: calc(18px + 4 * ((100vw - 320px) / 850));
  }

  .step__text {
    font-size: calc(14px + 4 * ((100vw - 320px) / 850));
  }

  .form-loss__label {
    font-size: calc(12px + 4 * ((100vw - 320px) / 850));
  }

  .form-loss__description {
    font-size: calc(12px + 4 * ((100vw - 320px) / 850));
  }

  .form-loss__description {
    margin-bottom: calc(24px + 10 * ((100vw - 320px) / 850));
  }

  .form-loss__btn {
    font-size: calc(14px + 7 * ((100vw - 320px) / 850));
  }

  .info-form {
    padding-top: calc(24px + 30 * ((100vw - 320px) / 850));
  }
}

@media (max-width: 767.98px) {
  .header__burger {
    display: block;
    position: relative;
    width: 30px;
    height: 20px;
    z-index: 3;
    cursor: pointer;
    margin-right: 40px;
  }

  .header__burger span {
    position: absolute;
    background-color: #fff;
    left: 0;
    width: 100%;
    height: 2px;
    top: 9px;
    transition: all 0.3s ease 0s;
  }

  .header__burger::before,
  .header__burger::after {
    content: "";
    background-color: #fff;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    transition: all 0.3s ease 0s;
  }

  .header__burger::before {
    top: 0;
  }

  .header__burger::after {
    bottom: 0;
  }

  .header__burger.active span {
    transform: scale(0);
  }

  .header__burger.active::before {
    transform: rotate(45deg);
    top: 9px;
  }

  .header__burger.active::after {
    transform: rotate(-45deg);
    bottom: 9px;
  }

  .header__flex {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    background: #083777;
    padding: 30px 0 30px 15px;
    transition: all 0.3s ease 0s;
    overflow: auto;
    flex-direction: column;
    align-items: flex-start;
    border-top: 1px solid #fff;
  }

  .header__flex.active {
    top: 80px;
  }

  .header__tel {
    margin: 0 0 10px 0;
  }

  .header__btn {
    background-color: transparent;
    padding: 0;
    font-size: 16px;
  }

  .main-btn {
    z-index: 10;
    grid-area: info;
    align-self: end;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3%;
  }

  .top__body {
    grid-template-columns: 1fr;
    grid-template-rows: 20% 50% 30%;
    grid-template-areas: "title" "image" "info";
  }

  .top__image {
    margin: 0;
    padding: 0 0 70% 0;
  }

  .text-top__info {
    color: #fff;
    z-index: 5;
    margin: 0 -15px;
    max-width: 100%;
    background-color: #083777;
    padding-top: 30px;
    padding-right: 30px;
    padding-bottom: 200px;
    padding-left: 30px;
    position: relative;
  }

  .text-top__info::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 100%;
    top: 0;
    right: -30px;
    background: inherit;
  }

  .points__wrap {
    background-color: #fff;
  }

  .points__body {
    grid-template-columns: auto;
    grid-template-rows: repeat(3, 1fr);
    gap: 30px;
    padding-top: 10px;
  }

  .point {
    text-align: left;
  }

  .point__wrap {
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
  }

  .point__icon {
    width: 50px;
    height: 50px;
    margin-left: 0;
    margin-right: initial;
    margin-right: 20px;
    margin-bottom: 0;
  }

  .point__title {
    color: #1F2229;
  }

  .point__text {
    color: #1F2229;
  }

  .registration__background {
    background-image: none;
    background-color: #083777;
  }

  .registration__title {
    color: #fff;
    display: flex;
    justify-content: flex-start;
    margin-left: 0;
  }

  .registration__body {
    margin-left: 0;
  }

  .registration__image {
    display: none;
  }

  .form-reg {
    flex: 1 1 100%;
  }

  .form-reg__label {
    color: #fff;
  }

  .form-reg__input {
    max-width: 100%;
  }

  .accordion:not(:last-child) {
    margin: 0 0 18px 0;
  }

  .info__wrap {
    background-image: none;
    background-color: #fff;
  }

  .info__image {
    display: none;
  }
}

@media (max-width: 767.98px) and (max-width: 1270px) {
  .header__burger {
    margin-right: calc(15px + 25 * ((100vw - 320px) / 950));
  }
}

@media (max-width: 767.98px) and (max-width: 1170px) {
  .text-top__info {
    padding-bottom: calc(150px + 50 * ((100vw - 320px) / 850));
  }

  .points__body {
    padding-top: calc(75px + -65 * ((100vw - 320px) / 850));
  }

  .point__icon {
    margin-right: calc(10px + 10 * ((100vw - 320px) / 850));
  }
}

@media (max-width: 479.98px) {
  .step {
    flex-direction: column;
  }

  .step__circle {
    margin: 0 0 15px 0;
  }

  .step__text {
    text-align: center;
  }
}

@media (max-width: 455.98px) {
  .questions__title {
    max-width: 318px;
  }
}

@media (max-width: 767.98px) and (min-width: 479.98px) {
  .text-top__info {
    text-align: center;
  }
}

@media not all and (-webkit-min-device-pixel-ratio: 0), not all and (min-resolution: 0.001dpcm) {
@supports (-webkit-appearance: none) and (stroke-color: transparent) {
    .filepond--root[data-style-panel-layout~=circle] {
      will-change: transform;
    }
}
}