/* ___Normalize___ */

@font-face {
  font-family: "Dacia Block";
  src: url("assets/font/DaciaBlock-Light.eot");
  src:
    url("assets/font/DaciaBlock-Light.eot?#iefix") format("embedded-opentype"),
    url("assets/font/DaciaBlock-Light.woff2") format("woff2"),
    url("assets/font/DaciaBlock-Light.woff") format("woff"),
    url("assets/font/DaciaBlock-Light.ttf") format("truetype"),
    url("assets/font/DaciaBlock-Light.svg#DaciaBlock-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Dacia Block";
  src: url("assets/font/DaciaBlock-Bold.eot");
  src:
    url("assets/font/DaciaBlock-Bold.eot?#iefix") format("embedded-opentype"),
    url("assets/font/DaciaBlock-Bold.woff2") format("woff2"),
    url("assets/font/DaciaBlock-Bold.woff") format("woff"),
    url("assets/font/DaciaBlock-Bold.ttf") format("truetype"),
    url("assets/font/DaciaBlock-Bold.svg#DaciaBlock-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Dacia Block";
  src: url("assets/font/DaciaBlock-Regular.eot");
  src:
    url("assets/font/DaciaBlock-Regular.eot?#iefix") format("embedded-opentype"),
    url("assets/font/DaciaBlock-Regular.woff2") format("woff2"),
    url("assets/font/DaciaBlock-Regular.woff") format("woff"),
    url("assets/font/DaciaBlock-Regular.ttf") format("truetype"),
    url("assets/font/DaciaBlock-Regular.svg#DaciaBlock-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "readBeta2 sans-serif";
  font-weight: 400;
  font-display: swap;
  src:
    url("assets/font/read-400.woff2") format("woff2"),
    url("assets/font/read-400.woff") format("woff");
}

@font-face {
  font-family: "readBeta2 sans-serif";
  font-weight: 700;
  font-display: swap;
  src:
    url("assets/font/read-700.woff2") format("woff2"),
    url("assets/font/read-700.woff") format("woff");
}

.content-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  max-width: 600px;
  margin: 0 auto;
}

/* Root Start */

:root {
  --font-family: "readBeta2 sans-serif";
  --color-primary: #646b51;
  --color-secondary: rgb(100, 107, 82);
  --color-dark: #000000;
  --color-white: #ffffff;
  --color-danger: #cc0000;
  --color-warning: #fd7e14;
  --color-info: #d1ecf1;
  --color-success: #15a562;
  --color-success-hover: #198754;
  --color-border: #ccc;
  --color-grey: #f4f4f4;
  --rp-gutter-x: 1.5rem;
  --rp-gutter-y: 0;
}

.color-primary {
  color: var(--color-primary) !important;
}

.color-secondary {
  color: var(--color-secondary) !important;
}

.color-dark {
  color: var(--color-dark) !important;
}

.color-white {
  color: var(--color-white) !important;
}

.color-error {
  color: var(--color-danger) !important;
}

.color-success {
  color: var(--color-success) !important;
}

.color-success-hover {
  color: var(--color-success) !important;
}

.color-border {
  color: var(--color-border) !important;
}

.color-grey {
  color: var(--color-grey) !important;
}

.color-warning {
  color: var(--color-warning) !important;
}

.bg-primary {
  background-color: var(--color-primary) !important;
}

.bg-seconary {
  background-color: var(--color-secondary) !important;
}

.bg-dark {
  background-color: var(--color-dark) !important;
}

.bg-ganger {
  background-color: var(--color-danger) !important;
}

.bg-white {
  background-color: var(--color-white) !important;
}

.bg-border {
  background-color: var(--color-border) !important;
}

.bg-success {
  background-color: var(--color-success) !important;
}

.bg-info {
  background-color: var(--color-info) !important;
}

.shadow-sm {
  box-shadow: 0 0.225rem 0.45rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.border-radius-1 {
  border-radius: 1rem;
}

.border-radius-2 {
  border-radius: 2rem;
}

.border-radius-3 {
  border-radius: 3rem;
}

.border-radius-4 {
  border-radius: 4rem;
}

.border-radius-5 {
  border-radius: 5rem;
}

.shadow-none {
  box-shadow: none !important;
}

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

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

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

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

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

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

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

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

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: var(--color-primary) !important;
}

.border-secondary {
  border-color: var(--color-secondary) !important;
}

.border-success {
  border-color: var(--color-success) !important;
}

.border-info {
  border-color: var(--color-info) !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

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

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  font-family: var(--font-family);
  font-size: 1.6rem;
  color: #000;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  height: 100%;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.6;
}

.shadow-left {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.shadow-right {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  z-index: 1;
}

blockquote {
  border-left: 0.3rem solid var(--color-primary);
  margin-left: 0;
  margin-right: 0;
  padding: 1rem 1.5rem;
}

blockquote *:last-child {
  margin-bottom: 0;
}

blockquote cite {
  font-size: 80%;
  font-style: normal;
  color: rgba(0, 0, 0, 0.5);
}

[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

code {
  background: var(--color-border);
  border-radius: 0.4rem;
  font-size: 86%;
  margin: 0 0.2rem;
  padding: 0.2rem 0.5rem;
  white-space: nowrap;
}

pre {
  background: var(--color-border);
  border-left: 0.3rem solid var(--color-primary);
  overflow-y: hidden;
  padding: 1rem;
}

pre > code {
  border-radius: 0;
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre;
}

address {
  font-style: normal;
  margin-bottom: 1rem;
}

figcaption,
caption {
  font-size: 75%;
}

figure {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
}

summary {
  cursor: pointer;
}

hr {
  border: 0;
  border-top: 0.1rem solid var(--color-border);
  margin: 3rem 0;
}

small,
.small {
  font-size: 70%;
  font-weight: 400;
}

input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="url"],
input[type="week"],
input:not([type]),
textarea,
select {
  -webkit-appearance: none;
  background-color: transparent;
  box-shadow: none;
  box-sizing: inherit;
  padding: 1.25rem 1.25rem;
  font-size: 1.4rem;
  line-height: 1.3;
  font-family: var(--font-family);
  font-weight: 400;
}

input[type="color"]:focus,
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="email"]:focus,
input[type="month"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="url"]:focus,
input[type="week"]:focus,
input:not([type]):focus,
textarea:focus,
select:focus {
  outline: 0;
}

select {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 8" width="30"><path fill="%23000000" d="M0,0l6,8l6-8"/></svg>')
    center right no-repeat;
  padding-right: 3rem;
  width: 100%;
  border: 1px solid #e2e2e2;
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 0 !important;
}

select:focus {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 8" width="30"><path fill="%239b4dca" d="M0,0l6,8l6-8"/></svg>');
}

select[multiple] {
  background: none;
  height: auto;
}

textarea {
  min-height: 6.5rem;
  width: 100%;
  border: 1px solid #e2e2e2;
  color: #777;
  font-weight: 400;
  font-size: 1.6rem;
}

label,
legend {
  display: block;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

label.error {
  color: red;
  position: absolute;
}

fieldset {
  border-width: 0;
  padding: 0;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline;
}

.label-inline {
  display: inline-block;
  font-weight: normal;
  margin-left: 0.5rem;
}

.container-fluid {
  margin: 0 auto;
  padding-right: var(--rp-gutter-x, 0.75rem);
  padding-left: var(--rp-gutter-x, 0.75rem);
  position: relative;
  width: 100%;
}

.container-small {
  max-width: 980px;
  margin: 0 auto;
  padding-right: var(--rp-gutter-x, 0.75rem);
  padding-left: var(--rp-gutter-x, 0.75rem);
  position: relative;
}

.container-large {
  max-width: 90%;
  margin: 0 auto;
  padding-right: var(--rp-gutter-x, 0.75rem);
  padding-left: var(--rp-gutter-x, 0.75rem);
  position: relative;
}

.container {
  margin: 0 auto;
  padding-right: var(--rp-gutter-x, 0.75rem);
  padding-left: var(--rp-gutter-x, 0.75rem);
  position: relative;
  max-width: 1080px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--rp-gutter-y) * -1);
  margin-right: calc(var(--rp-gutter-x) / -2);
  margin-left: calc(var(--rp-gutter-x) / -2);
}

.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--rp-gutter-x) / 2);
  padding-left: calc(var(--rp-gutter-x) / 2);
  margin-top: var(--rp-gutter-y);
}

