@charset "UTF-8";
html {
  line-height: 1.15;
  text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  margin: 0.67em 0;
  font-size: 2em;
}

hr {
  overflow: visible;
  height: 0;
  box-sizing: content-box;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  display: table;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  appearance: textfield;
  outline-offset: -2px;
}

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

::-webkit-file-upload-button {
  appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

:root {
  --black: #000;
  --white: #fff;
  --neutral: #334155;
  --neutral-dark: #0f172a;
  --neutral-light1: #64748b;
  --neutral-light2: #94a3b8;
  --neutral-light3: #cbd5e1;
  --neutral-light4: #e2e8f0;
  --neutral-light5: #f1f5f9;
  --neutral-light6: #f8fafc;
  --primary: #006efa;
  --primary-dark: #1d4ed8;
  --primary-light1: #3b82f6;
  --primary-light2: #83b7fa;
  --primary-light3: #e0f0ff;
  --primary-light4: #eff6ff;
  --green: #06963c;
  --green-light1: #00b256;
  --green-light2: #22c55e;
  --green-light3: #4ade80;
  --green-light4: #dcfce7;
  --green-light5: #f0fdf4;
  --orange: #dc6803;
  --orange-light1: #f28900;
  --orange-light2: #fdb022;
  --orange-light3: #fec84b;
  --orange-light4: #fef3c7;
  --orange-light5: #fefce8;
  --red: #be123c;
  --red-light1: #e11d48;
  --red-light2: #f43f5e;
  --red-light3: #fb7185;
  --red-light4: #ffe4e6;
  --red-light5: #fff1f2;
  --teal: #00afcd;
  --teal-light1: #4dc7dc;
  --teal-light2: #99dfeb;
  --teal-light3: #e5f7fa;
  --teal-light4: #f2fbfc;
  --gradient-sky-blue: linear-gradient(87.64deg, #bfdbfe 0%, #93c5fd 100%);
  --gradient-blue-green-light: linear-gradient(87.64deg, #bfdbfe 0%, #bbf7d0 100%);
  --gradient-sea-blue: linear-gradient(87.64deg, #2563eb 0%, #60a5fa 100%);
  --gradient-blue-green-shallow: linear-gradient(87.64deg, #60a5fa 0%, #86efac 100%);
  --gradient-blue-green-deep: linear-gradient(87.64deg, #2563eb 0%, #4ade80 100%);
  --gradient-green-blue-deep: linear-gradient(259.26deg, #006efa 0%, #07cdbe 84.05%);
  --font-family: "Satoshi", sans-serif;
  --body-font-size: 14px;
  --body-line-height: 1.28;
}

.btn-base, .btn-text.success, .btn-text.error, .btn-text, .btn-default.success, .btn-default.error, .btn-default, .btn-primary.success, .btn-primary.error, .btn-primary, .btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  font-weight: 500;
  outline: none;
  touch-action: manipulation;
  transition: all 200ms ease;
  user-select: none;
}
.btn-base:disabled, .btn-text:disabled, .btn-default:disabled, .btn-primary:disabled, .btn:disabled {
  cursor: not-allowed;
}

.row {
  display: flex;
  flex: 0 1 auto;
  flex-flow: row wrap;
  align-items: stretch;
  margin-right: -10px;
  margin-left: -10px;
  gap: 20px 0;
}
.row .col {
  padding: 0 10px;
}
.row .col.s1 {
  width: 8.3333333333%;
  max-width: 8.3333333333%;
  flex-basis: 8.3333333333%;
}
.row .col.s2 {
  width: 16.6666666667%;
  max-width: 16.6666666667%;
  flex-basis: 16.6666666667%;
}
.row .col.s3 {
  width: 25%;
  max-width: 25%;
  flex-basis: 25%;
}
.row .col.s4 {
  width: 33.3333333333%;
  max-width: 33.3333333333%;
  flex-basis: 33.3333333333%;
}
.row .col.s5 {
  width: 41.6666666667%;
  max-width: 41.6666666667%;
  flex-basis: 41.6666666667%;
}
.row .col.s6 {
  width: 50%;
  max-width: 50%;
  flex-basis: 50%;
}
.row .col.s7 {
  width: 58.3333333333%;
  max-width: 58.3333333333%;
  flex-basis: 58.3333333333%;
}
.row .col.s8 {
  width: 66.6666666667%;
  max-width: 66.6666666667%;
  flex-basis: 66.6666666667%;
}
.row .col.s9 {
  width: 75%;
  max-width: 75%;
  flex-basis: 75%;
}
.row .col.s10 {
  width: 83.3333333333%;
  max-width: 83.3333333333%;
  flex-basis: 83.3333333333%;
}
.row .col.s11 {
  width: 91.6666666667%;
  max-width: 91.6666666667%;
  flex-basis: 91.6666666667%;
}
.row .col.s12 {
  width: 100%;
  max-width: 100%;
  flex-basis: 100%;
}
.row .col.offset-s1 {
  margin-left: 8.3333333333%;
}
.row .col.offset-s2 {
  margin-left: 16.6666666667%;
}
.row .col.offset-s3 {
  margin-left: 25%;
}
.row .col.offset-s4 {
  margin-left: 33.3333333333%;
}
.row .col.offset-s5 {
  margin-left: 41.6666666667%;
}
.row .col.offset-s6 {
  margin-left: 50%;
}
.row .col.offset-s7 {
  margin-left: 58.3333333333%;
}
.row .col.offset-s8 {
  margin-left: 66.6666666667%;
}
.row .col.offset-s9 {
  margin-left: 75%;
}
.row .col.offset-s10 {
  margin-left: 83.3333333333%;
}
.row .col.offset-s11 {
  margin-left: 91.6666666667%;
}
.row .col.offset-s12 {
  margin-left: 100%;
}
@media only screen and (min-width : 768px) {
  .row .col.m1 {
    width: 8.3333333333%;
    max-width: 8.3333333333%;
    flex-basis: 8.3333333333%;
  }
  .row .col.m2 {
    width: 16.6666666667%;
    max-width: 16.6666666667%;
    flex-basis: 16.6666666667%;
  }
  .row .col.m3 {
    width: 25%;
    max-width: 25%;
    flex-basis: 25%;
  }
  .row .col.m4 {
    width: 33.3333333333%;
    max-width: 33.3333333333%;
    flex-basis: 33.3333333333%;
  }
  .row .col.m5 {
    width: 41.6666666667%;
    max-width: 41.6666666667%;
    flex-basis: 41.6666666667%;
  }
  .row .col.m6 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .row .col.m7 {
    width: 58.3333333333%;
    max-width: 58.3333333333%;
    flex-basis: 58.3333333333%;
  }
  .row .col.m8 {
    width: 66.6666666667%;
    max-width: 66.6666666667%;
    flex-basis: 66.6666666667%;
  }
  .row .col.m9 {
    width: 75%;
    max-width: 75%;
    flex-basis: 75%;
  }
  .row .col.m10 {
    width: 83.3333333333%;
    max-width: 83.3333333333%;
    flex-basis: 83.3333333333%;
  }
  .row .col.m11 {
    width: 91.6666666667%;
    max-width: 91.6666666667%;
    flex-basis: 91.6666666667%;
  }
  .row .col.m12 {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }
  .row .col.offset-m1 {
    margin-left: 8.3333333333%;
  }
  .row .col.offset-m2 {
    margin-left: 16.6666666667%;
  }
  .row .col.offset-m3 {
    margin-left: 25%;
  }
  .row .col.offset-m4 {
    margin-left: 33.3333333333%;
  }
  .row .col.offset-m5 {
    margin-left: 41.6666666667%;
  }
  .row .col.offset-m6 {
    margin-left: 50%;
  }
  .row .col.offset-m7 {
    margin-left: 58.3333333333%;
  }
  .row .col.offset-m8 {
    margin-left: 66.6666666667%;
  }
  .row .col.offset-m9 {
    margin-left: 75%;
  }
  .row .col.offset-m10 {
    margin-left: 83.3333333333%;
  }
  .row .col.offset-m11 {
    margin-left: 91.6666666667%;
  }
  .row .col.offset-m12 {
    margin-left: 100%;
  }
}
@media only screen and (min-width : 993px) {
  .row .col.l1 {
    width: 8.3333333333%;
    max-width: 8.3333333333%;
    flex-basis: 8.3333333333%;
  }
  .row .col.l2 {
    width: 16.6666666667%;
    max-width: 16.6666666667%;
    flex-basis: 16.6666666667%;
  }
  .row .col.l3 {
    width: 25%;
    max-width: 25%;
    flex-basis: 25%;
  }
  .row .col.l4 {
    width: 33.3333333333%;
    max-width: 33.3333333333%;
    flex-basis: 33.3333333333%;
  }
  .row .col.l5 {
    width: 41.6666666667%;
    max-width: 41.6666666667%;
    flex-basis: 41.6666666667%;
  }
  .row .col.l6 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .row .col.l7 {
    width: 58.3333333333%;
    max-width: 58.3333333333%;
    flex-basis: 58.3333333333%;
  }
  .row .col.l8 {
    width: 66.6666666667%;
    max-width: 66.6666666667%;
    flex-basis: 66.6666666667%;
  }
  .row .col.l9 {
    width: 75%;
    max-width: 75%;
    flex-basis: 75%;
  }
  .row .col.l10 {
    width: 83.3333333333%;
    max-width: 83.3333333333%;
    flex-basis: 83.3333333333%;
  }
  .row .col.l11 {
    width: 91.6666666667%;
    max-width: 91.6666666667%;
    flex-basis: 91.6666666667%;
  }
  .row .col.l12 {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }
  .row .col.offset-l1 {
    margin-left: 8.3333333333%;
  }
  .row .col.offset-l2 {
    margin-left: 16.6666666667%;
  }
  .row .col.offset-l3 {
    margin-left: 25%;
  }
  .row .col.offset-l4 {
    margin-left: 33.3333333333%;
  }
  .row .col.offset-l5 {
    margin-left: 41.6666666667%;
  }
  .row .col.offset-l6 {
    margin-left: 50%;
  }
  .row .col.offset-l7 {
    margin-left: 58.3333333333%;
  }
  .row .col.offset-l8 {
    margin-left: 66.6666666667%;
  }
  .row .col.offset-l9 {
    margin-left: 75%;
  }
  .row .col.offset-l10 {
    margin-left: 83.3333333333%;
  }
  .row .col.offset-l11 {
    margin-left: 91.6666666667%;
  }
  .row .col.offset-l12 {
    margin-left: 100%;
  }
}
@media only screen and (min-width : 1199px) {
  .row .col.xl1 {
    width: 8.3333333333%;
    max-width: 8.3333333333%;
    flex-basis: 8.3333333333%;
  }
  .row .col.xl2 {
    width: 16.6666666667%;
    max-width: 16.6666666667%;
    flex-basis: 16.6666666667%;
  }
  .row .col.xl3 {
    width: 25%;
    max-width: 25%;
    flex-basis: 25%;
  }
  .row .col.xl4 {
    width: 33.3333333333%;
    max-width: 33.3333333333%;
    flex-basis: 33.3333333333%;
  }
  .row .col.xl5 {
    width: 41.6666666667%;
    max-width: 41.6666666667%;
    flex-basis: 41.6666666667%;
  }
  .row .col.xl6 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .row .col.xl7 {
    width: 58.3333333333%;
    max-width: 58.3333333333%;
    flex-basis: 58.3333333333%;
  }
  .row .col.xl8 {
    width: 66.6666666667%;
    max-width: 66.6666666667%;
    flex-basis: 66.6666666667%;
  }
  .row .col.xl9 {
    width: 75%;
    max-width: 75%;
    flex-basis: 75%;
  }
  .row .col.xl10 {
    width: 83.3333333333%;
    max-width: 83.3333333333%;
    flex-basis: 83.3333333333%;
  }
  .row .col.xl11 {
    width: 91.6666666667%;
    max-width: 91.6666666667%;
    flex-basis: 91.6666666667%;
  }
  .row .col.xl12 {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }
  .row .col.offset-xl1 {
    margin-left: 8.3333333333%;
  }
  .row .col.offset-xl2 {
    margin-left: 16.6666666667%;
  }
  .row .col.offset-xl3 {
    margin-left: 25%;
  }
  .row .col.offset-xl4 {
    margin-left: 33.3333333333%;
  }
  .row .col.offset-xl5 {
    margin-left: 41.6666666667%;
  }
  .row .col.offset-xl6 {
    margin-left: 50%;
  }
  .row .col.offset-xl7 {
    margin-left: 58.3333333333%;
  }
  .row .col.offset-xl8 {
    margin-left: 66.6666666667%;
  }
  .row .col.offset-xl9 {
    margin-left: 75%;
  }
  .row .col.offset-xl10 {
    margin-left: 83.3333333333%;
  }
  .row .col.offset-xl11 {
    margin-left: 91.6666666667%;
  }
  .row .col.offset-xl12 {
    margin-left: 100%;
  }
}

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

html {
  height: 100%;
}

body input,
body textarea,
body label {
  font-family: var(--font-family);
}

a {
  color: inherit;
  text-decoration: none;
}

b,
strong {
  font-weight: 600;
}

.container {
  width: 100%;
  max-width: 1220px;
  padding: 0 20px;
  margin: 0 auto;
}

.p-t-0 {
  padding-top: 0px;
}

.p-r-0 {
  padding-right: 0px;
}

.p-l-0 {
  padding-left: 0px;
}

.p-b-0 {
  padding-bottom: 0px;
}

.padding-0 {
  padding: 0px;
}

.p-t-5 {
  padding-top: 5px;
}

.p-r-5 {
  padding-right: 5px;
}

.p-l-5 {
  padding-left: 5px;
}

.p-b-5 {
  padding-bottom: 5px;
}

.padding-5 {
  padding: 5px;
}

.p-t-10 {
  padding-top: 10px;
}

.p-r-10 {
  padding-right: 10px;
}

.p-l-10 {
  padding-left: 10px;
}

.p-b-10 {
  padding-bottom: 10px;
}

.padding-10 {
  padding: 10px;
}

.p-t-15 {
  padding-top: 15px;
}

.p-r-15 {
  padding-right: 15px;
}

.p-l-15 {
  padding-left: 15px;
}

.p-b-15 {
  padding-bottom: 15px;
}

.padding-15 {
  padding: 15px;
}

.p-t-20 {
  padding-top: 20px;
}

.p-r-20 {
  padding-right: 20px;
}

.p-l-20 {
  padding-left: 20px;
}

.p-b-20 {
  padding-bottom: 20px;
}

.padding-20 {
  padding: 20px;
}

.p-t-25 {
  padding-top: 25px;
}

.p-r-25 {
  padding-right: 25px;
}

.p-l-25 {
  padding-left: 25px;
}

.p-b-25 {
  padding-bottom: 25px;
}

.padding-25 {
  padding: 25px;
}

.p-t-30 {
  padding-top: 30px;
}

.p-r-30 {
  padding-right: 30px;
}

.p-l-30 {
  padding-left: 30px;
}

.p-b-30 {
  padding-bottom: 30px;
}

.padding-30 {
  padding: 30px;
}

.m-t-0 {
  margin-top: 0px;
}

.m-r-0 {
  margin-right: 0px;
}

.m-l-0 {
  margin-left: 0px;
}

.m-b-0 {
  margin-bottom: 0px;
}

.m-t-5 {
  margin-top: 5px;
}

.m-r-5 {
  margin-right: 5px;
}

.m-l-5 {
  margin-left: 5px;
}

.m-b-5 {
  margin-bottom: 5px;
}

.m-t-10 {
  margin-top: 10px;
}

.m-r-10 {
  margin-right: 10px;
}

.m-l-10 {
  margin-left: 10px;
}

.m-b-10 {
  margin-bottom: 10px;
}

.m-t-15 {
  margin-top: 15px;
}

.m-r-15 {
  margin-right: 15px;
}

.m-l-15 {
  margin-left: 15px;
}

.m-b-15 {
  margin-bottom: 15px;
}

.m-t-20 {
  margin-top: 20px;
}

.m-r-20 {
  margin-right: 20px;
}

.m-l-20 {
  margin-left: 20px;
}

.m-b-20 {
  margin-bottom: 20px;
}

.m-t-25 {
  margin-top: 25px;
}

.m-r-25 {
  margin-right: 25px;
}

.m-l-25 {
  margin-left: 25px;
}

.m-b-25 {
  margin-bottom: 25px;
}

.m-t-30 {
  margin-top: 30px;
}

.m-r-30 {
  margin-right: 30px;
}

.m-l-30 {
  margin-left: 30px;
}

.m-b-30 {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .container {
    padding: 0 12px;
  }
  .toast-container {
    bottom: 0px !important;
    height: 100px;
  }
}
input::placeholder,
textarea::placeholder {
  color: var(--neutral-light1);
  font-weight: 400;
  opacity: 1;
}
input:input-placeholder,
textarea:input-placeholder {
  color: var(--neutral-light1);
  font-weight: 400;
  opacity: 1;
}
input::input-placeholder,
textarea::input-placeholder {
  color: var(--neutral-light1);
  font-weight: 400;
  opacity: 1;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.loading-icon {
  display: inline-flex;
  width: 14px;
  min-width: 14px;
  height: 14px;
  min-height: 14px;
  border: solid 2px transparent;
  border-radius: 50%;
  border-top-color: var(--white);
  border-left-color: var(--white);
  animation: pace-spinner 400ms linear infinite;
}

@keyframes pace-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.btn-primary {
  min-height: 36px;
  padding: 2px 24px;
  font-size: 14px;
  gap: 15px;
  line-height: 1.57;
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}
.btn-primary.xs {
  min-height: 28px;
  padding: 2px 8px;
  font-size: 12px;
}
.btn-primary.s {
  min-height: 32px;
  padding: 2px 16px;
  font-size: 12px;
}
.btn-primary.l {
  min-height: 40px;
  padding: 2px 24px;
  font-size: 16px;
}
.btn-primary.xl {
  min-height: 44px;
  padding: 2px 24px;
  font-size: 16px;
}
.btn-primary.xxl {
  min-height: 48px;
  padding: 2px 24px;
  font-size: 18px;
}
.btn-primary:hover {
  background: var(--primary-light1);
  border-color: var(--primary-light1);
}
.btn-primary:focus, .btn-primary:active {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}
.btn-primary:disabled {
  background: var(--neutral-light3);
  border-color: var(--neutral-light3);
  color: var(--white);
}
.btn-primary:disabled:focus, .btn-primary:disabled:active {
  box-shadow: none;
}
.btn-primary.error {
  min-height: 36px;
  padding: 2px 24px;
  font-size: 14px;
  gap: 15px;
  line-height: 1.57;
  border-color: var(--red-light1);
  background: var(--red-light1);
  color: var(--white);
}
.btn-primary.error.xs {
  min-height: 28px;
  padding: 2px 8px;
  font-size: 12px;
}
.btn-primary.error.s {
  min-height: 32px;
  padding: 2px 16px;
  font-size: 12px;
}
.btn-primary.error.l {
  min-height: 40px;
  padding: 2px 24px;
  font-size: 16px;
}
.btn-primary.error.xl {
  min-height: 44px;
  padding: 2px 24px;
  font-size: 16px;
}
.btn-primary.error.xxl {
  min-height: 48px;
  padding: 2px 24px;
  font-size: 18px;
}
.btn-primary.error:hover {
  background: var(--red-light2);
  border-color: var(--red-light2);
}
.btn-primary.error:focus, .btn-primary.error:active {
  background: var(--red);
  border-color: var(--red);
}
.btn-primary.error:disabled {
  background: var(--neutral-light3);
  border-color: var(--neutral-light3);
  color: var(--white);
}
.btn-primary.error:disabled:focus, .btn-primary.error:disabled:active {
  box-shadow: none;
}
.btn-primary.success {
  min-height: 36px;
  padding: 2px 24px;
  font-size: 14px;
  gap: 15px;
  line-height: 1.57;
  border-color: var(--green-light1);
  background: var(--green-light1);
  color: var(--white);
}
.btn-primary.success.xs {
  min-height: 28px;
  padding: 2px 8px;
  font-size: 12px;
}
.btn-primary.success.s {
  min-height: 32px;
  padding: 2px 16px;
  font-size: 12px;
}
.btn-primary.success.l {
  min-height: 40px;
  padding: 2px 24px;
  font-size: 16px;
}
.btn-primary.success.xl {
  min-height: 44px;
  padding: 2px 24px;
  font-size: 16px;
}
.btn-primary.success.xxl {
  min-height: 48px;
  padding: 2px 24px;
  font-size: 18px;
}
.btn-primary.success:hover {
  background: var(--green-light2);
  border-color: var(--green-light2);
}
.btn-primary.success:focus, .btn-primary.success:active {
  background: var(--green);
  border-color: var(--green);
}
.btn-primary.success:disabled {
  background: var(--neutral-light3);
  border-color: var(--neutral-light3);
  color: var(--white);
}
.btn-primary.success:disabled:focus, .btn-primary.success:disabled:active {
  box-shadow: none;
}
.btn-primary:focus, .btn-primary:active {
  box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.25);
}

.btn-default {
  min-height: 36px;
  padding: 2px 24px;
  font-size: 14px;
  gap: 15px;
  line-height: 1.57;
  border-color: var(--primary);
  background: transparent;
  color: var(--primary);
}
.btn-default.xs {
  min-height: 28px;
  padding: 2px 8px;
  font-size: 12px;
}
.btn-default.s {
  min-height: 32px;
  padding: 2px 16px;
  font-size: 12px;
}
.btn-default.l {
  min-height: 40px;
  padding: 2px 24px;
  font-size: 16px;
}
.btn-default.xl {
  min-height: 44px;
  padding: 2px 24px;
  font-size: 16px;
}
.btn-default.xxl {
  min-height: 48px;
  padding: 2px 24px;
  font-size: 18px;
}
.btn-default:hover {
  background: var(--primary-light4);
}
.btn-default:focus, .btn-default:active {
  background: var(--primary-light3);
}
.btn-default:disabled {
  background: transparent;
  border-color: var(--neutral-light3);
  color: var(--neutral-light3);
}
.btn-default:disabled:focus, .btn-default:disabled:active {
  box-shadow: none;
}
.btn-default.error {
  min-height: 36px;
  padding: 2px 24px;
  font-size: 14px;
  gap: 15px;
  line-height: 1.57;
  border-color: var(--red-light1);
  background: transparent;
  color: var(--red-light1);
}
.btn-default.error.xs {
  min-height: 28px;
  padding: 2px 8px;
  font-size: 12px;
}
.btn-default.error.s {
  min-height: 32px;
  padding: 2px 16px;
  font-size: 12px;
}
.btn-default.error.l {
  min-height: 40px;
  padding: 2px 24px;
  font-size: 16px;
}
.btn-default.error.xl {
  min-height: 44px;
  padding: 2px 24px;
  font-size: 16px;
}
.btn-default.error.xxl {
  min-height: 48px;
  padding: 2px 24px;
  font-size: 18px;
}
.btn-default.error:hover {
  background: var(--red-light5);
}
.btn-default.error:focus, .btn-default.error:active {
  background: var(--red-light4);
}
.btn-default.error:disabled {
  background: transparent;
  border-color: var(--neutral-light3);
  color: var(--neutral-light3);
}
.btn-default.error:disabled:focus, .btn-default.error:disabled:active {
  box-shadow: none;
}
.btn-default.success {
  min-height: 36px;
  padding: 2px 24px;
  font-size: 14px;
  gap: 15px;
  line-height: 1.57;
  border-color: var(--green-light1);
  background: transparent;
  color: var(--green-light1);
}
.btn-default.success.xs {
  min-height: 28px;
  padding: 2px 8px;
  font-size: 12px;
}
.btn-default.success.s {
  min-height: 32px;
  padding: 2px 16px;
  font-size: 12px;
}
.btn-default.success.l {
  min-height: 40px;
  padding: 2px 24px;
  font-size: 16px;
}
.btn-default.success.xl {
  min-height: 44px;
  padding: 2px 24px;
  font-size: 16px;
}
.btn-default.success.xxl {
  min-height: 48px;
  padding: 2px 24px;
  font-size: 18px;
}
.btn-default.success:hover {
  background: var(--green-light5);
}
.btn-default.success:focus, .btn-default.success:active {
  background: var(--green-light4);
}
.btn-default.success:disabled {
  background: transparent;
  border-color: var(--neutral-light3);
  color: var(--neutral-light3);
}
.btn-default.success:disabled:focus, .btn-default.success:disabled:active {
  box-shadow: none;
}
.btn-default .loading-icon {
  border: solid 2px transparent;
  border-top-color: var(--primary);
  border-left-color: var(--primary);
}

.btn-text {
  min-height: 36px;
  padding: 2px 24px;
  font-size: 14px;
  gap: 15px;
  line-height: 1.57;
  border-color: transparent;
  background: transparent;
  color: var(--primary);
}
.btn-text.xs {
  min-height: 28px;
  padding: 2px 8px;
  font-size: 12px;
}
.btn-text.s {
  min-height: 32px;
  padding: 2px 16px;
  font-size: 12px;
}
.btn-text.l {
  min-height: 40px;
  padding: 2px 24px;
  font-size: 16px;
}
.btn-text.xl {
  min-height: 44px;
  padding: 2px 24px;
  font-size: 16px;
}
.btn-text.xxl {
  min-height: 48px;
  padding: 2px 24px;
  font-size: 18px;
}
.btn-text:hover {
  background: var(--primary-light4);
}
.btn-text:focus, .btn-text:active {
  background: var(--primary-light3);
}
.btn-text:disabled {
  background: transparent;
  border-color: transparent;
  color: var(--neutral-light3);
}
.btn-text:disabled:focus, .btn-text:disabled:active {
  box-shadow: none;
}
.btn-text.error {
  min-height: 36px;
  padding: 2px 24px;
  font-size: 14px;
  gap: 15px;
  line-height: 1.57;
  border-color: transparent;
  background: transparent;
  color: var(--red-light1);
}
.btn-text.error.xs {
  min-height: 28px;
  padding: 2px 8px;
  font-size: 12px;
}
.btn-text.error.s {
  min-height: 32px;
  padding: 2px 16px;
  font-size: 12px;
}
.btn-text.error.l {
  min-height: 40px;
  padding: 2px 24px;
  font-size: 16px;
}
.btn-text.error.xl {
  min-height: 44px;
  padding: 2px 24px;
  font-size: 16px;
}
.btn-text.error.xxl {
  min-height: 48px;
  padding: 2px 24px;
  font-size: 18px;
}
.btn-text.error:hover {
  background: var(--red-light5);
}
.btn-text.error:focus, .btn-text.error:active {
  background: var(--red-light4);
}
.btn-text.error:disabled {
  background: transparent;
  border-color: transparent;
  color: var(--neutral-light3);
}
.btn-text.error:disabled:focus, .btn-text.error:disabled:active {
  box-shadow: none;
}
.btn-text.success {
  min-height: 36px;
  padding: 2px 24px;
  font-size: 14px;
  gap: 15px;
  line-height: 1.57;
  border-color: transparent;
  background: transparent;
  color: var(--green-light1);
}
.btn-text.success.xs {
  min-height: 28px;
  padding: 2px 8px;
  font-size: 12px;
}
.btn-text.success.s {
  min-height: 32px;
  padding: 2px 16px;
  font-size: 12px;
}
.btn-text.success.l {
  min-height: 40px;
  padding: 2px 24px;
  font-size: 16px;
}
.btn-text.success.xl {
  min-height: 44px;
  padding: 2px 24px;
  font-size: 16px;
}
.btn-text.success.xxl {
  min-height: 48px;
  padding: 2px 24px;
  font-size: 18px;
}
.btn-text.success:hover {
  background: var(--green-light5);
}
.btn-text.success:focus, .btn-text.success:active {
  background: var(--green-light4);
}
.btn-text.success:disabled {
  background: transparent;
  border-color: transparent;
  color: var(--neutral-light3);
}
.btn-text.success:disabled:focus, .btn-text.success:disabled:active {
  box-shadow: none;
}
.btn-text .loading-icon {
  border: solid 2px transparent;
  border-top-color: var(--primary);
  border-left-color: var(--primary);
}

.checkboxLabel {
  position: relative;
  padding-left: 24px;
  font-weight: 400;
  cursor: pointer;
}
.checkboxLabel input[type=checkbox] {
  width: 0;
  height: 0;
  visibility: hidden;
  opacity: 0;
}
.checkboxLabel input[type=checkbox]:checked + span:before {
  background: transparent;
  border-color: var(--primary);
}
.checkboxLabel input[type=checkbox]:checked + span:after {
  content: "";
  width: 5px;
  height: 10px;
  border: 2px solid var(--primary);
  transform: rotate(45deg);
  position: absolute;
  left: 6px;
  top: 3px;
  display: block;
  border-top: none;
  border-left: none;
}
.checkboxLabel input[type=checkbox]:disabled + span:before, .checkboxLabel input[type=checkbox]:disabled + span:after {
  opacity: 0.5;
}
.checkboxLabel > span:before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 3px;
  display: inline-block;
  vertical-align: middle;
  border: 1px solid var(--neutral-light2);
  background: none;
  position: absolute;
  left: 0;
  top: 1px;
}

.crumbList {
  display: flex;
  align-items: center;
  margin-left: -20px;
}
.crumbList .backBtn {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 2px 12px;
  border: 1px solid var(--neutral-light4);
  border-radius: 8px;
  margin-right: 20px;
  background: var(--white);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  color: var(--primary);
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
}
.crumbList .backBtn svg {
  display: flex;
  display: block;
  width: 10px;
  height: 10px;
  margin-right: 6px;
}
.crumbList .crumbItem {
  color: var(--neutral-light1);
}

.homeCardWrapper {
  position: relative;
  height: 100%;
  padding: 20px;
  border: 1px solid var(--neutral-light5);
  border-radius: 4px;
  margin-bottom: 20px;
  background: var(--white);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}
.homeCardWrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(259.27deg, #006efa 0%, #07cdbe 83.97%);
  content: "";
  opacity: 0.3;
}
.homeCardWrapper .viewAllBtn {
  min-height: 32px;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 14px;
  gap: 10px;
}

.mapViewCard {
  display: flex;
  flex-direction: column;
  padding: 8px 10px;
  border: 1px dashed var(--primary);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.03);
  font-size: 12px;
  font-weight: 500;
  gap: 8px;
  white-space: nowrap;
}
.mapViewCard > * {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mapViewCard .priceWrap {
  gap: 10px;
}
.mapViewCard .amount {
  font-size: 14px;
  font-weight: 700;
}
.mapViewCard .amount.blur {
  filter: blur(6px);
  opacity: 0.7;
}
.mapViewCard .lastUpdated {
  font-size: 10px;
}
.mapViewCard .change {
  display: flex;
  min-height: 12px;
  align-items: center;
  padding: 2px 5px;
  border-radius: 10px;
  background: var(--neutral-light2);
  color: var(--white);
  font-size: 10px;
}
.mapViewCard .change::before {
  display: block;
  margin-right: 4px;
  content: "";
}
.mapViewCard .change.negative {
  background: var(--red-light2);
}
.mapViewCard .change.negative::before {
  content: "↓";
}
.mapViewCard .change.positive {
  background: var(--green-light1);
}
.mapViewCard .change.positive::before {
  content: "↑";
}
.mapViewCard .change:empty {
  display: none;
}

.loadingCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.loadingCard.shadow {
  box-shadow: 0 2px 4px rgba(16, 24, 40, 0.03);
}
.loadingCard.border {
  border: 1px solid var(--neutral-light5);
  border-radius: 6px;
}
.loadingCard .loadingInfo {
  position: relative;
  animation-duration: 1.25s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  animation-timing-function: linear;
  background: var(--neutral-light5);
  background: linear-gradient(to right, #f4f6fc 8%, #ebeffd 18%, #f4f6fc 33%);
  background-size: 800px 104px;
}

@keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
@media (max-width: 767px) {
  .homeCardWrapper {
    padding: 20px 14px;
  }
}
.alice-carousel {
  --clr-light: var(--primary-light3);
  --clr-base: var(--primary);
  --clr-active: var(--primary);
  --clr-accent: darkred;
  --transition-time: 0.4s;
  --play-btn-color: var(--clr-base);
  --play-btn-size: 32px;
}
.alice-carousel .animated {
  animation-fill-mode: both;
}
.alice-carousel .animated-out {
  z-index: 1;
}
.alice-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.alice-carousel {
  position: relative;
  width: 100%;
  margin: auto;
  direction: ltr;
}
.alice-carousel__wrapper {
  position: relative;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: hidden;
}
.alice-carousel__stage {
  position: relative;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  backface-visibility: hidden;
  transform-style: flat;
  white-space: nowrap;
}
.alice-carousel__stage-item {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  line-height: 0;
  vertical-align: top;
  white-space: normal;
}
.alice-carousel__stage-item * {
  line-height: initial;
}
.alice-carousel__stage-item.__hidden {
  overflow: hidden;
  opacity: 0;
}
.alice-carousel__prev-btn, .alice-carousel__next-btn {
  display: inline-block;
  width: 50%;
  box-sizing: border-box;
  padding: 10px 5px;
}
.alice-carousel__prev-btn [data-area]::after, .alice-carousel__next-btn [data-area]::after {
  position: relative;
  content: attr(data-area);
  text-transform: capitalize;
}
.alice-carousel__prev-btn {
  text-align: right;
}
.alice-carousel__prev-btn-item, .alice-carousel__next-btn-item {
  display: inline-block;
  padding: 5px;
  margin: 0;
  color: var(--clr-base);
  cursor: pointer;
}
.alice-carousel__prev-btn-item:hover, .alice-carousel__next-btn-item:hover {
  color: var(--clr-accent);
}
.alice-carousel__prev-btn-item.__inactive, .alice-carousel__next-btn-item.__inactive {
  opacity: 0.4;
  pointer-events: none;
}
.alice-carousel__play-btn {
  position: absolute;
  top: 30px;
  left: 20px;
  display: inline-block;
}
.alice-carousel__play-btn:hover {
  cursor: pointer;
}
.alice-carousel__play-btn-wrapper {
  position: relative;
  width: var(--play-btn-size);
  height: var(--play-btn-size);
  padding: 10px;
  border-radius: 50%;
}
.alice-carousel__play-btn-item {
  position: absolute;
  width: var(--play-btn-size);
  height: var(--play-btn-size);
  border: 0;
  background: transparent;
  cursor: pointer;
  outline: none;
}
.alice-carousel__play-btn-item::before, .alice-carousel__play-btn-item::after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-width: 8px 0 8px 15px;
  border-style: solid;
  border-color: transparent;
  border-left-color: var(--play-btn-color);
  content: "";
  pointer-events: none;
  transition: all var(--transition-time) linear;
}
.alice-carousel__play-btn-item::before {
  left: 5px;
  height: 14px;
}
.alice-carousel__play-btn-item::after {
  top: 7px;
  left: 18px;
}
.alice-carousel__play-btn-item.__pause::before, .alice-carousel__play-btn-item.__pause::after {
  height: 30px;
  border-width: 0 0 0 10px;
}
.alice-carousel__play-btn-item.__pause::after {
  top: 0;
  left: 18px;
}
.alice-carousel__dots {
  padding: 0;
  margin: 30px 3px 5px;
  list-style: none;
  text-align: center;
}
.alice-carousel__dots > li {
  display: inline-block;
}
.alice-carousel__dots-item:not(.__custom) {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--clr-light);
  cursor: pointer;
}
.alice-carousel__dots-item:not(.__custom):not(:last-child) {
  margin-right: 10px;
}
.alice-carousel__dots-item:not(.__custom):hover, .alice-carousel__dots-item:not(.__custom).__active {
  background-color: var(--clr-base);
}
.alice-carousel__slide-info {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: rgb(var(--clr-light) 0.6);
  color: var(--clr-base);
}
.alice-carousel__slide-info-item {
  line-height: 0;
  vertical-align: middle;
}

#app-body {
  /* Font Sizes
  ------------------------------------
  */
}
#app-body .block, #app-body .show {
  display: block !important;
}
#app-body .hide {
  display: none !important;
}
#app-body .fs-10 {
  font-size: 10px !important;
}
#app-body .fs-11 {
  font-size: 11px !important;
}
#app-body .fs-12 {
  font-size: 12px !important;
}
#app-body .fs-13 {
  font-size: 13px !important;
}
#app-body .fs-14 {
  font-size: 14px !important;
}
#app-body .fs-15 {
  font-size: 15px !important;
}
#app-body .fs-16 {
  font-size: 16px !important;
}
#app-body .fs-18 {
  font-size: 18px !important;
}
#app-body .fs-20 {
  font-size: 20px !important;
}
#app-body .fs-24 {
  font-size: 24px !important;
}
#app-body .fs-25 {
  font-size: 25px !important;
}
#app-body .fs-30 {
  font-size: 30px !important;
}
#app-body .fs-36 {
  font-size: 36px !important;
}
#app-body .bold {
  font-weight: 600 !important;
}
#app-body .pointer {
  cursor: pointer !important;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/satoshi-variable.woff2") format("woff2"), url("../fonts/satoshi-variable.woff") format("woff"), url("../fonts/satoshi-variable.ttf") format("truetype");
  font-weight: 300 900;
  font-display: swap;
  font-style: normal;
}
#app-body .flex {
  display: flex;
}
#app-body .inline-flex {
  display: inline-flex;
}
#app-body .flex.dir-col,
#app-body .inline-flex.dir-col {
  flex-direction: column;
}
#app-body .flex.col-rev,
#app-body .inline-flex.col-rev {
  flex-direction: column-reverse;
}
#app-body .flex.aln-start,
#app-body .inline-flex.aln-start {
  align-items: flex-start;
}
#app-body .flex.aln-center,
#app-body .inline-flex.aln-center {
  align-items: center;
}
#app-body .flex.aln-end,
#app-body .inline-flex.aln-end {
  align-items: flex-end;
}
#app-body .flex.aln-baseline,
#app-body .inline-flex.aln-baseline {
  align-items: baseline;
}
#app-body .flex.jfy-center,
#app-body .inline-flex.jfy-center {
  justify-content: center;
}
#app-body .flex.jfy-sp-around,
#app-body .inline-flex.jfy-sp-around {
  justify-content: space-around;
}
#app-body .flex.jfy-sp-btw,
#app-body .inline-flex.jfy-sp-btw {
  justify-content: space-between;
}
#app-body .flex.jfy-sp-even,
#app-body .inline-flex.jfy-sp-even {
  justify-content: space-evenly;
}
#app-body .flex.jfy-end,
#app-body .inline-flex.jfy-end {
  justify-content: flex-end;
}
#app-body .flex-one,
#app-body .inline-flex-one {
  flex: 1;
}
#app-body .flex.wrap,
#app-body .inline-flex.wrap {
  flex-wrap: wrap;
}
@media only screen and (max-width: 820px) {
  #app-body .flex.colm,
  #app-body .inline-flex.colm {
    flex-direction: column;
  }
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  color: #334155;
  font-family: "Satoshi", sans-serif;
  scroll-behavior: smooth;
  font-size: 14px;
}
body.openMenuBody {
  overflow: hidden;
}

