/* ------------------------------------*\
    #RESET
\*------------------------------------ */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
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;
}

/* 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;
}

/* ------------------------------------*\
    #BOX-SIZING
\*------------------------------------ */
html {
  box-sizing: border-box;
}

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

@font-face {
  font-family: "KAUFMANN";
  src: url("../fonts/KAUFMANN.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
.flag {
  display: flex;
  align-items: center;
  gap: 40px;
}
.flag img {
  min-width: 200px;
}

/* ------------------------------------*\
    #PAGE
\*------------------------------------ */
html {
  min-height: 100vh;
  color: #181B29;
  font-family: "Red Hat Display", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  overflow: hidden;
}

address,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
p,
pre,
dl,
ol,
ul,
figure,
hr,
table,
fieldset {
  margin-bottom: 20px;
}

body {
  overflow: hidden;
}

img {
  max-width: 100%;
}

i {
  font-style: italic;
}

strong {
  font-weight: 700;
}

p,
.text-normal {
  font-size: 18px;
  line-height: 22px;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 400;
}

main {
  overflow: hidden;
}

*::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

*::-webkit-scrollbar-track {
  background: #d7d7d7;
  border-radius: 50px;
}

*::-webkit-scrollbar-thumb {
  border-radius: 50px;
  background: #6075b8;
  width: 4.5px;
}

::-webkit-scrollbar-thumb:horizontal {
  background: #6075b8;
  border-radius: 50px;
}

* {
  scrollbar-color: #6075b8 #d7d7d7;
  scrollbar-width: thin;
}

/* ------------------------------------*\
    #HEADINGS
\*------------------------------------ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Red Hat Display", sans-serif;
}
h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a {
  color: inherit;
}

h1,
.h1 {
  font-size: 80px;
  line-height: 1.3;
}

h2,
.h2 {
  font-size: 30px;
  line-height: 34px;
}

h3,
.h3 {
  font-size: 18px;
  line-height: 24px;
}

h4,
.h4 {
  font-size: 14px;
  line-height: 1.1;
  color: #37a8f0;
}

h5,
.h5 {
  font-size: 22px;
  line-height: 26px;
}

h6,
.h6 {
  font-size: 20px;
}

/* ------------------------------------*\
    #link
\*------------------------------------ */
a {
  color: #181B29;
  transition: color 0.15s ease;
}
a:hover {
  color: black;
}
a:focus, a:active {
  outline: none;
  color: black;
}

/* Uncomment and set these variables to customize the grid. */
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}

.row {
  box-sizing: border-box;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
}

.row.reverse {
  flex-direction: row-reverse;
}

.col.reverse {
  flex-direction: column-reverse;
}

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  box-sizing: border-box;
  flex: 0 0 auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

.col-xs {
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  flex-basis: 8.333%;
  max-width: 8.333%;
}

.col-xs-2 {
  flex-basis: 16.667%;
  max-width: 16.667%;
}

.col-xs-3 {
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  flex-basis: 33.333%;
  max-width: 33.333%;
}

.col-xs-5 {
  flex-basis: 41.667%;
  max-width: 41.667%;
}

.col-xs-6 {
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  flex-basis: 58.333%;
  max-width: 58.333%;
}

.col-xs-8 {
  flex-basis: 66.667%;
  max-width: 66.667%;
}

.col-xs-9 {
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  flex-basis: 83.333%;
  max-width: 83.333%;
}

.col-xs-11 {
  flex-basis: 91.667%;
  max-width: 91.667%;
}

.col-xs-12 {
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-1 {
  margin-left: 8.333%;
}

.col-xs-offset-2 {
  margin-left: 16.667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.333%;
}

.col-xs-offset-5 {
  margin-left: 41.667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.333%;
}

.col-xs-offset-8 {
  margin-left: 66.667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.333%;
}

.col-xs-offset-11 {
  margin-left: 91.667%;
}

.start-xs {
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  justify-content: center;
  text-align: center;
}

.end-xs {
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  align-items: flex-start;
}

.middle-xs {
  align-items: center;
}

.bottom-xs {
  align-items: flex-end;
}

.around-xs {
  justify-content: space-around;
}

.between-xs {
  justify-content: space-between;
}

.first-xs {
  order: -1;
}

.last-xs {
  order: 1;
}

@media only screen and (min-width: 48em) {
  .container {
    width: 46rem;
  }
  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .col-sm {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-sm-1 {
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .col-sm-2 {
    flex-basis: 16.667%;
    max-width: 16.667%;
  }
  .col-sm-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .col-sm-5 {
    flex-basis: 41.667%;
    max-width: 41.667%;
  }
  .col-sm-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .col-sm-8 {
    flex-basis: 66.667%;
    max-width: 66.667%;
  }
  .col-sm-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .col-sm-11 {
    flex-basis: 91.667%;
    max-width: 91.667%;
  }
  .col-sm-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-sm-offset-1 {
    margin-left: 8.333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.667%;
  }
  .start-sm {
    justify-content: flex-start;
    text-align: start;
  }
  .center-sm {
    justify-content: center;
    text-align: center;
  }
  .end-sm {
    justify-content: flex-end;
    text-align: end;
  }
  .top-sm {
    align-items: flex-start;
  }
  .middle-sm {
    align-items: center;
  }
  .bottom-sm {
    align-items: flex-end;
  }
  .around-sm {
    justify-content: space-around;
  }
  .between-sm {
    justify-content: space-between;
  }
  .first-sm {
    order: -1;
  }
  .last-sm {
    order: 1;
  }
}
@media only screen and (min-width: 62em) {
  .container {
    width: 61rem;
  }
  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .col-md {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-md-1 {
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .col-md-2 {
    flex-basis: 16.667%;
    max-width: 16.667%;
  }
  .col-md-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .col-md-5 {
    flex-basis: 41.667%;
    max-width: 41.667%;
  }
  .col-md-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .col-md-8 {
    flex-basis: 66.667%;
    max-width: 66.667%;
  }
  .col-md-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .col-md-11 {
    flex-basis: 91.667%;
    max-width: 91.667%;
  }
  .col-md-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-md-offset-1 {
    margin-left: 8.333%;
  }
  .col-md-offset-2 {
    margin-left: 16.667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.333%;
  }
  .col-md-offset-5 {
    margin-left: 41.667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.333%;
  }
  .col-md-offset-8 {
    margin-left: 66.667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.333%;
  }
  .col-md-offset-11 {
    margin-left: 91.667%;
  }
  .start-md {
    justify-content: flex-start;
    text-align: start;
  }
  .center-md {
    justify-content: center;
    text-align: center;
  }
  .end-md {
    justify-content: flex-end;
    text-align: end;
  }
  .top-md {
    align-items: flex-start;
  }
  .middle-md {
    align-items: center;
  }
  .bottom-md {
    align-items: flex-end;
  }
  .around-md {
    justify-content: space-around;
  }
  .between-md {
    justify-content: space-between;
  }
  .first-md {
    order: -1;
  }
  .last-md {
    order: 1;
  }
}
@media only screen and (min-width: 75em) {
  .container {
    width: 71rem;
  }
  .col-lg,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .col-lg {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-lg-1 {
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .col-lg-2 {
    flex-basis: 16.667%;
    max-width: 16.667%;
  }
  .col-lg-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .col-lg-5 {
    flex-basis: 41.667%;
    max-width: 41.667%;
  }
  .col-lg-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .col-lg-8 {
    flex-basis: 66.667%;
    max-width: 66.667%;
  }
  .col-lg-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .col-lg-11 {
    flex-basis: 91.667%;
    max-width: 91.667%;
  }
  .col-lg-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-lg-offset-1 {
    margin-left: 8.333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.667%;
  }
  .start-lg {
    justify-content: flex-start;
    text-align: start;
  }
  .center-lg {
    justify-content: center;
    text-align: center;
  }
  .end-lg {
    justify-content: flex-end;
    text-align: end;
  }
  .top-lg {
    align-items: flex-start;
  }
  .middle-lg {
    align-items: center;
  }
  .bottom-lg {
    align-items: flex-end;
  }
  .around-lg {
    justify-content: space-around;
  }
  .between-lg {
    justify-content: space-between;
  }
  .first-lg {
    order: -1;
  }
  .last-lg {
    order: 1;
  }
}
/*------------------------------------*\
    #FLEXBOX
\*------------------------------------*/
.o-flex {
  display: flex;
}

.o-flex--column {
  flex-direction: column;
}

.o-flex--wrap {
  flex-wrap: wrap;
}

.o-flex--no-wrap {
  flex-wrap: nowrap;
}

.o-flex--center {
  align-items: center;
}

.o-flex--baseline {
  align-items: baseline;
}

.o-flex--stretch {
  align-items: stretch;
}

.o-flex--start {
  align-items: flex-start;
}

.o-flex--end {
  align-items: flex-end;
}

.o-flex--justify {
  justify-content: space-between;
}

.o-flex--justify-center {
  justify-content: center;
}

.o-flex--justify-around {
  justify-content: space-around;
}

.o-flex--right {
  justify-content: flex-end;
}

.o-flex--auto {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
}

.o-flex--grow {
  flex: 1 0 auto;
}

.o-flex--none {
  flex: none;
}

.o-flex--first {
  order: -1;
}

.o-flex--last {
  order: 99999;
}

/* ------------------------------------*\
    #WRAPPER
\*------------------------------------ */
.o-container {
  width: 100%;
  max-width: 100%;
  padding-right: 30px;
  padding-left: 30px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1216px) {
  .o-container {
    max-width: calc(900px + 20px * 2);
    padding-right: 20px;
    padding-left: 20px;
  }
}

/**
* Reset input styles.
*/
.input {
  -webkit-appearance: none;
  /* removing inner shadow on iOS inputs */
  -webkit-font-smoothing: inherit;
  box-sizing: border-box;
  transition: all 0.5s ease;
  background: none;
  border: none;
  color: #181B29;
  width: 100%;
  display: inline-block;
  font-family: "Red Hat Display", sans-serif;
  font-size: 16px;
  padding: 0;
  /* remove browser defaults */
  vertical-align: middle;
  width: 100%;
}
.input:invalid {
  box-shadow: none;
  /* fixes mozilla red outline (shadow) */
}
.input[readonly] {
  cursor: text;
}
.input::-ms-clear {
  display: none;
  /* remove IE clear icon */
}
.input:not(:disabled):focus {
  outline: none;
}

.input--primary {
  height: 54px;
  color: #6075b8;
  display: flex;
  align-items: center;
  background-color: transparent;
  border-bottom: 1;
  padding: 0;
  font-size: 22px;
  border-bottom: 2px solid #7d7d7d;
  font-weight: 600;
  /**
   * @disabled
   */
}
.input--primary:not(:disabled)::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  opacity: 1;
}
.input--primary:not(:disabled)::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 1;
}
.input--primary:not(:disabled):-ms-input-placeholder {
  /* IE 10+ */
  opacity: 1;
}
.input--primary:not(:disabled):-moz-placeholder {
  /* Firefox 18- */
  opacity: 1;
}
.input--primary:disabled {
  opacity: 0.5;
  cursor: not-allowed !important;
}
.input--primary.error{
  border-color: red;
}
span.form-error {
  position: relative;
  margin-top: -15px;
  color: red;
  text-align: center;
  width: 100%;
  display: inline-block;
  margin-bottom: 10px;
}

.input--textarea {
  height: 140px;
  resize: none;
  padding: 10px 20px;
}

.input-box {
  margin-bottom: 30px;
}

.radio-box input {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  z-index: -1;
}
.radio-box label {
  display: flex;
  align-items: center;
}

.radio-box {
  display: flex;
  align-items: center;
  margin: 10px 0;
}
.radio-box .radio-icon {
  width: 25px;
  min-width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #d7d7d7;
  margin-right: 20px;
  position: relative;
  transition: all 0.3s ease;
}
.radio-box .radio-icon:before {
  position: absolute;
  left: 5px;
  top: 5px;
  content: "";
  width: 15px;
  height: 15px;
  background-color: #6075b8;
  border-radius: 50%;
  transition: all 0.3s ease;
  visibility: hidden;
  opacity: 0;
}
.radio-box label {
  font-weight: 400;
  cursor: pointer;
}
.radio-box input:checked + label .radio-icon:before {
  visibility: visible;
  opacity: 1;
}
.radio-box input:disabled + label {
  pointer-events: none;
  opacity: 0.8;
  cursor: not-allowed;
}
.radio-box .radio-text {
  margin-bottom: 0;
  color: #7d7d7d;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
}

.button {
  -webkit-font-smoothing: inherit;
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  color: #181B29;
  transition: background-color 0.2s ease, color 0.2s ease;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
  transition: all 0.2s ease;
  background-color: transparent;
  cursor: pointer;
  font-family: "Red Hat Display", sans-serif;
  text-decoration: none;
  line-height: 1;
}
.button:not(:disabled):active {
  outline: none;
  box-shadow: none !important;
  text-decoration: none;
}
.button:disabled {
  opacity: 0.5;
  cursor: not-allowed !important;
}

.button--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 70px;
  width: auto;
  padding: 0 20px;
  color: #ffffff;
  border-radius: 35px;
  font-size: 20px;
  text-decoration: none;
  background-color: #6075b8;
  min-width: 300px;
  font-weight: 700;
  border: 2px solid #f8f8f8;
}
.button--primary:not(:disabled):hover, .button--primary:not(:disabled):focus, .button--primary:not(:disabled):active {
  color: #ffffff;
  background-color: #475c9e;
}

.hero {
  background-image: url(/public/images/main-bgr.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  height: 100dvh;
  position: relative;
  padding: 66px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero .phone-1,
.hero .phone-2 {
  position: absolute;
  max-height: 100%;
}
.hero .phone-1 {
  bottom: 0;
  left: 0;
}
.hero .phone-2 {
  bottom: 0;
  right: -10px;
}

.content-text {
  flex: 1;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 9;
}
.content-text h1 {
  margin-bottom: 150px;
  color: #fff;
  font-weight: 500;
  letter-spacing: -2%;
}

.hero--pages {
  padding-top: 0;
  justify-content: flex-end;
  align-items: center;
}
.hero--pages .heading {
  position: absolute;
  right: 60px;
  top: 60px;
  font-size: 52px;
  line-height: 1;
  color: #fff;
  font-weight: 500;
  letter-spacing: -2%;
  margin-bottom: 0;
  text-align: right;
}
.hero--pages .hero__logo {
  position: absolute;
  left: 60px;
  top: 60px;
}
.hero--pages .content-mobile {
  position: relative;
  z-index: 999;
  width: 100%;
  max-width: 900px;
  height: 904px;
}
.hero--pages .content-mobile:before {
  background-color: rgba(255, 255, 255, 0.45);
  position: absolute;
  content: "";
  left: 20px;
  top: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 20px);
  border-radius: 100px 100px 0 0;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  z-index: -2;
}
.hero--pages .content-mobile .img-content {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  background-image: url(/public/images/main-phone-img.png);
  width: 100%;
  height: 100%;
  position: absolute;
  padding: 252px 105px 0;
}

.form {
  padding: 30px 70px 0;
  overflow: auto;
  height: 100%;
}
.form .number {
  font-size: 90px;
  font-weight: 900;
  color: #6075b8;
  letter-spacing: 1%;
}
.form.form-rank {
  padding: 30px 40px 0;
}

.card {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 74px;
  border: 2px solid #d9dde9;
  padding: 60px 75px 30px;
  width: 100%;
}

p {
  margin-bottom: 36px;
  font-size: 32px;
  line-height: 42px;
  font-weight: 600;
  letter-spacing: -2%;
  color: #7d7d7d;
}
p.small-text {
  font-size: 22px;
  line-height: 1.2;
}

.rang-list {
  max-height: 58vh;
  /*padding-right: 40px;*/
  padding-left: 40px;
}
.rang-list li {
  height: 54px;
  border-bottom: 1px solid #d7d7d7;
  display: grid;
  grid-template-columns: 58px 1fr 225px;
  align-items: center;
  position: relative;
}
.rang-list li:before {
  position: absolute;
  content: "";
  left: -20px;
  width: calc(100% + 40px);
  border-radius: 16px;
  background-color: #6075b8;
  top: 0;
  height: 100%;
  transition: all 0.3s ease;
  visibility: hidden;
  opacity: 0;
}
.rang-list li.current:before {
  position: absolute;
  content: " ";
  left: -20px;
  width: calc(100% + 40px);
  border-radius: 16px;
  background-color: #6075b8;
  top: 0;
  height: 100%;
  transition: all 0.3s ease;
  color: #fff;
  visibility: visible;
  opacity: 1;
}
.rang-list li.current span,
.rang-list li.current p {
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
}
.rang-list li span,
.rang-list li p {
  font-size: 22px;
  color: #7d7d7d;
  font-weight: 600;
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
}
.rang-list li:hover span,
.rang-list li:hover p {
  color: #fff;
}
.rang-list li:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 1850px) {
  .hero h1 {
    font-size: 42px;
  }
  .hero .phone-1,
  .hero .phone-2 {
    position: absolute;
    max-height: 100%;
    max-width: 50vw;
  }
  .hero--pages .hero__logo {
    width: 187px;
    left: 30px;
    top: 30px;
  }
  .hero--pages .heading {
    font-size: 40px;
    right: 30px;
    top: 30px;
  }
}
@media (max-width: 1766px) {
  .form {
    padding: 0px 0px 0;
  }
}
@media (max-width: 1625px) {
  .hero--pages .content-mobile {
    max-width: 650px;
    height: 674px;
    background-size: contain;
  }
  .hero--pages .content-mobile .img-content {
    padding: 200px 80px 0;
  }
  .hero--pages .button--primary {
    height: 50px;
    border-radius: 25px;
    min-width: 190px;
  }
  p {
    font-size: 22px;
    line-height: 1.2;
  }
  p.small-text {
    margin-bottom: 20px !important;
    font-size: 18px;
  }
  form.form p {
    margin-bottom: 20px;
  }
  form.form .input--primary {
    height: 35px;
    font-size: 18px;
  }
  form.form .input-box {
    margin-bottom: 10px;
  }
  form.form .button--primary {
    margin-top: 20px;
  }
}
@media (max-width: 1250px) {
  .hero .phone-1,
  .hero .phone-2 {
    max-width: 40vw;
  }
  .content-text {
    justify-content: flex-start;
  }
  .content-text h1 {
    margin-bottom: 40px;
    margin-top: 40px;
  }
  .content-text .button--primary {
    height: 50px;
    border-radius: 25px;
    min-width: 190px;
  }
}
@media (max-width: 991px) {
  .hero:not(.hero--pages) .phone-1 {
    left: 50%;
    transform: translate(-40%, 0);
    max-width: 400px;
  }
  .hero:not(.hero--pages) .phone-2 {
    display: none;
  }
  .hero__logo {
    width: 187px;
  }
  .hero--pages .heading {
    font-size: 18px;
    left: 30px;
    right: auto;
    top: 80px;
  }
  .hero--pages .heading br {
    display: none;
  }
  .hero--pages .phone-1 {
    display: none;
  }
  .hero--pages .phone-2 {
    bottom: auto;
    top: 0;
    min-width: 300px;
    right: -100px;
  }
  .hero--pages .content-mobile:before {
    left: 15px;
    top: auto;
    bottom: 0;
    width: calc(100% - 30px);
  }
  .hero--pages .content-mobile .img-content {
    padding: 200px 80px 0;
  }
  .content-text h1 {
    font-size: 35px;
  }
  .card {
    padding: 40px;
    border-radius: 35px;
  }
  .form .number {
    font-size: 30px;
  }
  .form .flag {
    flex-direction: column;
    gap: 20px;
  }
  .form .flag img {
    min-width: 100px;
    width: 100px;
  }
  .form .radio-box .radio-text {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .hero--pages .content-mobile:before {
    left: 0;
    width: 100%;
  }
}
@media (max-width: 500px) {
  .rang-list li{
    grid-template-columns: 25px 110px 165px;
  }
  .hero--pages .content-mobile {
    height: 500px;
  }
  .hero--pages .content-mobile .img-content {
    padding: 150px 35px 10px;
  }
  .rang-list li span {
    font-size: 12px !important;
  }
  .rang-list li p {
    font-size: 12px !important;
  }
  p.mb\+ {
    margin-bottom: 10px !important;
  }
  .form.pt\+,
  form.form,
  .form-rank {
    padding-top: 30px !important;
    background-color: #fff;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    border-radius: 35px;
    border: 2px solid #d9dde9;
  }
  .form.pt\+ .button--primary,
  form.form .button--primary,
  .form-rank .button--primary {
    width: 100%;
    font-size: 18px;
  }
  .form-rank {
    padding: 30px 25px 0 !important;
  }
  .rang-list {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (max-width: 400px) {
  .hero--pages .content-mobile .img-content {
    padding: 150px 20px 10px;
  }
}
.clr-white {
  color: #fff !important;
}

.w-100 {
  width: 100% !important;
}

.u-text-center {
  text-align: center !important;
}

.u-text-right {
  text-align: right !important;
}

/* ------------------------------------*\
    #TRUMPS - SPACING
\*------------------------------------ */
/**
 * Margin and padding helper classes. Use these to tweak layout on a micro
 * level.
 *
 * `.(m|p)(t|r|b|l|h|v)(-|+|0) {}` = margin/padding top/right/bottom/left/horizontal/vertical less/more/none
 */
/**
      * Margin helper classes.
      *
      * Add margins.
      */
.m {
  margin: 20px !important;
}

.mt {
  margin-top: 20px !important;
}

.mr {
  margin-right: 20px !important;
}

.mb {
  margin-bottom: 20px !important;
}

.ml {
  margin-left: 20px !important;
}

.mh {
  margin-right: 20px !important;
  margin-left: 20px !important;
}

.mv {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

/**
      * Add extratiny margins.
      */
.m--- {
  margin: calc(20px / 8) !important;
}

.mt--- {
  margin-top: calc(20px / 8) !important;
}

.mr--- {
  margin-right: calc(20px / 8) !important;
}

.mb--- {
  margin-bottom: calc(20px / 8) !important;
}

.ml--- {
  margin-left: calc(20px / 8) !important;
}

.mh--- {
  margin-right: calc(20px / 8) !important;
  margin-left: calc(20px / 8) !important;
}

.mv--- {
  margin-top: calc(20px / 8) !important;
  margin-bottom: calc(20px / 8) !important;
}

/**
      * Add tiny margins.
      */
.m-- {
  margin: calc(20px / 4) !important;
}

.mt-- {
  margin-top: calc(20px / 4) !important;
}

.mr-- {
  margin-right: calc(20px / 4) !important;
}

.mb-- {
  margin-bottom: calc(20px / 4) !important;
}

.ml-- {
  margin-left: calc(20px / 4) !important;
}

.mh-- {
  margin-right: calc(20px / 4) !important;
  margin-left: calc(20px / 4) !important;
}

.mv-- {
  margin-top: calc(20px / 4) !important;
  margin-bottom: calc(20px / 4) !important;
}

/**
      * Add small margins.
      */
.m- {
  margin: calc(20px / 2) !important;
}

.mt- {
  margin-top: calc(20px / 2) !important;
}

.mr- {
  margin-right: calc(20px / 2) !important;
}

.mb- {
  margin-bottom: calc(20px / 2) !important;
}

.ml- {
  margin-left: calc(20px / 2) !important;
}

.mh- {
  margin-right: calc(20px / 2) !important;
  margin-left: calc(20px / 2) !important;
}

.mv- {
  margin-top: calc(20px / 2) !important;
  margin-bottom: calc(20px / 2) !important;
}

/**
      * Add large margins.
      */
.m\+ {
  margin: calc(20px * 2) !important;
}

.mt\+ {
  margin-top: calc(20px * 2) !important;
}

.mr\+ {
  margin-right: calc(20px * 2) !important;
}

.mb\+ {
  margin-bottom: calc(20px * 2) !important;
}

.ml\+ {
  margin-left: calc(20px * 2) !important;
}

.mh\+ {
  margin-right: calc(20px * 2) !important;
  margin-left: calc(20px * 2) !important;
}

.mv\+ {
  margin-top: calc(20px * 2) !important;
  margin-bottom: calc(20px * 2) !important;
}

/**
      * Add huge margins.
      */
.m\+\+ {
  margin: calc(20px * 4) !important;
}

.mt\+\+ {
  margin-top: calc(20px * 4) !important;
}

.mr\+\+ {
  margin-right: calc(20px * 4) !important;
}

.mb\+\+ {
  margin-bottom: calc(20px * 4) !important;
}

.ml\+\+ {
  margin-left: calc(20px * 4) !important;
}

.mh\+\+ {
  margin-right: calc(20px * 4) !important;
  margin-left: calc(20px * 4) !important;
}

.mv\+\+ {
  margin-top: calc(20px * 4) !important;
  margin-bottom: calc(20px * 4) !important;
}

/**
      * Remove margins.
      */
.m0 {
  margin: 0 !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mr0 {
  margin-right: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.ml0 {
  margin-left: 0 !important;
}

.mh0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mv0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/**
      * Negative margins.
      */
.-m {
  margin: calc(20px * -1) !important;
}

.-mt {
  margin-top: calc(20px * -1) !important;
}

.-mr {
  margin-right: calc(20px * -1) !important;
}

.-mb {
  margin-bottom: calc(20px * -1) !important;
}

.-ml {
  margin-left: calc(20px * -1) !important;
}

.-mh {
  margin-right: calc(20px * -1) !important;
  margin-left: calc(20px * -1) !important;
}

.-mv {
  margin-top: calc(20px * -1) !important;
  margin-bottom: calc(20px * -1) !important;
}

/**
      * Tiny negative margins.
      */
.-m-- {
  margin: calc(calc(20px / 4) * -1) !important;
}

.-mt-- {
  margin-top: calc(calc(20px / 4) * -1) !important;
}

.-mr-- {
  margin-right: calc(calc(20px / 4) * -1) !important;
}

.-mb-- {
  margin-bottom: calc(calc(20px / 4) * -1) !important;
}

.-ml-- {
  margin-left: calc(calc(20px / 4) * -1) !important;
}

.-mh-- {
  margin-right: calc(calc(20px / 4) * -1) !important;
  margin-left: calc(calc(20px / 4) * -1) !important;
}

.-mv-- {
  margin-top: calc(calc(20px / 4) * -1) !important;
  margin-bottom: calc(calc(20px / 4) * -1) !important;
}

/**
      * Small negative margins.
      */
.-m- {
  margin: calc(calc(20px / 2) * -1) !important;
}

.-mt- {
  margin-top: calc(calc(20px / 2) * -1) !important;
}

.-mr- {
  margin-right: calc(calc(20px / 2) * -1) !important;
}

.-mb- {
  margin-bottom: calc(calc(20px / 2) * -1) !important;
}

.-ml- {
  margin-left: calc(calc(20px / 2) * -1) !important;
}

.-mh- {
  margin-right: calc(calc(20px / 2) * -1) !important;
  margin-left: calc(calc(20px / 2) * -1) !important;
}

.-mv- {
  margin-top: calc(calc(20px / 2) * -1) !important;
  margin-bottom: calc(calc(20px / 2) * -1) !important;
}

/**
      * Large negative margins.
      */
.-m\+ {
  margin: calc(calc(20px * 2) * -1) !important;
}

.-mt\+ {
  margin-top: calc(calc(20px * 2) * -1) !important;
}

.-mr\+ {
  margin-right: calc(calc(20px * 2) * -1) !important;
}

.-mb\+ {
  margin-bottom: calc(calc(20px * 2) * -1) !important;
}

.-ml\+ {
  margin-left: calc(calc(20px * 2) * -1) !important;
}

.-mh\+ {
  margin-right: calc(calc(20px * 2) * -1) !important;
  margin-left: calc(calc(20px * 2) * -1) !important;
}

.-mv\+ {
  margin-top: calc(calc(20px * 2) * -1) !important;
  margin-bottom: calc(calc(20px * 2) * -1) !important;
}

/**
      * Huge negative margins.
      */
.-m\+\+ {
  margin: calc(calc(20px * 4) * -1) !important;
}

.-mt\+\+ {
  margin-top: calc(calc(20px * 4) * -1) !important;
}

.-mr\+\+ {
  margin-right: calc(calc(20px * 4) * -1) !important;
}

.-mb\+\+ {
  margin-bottom: calc(calc(20px * 4) * -1) !important;
}

.-ml\+\+ {
  margin-left: calc(calc(20px * 4) * -1) !important;
}

.-mh\+\+ {
  margin-right: calc(calc(20px * 4) * -1) !important;
  margin-left: calc(calc(20px * 4) * -1) !important;
}

.-mv\+\+ {
  margin-top: calc(calc(20px * 4) * -1) !important;
  margin-bottom: calc(calc(20px * 4) * -1) !important;
}

/**
      * Padding helper classes.
      *
      * Add paddings.
      */
.p {
  padding: 20px !important;
}

.pt {
  padding-top: 20px !important;
}

.pr {
  padding-right: 20px !important;
}

.pb {
  padding-bottom: 20px !important;
}

.pl {
  padding-left: 20px !important;
}

.ph {
  padding-right: 20px !important;
  padding-left: 20px !important;
}

.pv {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

/**
      * Add tiny paddings.
      */
.p-- {
  padding: calc(20px / 4) !important;
}

.pt-- {
  padding-top: calc(20px / 4) !important;
}

.pr-- {
  padding-right: calc(20px / 4) !important;
}

.pb-- {
  padding-bottom: calc(20px / 4) !important;
}

.pl-- {
  padding-left: calc(20px / 4) !important;
}

.ph-- {
  padding-right: calc(20px / 4) !important;
  padding-left: calc(20px / 4) !important;
}

.pv-- {
  padding-top: calc(20px / 4) !important;
  padding-bottom: calc(20px / 4) !important;
}

/**
      * Add small paddings.
      */
.p- {
  padding: calc(20px / 2) !important;
}

.pt- {
  padding-top: calc(20px / 2) !important;
}

.pr- {
  padding-right: calc(20px / 2) !important;
}

.pb- {
  padding-bottom: calc(20px / 2) !important;
}

.pl- {
  padding-left: calc(20px / 2) !important;
}

.ph- {
  padding-right: calc(20px / 2) !important;
  padding-left: calc(20px / 2) !important;
}

.pv- {
  padding-top: calc(20px / 2) !important;
  padding-bottom: calc(20px / 2) !important;
}

/**
      * Add large paddings.
      */
.p\+ {
  padding: calc(20px * 2) !important;
}

.pt\+ {
  padding-top: calc(20px * 2) !important;
}

.pr\+ {
  padding-right: calc(20px * 2) !important;
}

.pb\+ {
  padding-bottom: calc(20px * 2) !important;
}

.pl\+ {
  padding-left: calc(20px * 2) !important;
}

.ph\+ {
  padding-right: calc(20px * 2) !important;
  padding-left: calc(20px * 2) !important;
}

.pv\+ {
  padding-top: calc(20px * 2) !important;
  padding-bottom: calc(20px * 2) !important;
}

/**
      * Add huge paddings.
      */
.p\+\+ {
  padding: calc(20px * 4) !important;
}

.pt\+\+ {
  padding-top: calc(20px * 4) !important;
}

.pr\+\+ {
  padding-right: calc(20px * 4) !important;
}

.pb\+\+ {
  padding-bottom: calc(20px * 4) !important;
}

.pl\+\+ {
  padding-left: calc(20px * 4) !important;
}

.ph\+\+ {
  padding-right: calc(20px * 4) !important;
  padding-left: calc(20px * 4) !important;
}

.pv\+\+ {
  padding-top: calc(20px * 4) !important;
  padding-bottom: calc(20px * 4) !important;
}

/**
      * Remove paddings.
      */
.p0 {
  padding: 0 !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pr0 {
  padding-right: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pl0 {
  padding-left: 0 !important;
}

.ph0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.pv0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}/*# sourceMappingURL=app.css.map */

.rules{
  position: absolute;
  bottom: 0;
  width: 700px;
  left: calc(50% - 350px);
  margin: auto;
  font-family: "Red Hat Display", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  backdrop-filter: blur(15px);
  background: rgba(255,255,255, .8);
  padding-left: 10px;

}
.rules a {
  color: #6075B8;
}
.form.form-rank{
  margin-bottom: 20px;
  height: 80%;
}
@media (max-width: 700px) {

  .rules {
    width: 100%;
    left: 0;
    font-family: "Red Hat Display", sans-serif;
    font-size: 14px;
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, .8);
    text-align: center;
    padding-left: 0;
    text-indent: 20px;
  }
}