.column {
  flex: 1 0 0%;
}

.column-auto {
  flex: 0 0 auto;
  width: auto;
}

.column-1 {
  flex: 0 0 auto;
  width: 8.3333333333%;
}

.column-2 {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.column-3 {
  flex: 0 0 auto;
  width: 25%;
}

.column-4 {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.column-5 {
  flex: 0 0 auto;
  width: 41.6666666667%;
}

.column-6 {
  flex: 0 0 auto;
  width: 50%;
}

.column-7 {
  flex: 0 0 auto;
  width: 58.3333333333%;
}

.column-8 {
  flex: 0 0 auto;
  width: 66.6666666667%;
}

.column-9 {
  flex: 0 0 auto;
  width: 75%;
}

.column-10 {
  flex: 0 0 auto;
  width: 83.3333333333%;
}

.column-11 {
  flex: 0 0 auto;
  width: 91.6666666667%;
}

.column-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

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

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

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

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

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

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

.fluid {
  width: 100%;
}

.inline {
  display: inline-block;
}

.center-text {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 2.5rem;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

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

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.user-select-all {
  user-select: all !important;
}

.user-select-auto {
  user-select: auto !important;
}

.user-select-none {
  user-select: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1031;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.text-monospace {
  font-family:
    SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New",
    monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

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

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

.text-uppercase {
  text-transform: uppercase !important;
}

.text-muted {
  color: var(--color-grey);
}

a {
  color: var(--color-white);
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
}

a:focus,
a:hover {
  transition: 0.3s;
  color: var(--color-border);
}

.disclaimers a:hover,
.disclaimers a:focus {
  color: #000;
}

dl,
ol,
ul {
  list-style: none;
  margin-top: 0;
  padding-left: 0;
}

dl dl,
dl ol,
dl ul,
ol dl,
ol ol,
ol ul,
ul dl,
ul ol,
ul ul {
  font-size: 90%;
  margin: 1.5rem 0 1.5rem 3rem;
}

ol {
  list-style: decimal inside;
}

ul {
  list-style: circle inside;
}

.button-primary:hover {
  background: var(--color-dark);
  transition: 0.3s;
  color: #fff;
}

.button-secondary {
  background: var(--color-dark);
  transition: 0.3s;
  color: var(--color-white);
  padding: 15px 30px;
  display: inline-block;
  text-transform: uppercase;
  font-size: 1.5rem;
}

.button-secondary:hover {
  background: var(--color-primary);
  transition: 0.3s;
}

.button,
button,
dd,
dt,
li {
  margin-bottom: 1rem;
}

fieldset,
textarea {
  margin-bottom: 1.5rem;
}

blockquote,
details,
dl,
figure,
form,
ol,
p,
pre,
table,
ul {
  margin-bottom: 2.5rem;
}

table {
  border-spacing: 0;
  display: block;
  overflow-x: auto;
  text-align: left;
  width: 100%;
}

td,
th {
  border-bottom: 0.1rem solid #333;
  padding: 1.2rem 1.5rem;
}

th {
  background: var(--color-primary);
}

b,
strong {
  font-weight: bold;
}

p {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin-bottom: 2rem;
  margin-top: 0;
  font-family: "Dacia Block", serif;
}

h1 {
  font-size: 4.6rem;
}

h2 {
  font-size: 3.6rem;
}

h3 {
  font-size: 2.8rem;
}

h4 {
  font-size: 2.2rem;
}

h5 {
  font-size: 1.8rem;
}

h6 {
  font-size: 1.6rem;
}

img {
  max-width: 100%;
  height: auto;
}

.clearfix:after {
  clear: both;
  content: " ";
  display: table;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid var(--color-grey);
  border-radius: 0.375rem;
  max-width: 100%;
  height: auto;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.isMobile {
  display: none !important;
}

.isDesktop {
  display: block !important;
}

/* header */
.site-header {
  padding: 20px 0;
  position: relative;
  z-index: 2;
}

.site-header .socialmedia {
  position: absolute;
  right: 15px;
  top: -5px;
}

.site-header .socialmedia a {
  display: inline-block;
  margin-right: 20px;
  font-size: 20px;
}

.site-header .socialmedia a:last-of-type {
  margin-right: 0;
}

.site-header .site-branding img {
  max-width: 180px;
  display: block;
}

.hero-section {
  margin-top: -60px;
  position: relative;
  min-height: 670px;
}

.heroimage {
  width: 100%;
}

.main-description {
  position: absolute;
  top: 120px;
  left: 0;
  right: 0;
  z-index: 5;
}

.main-description .content {
  display: flex;
  align-items: center;
}

.main-description .content .left {
  width: 45%;
}

.main-description .content .left h2 {
  font-size: 4rem;
}

.actionbtn {
  margin-bottom: 0;
}

.main-description .content .left h2:after {
  content: "";
  background: #fff;
  height: 2px;
  display: block;
  margin: 0 auto;
  margin-top: 25px;
}

.main-description .content .right {
  width: 65%;
}

.main-description .intro {
  text-align: center;
  font-size: 18px;
}

.feedMenu {
  width: 25%;
  position: sticky;
  top: 60px;
  align-self: flex-start;
}

.feedMenu ul {
  list-style: none;
  padding: 0;
}

.feedMenu li {
  border-bottom: 1px solid #3a95ba;
  font-weight: 700;
  color: #fff;
  padding-bottom: 15px;
}

.feedMenu li a {
  display: flex;
  align-items: center;
}

.feedMenu li a img {
  max-height: 30px;
  display: inline-block;
  margin-right: 15px;
}

.callaction {
  font-weight: 700;
  background: rgb(99, 201, 219);
  background: linear-gradient(
    61deg,
    rgba(99, 201, 219, 1) 0%,
    rgba(50, 139, 180, 1) 50%,
    rgba(8, 105, 152, 1) 81%
  );
  text-shadow: 1px -1px 0 rgba(0, 0, 0, 0.1);
  padding: 10px;
  display: block;
  font-size: 1.4rem;
  text-align: center;
  border-radius: 10px;
  transition: 0.5s;
  max-width: 250px;
  margin: 0 auto;
}

.callaction:hover {
  color: #fff;
  background: rgb(99, 201, 219);
  background: linear-gradient(
    273deg,
    rgba(99, 201, 219, 1) 0%,
    rgba(50, 139, 180, 1) 50%,
    rgba(8, 105, 152, 1) 81%
  );
  transition: 0.5s;
}

.feedArea {
  position: relative;
  z-index: 5;
  margin-bottom: 60px;
}

.feedArea .container {
  max-width: 900px;
}

.prize-section {
  position: relative;
  margin-bottom: 90px;
}

.prize-section .main {
  width: 100%;
}
.prize-section p span {
  font-weight: 700;
  color: #86edff;
}
#leadsForm .fieldsModal p {
  margin-bottom: 15px;
}
.prize-section .logobigster {
  position: absolute;
  z-index: 555;
  top: 15px;
  right: 0;
  left: 0;
  margin: 0 auto;
  max-width: 280px;
}

.prize-section .content {
  position: absolute;
  bottom: 60px;
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
  left: 0;
  right: 0;
}

.final-section .container {
  max-width: 800px;
  text-align: center;
}

.final-section .container h2:after {
  content: "";
  background: #fff;
  height: 2px;
  display: block;
  max-width: 50%;
  margin: 0 auto;
  margin-top: 25px;
}

.FeedInside {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.feedContent {
  background: rgba(0, 42, 85, 0.3);
  width: 60%;
  border-radius: 18px;
}

.feedListing {
  padding: 0 10px;
}

.feedScrolable {
  max-height: 730px;
  overflow-y: scroll;
  overflow-x: hidden;
  margin: 10px;
}

.feedScrolable::-webkit-scrollbar {
  width: 12px;
}

.feedScrolable::-webkit-scrollbar-track {
  background: #086998;
  border-radius: 6px;
}

.feedScrolable::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  border: 3px solid transparent;
  background-clip: content-box; /* Asigură dimensiunea corectă */
}

.feedCard {
  background: rgb(50, 139, 180);
  background: linear-gradient(
    27deg,
    rgba(50, 139, 180, 1) 0%,
    rgba(8, 105, 152, 1) 81%
  );
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}

.feedCard:last-of-type {
  margin-bottom: 0;
}

.feedCard .icon {
  position: relative;
}

.feedCard .icon img,
.feedCard .icon video {
  border-radius: 15px;
  display: block;
  width: 100%;
}

.feedCard .description {
  padding: 15px;
  position: relative;
}

.feedCard .description .text {
  padding-right: 50px;
}

.feedCard .description .action-heart {
  position: absolute;
  display: flex;
  align-items: center;
  right: 15px;
  top: 15px;
  z-index: 15;
  cursor: pointer;
}

.feedCard .vote-heart {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  z-index: 5;
}

.feedCard .description .action-heart .heart {
}

.feedCard .description .action-heart .heart img {
  max-width: 22px;
}

.feedCard .description .action-heart .inactive {
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(0.8);
    opacity: 0;
  }
}

.zoom-in {
  animation: zoomInOut 1s ease-in-out;
}

.heart-nulled {
  position: absolute;
  top: 35%;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -ms-user-select: none;
  max-width: 160px;
}

.heart-nulled img {
  display: inline-block !important;
}

.final-section {
  margin-bottom: 60px;
}

/* site-footer */

.site-footer {
  background: #2175a2;
  padding: 15px;
  position: relative;
  z-index: 10;
}

.site-footer .copy {
  font-size: 12px;
}

.site-footer .footer-menu {
}

.site-footer .footer-menu a {
  margin-right: 30px;
}

.site-footer .footer-menu a:hover {
  color: #fff;
  border-bottom: 1px dotted #fff;
}

.site-footer .footer-menu a:last-of-type {
  margin-right: 0;
}

.site-footer .inside {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

#formModal {
  position: fixed;
  top: 0;
  background: #065e97;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  height: 100dvh;
  background-size: cover;
  display: none;
}

#formModal .content {
}

#formModal .closeModal {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 99;
}

#formModal .headerForm {
  text-align: center;
}

#formModal .headerForm h3 {
  margin-bottom: 0;
}