main {
  display: block;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

a {
  background-color: transparent;
  text-decoration: none;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #006EFA;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
  max-width: 100%;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 0;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

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

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

figure {
  line-height: 0;
}

template {
  display: none;
}

.heading {
  margin: 0;
}

h1 {
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  color: #0F172A;
}

h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: #0F172A;
}
@media (min-width: 993px) {
  h2 {
    font-size: 30px;
    line-height: 1.5;
  }
}

h3 {
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: #0F172A;
}

p {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: #334155;
}

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

[hidden] {
  display: none;
}

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

.btn {
  border-radius: 6px;
  height: 50px;
  min-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 50px;
  font-size: 18px;
  font-weight: 500;
  padding: 0 25px;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.btn:not(:first-child) {
  margin-left: 15px;
}
.btn.btn-default {
  color: #0070d2;
  background-color: #fff;
  border-color: #a8b7c7;
}
.btn.btn-primary {
  background: #006EFA;
  border: 1px solid #006EFA;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
  color: #fff;
}
.btn.btn-primary:hover {
  background-color: #198cf0;
  border-color: #198cf0;
  box-shadow: 0 1px 0 0 rgba(171, 181, 189, 0.5), 0 3px 6px 0 rgba(0, 0, 0, 0.2);
}
.btn.btn-secondary {
  background: #FFFFFF;
  border: 1px solid #006EFA;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
  color: #006EFA;
}
.btn.btn-secondary:hover {
  border-color: #198cf0;
  box-shadow: 0 1px 0 0 rgba(171, 181, 189, 0.5), 0 3px 6px 0 rgba(0, 0, 0, 0.2);
}
.btn.btn-full {
  width: 100%;
}
.btn.btn-link {
  background: transparent;
  border: 0;
  color: #006EFA;
  padding: 0;
  height: auto;
}
.btn.btn-whatsapp {
  background: #F0FDF4;
  border: 1px solid #4ADE80;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
  color: #22C55E;
  display: flex;
  align-items: center;
  gap: 0 15px;
}
.btn.btn-whatsapp i {
  display: flex;
  align-items: center;
}

/** Title style **/
.titleBlock {
  margin-bottom: 20px;
}
@media (min-width: 993px) {
  .titleBlock {
    margin-bottom: 30px;
  }
}
.titleBlock .h1 {
  font-size: 24px;
  text-align: left;
  margin: 0;
  line-height: 32px;
  letter-spacing: -0.02em;
}
@media (min-width: 993px) {
  .titleBlock .h1 {
    line-height: 60px;
    font-size: 40px;
  }
}
.titleBlock .h3 {
  font-size: 18px;
}

/**
* Layout CSS
*/
.container-fluid {
  max-width: 1330px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0 16px;
}

.container {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0 16px;
}

@media (max-width: 767px) {
  #app {
    width: 100%;
    overflow: hidden;
  }
  .slick-arrow {
    bottom: -30px;
    top: auto;
    right: 50%;
  }
  .slick-arrow.slick-prev {
    margin-right: 10px;
  }
  .slick-arrow.slick-next {
    margin-right: -55px;
  }
}
.p-t-0 {
  padding-top: 0 !important;
}

.m-t-20 {
  margin-top: 20px;
}

.m-b-30 {
  margin-bottom: 30px;
}

.pageContainer {
  padding-top: 50px;
  background: #FFF;
}
@media (min-width: 768px) {
  .pageContainer {
    background: #EBEBEB;
    padding-top: 80px;
  }
}

.bannerContainer {
  background-color: #3B3B3B;
  padding: 70px 0 0 0;
  margin-bottom: 40px;
  position: relative;
}
@media (max-width: 768px) {
  .bannerContainer {
    margin-bottom: 0;
    padding: 50px 0 40px 0;
  }
  .bannerContainer.homeBanner {
    padding: 85px 0 16px 0;
  }
}
.bannerContainer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: #EBEBEB;
  z-index: 0;
}
@media (max-width: 768px) {
  .bannerContainer::after {
    display: none;
  }
}
.bannerContainer .bannerBlock {
  position: relative;
  z-index: 1;
}
.bannerContainer .bannerBlock .imageBlock {
  margin: 0;
  border-radius: 15px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .bannerContainer .bannerBlock .imageBlock {
    height: 328px;
  }
  .bannerContainer .bannerBlock .imageBlock img {
    max-width: none;
    height: 100%;
  }
}
.bannerContainer .bannerBlock .imageBlock.innerBanner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: auto;
}
.bannerContainer .bannerBlock .bannerContent {
  position: absolute;
  top: -50px;
  left: 0;
}
@media (min-width: 992px) {
  .bannerContainer .bannerBlock .bannerContent {
    top: -20px;
  }
}
.bannerContainer .bannerBlock .bannerContent .titleBlock {
  margin: 0;
}
.bannerContainer .bannerBlock .bannerContent .titleBlock .heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.bannerContainer .bannerBlock .bannerContent .titleBlock .heading.showInMobile {
  display: flex !important;
}
@media (min-width: 768px) {
  .bannerContainer .bannerBlock .bannerContent .titleBlock .heading.showInMobile {
    display: none !important;
  }
}
.bannerContainer .bannerBlock .bannerContent .titleBlock .heading.hideInMobile {
  display: none !important;
}
@media (min-width: 768px) {
  .bannerContainer .bannerBlock .bannerContent .titleBlock .heading.hideInMobile {
    display: flex !important;
  }
}
.bannerContainer .bannerBlock .bannerContent .titleBlock .heading .headingText {
  color: #FFFFFF;
  background-color: #3B3B3B;
  border-radius: 0 0 15px 0;
  font-size: 28px;
  line-height: 40px;
  font-weight: 700;
  padding: 0px 30px 10px 0;
  position: relative;
}
.bannerContainer .bannerBlock .bannerContent .titleBlock .heading .headingText:after {
  content: "";
  background: transparent;
  height: 20px;
  width: 20px;
  position: absolute;
  top: -20px;
  right: 10px;
  border-radius: 15px 0px 0px 0px;
  box-shadow: -5px -5px 0px 0 #3b3b3b;
  transform: translate(30px, 20px);
}
.bannerContainer .bannerBlock .bannerContent .titleBlock .heading .headingText:first-child::after {
  top: 0;
}
.bannerContainer .bannerBlock .bannerContent .titleBlock .heading .headingText:nth-child(3):before {
  content: "";
  background: transparent;
  height: 20px;
  width: 20px;
  position: absolute;
  bottom: 0;
  left: -30px;
  border-radius: 15px 0px 0px 0px;
  box-shadow: -5px -5px 0px 0 #3b3b3b;
  transform: translate(30px, 20px);
}
@media (min-width: 992px) {
  .bannerContainer .bannerBlock .bannerContent .titleBlock .heading .headingText {
    font-size: 56px;
    line-height: 84px;
    padding: 0px 50px 15px 0;
  }
}
.bannerContainer .bannerBlock .bannerContent.innerBanner {
  top: -10px;
}
.bannerContainer .bannerBlock .bannerContent.innerBanner .titleBlock .heading .headingText:first-child::after {
  top: -10px;
}
.bannerContainer .bannerBlock .bannerContent.innerBanner .titleBlock .heading .headingText:first-child:before {
  content: "";
  background: transparent;
  height: 20px;
  width: 20px;
  position: absolute;
  bottom: 0;
  left: -30px;
  border-radius: 15px 0px 0px 0px;
  box-shadow: -5px -5px 0px 0 #3b3b3b;
  transform: translate(30px, 20px);
}
.bannerContainer .bannerBlock .bannerContent .btnBlock {
  padding: 10px 50px 40px 0;
  background-color: #3B3B3B;
  border-radius: 0 0 15px 0;
  display: inline-block;
  position: relative;
}
.bannerContainer .bannerBlock .bannerContent .btnBlock:after {
  content: "";
  background: transparent;
  height: 20px;
  width: 20px;
  position: absolute;
  top: -20px;
  right: 10px;
  border-radius: 15px 0px 0px 0px;
  box-shadow: -5px -5px 0px 0 #3b3b3b;
  transform: translate(30px, 20px);
}
.bannerContainer .bannerBlock .bannerContent .btnBlock:before {
  content: "";
  background: transparent;
  height: 20px;
  width: 20px;
  position: absolute;
  bottom: 0;
  left: -30px;
  border-radius: 15px 0px 0px 0px;
  box-shadow: -5px -5px 0px 0 #3b3b3b;
  transform: translate(30px, 20px);
}
.bannerContainer .bannerBlock .bannerContent .btnBlock.showInMobile {
  display: flex !important;
}
@media (min-width: 767px) {
  .bannerContainer .bannerBlock .bannerContent .btnBlock.showInMobile {
    display: none !important;
  }
}
.bannerContainer .bannerBlock .bannerContent .btnBlock.hideInMobile {
  display: none !important;
}
@media (min-width: 767px) {
  .bannerContainer .bannerBlock .bannerContent .btnBlock.hideInMobile {
    display: inline-block !important;
  }
}
.bannerContainer .bannerBlock .bannerContent .btnBlock .btn {
  border-radius: 4px;
  border: 1px solid #FFF;
  background: #FFF;
  box-shadow: 0px 32px 64px -12px rgba(16, 24, 40, 0.14);
  display: flex;
  gap: 0 10px;
  width: 100%;
  color: #000;
}
@media (min-width: 767px) {
  .bannerContainer .bannerBlock .bannerContent .btnBlock .btn {
    width: 328px;
  }
}
.bannerContainer .bannerBlock .btnBlock {
  padding: 20px 0px 20px 0;
  background-color: #3B3B3B;
  border-radius: 0 0 15px 0;
  display: flex;
  justify-content: center;
}
.bannerContainer .bannerBlock .btnBlock.showInMobile {
  display: flex !important;
}
@media (min-width: 767px) {
  .bannerContainer .bannerBlock .btnBlock.showInMobile {
    display: none !important;
  }
}
.bannerContainer .bannerBlock .btnBlock.hideInMobile {
  display: none !important;
}
@media (min-width: 767px) {
  .bannerContainer .bannerBlock .btnBlock.hideInMobile {
    display: block !important;
  }
}
.bannerContainer .bannerBlock .btnBlock .btn {
  border-radius: 4px;
  border: 1px solid #FFF;
  background: #FFF;
  box-shadow: 0px 32px 64px -12px rgba(16, 24, 40, 0.14);
  display: flex;
  gap: 0 10px;
  width: 100%;
  height: 40px;
  color: #000;
}
.bannerContainer .bannerBlock .btnBlock .btn:hover {
  background-color: #E8BF69;
  border: 1px solid #E8BF69;
}
@media (min-width: 767px) {
  .bannerContainer .bannerBlock .btnBlock .btn {
    width: 328px;
    height: 50px;
  }
}
.bannerContainer .bannerBlock .textBlock {
  position: relative;
  padding: 60px 14px 14px;
}
@media (min-width: 767px) {
  .bannerContainer .bannerBlock .textBlock {
    padding: 40px;
  }
}
.bannerContainer .bannerBlock .textBlock .text {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
}
@media (min-width: 767px) {
  .bannerContainer .bannerBlock .textBlock .text {
    font-size: 18px;
    line-height: 28px;
  }
}

.headerContainer {
  background-color: #3B3B3B;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.headerContainer .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
}
@media (max-width: 993px) {
  .headerContainer .header {
    justify-content: center;
    padding: 10px 0;
  }
}
.headerContainer .header .menuBtn {
  background: transparent;
  border: 0;
  box-shadow: none;
  position: absolute;
  left: 16px;
  top: 9px;
  padding: 0;
}
@media (min-width: 992px) {
  .headerContainer .header .menuBtn {
    display: none;
  }
}
.headerContainer .header .menuBtn:focus, .headerContainer .header .menuBtn:focus-visible {
  background: transparent;
  outline: none;
}
.headerContainer .header .logo {
  line-height: 0;
}
.headerContainer .header .navList {
  display: flex;
  gap: 0 50px;
}
@media (max-width: 768px) {
  .headerContainer .header .navList {
    position: absolute;
    left: -250px;
    top: 0;
    width: 250px;
    padding-top: 56px;
    background: #3B3B3B;
    flex-direction: column;
    height: 100vh;
    transition: all 0.4s;
  }
}
.headerContainer .header .navList .navItem {
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  position: relative;
}
.headerContainer .header .navList .navItem::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #DDA122;
  border-radius: 2px;
  height: 2px;
  display: none;
}
.headerContainer .header .navList .navItem:hover {
  color: #DDA122;
}
@media (min-width: 767px) {
  .headerContainer .header .navList .navItem.active {
    color: #DDA122;
  }
  .headerContainer .header .navList .navItem.active::after {
    display: block;
  }
}
@media (max-width: 768px) {
  .headerContainer .header .navList .navItem {
    padding: 15px 15px;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 21px;
    border-bottom: solid 1px rgba(226, 232, 240, 0.2);
  }
}
@media (max-width: 768px) {
  .headerContainer .header .navList.active {
    left: 0;
  }
}
.headerContainer .header .closeMenu {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: 0;
  box-shadow: none;
}
@media (min-width: 767px) {
  .headerContainer .header .closeMenu {
    display: none;
  }
}