#formModal .headerForm h3:after {
  content: "";
  background: #fff;
  height: 2px;
  display: block;
  max-width: 50%;
  margin: 0 auto;
  margin-top: 15px;
  margin-bottom: 15px;
}

#formModal .modalForm {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modalForm .content {
  max-width: 600px;
}

#leadsForm {
}

#leadsForm .fieldsModal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 15px;
}

#leadsForm .fieldsModal .select-form {
  width: 100%;
}

#leadsForm .fieldsModal .select-form select {
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #000;
}

#leadsForm .fieldsModal .checkbox-form {
  width: 100%;
  position: relative;
  margin-bottom: 10px;
}

#leadsForm .fieldsModal .checkbox-form label {
  display: flex;
}

#leadsForm .fieldsModal .checkbox-form label a {
  color: #000;
  text-decoration: underline;
}

#leadsForm .fieldsModal .checkbox-form label input {
  margin-bottom: 0;
  margin-top: 2px;
  width: 15px;
  height: 15px;
  margin-right: 5px;
}

#leadsForm .fieldsModal .input-form {
  width: 49%;
}

#leadsForm .fieldsModal .input-form input {
  width: 100%;
}

#leadsForm .fieldsModal .input-form input[type="text"] {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #000;
}

#leadsForm .fieldsModal .input-form input[type="text"]::placeholder {
  color: #000;
}

#leadsForm .button-primary {
  font-weight: 700;
  background: #646b52;
  text-shadow: 1px -1px 0 rgba(0, 0, 0, 0.1);
  padding: 15px;
  display: block;
  font-size: 1.4rem;
  text-align: center;
  transition: 0.5s;
  border: none;
  color: #fff;
  text-transform: uppercase;
  width: 100%;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
}

#leadsForm .button-primary:hover {
  background: #000;
}
.lastSection {
  position: relative;
  margin-bottom: 60px;
}

.lastSection .lastimage {
  display: block;
}

.lastSection .callaction {
}

.rowavantaje {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}
.avantaj {
  position: relative;
  background: linear-gradient(
    61deg,
    rgba(99, 201, 219, 1) 0%,
    rgba(50, 139, 180, 1) 50%,
    rgba(8, 105, 152, 1) 81%
  );
  text-shadow: 1px -1px 0 rgba(0, 0, 0, 0.1);
  border-radius: 18px;
  overflow: hidden;
  width: 32%;
}
.avantaj video {
  max-width: 100%;
  display: block;
}
.avantaj .po {
  display: block;
}
.avantaj .content {
  padding: 20px;
}

.avantaj .content h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.avantaj .content p {
  margin: 0;
}

.avantaj::after {
}