@media (min-width: 767px) {
  .footerContainer {
    padding-bottom: 30px;
  }
}
.footerContainer .footer {
  overflow: hidden;
  background: #3B3B3B;
  margin: 0 -16px;
}
@media (min-width: 767px) {
  .footerContainer .footer {
    border-radius: 20px;
    margin: 0;
  }
}
.footerContainer .footer .footerContent {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 36px 30px;
  padding: 16px 20px;
}
@media (min-width: 767px) {
  .footerContainer .footer .footerContent {
    padding: 40px;
    grid-template-columns: repeat(3, 1fr);
  }
}
.footerContainer .footer .footerContent .navColumn .title {
  position: relative;
  color: #FFFFFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 28px;
}
@media (min-width: 767px) {
  .footerContainer .footer .footerContent .navColumn .title {
    font-size: 24px;
    margin-bottom: 40px;
    line-height: 28px;
  }
}
.footerContainer .footer .footerContent .navColumn .title::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 60px;
  height: 4px;
  border-radius: 100px;
  background: #E8BF69;
}
@media (min-width: 767px) {
  .footerContainer .footer .footerContent .navColumn .title::after {
    width: 90px;
    height: 6px;
  }
}
.footerContainer .footer .footerContent .navColumn .footerNavList {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px 0;
}
.footerContainer .footer .footerContent .navColumn .footerNavList .footerLink {
  color: #FFFFFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
}
.footerContainer .footer .footerContent .navColumn .footerNavList .footerLink:hover {
  color: #E8BF69;
}
@media (min-width: 767px) {
  .footerContainer .footer .footerContent .navColumn .footerNavList .footerLink {
    font-size: 16px;
  }
}
.footerContainer .footer .copyright {
  color: #000;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
  background: #E8BF69;
  padding: 8px 10px;
}

.section {
  padding: 0;
}
@media (min-width: 993px) {
  .section {
    padding: 0 0 40px 0;
  }
}
.section .sectionContainer {
  padding: 40px;
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  gap: 20px 90px;
  justify-content: space-between;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  .section .sectionContainer {
    padding: 40px 16px;
    display: flex;
    margin: 0 -16px;
    border-radius: 0;
    flex-direction: column-reverse;
  }
}
.section .sectionContainer.light {
  background: #FFF;
}
.section .sectionContainer.dark {
  background: #3B3B3B;
}
@media (max-width: 768px) {
  .section .sectionContainer.reveseInMobile {
    flex-direction: column;
  }
}
.section .sectionContainer .imageBlock.fullImg {
  margin: 0;
  border-radius: 15px;
  overflow: hidden;
}
.section .sectionContainer .imageBlock.fullImg img {
  width: 100%;
}
.section .sectionContainer .contentBlock {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section .sectionContainer .contentBlock .titleBlock {
  position: relative;
}
@media (max-width: 768px) {
  .section .sectionContainer .contentBlock .titleBlock {
    margin-bottom: 28px;
  }
}
.section .sectionContainer .contentBlock .titleBlock::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 90px;
  height: 6px;
  border-radius: 100px;
  background: #E8BF69;
}
@media (max-width: 768px) {
  .section .sectionContainer .contentBlock .titleBlock::after {
    bottom: -12px;
    width: 60px;
    height: 4px;
  }
}
.section .sectionContainer .contentBlock .textBlock .h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}
@media (min-width: 767px) {
  .section .sectionContainer .contentBlock .textBlock .h3 {
    font-size: 24px;
    line-height: 28px;
  }
}
.section .sectionContainer .contentBlock .textBlock .text {
  color: #64748B;
  margin: 0;
}
@media (max-width: 768px) {
  .section .sectionContainer .contentBlock .textBlock .text {
    font-size: 16px;
  }
}
.section .sectionContainer .contentBlock .btnBlock {
  padding-top: 12px;
}
.section .sectionContainer .contentBlock .btnBlock .btn-lnk {
  display: flex;
  align-items: center;
  gap: 0 10px;
  color: #DDA122;
}
.section .sectionContainer.dark .titleBlock .heading {
  color: #FFFFFF;
}
.section .sectionContainer.dark .textBlock .heading {
  color: #FFFFFF;
}
.section .sectionContainer.dark .textBlock .text {
  color: #FFFFFF;
}
.section .sectionContainer.ourProduct {
  display: block;
}
.section .sectionContainer.ourProduct .titleBlock {
  display: flex;
  justify-content: center;
  position: relative;
  margin-bottom: 42px;
}
@media (min-width: 767px) {
  .section .sectionContainer.ourProduct .titleBlock {
    margin-bottom: 75px;
  }
}
.section .sectionContainer.ourProduct .titleBlock::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 60px;
  height: 4px;
  border-radius: 100px;
  background: #E8BF69;
}
@media (min-width: 767px) {
  .section .sectionContainer.ourProduct .titleBlock::after {
    width: 90px;
    height: 6px;
    bottom: -18px;
  }
}
.section .sectionContainer.ourProduct .sliderBlock {
  margin-bottom: 30px;
}
.section .sectionContainer.ourProduct .sliderBlock .textBlock .text {
  max-height: 75px;
  overflow: hidden;
  margin: 0 0 8px;
}
.section .sectionContainer.ourProduct .btnBlock {
  display: flex;
  justify-content: center;
}
.section .sectionContainer.ourProduct .btnBlock .btn {
  background: #E8BF69;
  color: #000;
  display: flex;
  align-items: center;
  gap: 0 10px;
  width: 100%;
  height: 40px;
}
.section .sectionContainer.ourProduct .btnBlock .btn:hover {
  background-color: #FFFFFF;
  border: 1px solid #FFFFFF;
}
@media (min-width: 767px) {
  .section .sectionContainer.ourProduct .btnBlock .btn {
    width: 328px;
    height: 50px;
  }
}
.section .sectionContainer.ourLocation {
  display: block;
}
.section .sectionContainer.ourLocation .titleBlock {
  display: flex;
  justify-content: center;
  position: relative;
  margin-bottom: 75px;
}
.section .sectionContainer.ourLocation .titleBlock::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 90px;
  height: 6px;
  border-radius: 100px;
  background: #E8BF69;
}
.section .sectionContainer.ourLocation .imageBlock {
  margin: 0;
}
.section .sectionContainer.ceoMessage {
  display: block;
}
.section .sectionContainer.ceoMessage .titleBlock {
  display: flex;
  position: relative;
  margin-bottom: 42px;
}
@media (min-width: 767px) {
  .section .sectionContainer.ceoMessage .titleBlock {
    justify-content: center;
  }
}
.section .sectionContainer.ceoMessage .titleBlock::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 60px;
  height: 4px;
  border-radius: 100px;
  background: #E8BF69;
}
@media (min-width: 767px) {
  .section .sectionContainer.ceoMessage .titleBlock::after {
    width: 90px;
    height: 6px;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.section .sectionContainer.ceoMessage .textBlock .text {
  color: #64748B;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
}
@media (min-width: 767px) {
  .section .sectionContainer.ceoMessage .textBlock .text {
    text-align: center;
    font-size: 18px;
    line-height: 28px;
  }
}
.section .sliderBlock {
  display: flex;
  gap: 0 32px;
}
.section .sliderBlock.slick-slider {
  width: 90%;
}
@media (min-width: 767px) {
  .section .sliderBlock.slick-slider {
    padding: 0 16px;
    width: 100%;
  }
}
.section .sliderBlock .slick-list {
  overflow: visible;
}
@media (min-width: 767px) {
  .section .sliderBlock .slick-list {
    overflow: hidden;
  }
}
.section .sliderBlock .slide-arrow {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  overflow: hidden;
  background-color: #E8BF69;
  background-image: url("../images/arrow_forward.png");
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  border: 0;
}
.section .sliderBlock .slide-arrow.slick-prev {
  left: -24px;
  transform: rotate(180deg);
}
.section .sliderBlock .slide-arrow.slick-next {
  right: -24px;
}
.section .sliderBlock .slick-slide {
  height: auto;
  display: flex;
}
.section .sliderBlock .slick-track {
  display: flex;
}
.section .sliderBlock .sliderItem {
  padding: 0 16px 0 0;
}
@media (min-width: 767px) {
  .section .sliderBlock .sliderItem {
    padding: 0 16px;
  }
}
.section .sliderBlock .sliderItem .slideCard {
  padding: 24px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  background: #FFF;
  display: flex;
  flex-direction: column;
}
.section .sliderBlock .sliderItem .slideCard .slideContent {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.section .sliderBlock .sliderItem .slideCard .imageBlock {
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  background: #F1F5F9;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 24px;
}
.section .sliderBlock .sliderItem .slideCard .titleBlock {
  justify-content: flex-start;
  margin-bottom: 28px;
}
@media (min-width: 767px) {
  .section .sliderBlock .sliderItem .slideCard .titleBlock {
    margin-bottom: 36px;
  }
}
.section .sliderBlock .sliderItem .slideCard .titleBlock::after {
  left: 0;
  transform: translate(0, 0);
}
.section .sliderBlock .sliderItem .slideCard .titleBlock .h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0F172A;
  line-height: 22px;
}
@media (min-width: 767px) {
  .section .sliderBlock .sliderItem .slideCard .titleBlock .h3 {
    font-size: 24px;
    line-height: 28px;
  }
}
.section .sliderBlock .sliderItem .slideCard .textBlock {
  flex-grow: 1;
}
.section .sliderBlock .sliderItem .slideCard .textBlock .text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #334155;
}
.section .sliderBlock .sliderItem .slideCard .btnBlock {
  justify-content: flex-start;
}
.section .sliderBlock .sliderItem .slideCard .btnBlock .btn-lnk {
  color: #DDA122;
  display: flex;
  align-items: center;
  gap: 0 4px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}
.section .sliderBlock .slick-dots {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  gap: 0 10px;
}
.section .sliderBlock .slick-dots li {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.3);
  overflow: hidden;
  transition: all 0.2s;
}
.section .sliderBlock .slick-dots li button {
  opacity: 0;
}
.section .sliderBlock .slick-dots li.slick-active {
  width: 30px;
  background: #FFF;
}
.section .slick-slider {
  width: 100%;
}
.section .slick-list,
.section .slick-slider,
.section .slick-track {
  position: relative;
  display: block;
}
.section .slick-loading .slick-slide,
.section .slick-loading .slick-track {
  visibility: hidden;
}
.section .slick-slider {
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.section .slick-list {
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.section .slick-list:focus {
  outline: 0;
}
.section .slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.section .slick-slider .slick-list,
.section .slick-slider .slick-track {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.section .slick-track {
  top: 0;
  left: 0;
}
.section .slick-track:after,
.section .slick-track:before {
  display: table;
  content: "";
}
.section .slick-track:after {
  clear: both;
}
.section .slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
.section [dir=rtl] .slick-slide {
  float: right;
}
.section .slick-slide img {
  display: block;
}
.section .slick-slide.slick-loading img {
  display: none;
}
.section .slick-slide.dragging img {
  pointer-events: none;
}
.section .slick-initialized .slick-slide {
  display: flex;
}
.section .slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.section .slick-arrow.slick-hidden {
  display: none;
}

.sectionContainer.productPage {
  display: block;
}

.productList {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}
.productList .productCard {
  padding: 24px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  background: #FFF;
  display: flex;
  flex-direction: column;
}
@media (min-width: 767px) {
  .productList .productCard {
    flex-direction: row;
    justify-content: space-between;
  }
}
.productList .productCard:nth-child(even) {
  background-color: #3B3B3B;
}
@media (min-width: 767px) {
  .productList .productCard:nth-child(even) {
    flex-direction: row-reverse;
  }
}
.productList .productCard .imageBlock {
  min-height: 225px;
  border-radius: 10px;
  overflow: hidden;
  background: #F1F5F9;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 24px;
}
@media (min-width: 767px) {
  .productList .productCard .imageBlock {
    width: 360px;
    margin: 0;
  }
}
@media (min-width: 767px) {
  .productList .productCard .slideContent {
    width: calc(100% - 380px);
  }
}
.productList .productCard .titleBlock {
  justify-content: flex-start;
  margin-bottom: 36px;
  position: relative;
}
.productList .productCard .titleBlock::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 90px;
  height: 6px;
  border-radius: 100px;
  background: #E8BF69;
}
.productList .productCard .titleBlock .h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0F172A;
  line-height: 28px;
}
.productList .productCard .textBlock {
  height: 75px;
  overflow: hidden;
  margin: 16px 0;
}
.productList .productCard .textBlock .text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #334155;
  margin: 0;
}
.productList .productCard .textBlock.showText {
  height: auto;
}
.productList .productCard:nth-child(even) .titleBlock .h3 {
  color: #FFF;
}
.productList .productCard:nth-child(even) .textBlock .text {
  color: #FFF;
}
.productList .productCard .btnBlock .btn-lnk {
  color: #DDA122;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}
.productList .productCard .btnBlock .btn-lnk.hide {
  display: none !important;
}
.productList .productCard .btnBlock .btn-lnk .more {
  display: inline-block;
}
.productList .productCard .btnBlock .btn-lnk .less {
  display: none;
}
.productList .productCard .btnBlock .btn-lnk.active .more {
  display: none;
}
.productList .productCard .btnBlock .btn-lnk.active .less {
  display: inline-block;
}
.productList .productCard .btnBlock .btn-lnk.active img {
  transform: rotate(-180deg);
}

.sectionContainer.contactPage {
  display: block;
}

.contactList {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 36px 32px;
}
@media (min-width: 767px) {
  .contactList {
    grid-template-columns: repeat(2, 1fr);
    gap: 54px 32px;
  }
}
.contactList .contactCard {
  overflow: hidden;
  background: #FFF;
  display: flex;
  gap: 0 22px;
}
.contactList .contactCard .contentBlock {
  width: calc(100% - 72px);
}
.contactList .contactCard .imageBlock {
  height: 50px;
  width: 50px;
  border-radius: 6px;
  background: #E8BF69;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}
.contactList .contactCard .contactLabel {
  color: #0F172A;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
}
.contactList .contactCard .contactValue {
  color: #64748B;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

/*# sourceMappingURL=styles.css.map */