#mainerror {
  font-size: 12px;
  text-align: center;
  color: orange;
}

#leadsForm span.error {
  color: var(--color-warning);
  font-size: 11px;
  display: block;
}
@media only screen and (max-width: 992px) {
  .rowavantaje {
    display: block;
    padding: 15px;
    margin-bottom: 0;
  }
  .avantaj {
    margin-bottom: 30px;
    width: 100%;
  }
  .lastSection {
    margin-bottom: 0;
  }
  .avantaj .content h4 {
    font-size: 16px;
  }
  .avantaj .content {
    padding: 15px;
  }
  .row {
    display: block;
  }

  .column-1,
  .column-2,
  .column-3,
  .column-4,
  .column-5,
  .column-6,
  .column-7,
  .column-8,
  .column-9,
  .column-10,
  .column-11,
  .column-12 {
    width: 100%;
  }

  .offset-1,
  .offset-2,
  .offset-3,
  .offset-4,
  .offset-5,
  .offset-6,
  .offset-7,
  .offset-8,
  .offset-9,
  .offset-10,
  .offset-11,
  .offset-12 {
    margin: 0;
  }

  .container-large {
    max-width: 100%;
  }

  .isMobile {
    display: block !important;
  }

  .isDesktop {
    display: none !important;
  }

  .content {
    padding: 15px;
  }

  .headerForm h3 {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  #leadsForm .fieldsModal .input-form {
    margin-bottom: 10px;
  }

  #leadsForm .fieldsModal .select-form {
    margin-bottom: 10px;
  }

  #leadsForm .fieldsModal .checkbox-form {
    margin-bottom: 10px;
  }

  #leadsForm label span {
    font-size: 12px;
  }

  .descriereform {
    font-size: 1.4rem;
  }

  #formModal .closeModal {
  }

  #formModal .closeModal img {
    width: 25px;
  }

  #formModal .modalForm {
    align-items: start;
    overflow: scroll;
  }

  .final-section {
    z-index: 5;
  }

  .final-section h2 {
    font-size: 2.2rem;
  }

  .site-footer .copy {
    margin-bottom: 10px;
  }

  .site-footer .inside {
    display: block;
  }

  .site-footer .footer-menu {
    font-size: 1.2rem;
  }

  .FeedInside {
    display: block;
  }

  .feedMenu {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 555;
    left: 0;
    right: 0;
    background: rgb(50, 139, 180);
    background: linear-gradient(
      176deg,
      rgba(50, 139, 180, 1) 0%,
      rgba(8, 105, 152, 1) 81%
    );
    padding-bottom: 10px;
    padding-top: 10px;
    top: auto;
  }

  .feedMenu ul {
    margin-bottom: 0;
    z-index: 15;
  }

  .feedMenu li {
    width: 33%;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
    text-align: center;
  }

  .feedMenu li a img {
    margin-right: 0;
    max-height: 22px;
  }

  .feedMenu li a {
    display: block;
    font-size: 12px;
    text-align: center;
  }

  .feedMenu li a span:first-of-type {
    display: block;
  }

  .feedMenu ul {
    display: flex;
  }

  .feedContent {
    width: 100%;
  }

  #formModal .headerForm {
  }

  .main-description {
    top: 90px;
  }

  .main-description .content {
    display: block;
    text-align: center;
  }

  .main-description .content .left {
    width: 100%;
  }

  .main-description .content .left h2 {
    font-size: 3rem;
    line-height: 1.3;
    padding: 0 15px;
  }

  .main-description .content .left p {
    padding: 0 15px;
  }

  .main-description .content .left h2:after {
    margin-top: 10px;
    max-width: 50%;
  }

  .main-description .content .left h2 {
    margin-bottom: 10px;
  }

  .hero-section {
    min-height: 850px;
  }

  .site-header .site-branding img {
    max-width: 120px;
  }

  .site-header .socialmedia {
    right: 0;
    top: -5px;
  }

  .site-header .socialmedia a {
    font-size: 15px;
    margin-right: 15px;
  }

  .site-header .socialmedia {
    top: -10px;
  }

  .main-description .intro {
    font-size: 14px;
  }

  .container {
    padding: 0;
  }

  .site-header {
    padding: 15px;
  }

  .main-description {
    top: 90px;
    text-align: center;
  }

  .main-description p img {
    text-align: center;
    margin: 0 auto;
  }

  .actionbtn {
    display: block;
    text-align: center;
  }

  .actionbtn a {
    text-align: center;
    display: block;
  }

  .main-description .intro {
    padding: 0 15px;
  }

  .feedArea {
    margin-top: 30px;
  }

  .prize-section .logobigster {
    max-width: 120px;
    top: -25px;
  }

  .prize-section .content {
    padding: 0 15px;
  }

  .prize-section .content h5 {
    font-size: 1.4rem;
    margin-bottom: 15px !important;
  }

  .prize-section {
    margin-bottom: 30px;
  }

  .final-section .container h2:after {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .final-section {
    padding: 0 15px;
  }

  .final-section p {
    font-size: 14px;
    margin-bottom: 0;
  }

  .final-section {
    margin-bottom: 30px;
  }

  .site-footer {
    background: #2175a2;
    padding: 15px;
    position: relative;
    padding-bottom: 88px;
  }

  .site-footer {
    z-index: 1;
  }

  .feedArea {
    margin-top: 0;
  }

  .main-description .content .right {
    width: 100%;
  }
  .avantaj .po {
    width: 100%;
  }
  .lastSection .callaction {
    margin-bottom: 30px;
  }
  .avantaj:last-of-type {
    margin-bottom: 10px;
  }
}
