@charset "UTF-8";
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-2xl: 2rem;
  --bs-border-radius-pill: 50rem;
  --bs-link-color: #0d6efd;
  --bs-link-hover-color: #0a58ca;
  --bs-code-color: #d63384;
  --bs-highlight-bg: #fff3cd;
}

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

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid;
  opacity: 0.25;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

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

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small, .small {
  font-size: 0.875em;
}

mark, .mark {
  padding: 0.1875em;
  background-color: var(--bs-highlight-bg);
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: var(--bs-link-color);
  text-decoration: underline;
}
a:hover {
  color: var(--bs-link-hover-color);
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: var(--bs-code-color);
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: var(--bs-body-bg);
  background-color: var(--bs-body-color);
  border-radius: 0.25rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

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

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

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

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

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

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

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

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

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

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}

.display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}

.display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}

.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

.display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}

.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-6 {
    font-size: 2.5rem;
  }
}

.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;
}

.initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.blockquote > :last-child {
  margin-bottom: 0;
}

.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}

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

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

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 0.875em;
  color: #6c757d;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

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

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

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

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

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

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

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

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

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

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

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

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

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

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

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

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

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

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

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

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

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }

  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

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

  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

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

  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

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

  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

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

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.33333333%;
  }

  .offset-sm-2 {
    margin-left: 16.66666667%;
  }

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

  .offset-sm-4 {
    margin-left: 33.33333333%;
  }

  .offset-sm-5 {
    margin-left: 41.66666667%;
  }

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

  .offset-sm-7 {
    margin-left: 58.33333333%;
  }

  .offset-sm-8 {
    margin-left: 66.66666667%;
  }

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

  .offset-sm-10 {
    margin-left: 83.33333333%;
  }

  .offset-sm-11 {
    margin-left: 91.66666667%;
  }

  .g-sm-0,
.gx-sm-0 {
    --bs-gutter-x: 0;
  }

  .g-sm-0,
.gy-sm-0 {
    --bs-gutter-y: 0;
  }

  .g-sm-1,
.gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-sm-1,
.gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-sm-2,
.gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-sm-2,
.gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-sm-3,
.gx-sm-3 {
    --bs-gutter-x: 1rem;
  }

  .g-sm-3,
.gy-sm-3 {
    --bs-gutter-y: 1rem;
  }

  .g-sm-4,
.gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-sm-4,
.gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-sm-5,
.gx-sm-5 {
    --bs-gutter-x: 3rem;
  }

  .g-sm-5,
.gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }

  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

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

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

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

  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

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

  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

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

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.33333333%;
  }

  .offset-md-2 {
    margin-left: 16.66666667%;
  }

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

  .offset-md-4 {
    margin-left: 33.33333333%;
  }

  .offset-md-5 {
    margin-left: 41.66666667%;
  }

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

  .offset-md-7 {
    margin-left: 58.33333333%;
  }

  .offset-md-8 {
    margin-left: 66.66666667%;
  }

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

  .offset-md-10 {
    margin-left: 83.33333333%;
  }

  .offset-md-11 {
    margin-left: 91.66666667%;
  }

  .g-md-0,
.gx-md-0 {
    --bs-gutter-x: 0;
  }

  .g-md-0,
.gy-md-0 {
    --bs-gutter-y: 0;
  }

  .g-md-1,
.gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-md-1,
.gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-md-2,
.gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-md-2,
.gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-md-3,
.gx-md-3 {
    --bs-gutter-x: 1rem;
  }

  .g-md-3,
.gy-md-3 {
    --bs-gutter-y: 1rem;
  }

  .g-md-4,
.gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-md-4,
.gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-md-5,
.gx-md-5 {
    --bs-gutter-x: 3rem;
  }

  .g-md-5,
.gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }

  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

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

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

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

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

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

  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

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

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.33333333%;
  }

  .offset-lg-2 {
    margin-left: 16.66666667%;
  }

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

  .offset-lg-4 {
    margin-left: 33.33333333%;
  }

  .offset-lg-5 {
    margin-left: 41.66666667%;
  }

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

  .offset-lg-7 {
    margin-left: 58.33333333%;
  }

  .offset-lg-8 {
    margin-left: 66.66666667%;
  }

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

  .offset-lg-10 {
    margin-left: 83.33333333%;
  }

  .offset-lg-11 {
    margin-left: 91.66666667%;
  }

  .g-lg-0,
.gx-lg-0 {
    --bs-gutter-x: 0;
  }

  .g-lg-0,
.gy-lg-0 {
    --bs-gutter-y: 0;
  }

  .g-lg-1,
.gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-lg-1,
.gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-lg-2,
.gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-lg-2,
.gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-lg-3,
.gx-lg-3 {
    --bs-gutter-x: 1rem;
  }

  .g-lg-3,
.gy-lg-3 {
    --bs-gutter-y: 1rem;
  }

  .g-lg-4,
.gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-lg-4,
.gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-lg-5,
.gx-lg-5 {
    --bs-gutter-x: 3rem;
  }

  .g-lg-5,
.gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }

  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

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

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

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

  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

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

  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

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

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xl-2 {
    margin-left: 16.66666667%;
  }

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

  .offset-xl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xl-5 {
    margin-left: 41.66666667%;
  }

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

  .offset-xl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xl-8 {
    margin-left: 66.66666667%;
  }

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

  .offset-xl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xl-11 {
    margin-left: 91.66666667%;
  }

  .g-xl-0,
.gx-xl-0 {
    --bs-gutter-x: 0;
  }

  .g-xl-0,
.gy-xl-0 {
    --bs-gutter-y: 0;
  }

  .g-xl-1,
.gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-xl-1,
.gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-xl-2,
.gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-xl-2,
.gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-xl-3,
.gx-xl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xl-3,
.gy-xl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xl-4,
.gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xl-4,
.gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xl-5,
.gx-xl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xl-5,
.gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }

  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

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

  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

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

  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

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

  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

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

  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }

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

  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }

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

  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }

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

  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }

  .g-xxl-0,
.gx-xxl-0 {
    --bs-gutter-x: 0;
  }

  .g-xxl-0,
.gy-xxl-0 {
    --bs-gutter-y: 0;
  }

  .g-xxl-1,
.gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-xxl-1,
.gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-xxl-2,
.gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-xxl-2,
.gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-xxl-3,
.gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xxl-3,
.gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xxl-4,
.gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xxl-4,
.gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xxl-5,
.gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xxl-5,
.gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.table {
  --bs-table-color: var(--bs-body-color);
  --bs-table-bg: transparent;
  --bs-table-border-color: var(--bs-border-color);
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: var(--bs-body-color);
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: var(--bs-body-color);
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: var(--bs-body-color);
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: var(--bs-table-color);
  vertical-align: top;
  border-color: var(--bs-table-border-color);
}
.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
.table > tbody {
  vertical-align: inherit;
}
.table > thead {
  vertical-align: bottom;
}

.table-group-divider {
  border-top: 2px solid currentcolor;
}

.caption-top {
  caption-side: top;
}

.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}

.table-bordered > :not(caption) > * {
  border-width: 1px 0;
}
.table-bordered > :not(caption) > * > * {
  border-width: 0 1px;
}

.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}
.table-borderless > :not(:first-child) {
  border-top-width: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}

.table-striped-columns > :not(caption) > tr > :nth-child(even) {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}

.table-active {
  --bs-table-accent-bg: var(--bs-table-active-bg);
  color: var(--bs-table-active-color);
}

.table-hover > tbody > tr:hover > * {
  --bs-table-accent-bg: var(--bs-table-hover-bg);
  color: var(--bs-table-hover-color);
}

.table-primary {
  --bs-table-color: #000;
  --bs-table-bg: #cfe2ff;
  --bs-table-border-color: #bacbe6;
  --bs-table-striped-bg: #c5d7f2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bacbe6;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfd1ec;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-secondary {
  --bs-table-color: #000;
  --bs-table-bg: #e2e3e5;
  --bs-table-border-color: #cbccce;
  --bs-table-striped-bg: #d7d8da;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #cbccce;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #d1d2d4;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-success {
  --bs-table-color: #000;
  --bs-table-bg: #d1e7dd;
  --bs-table-border-color: #bcd0c7;
  --bs-table-striped-bg: #c7dbd2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bcd0c7;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c1d6cc;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-info {
  --bs-table-color: #000;
  --bs-table-bg: #cff4fc;
  --bs-table-border-color: #badce3;
  --bs-table-striped-bg: #c5e8ef;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #badce3;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfe2e9;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-warning {
  --bs-table-color: #000;
  --bs-table-bg: #fff3cd;
  --bs-table-border-color: #e6dbb9;
  --bs-table-striped-bg: #f2e7c3;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6dbb9;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ece1be;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-danger {
  --bs-table-color: #000;
  --bs-table-bg: #f8d7da;
  --bs-table-border-color: #dfc2c4;
  --bs-table-striped-bg: #eccccf;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfc2c4;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5c7ca;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-light {
  --bs-table-color: #000;
  --bs-table-bg: #f8f9fa;
  --bs-table-border-color: #dfe0e1;
  --bs-table-striped-bg: #ecedee;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfe0e1;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5e6e7;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-dark {
  --bs-table-color: #fff;
  --bs-table-bg: #212529;
  --bs-table-border-color: #373b3e;
  --bs-table-striped-bg: #2c3034;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #373b3e;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #323539;
  --bs-table-hover-color: #fff;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.form-label {
  margin-bottom: 0.5rem;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #6c757d;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control[type=file] {
  overflow: hidden;
}
.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-control::-webkit-date-and-time-value {
  height: 1.5em;
}
.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled {
  background-color: #e9ecef;
  opacity: 1;
}
.form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 0.75rem;
          margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #dde0e3;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext:focus {
  outline: 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}
.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}

.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.5rem;
}
.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
          margin-inline-end: 1rem;
}

textarea.form-control {
  min-height: calc(1.5em + 0.75rem + 2px);
}
textarea.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
}
textarea.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
}

.form-control-color {
  width: 3rem;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem;
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  border: 0 !important;
  border-radius: 0.375rem;
}
.form-control-color::-webkit-color-swatch {
  border-radius: 0.375rem;
}
.form-control-color.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
}
.form-control-color.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-select {
    transition: none;
  }
}
.form-select:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}
.form-select:disabled {
  background-color: #e9ecef;
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #212529;
}

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
  border-radius: 0.5rem;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-reverse {
  padding-right: 1.5em;
  padding-left: 0;
  text-align: right;
}
.form-check-reverse .form-check-input {
  float: right;
  margin-right: -1.5em;
  margin-left: 0;
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  print-color-adjust: exact;
}
.form-check-input[type=checkbox] {
  border-radius: 0.25em;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:active {
  filter: brightness(90%);
}
.form-check-input:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input[type=checkbox]:indeterminate {
  background-color: #0d6efd;
  border-color: #0d6efd;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  cursor: default;
  opacity: 0.5;
}

.form-switch {
  padding-left: 2.5em;
}
.form-switch .form-check-input {
  width: 2em;
  margin-left: -2.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    transition: none;
  }
}
.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.form-switch.form-check-reverse {
  padding-right: 2.5em;
  padding-left: 0;
}
.form-switch.form-check-reverse .form-check-input {
  margin-right: -2.5em;
  margin-left: 0;
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}

.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form-range:focus {
  outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.form-range::-webkit-slider-thumb:active {
  background-color: #b6d4fe;
}
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.form-range::-moz-range-thumb:active {
  background-color: #b6d4fe;
}
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.form-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext,
.form-floating > .form-select {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem 0.75rem;
  overflow: hidden;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext {
  padding: 1rem 0.75rem;
}
.form-floating > .form-control::-moz-placeholder, .form-floating > .form-control-plaintext::-moz-placeholder {
  color: transparent;
}
.form-floating > .form-control::placeholder,
.form-floating > .form-control-plaintext::placeholder {
  color: transparent;
}
.form-floating > .form-control:not(:-moz-placeholder-shown), .form-floating > .form-control-plaintext:not(:-moz-placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown),
.form-floating > .form-control-plaintext:focus,
.form-floating > .form-control-plaintext:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill,
.form-floating > .form-control-plaintext:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control-plaintext ~ label {
  border-width: 1px 0;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-select,
.input-group > .form-floating {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus,
.input-group > .form-floating:focus-within {
  z-index: 5;
}
.input-group .btn {
  position: relative;
  z-index: 2;
}
.input-group .btn:focus {
  z-index: 5;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.5rem;
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 3rem;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control,
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4),
.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-control,
.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .form-floating:not(:first-child) > .form-control,
.input-group > .form-floating:not(:first-child) > .form-select {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #198754;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(25, 135, 84, 0.9);
  border-radius: 0.375rem;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #198754;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: #198754;
}
.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated .form-control-color:valid, .form-control-color.is-valid {
  width: calc(3rem + calc(1.5em + 0.75rem));
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: #198754;
}
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: #198754;
}
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #198754;
}

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group > .form-control:not(:focus):valid, .input-group > .form-control:not(:focus).is-valid,
.was-validated .input-group > .form-select:not(:focus):valid,
.input-group > .form-select:not(:focus).is-valid,
.was-validated .input-group > .form-floating:not(:focus-within):valid,
.input-group > .form-floating:not(:focus-within).is-valid {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.375rem;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-control-color:invalid, .form-control-color.is-invalid {
  width: calc(3rem + calc(1.5em + 0.75rem));
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: #dc3545;
}
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group > .form-control:not(:focus):invalid, .input-group > .form-control:not(:focus).is-invalid,
.was-validated .input-group > .form-select:not(:focus):invalid,
.input-group > .form-select:not(:focus).is-invalid,
.was-validated .input-group > .form-floating:not(:focus-within):invalid,
.input-group > .form-floating:not(:focus-within).is-invalid {
  z-index: 4;
}

.btn {
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.375rem;
  --bs-btn-font-family: ;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 1.5;
  --bs-btn-color: #212529;
  --bs-btn-bg: transparent;
  --bs-btn-border-width: 1px;
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: 0.375rem;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}
.btn-check + .btn:hover {
  color: var(--bs-btn-color);
  background-color: var(--bs-btn-bg);
  border-color: var(--bs-btn-border-color);
}
.btn:focus-visible {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:focus-visible + .btn {
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  border-color: var(--bs-btn-active-border-color);
}
.btn-check:checked + .btn:focus-visible, :not(.btn-check) + .btn:active:focus-visible, .btn:first-child:active:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible {
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  color: var(--bs-btn-disabled-color);
  pointer-events: none;
  background-color: var(--bs-btn-disabled-bg);
  border-color: var(--bs-btn-disabled-border-color);
  opacity: var(--bs-btn-disabled-opacity);
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #0d6efd;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0b5ed7;
  --bs-btn-hover-border-color: #0a58ca;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0a58ca;
  --bs-btn-active-border-color: #0a53be;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0d6efd;
  --bs-btn-disabled-border-color: #0d6efd;
}

.btn-secondary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #6c757d;
  --bs-btn-border-color: #6c757d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #5c636a;
  --bs-btn-hover-border-color: #565e64;
  --bs-btn-focus-shadow-rgb: 130, 138, 145;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #565e64;
  --bs-btn-active-border-color: #51585e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #6c757d;
  --bs-btn-disabled-border-color: #6c757d;
}

.btn-success {
  --bs-btn-color: #fff;
  --bs-btn-bg: #198754;
  --bs-btn-border-color: #198754;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #157347;
  --bs-btn-hover-border-color: #146c43;
  --bs-btn-focus-shadow-rgb: 60, 153, 110;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #146c43;
  --bs-btn-active-border-color: #13653f;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #198754;
  --bs-btn-disabled-border-color: #198754;
}

.btn-info {
  --bs-btn-color: #000;
  --bs-btn-bg: #0dcaf0;
  --bs-btn-border-color: #0dcaf0;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #31d2f2;
  --bs-btn-hover-border-color: #25cff2;
  --bs-btn-focus-shadow-rgb: 11, 172, 204;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #3dd5f3;
  --bs-btn-active-border-color: #25cff2;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #0dcaf0;
  --bs-btn-disabled-border-color: #0dcaf0;
}

.btn-warning {
  --bs-btn-color: #000;
  --bs-btn-bg: #ffc107;
  --bs-btn-border-color: #ffc107;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffca2c;
  --bs-btn-hover-border-color: #ffc720;
  --bs-btn-focus-shadow-rgb: 217, 164, 6;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffcd39;
  --bs-btn-active-border-color: #ffc720;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #ffc107;
  --bs-btn-disabled-border-color: #ffc107;
}

.btn-danger {
  --bs-btn-color: #fff;
  --bs-btn-bg: #dc3545;
  --bs-btn-border-color: #dc3545;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #bb2d3b;
  --bs-btn-hover-border-color: #b02a37;
  --bs-btn-focus-shadow-rgb: 225, 83, 97;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #b02a37;
  --bs-btn-active-border-color: #a52834;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #dc3545;
  --bs-btn-disabled-border-color: #dc3545;
}

.btn-light {
  --bs-btn-color: #000;
  --bs-btn-bg: #f8f9fa;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #d3d4d5;
  --bs-btn-hover-border-color: #c6c7c8;
  --bs-btn-focus-shadow-rgb: 211, 212, 213;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #c6c7c8;
  --bs-btn-active-border-color: #babbbc;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #f8f9fa;
  --bs-btn-disabled-border-color: #f8f9fa;
}

.btn-dark {
  --bs-btn-color: #fff;
  --bs-btn-bg: #212529;
  --bs-btn-border-color: #212529;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #424649;
  --bs-btn-hover-border-color: #373b3e;
  --bs-btn-focus-shadow-rgb: 66, 70, 73;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #4d5154;
  --bs-btn-active-border-color: #373b3e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #212529;
  --bs-btn-disabled-border-color: #212529;
}

.btn-outline-primary {
  --bs-btn-color: #0d6efd;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0d6efd;
  --bs-btn-hover-border-color: #0d6efd;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0d6efd;
  --bs-btn-active-border-color: #0d6efd;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #0d6efd;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #0d6efd;
  --bs-gradient: none;
}

.btn-outline-secondary {
  --bs-btn-color: #6c757d;
  --bs-btn-border-color: #6c757d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #6c757d;
  --bs-btn-hover-border-color: #6c757d;
  --bs-btn-focus-shadow-rgb: 108, 117, 125;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #6c757d;
  --bs-btn-active-border-color: #6c757d;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #6c757d;
  --bs-gradient: none;
}

.btn-outline-success {
  --bs-btn-color: #198754;
  --bs-btn-border-color: #198754;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #198754;
  --bs-btn-hover-border-color: #198754;
  --bs-btn-focus-shadow-rgb: 25, 135, 84;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #198754;
  --bs-btn-active-border-color: #198754;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #198754;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #198754;
  --bs-gradient: none;
}

.btn-outline-info {
  --bs-btn-color: #0dcaf0;
  --bs-btn-border-color: #0dcaf0;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #0dcaf0;
  --bs-btn-hover-border-color: #0dcaf0;
  --bs-btn-focus-shadow-rgb: 13, 202, 240;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #0dcaf0;
  --bs-btn-active-border-color: #0dcaf0;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #0dcaf0;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #0dcaf0;
  --bs-gradient: none;
}

.btn-outline-warning {
  --bs-btn-color: #ffc107;
  --bs-btn-border-color: #ffc107;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffc107;
  --bs-btn-hover-border-color: #ffc107;
  --bs-btn-focus-shadow-rgb: 255, 193, 7;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffc107;
  --bs-btn-active-border-color: #ffc107;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #ffc107;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #ffc107;
  --bs-gradient: none;
}

.btn-outline-danger {
  --bs-btn-color: #dc3545;
  --bs-btn-border-color: #dc3545;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #dc3545;
  --bs-btn-hover-border-color: #dc3545;
  --bs-btn-focus-shadow-rgb: 220, 53, 69;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #dc3545;
  --bs-btn-active-border-color: #dc3545;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #dc3545;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #dc3545;
  --bs-gradient: none;
}

.btn-outline-light {
  --bs-btn-color: #f8f9fa;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #f8f9fa;
  --bs-btn-hover-border-color: #f8f9fa;
  --bs-btn-focus-shadow-rgb: 248, 249, 250;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #f8f9fa;
  --bs-btn-active-border-color: #f8f9fa;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #f8f9fa;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #f8f9fa;
  --bs-gradient: none;
}

.btn-outline-dark {
  --bs-btn-color: #212529;
  --bs-btn-border-color: #212529;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #212529;
  --bs-btn-hover-border-color: #212529;
  --bs-btn-focus-shadow-rgb: 33, 37, 41;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #212529;
  --bs-btn-active-border-color: #212529;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #212529;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #212529;
  --bs-gradient: none;
}

.btn-link {
  --bs-btn-font-weight: 400;
  --bs-btn-color: var(--bs-link-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: var(--bs-link-hover-color);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-color: var(--bs-link-hover-color);
  --bs-btn-active-border-color: transparent;
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-border-color: transparent;
  --bs-btn-box-shadow: none;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  text-decoration: underline;
}
.btn-link:focus-visible {
  color: var(--bs-btn-color);
}
.btn-link:hover {
  color: var(--bs-btn-hover-color);
}

.btn-lg, .btn-group-lg > .btn {
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 1.25rem;
  --bs-btn-border-radius: 0.5rem;
}

.btn-sm, .btn-group-sm > .btn {
  --bs-btn-padding-y: 0.25rem;
  --bs-btn-padding-x: 0.5rem;
  --bs-btn-font-size: 0.875rem;
  --bs-btn-border-radius: 0.25rem;
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}

.dropup,
.dropend,
.dropdown,
.dropstart,
.dropup-center,
.dropdown-center {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  --bs-dropdown-zindex: 1000;
  --bs-dropdown-min-width: 10rem;
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: 0.5rem;
  --bs-dropdown-spacer: 0.125rem;
  --bs-dropdown-font-size: 1rem;
  --bs-dropdown-color: #212529;
  --bs-dropdown-bg: #fff;
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-border-radius: 0.375rem;
  --bs-dropdown-border-width: 1px;
  --bs-dropdown-inner-border-radius: calc(0.375rem - 1px);
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-divider-margin-y: 0.5rem;
  --bs-dropdown-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-dropdown-link-color: #212529;
  --bs-dropdown-link-hover-color: #1e2125;
  --bs-dropdown-link-hover-bg: #e9ecef;
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #0d6efd;
  --bs-dropdown-link-disabled-color: #adb5bd;
  --bs-dropdown-item-padding-x: 1rem;
  --bs-dropdown-item-padding-y: 0.25rem;
  --bs-dropdown-header-color: #6c757d;
  --bs-dropdown-header-padding-x: 1rem;
  --bs-dropdown-header-padding-y: 0.5rem;
  position: absolute;
  z-index: var(--bs-dropdown-zindex);
  display: none;
  min-width: var(--bs-dropdown-min-width);
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  margin: 0;
  font-size: var(--bs-dropdown-font-size);
  color: var(--bs-dropdown-color);
  text-align: left;
  list-style: none;
  background-color: var(--bs-dropdown-bg);
  background-clip: padding-box;
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  border-radius: var(--bs-dropdown-border-radius);
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: var(--bs-dropdown-spacer);
}

.dropdown-menu-start {
  --bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-menu-end {
  --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: var(--bs-dropdown-spacer);
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: var(--bs-dropdown-spacer);
}
.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: var(--bs-dropdown-spacer);
}
.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropstart .dropdown-toggle::after {
  display: none;
}
.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: var(--bs-dropdown-divider-margin-y) 0;
  overflow: hidden;
  border-top: 1px solid var(--bs-dropdown-divider-bg);
  opacity: 1;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  clear: both;
  font-weight: 400;
  color: var(--bs-dropdown-link-color);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: var(--bs-dropdown-link-hover-color);
  background-color: var(--bs-dropdown-link-hover-bg);
}
.dropdown-item.active, .dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: var(--bs-dropdown-link-active-bg);
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: var(--bs-dropdown-link-disabled-color);
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
  margin-bottom: 0;
  font-size: 0.875rem;
  color: var(--bs-dropdown-header-color);
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  color: var(--bs-dropdown-link-color);
}

.dropdown-menu-dark {
  --bs-dropdown-color: #dee2e6;
  --bs-dropdown-bg: #343a40;
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-box-shadow: ;
  --bs-dropdown-link-color: #dee2e6;
  --bs-dropdown-link-hover-color: #fff;
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #0d6efd;
  --bs-dropdown-link-disabled-color: #adb5bd;
  --bs-dropdown-header-color: #adb5bd;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group {
  border-radius: 0.375rem;
}
.btn-group > :not(.btn-check:first-child) + .btn,
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn.dropdown-toggle-split:first-child,
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:nth-child(n+3),
.btn-group > :not(.btn-check) + .btn,
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn ~ .btn,
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-link-color);
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
  --bs-nav-link-disabled-color: #6c757d;
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: var(--bs-nav-link-hover-color);
}
.nav-link.disabled {
  color: var(--bs-nav-link-disabled-color);
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  --bs-nav-tabs-border-width: 1px;
  --bs-nav-tabs-border-color: #dee2e6;
  --bs-nav-tabs-border-radius: 0.375rem;
  --bs-nav-tabs-link-hover-border-color: #e9ecef #e9ecef #dee2e6;
  --bs-nav-tabs-link-active-color: #495057;
  --bs-nav-tabs-link-active-bg: #fff;
  --bs-nav-tabs-link-active-border-color: #dee2e6 #dee2e6 #fff;
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
}
.nav-tabs .nav-link {
  margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
  background: none;
  border: var(--bs-nav-tabs-border-width) solid transparent;
  border-top-left-radius: var(--bs-nav-tabs-border-radius);
  border-top-right-radius: var(--bs-nav-tabs-border-radius);
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: var(--bs-nav-tabs-link-hover-border-color);
}
.nav-tabs .nav-link.disabled, .nav-tabs .nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: var(--bs-nav-tabs-link-active-color);
  background-color: var(--bs-nav-tabs-link-active-bg);
  border-color: var(--bs-nav-tabs-link-active-border-color);
}
.nav-tabs .dropdown-menu {
  margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills {
  --bs-nav-pills-border-radius: 0.375rem;
  --bs-nav-pills-link-active-color: #fff;
  --bs-nav-pills-link-active-bg: #0d6efd;
}
.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: var(--bs-nav-pills-border-radius);
}
.nav-pills .nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  background-color: transparent;
  border-color: transparent;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--bs-nav-pills-link-active-color);
  background-color: var(--bs-nav-pills-link-active-bg);
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  --bs-navbar-padding-x: 0;
  --bs-navbar-padding-y: 0.5rem;
  --bs-navbar-color: rgba(0, 0, 0, 0.55);
  --bs-navbar-hover-color: rgba(0, 0, 0, 0.7);
  --bs-navbar-disabled-color: rgba(0, 0, 0, 0.3);
  --bs-navbar-active-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-brand-padding-y: 0.3125rem;
  --bs-navbar-brand-margin-end: 1rem;
  --bs-navbar-brand-font-size: 1.25rem;
  --bs-navbar-brand-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-brand-hover-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-nav-link-padding-x: 0.5rem;
  --bs-navbar-toggler-padding-y: 0.25rem;
  --bs-navbar-toggler-padding-x: 0.75rem;
  --bs-navbar-toggler-font-size: 1.25rem;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  --bs-navbar-toggler-border-color: rgba(0, 0, 0, 0.1);
  --bs-navbar-toggler-border-radius: 0.375rem;
  --bs-navbar-toggler-focus-width: 0.25rem;
  --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  padding-top: var(--bs-navbar-brand-padding-y);
  padding-bottom: var(--bs-navbar-brand-padding-y);
  margin-right: var(--bs-navbar-brand-margin-end);
  font-size: var(--bs-navbar-brand-font-size);
  color: var(--bs-navbar-brand-color);
  text-decoration: none;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  color: var(--bs-navbar-brand-hover-color);
}

.navbar-nav {
  --bs-nav-link-padding-x: 0;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-navbar-color);
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .show > .nav-link,
.navbar-nav .nav-link.active {
  color: var(--bs-navbar-active-color);
}
.navbar-nav .dropdown-menu {
  position: static;
}

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-navbar-color);
}
.navbar-text a,
.navbar-text a:hover,
.navbar-text a:focus {
  color: var(--bs-navbar-active-color);
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  font-size: var(--bs-navbar-toggler-font-size);
  line-height: 1;
  color: var(--bs-navbar-color);
  background-color: transparent;
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  border-radius: var(--bs-navbar-toggler-border-radius);
  transition: var(--bs-navbar-toggler-transition);
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: var(--bs-navbar-toggler-icon-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
  .navbar-expand-sm .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-sm .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-sm .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
  .navbar-expand-md .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-md .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-md .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  .navbar-expand-lg .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-lg .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-lg .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-xl .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-xl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1400px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xxl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-xxl .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-xxl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: var(--bs-navbar-nav-link-padding-x);
  padding-left: var(--bs-navbar-nav-link-padding-x);
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}
.navbar-expand .offcanvas {
  position: static;
  z-index: auto;
  flex-grow: 1;
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
  background-color: transparent !important;
  border: 0 !important;
  transform: none !important;
  transition: none;
}
.navbar-expand .offcanvas .offcanvas-header {
  display: none;
}
.navbar-expand .offcanvas .offcanvas-body {
  display: flex;
  flex-grow: 0;
  padding: 0;
  overflow-y: visible;
}

.navbar-dark {
  --bs-navbar-color: rgba(255, 255, 255, 0.55);
  --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
  --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
  --bs-navbar-active-color: #fff;
  --bs-navbar-brand-color: #fff;
  --bs-navbar-brand-hover-color: #fff;
  --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.accordion {
  --bs-accordion-color: #212529;
  --bs-accordion-bg: #fff;
  --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  --bs-accordion-border-color: var(--bs-border-color);
  --bs-accordion-border-width: 1px;
  --bs-accordion-border-radius: 0.375rem;
  --bs-accordion-inner-border-radius: calc(0.375rem - 1px);
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: #212529;
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-focus-border-color: #86b7fe;
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: #0c63e4;
  --bs-accordion-active-bg: #e7f1ff;
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 1rem;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: var(--bs-accordion-active-bg);
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-active-icon);
  transform: var(--bs-accordion-btn-icon-transform);
}
.accordion-button::after {
  flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-left: auto;
  content: "";
  background-image: var(--bs-accordion-btn-icon);
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition);
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  border-color: var(--bs-accordion-btn-focus-border-color);
  outline: 0;
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}
.accordion-item:first-of-type {
  border-top-left-radius: var(--bs-accordion-border-radius);
  border-top-right-radius: var(--bs-accordion-border-radius);
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
  border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
}
.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}

.accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
}

.accordion-flush .accordion-collapse {
  border-width: 0;
}
.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush .accordion-item:first-child {
  border-top: 0;
}
.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}
.accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
  border-radius: 0;
}

.pagination {
  --bs-pagination-padding-x: 0.75rem;
  --bs-pagination-padding-y: 0.375rem;
  --bs-pagination-font-size: 1rem;
  --bs-pagination-color: var(--bs-link-color);
  --bs-pagination-bg: #fff;
  --bs-pagination-border-width: 1px;
  --bs-pagination-border-color: #dee2e6;
  --bs-pagination-border-radius: 0.375rem;
  --bs-pagination-hover-color: var(--bs-link-hover-color);
  --bs-pagination-hover-bg: #e9ecef;
  --bs-pagination-hover-border-color: #dee2e6;
  --bs-pagination-focus-color: var(--bs-link-hover-color);
  --bs-pagination-focus-bg: #e9ecef;
  --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: #0d6efd;
  --bs-pagination-active-border-color: #0d6efd;
  --bs-pagination-disabled-color: #6c757d;
  --bs-pagination-disabled-bg: #fff;
  --bs-pagination-disabled-border-color: #dee2e6;
  display: flex;
  padding-left: 0;
  list-style: none;
}

.page-link {
  position: relative;
  display: block;
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  font-size: var(--bs-pagination-font-size);
  color: var(--bs-pagination-color);
  text-decoration: none;
  background-color: var(--bs-pagination-bg);
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .page-link {
    transition: none;
  }
}
.page-link:hover {
  z-index: 2;
  color: var(--bs-pagination-hover-color);
  background-color: var(--bs-pagination-hover-bg);
  border-color: var(--bs-pagination-hover-border-color);
}
.page-link:focus {
  z-index: 3;
  color: var(--bs-pagination-focus-color);
  background-color: var(--bs-pagination-focus-bg);
  outline: 0;
  box-shadow: var(--bs-pagination-focus-box-shadow);
}
.page-link.active, .active > .page-link {
  z-index: 3;
  color: var(--bs-pagination-active-color);
  background-color: var(--bs-pagination-active-bg);
  border-color: var(--bs-pagination-active-border-color);
}
.page-link.disabled, .disabled > .page-link {
  color: var(--bs-pagination-disabled-color);
  pointer-events: none;
  background-color: var(--bs-pagination-disabled-bg);
  border-color: var(--bs-pagination-disabled-border-color);
}

.page-item:not(:first-child) .page-link {
  margin-left: -1px;
}
.page-item:first-child .page-link {
  border-top-left-radius: var(--bs-pagination-border-radius);
  border-bottom-left-radius: var(--bs-pagination-border-radius);
}
.page-item:last-child .page-link {
  border-top-right-radius: var(--bs-pagination-border-radius);
  border-bottom-right-radius: var(--bs-pagination-border-radius);
}

.pagination-lg {
  --bs-pagination-padding-x: 1.5rem;
  --bs-pagination-padding-y: 0.75rem;
  --bs-pagination-font-size: 1.25rem;
  --bs-pagination-border-radius: 0.5rem;
}

.pagination-sm {
  --bs-pagination-padding-x: 0.5rem;
  --bs-pagination-padding-y: 0.25rem;
  --bs-pagination-font-size: 0.875rem;
  --bs-pagination-border-radius: 0.25rem;
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}
.progress {
  --bs-progress-height: 1rem;
  --bs-progress-font-size: 0.75rem;
  --bs-progress-bg: #e9ecef;
  --bs-progress-border-radius: 0.375rem;
  --bs-progress-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --bs-progress-bar-color: #fff;
  --bs-progress-bar-bg: #0d6efd;
  --bs-progress-bar-transition: width 0.6s ease;
  display: flex;
  height: var(--bs-progress-height);
  overflow: hidden;
  font-size: var(--bs-progress-font-size);
  background-color: var(--bs-progress-bg);
  border-radius: var(--bs-progress-border-radius);
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--bs-progress-bar-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--bs-progress-bar-bg);
  transition: var(--bs-progress-bar-transition);
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: var(--bs-progress-height) var(--bs-progress-height);
}

.progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    animation: none;
  }
}

.list-group {
  --bs-list-group-color: #212529;
  --bs-list-group-bg: #fff;
  --bs-list-group-border-color: rgba(0, 0, 0, 0.125);
  --bs-list-group-border-width: 1px;
  --bs-list-group-border-radius: 0.375rem;
  --bs-list-group-item-padding-x: 1rem;
  --bs-list-group-item-padding-y: 0.5rem;
  --bs-list-group-action-color: #495057;
  --bs-list-group-action-hover-color: #495057;
  --bs-list-group-action-hover-bg: #f8f9fa;
  --bs-list-group-action-active-color: #212529;
  --bs-list-group-action-active-bg: #e9ecef;
  --bs-list-group-disabled-color: #6c757d;
  --bs-list-group-disabled-bg: #fff;
  --bs-list-group-active-color: #fff;
  --bs-list-group-active-bg: #0d6efd;
  --bs-list-group-active-border-color: #0d6efd;
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: var(--bs-list-group-border-radius);
}

.list-group-numbered {
  list-style-type: none;
  counter-reset: section;
}
.list-group-numbered > .list-group-item::before {
  content: counters(section, ".") ". ";
  counter-increment: section;
}

.list-group-item-action {
  width: 100%;
  color: var(--bs-list-group-action-color);
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: var(--bs-list-group-action-hover-color);
  text-decoration: none;
  background-color: var(--bs-list-group-action-hover-bg);
}
.list-group-item-action:active {
  color: var(--bs-list-group-action-active-color);
  background-color: var(--bs-list-group-action-active-bg);
}

.list-group-item {
  position: relative;
  display: block;
  padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
  color: var(--bs-list-group-color);
  text-decoration: none;
  background-color: var(--bs-list-group-bg);
  border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: var(--bs-list-group-disabled-color);
  pointer-events: none;
  background-color: var(--bs-list-group-disabled-bg);
}
.list-group-item.active {
  z-index: 2;
  color: var(--bs-list-group-active-color);
  background-color: var(--bs-list-group-active-bg);
  border-color: var(--bs-list-group-active-border-color);
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: calc(-1 * var(--bs-list-group-border-width));
  border-top-width: var(--bs-list-group-border-width);
}

.list-group-horizontal {
  flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child:not(:last-child) {
  border-bottom-left-radius: var(--bs-list-group-border-radius);
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child:not(:first-child) {
  border-top-right-radius: var(--bs-list-group-border-radius);
  border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: var(--bs-list-group-border-width);
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: calc(-1 * var(--bs-list-group-border-width));
  border-left-width: var(--bs-list-group-border-width);
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 1400px) {
  .list-group-horizontal-xxl {
    flex-direction: row;
  }
  .list-group-horizontal-xxl > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
.list-group-flush {
  border-radius: 0;
}
.list-group-flush > .list-group-item {
  border-width: 0 0 var(--bs-list-group-border-width);
}
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: #084298;
  background-color: #cfe2ff;
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #084298;
  background-color: #bacbe6;
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #084298;
  border-color: #084298;
}

.list-group-item-secondary {
  color: #41464b;
  background-color: #e2e3e5;
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #41464b;
  background-color: #cbccce;
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #41464b;
  border-color: #41464b;
}

.list-group-item-success {
  color: #0f5132;
  background-color: #d1e7dd;
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #0f5132;
  background-color: #bcd0c7;
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #0f5132;
  border-color: #0f5132;
}

.list-group-item-info {
  color: #055160;
  background-color: #cff4fc;
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #055160;
  background-color: #badce3;
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #055160;
  border-color: #055160;
}

.list-group-item-warning {
  color: #664d03;
  background-color: #fff3cd;
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #664d03;
  background-color: #e6dbb9;
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #664d03;
  border-color: #664d03;
}

.list-group-item-danger {
  color: #842029;
  background-color: #f8d7da;
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #842029;
  background-color: #dfc2c4;
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #842029;
  border-color: #842029;
}

.list-group-item-light {
  color: #636464;
  background-color: #fefefe;
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #636464;
  background-color: #e5e5e5;
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #636464;
  border-color: #636464;
}

.list-group-item-dark {
  color: #141619;
  background-color: #d3d3d4;
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #141619;
  background-color: #bebebf;
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #141619;
  border-color: #141619;
}

.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: ;
  --bs-modal-bg: #fff;
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: 1px;
  --bs-modal-border-radius: 0.5rem;
  --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-modal-inner-border-radius: calc(0.5rem - 1px);
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: 1px;
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: 1px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0;
}

.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #000;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-modal-header-padding);
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius);
}
.modal-header .btn-close {
  padding: calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);
  margin: calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.5 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height);
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: var(--bs-modal-padding);
}

.modal-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);
  background-color: var(--bs-modal-footer-bg);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}
.modal-footer > * {
  margin: calc(var(--bs-modal-footer-gap) * .5);
}

@media (min-width: 576px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }

  .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto;
  }

  .modal-sm {
    --bs-modal-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
.modal-xl {
    --bs-modal-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header,
.modal-fullscreen .modal-footer {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header,
.modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header,
.modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header,
.modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header,
.modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header,
.modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
}
.popover {
  --bs-popover-zindex: 1070;
  --bs-popover-max-width: 276px;
  --bs-popover-font-size: 0.875rem;
  --bs-popover-bg: #fff;
  --bs-popover-border-width: 1px;
  --bs-popover-border-color: var(--bs-border-color-translucent);
  --bs-popover-border-radius: 0.5rem;
  --bs-popover-inner-border-radius: calc(0.5rem - 1px);
  --bs-popover-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-popover-header-padding-x: 1rem;
  --bs-popover-header-padding-y: 0.5rem;
  --bs-popover-header-font-size: 1rem;
  --bs-popover-header-color: ;
  --bs-popover-header-bg: #f0f0f0;
  --bs-popover-body-padding-x: 1rem;
  --bs-popover-body-padding-y: 1rem;
  --bs-popover-body-color: #212529;
  --bs-popover-arrow-width: 1rem;
  --bs-popover-arrow-height: 0.5rem;
  --bs-popover-arrow-border: var(--bs-popover-border-color);
  z-index: var(--bs-popover-zindex);
  display: block;
  max-width: var(--bs-popover-max-width);
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: var(--bs-popover-font-size);
  word-wrap: break-word;
  background-color: var(--bs-popover-bg);
  background-clip: padding-box;
  border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-radius: var(--bs-popover-border-radius);
}
.popover .popover-arrow {
  display: block;
  width: var(--bs-popover-arrow-width);
  height: var(--bs-popover-arrow-height);
}
.popover .popover-arrow::before, .popover .popover-arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
  border-width: 0;
}

.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before, .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0;
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  bottom: 0;
  border-top-color: var(--bs-popover-arrow-border);
}
.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  bottom: var(--bs-popover-border-width);
  border-top-color: var(--bs-popover-bg);
}

/* rtl:begin:ignore */
.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width);
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before, .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  border-width: calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0;
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  left: 0;
  border-right-color: var(--bs-popover-arrow-border);
}
.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  left: var(--bs-popover-border-width);
  border-right-color: var(--bs-popover-bg);
}

/* rtl:end:ignore */
.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before, .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  border-width: 0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height);
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  top: 0;
  border-bottom-color: var(--bs-popover-arrow-border);
}
.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  top: var(--bs-popover-border-width);
  border-bottom-color: var(--bs-popover-bg);
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: var(--bs-popover-arrow-width);
  margin-left: calc(-.5 * var(--bs-popover-arrow-width));
  content: "";
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
}

/* rtl:begin:ignore */
.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width);
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before, .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  border-width: calc(var(--bs-popover-arrow-width) * .5) 0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height);
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  right: 0;
  border-left-color: var(--bs-popover-arrow-border);
}
.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  right: var(--bs-popover-border-width);
  border-left-color: var(--bs-popover-bg);
}

/* rtl:end:ignore */
.popover-header {
  padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
  margin-bottom: 0;
  font-size: var(--bs-popover-header-font-size);
  color: var(--bs-popover-header-color);
  background-color: var(--bs-popover-header-bg);
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-top-left-radius: var(--bs-popover-inner-border-radius);
  border-top-right-radius: var(--bs-popover-inner-border-radius);
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
  color: var(--bs-popover-body-color);
}

.placeholder {
  display: inline-block;
  min-height: 1em;
  vertical-align: middle;
  cursor: wait;
  background-color: currentcolor;
  opacity: 0.5;
}
.placeholder.btn::before {
  display: inline-block;
  content: "";
}

.placeholder-xs {
  min-height: 0.6em;
}

.placeholder-sm {
  min-height: 0.8em;
}

.placeholder-lg {
  min-height: 1.2em;
}

.placeholder-glow .placeholder {
  animation: placeholder-glow 2s ease-in-out infinite;
}

@keyframes placeholder-glow {
  50% {
    opacity: 0.2;
  }
}
.placeholder-wave {
  -webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
          mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  -webkit-mask-size: 200% 100%;
          mask-size: 200% 100%;
  animation: placeholder-wave 2s linear infinite;
}

@keyframes placeholder-wave {
  100% {
    -webkit-mask-position: -200% 0%;
            mask-position: -200% 0%;
  }
}
.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

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

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

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

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

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

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

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

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

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

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

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

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

.d-grid {
  display: grid !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;
}

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

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

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

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

.shadow-none {
  box-shadow: none !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;
}

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

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

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

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

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

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

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

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

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

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

.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-end {
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-start {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-primary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}

.border-secondary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}

.border-success {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
}

.border-info {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}

.border-warning {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
}

.border-danger {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}

.border-light {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}

.border-dark {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}

.border-white {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
}

.border-1 {
  --bs-border-width: 1px;
}

.border-2 {
  --bs-border-width: 2px;
}

.border-3 {
  --bs-border-width: 3px;
}

.border-4 {
  --bs-border-width: 4px;
}

.border-5 {
  --bs-border-width: 5px;
}

.border-opacity-10 {
  --bs-border-opacity: 0.1;
}

.border-opacity-25 {
  --bs-border-opacity: 0.25;
}

.border-opacity-50 {
  --bs-border-opacity: 0.5;
}

.border-opacity-75 {
  --bs-border-opacity: 0.75;
}

.border-opacity-100 {
  --bs-border-opacity: 1;
}

.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;
}

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

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

.min-vw-100 {
  min-width: 100vw !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;
}

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

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

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

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

.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-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;
}

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

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

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !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;
}

.justify-content-evenly {
  justify-content: space-evenly !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;
}

.order-first {
  order: -1 !important;
}

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

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.me-auto {
  margin-right: auto !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.ms-auto {
  margin-left: auto !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

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

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

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

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

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

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

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

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

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

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: #6c757d !important;
}

.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}

.text-opacity-25 {
  --bs-text-opacity: 0.25;
}

.text-opacity-50 {
  --bs-text-opacity: 0.5;
}

.text-opacity-75 {
  --bs-text-opacity: 0.75;
}

.text-opacity-100 {
  --bs-text-opacity: 1;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

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

.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

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

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

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

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: var(--bs-border-radius) !important;
}

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

.rounded-1 {
  border-radius: var(--bs-border-radius-sm) !important;
}

.rounded-2 {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-3 {
  border-radius: var(--bs-border-radius-lg) !important;
}

.rounded-4 {
  border-radius: var(--bs-border-radius-xl) !important;
}

.rounded-5 {
  border-radius: var(--bs-border-radius-2xl) !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: var(--bs-border-radius-pill) !important;
}

.rounded-top {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-end {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-bottom {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-start {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }

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

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

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

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

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

  .d-sm-grid {
    display: grid !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .order-sm-first {
    order: -1 !important;
  }

  .order-sm-0 {
    order: 0 !important;
  }

  .order-sm-1 {
    order: 1 !important;
  }

  .order-sm-2 {
    order: 2 !important;
  }

  .order-sm-3 {
    order: 3 !important;
  }

  .order-sm-4 {
    order: 4 !important;
  }

  .order-sm-5 {
    order: 5 !important;
  }

  .order-sm-last {
    order: 6 !important;
  }

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

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

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

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

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

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

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

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

  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

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

  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

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

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

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

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

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

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

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

  .me-sm-0 {
    margin-right: 0 !important;
  }

  .me-sm-1 {
    margin-right: 0.25rem !important;
  }

  .me-sm-2 {
    margin-right: 0.5rem !important;
  }

  .me-sm-3 {
    margin-right: 1rem !important;
  }

  .me-sm-4 {
    margin-right: 1.5rem !important;
  }

  .me-sm-5 {
    margin-right: 3rem !important;
  }

  .me-sm-auto {
    margin-right: auto !important;
  }

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

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

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

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

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

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

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

  .ms-sm-0 {
    margin-left: 0 !important;
  }

  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }

  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }

  .ms-sm-3 {
    margin-left: 1rem !important;
  }

  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }

  .ms-sm-5 {
    margin-left: 3rem !important;
  }

  .ms-sm-auto {
    margin-left: auto !important;
  }

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

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

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

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

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

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

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

  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

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

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

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

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

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

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

  .pe-sm-0 {
    padding-right: 0 !important;
  }

  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pe-sm-3 {
    padding-right: 1rem !important;
  }

  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pe-sm-5 {
    padding-right: 3rem !important;
  }

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

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

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

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

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

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

  .ps-sm-0 {
    padding-left: 0 !important;
  }

  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }

  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }

  .ps-sm-3 {
    padding-left: 1rem !important;
  }

  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }

  .ps-sm-5 {
    padding-left: 3rem !important;
  }

  .gap-sm-0 {
    gap: 0 !important;
  }

  .gap-sm-1 {
    gap: 0.25rem !important;
  }

  .gap-sm-2 {
    gap: 0.5rem !important;
  }

  .gap-sm-3 {
    gap: 1rem !important;
  }

  .gap-sm-4 {
    gap: 1.5rem !important;
  }

  .gap-sm-5 {
    gap: 3rem !important;
  }

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

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

  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }

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

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

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

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

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

  .d-md-grid {
    display: grid !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .order-md-first {
    order: -1 !important;
  }

  .order-md-0 {
    order: 0 !important;
  }

  .order-md-1 {
    order: 1 !important;
  }

  .order-md-2 {
    order: 2 !important;
  }

  .order-md-3 {
    order: 3 !important;
  }

  .order-md-4 {
    order: 4 !important;
  }

  .order-md-5 {
    order: 5 !important;
  }

  .order-md-last {
    order: 6 !important;
  }

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

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

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

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

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

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

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

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

  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

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

  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

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

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

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

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

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

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

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

  .me-md-0 {
    margin-right: 0 !important;
  }

  .me-md-1 {
    margin-right: 0.25rem !important;
  }

  .me-md-2 {
    margin-right: 0.5rem !important;
  }

  .me-md-3 {
    margin-right: 1rem !important;
  }

  .me-md-4 {
    margin-right: 1.5rem !important;
  }

  .me-md-5 {
    margin-right: 3rem !important;
  }

  .me-md-auto {
    margin-right: auto !important;
  }

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

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

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

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

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

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

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

  .ms-md-0 {
    margin-left: 0 !important;
  }

  .ms-md-1 {
    margin-left: 0.25rem !important;
  }

  .ms-md-2 {
    margin-left: 0.5rem !important;
  }

  .ms-md-3 {
    margin-left: 1rem !important;
  }

  .ms-md-4 {
    margin-left: 1.5rem !important;
  }

  .ms-md-5 {
    margin-left: 3rem !important;
  }

  .ms-md-auto {
    margin-left: auto !important;
  }

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

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

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

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

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

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

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

  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

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

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

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

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

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

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

  .pe-md-0 {
    padding-right: 0 !important;
  }

  .pe-md-1 {
    padding-right: 0.25rem !important;
  }

  .pe-md-2 {
    padding-right: 0.5rem !important;
  }

  .pe-md-3 {
    padding-right: 1rem !important;
  }

  .pe-md-4 {
    padding-right: 1.5rem !important;
  }

  .pe-md-5 {
    padding-right: 3rem !important;
  }

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

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

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

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

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

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

  .ps-md-0 {
    padding-left: 0 !important;
  }

  .ps-md-1 {
    padding-left: 0.25rem !important;
  }

  .ps-md-2 {
    padding-left: 0.5rem !important;
  }

  .ps-md-3 {
    padding-left: 1rem !important;
  }

  .ps-md-4 {
    padding-left: 1.5rem !important;
  }

  .ps-md-5 {
    padding-left: 3rem !important;
  }

  .gap-md-0 {
    gap: 0 !important;
  }

  .gap-md-1 {
    gap: 0.25rem !important;
  }

  .gap-md-2 {
    gap: 0.5rem !important;
  }

  .gap-md-3 {
    gap: 1rem !important;
  }

  .gap-md-4 {
    gap: 1.5rem !important;
  }

  .gap-md-5 {
    gap: 3rem !important;
  }

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

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

  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }

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

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

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

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

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

  .d-lg-grid {
    display: grid !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .order-lg-first {
    order: -1 !important;
  }

  .order-lg-0 {
    order: 0 !important;
  }

  .order-lg-1 {
    order: 1 !important;
  }

  .order-lg-2 {
    order: 2 !important;
  }

  .order-lg-3 {
    order: 3 !important;
  }

  .order-lg-4 {
    order: 4 !important;
  }

  .order-lg-5 {
    order: 5 !important;
  }

  .order-lg-last {
    order: 6 !important;
  }

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

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

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

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

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

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

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

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

  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

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

  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

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

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

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

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

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

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

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

  .me-lg-0 {
    margin-right: 0 !important;
  }

  .me-lg-1 {
    margin-right: 0.25rem !important;
  }

  .me-lg-2 {
    margin-right: 0.5rem !important;
  }

  .me-lg-3 {
    margin-right: 1rem !important;
  }

  .me-lg-4 {
    margin-right: 1.5rem !important;
  }

  .me-lg-5 {
    margin-right: 3rem !important;
  }

  .me-lg-auto {
    margin-right: auto !important;
  }

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

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

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

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

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

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

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

  .ms-lg-0 {
    margin-left: 0 !important;
  }

  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }

  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }

  .ms-lg-3 {
    margin-left: 1rem !important;
  }

  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }

  .ms-lg-5 {
    margin-left: 3rem !important;
  }

  .ms-lg-auto {
    margin-left: auto !important;
  }

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

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

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

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

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

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

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

  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

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

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

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

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

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

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

  .pe-lg-0 {
    padding-right: 0 !important;
  }

  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pe-lg-3 {
    padding-right: 1rem !important;
  }

  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pe-lg-5 {
    padding-right: 3rem !important;
  }

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

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

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

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

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

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

  .ps-lg-0 {
    padding-left: 0 !important;
  }

  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }

  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }

  .ps-lg-3 {
    padding-left: 1rem !important;
  }

  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }

  .ps-lg-5 {
    padding-left: 3rem !important;
  }

  .gap-lg-0 {
    gap: 0 !important;
  }

  .gap-lg-1 {
    gap: 0.25rem !important;
  }

  .gap-lg-2 {
    gap: 0.5rem !important;
  }

  .gap-lg-3 {
    gap: 1rem !important;
  }

  .gap-lg-4 {
    gap: 1.5rem !important;
  }

  .gap-lg-5 {
    gap: 3rem !important;
  }

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

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

  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }

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

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

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

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

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

  .d-xl-grid {
    display: grid !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .order-xl-first {
    order: -1 !important;
  }

  .order-xl-0 {
    order: 0 !important;
  }

  .order-xl-1 {
    order: 1 !important;
  }

  .order-xl-2 {
    order: 2 !important;
  }

  .order-xl-3 {
    order: 3 !important;
  }

  .order-xl-4 {
    order: 4 !important;
  }

  .order-xl-5 {
    order: 5 !important;
  }

  .order-xl-last {
    order: 6 !important;
  }

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

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

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

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

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

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

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

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

  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

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

  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

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

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

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

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

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

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

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

  .me-xl-0 {
    margin-right: 0 !important;
  }

  .me-xl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xl-3 {
    margin-right: 1rem !important;
  }

  .me-xl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xl-5 {
    margin-right: 3rem !important;
  }

  .me-xl-auto {
    margin-right: auto !important;
  }

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

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

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

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

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

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

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

  .ms-xl-0 {
    margin-left: 0 !important;
  }

  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xl-3 {
    margin-left: 1rem !important;
  }

  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xl-5 {
    margin-left: 3rem !important;
  }

  .ms-xl-auto {
    margin-left: auto !important;
  }

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

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

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

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

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

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

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

  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

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

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

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

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

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

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

  .pe-xl-0 {
    padding-right: 0 !important;
  }

  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xl-3 {
    padding-right: 1rem !important;
  }

  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xl-5 {
    padding-right: 3rem !important;
  }

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

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

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

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

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

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

  .ps-xl-0 {
    padding-left: 0 !important;
  }

  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xl-3 {
    padding-left: 1rem !important;
  }

  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xl-5 {
    padding-left: 3rem !important;
  }

  .gap-xl-0 {
    gap: 0 !important;
  }

  .gap-xl-1 {
    gap: 0.25rem !important;
  }

  .gap-xl-2 {
    gap: 0.5rem !important;
  }

  .gap-xl-3 {
    gap: 1rem !important;
  }

  .gap-xl-4 {
    gap: 1.5rem !important;
  }

  .gap-xl-5 {
    gap: 3rem !important;
  }

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

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

  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }

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

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

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

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

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

  .d-xxl-grid {
    display: grid !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .order-xxl-first {
    order: -1 !important;
  }

  .order-xxl-0 {
    order: 0 !important;
  }

  .order-xxl-1 {
    order: 1 !important;
  }

  .order-xxl-2 {
    order: 2 !important;
  }

  .order-xxl-3 {
    order: 3 !important;
  }

  .order-xxl-4 {
    order: 4 !important;
  }

  .order-xxl-5 {
    order: 5 !important;
  }

  .order-xxl-last {
    order: 6 !important;
  }

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

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

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

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

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

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

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

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

  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

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

  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

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

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

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

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

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

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

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

  .me-xxl-0 {
    margin-right: 0 !important;
  }

  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xxl-3 {
    margin-right: 1rem !important;
  }

  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xxl-5 {
    margin-right: 3rem !important;
  }

  .me-xxl-auto {
    margin-right: auto !important;
  }

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

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

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

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

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

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

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

  .ms-xxl-0 {
    margin-left: 0 !important;
  }

  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xxl-3 {
    margin-left: 1rem !important;
  }

  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xxl-5 {
    margin-left: 3rem !important;
  }

  .ms-xxl-auto {
    margin-left: auto !important;
  }

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

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

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

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

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

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

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

  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

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

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

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

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

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

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

  .pe-xxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xxl-3 {
    padding-right: 1rem !important;
  }

  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xxl-5 {
    padding-right: 3rem !important;
  }

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

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

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

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

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

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

  .ps-xxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xxl-3 {
    padding-left: 1rem !important;
  }

  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xxl-5 {
    padding-left: 3rem !important;
  }

  .gap-xxl-0 {
    gap: 0 !important;
  }

  .gap-xxl-1 {
    gap: 0.25rem !important;
  }

  .gap-xxl-2 {
    gap: 0.5rem !important;
  }

  .gap-xxl-3 {
    gap: 1rem !important;
  }

  .gap-xxl-4 {
    gap: 1.5rem !important;
  }

  .gap-xxl-5 {
    gap: 3rem !important;
  }

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

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

  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }

  .fs-2 {
    font-size: 2rem !important;
  }

  .fs-3 {
    font-size: 1.75rem !important;
  }

  .fs-4 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }

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

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

  .d-print-grid {
    display: grid !important;
  }

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

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

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

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

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

  .d-print-none {
    display: none !important;
  }
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/fonts/Roboto-Light.woff2?a41e30c85c0ac1edf0ef600fc3deaf03) format("woff2");
}
@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/fa-brands-400.woff2?477be48dc73cc51db91ede255f5515a5) format("woff2");
}
@font-face {
  font-family: "Font Awesome 6 Regular";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/fa-regular-400.woff2?8092d7aa807d71d5226a10e859b6f090) format("woff2");
}
@font-face {
  font-family: "Font Awesome 6 Solid";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/fonts/fa-solid-900.woff2?333fc0d20c94cd380035f556895956c8) format("woff2");
}
@font-face {
  font-family: "Icomoon";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/icomoon.woff2?ce4a669e994fae3ae02a85fb87c2bdd0) format("woff2");
}
.container-wrapper {
  max-width: 950px;
  margin: 0 auto;
  padding: 0;
}
@media (min-width: 1200px) {
  .container-wrapper {
    max-width: 1420px;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 800;
  background-color: #fff;
  filter: alpha(opacity=30);
  opacity: 0.7;
  transition: 0.2s;
}
@media (min-width: 1200px) {
  .overlay {
    display: none;
  }
}

.menu-open {
  overflow: hidden;
  height: 100vh;
}

.container-wrapper-post {
  max-width: 950px;
  margin: 0 auto;
  padding: 0;
}
@media (min-width: 1200px) {
  .container-wrapper-post {
    max-width: 1180px;
  }
}

.audit-btn {
  cursor: pointer;
}

.modal-open {
  padding-right: 0 !important;
}

.modal {
  padding-right: 0 !important;
}
.modal .modal-dialog.custom-modal-dialog {
  max-width: 750px;
}
.modal .modal-dialog.custom-modal-dialog .modal-body {
  height: 80vh;
  overflow-y: auto;
}
.modal .modal-dialog.job-application-modal-dialog {
  max-width: 500px !important;
}
.modal .modal-dialog.campaign-footer-modal-dialog {
  max-width: 550px !important;
}
.modal .modal-dialog.countries-modal {
  max-width: 585px !important;
}
.modal .modal-dialog.blog-tags-modal {
  max-width: 600px !important;
  z-index: 99999999;
}
@media (max-width: 576px) {
  .modal .modal-dialog.blog-tags-modal {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
  }
}
@media (max-width: 576px) {
  .modal .modal-dialog.blog-tags-modal .modal-content {
    height: auto;
    min-height: 100%;
    border-radius: 0 !important;
    margin: 0;
  }
}
@media (max-width: 576px) {
  .modal .modal-dialog.blog-tags-modal .modal-content .modal-header {
    border-radius: 0;
  }
}
@media (max-width: 576px) and (max-width: 576px) {
  .modal .modal-dialog.blog-tags-modal .modal-content .modal-header .btn-close {
    position: initial;
    margin: 20px 20px 0 auto;
    background-color: #87919C;
    opacity: 0.4;
  }
  .modal .modal-dialog.blog-tags-modal .modal-content .modal-header .btn-close:before {
    color: #283B41;
  }
}
.modal .modal-dialog.employee-details-modal {
  max-width: 760px !important;
}
@media (max-width: 576px) {
  .modal .modal-dialog.employee-details-modal {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
  }
}
@media (max-width: 576px) {
  .modal .modal-dialog.employee-details-modal .modal-content {
    height: auto;
    min-height: 100%;
    border-radius: 0;
    margin: 0;
  }
}
@media (max-width: 576px) {
  .modal .modal-dialog.employee-details-modal .modal-content .modal-header {
    border-radius: 0;
  }
}
@media (max-width: 576px) and (max-width: 576px) {
  .modal .modal-dialog.employee-details-modal .modal-content .modal-header .btn-close {
    position: initial;
    margin: 20px 20px 0 auto;
    background-color: #87919C;
    opacity: 0.4;
  }
  .modal .modal-dialog.employee-details-modal .modal-content .modal-header .btn-close:before {
    color: #283B41;
  }
}
.modal .modal-dialog:not(.custom-modal-dialog, .job-application-modal-dialog, .employee-details-modal, .campaign-footer-modal-dialog, .countries-modal, .blog-tags-modal) {
  max-width: 978px;
}
.modal .modal-dialog .modal-content {
  border: none;
  border-radius: 30px;
  margin: 15px;
}
@media (min-width: 768px) {
  .modal .modal-dialog .modal-content {
    margin: 10px 80px;
  }
}
.modal .modal-dialog .modal-content .modal-header {
  border: none;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  background-color: #E9FFE6;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0;
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 768px) {
  .modal .modal-dialog .modal-content .modal-header {
    flex-direction: row;
  }
}
.modal .modal-dialog .modal-content .modal-header h5, .modal .modal-dialog .modal-content .modal-header .h5 {
  font-size: 20px;
  padding: 20px 30px;
  margin-bottom: 0;
  font-weight: 900;
  color: #283B41;
}
@media (min-width: 768px) {
  .modal .modal-dialog .modal-content .modal-header h5, .modal .modal-dialog .modal-content .modal-header .h5 {
    margin: 0;
  }
}
.modal .modal-dialog .modal-content .modal-header .btn-close {
  position: absolute;
  top: -55px;
  right: 0;
  height: 40px;
  width: 40px;
  background-color: #87919C;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  order: -1;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .modal .modal-dialog .modal-content .modal-header .btn-close {
    order: 0;
    top: 0;
    right: -60px;
  }
}
.modal .modal-dialog .modal-content .modal-header .btn-close:before {
  display: block;
  font-family: "Font Awesome 6 Solid";
  content: "";
  color: #fff;
}
.modal .modal-dialog .modal-content .modal-body:not(.modal-body-padding) {
  background-color: transparent;
  padding-top: 55%;
}
.modal .modal-dialog .modal-content .modal-body:not(.modal-body-padding) iframe {
  border-radius: 29px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.modal .modal-dialog .modal-content .modal-body.modal-body-padding {
  padding: 30px;
}
.modal .modal-dialog .modal-content .modal-body.chiptuning-01 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%px 100%px;
  display: block;
  height: 100%px;
  width: 100%px;
}
.webp.webpalpha .modal .modal-dialog .modal-content .modal-body.chiptuning-01 {
  background-image: url("/images/chiptuning-01@1x.webp") !important;
}
.no-js .modal .modal-dialog .modal-content .modal-body.chiptuning-01, .no-webp .modal .modal-dialog .modal-content .modal-body.chiptuning-01, .no-webpalpha .modal .modal-dialog .modal-content .modal-body.chiptuning-01 {
  background-image: url("/images/chiptuning-01@1x.png") !important;
}
.modal .modal-dialog .modal-content .modal-body.chiptuning-02 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%px 100%px;
  display: block;
  height: 100%px;
  width: 100%px;
}
.webp.webpalpha .modal .modal-dialog .modal-content .modal-body.chiptuning-02 {
  background-image: url("/images/chiptuning-02@1x.webp") !important;
}
.no-js .modal .modal-dialog .modal-content .modal-body.chiptuning-02, .no-webp .modal .modal-dialog .modal-content .modal-body.chiptuning-02, .no-webpalpha .modal .modal-dialog .modal-content .modal-body.chiptuning-02 {
  background-image: url("/images/chiptuning-02@1x.png") !important;
}
.modal .modal-dialog .modal-content .modal-body.blogpost-banner-01 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 670px 200px;
  display: block;
  height: 200px;
  width: 670px;
  margin-bottom: 20px;
}
.webp.webpalpha .modal .modal-dialog .modal-content .modal-body.blogpost-banner-01 {
  background-image: url("/images/blogpost-banner-01@1x.webp") !important;
}
.no-js .modal .modal-dialog .modal-content .modal-body.blogpost-banner-01, .no-webp .modal .modal-dialog .modal-content .modal-body.blogpost-banner-01, .no-webpalpha .modal .modal-dialog .modal-content .modal-body.blogpost-banner-01 {
  background-image: url("/images/blogpost-banner-01@1x.png") !important;
}
.modal .modal-dialog .modal-content .modal-body p {
  color: #87919C;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.7;
}
@media (min-width: 1200px) {
  .modal .modal-dialog .modal-content .modal-body p {
    font-size: 18px;
    line-height: 1.5;
  }
}
.modal .modal-dialog .modal-content .modal-footer {
  border: none;
}

.first-section {
  padding-top: 150px;
}

html {
  background-color: #fff;
  max-width: 100%;
  overflow-x: hidden;
}
html #fc_frame.fc-widget-normal {
  bottom: 90px !important;
  z-index: 1000 !important;
}
html #fc_frame.fc-widget-normal.fc-open {
  bottom: 0 !important;
  z-index: 20000 !important;
  padding-top: 20px !important;
}
html body {
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto;
  background-color: #fff;
  font-family: "Roboto", sans-serif;
}
html body.position-fixed {
  width: 100%;
}

section {
  overflow: hidden;
  margin: 0 20px;
  padding: 20px;
}

.sign-up-global {
  text-decoration: none;
  font-size: 15px;
  padding: 15px 27px;
  font-weight: 900;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  color: #fff;
  background-color: #FF8C03;
  display: inline-flex;
  transition: 0.2s all;
}
.sign-up-global:not(.no-glow) {
  box-shadow: 0 15px 20px #FF8C034D;
}
.sign-up-global.green-color {
  background-color: #45BF52;
  box-shadow: 0 15px 20px rgba(69, 191, 82, 0.3);
  padding: 13px 27px 10px 27px;
}
.sign-up-global.green-color:hover {
  color: #fff;
  box-shadow: 0 3px 0 0 #338C3C;
  background-color: #45BF52;
}
.sign-up-global.green-color:active {
  color: #fff;
  box-shadow: 0 3px 0 0 #338C3C;
  background-color: #45BF52;
  transform: translateY(3px);
}
.sign-up-global .btn-image-user {
  margin-right: 15px;
}
.sign-up-global .btn-image-user:after {
  font-family: "Icomoon";
  content: "";
  font-size: 18px;
  font-weight: 400;
}
.sign-up-global .btn-image-check-circle {
  margin-right: 10px;
}
.sign-up-global .btn-image-check-circle:after {
  font-family: "Icomoon";
  content: "";
  font-size: 21px;
  font-weight: 400;
  margin-right: 4px;
}
.sign-up-global .btn-image-mail {
  margin-right: 10px;
  margin-top: 2px;
}
.sign-up-global .btn-image-mail:after {
  font-family: "Icomoon";
  content: "";
  font-size: 14px;
  font-weight: 100;
  margin-right: 4px;
}
.sign-up-global .btn-image-add {
  margin-right: 10px;
  margin-top: 2px;
}
.sign-up-global .btn-image-add:after {
  font-family: "Icomoon";
  content: "";
  font-size: 14px;
  font-weight: 400;
  margin-right: 4px;
}
.sign-up-global:hover {
  color: #fff;
  box-shadow: 0 3px 0 0 #CC7002;
  background-color: #F28503;
}
.sign-up-global:active {
  color: #fff;
  box-shadow: 0 0 0 0 #CC7002;
  background-color: #F28503;
  transform: translateY(3px);
}

.btn-mylead {
  text-decoration: none;
  font-size: 15px;
  padding: 14px 27px;
  font-weight: 900;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  color: #fff;
  background-color: #45BF52;
  display: inline-flex;
  transition: 0.2s all;
  box-shadow: 0 15px 20px #45BF524D;
}
.btn-mylead.contact-btn {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
}
.btn-mylead:hover {
  color: #fff;
  box-shadow: 0 3px 0 0 #338C3C;
  background-color: #4ACC58;
}
.btn-mylead:active {
  color: #fff;
  box-shadow: 0 0 0 0 #338C3C;
  background-color: #4ACC58;
  transform: translateY(3px);
}
.btn-mylead svg {
  margin-right: 10px;
  position: relative;
  top: -1px;
}
.btn-mylead svg g {
  transition: 0.2s all;
}

.prev-button-mobile {
  background-color: transparent;
  text-decoration: underline !important;
  color: #87919C !important;
}
.prev-button-mobile.white-background {
  background-color: #fff;
  text-decoration: underline !important;
  color: #fff;
}

.next-button-mobile {
  background-color: #fff;
}
.next-button-mobile.white-background {
  background-color: #F4F6F9;
}

.next-button-mobile, .prev-button-mobile {
  color: #87919C;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  border-radius: 28px;
  margin-bottom: 10px;
  text-decoration: none;
  transition: 0.2s all;
}
.next-button-mobile:disabled, .prev-button-mobile:disabled {
  opacity: 0.1;
  pointer-events: none;
}

.border-radius-50-30 {
  border-radius: 30px;
}
@media (min-width: 1200px) {
  .border-radius-50-30 {
    border-radius: 50px;
  }
}

.border-radius-50-20 {
  border-radius: 20px;
}
@media (min-width: 1200px) {
  .border-radius-50-20 {
    border-radius: 50px;
  }
}

.border-radius-50-20-break-lg {
  border-radius: 20px;
}
@media (min-width: 992px) {
  .border-radius-50-20-break-lg {
    border-radius: 50px;
  }
}

.border-radius-50-20-break-md {
  border-radius: 20px;
}
@media (min-width: 768px) {
  .border-radius-50-20-break-md {
    border-radius: 50px;
  }
}

.border-radius-50-0 {
  border-radius: 0;
}
@media (min-width: 576px) {
  .border-radius-50-0 {
    border-radius: 50px;
  }
}

.btn-mylead-2 {
  text-decoration: none;
  font-size: 15px;
  padding: 11px 17px;
  font-weight: 700;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  color: #45BF52;
  background-color: transparent;
  display: inline-flex;
  border: 3px solid #4ACC58;
  transition: 0.2s all;
}
.btn-mylead-2:hover {
  color: #fff;
  box-shadow: 0 3px 0 0 #338C3C;
  background-color: #4ACC58;
}
.btn-mylead-2:active {
  color: #fff;
  box-shadow: 0 0 0 0 #338C3C;
  background-color: #4ACC58;
  transform: translateY(3px);
}

.btn-show-more-global {
  background-color: #F4F6F9;
  color: #87919C !important;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  border-radius: 30px;
  margin-bottom: 20px;
  text-decoration: none;
  transition: 0.2s all;
}
.btn-show-more-global:hover {
  background-color: #87919C;
  color: #fff !important;
}
.btn-show-more-global[aria-expanded=true] {
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
  display: none;
}

@media (min-width: 768px) and (max-width: 991px) {
  .tablet-padding {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
}

.tablet-padding-2 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
@media (min-width: 768px) and (max-width: 991px) {
  .tablet-padding-2 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
}

.title-section-mylead h5, .title-section-mylead .h5 {
  color: #A8B4C1;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 26px;
  font-size: 14px;
}
.title-section-mylead h4, .title-section-mylead .h4 {
  color: #283B41;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
}
.title-section-mylead h2, .title-section-mylead .h2 {
  color: #283B41;
  font-size: 26px;
  line-height: 38px;
  font-weight: 500;
  margin: 0;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .title-section-mylead h2, .title-section-mylead .h2 {
    line-height: 55px;
    font-size: 34px;
  }
}
@media (min-width: 1200px) {
  .title-section-mylead h2, .title-section-mylead .h2 {
    line-height: 60px;
    font-size: 40px;
  }
}
.title-section-mylead h2 .underline, .title-section-mylead .h2 .underline {
  font-weight: 900;
  border-bottom: 4px solid #45BF52;
}
.title-section-mylead p {
  color: #87919C;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.7;
}
@media (min-width: 1200px) {
  .title-section-mylead p {
    font-size: 18px;
    line-height: 1.5;
  }
}

.font-weight-500 {
  font-weight: 500;
}

.underline-global {
  border-bottom: 4px solid #45BF52;
}

.underline-global-3 {
  border-bottom: 3px solid #45BF52;
}

.nested-menu-dropdown-item {
  list-style-type: none !important;
}

form .text-danger, .form-info .text-danger {
  color: #f14242;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  line-height: 19px;
}

.text-link {
  color: #45BF52 !important;
  text-decoration: none !important;
}

:root {
  --gray-dark: #A8B4C1;
  --gray: #dbdce0;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--gray) transparent;
}

::-webkit-scrollbar-track {
  background-color: transparent !important;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: rgba(255, 255, 255, 0) !important;
}

::-webkit-scrollbar-thumb {
  background-color: var(--gray);
  border-radius: 16px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--gray-dark);
}

.tooltip {
  display: block !important;
  z-index: 10000;
}
.tooltip .tooltip-inner {
  background: #fff;
  color: #A8B4C1;
  border-radius: 16px;
  padding: 5px 10px 4px;
  box-shadow: 0 18px 40px 0 rgba(40, 59, 65, 0.15);
  border-radius: 10px;
  max-width: 280px;
  text-align: center;
}
.tooltip .tooltip-arrow {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  margin: 5px;
  border-color: #fff;
  z-index: 1;
}
.tooltip[x-placement^=top] {
  margin-bottom: 5px;
}
.tooltip[x-placement^=top] .tooltip-arrow {
  border-width: 5px 5px 0 5px;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: transparent !important;
  bottom: -5px;
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
}
.tooltip[x-placement^=bottom] {
  margin-top: 5px;
}
.tooltip[x-placement^=bottom] .tooltip-arrow {
  border-width: 0 5px 5px 5px;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  border-top-color: transparent !important;
  top: -5px;
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
}
.tooltip[x-placement^=right] {
  margin-left: 5px;
}
.tooltip[x-placement^=right] .tooltip-arrow {
  border-width: 5px 5px 5px 0;
  border-left-color: transparent !important;
  border-top-color: transparent !important;
  border-bottom-color: transparent !important;
  left: -5px;
  top: calc(50% - 5px);
  margin-left: 0;
  margin-right: 0;
}
.tooltip[x-placement^=left] {
  margin-right: 5px;
}
.tooltip[x-placement^=left] .tooltip-arrow {
  border-width: 5px 0 5px 5px;
  border-top-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: transparent !important;
  right: -5px;
  top: calc(50% - 5px);
  margin-left: 0;
  margin-right: 0;
}
.tooltip.popover .popover-inner {
  background: #f9f9f9;
  color: black;
  padding: 24px;
  border-radius: 5px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}
.tooltip.popover .popover-arrow {
  border-color: #f9f9f9;
}
.tooltip[aria-hidden=true] {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.15s, visibility 0.15s;
}
.tooltip[aria-hidden=false] {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.15s;
}

@media (max-width: 576px) {
  .padding-mobile-0 {
    padding: 0 !important;
  }
}

@media (max-width: 576px) {
  .padding-bottom-0-mobile {
    padding-bottom: 0 !important;
  }
}

@media (max-width: 576px) {
  .padding-top-0-mobile {
    padding-top: 0 !important;
  }
}

.number-box {
  width: 200px;
  height: auto;
  position: relative;
  margin: 0 auto;
}
.number-box h2, .number-box .h2 {
  font-size: 80px;
  font-weight: 900;
  text-transform: uppercase;
  color: #87919C;
  z-index: 1;
  opacity: 10%;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .number-box h2, .number-box .h2 {
    font-size: 100px;
  }
}
.number-box .front-text-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.number-box .front-text-wrapper h3, .number-box .front-text-wrapper .h3 {
  color: black;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .number-box .front-text-wrapper h3, .number-box .front-text-wrapper .h3 {
    font-size: 40px;
  }
}
.number-box .front-text-wrapper h6, .number-box .front-text-wrapper .h6 {
  color: #45BF52;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 9px;
  margin-top: 5px;
}
@media (min-width: 768px) {
  .number-box .front-text-wrapper h6, .number-box .front-text-wrapper .h6 {
    font-size: 13px;
    margin-bottom: 22px;
  }
}

.chat-fc-form-outer {
  border-radius: 20px !important;
  font-family: "Roboto", Arial, sans-serif !important;
}

.chat-fc-form-outer div.fc-form {
  border-bottom-left-radius: 20px !important;
  border-bottom-right-radius: 20px !important;
}
.chat-fc-form-outer div.fc-form p {
  line-height: 1.2;
  margin-bottom: 24px;
  margin-top: 20px;
  color: #87919c !important;
  font-weight: 400 !important;
}
.chat-fc-form-outer div.fc-form ul li input {
  padding: 8px 16px !important;
  width: 100%;
  border: 2px solid #a8b4c1 !important;
  border-radius: 20px !important;
}
.chat-fc-form-outer div.fc-form ul li label {
  font-weight: 400 !important;
  color: #87919c !important;
}
.chat-fc-form-outer div.fc-form a.fc-button {
  display: block;
  width: 100%;
  border-radius: 20px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
}

.chat-fc-form-outer p.fc-header {
  font-family: "Roboto", Arial, sans-serif;
  border-top-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
  font-size: 16px !important;
  padding: 14px 20px !important;
}

.navbar {
  max-width: 1920px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: transparent !important;
  padding: 0 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1049;
  transition: 0.3s;
}
@media (min-width: 576px) {
  .navbar {
    padding: 15px 50px;
  }
}
.navbar.nav-scrolled {
  background-color: #fff !important;
  transition: 0.3s;
  box-shadow: 0px 19px 26px -30px #42445a;
}
@media (min-width: 576px) {
  .navbar.nav-scrolled {
    padding: 0 50px;
  }
}
@media (min-width: 1200px) {
  .navbar.menu-black-scrolled .navbar-collapse .navbar-nav .nav-item .nav-link {
    color: #283B41;
  }
  .navbar.menu-black-scrolled .navbar-collapse .navbar-nav .nav-item .dropdown-menu {
    border: none;
  }
  .navbar.menu-black-scrolled .navbar-collapse .navbar-nav .nav-item.dropdown .dropdown-toggle:after {
    background-position: center !important;
    background-repeat: no-repeat;
    background-size: 13px 9px !important;
    display: block;
    height: 9px;
    width: 13px;
    background-image: url("/images/svg/chevron-right-black.svg") !important;
  }
  .navbar.menu-black-scrolled .navbar-collapse .navbar-nav .nav-item.dropdown .dropdown-toggle.lang {
    background-color: rgba(191, 191, 191, 0.2) !important;
  }
  .navbar.menu-black-scrolled .navbar-collapse .navbar-nav .nav-item.dropdown .dropdown-toggle.lang span {
    color: #283B41;
  }
  .navbar.menu-black-scrolled .navbar-collapse .navbar-nav .nav-item.my-account .nav-link {
    background-color: #6DBE5F;
  }
}
@media (min-width: 1200px) {
  .navbar.menu-black .navbar-collapse .navbar-nav .nav-item .nav-link {
    color: #283B41;
  }
  .navbar.menu-black .navbar-collapse .navbar-nav .nav-item .dropdown-menu {
    border: none;
  }
  .navbar.menu-black .navbar-collapse .navbar-nav .nav-item.dropdown .dropdown-toggle:after {
    background-position: center !important;
    background-repeat: no-repeat;
    background-size: 13px 9px !important;
    display: block;
    height: 9px;
    width: 13px;
    background-image: url("/images/svg/chevron-right-black.svg") !important;
  }
  .navbar.menu-black .navbar-collapse .navbar-nav .nav-item.dropdown .dropdown-toggle.lang {
    background-color: #fff;
  }
  .navbar.menu-black .navbar-collapse .navbar-nav .nav-item.dropdown .dropdown-toggle.lang span {
    color: #283B41;
  }
  .navbar.menu-black .navbar-collapse .navbar-nav .nav-item.my-account .nav-link {
    background-color: #6DBE5F;
  }
}
@media all and (min-width: 1200px) {
  .navbar .nav-item .dropdown-menu {
    display: none;
  }
  .navbar .nav-item:hover .dropdown-menu {
    display: block;
  }
  .navbar .nav-item .dropdown-menu {
    margin-top: 0;
  }
}
.navbar .navbar-brand {
  z-index: 9;
  padding: 18px 0;
  margin: 0;
  transition: 0.2s;
}
@media (min-width: 576px) {
  .navbar .navbar-brand {
    padding: 27px 0;
  }
}
.navbar .navbar-brand.brand-logo {
  opacity: 0.6;
}
.navbar .navbar-brand img {
  width: 131px;
  height: 35px;
}
@media (min-width: 576px) {
  .navbar .navbar-brand img {
    width: 165px;
    height: 44px;
  }
}
.navbar .navbar-toggler {
  padding: 0;
  border: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #45BF52;
  box-shadow: 0 15px 20px #45BF524D;
  display: flex;
  z-index: 1000;
  position: relative;
}
@media (min-width: 576px) {
  .navbar .navbar-toggler {
    width: 50px;
    height: 50px;
  }
}
@media (min-width: 1200px) {
  .navbar .navbar-toggler {
    display: none;
  }
}
.navbar .navbar-toggler:hover {
  background-color: #6DBE5F;
}
.navbar .navbar-toggler:hover .line {
  background-color: #fff !important;
}
.navbar .navbar-toggler .line {
  transition: 0.3s all;
  display: block;
  height: 2px;
  border-radius: 0;
  padding: 0;
  width: 15px;
  background: white;
  transform-origin: center;
  margin: 2px;
  position: relative;
}
@media (min-width: 576px) {
  .navbar .navbar-toggler .line {
    margin: 3px;
  }
}
.navbar .navbar-toggler:not([aria-expanded=false]) .line.line-1 {
  transform: rotate(225deg);
  transition: 0.7s;
  top: 4px;
}
@media (min-width: 576px) {
  .navbar .navbar-toggler:not([aria-expanded=false]) .line.line-1 {
    top: 5px;
  }
}
.navbar .navbar-toggler:not([aria-expanded=false]) .line.line-2 {
  display: none;
}
.navbar .navbar-toggler:not([aria-expanded=false]) .line.line-3 {
  transform: rotate(-225deg);
  transition: 0.7s;
  top: -2px;
}
@media (min-width: 576px) {
  .navbar .navbar-toggler:not([aria-expanded=false]) .line.line-3 {
    top: -3px;
  }
}
@media (min-width: 1200px) {
  .navbar .navbar-collapse {
    justify-content: flex-end;
  }
}
.navbar .navbar-collapse .navbar-nav.navbar-nav-2 {
  z-index: 9;
  gap: 15px;
}
@media (min-width: 1200px) {
  .navbar .navbar-collapse .navbar-nav.navbar-nav-2 {
    align-items: center;
  }
}
@media (max-width: 1199px) {
  .navbar .navbar-collapse .navbar-nav.navbar-nav-2 {
    margin-top: 20px;
    justify-content: space-between;
    height: 100%;
  }
}
.navbar .navbar-collapse .navbar-nav.navbar-nav-2 .nav-item.dropdown a.nav-link-my-account {
  padding: 5px 0 5px 25px;
}
@media (min-width: 1200px) {
  .navbar .navbar-collapse .navbar-nav:first-child {
    position: absolute;
    left: 0;
    right: 0;
  }
}
@media (min-width: 1200px) {
  .navbar .navbar-collapse .navbar-nav .nav-item:not(.dropdown-lang, .my-account) {
    margin: 0 5px;
  }
}
@media (min-width: 1600px) {
  .navbar .navbar-collapse .navbar-nav .nav-item:not(.dropdown-lang, .my-account) {
    margin: 0 10px;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item.my-account .nav-link {
  margin-right: 0;
  font-size: 15px;
  padding: 11px 17px;
  font-weight: 700;
  display: flex;
  box-shadow: 0 0 0 3px #45BF52;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  color: #45BF52;
  transition: 0.2s all;
}
@media (min-width: 1200px) {
  .navbar .navbar-collapse .navbar-nav .nav-item.my-account .nav-link {
    color: #fff;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item.my-account .nav-link:hover {
    color: #fff !important;
    box-shadow: 0 3px 0 0 #338C3C;
    background-color: #4ACC58;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item.my-account .nav-link:active {
    color: #fff !important;
    box-shadow: 0 0 0 0 #338C3C;
    background-color: #4ACC58;
    transform: translateY(3px);
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item.my-account .nav-link:hover {
  color: #fff;
  background-color: #45BF52;
}
.navbar .navbar-collapse .navbar-nav .nav-item.my-account .nav-link:hover svg g {
  fill: #fff;
}
.navbar .navbar-collapse .navbar-nav .nav-item.my-account .nav-link svg {
  margin-right: 10px;
  position: relative;
  top: -1px;
}
.navbar .navbar-collapse .navbar-nav .nav-item.my-account .nav-link svg g {
  transition: 0.2s all;
}
@media (max-width: 1199px) {
  .navbar .navbar-collapse .navbar-nav .nav-item.my-account .nav-link svg g {
    fill: #45BF52;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  color: #283B41;
  transition: 0.2s all;
}
@media (min-width: 1200px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    color: #fff;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:not(.dropdown-toggle):hover {
    color: #45BF52;
  }
}
@media (min-width: 1200px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover.dropdown-toggle:after {
    transform: rotate(-90deg);
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link.dropdown-toggle:after {
  margin-right: 6px;
  border: none;
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 13px 9px !important;
  display: block;
  height: 9px;
  width: 13px;
  background-image: url("/images/svg/chevron-right-black.svg") !important;
  transition: 0.3s all;
}
@media (min-width: 1200px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.dropdown-toggle:after {
    transform: rotate(90deg);
    background-position: center !important;
    background-repeat: no-repeat;
    background-size: 13px 9px !important;
    display: block;
    height: 9px;
    width: 13px;
    background-image: url("/images/svg/chevron-right.svg") !important;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang {
  background-color: rgba(191, 191, 191, 0.2);
  font-size: 12px;
  padding: 4px 6px 4px 10px;
  border-radius: 35px;
  font-weight: 900;
  text-transform: uppercase;
  width: 79px;
}
@media (min-width: 1200px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang {
    padding: 7px 10px;
  }
}
@media (max-width: 1200px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang {
    width: 100%;
    box-shadow: 0 0 0 3px rgba(191, 191, 191, 0.2);
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang span {
  color: #fff;
}
@media (max-width: 1199px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang span {
    color: #87919C !important;
  }
}
@media (max-width: 1199px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang:after {
    background-position: center !important;
    background-repeat: no-repeat;
    background-size: 13px 9px !important;
    display: block;
    height: 9px;
    width: 13px;
    background-image: url("/images/svg/chevron-right-grey.svg") !important;
    transform: rotate(0deg);
  }
}
@media (max-width: 1200px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang:after {
    margin-right: 0;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon {
  border-radius: 100%;
  margin-right: 7px;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-pl {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  display: block;
  height: 14px;
  width: 14px;
}
.webp.webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-pl {
  background-image: url("/images/lang/pl@1x.webp") !important;
}
.no-js .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-pl, .no-webp .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-pl, .no-webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-pl {
  background-image: url("/images/lang/pl@1x.png") !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-de {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  display: block;
  height: 14px;
  width: 14px;
}
.webp.webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-de {
  background-image: url("/images/lang/de@1x.webp") !important;
}
.no-js .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-de, .no-webp .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-de, .no-webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-de {
  background-image: url("/images/lang/de@1x.png") !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-en {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  display: block;
  height: 14px;
  width: 14px;
}
.webp.webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-en {
  background-image: url("/images/lang/en@1x.webp") !important;
}
.no-js .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-en, .no-webp .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-en, .no-webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-en {
  background-image: url("/images/lang/en@1x.png") !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-es {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  display: block;
  height: 14px;
  width: 14px;
}
.webp.webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-es {
  background-image: url("/images/lang/es@1x.webp") !important;
}
.no-js .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-es, .no-webp .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-es, .no-webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-es {
  background-image: url("/images/lang/es@1x.png") !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-cs {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  display: block;
  height: 14px;
  width: 14px;
}
.webp.webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-cs {
  background-image: url("/images/lang/cz@1x.webp") !important;
}
.no-js .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-cs, .no-webp .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-cs, .no-webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-cs {
  background-image: url("/images/lang/cz@1x.png") !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-fr {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  display: block;
  height: 14px;
  width: 14px;
}
.webp.webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-fr {
  background-image: url("/images/lang/fr@1x.webp") !important;
}
.no-js .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-fr, .no-webp .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-fr, .no-webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-fr {
  background-image: url("/images/lang/fr@1x.png") !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  display: block;
  height: 14px;
  width: 14px;
}
.webp.webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-bg {
  background-image: url("/images/lang/bg@1x.webp") !important;
}
.no-js .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-bg, .no-webp .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-bg, .no-webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-bg {
  background-image: url("/images/lang/bg@1x.png") !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-ru {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  display: block;
  height: 14px;
  width: 14px;
}
.webp.webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-ru {
  background-image: url("/images/lang/ru@1x.webp") !important;
}
.no-js .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-ru, .no-webp .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-ru, .no-webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-ru {
  background-image: url("/images/lang/ru@1x.png") !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-uk {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  display: block;
  height: 14px;
  width: 14px;
}
.webp.webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-uk {
  background-image: url("/images/lang/uk@1x.webp") !important;
}
.no-js .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-uk, .no-webp .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-uk, .no-webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-uk {
  background-image: url("/images/lang/uk@1x.png") !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-it {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  display: block;
  height: 14px;
  width: 14px;
}
.webp.webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-it {
  background-image: url("/images/lang/it@1x.webp") !important;
}
.no-js .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-it, .no-webp .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-it, .no-webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-it {
  background-image: url("/images/lang/it@1x.png") !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-hi {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  display: block;
  height: 14px;
  width: 14px;
}
.webp.webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-hi {
  background-image: url("/images/lang/hi@1x.webp") !important;
}
.no-js .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-hi, .no-webp .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-hi, .no-webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-hi {
  background-image: url("/images/lang/hi@1x.png") !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-nl {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  display: block;
  height: 14px;
  width: 14px;
}
.webp.webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-nl {
  background-image: url("/images/lang/nl@1x.webp") !important;
}
.no-js .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-nl, .no-webp .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-nl, .no-webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-nl {
  background-image: url("/images/lang/nl@1x.png") !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-pt {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  display: block;
  height: 14px;
  width: 14px;
}
.webp.webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-pt {
  background-image: url("/images/lang/pt@1x.webp") !important;
}
.no-js .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-pt, .no-webp .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-pt, .no-webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.lang .icon.icon-pt {
  background-image: url("/images/lang/pt@1x.png") !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nested-menu-dropdown-item {
  margin: 0;
  padding: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu {
  padding: 15px 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 24px -10px #000;
  display: block;
  transition: 0.3s all;
}
@media (max-width: 1200px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu {
    overflow: auto;
  }
}
@media (min-width: 1200px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu {
    transition: all 0.3s ease-in-out;
    transform-origin: top;
    opacity: 0;
    visibility: hidden;
  }
}
@media (min-width: 1200px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu.show-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-toggle-close {
  position: absolute;
  top: 14px;
  left: 40px;
}
@media (min-width: 576px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-toggle-close {
    top: 42px;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-toggle-close span {
  color: #87919C !important;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-transform: uppercase;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-toggle-close span:before {
  content: "";
}
@media (max-width: 1199px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-toggle-close span:before {
    background-position: center !important;
    background-repeat: no-repeat;
    background-size: 13px 9px !important;
    display: block;
    height: 9px;
    width: 13px;
    background-image: url("/images/svg/chevron-right-grey.svg") !important;
    transform: rotate(180deg);
    position: relative;
    top: -1px;
    margin-right: 10px;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu.dropdown-lang {
  padding: 140px 40px 100px 40px;
  right: 0;
}
@media (min-width: 1200px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu.dropdown-lang {
    transition: 0.3s all;
    min-width: auto;
    width: 79px;
    border-radius: 20px;
    padding: 15px 0;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu.dropdown-lang .dropdown-item .dropdown-link {
    justify-content: center;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu.dropdown-lang .dropdown-item .dropdown-link p {
    display: none;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu.dropdown-lang .dropdown-item .dropdown-link .icon {
    margin: 0;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu.dropdown-lang .dropdown-item {
  padding: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu.dropdown-lang .dropdown-item .dropdown-link {
  text-transform: capitalize;
  align-items: center;
  padding: 7.5px 15px;
  margin: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu.dropdown-lang .dropdown-item .dropdown-link p {
  margin: 0;
  color: #283B41;
}
@media (max-width: 1199px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu {
    border: none;
    box-shadow: none;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    min-height: 100vh;
    background: #ffffff;
    transform: translateX(101%);
    z-index: 999;
    padding: 100px 40px;
    margin: 0;
    transition: 0.25s;
    opacity: 0;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu.show {
    transform: translateX(1%);
    opacity: 1;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  font-size: 18px;
  font-weight: 700;
  color: #283B41;
  padding: 15px 0;
  margin: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item.disabled {
  color: #87919C;
  font-size: 16px;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item.disabled-item {
  color: #87919C;
  pointer-events: none;
  cursor: default;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover, .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item:active {
  background-color: transparent;
}
@media (min-width: 1200px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    font-size: 14px;
    font-weight: 500;
    color: #283B41;
    padding: 7.5px 15px;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover, .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item:active {
    background-color: #EDFFEF;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-decoration: none;
}
@media (min-width: 1200px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link {
    justify-content: flex-start;
  }
}
@media (max-width: 1200px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link {
    flex-direction: row-reverse;
    padding: 7.5px 0px !important;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon {
  margin-right: 10px;
}
@media (min-width: 1200px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon {
    margin-left: 10px;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-pl {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  display: block;
  height: 20px;
  width: 20px;
}
.webp.webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-pl {
  background-image: url("/images/lang/pl@1x.webp") !important;
}
.no-js .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-pl, .no-webp .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-pl, .no-webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-pl {
  background-image: url("/images/lang/pl@1x.png") !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-de {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  display: block;
  height: 20px;
  width: 20px;
}
.webp.webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-de {
  background-image: url("/images/lang/de@1x.webp") !important;
}
.no-js .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-de, .no-webp .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-de, .no-webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-de {
  background-image: url("/images/lang/de@1x.png") !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-en {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  display: block;
  height: 20px;
  width: 20px;
}
.webp.webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-en {
  background-image: url("/images/lang/en@1x.webp") !important;
}
.no-js .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-en, .no-webp .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-en, .no-webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-en {
  background-image: url("/images/lang/en@1x.png") !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-es {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  display: block;
  height: 20px;
  width: 20px;
}
.webp.webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-es {
  background-image: url("/images/lang/es@1x.webp") !important;
}
.no-js .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-es, .no-webp .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-es, .no-webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-es {
  background-image: url("/images/lang/es@1x.png") !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-cs {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  display: block;
  height: 20px;
  width: 20px;
}
.webp.webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-cs {
  background-image: url("/images/lang/cz@1x.webp") !important;
}
.no-js .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-cs, .no-webp .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-cs, .no-webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-cs {
  background-image: url("/images/lang/cz@1x.png") !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-fr {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  display: block;
  height: 20px;
  width: 20px;
}
.webp.webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-fr {
  background-image: url("/images/lang/fr@1x.webp") !important;
}
.no-js .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-fr, .no-webp .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-fr, .no-webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-fr {
  background-image: url("/images/lang/fr@1x.png") !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  display: block;
  height: 20px;
  width: 20px;
}
.webp.webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-bg {
  background-image: url("/images/lang/bg@1x.webp") !important;
}
.no-js .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-bg, .no-webp .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-bg, .no-webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-bg {
  background-image: url("/images/lang/bg@1x.png") !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-ru {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  display: block;
  height: 20px;
  width: 20px;
}
.webp.webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-ru {
  background-image: url("/images/lang/ru@1x.webp") !important;
}
.no-js .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-ru, .no-webp .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-ru, .no-webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-ru {
  background-image: url("/images/lang/ru@1x.png") !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-uk {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  display: block;
  height: 20px;
  width: 20px;
}
.webp.webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-uk {
  background-image: url("/images/lang/uk@1x.webp") !important;
}
.no-js .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-uk, .no-webp .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-uk, .no-webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-uk {
  background-image: url("/images/lang/uk@1x.png") !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-it {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  display: block;
  height: 20px;
  width: 20px;
}
.webp.webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-it {
  background-image: url("/images/lang/it@1x.webp") !important;
}
.no-js .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-it, .no-webp .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-it, .no-webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-it {
  background-image: url("/images/lang/it@1x.png") !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-hi {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  display: block;
  height: 20px;
  width: 20px;
}
.webp.webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-hi {
  background-image: url("/images/lang/hi@1x.webp") !important;
}
.no-js .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-hi, .no-webp .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-hi, .no-webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-hi {
  background-image: url("/images/lang/hi@1x.png") !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-nl {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  display: block;
  height: 20px;
  width: 20px;
}
.webp.webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-nl {
  background-image: url("/images/lang/nl@1x.webp") !important;
}
.no-js .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-nl, .no-webp .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-nl, .no-webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-nl {
  background-image: url("/images/lang/nl@1x.png") !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-pt {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  display: block;
  height: 20px;
  width: 20px;
}
.webp.webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-pt {
  background-image: url("/images/lang/pt@1x.webp") !important;
}
.no-js .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-pt, .no-webp .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-pt, .no-webpalpha .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item .dropdown-link .icon.icon-pt {
  background-image: url("/images/lang/pt@1x.png") !important;
}
@media (max-width: 1199px) {
  .navbar .navbar-collapse {
    align-items: flex-start;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    min-height: 100vh;
    flex-direction: column;
    display: flex;
    background: #ffffff;
    transform: translateX(101%);
    z-index: 999;
    padding: 100px 30px 40px 40px;
    margin: 0;
    transition: 0.25s;
    box-shadow: 0 0 150px -60px #87919C;
    opacity: 0;
  }
}
@media (max-width: 1199px) and (min-width: 576px) {
  .navbar .navbar-collapse {
    padding: 100px 65px 40px 40px;
  }
}
@media (max-width: 1199px) {
  .navbar .navbar-collapse.show {
    transform: translateX(1%);
    opacity: 1;
    box-shadow: 0px 40px 100px 0px rgba(5, 5, 5, 0.2);
  }
}
@media (max-width: 1199px) {
  .navbar .navbar-collapse .navbar-nav {
    width: 100%;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    display: flex;
    justify-content: space-between;
    transition: 0.2s;
    padding: 15px 0;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover span {
    color: #6DBE5F;
  }
}

section.cta {
  border-radius: 20px;
  background-color: #273B40;
  padding: 75px 30px;
}
@media (min-width: 576px) {
  section.cta {
    border-radius: 50px;
    padding: 100px 20px;
  }
}
section.cta.tablet-lg {
  border-radius: 20px;
}
@media (min-width: 992px) {
  section.cta.tablet-lg {
    border-radius: 50px;
    padding: 100px 20px;
  }
}
section.cta.tablet-md {
  border-radius: 20px;
}
@media (min-width: 768px) {
  section.cta.tablet-md {
    border-radius: 50px;
    padding: 100px 20px;
  }
}
section.cta.cta-custom-1 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 984px 482px;
  display: block;
}
.webp.webpalpha section.cta.cta-custom-1 {
  background-image: url("/images/cta-01-tablet@1x.webp") !important;
}
.no-js section.cta.cta-custom-1, .no-webp section.cta.cta-custom-1, .no-webpalpha section.cta.cta-custom-1 {
  background-image: url("/images/cta-01-tablet@1x.jpg") !important;
}
@media (min-width: 1200px) {
  section.cta.cta-custom-1 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1115px 489px;
    display: block;
  }
  .webp.webpalpha section.cta.cta-custom-1 {
    background-image: url("/images/cta-01-desktop@1x.webp") !important;
  }
  .no-js section.cta.cta-custom-1, .no-webp section.cta.cta-custom-1, .no-webpalpha section.cta.cta-custom-1 {
    background-image: url("/images/cta-01-desktop@1x.jpg") !important;
  }
}
section.cta.cta-custom-2 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 984px 482px;
  display: block;
}
.webp.webpalpha section.cta.cta-custom-2 {
  background-image: url("/images/cta-02-tablet@1x.webp") !important;
}
.no-js section.cta.cta-custom-2, .no-webp section.cta.cta-custom-2, .no-webpalpha section.cta.cta-custom-2 {
  background-image: url("/images/cta-02-tablet@1x.jpg") !important;
}
@media (min-width: 1200px) {
  section.cta.cta-custom-2 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1115px 489px;
    display: block;
  }
  .webp.webpalpha section.cta.cta-custom-2 {
    background-image: url("/images/cta-02-desktop@1x.webp") !important;
  }
  .no-js section.cta.cta-custom-2, .no-webp section.cta.cta-custom-2, .no-webpalpha section.cta.cta-custom-2 {
    background-image: url("/images/cta-02-desktop@1x.jpg") !important;
  }
}
section.cta.cta-custom-3 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 984px 482px;
  display: block;
}
.webp.webpalpha section.cta.cta-custom-3 {
  background-image: url("/images/cta-03-tablet@1x.webp") !important;
}
.no-js section.cta.cta-custom-3, .no-webp section.cta.cta-custom-3, .no-webpalpha section.cta.cta-custom-3 {
  background-image: url("/images/cta-03-tablet@1x.jpg") !important;
}
@media (min-width: 1200px) {
  section.cta.cta-custom-3 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1115px 489px;
    display: block;
  }
  .webp.webpalpha section.cta.cta-custom-3 {
    background-image: url("/images/cta-03-desktop@1x.webp") !important;
  }
  .no-js section.cta.cta-custom-3, .no-webp section.cta.cta-custom-3, .no-webpalpha section.cta.cta-custom-3 {
    background-image: url("/images/cta-03-desktop@1x.jpg") !important;
  }
}
section.cta.cta-custom-4 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 984px 482px;
  display: block;
}
.webp.webpalpha section.cta.cta-custom-4 {
  background-image: url("/images/cta-04-tablet@1x.webp") !important;
}
.no-js section.cta.cta-custom-4, .no-webp section.cta.cta-custom-4, .no-webpalpha section.cta.cta-custom-4 {
  background-image: url("/images/cta-04-tablet@1x.jpg") !important;
}
@media (min-width: 1200px) {
  section.cta.cta-custom-4 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1115px 489px;
    display: block;
  }
  .webp.webpalpha section.cta.cta-custom-4 {
    background-image: url("/images/cta-04-desktop@1x.webp") !important;
  }
  .no-js section.cta.cta-custom-4, .no-webp section.cta.cta-custom-4, .no-webpalpha section.cta.cta-custom-4 {
    background-image: url("/images/cta-04-desktop@1x.jpg") !important;
  }
}
section.cta.cta-custom-5 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 984px 482px;
  display: block;
}
.webp.webpalpha section.cta.cta-custom-5 {
  background-image: url("/images/cta-05-tablet@1x.webp") !important;
}
.no-js section.cta.cta-custom-5, .no-webp section.cta.cta-custom-5, .no-webpalpha section.cta.cta-custom-5 {
  background-image: url("/images/cta-05-tablet@1x.jpg") !important;
}
@media (min-width: 1200px) {
  section.cta.cta-custom-5 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1115px 489px;
    display: block;
  }
  .webp.webpalpha section.cta.cta-custom-5 {
    background-image: url("/images/cta-05-desktop@1x.webp") !important;
  }
  .no-js section.cta.cta-custom-5, .no-webp section.cta.cta-custom-5, .no-webpalpha section.cta.cta-custom-5 {
    background-image: url("/images/cta-05-desktop@1x.jpg") !important;
  }
}
section.cta.cta-custom-6 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 984px 482px;
  display: block;
}
.webp.webpalpha section.cta.cta-custom-6 {
  background-image: url("/images/cta-06-tablet@1x.webp") !important;
}
.no-js section.cta.cta-custom-6, .no-webp section.cta.cta-custom-6, .no-webpalpha section.cta.cta-custom-6 {
  background-image: url("/images/cta-06-tablet@1x.jpg") !important;
}
@media (min-width: 1200px) {
  section.cta.cta-custom-6 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1115px 489px;
    display: block;
  }
  .webp.webpalpha section.cta.cta-custom-6 {
    background-image: url("/images/cta-06-desktop@1x.webp") !important;
  }
  .no-js section.cta.cta-custom-6, .no-webp section.cta.cta-custom-6, .no-webpalpha section.cta.cta-custom-6 {
    background-image: url("/images/cta-06-desktop@1x.jpg") !important;
  }
}
section.cta.cta-custom-7 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 984px 482px;
  display: block;
}
.webp.webpalpha section.cta.cta-custom-7 {
  background-image: url("/images/cta-07-tablet@1x.webp") !important;
}
.no-js section.cta.cta-custom-7, .no-webp section.cta.cta-custom-7, .no-webpalpha section.cta.cta-custom-7 {
  background-image: url("/images/cta-07-tablet@1x.jpg") !important;
}
@media (min-width: 1200px) {
  section.cta.cta-custom-7 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1115px 489px;
    display: block;
  }
  .webp.webpalpha section.cta.cta-custom-7 {
    background-image: url("/images/cta-07-desktop@1x.webp") !important;
  }
  .no-js section.cta.cta-custom-7, .no-webp section.cta.cta-custom-7, .no-webpalpha section.cta.cta-custom-7 {
    background-image: url("/images/cta-07-desktop@1x.jpg") !important;
  }
}
section.cta.cta-custom-8 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 984px 482px;
  display: block;
}
.webp.webpalpha section.cta.cta-custom-8 {
  background-image: url("/images/cta-08-tablet@1x.webp") !important;
}
.no-js section.cta.cta-custom-8, .no-webp section.cta.cta-custom-8, .no-webpalpha section.cta.cta-custom-8 {
  background-image: url("/images/cta-08-tablet@1x.jpg") !important;
}
@media (min-width: 1200px) {
  section.cta.cta-custom-8 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1115px 489px;
    display: block;
  }
  .webp.webpalpha section.cta.cta-custom-8 {
    background-image: url("/images/cta-08-desktop@1x.webp") !important;
  }
  .no-js section.cta.cta-custom-8, .no-webp section.cta.cta-custom-8, .no-webpalpha section.cta.cta-custom-8 {
    background-image: url("/images/cta-08-desktop@1x.jpg") !important;
  }
}
section.cta.cta-custom-9 {
  padding: 60px 20px 20px 20px;
}
@media (min-width: 576px) {
  section.cta.cta-custom-9 {
    padding: 60px 20px 30px 20px;
  }
}
@media (min-width: 1200px) {
  section.cta.cta-custom-9 {
    padding: 100px 20px;
  }
}
section.cta.cta-custom-9 .cta-custom-9-text-section {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1199px) {
  section.cta.cta-custom-9 .cta-custom-9-text-section {
    align-items: center;
  }
}
@media (min-width: 1200px) {
  section.cta.cta-custom-9 .cta-custom-9-text-section {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
  }
}
section.cta.cta-custom-9 .cta-custom-9-text-section .first-col, section.cta.cta-custom-9 .cta-custom-9-text-section .second-col {
  max-width: 605px;
  padding: 0 20px;
}
section.cta.cta-custom-9 .cta-custom-9-text-section .first-col h2, section.cta.cta-custom-9 .cta-custom-9-text-section .first-col .h2, section.cta.cta-custom-9 .cta-custom-9-text-section .second-col h2, section.cta.cta-custom-9 .cta-custom-9-text-section .second-col .h2 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
}
@media (min-width: 576px) {
  section.cta.cta-custom-9 .cta-custom-9-text-section .first-col h2, section.cta.cta-custom-9 .cta-custom-9-text-section .first-col .h2, section.cta.cta-custom-9 .cta-custom-9-text-section .second-col h2, section.cta.cta-custom-9 .cta-custom-9-text-section .second-col .h2 {
    font-size: 24px;
    font-weight: 700;
  }
}
@media (min-width: 1200px) {
  section.cta.cta-custom-9 .cta-custom-9-text-section .first-col h2, section.cta.cta-custom-9 .cta-custom-9-text-section .first-col .h2, section.cta.cta-custom-9 .cta-custom-9-text-section .second-col h2, section.cta.cta-custom-9 .cta-custom-9-text-section .second-col .h2 {
    line-height: 1.5;
  }
}
section.cta.cta-custom-9 .cta-custom-9-text-section .first-col p, section.cta.cta-custom-9 .cta-custom-9-text-section .second-col p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.73;
  color: #BFBFBF;
  margin-bottom: 40px;
}
@media (min-width: 576px) {
  section.cta.cta-custom-9 .cta-custom-9-text-section .first-col p, section.cta.cta-custom-9 .cta-custom-9-text-section .second-col p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  section.cta.cta-custom-9 .cta-custom-9-text-section .first-col p, section.cta.cta-custom-9 .cta-custom-9-text-section .second-col p {
    margin-bottom: 0;
  }
}
section.cta.cta-custom-home-page a {
  box-shadow: none;
}
section.cta.cta-custom-home-page a:hover {
  box-shadow: 0 3px 0 0 #CC7002;
}
section.cta:not(.cta-custom, .cta-custom-9) {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 984px 482px;
  display: block;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.webp.webpalpha section.cta:not(.cta-custom, .cta-custom-9) {
  background-image: url("/images/cta-bg-mobile@1x.webp") !important;
}
.no-js section.cta:not(.cta-custom, .cta-custom-9), .no-webp section.cta:not(.cta-custom, .cta-custom-9), .no-webpalpha section.cta:not(.cta-custom, .cta-custom-9) {
  background-image: url("/images/cta-bg-mobile@1x.jpg") !important;
}
@media (min-width: 1200px) {
  section.cta:not(.cta-custom, .cta-custom-9) {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1115px 489px;
    display: block;
    background-size: auto 100%;
    text-align: left;
  }
  .webp.webpalpha section.cta:not(.cta-custom, .cta-custom-9) {
    background-image: url("/images/cta-bg@1x.webp") !important;
  }
  .no-js section.cta:not(.cta-custom, .cta-custom-9), .no-webp section.cta:not(.cta-custom, .cta-custom-9), .no-webpalpha section.cta:not(.cta-custom, .cta-custom-9) {
    background-image: url("/images/cta-bg@1x.jpg") !important;
  }
}
@media (min-width: 1200px) and (max-width: 1920px) {
  section.cta:not(.cta-custom, .cta-custom-9) {
    background-position: 40vw;
  }
}
@media (min-width: 1921px) {
  section.cta:not(.cta-custom, .cta-custom-9) {
    background-position: 800px;
  }
}
section.cta.cta-custom {
  background-size: cover;
  background-position: center;
  text-align: center;
}
@media (min-width: 1200px) {
  section.cta.cta-custom {
    background-size: auto 100%;
    text-align: left;
  }
}
@media (min-width: 1200px) and (max-width: 1920px) {
  section.cta.cta-custom {
    background-position: 40vw;
  }
}
@media (min-width: 1921px) {
  section.cta.cta-custom {
    background-position: 800px;
  }
}
section.cta h3, section.cta .h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.5;
}
@media (min-width: 576px) and (max-width: 1199px) {
  section.cta h3, section.cta .h3 {
    font-size: 34px;
  }
}
@media (min-width: 1200px) {
  section.cta h3, section.cta .h3 {
    font-size: 36px;
    line-height: 1;
  }
}
section.cta p {
  margin: 13px 0 10px 0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}
@media (min-width: 576px) and (max-width: 1199px) {
  section.cta p {
    font-size: 20px;
    margin: 30px 0;
    line-height: 1.6;
  }
}
@media (min-width: 1200px) {
  section.cta p {
    font-size: 24px;
    font-weight: 500;
    margin: 30px 0;
    line-height: 1.5;
  }
}
section.cta p .underline {
  border-bottom: 3px solid #45BF52;
}
section.cta .sign-up-global {
  margin-top: 20px;
}

section.cta-2 {
  padding: 65px 20px 40px 20px;
}
@media (max-width: 576px) {
  section.cta-2 {
    margin: 0 !important;
  }
}
@media (min-width: 992px) {
  section.cta-2 {
    padding: 20px 20px 40px 20px;
  }
}
@media (min-width: 1200px) {
  section.cta-2 {
    padding: 100px 20px 90px 20px;
  }
}
section.cta-2 .title-section-mylead {
  height: 100%;
  flex-direction: column;
  max-width: 720px;
}
@media (max-width: 576px) {
  section.cta-2 .title-section-mylead h2, section.cta-2 .title-section-mylead .h2 {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 27px;
  }
}
@media (max-width: 576px) {
  section.cta-2 .title-section-mylead h5, section.cta-2 .title-section-mylead .h5 {
    font-weight: 500;
    margin-bottom: 13px;
  }
}
@media (max-width: 992px) {
  section.cta-2 .title-section-mylead p {
    margin-bottom: 40px;
  }
}
section.cta-2 .image-box {
  max-width: 460px;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(40, 59, 65, 0.1);
  padding: 30px;
}
section.cta-2 .image-box .image {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 280px 280px !important;
  display: block;
  height: 280px;
  width: 280px;
  background-image: url("/images/svg/start-07.svg") !important;
  margin: 0 auto;
}
@media (min-width: 576px) {
  section.cta-2 .image-box .image {
    background-position: center !important;
    background-repeat: no-repeat;
    background-size: 323px 280px !important;
    display: block;
    height: 280px;
    width: 323px;
    background-image: url("/images/svg/start-07.svg") !important;
  }
}
section.cta-2 .image-box h4, section.cta-2 .image-box .h4 {
  padding: 30px 0;
  line-height: 1.5;
  font-size: 18px;
  font-weight: 500;
}
@media (min-width: 576px) {
  section.cta-2 .image-box h4, section.cta-2 .image-box .h4 {
    font-size: 20px;
    line-height: 1.6;
  }
}
@media (min-width: 1200px) {
  section.cta-2 .image-box h4, section.cta-2 .image-box .h4 {
    font-size: 24px;
    line-height: 1.5;
  }
}
section.cta-2 .image-box .sign-up-global {
  width: 100%;
}

.cta-3 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1035px 85px;
  display: block;
  background-size: cover;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  padding: 15px;
}
.webp.webpalpha .cta-3 {
  background-image: url("/images/cta3@1x.webp") !important;
}
.no-js .cta-3, .no-webp .cta-3, .no-webpalpha .cta-3 {
  background-image: url("/images/cta3@1x.png") !important;
}
@media (max-width: 767px) {
  .cta-3 {
    flex-direction: column;
    align-items: start;
    padding: 30px 20px;
  }
}
.cta-3.custom-margin {
  margin: 50px 0 20px 0;
}
.cta-3.influencers {
  align-items: center;
}
@media (max-width: 767px) {
  .cta-3.influencers {
    align-items: center;
  }
}
.cta-3.influencers .title {
  flex-direction: column;
}
.cta-3.influencers .title .icon {
  margin-bottom: 10px;
}
@media (min-width: 576px) {
  .cta-3.influencers .title .icon {
    margin-bottom: 0;
  }
}
@media (min-width: 576px) {
  .cta-3.influencers .title {
    flex-direction: row;
  }
}
.cta-3.influencers .sign-up-global {
  width: 100%;
}
@media (min-width: 576px) {
  .cta-3.influencers .sign-up-global {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.cta-3 .title {
  margin-left: 15px;
  display: flex;
  align-items: center;
}
.cta-3 .title .icon {
  height: 44px;
  width: 44px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.3);
  font-weight: 900;
  font-size: 20px;
  color: #fff;
  border-radius: 100%;
}
.cta-3 h5.cta-3-title, .cta-3 .cta-3-title.h5 {
  color: #fff !important;
  margin-left: 20px;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 700;
}
.cta-3 .sign-up-global {
  height: 56px;
  margin: 0 !important;
}
.cta-3.cta-3-custom {
  flex-direction: column;
  align-items: flex-start;
  padding: 50px;
}
.cta-3.cta-3-custom h5, .cta-3.cta-3-custom .h5 {
  margin-bottom: 20px;
  margin-left: 0 !important;
}
.cta-3.cta-3-custom p.cta-3-description {
  max-width: 400px;
  color: #F4F6F9 !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  letter-spacing: 0;
  line-height: 26px;
}

.cta-4 {
  margin-top: 60px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1920px 866px;
  display: block;
  background-position: top;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  padding: 80px;
}
.webp.webpalpha .cta-4 {
  background-image: url("/images/banner1@1x.webp") !important;
}
.no-js .cta-4, .no-webp .cta-4, .no-webpalpha .cta-4 {
  background-image: url("/images/banner1@1x.jpg") !important;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .cta-4 {
    margin-top: 80px;
  }
}
@media (min-width: 1200px) {
  .cta-4 {
    margin-top: 100px;
  }
}
@media (max-width: 767px) {
  .cta-4 {
    padding: 60px 20px;
  }
}
@media (max-width: 575px) {
  .cta-4 {
    align-items: start;
  }
}
.cta-4 h4.cta-4-title, .cta-4 .cta-4-title.h4 {
  color: #fff !important;
  font-size: 24px;
  font-weight: 900;
  text-align: left;
  max-width: 630px;
  margin-bottom: 20px;
}
@media (min-width: 576px) and (max-width: 1199px) {
  .cta-4 h4.cta-4-title, .cta-4 .cta-4-title.h4 {
    font-size: 36px;
    text-align: center;
  }
}
@media (min-width: 1200px) {
  .cta-4 h4.cta-4-title, .cta-4 .cta-4-title.h4 {
    font-size: 36px;
    text-align: center;
  }
}
.cta-4 h5.cta-4-subtitle, .cta-4 .cta-4-subtitle.h5 {
  color: #fff !important;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 30px;
}
.cta-4 h5.cta-4-subtitle.audit-line-height, .cta-4 .cta-4-subtitle.audit-line-height.h5 {
  line-height: 1.5;
}
@media (min-width: 576px) and (max-width: 1199px) {
  .cta-4 h5.cta-4-subtitle, .cta-4 .cta-4-subtitle.h5 {
    font-size: 24px;
    text-align: center;
  }
}
@media (min-width: 1200px) {
  .cta-4 h5.cta-4-subtitle, .cta-4 .cta-4-subtitle.h5 {
    font-size: 24px;
    text-align: center;
  }
}
.cta-4 p.cta-4-description {
  color: #A8B4C1;
  text-align: left;
  font-size: 15px;
  margin-bottom: 30px;
}
@media (min-width: 576px) and (max-width: 1199px) {
  .cta-4 p.cta-4-description {
    font-size: 16px;
    text-align: center;
  }
}
@media (min-width: 1200px) {
  .cta-4 p.cta-4-description {
    font-size: 16px;
    text-align: center;
  }
}
.cta-4 .sign-up-global {
  height: 56px;
  margin: 0 !important;
}

.footer {
  background-color: #F4F6F9;
  margin-top: 260px;
  border-top-right-radius: 50px;
  border-top-left-radius: 50px;
}
.footer .cta {
  position: relative;
  top: -240px;
  margin-bottom: -240px;
}
.footer .menu-footer {
  margin: 20px;
}
@media (min-width: 992px) {
  .footer .menu-footer {
    margin: 30px 20px 20px;
  }
}
.footer .menu-footer h3, .footer .menu-footer .h3 {
  color: #283B41;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 20px;
}
.footer .menu-footer p {
  color: #87919C;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 20px;
}
.footer .menu-footer .categories-title {
  font-weight: 600;
  font-size: 40px;
  line-height: 60px;
  letter-spacing: 0px;
}
.footer .menu-footer .categories-subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0px;
}
.footer .menu-footer ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}
.footer .menu-footer ul li:not(:first-child) {
  margin-top: 10px;
}
.footer .menu-footer ul li a {
  text-decoration: none;
  color: #87919C;
  font-size: 15px;
  font-weight: 500;
  transition: 0.1s all;
}
@media (min-width: 1200px) {
  .footer .menu-footer ul li a {
    font-size: 16px;
  }
}
.footer .menu-footer ul li a:hover {
  color: #293F50;
}
.footer .menu-footer .categories-column {
  gap: 2px;
  background-color: white;
  border-radius: 16px;
}
.footer .menu-footer .categories-column .categories-item {
  display: flex;
  padding: 16px 16px 18px;
  width: 100%;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: 0.2s all;
}
.footer .menu-footer .categories-column .categories-item:not(:last-child) {
  border-bottom: 2px solid #F4F6F9;
}
.footer .menu-footer .categories-column .categories-item:first-of-type {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.footer .menu-footer .categories-column .categories-item:last-of-type {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.footer .menu-footer .categories-column .categories-item .categories-item-title {
  height: 40px;
  width: 100%;
  align-content: center;
}
.footer .menu-footer .categories-column .categories-item .categories-item-title h4, .footer .menu-footer .categories-column .categories-item .categories-item-title .h4 {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
}
.footer .menu-footer .categories-column .categories-item .categories-item-title h4 span, .footer .menu-footer .categories-column .categories-item .categories-item-title .h4 span {
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0px;
}
.footer .menu-footer .categories-column .categories-item .categories-item-title h4 .category-name, .footer .menu-footer .categories-column .categories-item .categories-item-title .h4 .category-name {
  font-weight: 600;
  white-space: nowrap;
  flex: 0 0 auto;
  color: #283B41;
}
.footer .menu-footer .categories-column .categories-item .categories-item-title h4 .category-name-sub, .footer .menu-footer .categories-column .categories-item .categories-item-title .h4 .category-name-sub {
  font-weight: 400;
  color: #87919C;
  margin-left: 5px;
  flex: 0 1 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.footer .menu-footer .categories-column .categories-item .categories-item-title h4:after, .footer .menu-footer .categories-column .categories-item .categories-item-title .h4:after {
  content: "";
  color: #87919C;
  font-family: "Icomoon";
  font-size: 8px;
  font-weight: 400;
  flex: 0 0 auto;
  margin-left: 4px;
}
.footer .menu-footer .categories-column .categories-item .categories-item-title span {
  font-weight: 500;
  font-size: 13px;
  line-height: 15px;
  letter-spacing: 0px;
  color: #87919C;
}
.footer .menu-footer .categories-column .categories-item:hover {
  background: rgba(69, 191, 82, 0.1);
}
.footer .menu-footer .categories-column .categories-item:hover .categories-item-title h4 .category-name, .footer .menu-footer .categories-column .categories-item:hover .categories-item-title .h4 .category-name {
  text-decoration: underline;
}
.footer .menu-footer .categories-column .categories-item:hover .categories-item-title h4 span, .footer .menu-footer .categories-column .categories-item:hover .categories-item-title .h4 span, .footer .menu-footer .categories-column .categories-item:hover .categories-item-title h4::after, .footer .menu-footer .categories-column .categories-item:hover .categories-item-title .h4::after {
  color: #45BF52;
}
.footer .menu-footer .menu-item {
  padding: 0 10px;
}
@media (min-width: 576px) {
  .footer .menu-footer .menu-item {
    padding: 0 20px;
  }
}
@media (min-width: 1200px) {
  .footer .menu-footer .menu-item {
    padding: 0 30px;
  }
}
.footer .menu-footer .menu-item h2, .footer .menu-footer .menu-item .h2 {
  color: #283B41;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 36px;
}
.footer .menu-footer .menu-item.contact a .icon.envelope {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 18px 14px !important;
  display: block;
  height: 14px;
  width: 18px;
  background-image: url("/images/svg/envelope.svg") !important;
}
.footer .menu-footer .menu-item.contact a .icon.phone {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 18px 14px !important;
  display: block;
  height: 14px;
  width: 18px;
  background-image: url("/images/svg/phone.svg") !important;
  rotate: 90deg;
}
.footer .menu-footer .menu-item.contact a .icon.map-marker-alt {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 18px 14px !important;
  display: block;
  height: 14px;
  width: 18px;
  background-image: url("/images/svg/map-marker-alt.svg") !important;
}
.footer .menu-footer .menu-item.contact a.contact-item {
  margin-top: 26px;
  display: flex;
  text-decoration: none;
  color: #87919C;
  font-size: 16px;
  font-weight: 500;
  transition: 0.1s all;
}
.footer .menu-footer .menu-item.contact a.contact-item.phone-number {
  margin-top: 38px;
}
.footer .menu-footer .menu-item.contact a.contact-item:hover {
  color: #293F50;
}
.footer .menu-footer .menu-item.contact a.contact-item .icon {
  position: relative;
  top: 3px;
  margin-right: 15px;
}
.footer .menu-footer .accordion {
  margin: 0 10px;
}
@media (min-width: 576px) {
  .footer .menu-footer .accordion {
    margin: 0 20px;
  }
}
.footer .menu-footer .accordion .accordion-item {
  border: none;
  background-color: transparent;
  border-radius: 30px;
}
.footer .menu-footer .accordion .accordion-item .accordion-header .accordion-button {
  box-shadow: none;
  background-color: transparent;
  padding: 20px;
  color: #283B41;
  font-size: 18px;
  font-weight: 900;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
@media (min-width: 768px) {
  .footer .menu-footer .accordion .accordion-item .accordion-header .accordion-button {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }
}
@media (min-width: 1200px) {
  .footer .menu-footer .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 20px;
  }
}
.footer .menu-footer .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: #fff;
}
.footer .menu-footer .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed):after {
  transform: rotate(90deg);
}
.footer .menu-footer .accordion .accordion-item .accordion-header .accordion-button:after {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 12px 12px !important;
  display: block;
  height: 12px;
  width: 12px;
  background-image: url("/images/svg/chevron-right-grey.svg") !important;
  transform: rotate(0deg);
}
.footer .menu-footer .accordion .accordion-item .accordion-collapse.show .accordion-body, .footer .menu-footer .accordion .accordion-item .accordion-collapse.collapsing .accordion-body {
  background-color: #fff;
}
.footer .menu-footer .accordion .accordion-item .accordion-collapse .accordion-body {
  padding: 0 20px 20px 20px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  max-height: 300px;
  overflow-y: scroll;
}
@media (min-width: 768px) {
  .footer .menu-footer .accordion .accordion-item .accordion-collapse .accordion-body {
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }
}
.footer .content {
  position: relative;
  z-index: 2;
}
@media (min-width: 576px) {
  .footer .content {
    padding: 60px 20px;
  }
}
.footer .content.social-media-content {
  overflow: hidden;
}
.footer .content .social-media {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .footer .content .social-media {
    margin-top: 35px;
  }
}
@media (min-width: 768px) {
  .footer .content .social-media {
    justify-content: flex-end;
    margin-bottom: 0;
  }
}
.footer .content .social-media .icon {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  font-size: 14px;
  transition: 0.2s all;
  background-color: #fff;
  height: 35px;
  width: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 100%;
  color: #87919C;
  transition: 0.2s;
}
@media (min-width: 576px) {
  .footer .content .social-media .icon {
    margin-left: 10px;
  }
}
@media (max-width: 575px) {
  .footer .content .social-media .icon {
    margin: 0 5px;
  }
}
.footer .content .social-media .icon:hover {
  background-color: #87919C;
  color: #fff;
}
.footer .content .social-media .icon.facebook:before {
  content: "";
}
.footer .content .social-media .icon.discord:before {
  content: "";
}
.footer .content .social-media .icon.instagram:before {
  content: "";
}
.footer .content .social-media .icon.telegram:before {
  content: "";
}
.footer .content .social-media .icon.tiktok:before {
  content: "";
}
.footer .content .social-media .icon.twitter:before {
  content: "";
}
.footer .content .social-media .icon.vk:before {
  content: "";
}
.footer .content .social-media .icon.whatsapp:before {
  content: "";
}
.footer .content .social-media .icon.xing:before {
  content: "";
}
.footer .content .social-media .icon.yandex:before {
  content: "";
}
.footer .content .social-media .icon.twitch:before {
  content: "";
}
.footer .content .social-media .icon.youtube:before {
  content: "";
}
.footer .content .social-media .icon.linkedin:before {
  content: "";
}
.footer .content .social-media .icon.rss:before {
  content: "";
}
.footer .content .copyrights {
  text-align: center;
}
@media (max-width: 767px) {
  .footer .content .copyrights {
    margin-bottom: 60px;
  }
}
@media (min-width: 768px) {
  .footer .content .copyrights {
    text-align: left;
  }
}
.footer .content .copyrights p {
  margin: 0;
  color: #87919C;
  font-size: 12px;
  font-weight: 500;
}
.footer .custom-gutter {
  padding: 0 5px;
}
@media (min-width: 1200px) {
  .footer .custom-gutter {
    padding: 0 10px;
  }
}
.footer .badges {
  margin: 15px 5px 0 5px;
}
@media (min-width: 576px) {
  .footer .badges {
    margin: 15px 15px 0 15px;
  }
}
@media (max-width: 991px) {
  .footer .badges .col-4 .badge {
    margin-bottom: 15px;
  }
}
@media (max-width: 991px) {
  .footer .badges .col-4 .badge .badge-image-1,
.footer .badges .col-4 .badge .badge-image-logo {
    transform: scale(0.8);
  }
}
.footer .badges .badge {
  background-color: #fff;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px 10px 10px 10px;
}
@media (min-width: 576px) {
  .footer .badges .badge {
    padding: 20px 10px 20px 10px;
  }
}
@media (min-width: 768px) {
  .footer .badges .badge {
    padding: 45px 10px 38px 10px;
    border-radius: 30px;
  }
}
.footer .badges .badge .badge-image-1 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40px 31px;
  display: block;
  height: 31px;
  width: 40px;
}
.webp.webpalpha .footer .badges .badge .badge-image-1 {
  background-image: url("/images/place@1x.webp") !important;
}
.no-js .footer .badges .badge .badge-image-1, .no-webp .footer .badges .badge .badge-image-1, .no-webpalpha .footer .badges .badge .badge-image-1 {
  background-image: url("/images/place@1x.png") !important;
}
@media (min-width: 576px) {
  .footer .badges .badge .badge-image-1 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 84px 60px;
    display: block;
    height: 60px;
    width: 84px;
    background-size: 80%;
  }
  .webp.webpalpha .footer .badges .badge .badge-image-1 {
    background-image: url("/images/place@1x.webp") !important;
  }
  .no-js .footer .badges .badge .badge-image-1, .no-webp .footer .badges .badge .badge-image-1, .no-webpalpha .footer .badges .badge .badge-image-1 {
    background-image: url("/images/place@1x.png") !important;
  }
}
@media (min-width: 1200px) {
  .footer .badges .badge .badge-image-1 {
    background-size: 100%;
  }
}
@media (max-width: 576px) {
  .footer .badges .badge .badge-image-1.mobile-size {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 32px 23px;
    display: block;
    height: 23px;
    width: 32px;
    margin-bottom: 5px;
  }
  .webp.webpalpha .footer .badges .badge .badge-image-1.mobile-size {
    background-image: url("/images/place@1x.webp") !important;
  }
  .no-js .footer .badges .badge .badge-image-1.mobile-size, .no-webp .footer .badges .badge .badge-image-1.mobile-size, .no-webpalpha .footer .badges .badge .badge-image-1.mobile-size {
    background-image: url("/images/place@1x.png") !important;
  }
}
.footer .badges .badge .badge-image-2 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 26px 19px;
  display: block;
  height: 19px;
  width: 26px;
  height: 28px !important;
}
.webp.webpalpha .footer .badges .badge .badge-image-2 {
  background-image: url("/images/star@1x.webp") !important;
}
.no-js .footer .badges .badge .badge-image-2, .no-webp .footer .badges .badge .badge-image-2, .no-webpalpha .footer .badges .badge .badge-image-2 {
  background-image: url("/images/star@1x.png") !important;
}
@media (min-width: 576px) {
  .footer .badges .badge .badge-image-2 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 70px 49px;
    display: block;
    height: 49px;
    width: 70px;
    height: 60px !important;
    background-size: 80%;
  }
  .webp.webpalpha .footer .badges .badge .badge-image-2 {
    background-image: url("/images/star@1x.webp") !important;
  }
  .no-js .footer .badges .badge .badge-image-2, .no-webp .footer .badges .badge .badge-image-2, .no-webpalpha .footer .badges .badge .badge-image-2 {
    background-image: url("/images/star@1x.png") !important;
  }
}
@media (min-width: 768px) {
  .footer .badges .badge .badge-image-2 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 84px 60px;
    display: block;
    height: 60px;
    width: 84px;
    background-size: 80%;
  }
  .webp.webpalpha .footer .badges .badge .badge-image-2 {
    background-image: url("/images/star@1x.webp") !important;
  }
  .no-js .footer .badges .badge .badge-image-2, .no-webp .footer .badges .badge .badge-image-2, .no-webpalpha .footer .badges .badge .badge-image-2 {
    background-image: url("/images/star@1x.png") !important;
  }
}
@media (min-width: 1200px) {
  .footer .badges .badge .badge-image-2 {
    background-size: 100%;
  }
}
.footer .badges .badge .badge-image-3 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40px 31px;
  display: block;
  height: 31px;
  width: 40px;
}
.webp.webpalpha .footer .badges .badge .badge-image-3 {
  background-image: url("/images/place2@1x.webp") !important;
}
.no-js .footer .badges .badge .badge-image-3, .no-webp .footer .badges .badge .badge-image-3, .no-webpalpha .footer .badges .badge .badge-image-3 {
  background-image: url("/images/place2@1x.png") !important;
}
@media (min-width: 576px) {
  .footer .badges .badge .badge-image-3 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 84px 60px;
    display: block;
    height: 60px;
    width: 84px;
    background-size: 80%;
  }
  .webp.webpalpha .footer .badges .badge .badge-image-3 {
    background-image: url("/images/place2@1x.webp") !important;
  }
  .no-js .footer .badges .badge .badge-image-3, .no-webp .footer .badges .badge .badge-image-3, .no-webpalpha .footer .badges .badge .badge-image-3 {
    background-image: url("/images/place2@1x.png") !important;
  }
}
@media (min-width: 1200px) {
  .footer .badges .badge .badge-image-3 {
    background-size: 100%;
  }
}
@media (max-width: 576px) {
  .footer .badges .badge .badge-image-3.mobile-size {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 32px 23px;
    display: block;
    height: 23px;
    width: 32px;
    margin-bottom: 5px;
  }
  .webp.webpalpha .footer .badges .badge .badge-image-3.mobile-size {
    background-image: url("/images/place2@1x.webp") !important;
  }
  .no-js .footer .badges .badge .badge-image-3.mobile-size, .no-webp .footer .badges .badge .badge-image-3.mobile-size, .no-webpalpha .footer .badges .badge .badge-image-3.mobile-size {
    background-image: url("/images/place2@1x.png") !important;
  }
}
.footer .badges .badge .badge-image-section {
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .badges .badge .badge-image-section .image-logo {
  transform: scale(0.9);
}
.footer .badges .badge .badge-image-section .image-logo.affbank {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 63px 12px;
  display: block;
  height: 12px;
  width: 63px;
}
.webp.webpalpha .footer .badges .badge .badge-image-section .image-logo.affbank {
  background-image: url("/images/affbank@1x.webp") !important;
}
.no-js .footer .badges .badge .badge-image-section .image-logo.affbank, .no-webp .footer .badges .badge .badge-image-section .image-logo.affbank, .no-webpalpha .footer .badges .badge .badge-image-section .image-logo.affbank {
  background-image: url("/images/affbank@1x.png") !important;
}
@media (min-width: 576px) {
  .footer .badges .badge .badge-image-section .image-logo.affbank {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 114px 21px;
    display: block;
    height: 21px;
    width: 114px;
    background-size: 80%;
  }
  .webp.webpalpha .footer .badges .badge .badge-image-section .image-logo.affbank {
    background-image: url("/images/affbank@1x.webp") !important;
  }
  .no-js .footer .badges .badge .badge-image-section .image-logo.affbank, .no-webp .footer .badges .badge .badge-image-section .image-logo.affbank, .no-webpalpha .footer .badges .badge .badge-image-section .image-logo.affbank {
    background-image: url("/images/affbank@1x.png") !important;
  }
}
@media (min-width: 1200px) {
  .footer .badges .badge .badge-image-section .image-logo.affbank {
    background-size: 100%;
  }
}
.footer .badges .badge .badge-image-section .image-logo.affiliatefix {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 88px 16px;
  display: block;
  height: 16px;
  width: 88px;
}
.webp.webpalpha .footer .badges .badge .badge-image-section .image-logo.affiliatefix {
  background-image: url("/images/affiliatefix@1x.webp") !important;
}
.no-js .footer .badges .badge .badge-image-section .image-logo.affiliatefix, .no-webp .footer .badges .badge .badge-image-section .image-logo.affiliatefix, .no-webpalpha .footer .badges .badge .badge-image-section .image-logo.affiliatefix {
  background-image: url("/images/affiliatefix@1x.png") !important;
}
@media (min-width: 576px) {
  .footer .badges .badge .badge-image-section .image-logo.affiliatefix {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 141px 29px;
    display: block;
    height: 29px;
    width: 141px;
    background-size: 80%;
  }
  .webp.webpalpha .footer .badges .badge .badge-image-section .image-logo.affiliatefix {
    background-image: url("/images/affiliatefix@1x.webp") !important;
  }
  .no-js .footer .badges .badge .badge-image-section .image-logo.affiliatefix, .no-webp .footer .badges .badge .badge-image-section .image-logo.affiliatefix, .no-webpalpha .footer .badges .badge .badge-image-section .image-logo.affiliatefix {
    background-image: url("/images/affiliatefix@1x.png") !important;
  }
}
@media (min-width: 1200px) {
  .footer .badges .badge .badge-image-section .image-logo.affiliatefix {
    background-size: 100%;
  }
}
.footer .badges .badge .badge-image-section .image-logo.affnext {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 54px 14px;
  display: block;
  height: 14px;
  width: 54px;
}
.webp.webpalpha .footer .badges .badge .badge-image-section .image-logo.affnext {
  background-image: url("/images/affnext@1x.webp") !important;
}
.no-js .footer .badges .badge .badge-image-section .image-logo.affnext, .no-webp .footer .badges .badge .badge-image-section .image-logo.affnext, .no-webpalpha .footer .badges .badge .badge-image-section .image-logo.affnext {
  background-image: url("/images/affnext@1x.png") !important;
}
@media (min-width: 576px) {
  .footer .badges .badge .badge-image-section .image-logo.affnext {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 88px 23px;
    display: block;
    height: 23px;
    width: 88px;
    background-size: 80%;
  }
  .webp.webpalpha .footer .badges .badge .badge-image-section .image-logo.affnext {
    background-image: url("/images/affnext@1x.webp") !important;
  }
  .no-js .footer .badges .badge .badge-image-section .image-logo.affnext, .no-webp .footer .badges .badge .badge-image-section .image-logo.affnext, .no-webpalpha .footer .badges .badge .badge-image-section .image-logo.affnext {
    background-image: url("/images/affnext@1x.png") !important;
  }
}
@media (min-width: 1200px) {
  .footer .badges .badge .badge-image-section .image-logo.affnext {
    background-size: 100%;
  }
}
.footer .badges .badge .badge-image-section .image-logo.ucompares {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 60px 16px;
  display: block;
  height: 16px;
  width: 60px;
}
.webp.webpalpha .footer .badges .badge .badge-image-section .image-logo.ucompares {
  background-image: url("/images/ucompares@1x.webp") !important;
}
.no-js .footer .badges .badge .badge-image-section .image-logo.ucompares, .no-webp .footer .badges .badge .badge-image-section .image-logo.ucompares, .no-webpalpha .footer .badges .badge .badge-image-section .image-logo.ucompares {
  background-image: url("/images/ucompares@1x.png") !important;
}
@media (min-width: 576px) {
  .footer .badges .badge .badge-image-section .image-logo.ucompares {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 120px 32px;
    display: block;
    height: 32px;
    width: 120px;
    background-size: 80%;
  }
  .webp.webpalpha .footer .badges .badge .badge-image-section .image-logo.ucompares {
    background-image: url("/images/ucompares@1x.webp") !important;
  }
  .no-js .footer .badges .badge .badge-image-section .image-logo.ucompares, .no-webp .footer .badges .badge .badge-image-section .image-logo.ucompares, .no-webpalpha .footer .badges .badge .badge-image-section .image-logo.ucompares {
    background-image: url("/images/ucompares@1x.png") !important;
  }
}
@media (min-width: 1200px) {
  .footer .badges .badge .badge-image-section .image-logo.ucompares {
    background-size: 100%;
  }
}
.footer .badges .badge .badge-image-section .image-logo.zarabiam {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 52px 19px;
  display: block;
  height: 19px;
  width: 52px;
}
.webp.webpalpha .footer .badges .badge .badge-image-section .image-logo.zarabiam {
  background-image: url("/images/zarabiam@1x.webp") !important;
}
.no-js .footer .badges .badge .badge-image-section .image-logo.zarabiam, .no-webp .footer .badges .badge .badge-image-section .image-logo.zarabiam, .no-webpalpha .footer .badges .badge .badge-image-section .image-logo.zarabiam {
  background-image: url("/images/zarabiam@1x.png") !important;
}
@media (min-width: 576px) {
  .footer .badges .badge .badge-image-section .image-logo.zarabiam {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 108px 38px;
    display: block;
    height: 38px;
    width: 108px;
    background-size: 80%;
  }
  .webp.webpalpha .footer .badges .badge .badge-image-section .image-logo.zarabiam {
    background-image: url("/images/zarabiam@1x.webp") !important;
  }
  .no-js .footer .badges .badge .badge-image-section .image-logo.zarabiam, .no-webp .footer .badges .badge .badge-image-section .image-logo.zarabiam, .no-webpalpha .footer .badges .badge .badge-image-section .image-logo.zarabiam {
    background-image: url("/images/zarabiam@1x.png") !important;
  }
}
@media (min-width: 1200px) {
  .footer .badges .badge .badge-image-section .image-logo.zarabiam {
    background-size: 100%;
  }
}
.footer .badges .badge .badge-image-section .image-logo.techfast {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 66px 14px;
  display: block;
  height: 14px;
  width: 66px;
}
.webp.webpalpha .footer .badges .badge .badge-image-section .image-logo.techfast {
  background-image: url("/images/techfast@1x.webp") !important;
}
.no-js .footer .badges .badge .badge-image-section .image-logo.techfast, .no-webp .footer .badges .badge .badge-image-section .image-logo.techfast, .no-webpalpha .footer .badges .badge .badge-image-section .image-logo.techfast {
  background-image: url("/images/techfast@1x.png") !important;
}
@media (min-width: 576px) {
  .footer .badges .badge .badge-image-section .image-logo.techfast {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 138px 29px;
    display: block;
    height: 29px;
    width: 138px;
    background-size: 80%;
  }
  .webp.webpalpha .footer .badges .badge .badge-image-section .image-logo.techfast {
    background-image: url("/images/techfast@1x.webp") !important;
  }
  .no-js .footer .badges .badge .badge-image-section .image-logo.techfast, .no-webp .footer .badges .badge .badge-image-section .image-logo.techfast, .no-webpalpha .footer .badges .badge .badge-image-section .image-logo.techfast {
    background-image: url("/images/techfast@1x.png") !important;
  }
}
@media (min-width: 1200px) {
  .footer .badges .badge .badge-image-section .image-logo.techfast {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 138px 32px;
    display: block;
    height: 32px;
    width: 138px;
    background-size: 100%;
  }
  .webp.webpalpha .footer .badges .badge .badge-image-section .image-logo.techfast {
    background-image: url("/images/techfast@1x.webp") !important;
  }
  .no-js .footer .badges .badge .badge-image-section .image-logo.techfast, .no-webp .footer .badges .badge .badge-image-section .image-logo.techfast, .no-webpalpha .footer .badges .badge .badge-image-section .image-logo.techfast {
    background-image: url("/images/techfast@1x.png") !important;
  }
}
.footer .badges .badge p {
  text-transform: uppercase;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 1.4px;
  color: #A8B4C1;
  margin: 17px 0 3px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (min-width: 576px) {
  .footer .badges .badge p {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.2px;
  }
}
@media (min-width: 768px) {
  .footer .badges .badge p {
    height: 30px;
    margin: 23px 0 26px 0;
  }
}
@media (min-width: 1200px) {
  .footer .badges .badge p {
    margin: 26px 0 32px 0;
    font-size: 12px;
    letter-spacing: 2.4px;
  }
}
.footer .badges-wrapper {
  margin: 0 15px;
}
@media (min-width: 992px) {
  .footer .badges-wrapper {
    margin: 10px 15px 0;
  }
}
.footer .badge-large {
  background-color: #fff;
  border-radius: 15px;
  height: 132px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 20px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .footer .badge-large {
    border-radius: 30px;
  }
}
.footer .badge-large.trustpilot .trustpilot-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.footer .badge-large.trustpilot .trustpilot-logo img {
  max-height: 20px;
}
.footer .badge-large.trustpilot .trustpilot-text {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
}
.footer .badge-large.trustpilot .trustpilot-text p {
  margin: 0;
}
.footer .badge-large.trustpilot .trustpilot-text .trustpilot-value {
  font-size: 16px;
  font-weight: 700;
  color: #283B41;
}
.footer .badge-large.trustpilot .trustpilot-text .trustpilot-label {
  font-size: 12px;
  font-weight: 500;
  text-overflow: ellipsis;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  color: #87919C;
}
.footer .badge-large.mobile-apps .mobile-apps-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 10px;
}
.footer .badge-large.mobile-apps .mobile-apps-cta p {
  font-size: 12px;
  font-weight: 500;
  color: #283B41;
  margin: 0;
}
.footer .badge-large.mobile-apps .mobile-apps-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 20px;
}
.footer .badge-large.mobile-apps .mobile-apps-links a {
  border-radius: 10px;
  height: 50px;
  width: calc(50% - 10px);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #F4F6F9;
  transition: 0.2s all;
}
.footer .badge-large.mobile-apps .mobile-apps-links a:hover {
  transform: scale(1.05);
}

.banner {
  margin: 0;
  padding: 0;
}
.banner .video-yt {
  margin-top: 80px;
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}
@media (min-width: 992px) {
  .banner .video-yt {
    margin-top: 200px;
  }
}
.banner .video-yt.yt-thumbnail:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: red;
  z-index: 9;
}
.banner .video-yt iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.banner .banner-section.custom-banner-1 {
  margin-bottom: 20px !important;
}
.banner .banner-section.custom-banner-1 .content h1, .banner .banner-section.custom-banner-1 .content .h1 {
  color: #283B41;
}
.banner .banner-section.custom-banner-1 .content .text h2, .banner .banner-section.custom-banner-1 .content .text .h2 {
  color: #283B41;
}
@media (min-width: 992px) {
  .banner .banner-section.custom-banner-1 .banner-2 {
    transform: scale(0.85);
    position: absolute;
    bottom: 0;
    left: 80px;
  }
}
.banner .banner-section.custom-banner-2 {
  max-width: 1310px;
  margin-bottom: 0 !important;
  border-radius: 0;
  overflow: visible;
}
.banner .banner-section.custom-banner-2 .logos-slider-section {
  margin: 100px 0 50px 0;
}
.banner .banner-section.custom-banner-2 .custom-content {
  text-align: center;
  margin-top: 200px;
}
.banner .banner-section.custom-banner-2 .custom-content h1, .banner .banner-section.custom-banner-2 .custom-content .h1 {
  margin-top: 20px;
  color: #283B41;
  font-size: 33px;
  font-weight: 500;
  margin-bottom: 40px;
}
@media (min-width: 576px) and (max-width: 991px) {
  .banner .banner-section.custom-banner-2 .custom-content h1, .banner .banner-section.custom-banner-2 .custom-content .h1 {
    font-size: 43px;
  }
}
@media (min-width: 992px) {
  .banner .banner-section.custom-banner-2 .custom-content h1, .banner .banner-section.custom-banner-2 .custom-content .h1 {
    font-size: 56px;
  }
}
.banner .banner-section.custom-banner-2 .custom-content h1 strong, .banner .banner-section.custom-banner-2 .custom-content .h1 strong {
  font-weight: 900;
}
.banner .banner-section.custom-banner-2 .custom-content .text h5, .banner .banner-section.custom-banner-2 .custom-content .text .h5 {
  color: #45BF52;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
}
.banner .banner-section.custom-banner-2 .custom-banner-2 .banner-main-wide-pl {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1263px 643px;
  display: block;
  height: 643px;
  width: 1263px;
}
.webp.webpalpha .banner .banner-section.custom-banner-2 .custom-banner-2 .banner-main-wide-pl {
  background-image: url("/images/adds-wide-pl@1x.webp") !important;
}
.no-js .banner .banner-section.custom-banner-2 .custom-banner-2 .banner-main-wide-pl, .no-webp .banner .banner-section.custom-banner-2 .custom-banner-2 .banner-main-wide-pl, .no-webpalpha .banner .banner-section.custom-banner-2 .custom-banner-2 .banner-main-wide-pl {
  background-image: url("/images/adds-wide-pl@1x.png") !important;
}
.banner .banner-section.custom-banner-2 .custom-banner-2 .banner-main-wide-en {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 996px 749px;
  display: block;
  height: 749px;
  width: 996px;
}
.webp.webpalpha .banner .banner-section.custom-banner-2 .custom-banner-2 .banner-main-wide-en {
  background-image: url("/images/adds-wide-en@1x.webp") !important;
}
.no-js .banner .banner-section.custom-banner-2 .custom-banner-2 .banner-main-wide-en, .no-webp .banner .banner-section.custom-banner-2 .custom-banner-2 .banner-main-wide-en, .no-webpalpha .banner .banner-section.custom-banner-2 .custom-banner-2 .banner-main-wide-en {
  background-image: url("/images/adds-wide-en@1x.png") !important;
}
.banner .banner-section.custom-banner-2 .custom-banner-2 .banner-main-wide-es {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 996px 749px;
  display: block;
  height: 749px;
  width: 996px;
}
.webp.webpalpha .banner .banner-section.custom-banner-2 .custom-banner-2 .banner-main-wide-es {
  background-image: url("/images/adds-wide-es@1x.webp") !important;
}
.no-js .banner .banner-section.custom-banner-2 .custom-banner-2 .banner-main-wide-es, .no-webp .banner .banner-section.custom-banner-2 .custom-banner-2 .banner-main-wide-es, .no-webpalpha .banner .banner-section.custom-banner-2 .custom-banner-2 .banner-main-wide-es {
  background-image: url("/images/adds-wide-es@1x.png") !important;
}
.banner .banner-section.custom-banner-2 .custom-banner-2 .banner-main-wide-ru {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 996px 749px;
  display: block;
  height: 749px;
  width: 996px;
}
.webp.webpalpha .banner .banner-section.custom-banner-2 .custom-banner-2 .banner-main-wide-ru {
  background-image: url("/images/adds-wide-ru@1x.webp") !important;
}
.no-js .banner .banner-section.custom-banner-2 .custom-banner-2 .banner-main-wide-ru, .no-webp .banner .banner-section.custom-banner-2 .custom-banner-2 .banner-main-wide-ru, .no-webpalpha .banner .banner-section.custom-banner-2 .custom-banner-2 .banner-main-wide-ru {
  background-image: url("/images/adds-wide-ru@1x.png") !important;
}
.banner .banner-section.custom-banner-2 .custom-banner-2 .banner-main-wide-ua {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 996px 749px;
  display: block;
  height: 749px;
  width: 996px;
}
.webp.webpalpha .banner .banner-section.custom-banner-2 .custom-banner-2 .banner-main-wide-ua {
  background-image: url("/images/adds-wide-ua@1x.webp") !important;
}
.no-js .banner .banner-section.custom-banner-2 .custom-banner-2 .banner-main-wide-ua, .no-webp .banner .banner-section.custom-banner-2 .custom-banner-2 .banner-main-wide-ua, .no-webpalpha .banner .banner-section.custom-banner-2 .custom-banner-2 .banner-main-wide-ua {
  background-image: url("/images/adds-wide-ua@1x.png") !important;
}
.banner .banner-section.custom-banner-2 .custom-banner-2 .banner-main-wide-fr {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 996px 749px;
  display: block;
  height: 749px;
  width: 996px;
}
.webp.webpalpha .banner .banner-section.custom-banner-2 .custom-banner-2 .banner-main-wide-fr {
  background-image: url("/images/adds-wide-en@1x.webp") !important;
}
.no-js .banner .banner-section.custom-banner-2 .custom-banner-2 .banner-main-wide-fr, .no-webp .banner .banner-section.custom-banner-2 .custom-banner-2 .banner-main-wide-fr, .no-webpalpha .banner .banner-section.custom-banner-2 .custom-banner-2 .banner-main-wide-fr {
  background-image: url("/images/adds-wide-en@1x.png") !important;
}
.banner .banner-section.custom-banner-2 .custom-banner-2 .banner-main-2 {
  border-radius: 30px;
  position: relative !important;
  margin-bottom: -209px;
  box-shadow: 0px 50px 100px 0px rgba(5, 5, 5, 0.06);
}
@media (max-width: 991px) {
  .banner .banner-section.custom-banner-2 .custom-banner-2 .banner-main-2 {
    background-position: revert !important;
    background-size: cover !important;
    border-radius: 20px;
    height: 316px;
  }
}
@media (max-width: 576px) {
  .banner .banner-section.custom-banner-2 .custom-banner-2 .banner-main-2 {
    width: auto !important;
    min-width: 576px;
  }
}
.banner .banner-section .custom-banner-3 {
  margin-bottom: 20px !important;
}
.banner .banner-section .custom-banner-4 {
  margin-bottom: 20px !important;
}
.banner .banner-section .banner-sign-up-btn {
  width: -moz-fit-content;
  width: fit-content;
  max-width: -moz-fit-content !important;
  max-width: fit-content !important;
  padding: 13px 27px;
}
.banner .banner-section .banner-sign-up-btn.small-padding {
  padding: 13px 30px 13px 20px;
}
.banner.grey-type {
  margin: 70px 20px 0 20px;
}
@media (min-width: 576px) {
  .banner.grey-type {
    margin: 20px 20px 0 20px;
  }
}
.banner.grey-type .banner-section {
  border-radius: 20px;
}
@media (min-width: 992px) {
  .banner.grey-type .banner-section {
    border-radius: 50px;
  }
}
.banner.for-media-view {
  margin-bottom: 29px;
}
.banner.for-media-view .banner-section.black-color .content {
  min-height: auto;
  padding-top: 38px;
  padding-bottom: 0;
}
.banner.for-media-view .banner-section.black-color .content .text-wrapper {
  max-width: 762px;
}
.banner.for-media-view .banner-section.black-color .content h1, .banner.for-media-view .banner-section.black-color .content .h1 {
  margin-bottom: 27px;
}
.banner.for-media-view .banner-section.black-color .content p {
  margin-bottom: 20px;
}
.banner .banner-section {
  max-width: 1920px;
  margin: 0 auto;
  background-size: cover;
  padding: 0 20px;
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
}
.banner .banner-section.background-1 {
  background-image: url("/images/banner1@1x.webp") !important;
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
}
@media (max-width: 991px) {
  .banner .banner-section.background-1 {
    background-image: url("/images/banner1-mobile@1x.webp") !important;
  }
}
@media (min-width: 992px) {
  .banner .banner-section {
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
  }
}
.banner .banner-section.home-page-view {
  margin-bottom: 20px !important;
}
@media (max-width: 575px) {
  .banner .banner-section.home-page-view {
    padding: 0 40px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .banner .banner-section.home-page-view {
    padding: 0 50px;
  }
}
@media (max-width: 575px) {
  .banner .banner-section.home-page-view .content {
    padding-top: 122px;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .banner .banner-section.home-page-view .content {
    padding-top: 180px;
  }
}
.banner .banner-section.home-page-view .content .text h5, .banner .banner-section.home-page-view .content .text .h5 {
  margin-bottom: 30px;
}
.banner .banner-section.home-page-view .content .text h2, .banner .banner-section.home-page-view .content .text .h2 {
  margin: 0 0 25px 0;
}
.banner .banner-section.home-page-view .content .text p {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .banner .banner-section.earning-models-view .order-lg-last {
    margin-left: -200px;
  }
}
@media (min-width: 992px) {
  .banner .banner-section.earning-models-view.cpa.black-color .content {
    padding-bottom: 0 !important;
  }
}
@media (min-width: 992px) {
  .banner .banner-section.earning-models-view.cpl.black-color .content, .banner .banner-section.earning-models-view.ppi.black-color .content {
    padding-bottom: 0 !important;
  }
}
@media (min-width: 1200px) {
  .banner .banner-section.earning-models-view.cpl.black-color .content, .banner .banner-section.earning-models-view.ppi.black-color .content {
    padding-top: 250px;
  }
}
@media (min-width: 992px) {
  .banner .banner-section.earning-models-view.cps.black-color .content a {
    margin-bottom: 0 !important;
  }
}
@media (min-width: 992px) {
  .banner .banner-section.earning-models-view.ivr.black-color .content, .banner .banner-section.earning-models-view.sms.black-color .content, .banner .banner-section.earning-models-view.cod.black-color .content {
    padding-bottom: 34px;
    min-height: auto;
  }
}
@media (min-width: 1200px) {
  .banner .banner-section.earning-models-view.ivr.black-color .content, .banner .banner-section.earning-models-view.sms.black-color .content, .banner .banner-section.earning-models-view.cod.black-color .content {
    min-height: 835px;
  }
}
@media (max-width: 576px) {
  .banner .banner-section.earning-models-view.influencers.black-color .content {
    padding-top: 50px;
  }
}
@media (min-width: 992px) {
  .banner .banner-section.earning-models-view.influencers.black-color .content {
    padding-bottom: 34px;
    min-height: auto;
  }
}
@media (min-width: 1200px) {
  .banner .banner-section.earning-models-view.influencers.black-color .content {
    min-height: 835px;
  }
}
.banner .banner-section.earning-models-view.influencers.black-color .content a {
  max-width: 100%;
}
@media (min-width: 576px) {
  .banner .banner-section.earning-models-view.influencers.black-color .content a {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
@media (min-width: 1200px) {
  .banner .banner-section.earning-models-view.for-webmasters.black-color .content {
    padding-top: 233px;
  }
}
@media (min-width: 992px) {
  .banner .banner-section.earning-models-view.earning-models.black-color .content {
    padding-bottom: 0 !important;
    min-height: auto;
  }
}
@media (min-width: 1200px) {
  .banner .banner-section.earning-models-view.earning-models.black-color .content {
    min-height: 835px;
  }
}
.banner .banner-section.earning-models-view.black-color .content {
  max-width: 100%;
}
@media (max-width: 575px) {
  .banner .banner-section.earning-models-view.black-color .content {
    padding-top: 30px;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .banner .banner-section.earning-models-view.black-color .content {
    padding-top: 70px;
  }
}
@media (min-width: 992px) {
  .banner .banner-section.earning-models-view.black-color .content {
    height: auto;
    max-height: 1170px;
    padding-top: 174px;
  }
}
@media (min-width: 1200px) {
  .banner .banner-section.earning-models-view.black-color .content {
    padding-top: 190px;
  }
}
.banner .banner-section.earning-models-view.black-color .content h1, .banner .banner-section.earning-models-view.black-color .content .h1 {
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  .banner .banner-section.earning-models-view.black-color .content h3, .banner .banner-section.earning-models-view.black-color .content .h3 {
    margin-bottom: 40px;
  }
}
.banner .banner-section.earning-models-view.black-color .content p {
  margin-bottom: 30px;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .banner .banner-section.earning-models-view.black-color .content p.second-paragraph {
    width: 913px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .banner .banner-section.earning-models-view.black-color .content p.third-paragraph {
    width: 913px;
  }
}
.banner .banner-section.earning-models-view.black-color .content p:last-of-type {
  margin-bottom: 46px;
}
.banner .banner-section.earning-models-view.black-color .content a {
  margin-bottom: 60px;
}
@media (min-width: 576px) {
  .banner .banner-section.earning-models-view.black-color .content a {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
@media (min-width: 992px) {
  .banner .banner-section.earning-models-view.black-color .content a {
    margin-bottom: 100px;
  }
}
.banner .banner-section.earning-models-view.black-color .content a.sign-up-global {
  padding: 12px 18px !important;
}
.banner .banner-section.for-beginners-view.black-color .content {
  max-width: 100%;
  padding-bottom: 0;
}
@media (max-width: 575px) {
  .banner .banner-section.for-beginners-view.black-color .content {
    padding-top: 30px;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .banner .banner-section.for-beginners-view.black-color .content {
    padding-top: 70px;
  }
}
@media (min-width: 992px) {
  .banner .banner-section.for-beginners-view.black-color .content {
    height: auto;
    max-height: 1110px;
    padding-top: 174px;
  }
}
@media (min-width: 1200px) {
  .banner .banner-section.for-beginners-view.black-color .content {
    padding-top: 190px;
    max-height: 1070px;
  }
}
.banner .banner-section.for-beginners-view.black-color .content h1, .banner .banner-section.for-beginners-view.black-color .content .h1 {
  margin-bottom: 17px;
}
.banner .banner-section.for-beginners-view.black-color .content h2.ul-list-margin, .banner .banner-section.for-beginners-view.black-color .content .ul-list-margin.h2 {
  margin-bottom: 24px;
}
.banner .banner-section.for-beginners-view.black-color .content ul {
  margin-left: -12px;
  margin-bottom: 0;
}
.banner .banner-section.for-beginners-view.black-color .content ul li {
  color: #87919C;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 24px;
}
@media (min-width: 576px) {
  .banner .banner-section.for-beginners-view.black-color .content ul li {
    font-size: 18px;
  }
}
.banner .banner-section.for-beginners-view.black-color .content a {
  margin-bottom: 40px;
}
@media (min-width: 576px) {
  .banner .banner-section.for-beginners-view.black-color .content a {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
@media (min-width: 992px) {
  .banner .banner-section.for-beginners-view.black-color .content a {
    margin-bottom: 65px;
  }
}
.banner .banner-section.for-beginners-view.black-color .content a.sign-up-global {
  padding: 15px 18px !important;
}
@media (min-width: 1200px) {
  .banner .banner-section.content-locker-view .banner-publisher-cpa {
    top: 140px;
    left: 260px;
    background-size: 80% !important;
  }
}
@media (min-width: 1200px) {
  .banner .banner-section.content-locker-view .banner-publisher-cpa.for-webmasters-size {
    top: 170px;
    left: 260px;
    background-size: 90% !important;
  }
}
.banner .banner-section.content-locker-view.black-color .content h1, .banner .banner-section.content-locker-view.black-color .content .h1 {
  margin-bottom: 50px;
  font-size: 33px;
}
@media (min-width: 576px) {
  .banner .banner-section.content-locker-view.black-color .content h1, .banner .banner-section.content-locker-view.black-color .content .h1 {
    font-size: 56px;
  }
}
.banner .banner-section.content-locker-view.black-color .content h2, .banner .banner-section.content-locker-view.black-color .content .h2 {
  line-height: 28px;
  font-size: 18px;
}
@media (min-width: 576px) {
  .banner .banner-section.content-locker-view.black-color .content h2, .banner .banner-section.content-locker-view.black-color .content .h2 {
    line-height: 36px;
    font-size: 24px;
  }
}
.banner .banner-section.content-locker-view.black-color .content p {
  font-size: 15px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .banner .banner-section.content-locker-view.black-color .content p {
    font-size: 18px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .banner .banner-section.content-locker-view.black-color .content p {
    font-size: 16px;
  }
}
.banner .banner-section.content-locker-view.black-color .content a.sign-up-global {
  max-width: 100%;
}
@media (min-width: 576px) {
  .banner .banner-section.content-locker-view.black-color .content a.sign-up-global {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
.banner .banner-section.content-locker-view.black-color .content a.sign-up-global.cl-btn {
  padding: 14px 37px !important;
}
@media (min-width: 576px) {
  .banner .banner-section.content-locker-view.black-color .content a {
    max-width: 213px;
  }
}
@media (min-width: 992px) {
  .banner .banner-section.earning-models-ivr-view.black-color .content {
    height: 780px;
    padding-top: 190px;
  }
}
.banner .banner-section.earning-models-ivr-view.black-color .content a.sign-up-global {
  padding: 12px 18px !important;
}
@media (min-width: 992px) {
  .banner .banner-section.cooperation-view.black-color .content {
    height: auto;
    padding-top: 190px;
  }
}
@media (min-width: 992px) {
  .banner .banner-section.content-auto-height.black-color .content {
    height: auto;
    min-height: auto;
    padding-top: 190px;
    padding-bottom: 100px;
  }
}
.banner .banner-section .order-lg-first {
  z-index: 2;
}
.banner .banner-section.white-background {
  z-index: 0;
  background-image: none !important;
  background-color: #fff;
}
.banner .banner-section.grey-background {
  background-color: #F4F6F9;
}
.banner .banner-section.black-color .content h1, .banner .banner-section.black-color .content .h1 {
  color: #283B41;
}
.banner .banner-section.black-color .content h5, .banner .banner-section.black-color .content .h5 {
  color: #283B41;
}
.banner .banner-section.black-color .content h2, .banner .banner-section.black-color .content .h2 {
  line-height: 28px;
  font-size: 18px;
  color: #283B41;
  font-weight: 700;
  margin-bottom: 35px;
}
@media (min-width: 768px) {
  .banner .banner-section.black-color .content h2, .banner .banner-section.black-color .content .h2 {
    font-size: 24px;
    line-height: 36px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .banner .banner-section.black-color .content h2, .banner .banner-section.black-color .content .h2 {
    font-size: 20px;
    line-height: 30px;
  }
}
.banner .banner-section.black-color .content h3, .banner .banner-section.black-color .content .h3 {
  font-size: 14px;
  font-weight: 700;
  color: #A8B4C1;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 2.8px;
}
.banner .banner-section.black-color .content p {
  font-size: 15px;
  font-weight: 400;
  color: #87919C;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .banner .banner-section.black-color .content p {
    font-size: 18px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .banner .banner-section.black-color .content p {
    font-size: 16px;
  }
}
.banner .banner-section.black-color .content ul li {
  font-size: 15px;
  font-weight: 400;
  color: #87919C;
}
@media (min-width: 768px) {
  .banner .banner-section.black-color .content ul li {
    font-size: 18px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .banner .banner-section.black-color .content ul li {
    font-size: 16px;
  }
}
.banner .banner-section.black-color .content .margin20 {
  margin-bottom: 20px;
}
.banner .banner-section .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 575px) {
  .banner .banner-section .content {
    padding-top: 90px;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .banner .banner-section .content {
    padding-top: 120px;
  }
}
@media (min-width: 992px) {
  .banner .banner-section .content {
    min-height: 870px;
    padding-top: 130px;
    padding-bottom: 100px;
  }
}
.banner .banner-section .content:not(.custom-content) {
  max-width: 600px;
  /*TODO: To check*/
}
@media (max-width: 576px) {
  .banner .banner-section .content.audit-content {
    padding-top: 50px !important;
  }
}
@media (min-width: 992px) {
  .banner .banner-section .content.how-it-works-content {
    padding-top: 220px;
    padding-bottom: 45px;
    min-height: 770px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
}
.banner .banner-section .content.how-it-works-content p {
  margin-bottom: 0;
  padding-bottom: 0;
}
.banner .banner-section .content.how-it-works-content .btn-show-more-global[aria-expanded=true] {
  margin-bottom: 0 !important;
}
@media (max-width: 575px) {
  .banner .banner-section .content.custom-content {
    padding-bottom: 20px;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .banner .banner-section .content.custom-content {
    padding-bottom: 20px;
  }
}
@media (min-width: 992px) {
  .banner .banner-section .content.custom-content.custom-content-first-section {
    padding-top: 150px;
  }
}
.banner .banner-section .content.custom-content.custom-content-first-section.faq-section {
  max-width: 940px;
}
.banner .banner-section .content.custom-content.custom-content-first-section.faq-section .faq-text-wrapper p a {
  color: #45BF52;
}
@media (min-width: 992px) {
  .banner .banner-section .content.custom-content .text-wrapper {
    max-width: 600px;
  }
}
.banner .banner-section .content .page-counter {
  border-radius: 20px;
  margin-top: -20px;
  margin-bottom: 65px;
  display: flex;
  background-color: #fff;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 420px) {
  .banner .banner-section .content .page-counter {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .banner .banner-section .content .page-counter {
    margin: 0 auto 0 auto;
    flex-direction: column;
  }
}
@media (max-width: 1199px) {
  .banner .banner-section .content .page-counter {
    border-radius: 10px;
  }
}
@media (min-width: 768px) {
  .banner .banner-section .content .page-counter {
    padding: 5px 20px;
  }
}
.banner .banner-section .content .page-counter .numbers {
  display: flex;
  margin: 0 12.5px;
}
@media (max-width: 991px) {
  .banner .banner-section .content .page-counter .numbers {
    padding: 10px 0;
  }
}
.banner .banner-section .content .page-counter span.text {
  font-size: 15px;
  color: #283B41;
  font-weight: 400;
}
@media (min-width: 768px) {
  .banner .banner-section .content .page-counter span.text {
    font-size: 18px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .banner .banner-section .content .page-counter span.text {
    font-size: 16px;
  }
}
.banner .banner-section .content .page-counter span.number {
  border-radius: 4px;
  opacity: 1;
  background-color: #E8FFE3;
  color: #45BF52;
  font-size: 20px;
  font-weight: 900;
  height: 45px;
  width: 36px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 2.5px;
}
@media (max-width: 370px) {
  .banner .banner-section .content .page-counter span.number {
    width: 20px;
  }
}
@media (min-width: 768px) {
  .banner .banner-section .content .page-counter span.number {
    font-size: 24px;
    font-weight: 900;
    height: 50px;
    width: 40px;
  }
}
.banner .banner-section .content h1, .banner .banner-section .content .h1 {
  font-size: 33px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .banner .banner-section .content h1, .banner .banner-section .content .h1 {
    line-height: 40px;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .banner .banner-section .content h1, .banner .banner-section .content .h1 {
    font-size: 43px;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .banner .banner-section .content h1, .banner .banner-section .content .h1 {
    font-size: 43px;
  }
}
@media (min-width: 992px) {
  .banner .banner-section .content h1, .banner .banner-section .content .h1 {
    font-size: 56px;
  }
}
.banner .banner-section .content h1 .custom-b, .banner .banner-section .content .h1 .custom-b {
  font-weight: 900;
}
.banner .banner-section .content h4, .banner .banner-section .content .h4 {
  color: #45BF52;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.banner .banner-section .content h4 a, .banner .banner-section .content .h4 a {
  color: #45BF52;
  text-decoration: none;
}
.banner .banner-section .content .text {
  max-width: 535px;
}
.banner .banner-section .content .text h4, .banner .banner-section .content .text .h4 {
  color: #45BF52;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.banner .banner-section .content .text h5, .banner .banner-section .content .text .h5 {
  color: #45BF52;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 50px;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.5;
}
.banner .banner-section .content .text h2, .banner .banner-section .content .text .h2 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 30px 0;
}
@media (max-width: 991px) {
  .banner .banner-section .content .text h2, .banner .banner-section .content .text .h2 {
    line-height: 28px;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .banner .banner-section .content .text h2, .banner .banner-section .content .text .h2 {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .banner .banner-section .content .text h2, .banner .banner-section .content .text .h2 {
    font-size: 24px;
  }
}
.banner .banner-section .content .text p {
  font-size: 15px;
  font-weight: 400;
  color: #A8B4C1;
  margin-bottom: 50px;
}
@media (min-width: 576px) and (max-width: 991px) {
  .banner .banner-section .content .text p {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .banner .banner-section .content .text p {
    font-size: 18px;
  }
}
.banner .banner-section .content .sign-up-global {
  max-width: 100%;
}
@media (min-width: 576px) {
  .banner .banner-section .content .sign-up-global {
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
@media (max-width: 991px) {
  .banner .banner-section .content .sign-up-global {
    margin-bottom: 45px;
  }
}
.banner .banner-section .content .btn-show-more-global {
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 0 15px;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .banner .banner-section .content .btn-show-more-global {
    margin-bottom: 50px;
  }
}
.banner .banner-section .banner-main-pl {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1117px 749px;
  display: block;
  height: 749px;
  width: 1117px;
}
.webp.webpalpha .banner .banner-section .banner-main-pl {
  background-image: url("/images/adds-pl@1x.webp") !important;
}
.no-js .banner .banner-section .banner-main-pl, .no-webp .banner .banner-section .banner-main-pl, .no-webpalpha .banner .banner-section .banner-main-pl {
  background-image: url("/images/adds-pl@1x.png") !important;
}
.banner .banner-section .banner-main-en {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1117px 749px;
  display: block;
  height: 749px;
  width: 1117px;
}
.webp.webpalpha .banner .banner-section .banner-main-en {
  background-image: url("/images/adds-en@1x.webp") !important;
}
.no-js .banner .banner-section .banner-main-en, .no-webp .banner .banner-section .banner-main-en, .no-webpalpha .banner .banner-section .banner-main-en {
  background-image: url("/images/adds-en@1x.png") !important;
}
@media (max-width: 991px) {
  .banner .banner-section .banner-main-en {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1117px 749px;
    display: block;
    height: 749px;
    width: 1117px;
  }
  .webp.webpalpha .banner .banner-section .banner-main-en {
    background-image: url("/images/adds-en-y@1x.webp") !important;
  }
  .no-js .banner .banner-section .banner-main-en, .no-webp .banner .banner-section .banner-main-en, .no-webpalpha .banner .banner-section .banner-main-en {
    background-image: url("/images/adds-en-y@1x.png") !important;
  }
}
.banner .banner-section .banner-main-es {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1117px 749px;
  display: block;
  height: 749px;
  width: 1117px;
}
.webp.webpalpha .banner .banner-section .banner-main-es {
  background-image: url("/images/adds-es@1x.webp") !important;
}
.no-js .banner .banner-section .banner-main-es, .no-webp .banner .banner-section .banner-main-es, .no-webpalpha .banner .banner-section .banner-main-es {
  background-image: url("/images/adds-es@1x.png") !important;
}
.banner .banner-section .banner-main-ru {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1117px 749px;
  display: block;
  height: 749px;
  width: 1117px;
}
.webp.webpalpha .banner .banner-section .banner-main-ru {
  background-image: url("/images/adds-ru@1x.webp") !important;
}
.no-js .banner .banner-section .banner-main-ru, .no-webp .banner .banner-section .banner-main-ru, .no-webpalpha .banner .banner-section .banner-main-ru {
  background-image: url("/images/adds-ru@1x.png") !important;
}
.banner .banner-section .banner-main-uk {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1117px 749px;
  display: block;
  height: 749px;
  width: 1117px;
}
.webp.webpalpha .banner .banner-section .banner-main-uk {
  background-image: url("/images/adds-ua@1x.webp") !important;
}
.no-js .banner .banner-section .banner-main-uk, .no-webp .banner .banner-section .banner-main-uk, .no-webpalpha .banner .banner-section .banner-main-uk {
  background-image: url("/images/adds-ua@1x.png") !important;
}
.banner .banner-section .banner-main-fr {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1117px 749px;
  display: block;
  height: 749px;
  width: 1117px;
}
.webp.webpalpha .banner .banner-section .banner-main-fr {
  background-image: url("/images/adds-en@1x.webp") !important;
}
.no-js .banner .banner-section .banner-main-fr, .no-webp .banner .banner-section .banner-main-fr, .no-webpalpha .banner .banner-section .banner-main-fr {
  background-image: url("/images/adds-en@1x.png") !important;
}
@media (max-width: 991px) {
  .banner .banner-section .banner-main-fr {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1117px 749px;
    display: block;
    height: 749px;
    width: 1117px;
  }
  .webp.webpalpha .banner .banner-section .banner-main-fr {
    background-image: url("/images/adds-en-y@1x.webp") !important;
  }
  .no-js .banner .banner-section .banner-main-fr, .no-webp .banner .banner-section .banner-main-fr, .no-webpalpha .banner .banner-section .banner-main-fr {
    background-image: url("/images/adds-en-y@1x.png") !important;
  }
}
.banner .banner-section .banner-main {
  border-radius: 30px;
  margin-bottom: -20px;
  margin-left: -10px;
}
@media (min-width: 992px) {
  .banner .banner-section .banner-main {
    position: absolute;
    bottom: -200px;
    left: 80px;
    margin-bottom: 0;
    background-position: top left !important;
  }
}
@media (max-width: 991px) {
  .banner .banner-section .banner-main {
    background-position: revert !important;
    background-size: cover !important;
    border-radius: 20px;
    height: 316px;
  }
}
@media (max-width: 576px) {
  .banner .banner-section .banner-main {
    width: auto !important;
    min-width: 576px;
  }
}
.banner .banner-section .banner-4 {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 2500px 730px !important;
  display: block;
  height: 730px;
  width: 2500px;
  background-image: url("/images/svg/block-1.svg") !important;
  position: relative;
  left: -721px;
}
@media (min-width: 992px) {
  .banner .banner-section .banner-4 {
    position: absolute;
    top: 0;
    left: -690px;
  }
}
.banner .banner-section .banner-5 {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 725px 522px !important;
  display: block;
  height: 522px;
  width: 725px;
  background-image: url("/images/svg/start-publisher-01.svg") !important;
  position: relative;
  z-index: 2;
}
@media (max-width: 576px) {
  .banner .banner-section .banner-5 {
    margin: -10px auto 25px auto;
    max-height: 175px !important;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .banner .banner-section .banner-5 {
    margin: 40px auto 40px auto;
  }
}
@media (max-width: 991px) {
  .banner .banner-section .banner-5 {
    width: 90%;
    background-size: contain !important;
    top: 80px;
    left: 0;
    right: 0;
    max-width: 550px;
    height: auto;
  }
  .banner .banner-section .banner-5:before {
    padding-top: 81%;
    display: block;
  }
}
@media (min-width: 992px) {
  .banner .banner-section .banner-5 {
    position: absolute;
    top: 165px;
    left: -10px;
  }
}
.banner .banner-section .banner-5:before {
  content: "";
}
.banner .banner-section .banner-6 {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 1564px 733px !important;
  display: block;
  height: 733px;
  width: 1564px;
  background-image: url("/images/svg/start-publisher-02.svg") !important;
  z-index: 1;
  position: absolute;
}
@media (max-width: 576px) {
  .banner .banner-section .banner-6 {
    width: 100%;
    right: -33%;
    background-size: contain !important;
    top: -260px !important;
    min-width: 66%;
    max-width: 520px;
    height: 700px !important;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .banner .banner-section .banner-6 {
    width: 100%;
    right: -100px;
    background-size: contain !important;
    top: -250px !important;
    min-width: 435px;
  }
}
@media (min-width: 992px) {
  .banner .banner-section .banner-6 {
    top: -200px;
    left: -295px;
  }
}
.banner .banner-section .banner-7 {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 2500px 730px !important;
  display: block;
  height: 730px;
  width: 2500px;
  background-image: url("/images/svg/h-01.svg") !important;
  position: relative;
  left: -970px;
}
@media (min-width: 576px) {
  .banner .banner-section .banner-7 {
    left: -820px;
  }
}
@media (min-width: 992px) {
  .banner .banner-section .banner-7 {
    position: absolute;
    top: 0;
    left: -900px;
  }
}
.banner .banner-section .banner-8 {
  position: relative;
  left: -721px;
}
@media (min-width: 992px) {
  .banner .banner-section .banner-8 {
    position: absolute;
    top: 0;
    left: -690px;
  }
}
.banner .banner-section .radial-gradeint-1 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 677px 677px;
  display: block;
  height: 677px;
  width: 677px;
  z-index: 1;
  position: absolute;
  left: -50vw;
  top: 0;
}
.webp.webpalpha .banner .banner-section .radial-gradeint-1 {
  background-image: url("/images/rect-left-top@1x.webp") !important;
}
.no-js .banner .banner-section .radial-gradeint-1, .no-webp .banner .banner-section .radial-gradeint-1, .no-webpalpha .banner .banner-section .radial-gradeint-1 {
  background-image: url("/images/rect-left-top@1x.png") !important;
}
.banner .banner-section .radial-gradeint-2 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 495px 495px;
  display: block;
  height: 495px;
  width: 495px;
  z-index: 1;
  position: absolute;
  right: -20px;
  bottom: 0;
}
.webp.webpalpha .banner .banner-section .radial-gradeint-2 {
  background-image: url("/images/rect-right-bottom@1x.webp") !important;
}
.no-js .banner .banner-section .radial-gradeint-2, .no-webp .banner .banner-section .radial-gradeint-2, .no-webpalpha .banner .banner-section .radial-gradeint-2 {
  background-image: url("/images/rect-right-bottom@1x.png") !important;
}
@media (min-width: 992px) {
  .banner .banner-section .radial-gradeint-2 {
    right: unset;
    left: 25vw;
  }
}
.banner .banner-section .radial-gradeint-3 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 319px 319px;
  display: block;
  height: 319px;
  width: 319px;
  z-index: 1;
  position: absolute;
  left: 0;
  top: 40px;
}
.webp.webpalpha .banner .banner-section .radial-gradeint-3 {
  background-image: url("/images/rect-orange@1x.webp") !important;
}
.no-js .banner .banner-section .radial-gradeint-3, .no-webp .banner .banner-section .radial-gradeint-3, .no-webpalpha .banner .banner-section .radial-gradeint-3 {
  background-image: url("/images/rect-orange@1x.png") !important;
}
.banner .banner-section .index-02 {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 725px 522px !important;
  display: block;
  height: 522px;
  width: 725px;
  background-image: url("/images/svg/index-02.svg") !important;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .banner .banner-section .index-02 {
    width: 90%;
    background-size: contain !important;
    top: 80px;
    left: 0;
    right: 0;
    margin: 40px auto 40px auto;
    max-width: 550px;
    height: auto;
  }
  .banner .banner-section .index-02:before {
    padding-top: 81%;
    display: block;
  }
}
@media (min-width: 992px) {
  .banner .banner-section .index-02 {
    position: absolute;
    top: 165px;
    left: -10px;
  }
}
.banner .banner-section .index-02:before {
  content: "";
}
.banner .banner-section .index-01 {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 1564px 733px !important;
  display: block;
  height: 733px;
  width: 1564px;
  background-image: url("/images/svg/index-01.svg") !important;
  z-index: 1;
  position: absolute;
}
@media (max-width: 991px) {
  .banner .banner-section .index-01 {
    width: 100%;
    right: -100px;
    background-size: contain !important;
    top: -295px !important;
    min-width: 435px;
  }
}
@media (min-width: 992px) {
  .banner .banner-section .index-01 {
    top: -260px;
    left: -165px;
  }
}
.banner .banner-section .cpa-banner {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 725px 522px !important;
  display: block;
  height: 522px;
  width: 725px;
  background-image: url("/images/svg/cpa-01.svg") !important;
}
@media (min-width: 992px) {
  .banner .banner-section .cpa-banner {
    background-position: center !important;
    background-repeat: no-repeat;
    background-size: 725px 522px !important;
    display: block;
    height: 522px;
    width: 725px;
    background-image: url("/images/svg/cpa-01.svg") !important;
  }
}
.banner .banner-section .cpl-banner {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 725px 522px !important;
  display: block;
  height: 522px;
  width: 725px;
  background-image: url("/images/svg/cpl-01.svg") !important;
}
@media (min-width: 992px) {
  .banner .banner-section .cpl-banner {
    background-position: center !important;
    background-repeat: no-repeat;
    background-size: 640px 522px !important;
    display: block;
    height: 522px;
    width: 640px;
    background-image: url("/images/svg/cpl-01.svg") !important;
    top: 100px !important;
  }
}
@media (min-width: 1200px) {
  .banner .banner-section .cpl-banner {
    top: 310px !important;
  }
}
.banner .banner-section .cps-banner {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 725px 522px !important;
  display: block;
  height: 522px;
  width: 725px;
  background-image: url("/images/svg/cps.svg") !important;
}
@media (min-width: 992px) {
  .banner .banner-section .cps-banner {
    background-position: center !important;
    background-repeat: no-repeat;
    background-size: 725px 522px !important;
    display: block;
    height: 522px;
    width: 725px;
    background-image: url("/images/svg/cps.svg") !important;
  }
}
.banner .banner-section .ivr-banner {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 725px 522px !important;
  display: block;
  height: 522px;
  width: 725px;
  background-image: url("/images/svg/ivr-01.svg") !important;
}
@media (min-width: 992px) {
  .banner .banner-section .ivr-banner {
    background-position: center !important;
    background-repeat: no-repeat;
    background-size: 725px 522px !important;
    display: block;
    height: 522px;
    width: 725px;
    background-image: url("/images/svg/ivr-01.svg") !important;
  }
}
.banner .banner-section .sms-banner {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 725px 522px !important;
  display: block;
  height: 522px;
  width: 725px;
  background-image: url("/images/svg/sms-01.svg") !important;
}
@media (min-width: 992px) {
  .banner .banner-section .sms-banner {
    background-position: center !important;
    background-repeat: no-repeat;
    background-size: 725px 522px !important;
    display: block;
    height: 522px;
    width: 725px;
    background-image: url("/images/svg/sms-01.svg") !important;
  }
}
.banner .banner-section .ppi-banner {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 725px 522px !important;
  display: block;
  height: 522px;
  width: 725px;
  background-image: url("/images/svg/ppi-01.svg") !important;
}
@media (min-width: 992px) {
  .banner .banner-section .ppi-banner {
    background-position: center !important;
    background-repeat: no-repeat;
    background-size: 640px 522px !important;
    display: block;
    height: 522px;
    width: 640px;
    background-image: url("/images/svg/ppi-01.svg") !important;
    top: 100px !important;
  }
}
@media (min-width: 1200px) {
  .banner .banner-section .ppi-banner {
    top: 310px !important;
  }
}
.banner .banner-section .cod-banner {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 725px 522px !important;
  display: block;
  height: 522px;
  width: 725px;
  background-image: url("/images/svg/cod-01.svg") !important;
}
@media (min-width: 992px) {
  .banner .banner-section .cod-banner {
    background-position: center !important;
    background-repeat: no-repeat;
    background-size: 725px 522px !important;
    display: block;
    height: 522px;
    width: 725px;
    background-image: url("/images/svg/cod-01.svg") !important;
  }
}
@media (min-width: 1200px) {
  .banner .banner-section .cod-banner {
    top: 300px !important;
  }
}
.banner .banner-section .for-webmasters-banner {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 725px 522px !important;
  display: block;
  height: 522px;
  width: 725px;
  background-image: url("/images/svg/for-webmasters.svg") !important;
}
@media (min-width: 992px) {
  .banner .banner-section .for-webmasters-banner {
    background-position: center !important;
    background-repeat: no-repeat;
    background-size: 725px 500px !important;
    display: block;
    height: 500px;
    width: 725px;
    background-image: url("/images/svg/for-webmasters.svg") !important;
  }
}
.banner .banner-section .cpa-locker-banner {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 725px 522px !important;
  display: block;
  height: 522px;
  width: 725px;
  background-image: url("/images/svg/cod-01.svg") !important;
}
@media (min-width: 992px) {
  .banner .banner-section .cpa-locker-banner {
    background-position: center !important;
    background-repeat: no-repeat;
    background-size: 725px 480px !important;
    display: block;
    height: 480px;
    width: 725px;
    background-image: url("/images/svg/cod-01.svg") !important;
  }
}
@media (min-width: 1200px) {
  .banner .banner-section .cpa-locker-banner {
    top: 170px !important;
  }
}
.banner .banner-section .file-locker-banner {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 725px 522px !important;
  display: block;
  height: 522px;
  width: 725px;
  background-image: url("/images/svg/file-locker-banner.svg") !important;
}
@media (min-width: 992px) {
  .banner .banner-section .file-locker-banner {
    background-position: center !important;
    background-repeat: no-repeat;
    background-size: 725px 480px !important;
    display: block;
    height: 480px;
    width: 725px;
    background-image: url("/images/svg/file-locker-banner.svg") !important;
  }
}
@media (min-width: 1200px) {
  .banner .banner-section .file-locker-banner {
    top: 170px !important;
  }
}
.banner .banner-section .mobile-rewards-banner {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 725px 522px !important;
  display: block;
  height: 522px;
  width: 725px;
  background-image: url("/images/svg/mobile-rewards-banner.svg") !important;
}
@media (min-width: 992px) {
  .banner .banner-section .mobile-rewards-banner {
    background-position: center !important;
    background-repeat: no-repeat;
    background-size: 725px 480px !important;
    display: block;
    height: 480px;
    width: 725px;
    background-image: url("/images/svg/mobile-rewards-banner.svg") !important;
  }
}
@media (min-width: 1200px) {
  .banner .banner-section .mobile-rewards-banner {
    top: 170px !important;
  }
}
.banner .banner-section .captcha-locker-banner {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 725px 522px !important;
  display: block;
  height: 522px;
  width: 725px;
  background-image: url("/images/svg/captcha-locker-banner.svg") !important;
}
@media (min-width: 992px) {
  .banner .banner-section .captcha-locker-banner {
    background-position: center !important;
    background-repeat: no-repeat;
    background-size: 725px 480px !important;
    display: block;
    height: 480px;
    width: 725px;
    background-image: url("/images/svg/captcha-locker-banner.svg") !important;
  }
}
@media (min-width: 1200px) {
  .banner .banner-section .captcha-locker-banner {
    top: 170px !important;
  }
}
.banner .banner-section .banner-publisher {
  position: relative;
  z-index: 2;
}
@media (max-width: 576px) {
  .banner .banner-section .banner-publisher {
    margin: 35px auto 50px auto;
    max-height: 175px !important;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .banner .banner-section .banner-publisher {
    margin: 40px auto 40px auto;
  }
}
@media (max-width: 991px) {
  .banner .banner-section .banner-publisher {
    width: 90%;
    background-size: contain !important;
    top: 45px;
    left: 0;
    right: 0;
  }
  .banner .banner-section .banner-publisher:before {
    padding-top: 81%;
    display: block;
  }
}
@media (min-width: 450px) and (max-width: 991px) {
  .banner .banner-section .banner-publisher {
    max-width: 550px;
    height: auto;
  }
}
@media (max-width: 449px) {
  .banner .banner-section .banner-publisher {
    max-height: 160px;
    width: auto;
  }
}
@media (min-width: 576px) {
  .banner .banner-section .banner-publisher {
    top: 80px;
  }
}
@media (min-width: 992px) {
  .banner .banner-section .banner-publisher {
    position: absolute;
    top: 140px;
    left: 131px;
    background-size: 80% !important;
  }
}
@media (min-width: 1200px) {
  .banner .banner-section .banner-publisher {
    top: 240px;
    left: 260px;
    background-size: contain !important;
  }
}
.banner .banner-section .banner-publisher:before {
  content: "";
}
.banner .banner-section .banner-company-about-us-wrapper {
  min-height: 700px;
}
@media (min-width: 768px) {
  .banner .banner-section .banner-company-about-us-wrapper {
    width: 100%;
    min-height: 800px;
  }
}
.banner .banner-section .banner-company-about-us-wrapper .content {
  position: absolute;
  top: 120px;
  z-index: 2;
  padding-top: 0;
}
@media (max-width: 475px) {
  .banner .banner-section .banner-company-about-us-wrapper .content {
    max-width: 75%;
    left: 12.5%;
    right: 12.5%;
  }
}
@media (min-width: 476px) {
  .banner .banner-section .banner-company-about-us-wrapper .content {
    max-width: 50%;
    top: 145px;
    left: 25%;
    right: 25%;
  }
}
@media (min-width: 576px) {
  .banner .banner-section .banner-company-about-us-wrapper .content {
    max-width: 75%;
    left: 12.5%;
    right: 12.5%;
  }
}
@media (min-width: 992px) {
  .banner .banner-section .banner-company-about-us-wrapper .content {
    top: -15px;
  }
}
@media (min-width: 1200px) {
  .banner .banner-section .banner-company-about-us-wrapper .content {
    position: relative;
    margin-top: -29%;
    padding-top: 0 !important;
    max-width: 100%;
    top: 0;
    left: 0;
    right: 0;
  }
}
.banner .banner-section .banner-company-about-us-wrapper .content h4, .banner .banner-section .banner-company-about-us-wrapper .content .h4 {
  text-align: center;
  max-width: 305px;
  margin: 0 auto 14px auto;
}
@media (min-width: 576px) {
  .banner .banner-section .banner-company-about-us-wrapper .content h4, .banner .banner-section .banner-company-about-us-wrapper .content .h4 {
    max-width: 481px;
  }
}
@media (min-width: 1200px) {
  .banner .banner-section .banner-company-about-us-wrapper .content h4, .banner .banner-section .banner-company-about-us-wrapper .content .h4 {
    text-align: left;
    margin: 0 0 14px 0;
  }
}
.banner .banner-section .banner-company-about-us-wrapper .content h1, .banner .banner-section .banner-company-about-us-wrapper .content .h1 {
  text-align: center;
  max-width: 305px;
  margin: 0 auto 40px auto;
}
@media (min-width: 576px) {
  .banner .banner-section .banner-company-about-us-wrapper .content h1, .banner .banner-section .banner-company-about-us-wrapper .content .h1 {
    max-width: 481px;
  }
}
@media (max-width: 992px) {
  .banner .banner-section .banner-company-about-us-wrapper .content h1, .banner .banner-section .banner-company-about-us-wrapper .content .h1 {
    font-size: 33px;
  }
}
@media (min-width: 992px) {
  .banner .banner-section .banner-company-about-us-wrapper .content h1, .banner .banner-section .banner-company-about-us-wrapper .content .h1 {
    font-size: 43px;
  }
}
@media (min-width: 1200px) {
  .banner .banner-section .banner-company-about-us-wrapper .content h1, .banner .banner-section .banner-company-about-us-wrapper .content .h1 {
    font-size: 56px;
    text-align: left;
    margin: 0 0 40px 0;
  }
}
.banner .banner-section .banner-company-about-us-wrapper .content p {
  text-align: center;
  max-width: 305px;
  margin: 0 auto 0 auto;
}
@media (min-width: 576px) {
  .banner .banner-section .banner-company-about-us-wrapper .content p {
    max-width: 481px;
  }
}
@media (min-width: 1200px) {
  .banner .banner-section .banner-company-about-us-wrapper .content p {
    text-align: left;
    margin: 0;
  }
}
.banner .banner-section .banner-company-about-us-wrapper .details-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-top: 65px;
  margin-bottom: 35px;
}
@media (min-width: 768px) {
  .banner .banner-section .banner-company-about-us-wrapper .details-wrapper {
    margin-bottom: 75px;
  }
}
.banner .banner-section .banner-company-about-us-wrapper .details-wrapper .single-block {
  width: calc(50% - 10px);
  z-index: 2;
  height: 150px;
  margin: 5px;
  padding-top: 31px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 17px 20px 0px rgba(40, 59, 65, 0.05);
  text-align: center;
}
@media (min-width: 768px) {
  .banner .banner-section .banner-company-about-us-wrapper .details-wrapper .single-block {
    width: calc(25% - 10px);
    max-width: 224px;
    height: 218px;
    padding-top: 50px;
    box-shadow: 0px 40px 40px 0px rgba(40, 59, 65, 0.1);
  }
}
@media (min-width: 1200px) {
  .banner .banner-section .banner-company-about-us-wrapper .details-wrapper .single-block {
    width: calc(25% - 10px);
    max-width: 340px;
  }
}
.banner .banner-section .banner-company-about-us-wrapper .details-wrapper .single-block h4, .banner .banner-section .banner-company-about-us-wrapper .details-wrapper .single-block .h4 {
  font-size: 12px;
  letter-spacing: 2px;
  color: #A8B4C1;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .banner .banner-section .banner-company-about-us-wrapper .details-wrapper .single-block h4, .banner .banner-section .banner-company-about-us-wrapper .details-wrapper .single-block .h4 {
    font-size: 14px;
    margin-bottom: 17px;
  }
}
.banner .banner-section .banner-company-about-us-wrapper .details-wrapper .single-block h2, .banner .banner-section .banner-company-about-us-wrapper .details-wrapper .single-block .h2 {
  font-size: 20px;
  font-weight: 900;
  color: #283B41;
  line-height: 36px;
}
.banner .banner-section .banner-company-about-us-wrapper .details-wrapper .single-block h2 span, .banner .banner-section .banner-company-about-us-wrapper .details-wrapper .single-block .h2 span {
  border-bottom: 2px solid #45BF52;
}
@media (min-width: 768px) {
  .banner .banner-section .banner-company-about-us-wrapper .details-wrapper .single-block h2 span, .banner .banner-section .banner-company-about-us-wrapper .details-wrapper .single-block .h2 span {
    border-bottom: 4px solid #45BF52;
  }
}
@media (min-width: 768px) {
  .banner .banner-section .banner-company-about-us-wrapper .details-wrapper .single-block h2, .banner .banner-section .banner-company-about-us-wrapper .details-wrapper .single-block .h2 {
    font-size: 24px;
    margin-bottom: 22px;
  }
}
.banner .banner-section .banner-company-about-us-wrapper .details-wrapper .single-block p {
  font-size: 15px;
  font-weight: 400;
  color: #A8B4C1;
  max-width: 80%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .banner .banner-section .banner-company-about-us-wrapper .details-wrapper .single-block p {
    font-size: 17px;
  }
}
.banner .banner-section .banner-company-about-us-wrapper .company-about-us {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1800px 942px;
  display: block;
  height: 942px;
  width: 1800px;
}
.webp.webpalpha .banner .banner-section .banner-company-about-us-wrapper .company-about-us {
  background-image: url("/images/company-about-us@1x.webp") !important;
}
.no-js .banner .banner-section .banner-company-about-us-wrapper .company-about-us, .no-webp .banner .banner-section .banner-company-about-us-wrapper .company-about-us, .no-webpalpha .banner .banner-section .banner-company-about-us-wrapper .company-about-us {
  background-image: url("/images/company-about-us@1x.png") !important;
}
@media (min-width: 992px) {
  .banner .banner-section .banner-company-about-us-wrapper .company-about-us {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 5400px 2826px;
    display: block;
    height: 2826px;
    width: 5400px;
  }
  .webp.webpalpha .banner .banner-section .banner-company-about-us-wrapper .company-about-us {
    background-image: url("/images/company-about-us@1x.webp") !important;
  }
  .no-js .banner .banner-section .banner-company-about-us-wrapper .company-about-us, .no-webp .banner .banner-section .banner-company-about-us-wrapper .company-about-us, .no-webpalpha .banner .banner-section .banner-company-about-us-wrapper .company-about-us {
    background-image: url("/images/company-about-us@1x.png") !important;
  }
}
@media (min-width: 1200px) {
  .banner .banner-section .banner-company-about-us-wrapper .company-about-us {
    height: 737px !important;
  }
}
.banner .banner-section .banner-company-about-us-wrapper .banner-company-about-us {
  position: relative;
  z-index: 2;
}
@media (max-width: 1200px) {
  .banner .banner-section .banner-company-about-us-wrapper .banner-company-about-us {
    background-size: contain !important;
    top: 190px;
    right: 0;
    margin: 40px auto 40px auto;
    height: auto;
  }
  .banner .banner-section .banner-company-about-us-wrapper .banner-company-about-us:before {
    padding-top: 81%;
    display: block;
  }
}
@media (max-width: 1200px) and (min-width: 576px) {
  .banner .banner-section .banner-company-about-us-wrapper .banner-company-about-us:before {
    padding-top: 53%;
  }
}
@media (max-width: 576px) {
  .banner .banner-section .banner-company-about-us-wrapper .banner-company-about-us {
    max-width: 730px;
    left: -55px;
  }
}
@media (max-width: 439px) {
  .banner .banner-section .banner-company-about-us-wrapper .banner-company-about-us {
    width: 140%;
  }
}
@media (min-width: 440px) {
  .banner .banner-section .banner-company-about-us-wrapper .banner-company-about-us {
    width: 130%;
  }
}
@media (min-width: 576px) {
  .banner .banner-section .banner-company-about-us-wrapper .banner-company-about-us {
    left: -80px;
  }
}
@media (min-width: 768px) {
  .banner .banner-section .banner-company-about-us-wrapper .banner-company-about-us {
    width: 120%;
  }
}
@media (min-width: 992px) {
  .banner .banner-section .banner-company-about-us-wrapper .banner-company-about-us {
    background-size: 100% !important;
  }
}
@media (min-width: 1200px) {
  .banner .banner-section .banner-company-about-us-wrapper .banner-company-about-us {
    top: 80px;
    left: 260px;
    background-size: contain !important;
  }
}
.banner .banner-section .banner-company-about-us-wrapper .banner-company-about-us:before {
  content: "";
}
.banner .banner-section .banner-publisher-background {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 1564px 733px !important;
  display: block;
  height: 733px;
  width: 1564px;
  background-image: url("/images/svg/start-publisher-02.svg") !important;
  z-index: 1;
  position: absolute;
}
@media (max-width: 576px) {
  .banner .banner-section .banner-publisher-background {
    width: 100%;
    right: -33%;
    background-size: contain !important;
    top: -260px !important;
    min-width: 66%;
    max-width: 520px;
    height: 700px !important;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .banner .banner-section .banner-publisher-background {
    width: 100%;
    right: -175px;
    background-size: contain !important;
    top: -250px !important;
    min-width: 700px;
  }
}
@media (min-width: 992px) {
  .banner .banner-section .banner-publisher-background {
    background-position: center !important;
    background-repeat: no-repeat;
    background-size: 1564px 733px !important;
    display: block;
    height: 733px;
    width: 1564px;
    background-image: url("/images/svg/start-publisher-02.svg") !important;
    top: -175px;
    left: -300px;
  }
}
@media (min-width: 1200px) {
  .banner .banner-section .banner-publisher-background {
    top: -160px;
    left: -26px;
  }
}
.banner .banner-section .banner-9 {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 2500px 580px !important;
  display: block;
  height: 580px;
  width: 2500px;
  background-image: url("/images/svg/cpa-model-02-background.svg") !important;
  position: relative;
  top: 160px;
  left: -800px;
  background-size: 28% !important;
}
.banner .banner-section .banner-publisher-earning-models {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 782px 522px !important;
  display: block;
  height: 522px;
  width: 782px;
  background-image: url("/images/svg/earning-models-01.svg") !important;
  position: relative;
  z-index: 2;
}
@media (max-width: 576px) {
  .banner .banner-section .banner-publisher-earning-models {
    margin: 35px auto 40px auto;
    max-height: 175px !important;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .banner .banner-section .banner-publisher-earning-models {
    margin: 40px auto 40px auto;
  }
}
@media (max-width: 991px) {
  .banner .banner-section .banner-publisher-earning-models {
    width: 90%;
    background-size: contain !important;
    top: 45px;
    left: 0;
    right: 0;
    max-width: 550px;
    height: auto;
  }
  .banner .banner-section .banner-publisher-earning-models:before {
    padding-top: 81%;
    display: block;
  }
}
@media (min-width: 576px) {
  .banner .banner-section .banner-publisher-earning-models {
    top: 80px;
  }
}
@media (min-width: 992px) {
  .banner .banner-section .banner-publisher-earning-models {
    background-position: center !important;
    background-repeat: no-repeat;
    background-size: 782px 522px !important;
    display: block;
    height: 522px;
    width: 782px;
    background-image: url("/images/svg/earning-models-01.svg") !important;
    position: absolute;
    top: 230px;
    left: 131px;
    background-size: 80% !important;
  }
}
@media (min-width: 1200px) {
  .banner .banner-section .banner-publisher-earning-models {
    top: 240px;
    left: 260px;
    background-size: contain !important;
  }
}
.banner .banner-section .banner-publisher-earning-models:before {
  content: "";
}
.banner .banner-section .banner-start-02-01 {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 725px 522px !important;
  display: block;
  height: 522px;
  width: 725px;
  background-image: url("/images/svg/start-02-01.svg") !important;
  position: relative;
  z-index: 2;
}
@media (max-width: 576px) {
  .banner .banner-section .banner-start-02-01 {
    margin: -10px auto 0 auto;
    max-height: 175px !important;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .banner .banner-section .banner-start-02-01 {
    margin: 40px auto 40px auto;
  }
}
@media (max-width: 991px) {
  .banner .banner-section .banner-start-02-01 {
    width: 90%;
    background-size: contain !important;
    top: 80px;
    left: 0;
    right: 0;
    max-width: 550px;
    height: auto;
  }
  .banner .banner-section .banner-start-02-01:before {
    padding-top: 81%;
    display: block;
  }
}
@media (min-width: 992px) {
  .banner .banner-section .banner-start-02-01 {
    position: absolute;
    top: 165px;
    left: -10px;
  }
}
.banner .banner-section .banner-start-02-01:before {
  content: "";
}
.banner .banner-section .banner-start-02-02 {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 1564px 733px !important;
  display: block;
  height: 733px;
  width: 1564px;
  background-image: url("/images/svg/start-02-02.svg") !important;
  z-index: 1;
  position: absolute;
}
@media (max-width: 991px) {
  .banner .banner-section .banner-start-02-02 {
    width: 100%;
    right: -100px;
    background-size: contain !important;
    top: -295px !important;
    min-width: 435px;
  }
}
@media (min-width: 992px) {
  .banner .banner-section .banner-start-02-02 {
    top: -260px;
    left: -165px;
  }
}
.banner .banner-section .banner-start-cooperation {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 725px 522px !important;
  display: block;
  height: 522px;
  width: 725px;
  background-image: url("/images/svg/start-05.svg") !important;
  position: relative;
  z-index: 2;
}
@media (max-width: 576px) {
  .banner .banner-section .banner-start-cooperation {
    margin: -10px auto 25px auto;
    max-height: 175px !important;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .banner .banner-section .banner-start-cooperation {
    margin: 40px auto 40px auto;
  }
}
@media (max-width: 991px) {
  .banner .banner-section .banner-start-cooperation {
    width: 90%;
    background-size: contain !important;
    top: 80px;
    left: 0;
    right: 0;
    max-width: 550px;
    height: auto;
  }
  .banner .banner-section .banner-start-cooperation:before {
    padding-top: 81%;
    display: block;
  }
}
@media (min-width: 992px) {
  .banner .banner-section .banner-start-cooperation {
    position: absolute;
    top: 165px;
    left: -10px;
  }
}
.banner .banner-section .banner-start-cooperation:before {
  content: "";
}
.banner .banner-section .banner-start-cooperation-influencers {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 725px 500px !important;
  display: block;
  height: 500px;
  width: 725px;
  background-image: url("/images/svg/cod-01.svg") !important;
  position: relative;
  z-index: 2;
}
@media (max-width: 576px) {
  .banner .banner-section .banner-start-cooperation-influencers {
    margin: -10px auto 55px auto;
    max-height: 175px !important;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .banner .banner-section .banner-start-cooperation-influencers {
    margin: 40px auto 40px auto;
  }
}
@media (max-width: 991px) {
  .banner .banner-section .banner-start-cooperation-influencers {
    width: 90%;
    background-size: contain !important;
    top: 80px;
    left: 0;
    right: 0;
    max-width: 550px;
    height: auto;
  }
  .banner .banner-section .banner-start-cooperation-influencers:before {
    padding-top: 81%;
    display: block;
  }
}
@media (min-width: 992px) {
  .banner .banner-section .banner-start-cooperation-influencers {
    position: absolute;
    top: 210px;
    left: 260px;
  }
}
.banner .banner-section .banner-start-cooperation-influencers:before {
  content: "";
}
.banner .banner-section .banner-start-for-beginners {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 725px 522px !important;
  display: block;
  height: 522px;
  width: 725px;
  background-image: url("/images/svg/cpa-model-02.svg") !important;
  position: relative;
  z-index: 2;
}
@media (max-width: 576px) {
  .banner .banner-section .banner-start-for-beginners {
    margin: 35px auto 35px auto;
    max-height: 175px !important;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .banner .banner-section .banner-start-for-beginners {
    margin: 40px auto 40px auto;
  }
}
@media (max-width: 991px) {
  .banner .banner-section .banner-start-for-beginners {
    width: 90%;
    background-size: contain !important;
    top: 45px;
    left: 0;
    right: 0;
    max-width: 550px;
    height: auto;
  }
  .banner .banner-section .banner-start-for-beginners:before {
    padding-top: 81%;
    display: block;
  }
}
@media (min-width: 576px) {
  .banner .banner-section .banner-start-for-beginners {
    top: 80px;
  }
}
@media (min-width: 992px) {
  .banner .banner-section .banner-start-for-beginners {
    background-position: center !important;
    background-repeat: no-repeat;
    background-size: 725px 522px !important;
    display: block;
    height: 522px;
    width: 725px;
    background-image: url("/images/svg/cpa-model-02.svg") !important;
    position: absolute;
    top: 140px;
    left: 50px;
    background-size: 80% !important;
  }
}
@media (min-width: 1200px) {
  .banner .banner-section .banner-start-for-beginners {
    top: 240px;
    background-size: contain !important;
  }
}
.banner .banner-section .banner-start-for-beginners:before {
  content: "";
}
.banner .special-promo-title {
  font-weight: 700 !important;
  font-size: 30px !important;
  line-height: 130% !important;
  color: #283B41 !important;
}
@media (min-width: 1200px) {
  .banner .special-promo-title {
    font-size: 52px !important;
  }
}
.banner .special-promo-title.green-title {
  font-size: 40px !important;
  line-height: 120% !important;
  letter-spacing: 4px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  background: linear-gradient(280deg, #FFFFFF 50%, rgba(69, 191, 82, 0.6) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  -webkit-text-stroke: 2px #45BF52;
  display: inline-block;
}
@supports not (-webkit-text-stroke: 1px) {
  .banner .special-promo-title.green-title {
    text-shadow: 1px 0 0 #45BF52, -1px 0 0 #45BF52, 0 1px 0 #45BF52, 0 -1px 0 #45BF52, 1px 1px 0 #45BF52, -1px -1px 0 #45BF52, 1px -1px 0 #45BF52, -1px 1px 0 #45BF52;
  }
}
@media (min-width: 768px) {
  .banner .special-promo-title.green-title {
    font-size: 52px !important;
    -webkit-text-stroke: 3px #45BF52 !important;
    letter-spacing: 6px !important;
  }
}
@media (min-width: 1200px) {
  .banner .special-promo-title.green-title {
    font-size: 68px !important;
    letter-spacing: 8px !important;
  }
}
.banner .special-promo-desc {
  font-weight: 400 !important;
  font-size: 18px !important;
  line-height: 150% !important;
  letter-spacing: 0px !important;
  color: #283B41 !important;
  margin-bottom: 40px !important;
}
@media (min-width: 1200px) {
  .banner .special-promo-desc {
    font-size: 24px !important;
  }
}
.banner .special-promo-buttons {
  display: flex;
  gap: 10px;
  flex-direction: column-reverse;
  margin-bottom: 40px;
}
.banner .special-promo-buttons .sign-up-global {
  margin-bottom: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}
@media (min-width: 768px) {
  .banner .special-promo-buttons {
    flex-direction: row;
  }
  .banner .special-promo-buttons .sign-up-global {
    width: -moz-fit-content !important;
    width: fit-content !important;
    max-width: -moz-fit-content !important;
    max-width: fit-content !important;
  }
}
.banner .show-details-btn {
  width: 100% !important;
  height: 56px !important;
  border-radius: 28px !important;
  gap: 8px !important;
  padding: 18px 10px !important;
  background-color: #F4F6F9 !important;
  color: #87919C !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  text-align: center !important;
}
@media (min-width: 768px) {
  .banner .show-details-btn {
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
}
@media (min-width: 1200px) {
  .banner .show-details-btn {
    padding: 18px 20px !important;
  }
}
.banner .special-promo-info {
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 150% !important;
}
.banner .special-promo-info .promo-code {
  padding: 5px !important;
  border-radius: 8px !important;
  background-color: #e9ffe6;
  color: #45BF52 !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  line-height: 150% !important;
  letter-spacing: 0px !important;
}
.banner .special-promo-info .info-icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #F4F6F9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  vertical-align: middle;
  margin-bottom: 4px;
}
.banner .special-promo-info .info-icon:before {
  font-family: "Icomoon";
  position: relative;
  font-size: 6px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #87919C;
}

.logos-slider-section {
  margin: 0;
}

.blocks-slider-section {
  padding: 35px 20px 20px 20px;
  margin: 30px 0;
}
@media (min-width: 576px) {
  .blocks-slider-section {
    padding: 100px 20px;
  }
}
.blocks-slider-section.tigers-padding {
  padding: 0 20px 20px 20px;
}
@media (min-width: 576px) {
  .blocks-slider-section.tigers-padding {
    padding: 0 20px 100px 20px;
  }
}
.blocks-slider-section .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .blocks-slider-section .content {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 50px;
  }
}
.blocks-slider-section .content .text {
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .blocks-slider-section .content .text {
    margin-bottom: 0;
    text-align: left;
  }
}
.blocks-slider-section .content .text h2, .blocks-slider-section .content .text .h2 {
  font-size: 24px;
  font-weight: 900;
  display: inline-block;
  margin: 0;
  padding: 5px 0 0 0;
  width: auto;
}
@media (min-width: 768px) {
  .blocks-slider-section .content .text h2, .blocks-slider-section .content .text .h2 {
    font-size: 36px;
  }
}
.blocks-slider-section .content .text h2 span, .blocks-slider-section .content .text .h2 span {
  border-bottom: 3px solid #45BF52;
}
@media (min-width: 768px) {
  .blocks-slider-section .content .text h2 span, .blocks-slider-section .content .text .h2 span {
    border-bottom: 4px solid #45BF52;
  }
}
.blocks-slider-section .content .text h3, .blocks-slider-section .content .text .h3 {
  font-size: 24px;
  font-weight: 500;
  margin: 10px 0 0 0;
}
@media (min-width: 768px) {
  .blocks-slider-section .content .text h3, .blocks-slider-section .content .text .h3 {
    font-size: 30px;
  }
}
.blocks-slider-section .content .navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 90px;
}
@media (min-width: 768px) {
  .blocks-slider-section .content .navigation {
    max-width: 110px;
    margin-left: 30px;
  }
}
.blocks-slider-section .content .navigation .prev-btn, .blocks-slider-section .content .navigation .next-btn {
  font-family: "Icomoon";
  font-weight: 500;
  font-size: 13px;
  height: 40px;
  width: 40px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #A8B4C1;
  background-color: #fff;
  color: #A8B4C1;
  transition: 0.2s all;
}
@media (max-width: 768px) {
  .blocks-slider-section .content .navigation .prev-btn, .blocks-slider-section .content .navigation .next-btn {
    padding-top: 1px;
  }
}
@media (min-width: 768px) {
  .blocks-slider-section .content .navigation .prev-btn, .blocks-slider-section .content .navigation .next-btn {
    height: 50px;
    width: 50px;
    border: 4px solid #A8B4C1;
    font-size: 18px;
  }
}
.blocks-slider-section .content .navigation .prev-btn:disabled, .blocks-slider-section .content .navigation .next-btn:disabled {
  opacity: 0.1;
  pointer-events: none;
}
.blocks-slider-section .content .navigation .prev-btn:not(:disabled):hover, .blocks-slider-section .content .navigation .next-btn:not(:disabled):hover {
  background-color: #A8B4C1;
  color: #fff;
}
@media (min-width: 768px) {
  .blocks-slider-section .content .navigation .prev-btn {
    padding-top: 2px;
    padding-right: 2px;
  }
}
.blocks-slider-section .content .navigation .prev-btn:after {
  content: "";
}
@media (max-width: 768px) {
  .blocks-slider-section .content .navigation .next-btn {
    padding-left: 2px;
  }
}
@media (min-width: 768px) {
  .blocks-slider-section .content .navigation .next-btn {
    padding-top: 2px;
    padding-left: 2px;
  }
}
.blocks-slider-section .content .navigation .next-btn:after {
  content: "";
}
.blocks-slider-section .slick-list {
  margin: 0 -10px !important;
  overflow: visible !important;
}
.blocks-slider-section .slick-list .slick-slide {
  margin: 0;
  transition: 0.3s all;
}
.blocks-slider-section .slick-list .slick-slide[aria-hidden=true] {
  opacity: 0.3;
  pointer-events: none;
}
@media (max-width: 1199px) {
  .blocks-slider-section .slick-list .slick-slide:not(.slick-current) {
    opacity: 0.3;
    pointer-events: none;
  }
}
.blocks-slider-section .block-item {
  padding: 10px;
  cursor: pointer;
  transition: 0.3 all;
}
.blocks-slider-section .block-item h4, .blocks-slider-section .block-item .h4 {
  margin: 30px 0 20px 0;
  color: #283B41;
  font-weight: 900;
  font-size: 18px;
}
@media (min-width: 576px) {
  .blocks-slider-section .block-item h4, .blocks-slider-section .block-item .h4 {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .blocks-slider-section .block-item h4, .blocks-slider-section .block-item .h4 {
    margin: 40px 0 20px 0;
    font-size: 30px;
  }
}
.blocks-slider-section .block-item h5, .blocks-slider-section .block-item .h5 {
  color: #87919C;
  font-size: 15px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
@media (min-width: 576px) {
  .blocks-slider-section .block-item h5, .blocks-slider-section .block-item .h5 {
    font-size: 18px;
    line-height: 27px;
  }
}
.blocks-slider-section .block-item span {
  display: block;
  color: #87919C;
  font-size: 15px;
  font-weight: 700;
  margin: 20px 0 0 0;
}
@media (min-width: 576px) {
  .blocks-slider-section .block-item span {
    font-size: 16px;
    margin: 40px 0 0 0;
  }
}
.blocks-slider-section .block-item:hover .image:after {
  opacity: 0.5;
}
.blocks-slider-section .block-item:hover .image:before {
  opacity: 1;
}
.blocks-slider-section .block-item .image {
  width: 100% !important;
  height: auto !important;
  display: flex !important;
  background-size: cover !important;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 5;
}
.blocks-slider-section .block-item .image .shadow-box {
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
}
.blocks-slider-section .block-item .image:active:before {
  color: #F28503;
  background-color: #3A4037;
  height: 170px;
  width: 170px;
}
.blocks-slider-section .block-item .image:after {
  content: "";
  display: block;
  padding-top: 63%;
  background-color: #283B41;
  opacity: 0;
  width: 100%;
  transition: 0.2s all;
}
@media (max-width: 991px) {
  .blocks-slider-section .block-item .image:after {
    opacity: 0.5;
  }
}
.blocks-slider-section .block-item .image.video:before {
  font-family: "Font Awesome 6 Brands";
  content: "";
  font-size: 42px;
}
@media (max-width: 576px) {
  .blocks-slider-section .block-item .image.video:before {
    font-size: 17px;
  }
}
.blocks-slider-section .block-item .image.text:before {
  font-family: "Font Awesome 6 Solid";
  content: "";
  font-size: 38px;
}
@media (max-width: 576px) {
  .blocks-slider-section .block-item .image.text:before {
    font-size: 18px;
  }
}
.blocks-slider-section .block-item .image:before {
  transition: 0.2s all;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  color: #45BF52;
  position: absolute;
  background-color: #283B41;
  opacity: 0;
  height: 130px;
  width: 130px;
  border-radius: 100%;
  z-index: 3;
}
@media (max-width: 576px) {
  .blocks-slider-section .block-item .image:before {
    height: 50px;
    width: 50px;
    opacity: 1;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .blocks-slider-section .block-item .image:before {
    opacity: 1;
  }
}
.blocks-slider-section .block-item .image.success-stories-01 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 699px 438px;
  display: block;
  height: 438px;
  width: 699px;
}
.webp.webpalpha .blocks-slider-section .block-item .image.success-stories-01 {
  background-image: url("/images/success-stories-01@1x.webp") !important;
}
.no-js .blocks-slider-section .block-item .image.success-stories-01, .no-webp .blocks-slider-section .block-item .image.success-stories-01, .no-webpalpha .blocks-slider-section .block-item .image.success-stories-01 {
  background-image: url("/images/success-stories-01@1x.jpg") !important;
}
.blocks-slider-section .block-item .image.success-stories-02 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 699px 438px;
  display: block;
  height: 438px;
  width: 699px;
}
.webp.webpalpha .blocks-slider-section .block-item .image.success-stories-02 {
  background-image: url("/images/success-stories-02@1x.webp") !important;
}
.no-js .blocks-slider-section .block-item .image.success-stories-02, .no-webp .blocks-slider-section .block-item .image.success-stories-02, .no-webpalpha .blocks-slider-section .block-item .image.success-stories-02 {
  background-image: url("/images/success-stories-02@1x.jpg") !important;
}
.blocks-slider-section .block-item .image.success-stories-03 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 699px 438px;
  display: block;
  height: 438px;
  width: 699px;
}
.webp.webpalpha .blocks-slider-section .block-item .image.success-stories-03 {
  background-image: url("/images/success-stories-03@1x.webp") !important;
}
.no-js .blocks-slider-section .block-item .image.success-stories-03, .no-webp .blocks-slider-section .block-item .image.success-stories-03, .no-webpalpha .blocks-slider-section .block-item .image.success-stories-03 {
  background-image: url("/images/success-stories-03@1x.jpg") !important;
}
.blocks-slider-section .block-item .image.success-stories-04 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 699px 438px;
  display: block;
  height: 438px;
  width: 699px;
}
.webp.webpalpha .blocks-slider-section .block-item .image.success-stories-04 {
  background-image: url("/images/success-stories-04@1x.webp") !important;
}
.no-js .blocks-slider-section .block-item .image.success-stories-04, .no-webp .blocks-slider-section .block-item .image.success-stories-04, .no-webpalpha .blocks-slider-section .block-item .image.success-stories-04 {
  background-image: url("/images/success-stories-04@1x.jpg") !important;
}
.blocks-slider-section .block-item .image.success-stories-05 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 699px 438px;
  display: block;
  height: 438px;
  width: 699px;
}
.webp.webpalpha .blocks-slider-section .block-item .image.success-stories-05 {
  background-image: url("/images/success-stories-05@1x.webp") !important;
}
.no-js .blocks-slider-section .block-item .image.success-stories-05, .no-webp .blocks-slider-section .block-item .image.success-stories-05, .no-webpalpha .blocks-slider-section .block-item .image.success-stories-05 {
  background-image: url("/images/success-stories-05@1x.jpg") !important;
}

.tabs-section {
  background-color: #F4F6F9;
  border-radius: 20px;
  overflow: hidden;
  padding: 20px 0 0 0;
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .tabs-section {
    border-radius: 50px;
  }
}
@media (min-width: 992px) {
  .tabs-section {
    padding: 20px 0 0 0;
  }
}
@media (min-width: 992px) {
  .tabs-section.content-height-auto .tabs .v-tabs-items .v-window-item .content {
    min-height: auto;
  }
}
@media (max-width: 576px) {
  .tabs-section.custom-margin-mobile {
    margin-bottom: 30px;
  }
}
.tabs-section.additional-top-margin {
  margin-top: 20px;
}
.tabs-section .title-section-mylead {
  margin-top: 40px;
  margin-bottom: 46px;
  text-align: center;
}
@media (max-width: 576px) {
  .tabs-section .title-section-mylead.mobile-margin-small {
    margin-bottom: 29px;
  }
}
.tabs-section .title-section-mylead.custom-padding-x {
  padding-right: 20px;
  padding-left: 20px;
}
@media (min-width: 576px) {
  .tabs-section .title-section-mylead {
    margin-top: 100px;
    margin-bottom: 70px;
  }
}
.tabs-section .title-section-mylead h2, .tabs-section .title-section-mylead .h2 {
  padding: 0 20px;
  font-size: 24px;
}
@media (min-width: 576px) {
  .tabs-section .title-section-mylead h2, .tabs-section .title-section-mylead .h2 {
    font-size: 34px;
  }
}
@media (min-width: 1200px) {
  .tabs-section .title-section-mylead h2, .tabs-section .title-section-mylead .h2 {
    font-size: 40px;
  }
}
.tabs-section .title-section-mylead h2.title-bold, .tabs-section .title-section-mylead .title-bold.h2 {
  font-weight: 900;
}
.tabs-section .title-section-mylead h2.title-bold-700, .tabs-section .title-section-mylead .title-bold-700.h2 {
  font-weight: 700;
}
.tabs-section .title-section-mylead h2 .underline, .tabs-section .title-section-mylead .h2 .underline {
  border-bottom: 3px solid #45BF52;
}
@media (min-width: 576px) {
  .tabs-section .title-section-mylead h2 .underline, .tabs-section .title-section-mylead .h2 .underline {
    border-bottom: 4px solid #45BF52;
  }
}
.tabs-section .title-section-mylead p {
  max-width: 880px;
  margin: 40px auto 0 auto;
}
@media (min-width: 1200px) {
  .tabs-section:not(.tabs-section-2) .v-window {
    padding-left: 20px;
  }
}
.tabs-section .company-about-us-content-wrapper {
  margin: auto 0;
}
.tabs-section .company-about-us-content-wrapper .content {
  max-width: 550px;
  margin-bottom: 60px !important;
}
@media (min-width: 576px) {
  .tabs-section .company-about-us-content-wrapper .content {
    padding: 0 20px !important;
  }
}
.tabs-section .company-about-us-content-wrapper .content h3, .tabs-section .company-about-us-content-wrapper .content .h3 {
  display: none;
}
.tabs-section .company-about-us-content-wrapper .content h5, .tabs-section .company-about-us-content-wrapper .content .h5 {
  margin-top: 0 !important;
}
@media (min-width: 576px) {
  .tabs-section .company-about-us-content-wrapper .content h5, .tabs-section .company-about-us-content-wrapper .content .h5 {
    margin-top: 40px !important;
  }
}
@media (min-width: 992px) {
  .tabs-section .company-about-us-content-wrapper .content h5, .tabs-section .company-about-us-content-wrapper .content .h5 {
    margin-top: 0 !important;
  }
}
@media (max-width: 576px) {
  .tabs-section .company-about-us-image-wrapper .image {
    margin: 0 auto !important;
  }
}
@media (max-width: 576px) {
  .tabs-section .company-about-us-image-wrapper .image .about-us-1,
.tabs-section .company-about-us-image-wrapper .image .about-us-2,
.tabs-section .company-about-us-image-wrapper .image .about-us-3 {
    margin-bottom: 0 !important;
  }
}
.tabs-section .earning-models-content-wrapper {
  margin: auto 0;
}
@media (min-width: 576px) and (max-width: 992px) {
  .tabs-section .earning-models-content-wrapper {
    padding-top: 40px;
  }
}
.tabs-section .earning-models-content-wrapper .content {
  margin-bottom: 0 !important;
}
.tabs-section .earning-models-content-wrapper .content h3, .tabs-section .earning-models-content-wrapper .content .h3 {
  margin-top: 0 !important;
}
@media (min-width: 576px) {
  .tabs-section .earning-models-content-wrapper .content p {
    margin-bottom: 50px !important;
  }
}
@media (min-width: 576px) {
  .tabs-section .earning-models-image-wrapper {
    height: 100%;
    min-height: 513px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.tabs-section .earning-models-image-wrapper .image {
  margin: 20px 0 0 0 !important;
}
@media (max-width: 576px) {
  .tabs-section .earning-models-image-wrapper .image {
    padding: 20px;
  }
}
.tabs-section .earning-models-image-wrapper .image .cpl-img {
  margin: 0 !important;
}
.tabs-section.tabs-section-2 {
  background-color: #fff;
}
.tabs-section.tabs-section-2.grey-background {
  background-color: #F4F6F9;
  padding: 20px 20px 20px 20px;
}
@media (min-width: 576px) {
  .tabs-section.tabs-section-2.grey-background {
    padding: 20px 20px 0 20px;
  }
}
.tabs-section.tabs-section-2 .title-section-mylead {
  text-align: center;
}
.tabs-section.tabs-section-2 .title-section-mylead h2, .tabs-section.tabs-section-2 .title-section-mylead .h2 {
  padding: 0;
}
.tabs-section.tabs-section-2 .title-section-mylead.influencers-margin {
  margin-top: 40px;
  margin-bottom: 50px;
}
@media (min-width: 576px) {
  .tabs-section.tabs-section-2 .title-section-mylead.influencers-margin {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
.tabs-section.tabs-section-2 .title-section-mylead.affiliate-programs {
  margin-bottom: 49px;
}
.tabs-section.tabs-section-2 .title-section-mylead.affiliate-programs h2, .tabs-section.tabs-section-2 .title-section-mylead.affiliate-programs .h2 {
  font-weight: 700;
}
.tabs-section.tabs-section-2 .title-section-mylead.affiliate-programs p {
  max-width: 100%;
  margin: 6px auto 0 auto;
}
.tabs-section.tabs-section-2 .tabs {
  padding: 0;
}
.tabs-section.tabs-section-2 .tabs .v-tabs {
  padding: 0;
}
.tabs-section.tabs-section-2 .tabs .v-tabs-items .v-window-item .content {
  padding: 45px 0 0 0;
}
@media (min-width: 576px) {
  .tabs-section.tabs-section-2 .tabs .v-tabs-items .v-window-item .content {
    padding: 0;
  }
}
@media (max-width: 576px) {
  .tabs-section.tabs-section-2 .tabs .v-tabs-items .v-window-item .content h3, .tabs-section.tabs-section-2 .tabs .v-tabs-items .v-window-item .content .h3 {
    margin-top: 0;
  }
}
.tabs-section.tabs-section-2 .tabs .v-tabs-items .v-window-item .content .item-button-margin {
  margin-bottom: 70px;
}
.tabs-section.tabs-section-2 .tabs .v-tabs-items .v-window-item .content .btn-disabled {
  pointer-events: none !important;
  opacity: 0.3 !important;
}
.tabs-section.tabs-section-2 .tabs .v-tabs-items .v-window-item .content .nav-buttons .next-button,
.tabs-section.tabs-section-2 .tabs .v-tabs-items .v-window-item .content .nav-buttons .prev-button {
  background-color: transparent;
}
@media (min-width: 1200px) {
  .tabs-section.tabs-section-2 .tabs .v-tabs .v-item-group .v-slide-group__content {
    width: auto;
  }
}
.tabs-section.tabs-section-2 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab {
  min-width: 275px;
}
@media (max-width: 576px) {
  .tabs-section.tabs-section-2 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab h5, .tabs-section.tabs-section-2 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab .h5 {
    display: none;
  }
}
@media (max-width: 576px) {
  .tabs-section.tabs-section-2 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab span {
    margin-bottom: 15px;
  }
}
@media (min-width: 992px) {
  .tabs-section.tabs-section-2 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab.tabSizeM {
    min-width: 275px;
    width: 347px;
    max-width: 360px;
    padding: 0 77px;
  }
}
@media (min-width: 992px) {
  .tabs-section.tabs-section-2 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab.tabSizeXL {
    min-width: 275px;
    width: 460px;
    max-width: 460px;
  }
}
.tabs-section.tabs-section-2 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab--active {
  background-color: #fff;
}
.tabs-section.tabs-section-2 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab--active h5, .tabs-section.tabs-section-2 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab--active .h5 {
  color: #283B41;
}
@media (max-width: 576px) {
  .tabs-section.tabs-section-2 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab--active h5, .tabs-section.tabs-section-2 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab--active .h5 {
    display: inline;
  }
}
.tabs-section.tabs-section-2 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab--active span {
  color: #45BF52;
}
@media (max-width: 576px) {
  .tabs-section.tabs-section-2 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab--active span {
    margin-bottom: 7px;
  }
}
.tabs-section.tabs-section-2 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab:hover {
  background-color: #fff;
}
.tabs-section .tabs .v-tabs {
  position: relative;
}
.tabs-section .tabs .v-tabs .v-item-group {
  width: 100%;
}
@media (min-width: 576px) {
  .tabs-section .tabs .v-tabs .v-item-group {
    height: 100px;
    width: auto;
  }
}
.tabs-section .tabs .v-tabs .v-item-group.v-tabs-bar {
  background-color: transparent;
}
.tabs-section .tabs .v-tabs .v-item-group .v-slide-group__prev, .tabs-section .tabs .v-tabs .v-item-group .v-slide-group__next {
  display: none !important;
}
.tabs-section .tabs .v-tabs .v-item-group .v-slide-group__content {
  background-color: transparent;
}
.tabs-section .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab {
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-transform: none;
  width: 100%;
  border-radius: 20px;
  min-width: 210px;
  height: 100px;
  position: relative;
  max-width: 100%;
  transition: 0.2s;
}
@media (min-width: 992px) {
  .tabs-section .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab.tabSizeM {
    width: 347px;
    max-width: 360px;
    padding: 30px 77px;
  }
}
@media (min-width: 992px) {
  .tabs-section .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab.tabSizeXL {
    width: 460px;
    max-width: 460px;
  }
}
@media (min-width: 992px) {
  .tabs-section .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab.tabSize100 {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .tabs-section .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab {
    height: 70px;
    transition: height 0.3s;
  }
}
.tabs-section .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab:not(:last-child) {
  margin-bottom: 10px;
}
@media (min-width: 576px) {
  .tabs-section .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab {
    max-width: 360px;
    width: 276px;
  }
  .tabs-section .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab:not(:last-child) {
    margin-right: 10px;
    margin-left: 0;
  }
}
.tabs-section .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab span {
  color: #87919C;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
  text-transform: uppercase;
}
@media (max-width: 576px) {
  .tabs-section .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab span {
    margin-bottom: 0;
  }
}
.tabs-section .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab h5, .tabs-section .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab .h5 {
  color: #87919C;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
  margin: 0;
  max-width: 245px;
  /*TODO: For check*/
  transition: 0.1s;
}
@media (max-width: 576px) {
  .tabs-section .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab h5, .tabs-section .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab .h5 {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
  }
}
.tabs-section .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab:before {
  background-color: #fff;
}
.tabs-section .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab--active {
  background-color: #fff;
}
@media (max-width: 576px) {
  .tabs-section .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab--active {
    height: 105px;
    transition: height 0.3s;
  }
}
.tabs-section .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab--active span {
  color: #45BF52;
  font-weight: 900;
}
@media (max-width: 576px) {
  .tabs-section .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab--active span {
    margin-bottom: 4px;
  }
}
.tabs-section .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab--active h5, .tabs-section .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab--active .h5 {
  color: #283B41;
  font-weight: 900;
}
@media (max-width: 576px) {
  .tabs-section .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab--active h5, .tabs-section .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab--active .h5 {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s, visibility 0.3s;
  }
}
.tabs-section .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab:hover {
  background-color: #fff;
}
.tabs-section .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab:hover h5, .tabs-section .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab:hover .h5 {
  color: #283B41;
  font-weight: 900;
}
.tabs-section .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab:hover:after {
  opacity: 0 !important;
}
.tabs-section .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab:active:after {
  opacity: 0 !important;
}
.tabs-section .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab:not(.v-tab--active):after {
  content: "";
  display: block;
  background-color: #A8B4C1;
  height: 4px;
  width: 100%;
  border-radius: 2px;
  position: absolute;
  bottom: 0;
  opacity: 0.1;
}
.tabs-section .tabs .v-tabs .v-item-group .v-slide-group__content .v-tabs-slider-wrapper {
  display: none !important;
}

@media (max-width: 991px) {
  .tabs-3 .v-tabs {
    margin: 0 -20px 0 -20px;
    width: calc(100% + 40px);
  }
}
.tabs-3 .v-tabs .v-item-group {
  height: 60px;
  overflow: hidden;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .tabs-3 .v-tabs .v-item-group {
    border-radius: 10px;
  }
}
@media (min-width: 1200px) {
  .tabs-3 .v-tabs .v-item-group {
    border-radius: 20px;
  }
}
.tabs-3 .v-slide-group__prev, .tabs-3 .v-slide-group__next {
  display: none !important;
}
.tabs-3 .v-slide-group__content {
  justify-content: space-around !important;
}
.tabs-3 .v-slide-group__content .v-tabs-slider-wrapper {
  height: 3px !important;
  color: #45BF52 !important;
}
.tabs-3 .v-slide-group__content .v-tab {
  height: 60px;
  margin: 0 25px;
}
@media (min-width: 992px) {
  .tabs-3 .v-slide-group__content .v-tab {
    padding: 0 40px;
    margin: 0;
  }
}
.tabs-3 .v-slide-group__content .v-tab.v-tab--active h5.tab-title, .tabs-3 .v-slide-group__content .v-tab.v-tab--active .tab-title.h5 {
  color: #45BF52;
  font-weight: 700;
}
@media (min-width: 992px) {
  .tabs-3 .v-slide-group__content .v-tab.v-tab--active h5.tab-title, .tabs-3 .v-slide-group__content .v-tab.v-tab--active .tab-title.h5 {
    color: #283B41;
  }
}
.tabs-3 .v-slide-group__content .v-tab h5, .tabs-3 .v-slide-group__content .v-tab .h5 {
  letter-spacing: normal;
}
.tabs-3 .v-slide-group__content .v-tab h5.tab-title, .tabs-3 .v-slide-group__content .v-tab .tab-title.h5 {
  color: #A8B4C1;
  font-weight: 500;
  text-transform: none;
  margin: 0;
}
@media (max-width: 767px) {
  .tabs-3 .v-slide-group__content .v-tab h5.tab-title, .tabs-3 .v-slide-group__content .v-tab .tab-title.h5 {
    font-size: 15px;
  }
}
@media (min-width: 768px) {
  .tabs-3 .v-slide-group__content .v-tab h5.tab-title, .tabs-3 .v-slide-group__content .v-tab .tab-title.h5 {
    font-size: 14px;
  }
}

.tabs-section-4 {
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
  padding: 0 0 0 0;
}
@media (min-width: 1200px) {
  .tabs-section-4 {
    border-radius: 50px;
  }
}
@media (min-width: 992px) {
  .tabs-section-4.content-height-auto .tabs .v-tabs-items .v-window-item .content {
    min-height: auto;
  }
}
.tabs-section-4.company-about-us-padding {
  padding: 0;
}
@media (max-width: 576px) {
  .tabs-section-4.company-about-us-padding .tabs {
    padding: 0 30px;
  }
}
.tabs-section-4 .title-section-mylead {
  margin-top: 100px;
  margin-bottom: 70px;
  text-align: center;
}
.tabs-section-4 .title-section-mylead h2, .tabs-section-4 .title-section-mylead .h2 {
  padding: 0 20px;
}
.tabs-section-4 .title-section-mylead h2.title-bold, .tabs-section-4 .title-section-mylead .title-bold.h2 {
  font-weight: 900;
}
.tabs-section-4 .v-window {
  padding: 10px 20px 0 20px;
}
@media (min-width: 768px) {
  .tabs-section-4 .v-window {
    padding: 10px 40px 0 40px;
  }
}
.tabs-section-4 .tabs {
  transition: 0.3s all;
}
.tabs-section-4 .tabs .tabs-nav {
  padding: 0 40px;
}
.tabs-section-4 .tabs .v-tabs {
  position: relative;
}
.tabs-section-4 .tabs .v-tabs .v-item-group {
  width: 100%;
  height: 100px;
}
@media (min-width: 576px) {
  .tabs-section-4 .tabs .v-tabs .v-item-group {
    width: auto;
  }
}
.tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content {
  align-items: flex-end;
  justify-content: center;
}
.tabs-section-4 .tabs .v-tabs .v-item-group.v-tabs-bar {
  background-color: transparent;
}
.tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__prev, .tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__next {
  display: none !important;
}
.tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content {
  background-color: transparent;
}
.tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 60px;
  width: 100%;
  min-width: 210px;
  max-width: 100%;
  padding: 10px;
  border-radius: 20px;
  text-transform: none;
  opacity: 40%;
  margin-bottom: 10px;
  transition: 0.3s opacity;
}
@media (min-width: 992px) {
  .tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab.tabSizeM {
    width: 347px;
    max-width: 360px;
    background-color: red;
  }
}
@media (min-width: 992px) {
  .tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab.tabSizeXL {
    width: 460px;
    max-width: 460px;
  }
}
.tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab:hover {
  opacity: 100%;
}
.tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab.v-tab--active {
  opacity: 100%;
  border-radius: 0;
  border-bottom: 2px solid #45BF52;
}
@media (min-width: 576px) {
  .tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab {
    width: 190px;
    min-width: 100px;
  }
  .tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab:not(:last-child) {
    margin-right: 10px;
    margin-left: 0;
  }
}
.tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab .partner-logo {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  height: 60px;
  width: 160px;
}
.tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab span {
  color: #87919C;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 4px;
}
.tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab span.amazon-logo {
  width: 90px;
  min-width: 90px;
  height: 27px;
  z-index: 2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 90px 27px;
  display: block;
  background-position: top;
  background-size: contain;
}
.webp.webpalpha .tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab span.amazon-logo {
  background-image: url("/images/amazon@1x.webp") !important;
}
.no-js .tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab span.amazon-logo, .no-webp .tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab span.amazon-logo, .no-webpalpha .tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab span.amazon-logo {
  background-image: url("/images/amazon@1x.png") !important;
}
.tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab span.microsoft-logo {
  width: 115px;
  min-width: 115px;
  height: 25px;
  z-index: 2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 115px 25px;
  display: block;
  background-position: top;
  background-size: contain;
}
.webp.webpalpha .tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab span.microsoft-logo {
  background-image: url("/images/microsoft@1x.webp") !important;
}
.no-js .tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab span.microsoft-logo, .no-webp .tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab span.microsoft-logo, .no-webpalpha .tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab span.microsoft-logo {
  background-image: url("/images/microsoft@1x.png") !important;
}
.tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab span.netflix-logo {
  width: 80px;
  min-width: 80px;
  height: 26px;
  z-index: 2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 80px 30px;
  display: block;
  background-position: top;
  background-size: contain;
}
.webp.webpalpha .tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab span.netflix-logo {
  background-image: url("/images/netflix@1x.webp") !important;
}
.no-js .tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab span.netflix-logo, .no-webp .tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab span.netflix-logo, .no-webpalpha .tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab span.netflix-logo {
  background-image: url("/images/netflix@1x.png") !important;
}
.tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab span.google-logo {
  width: 85px;
  min-width: 30px;
  height: 28px;
  z-index: 2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 85px 30px;
  display: block;
  background-position: top;
  background-size: contain;
}
.webp.webpalpha .tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab span.google-logo {
  background-image: url("/images/google@1x.webp") !important;
}
.no-js .tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab span.google-logo, .no-webp .tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab span.google-logo, .no-webpalpha .tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab span.google-logo {
  background-image: url("/images/google@1x.png") !important;
}
.tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab h5, .tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab .h5 {
  color: #87919C;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
  margin: 0;
  max-width: 245px;
  /*TODO: For check*/
  transition: 0.1s;
}
.tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab:before {
  background-color: #fff;
}
.tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab--active span {
  color: #45BF52;
}
.tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab--active h5, .tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab--active .h5 {
  color: #283B41;
  font-weight: 900;
}
.tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab:active:after {
  opacity: 0 !important;
}
.tabs-section-4 .tabs .v-tabs .v-item-group .v-slide-group__content .v-tabs-slider-wrapper {
  display: none !important;
}
.tabs-section-4 .tabs .v-tabs-items {
  background-color: transparent;
  overflow: visible;
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .content {
  display: flex;
  justify-content: center;
  background-color: #fff;
  border-radius: 30px;
  transition: 0.3s height;
}
@media (min-width: 768px) {
  .tabs-section-4 .tabs .v-tabs-items .v-window-item .content {
    background-color: #F4F6F9;
  }
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .content .text-slider-item {
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  padding: 30px 0;
  display: flex;
}
@media (min-width: 768px) {
  .tabs-section-4 .tabs .v-tabs-items .v-window-item .content .text-slider-item {
    padding: 50px 10px;
  }
}
@media (min-width: 1200px) {
  .tabs-section-4 .tabs .v-tabs-items .v-window-item .content .text-slider-item {
    padding: 50px 35px;
  }
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .content .text-slider-item .logo-container {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .content .text-slider-item .logo-container .logo-wrapper {
  justify-content: center;
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .content .text-slider-item .text {
  background-color: #fff;
}
@media (min-width: 768px) {
  .tabs-section-4 .tabs .v-tabs-items .v-window-item .content .text-slider-item .text {
    background-color: #F4F6F9;
  }
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .content .text-slider-item .text .sign-up-global {
  margin-top: 30px;
  padding: 12px 27px;
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .content .text-slider-item .text .number {
  color: #6DBE5F;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .content .text-slider-item .text h2, .tabs-section-4 .tabs .v-tabs-items .v-window-item .content .text-slider-item .text .h2 {
  color: #283B41;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
}
@media (min-width: 768px) {
  .tabs-section-4 .tabs .v-tabs-items .v-window-item .content .text-slider-item .text h2, .tabs-section-4 .tabs .v-tabs-items .v-window-item .content .text-slider-item .text .h2 {
    font-size: 24px;
    line-height: 36px;
  }
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .content .text-slider-item .text h2 .underline, .tabs-section-4 .tabs .v-tabs-items .v-window-item .content .text-slider-item .text .h2 .underline {
  border-bottom: 3px solid #45BF52;
  font-weight: 900;
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .content .text-slider-item .text h3, .tabs-section-4 .tabs .v-tabs-items .v-window-item .content .text-slider-item .text .h3 {
  color: #283B41;
  font-size: 20px;
  font-weight: 500;
  line-height: 36px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .tabs-section-4 .tabs .v-tabs-items .v-window-item .content .text-slider-item .text h3, .tabs-section-4 .tabs .v-tabs-items .v-window-item .content .text-slider-item .text .h3 {
    font-size: 24px;
  }
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .content .text-slider-item .text h3 .underline, .tabs-section-4 .tabs .v-tabs-items .v-window-item .content .text-slider-item .text .h3 .underline {
  border-bottom: 3px solid #45BF52;
  font-weight: 900;
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .content .text-slider-item .text p {
  color: #87919C;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  margin: 0;
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .content .nav-buttons {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 90px;
  width: 100%;
  z-index: 10;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .tabs-section-4 .tabs .v-tabs-items .v-window-item .content .nav-buttons {
    margin-top: 50px;
    max-width: 110px;
  }
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .content .nav-buttons .prev-button, .tabs-section-4 .tabs .v-tabs-items .v-window-item .content .nav-buttons .next-button {
  font-family: "Icomoon";
  font-weight: 500;
  font-size: 13px;
  height: 40px;
  width: 40px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #A8B4C1;
  background-color: transparent;
  color: #A8B4C1;
  transition: 0.2s all;
}
@media (max-width: 768px) {
  .tabs-section-4 .tabs .v-tabs-items .v-window-item .content .nav-buttons .prev-button, .tabs-section-4 .tabs .v-tabs-items .v-window-item .content .nav-buttons .next-button {
    padding-top: 1px;
  }
}
@media (min-width: 768px) {
  .tabs-section-4 .tabs .v-tabs-items .v-window-item .content .nav-buttons .prev-button, .tabs-section-4 .tabs .v-tabs-items .v-window-item .content .nav-buttons .next-button {
    height: 50px;
    width: 50px;
    border: 4px solid #A8B4C1;
    font-size: 18px;
  }
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .content .nav-buttons .prev-button:disabled, .tabs-section-4 .tabs .v-tabs-items .v-window-item .content .nav-buttons .next-button:disabled {
  opacity: 0.1;
  pointer-events: none;
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .content .nav-buttons .prev-button:not(:disabled):hover, .tabs-section-4 .tabs .v-tabs-items .v-window-item .content .nav-buttons .next-button:not(:disabled):hover {
  background-color: #A8B4C1;
  color: #fff;
}
@media (min-width: 768px) {
  .tabs-section-4 .tabs .v-tabs-items .v-window-item .content .nav-buttons .prev-button {
    padding-top: 2px;
    padding-right: 2px;
  }
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .content .nav-buttons .prev-button:after {
  content: "";
}
@media (max-width: 768px) {
  .tabs-section-4 .tabs .v-tabs-items .v-window-item .content .nav-buttons .next-button {
    padding-left: 2px;
  }
}
@media (min-width: 768px) {
  .tabs-section-4 .tabs .v-tabs-items .v-window-item .content .nav-buttons .next-button {
    padding-top: 2px;
    padding-left: 2px;
  }
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .content .nav-buttons .next-button:after {
  content: "";
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .image {
  position: relative;
  margin: 100px auto 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .image .cpa-model {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 500px 500px !important;
  display: block;
  height: 500px;
  width: 500px;
  background-image: url("/images/svg/cpa-model.svg") !important;
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .image .tabs2-cat-01 {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 500px 350px !important;
  display: block;
  height: 350px;
  width: 500px;
  background-image: url("/images/svg/tabs2-cat-01.svg") !important;
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .image .tabs2-cat-02 {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 500px 350px !important;
  display: block;
  height: 350px;
  width: 500px;
  background-image: url("/images/svg/tabs2-cat-02.svg") !important;
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .image .tabs2-cat-03 {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 500px 350px !important;
  display: block;
  height: 350px;
  width: 500px;
  background-image: url("/images/svg/tabs2-cat-03.svg") !important;
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .image .tabs2-cat-04 {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 420px 350px !important;
  display: block;
  height: 350px;
  width: 420px;
  background-image: url("/images/svg/tabs2-cat-04.svg") !important;
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .image .tabs2-cat-05 {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 450px 350px !important;
  display: block;
  height: 350px;
  width: 450px;
  background-image: url("/images/svg/tabs2-cat-05.svg") !important;
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .image .tabs2-cat-06 {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 500px 350px !important;
  display: block;
  height: 350px;
  width: 500px;
  background-image: url("/images/svg/tabs2-cat-06.svg") !important;
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .image .single-image {
  background-size: contain !important;
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .image .banner-ivr {
  margin-top: -100px;
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 500px 500px !important;
  display: block;
  height: 500px;
  width: 500px;
  background-image: url("/images/svg/cpa-model-02-background.svg") !important;
  background-size: 100% !important;
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .image .how-ivr-programs-work-1 {
  margin-top: -100px;
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 500px 500px !important;
  display: block;
  height: 500px;
  width: 500px;
  background-image: url("/images/svg/how-ivr-programs-work-1.svg") !important;
  background-size: 100% !important;
}
@media (max-width: 576px) {
  .tabs-section-4 .tabs .v-tabs-items .v-window-item .image .how-ivr-programs-work-1 {
    width: 300px !important;
    height: 300px !important;
  }
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .image .how-ivr-programs-work-2 {
  margin-top: -100px;
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 500px 500px !important;
  display: block;
  height: 500px;
  width: 500px;
  background-image: url("/images/svg/how-ivr-programs-work-2.svg") !important;
  background-size: 100% !important;
}
@media (max-width: 576px) {
  .tabs-section-4 .tabs .v-tabs-items .v-window-item .image .how-ivr-programs-work-2 {
    width: 300px !important;
    height: 300px !important;
  }
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .image .how-ivr-programs-work-3 {
  margin-top: -100px;
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 500px 500px !important;
  display: block;
  height: 500px;
  width: 500px;
  background-image: url("/images/svg/how-ivr-programs-work-3.svg") !important;
  background-size: 100% !important;
}
@media (max-width: 576px) {
  .tabs-section-4 .tabs .v-tabs-items .v-window-item .image .how-ivr-programs-work-3 {
    width: 300px !important;
    height: 300px !important;
  }
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .image .influencers-step-1 {
  margin-top: -100px;
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 460px 500px !important;
  display: block;
  height: 500px;
  width: 460px;
  background-image: url("/images/svg/cpl-01.svg") !important;
  background-size: 100% !important;
}
@media (max-width: 576px) {
  .tabs-section-4 .tabs .v-tabs-items .v-window-item .image .influencers-step-1 {
    width: 300px !important;
    height: 300px !important;
  }
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .image .cpl-img {
  margin-top: -100px;
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 500px 500px !important;
  display: block;
  height: 500px;
  width: 500px;
  background-image: url("/images/svg/cpl.svg") !important;
  background-size: 100% !important;
}
@media (min-width: 992px) {
  .tabs-section-4 .tabs .v-tabs-items .v-window-item .image .cpl-img {
    margin-top: -100px;
  }
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .image .cpa-img {
  margin-top: -100px;
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 500px 500px !important;
  display: block;
  height: 500px;
  width: 500px;
  background-image: url("/images/svg/cpa.svg") !important;
  background-size: 100% !important;
}
@media (min-width: 992px) {
  .tabs-section-4 .tabs .v-tabs-items .v-window-item .image .cpa-img {
    margin-top: -100px;
  }
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .image .cps-img {
  margin-top: -100px;
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 500px 500px !important;
  display: block;
  height: 500px;
  width: 500px;
  background-image: url("/images/svg/cps.svg") !important;
  background-size: 100% !important;
}
@media (min-width: 992px) {
  .tabs-section-4 .tabs .v-tabs-items .v-window-item .image .cps-img {
    margin-top: -100px;
  }
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .image .ivr-img {
  margin-top: -100px;
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 500px 500px !important;
  display: block;
  height: 500px;
  width: 500px;
  background-image: url("/images/svg/ivr.svg") !important;
  background-size: 100% !important;
}
@media (min-width: 992px) {
  .tabs-section-4 .tabs .v-tabs-items .v-window-item .image .ivr-img {
    margin-top: -100px;
  }
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .image .sms-img {
  margin-top: -100px;
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 500px 500px !important;
  display: block;
  height: 500px;
  width: 500px;
  background-image: url("/images/svg/sms.svg") !important;
  background-size: 100% !important;
}
@media (min-width: 992px) {
  .tabs-section-4 .tabs .v-tabs-items .v-window-item .image .sms-img {
    margin-top: -100px;
  }
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .image .ppi-img {
  margin-top: -100px;
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 500px 500px !important;
  display: block;
  height: 500px;
  width: 500px;
  background-image: url("/images/svg/ppi.svg") !important;
  background-size: 100% !important;
}
@media (min-width: 992px) {
  .tabs-section-4 .tabs .v-tabs-items .v-window-item .image .ppi-img {
    margin-top: -100px;
  }
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .image .cod-img {
  margin-top: -100px;
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 500px 500px !important;
  display: block;
  height: 500px;
  width: 500px;
  background-image: url("/images/svg/cod.svg") !important;
  background-size: 100% !important;
}
@media (min-width: 992px) {
  .tabs-section-4 .tabs .v-tabs-items .v-window-item .image .cod-img {
    margin-top: -100px;
  }
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .image .about-us-1 {
  margin-top: -70px;
  margin-bottom: 86px;
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 650px 440px !important;
  display: block;
  height: 440px;
  width: 650px;
  background-image: url("/images/svg/about-us-1.svg") !important;
  background-size: 100% !important;
}
@media (min-width: 992px) {
  .tabs-section-4 .tabs .v-tabs-items .v-window-item .image .about-us-1 {
    margin-top: -70px;
  }
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .image .about-us-2 {
  margin-top: -70px;
  margin-bottom: 86px;
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 630px 440px !important;
  display: block;
  height: 440px;
  width: 630px;
  background-image: url("/images/svg/about-us-2.svg") !important;
  background-size: 100% !important;
}
@media (min-width: 992px) {
  .tabs-section-4 .tabs .v-tabs-items .v-window-item .image .about-us-2 {
    margin-top: -70px;
  }
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .image .about-us-3 {
  margin-top: -70px;
  margin-bottom: 86px;
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 600px 440px !important;
  display: block;
  height: 440px;
  width: 600px;
  background-image: url("/images/svg/about-us-3.svg") !important;
  background-size: 100% !important;
}
@media (min-width: 992px) {
  .tabs-section-4 .tabs .v-tabs-items .v-window-item .image .about-us-3 {
    margin-top: -70px;
  }
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .image .about-us-4 {
  margin-top: -70px;
  margin-bottom: 86px;
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 650px 440px !important;
  display: block;
  height: 440px;
  width: 650px;
  background-image: url("/images/svg/about-us-4.svg") !important;
  background-size: 100% !important;
}
@media (min-width: 992px) {
  .tabs-section-4 .tabs .v-tabs-items .v-window-item .image .about-us-4 {
    margin-top: -70px;
  }
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .image-right {
  position: relative;
  left: 5%;
}
@media (min-width: 992px) {
  .tabs-section-4 .tabs .v-tabs-items .v-window-item .image-right {
    position: absolute;
    bottom: -180px;
    left: 55%;
  }
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .image-right .banner-3 {
  border-radius: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 996px 749px;
  display: block;
  height: 749px;
  width: 996px;
}
.webp.webpalpha .tabs-section-4 .tabs .v-tabs-items .v-window-item .image-right .banner-3 {
  background-image: url("/images/add1@1x.webp") !important;
}
.no-js .tabs-section-4 .tabs .v-tabs-items .v-window-item .image-right .banner-3, .no-webp .tabs-section-4 .tabs .v-tabs-items .v-window-item .image-right .banner-3, .no-webpalpha .tabs-section-4 .tabs .v-tabs-items .v-window-item .image-right .banner-3 {
  background-image: url("/images/add1@1x.jpg") !important;
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .image-right .add-step-1 {
  border-radius: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1471px 749px;
  display: block;
  height: 749px;
  width: 1471px;
  width: 1471px;
  height: 749px;
  background-size: 100%;
}
.webp.webpalpha .tabs-section-4 .tabs .v-tabs-items .v-window-item .image-right .add-step-1 {
  background-image: url("/images/add-step1@1x.webp") !important;
}
.no-js .tabs-section-4 .tabs .v-tabs-items .v-window-item .image-right .add-step-1, .no-webp .tabs-section-4 .tabs .v-tabs-items .v-window-item .image-right .add-step-1, .no-webpalpha .tabs-section-4 .tabs .v-tabs-items .v-window-item .image-right .add-step-1 {
  background-image: url("/images/add-step1@1x.jpg") !important;
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .image-right .add-step-2 {
  border-radius: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1471px 749px;
  display: block;
  height: 749px;
  width: 1471px;
  width: 1471px;
  height: 749px;
  background-size: 100%;
}
.webp.webpalpha .tabs-section-4 .tabs .v-tabs-items .v-window-item .image-right .add-step-2 {
  background-image: url("/images/add-step2@1x.webp") !important;
}
.no-js .tabs-section-4 .tabs .v-tabs-items .v-window-item .image-right .add-step-2, .no-webp .tabs-section-4 .tabs .v-tabs-items .v-window-item .image-right .add-step-2, .no-webpalpha .tabs-section-4 .tabs .v-tabs-items .v-window-item .image-right .add-step-2 {
  background-image: url("/images/add-step2@1x.jpg") !important;
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .image-right .add-step-3 {
  border-radius: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1471px 749px;
  display: block;
  height: 749px;
  width: 1471px;
  width: 1471px;
  height: 749px;
  background-size: 100%;
}
.webp.webpalpha .tabs-section-4 .tabs .v-tabs-items .v-window-item .image-right .add-step-3 {
  background-image: url("/images/add-step3@1x.webp") !important;
}
.no-js .tabs-section-4 .tabs .v-tabs-items .v-window-item .image-right .add-step-3, .no-webp .tabs-section-4 .tabs .v-tabs-items .v-window-item .image-right .add-step-3, .no-webpalpha .tabs-section-4 .tabs .v-tabs-items .v-window-item .image-right .add-step-3 {
  background-image: url("/images/add-step3@1x.jpg") !important;
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .image-right .add-step-4 {
  border-radius: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1471px 749px;
  display: block;
  height: 749px;
  width: 1471px;
  width: 1471px;
  height: 749px;
  background-size: 100%;
}
.webp.webpalpha .tabs-section-4 .tabs .v-tabs-items .v-window-item .image-right .add-step-4 {
  background-image: url("/images/add-step4@1x.webp") !important;
}
.no-js .tabs-section-4 .tabs .v-tabs-items .v-window-item .image-right .add-step-4, .no-webp .tabs-section-4 .tabs .v-tabs-items .v-window-item .image-right .add-step-4, .no-webpalpha .tabs-section-4 .tabs .v-tabs-items .v-window-item .image-right .add-step-4 {
  background-image: url("/images/add-step4@1x.jpg") !important;
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .image-right .add-step-5 {
  border-radius: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1471px 749px;
  display: block;
  height: 749px;
  width: 1471px;
  width: 1471px;
  height: 749px;
  background-size: 100%;
}
.webp.webpalpha .tabs-section-4 .tabs .v-tabs-items .v-window-item .image-right .add-step-5 {
  background-image: url("/images/add-step5@1x.webp") !important;
}
.no-js .tabs-section-4 .tabs .v-tabs-items .v-window-item .image-right .add-step-5, .no-webp .tabs-section-4 .tabs .v-tabs-items .v-window-item .image-right .add-step-5, .no-webpalpha .tabs-section-4 .tabs .v-tabs-items .v-window-item .image-right .add-step-5 {
  background-image: url("/images/add-step5@1x.jpg") !important;
}
.tabs-section-4 .tabs .v-tabs-items .v-window-item .image-right .banner-ivr {
  margin-top: -100px;
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 500px 500px !important;
  display: block;
  height: 500px;
  width: 500px;
  background-image: url("/images/svg/cpa-model-02-background.svg") !important;
}

.awards-blocks-section {
  padding: 80px 0;
  position: relative;
  border-radius: 50px;
  margin: 0 20px;
}
.awards-blocks-section .title-section-mylead {
  margin-bottom: 44px;
}
.awards-blocks-section .awards-blocks-wrapper .fade-enter-active, .awards-blocks-section .awards-blocks-wrapper .fade-leave-active {
  transition: opacity 0.5s ease;
}
.awards-blocks-section .awards-blocks-wrapper .fade-enter-from, .awards-blocks-section .awards-blocks-wrapper .fade-leave-to {
  opacity: 0;
}
.awards-blocks-section .awards-blocks-wrapper .text-wrapper {
  max-width: 764px;
  margin: 0 auto;
  text-align: center;
  min-height: 200px;
}
.awards-blocks-section .awards-blocks-wrapper .text-wrapper h2, .awards-blocks-section .awards-blocks-wrapper .text-wrapper .h2 {
  font-size: 22px;
  font-weight: 700;
  color: #283B41;
  margin-bottom: 29px;
  text-transform: uppercase;
}
.awards-blocks-section .awards-blocks-wrapper .text-wrapper h4, .awards-blocks-section .awards-blocks-wrapper .text-wrapper .h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 29px;
  color: #283B41;
  margin-bottom: 29px;
}
.awards-blocks-section .awards-blocks-wrapper .text-wrapper p {
  font-size: 16px;
  font-weight: 400;
  line-height: 29px;
  color: #87919C;
}
.awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges {
  margin: 30px 0 0 0;
}
@media (min-width: 576px) {
  .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges {
    margin: 30px 20px 0 20px;
  }
}
@media (max-width: 767px) {
  .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .col-4 .badge {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .col-4 .badge .badge-image-1, .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .col-4 .badge .badge-image-logo {
    transform: scale(0.8);
  }
}
.awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge {
  margin-top: 20px;
  cursor: pointer;
  background-color: #fff;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 45px 10px;
  max-width: 220px;
  width: 100%;
}
@media (min-width: 1200px) {
  .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge {
    border-radius: 50px;
  }
}
.awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-1 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 86px 68px;
  display: block;
  height: 68px;
  width: 86px;
}
.webp.webpalpha .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-1 {
  background-image: url("/images/place@1x.webp") !important;
}
.no-js .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-1, .no-webp .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-1, .no-webpalpha .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-1 {
  background-image: url("/images/place@1x.png") !important;
}
.awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-2 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 86px 68px;
  display: block;
  height: 68px;
  width: 86px;
}
.webp.webpalpha .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-2 {
  background-image: url("/images/star@1x.webp") !important;
}
.no-js .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-2, .no-webp .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-2, .no-webpalpha .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-2 {
  background-image: url("/images/star@1x.png") !important;
}
.awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section {
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo {
  transform: scale(0.9);
}
.awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.affbank {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 144px 25px;
  display: block;
  height: 25px;
  width: 144px;
}
.webp.webpalpha .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.affbank {
  background-image: url("/images/affbank@1x.webp") !important;
}
.no-js .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.affbank, .no-webp .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.affbank, .no-webpalpha .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.affbank {
  background-image: url("/images/affbank@1x.png") !important;
}
@media (max-width: 420px) {
  .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.affbank {
    background-size: 75% !important;
  }
}
.awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.affiliatefix {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 178px 31px;
  display: block;
  height: 31px;
  width: 178px;
}
.webp.webpalpha .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.affiliatefix {
  background-image: url("/images/affiliatefix@1x.webp") !important;
}
.no-js .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.affiliatefix, .no-webp .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.affiliatefix, .no-webpalpha .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.affiliatefix {
  background-image: url("/images/affiliatefix@1x.png") !important;
}
@media (max-width: 420px) {
  .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.affiliatefix {
    background-size: 75% !important;
  }
}
.awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.affnext {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 104px 28px;
  display: block;
  height: 28px;
  width: 104px;
}
.webp.webpalpha .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.affnext {
  background-image: url("/images/affnext@1x.webp") !important;
}
.no-js .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.affnext, .no-webp .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.affnext, .no-webpalpha .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.affnext {
  background-image: url("/images/affnext@1x.png") !important;
}
@media (max-width: 420px) {
  .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.affnext {
    background-size: 75% !important;
  }
}
.awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.zarabiam {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 128px 44px;
  display: block;
  height: 44px;
  width: 128px;
}
.webp.webpalpha .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.zarabiam {
  background-image: url("/images/zarabiam@1x.webp") !important;
}
.no-js .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.zarabiam, .no-webp .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.zarabiam, .no-webpalpha .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.zarabiam {
  background-image: url("/images/zarabiam@1x.png") !important;
}
@media (max-width: 420px) {
  .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.zarabiam {
    background-size: 75% !important;
  }
}
.awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.techfast {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 116px 27px;
  display: block;
  height: 27px;
  width: 116px;
}
.webp.webpalpha .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.techfast {
  background-image: url("/images/techfast@1x.webp") !important;
}
.no-js .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.techfast, .no-webp .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.techfast, .no-webpalpha .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.techfast {
  background-image: url("/images/techfast@1x.png") !important;
}
@media (max-width: 420px) {
  .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.techfast {
    background-size: 75% !important;
  }
}
.awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.deloiette {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 116px 27px;
  display: block;
  height: 27px;
  width: 116px;
}
.webp.webpalpha .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.deloiette {
  background-image: url("/images/deloietteLogo@1x.webp") !important;
}
.no-js .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.deloiette, .no-webp .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.deloiette, .no-webpalpha .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.deloiette {
  background-image: url("/images/deloietteLogo@1x.png") !important;
}
@media (max-width: 420px) {
  .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.deloiette {
    background-size: 75% !important;
  }
}
.awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.offerValut {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 130px 31px;
  display: block;
  height: 31px;
  width: 130px;
}
.webp.webpalpha .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.offerValut {
  background-image: url("/images/offerValutLogo@1x.webp") !important;
}
.no-js .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.offerValut, .no-webp .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.offerValut, .no-webpalpha .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.offerValut {
  background-image: url("/images/offerValutLogo@1x.png") !important;
}
@media (max-width: 420px) {
  .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.offerValut {
    background-size: 75% !important;
  }
}
.awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.egazele {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 116px 52px;
  display: block;
  height: 52px;
  width: 116px;
}
.webp.webpalpha .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.egazele {
  background-image: url("/images/egazele@1x.webp") !important;
}
.no-js .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.egazele, .no-webp .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.egazele, .no-webpalpha .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.egazele {
  background-image: url("/images/egazele@1x.png") !important;
}
@media (max-width: 420px) {
  .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.egazele {
    background-size: 75% !important;
  }
}
.awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.conversionClub {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100px 80px;
  display: block;
  height: 80px;
  width: 100px;
}
.webp.webpalpha .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.conversionClub {
  background-image: url("/images/conversionClub@1x.webp") !important;
}
.no-js .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.conversionClub, .no-webp .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.conversionClub, .no-webpalpha .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.conversionClub {
  background-image: url("/images/conversionClub@1x.png") !important;
}
@media (max-width: 420px) {
  .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.conversionClub {
    background-size: 75% !important;
  }
}
.awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.financialTimes {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 140px 58px;
  display: block;
  height: 58px;
  width: 140px;
}
.webp.webpalpha .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.financialTimes {
  background-image: url("/images/financialTimes@1x.webp") !important;
}
.no-js .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.financialTimes, .no-webp .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.financialTimes, .no-webpalpha .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.financialTimes {
  background-image: url("/images/financialTimes@1x.png") !important;
}
@media (max-width: 420px) {
  .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-section .image-logo.financialTimes {
    background-size: 75% !important;
  }
}
.awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-3 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 86px 68px;
  display: block;
  height: 68px;
  width: 86px;
}
.webp.webpalpha .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-3 {
  background-image: url("/images/place2@1x.webp") !important;
}
.no-js .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-3, .no-webp .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-3, .no-webpalpha .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .badge-image-3 {
  background-image: url("/images/place2@1x.png") !important;
}
.awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge h4, .awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge .h4 {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.4px;
  color: #A8B4C1;
  margin: 20px 0;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge.active {
  background-color: #F4F6F9;
}
.awards-blocks-section .awards-blocks-wrapper .badges-wrapper .badges .badge:hover {
  background-color: #F4F6F9;
  transition: 0.3s;
}

.testimonials {
  padding: 0;
  margin: 100px 0;
  text-align: center;
  display: inline-block;
  width: 100%;
}
@media (max-width: 768px) {
  .testimonials {
    padding: 0 20px;
    text-align: left;
  }
}
.testimonials.homepage {
  margin: 60px 0;
}
@media (min-width: 768px) {
  .testimonials.homepage {
    margin: 80px 0;
  }
}
@media (min-width: 1200px) {
  .testimonials.homepage {
    margin: 100px 0;
  }
}
.testimonials.audit {
  margin: 40px 0 33px 0;
}
@media (min-width: 768px) {
  .testimonials.audit {
    margin: 40px 0 53px 0;
  }
}
@media (min-width: 1200px) {
  .testimonials.audit {
    margin: 40px 0 73px 0;
  }
}
@media (max-width: 576px) {
  .testimonials .title-section-mylead {
    font-size: 24px;
  }
}
.testimonials.testimonials-row .carousel-section .slick-arrow {
  opacity: 0.3;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .testimonials.testimonials-row .carousel-section .slick-arrow.slick-prev {
    left: 80px;
  }
}
@media (min-width: 1200px) {
  .testimonials.testimonials-row .carousel-section .slick-arrow.slick-prev {
    left: 5%;
  }
}
.testimonials.testimonials-row .carousel-section .slick-arrow.slick-prev:before {
  content: "";
}
@media (min-width: 768px) and (max-width: 1199px) {
  .testimonials.testimonials-row .carousel-section .slick-arrow.slick-next {
    right: 80px;
  }
}
@media (min-width: 1200px) {
  .testimonials.testimonials-row .carousel-section .slick-arrow.slick-next {
    right: 5%;
  }
}
.testimonials.testimonials-row .carousel-section .slick-arrow.slick-next:before {
  content: "";
}
.testimonials .carousel-section .slick-arrow.slick-prev, .testimonials .carousel-section .slick-arrow.slick-next {
  z-index: 9;
  height: 50px;
  width: 50px;
  opacity: 0.3;
}
.testimonials .carousel-section .slick-arrow.slick-prev:hover:before, .testimonials .carousel-section .slick-arrow.slick-next:hover:before {
  background-color: #A8B4C1 !important;
  color: #fff !important;
}
.testimonials .carousel-section .slick-arrow.slick-prev:before, .testimonials .carousel-section .slick-arrow.slick-next:before {
  font-family: "Font Awesome 6 Solid";
  font-weight: 900;
  font-size: 18px;
  height: 50px;
  width: 50px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid #A8B4C1;
  background-color: #fff;
  color: #A8B4C1;
  transition: 0.2s all;
  opacity: 1;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .testimonials .carousel-section .slick-arrow.slick-prev {
    left: 80px;
  }
}
@media (min-width: 1200px) {
  .testimonials .carousel-section .slick-arrow.slick-prev {
    left: 23%;
  }
}
.testimonials .carousel-section .slick-arrow.slick-prev:before {
  content: "";
}
@media (min-width: 768px) and (max-width: 1199px) {
  .testimonials .carousel-section .slick-arrow.slick-next {
    right: 80px;
  }
}
@media (min-width: 1200px) {
  .testimonials .carousel-section .slick-arrow.slick-next {
    right: 23%;
  }
}
.testimonials .carousel-section .slick-arrow.slick-next:before {
  content: "";
}
.testimonials .carousel-section .slick-slide:before {
  content: "“";
  color: #45BF52;
  font-size: 65px;
}
.testimonials .carousel-section .slick-slide .block-item {
  position: relative;
  margin-top: -10px;
  display: inline-flex !important;
  flex-direction: column;
  transition: 0.2s all;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .testimonials .carousel-section .slick-slide .block-item {
    text-align: center;
    padding: 0 180px;
    align-items: center;
  }
}
@media (min-width: 1200px) {
  .testimonials .carousel-section .slick-slide .block-item {
    text-align: center;
    padding: 0 160px;
    align-items: center;
  }
}
.testimonials .carousel-section .slick-slide .block-item .text {
  min-height: 225px;
  display: flex;
  flex-direction: column;
}
.testimonials .carousel-section .slick-slide .block-item .text h4, .testimonials .carousel-section .slick-slide .block-item .text .h4 {
  font-size: 18px;
  font-weight: 700;
  color: #283B41;
  letter-spacing: 0;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media (min-width: 576px) {
  .testimonials .carousel-section .slick-slide .block-item .text h4, .testimonials .carousel-section .slick-slide .block-item .text .h4 {
    font-size: 24px;
  }
}
.testimonials .carousel-section .slick-slide .block-item .text h5, .testimonials .carousel-section .slick-slide .block-item .text .h5 {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  color: #87919C;
  margin: 0;
}
.testimonials .carousel-section .slick-slide .block-item .avatar-section {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #F4F6F9;
  padding: 5px;
  border-radius: 100px;
  margin-top: 30px;
}
.testimonials .carousel-section .slick-slide .block-item .avatar-section .image {
  border-radius: 100%;
}
.testimonials .carousel-section .slick-slide .block-item .avatar-section .image.avatar-1 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 53px 53px;
  display: block;
  height: 53px;
  width: 53px;
}
.webp.webpalpha .testimonials .carousel-section .slick-slide .block-item .avatar-section .image.avatar-1 {
  background-image: url("/images/avatar-1@1x.webp") !important;
}
.no-js .testimonials .carousel-section .slick-slide .block-item .avatar-section .image.avatar-1, .no-webp .testimonials .carousel-section .slick-slide .block-item .avatar-section .image.avatar-1, .no-webpalpha .testimonials .carousel-section .slick-slide .block-item .avatar-section .image.avatar-1 {
  background-image: url("/images/avatar-1@1x.png") !important;
}
.testimonials .carousel-section .slick-slide .block-item .avatar-section .image.avatar-2 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 53px 53px;
  display: block;
  height: 53px;
  width: 53px;
}
.webp.webpalpha .testimonials .carousel-section .slick-slide .block-item .avatar-section .image.avatar-2 {
  background-image: url("/images/avatar-2@1x.webp") !important;
}
.no-js .testimonials .carousel-section .slick-slide .block-item .avatar-section .image.avatar-2, .no-webp .testimonials .carousel-section .slick-slide .block-item .avatar-section .image.avatar-2, .no-webpalpha .testimonials .carousel-section .slick-slide .block-item .avatar-section .image.avatar-2 {
  background-image: url("/images/avatar-2@1x.png") !important;
}
.testimonials .carousel-section .slick-slide .block-item .avatar-section span {
  font-size: 16px;
  font-weight: 700;
  color: #283B41;
  margin: 0 20px 0 15px;
}
.testimonials .carousel-section .slick-slide:not(.slick-current) .block-item {
  opacity: 0.2;
}
.testimonials .carousel-section .content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  margin-bottom: -55px;
}
.testimonials .carousel-section .content .navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 90px;
  z-index: 10;
}
@media (min-width: 768px) {
  .testimonials .carousel-section .content .navigation {
    max-width: 110px;
    margin-left: 30px;
  }
}
.testimonials .carousel-section .content .navigation .prev-btn, .testimonials .carousel-section .content .navigation .next-btn {
  font-family: "Icomoon";
  font-weight: 500;
  font-size: 13px;
  height: 40px;
  width: 40px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #A8B4C1;
  background-color: #fff;
  color: #A8B4C1;
  transition: 0.2s all;
}
@media (max-width: 768px) {
  .testimonials .carousel-section .content .navigation .prev-btn, .testimonials .carousel-section .content .navigation .next-btn {
    padding-top: 1px;
  }
}
@media (min-width: 768px) {
  .testimonials .carousel-section .content .navigation .prev-btn, .testimonials .carousel-section .content .navigation .next-btn {
    height: 50px;
    width: 50px;
    border: 4px solid #A8B4C1;
    font-size: 18px;
  }
}
.testimonials .carousel-section .content .navigation .prev-btn:disabled, .testimonials .carousel-section .content .navigation .next-btn:disabled {
  opacity: 0.1;
  pointer-events: none;
}
.testimonials .carousel-section .content .navigation .prev-btn:not(:disabled):hover, .testimonials .carousel-section .content .navigation .next-btn:not(:disabled):hover {
  background-color: #A8B4C1;
  color: #fff;
}
@media (min-width: 768px) {
  .testimonials .carousel-section .content .navigation .prev-btn {
    padding-top: 2px;
    padding-right: 2px;
  }
}
.testimonials .carousel-section .content .navigation .prev-btn:after {
  content: "";
}
@media (max-width: 768px) {
  .testimonials .carousel-section .content .navigation .next-btn {
    padding-left: 2px;
  }
}
@media (min-width: 768px) {
  .testimonials .carousel-section .content .navigation .next-btn {
    padding-top: 2px;
    padding-left: 2px;
  }
}
.testimonials .carousel-section .content .navigation .next-btn:after {
  content: "";
}

.blocks-normal {
  background-color: #F4F6F9;
  padding: 60px 20px;
}
.blocks-normal.white-background {
  background-color: #fff !important;
  padding: 39px 0;
}
@media (min-width: 576px) {
  .blocks-normal.white-background {
    padding: 39px 20px;
  }
}
@media (min-width: 768px) {
  .blocks-normal.white-background {
    padding: 50px 20px;
  }
}
.blocks-normal.white-background .block-horizontal-item {
  background-color: #F4F6F9;
}
.blocks-normal .title-section-mylead h2, .blocks-normal .title-section-mylead .h2 {
  max-width: 542px;
  margin: 0 auto 30px auto;
  text-align: center;
}
@media (max-width: 576px) {
  .blocks-normal .title-section-mylead h2, .blocks-normal .title-section-mylead .h2 {
    font-size: 24px;
  }
}
@media (min-width: 768px) {
  .blocks-normal .title-section-mylead h2, .blocks-normal .title-section-mylead .h2 {
    margin: 0 auto 43px auto;
  }
}
.blocks-normal .block-normal-item {
  background-color: #fff;
  height: 100%;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  max-width: 500px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .blocks-normal .block-normal-item {
    max-width: 460px;
  }
}
.blocks-normal .block-normal-item .image-section {
  position: relative;
}
.blocks-normal .block-normal-item .image-section .image.block-1 {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 1920px 630px !important;
  display: block;
  height: 630px;
  width: 1920px;
  background-image: url("/images/svg/block-1.svg") !important;
  background-size: 110% !important;
  margin-top: -20px;
}
.blocks-normal .block-normal-item .image-section .image.block-1-1 {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 1920px 630px !important;
  display: block;
  height: 630px;
  width: 1920px;
  background-image: url("/images/svg/block-1-1.svg") !important;
  background-size: 120% !important;
  margin-top: 0;
}
@media (max-width: 992px) {
  .blocks-normal .block-normal-item .image-section .image.block-1-1 {
    background-size: 134% !important;
  }
}
@media (min-width: 992px) {
  .blocks-normal .block-normal-item .image-section .image.block-1-1 {
    background-position: center !important;
    background-repeat: no-repeat;
    background-size: 1920px 630px !important;
    display: block;
    height: 630px;
    width: 1920px;
    background-image: url("/images/svg/block-1-1.svg") !important;
    background-size: 120% !important;
    margin-top: 0;
  }
}
.blocks-normal .block-normal-item .image-section .image.block-2 {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 1920px 630px !important;
  display: block;
  height: 630px;
  width: 1920px;
  background-image: url("/images/svg/block-2.svg") !important;
  background-size: 100% !important;
  margin-top: -20px;
}
.blocks-normal .block-normal-item .image-section .image.block-2-1 {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 1920px 630px !important;
  display: block;
  height: 630px;
  width: 1920px;
  background-image: url("/images/svg/block-2-1.svg") !important;
  background-size: 138% !important;
  margin-top: 0;
}
@media (max-width: 992px) {
  .blocks-normal .block-normal-item .image-section .image.block-2-1 {
    background-size: 134% !important;
  }
}
.blocks-normal .block-normal-item .image-section .image.block-3 {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 1920px 630px !important;
  display: block;
  height: 630px;
  width: 1920px;
  background-image: url("/images/svg/block-3.svg") !important;
  background-size: 100% !important;
  margin-top: -20px;
}
.blocks-normal .block-normal-item .image-section .image.block-3-1 {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 1920px 630px !important;
  display: block;
  height: 630px;
  width: 1920px;
  background-image: url("/images/svg/block-3.svg") !important;
  background-size: 104% !important;
  margin-top: 0;
}
@media (max-width: 992px) {
  .blocks-normal .block-normal-item .image-section .image.block-3-1 {
    background-size: 111% !important;
  }
}
@media (min-width: 992px) {
  .blocks-normal .block-normal-item .image-section .image.block-3-1 {
    background-position: center !important;
    background-repeat: no-repeat;
    background-size: 1920px 630px !important;
    display: block;
    height: 630px;
    width: 1920px;
    background-image: url("/images/svg/block-3-1.svg") !important;
    background-size: 104% !important;
    margin-top: 0;
  }
}
.blocks-normal .block-normal-item .image-section .image.block-1, .blocks-normal .block-normal-item .image-section .image.block-2, .blocks-normal .block-normal-item .image-section .image.block-3 {
  width: 100%;
  background-position: center bottom 30px !important;
  height: auto;
}
.blocks-normal .block-normal-item .image-section .image.block-1:after, .blocks-normal .block-normal-item .image-section .image.block-2:after, .blocks-normal .block-normal-item .image-section .image.block-3:after {
  content: "";
  padding-bottom: 65%;
  display: block;
}
.blocks-normal .block-normal-item .image-section .image.block-1-1 {
  width: 100%;
  background-position: center bottom 30px !important;
  height: auto;
}
.blocks-normal .block-normal-item .image-section .image.block-1-1:after {
  content: "";
  padding-bottom: 70%;
  display: block;
}
@media (max-width: 992px) {
  .blocks-normal .block-normal-item .image-section .image.block-1-1:after {
    padding-bottom: 81%;
  }
}
.blocks-normal .block-normal-item .image-section .image.block-2-1 {
  width: 100%;
  background-position: center bottom 30px !important;
  height: auto;
}
.blocks-normal .block-normal-item .image-section .image.block-2-1:after {
  content: "";
  padding-bottom: 66%;
  display: block;
}
@media (max-width: 992px) {
  .blocks-normal .block-normal-item .image-section .image.block-2-1:after {
    padding-bottom: 74%;
  }
}
.blocks-normal .block-normal-item .image-section .image.block-3-1 {
  width: 100%;
  background-position: center bottom 30px !important;
  height: auto;
}
.blocks-normal .block-normal-item .image-section .image.block-3-1:after {
  content: "";
  padding-bottom: 67%;
  display: block;
}
@media (max-width: 992px) {
  .blocks-normal .block-normal-item .image-section .image.block-3-1:after {
    padding-bottom: 69%;
  }
}
.blocks-normal .block-normal-item .text {
  padding: 0 30px 40px 30px;
  height: auto;
  margin-top: -5px;
}
@media (min-width: 1200px) {
  .blocks-normal .block-normal-item .text {
    padding: 20px 60px 40px 60px;
  }
}
@media (min-width: 992px) {
  .blocks-normal .block-normal-item .text {
    padding: 20px 30px 40px 30px;
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .blocks-normal .block-normal-item .text.text-padding-2 {
    padding-top: 24px;
  }
}
@media (min-width: 768px) {
  .blocks-normal .block-normal-item .text.text-padding-3 {
    padding-top: 7px;
  }
}
.blocks-normal .block-normal-item .text h3, .blocks-normal .block-normal-item .text .h3 {
  color: #283B41;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 40px;
}
@media (min-width: 576px) {
  .blocks-normal .block-normal-item .text h3, .blocks-normal .block-normal-item .text .h3 {
    font-size: 26px;
    line-height: 1.5;
  }
}
.blocks-normal .block-normal-item .text h3 .underline, .blocks-normal .block-normal-item .text .h3 .underline {
  border-bottom: 3px solid #45BF52;
  font-weight: 900;
}
.blocks-normal .block-normal-item .text p {
  color: #87919C;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
}
@media (min-width: 992px) {
  .blocks-normal .block-normal-item .text p {
    font-size: 16px;
    line-height: 1.6;
  }
}
@media (min-width: 1200px) {
  .blocks-normal .block-normal-item .text p {
    font-weight: 500;
    line-height: 1.5;
  }
}
.blocks-normal .block-horizontal-item {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  max-width: 1036px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding: 10px;
}
@media (max-width: 768px) {
  .blocks-normal .block-horizontal-item {
    max-width: 335px;
  }
}
@media (min-width: 768px) {
  .blocks-normal .block-horizontal-item {
    margin: 0 auto 20px auto;
    flex-direction: row;
    padding: 20px;
    border-radius: 30px;
  }
}
.blocks-normal .block-horizontal-item .image-section {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #fff;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .blocks-normal .block-horizontal-item .image-section {
    max-width: 33%;
    max-height: 336px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.blocks-normal .block-horizontal-item .image-section .image.award {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 1920px 630px !important;
  display: block;
  height: 630px;
  width: 1920px;
  background-image: url("/images/svg/award.svg") !important;
  background-size: 80% !important;
  width: 50% !important;
  height: 220px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .blocks-normal .block-horizontal-item .image-section .image.award {
    width: 75% !important;
    margin: 0;
    height: 336px;
  }
}
.blocks-normal .block-horizontal-item .image-section .image.award {
  width: 100%;
}
.blocks-normal .block-horizontal-item .image-section .image.award:after {
  content: "";
  display: block;
}
.blocks-normal .block-horizontal-item .text {
  padding: 28px 10px 10px 10px;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .blocks-normal .block-horizontal-item .text {
    max-width: 60%;
    padding-left: 60px;
  }
}
.blocks-normal .block-horizontal-item .text h2, .blocks-normal .block-horizontal-item .text .h2 {
  color: #283B41;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 29px;
}
@media (min-width: 768px) {
  .blocks-normal .block-horizontal-item .text h2, .blocks-normal .block-horizontal-item .text .h2 {
    font-size: 30px;
    font-weight: 900;
    line-height: 39px;
  }
}
.blocks-normal .block-horizontal-item .text p {
  color: #87919C;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .blocks-normal .block-horizontal-item .text p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
  }
}
.blocks-normal .block-horizontal-item .text a {
  background-color: #fff;
  color: #87919C !important;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  max-width: 144px;
  border-radius: 30px;
  margin-bottom: 20px;
  text-decoration: none;
  transition: 0.2s all;
}
.blocks-normal .block-horizontal-item .text a:hover {
  background-color: #87919C;
  color: #fff !important;
}
.blocks-normal .block-horizontal-item .text a.hide-button-after-expanding[aria-expanded=true] {
  transition: 0.3s;
  display: none;
}

.blocks-slider-section {
  padding: 35px 20px 20px 20px;
  margin: 30px 0;
}
@media (min-width: 576px) {
  .blocks-slider-section {
    padding: 100px 20px;
  }
}
.blocks-slider-section.tigers-padding {
  padding: 0 20px 20px 20px;
}
@media (min-width: 576px) {
  .blocks-slider-section.tigers-padding {
    padding: 0 20px 100px 20px;
  }
}
.blocks-slider-section .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .blocks-slider-section .content {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 50px;
  }
}
.blocks-slider-section .content .text {
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .blocks-slider-section .content .text {
    margin-bottom: 0;
    text-align: left;
  }
}
.blocks-slider-section .content .text h2, .blocks-slider-section .content .text .h2 {
  font-size: 24px;
  font-weight: 900;
  display: inline-block;
  margin: 0;
  padding: 5px 0 0 0;
  width: auto;
}
@media (min-width: 768px) {
  .blocks-slider-section .content .text h2, .blocks-slider-section .content .text .h2 {
    font-size: 36px;
  }
}
.blocks-slider-section .content .text h2 span, .blocks-slider-section .content .text .h2 span {
  border-bottom: 3px solid #45BF52;
}
@media (min-width: 768px) {
  .blocks-slider-section .content .text h2 span, .blocks-slider-section .content .text .h2 span {
    border-bottom: 4px solid #45BF52;
  }
}
.blocks-slider-section .content .text h3, .blocks-slider-section .content .text .h3 {
  font-size: 24px;
  font-weight: 500;
  margin: 10px 0 0 0;
}
@media (min-width: 768px) {
  .blocks-slider-section .content .text h3, .blocks-slider-section .content .text .h3 {
    font-size: 30px;
  }
}
.blocks-slider-section .content .navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 90px;
}
@media (min-width: 768px) {
  .blocks-slider-section .content .navigation {
    max-width: 110px;
    margin-left: 30px;
  }
}
.blocks-slider-section .content .navigation .prev-btn, .blocks-slider-section .content .navigation .next-btn {
  font-family: "Icomoon";
  font-weight: 500;
  font-size: 13px;
  height: 40px;
  width: 40px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #A8B4C1;
  background-color: #fff;
  color: #A8B4C1;
  transition: 0.2s all;
}
@media (max-width: 768px) {
  .blocks-slider-section .content .navigation .prev-btn, .blocks-slider-section .content .navigation .next-btn {
    padding-top: 1px;
  }
}
@media (min-width: 768px) {
  .blocks-slider-section .content .navigation .prev-btn, .blocks-slider-section .content .navigation .next-btn {
    height: 50px;
    width: 50px;
    border: 4px solid #A8B4C1;
    font-size: 18px;
  }
}
.blocks-slider-section .content .navigation .prev-btn:disabled, .blocks-slider-section .content .navigation .next-btn:disabled {
  opacity: 0.1;
  pointer-events: none;
}
.blocks-slider-section .content .navigation .prev-btn:not(:disabled):hover, .blocks-slider-section .content .navigation .next-btn:not(:disabled):hover {
  background-color: #A8B4C1;
  color: #fff;
}
@media (min-width: 768px) {
  .blocks-slider-section .content .navigation .prev-btn {
    padding-top: 2px;
    padding-right: 2px;
  }
}
.blocks-slider-section .content .navigation .prev-btn:after {
  content: "";
}
@media (max-width: 768px) {
  .blocks-slider-section .content .navigation .next-btn {
    padding-left: 2px;
  }
}
@media (min-width: 768px) {
  .blocks-slider-section .content .navigation .next-btn {
    padding-top: 2px;
    padding-left: 2px;
  }
}
.blocks-slider-section .content .navigation .next-btn:after {
  content: "";
}
.blocks-slider-section .slick-list {
  margin: 0 -10px !important;
  overflow: visible !important;
}
.blocks-slider-section .slick-list .slick-slide {
  margin: 0;
  transition: 0.3s all;
}
.blocks-slider-section .slick-list .slick-slide[aria-hidden=true] {
  opacity: 0.3;
  pointer-events: none;
}
@media (max-width: 1199px) {
  .blocks-slider-section .slick-list .slick-slide:not(.slick-current) {
    opacity: 0.3;
    pointer-events: none;
  }
}
.blocks-slider-section .block-item {
  padding: 10px;
  cursor: pointer;
  transition: 0.3 all;
}
.blocks-slider-section .block-item h4, .blocks-slider-section .block-item .h4 {
  margin: 30px 0 20px 0;
  color: #283B41;
  font-weight: 900;
  font-size: 18px;
}
@media (min-width: 576px) {
  .blocks-slider-section .block-item h4, .blocks-slider-section .block-item .h4 {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .blocks-slider-section .block-item h4, .blocks-slider-section .block-item .h4 {
    margin: 40px 0 20px 0;
    font-size: 30px;
  }
}
.blocks-slider-section .block-item h5, .blocks-slider-section .block-item .h5 {
  color: #87919C;
  font-size: 15px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
@media (min-width: 576px) {
  .blocks-slider-section .block-item h5, .blocks-slider-section .block-item .h5 {
    font-size: 18px;
    line-height: 27px;
  }
}
.blocks-slider-section .block-item span {
  display: block;
  color: #87919C;
  font-size: 15px;
  font-weight: 700;
  margin: 20px 0 0 0;
}
@media (min-width: 576px) {
  .blocks-slider-section .block-item span {
    font-size: 16px;
    margin: 40px 0 0 0;
  }
}
.blocks-slider-section .block-item:hover .image:after {
  opacity: 0.5;
}
.blocks-slider-section .block-item:hover .image:before {
  opacity: 1;
}
.blocks-slider-section .block-item .image {
  width: 100% !important;
  height: auto !important;
  display: flex !important;
  background-size: cover !important;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 5;
}
.blocks-slider-section .block-item .image .shadow-box {
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
}
.blocks-slider-section .block-item .image:active:before {
  color: #F28503;
  background-color: #3A4037;
  height: 170px;
  width: 170px;
}
.blocks-slider-section .block-item .image:after {
  content: "";
  display: block;
  padding-top: 63%;
  background-color: #283B41;
  opacity: 0;
  width: 100%;
  transition: 0.2s all;
}
@media (max-width: 991px) {
  .blocks-slider-section .block-item .image:after {
    opacity: 0.5;
  }
}
.blocks-slider-section .block-item .image.video:before {
  font-family: "Font Awesome 6 Brands";
  content: "";
  font-size: 42px;
}
@media (max-width: 576px) {
  .blocks-slider-section .block-item .image.video:before {
    font-size: 17px;
  }
}
.blocks-slider-section .block-item .image.text:before {
  font-family: "Font Awesome 6 Solid";
  content: "";
  font-size: 38px;
}
@media (max-width: 576px) {
  .blocks-slider-section .block-item .image.text:before {
    font-size: 18px;
  }
}
.blocks-slider-section .block-item .image:before {
  transition: 0.2s all;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  color: #45BF52;
  position: absolute;
  background-color: #283B41;
  opacity: 0;
  height: 130px;
  width: 130px;
  border-radius: 100%;
  z-index: 3;
}
@media (max-width: 576px) {
  .blocks-slider-section .block-item .image:before {
    height: 50px;
    width: 50px;
    opacity: 1;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .blocks-slider-section .block-item .image:before {
    opacity: 1;
  }
}
.blocks-slider-section .block-item .image.success-stories-01 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 699px 438px;
  display: block;
  height: 438px;
  width: 699px;
}
.webp.webpalpha .blocks-slider-section .block-item .image.success-stories-01 {
  background-image: url("/images/success-stories-01@1x.webp") !important;
}
.no-js .blocks-slider-section .block-item .image.success-stories-01, .no-webp .blocks-slider-section .block-item .image.success-stories-01, .no-webpalpha .blocks-slider-section .block-item .image.success-stories-01 {
  background-image: url("/images/success-stories-01@1x.jpg") !important;
}
.blocks-slider-section .block-item .image.success-stories-02 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 699px 438px;
  display: block;
  height: 438px;
  width: 699px;
}
.webp.webpalpha .blocks-slider-section .block-item .image.success-stories-02 {
  background-image: url("/images/success-stories-02@1x.webp") !important;
}
.no-js .blocks-slider-section .block-item .image.success-stories-02, .no-webp .blocks-slider-section .block-item .image.success-stories-02, .no-webpalpha .blocks-slider-section .block-item .image.success-stories-02 {
  background-image: url("/images/success-stories-02@1x.jpg") !important;
}
.blocks-slider-section .block-item .image.success-stories-03 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 699px 438px;
  display: block;
  height: 438px;
  width: 699px;
}
.webp.webpalpha .blocks-slider-section .block-item .image.success-stories-03 {
  background-image: url("/images/success-stories-03@1x.webp") !important;
}
.no-js .blocks-slider-section .block-item .image.success-stories-03, .no-webp .blocks-slider-section .block-item .image.success-stories-03, .no-webpalpha .blocks-slider-section .block-item .image.success-stories-03 {
  background-image: url("/images/success-stories-03@1x.jpg") !important;
}
.blocks-slider-section .block-item .image.success-stories-04 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 699px 438px;
  display: block;
  height: 438px;
  width: 699px;
}
.webp.webpalpha .blocks-slider-section .block-item .image.success-stories-04 {
  background-image: url("/images/success-stories-04@1x.webp") !important;
}
.no-js .blocks-slider-section .block-item .image.success-stories-04, .no-webp .blocks-slider-section .block-item .image.success-stories-04, .no-webpalpha .blocks-slider-section .block-item .image.success-stories-04 {
  background-image: url("/images/success-stories-04@1x.jpg") !important;
}
.blocks-slider-section .block-item .image.success-stories-05 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 699px 438px;
  display: block;
  height: 438px;
  width: 699px;
}
.webp.webpalpha .blocks-slider-section .block-item .image.success-stories-05 {
  background-image: url("/images/success-stories-05@1x.webp") !important;
}
.no-js .blocks-slider-section .block-item .image.success-stories-05, .no-webp .blocks-slider-section .block-item .image.success-stories-05, .no-webpalpha .blocks-slider-section .block-item .image.success-stories-05 {
  background-image: url("/images/success-stories-05@1x.jpg") !important;
}

.campaigns-section {
  padding: 60px 20px 40px 20px;
  background-color: #F4F6F9;
  overflow: hidden;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .campaigns-section {
    padding: 100px 20px;
    border-radius: 50px;
  }
}
.campaigns-section .info {
  max-width: 1284px;
  margin: 45px auto 0 auto;
}
@media (min-width: 768px) {
  .campaigns-section .info {
    margin: 100px auto 0 auto;
  }
}
.campaigns-section .info h3, .campaigns-section .info .h3 {
  color: #283B41;
  font-size: 18px;
  font-weight: 700;
  max-width: 550px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .campaigns-section .info h3, .campaigns-section .info .h3 {
    font-size: 24px;
    line-height: 1.5;
  }
}
.campaigns-section .info h3 .underline, .campaigns-section .info .h3 .underline {
  border-bottom: 3px solid #45BF52;
}
@media (min-width: 768px) {
  .campaigns-section .info h3 .underline, .campaigns-section .info .h3 .underline {
    border-bottom: 4px solid #45BF52;
  }
}
.campaigns-section .info p {
  color: #87919C;
  font-size: 15px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .campaigns-section .info p {
    font-size: 18px;
    line-height: 1.5;
  }
}
.campaigns-section .title-section-mylead {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .campaigns-section .title-section-mylead {
    margin-bottom: 60px;
  }
}
.campaigns-section .title-section-mylead .underline {
  border-bottom: 3px solid #45BF52;
}
@media (min-width: 768px) {
  .campaigns-section .title-section-mylead .underline {
    border-bottom: 4px solid #45BF52;
  }
}
@media (max-width: 768px) {
  .campaigns-section .title-section-mylead h2, .campaigns-section .title-section-mylead .h2 {
    font-size: 24px;
  }
}
.campaigns-section .title-section-mylead .btn-mylead-2 {
  height: 58px;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px) {
  .campaigns-section .mobile-wrapper {
    max-width: 70vw;
  }
}
@media (min-width: 992px) and (max-width: 1650px) {
  .campaigns-section .mobile-wrapper {
    max-width: 76vw;
  }
}
.campaigns-section .home-campaigns-title {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 768px) {
  .campaigns-section .home-campaigns-title {
    flex-direction: row;
    margin-bottom: 60px;
  }
}
.campaigns-section .home-campaigns-title h2, .campaigns-section .home-campaigns-title .h2 {
  font-size: 40px;
  line-height: 60px;
}
@media (max-width: 768px) {
  .campaigns-section .home-campaigns-title h2, .campaigns-section .home-campaigns-title .h2 {
    font-size: 24px;
    line-height: 36px;
  }
}
.campaigns-section .home-campaigns-title h2 .underline, .campaigns-section .home-campaigns-title .h2 .underline {
  font-weight: 900;
  border-bottom: 3px solid #45BF52;
}
@media (min-width: 768px) {
  .campaigns-section .home-campaigns-title h2 .underline, .campaigns-section .home-campaigns-title .h2 .underline {
    border-bottom: 4px solid #45BF52;
  }
}
.campaigns-section .home-campaigns-title .info {
  margin: 0;
}
@media (min-width: 768px) {
  .campaigns-section .home-campaigns-title .info {
    max-width: 1284px;
    margin: 0 0 0 auto;
  }
}
.campaigns-section .home-campaigns-title .info p {
  margin-bottom: 0;
}
.campaigns-section .slick-arrow.slick-prev, .campaigns-section .slick-arrow.slick-next {
  z-index: 9;
  height: 50px;
  width: 50px;
}
.campaigns-section .slick-arrow.slick-prev.slick-disabled, .campaigns-section .slick-arrow.slick-next.slick-disabled {
  opacity: 0.1;
}
.campaigns-section .slick-arrow.slick-prev:hover:before, .campaigns-section .slick-arrow.slick-next:hover:before {
  background-color: #F4F6F9 !important;
  color: #283B41 !important;
}
.campaigns-section .slick-arrow.slick-prev:before, .campaigns-section .slick-arrow.slick-next:before {
  font-family: "Font Awesome 6 Solid";
  font-weight: 900;
  font-size: 18px;
  height: 50px;
  width: 50px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #283B41;
  transition: 0.2s all;
  opacity: 1;
  box-shadow: 0px 10px 70px rgba(5, 5, 5, 0.2), 0px -10px 80px rgba(5, 5, 5, 0.1);
}
@media (min-width: 576px) {
  .campaigns-section .slick-arrow.slick-prev {
    left: -80px;
  }
}
.campaigns-section .slick-arrow.slick-prev:before {
  content: "";
}
@media (min-width: 576px) {
  .campaigns-section .slick-arrow.slick-next {
    right: -80px;
  }
}
.campaigns-section .slick-arrow.slick-next:before {
  content: "";
}
.campaigns-section .content-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .campaigns-section .content-nav {
    margin-bottom: 40px;
  }
}
.campaigns-section .content-nav .navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 90px;
}
@media (min-width: 768px) {
  .campaigns-section .content-nav .navigation {
    max-width: 110px;
    margin-left: 30px;
  }
}
.campaigns-section .content-nav .navigation .prev-btn, .campaigns-section .content-nav .navigation .next-btn {
  font-family: "Icomoon";
  font-weight: 500;
  font-size: 13px;
  height: 40px;
  width: 40px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #A8B4C1;
  background-color: transparent;
  color: #A8B4C1;
  transition: 0.2s all;
}
@media (max-width: 768px) {
  .campaigns-section .content-nav .navigation .prev-btn, .campaigns-section .content-nav .navigation .next-btn {
    padding-top: 1px;
  }
}
@media (min-width: 768px) {
  .campaigns-section .content-nav .navigation .prev-btn, .campaigns-section .content-nav .navigation .next-btn {
    height: 50px;
    width: 50px;
    border: 4px solid #A8B4C1;
    font-size: 18px;
  }
}
.campaigns-section .content-nav .navigation .prev-btn:disabled, .campaigns-section .content-nav .navigation .next-btn:disabled {
  opacity: 0.1;
  pointer-events: none;
}
.campaigns-section .content-nav .navigation .prev-btn:not(:disabled):hover, .campaigns-section .content-nav .navigation .next-btn:not(:disabled):hover {
  background-color: #A8B4C1;
  color: #fff;
}
@media (min-width: 768px) {
  .campaigns-section .content-nav .navigation .prev-btn {
    padding-top: 2px;
    padding-right: 2px;
  }
}
.campaigns-section .content-nav .navigation .prev-btn:after {
  content: "";
}
@media (max-width: 768px) {
  .campaigns-section .content-nav .navigation .next-btn {
    padding-left: 2px;
  }
}
@media (min-width: 768px) {
  .campaigns-section .content-nav .navigation .next-btn {
    padding-top: 2px;
    padding-left: 2px;
  }
}
.campaigns-section .content-nav .navigation .next-btn:after {
  content: "";
}
@media (min-width: 768px) and (max-width: 1199px) {
  .campaigns-section .slick-slider {
    padding-right: 100px;
  }
}
.campaigns-section .slick-slider .slick-list {
  margin: 0 -10px !important;
  overflow: visible !important;
}
.campaigns-section .slick-slider .slick-list .slick-slide {
  margin: 0;
  transition: 0.3s all;
}
@media (max-width: 768px) {
  .campaigns-section .slick-slider .slick-list .slick-slide {
    padding: 0 10px;
  }
}
.campaigns-section .slick-slider .slick-list .slick-slide[aria-hidden=true] {
  opacity: 0.3;
  pointer-events: none;
}

.testimonials-movies-slider-section {
  background-color: #283B41;
  overflow: hidden;
  padding: 100px 0 0 0;
  margin: 20px;
  display: flex;
  position: relative;
  flex-direction: column;
}
@media (max-width: 768px) {
  .testimonials-movies-slider-section {
    padding: 60px 0 0 0;
  }
}
.testimonials-movies-slider-section .placeholder-text {
  text-align: center;
  color: #87919C;
  margin: 10px 0 82px 0;
  font-weight: 100;
}
.testimonials-movies-slider-section.home-page {
  padding: 60px 0 0 0;
}
@media (min-width: 576px) {
  .testimonials-movies-slider-section.home-page {
    padding: 76px 0 0 0;
  }
}
@media (min-width: 992px) {
  .testimonials-movies-slider-section.home-page {
    padding: 93px 0 0 0;
  }
}
.testimonials-movies-slider-section .movies-slider-header-section {
  margin-bottom: 43px;
}
@media (min-width: 576px) {
  .testimonials-movies-slider-section .movies-slider-header-section {
    margin-bottom: 59px;
  }
}
@media (min-width: 992px) {
  .testimonials-movies-slider-section .movies-slider-header-section {
    margin-bottom: 82px;
  }
}
.testimonials-movies-slider-section.for-beginners {
  padding: 17px 0 0 0;
  margin: 0;
}
@media (min-width: 576px) {
  .testimonials-movies-slider-section.for-beginners {
    margin: 20px;
  }
}
@media (min-width: 768px) {
  .testimonials-movies-slider-section.for-beginners {
    padding: 47px 0 0 0;
    margin: 20px;
  }
}
.testimonials-movies-slider-section.for-beginners .text-section .number-box .front-text-wrapper h3, .testimonials-movies-slider-section.for-beginners .text-section .number-box .front-text-wrapper .h3 {
  color: #fff;
}
.testimonials-movies-slider-section.for-beginners .text-section p {
  text-align: center;
  margin-top: 18px;
  margin-bottom: 10px;
  font-size: 15px;
}
@media (max-width: 576px) {
  .testimonials-movies-slider-section.for-beginners .text-section p {
    margin-top: 28px;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .testimonials-movies-slider-section.for-beginners .text-section p {
    font-size: 18px;
    margin-bottom: 40px;
  }
}
.testimonials-movies-slider-section.for-beginners .carousel-section {
  background-color: transparent;
}
.testimonials-movies-slider-section.for-beginners .carousel-section .content {
  align-items: center;
}
@media (max-width: 767px) {
  .testimonials-movies-slider-section.for-beginners .carousel-section .content {
    margin-bottom: 30px;
  }
}
.testimonials-movies-slider-section.for-beginners .carousel-section .slick-arrow.slick-next {
  top: 28%;
  opacity: 0.3;
}
@media (min-width: 1200px) {
  .testimonials-movies-slider-section.for-beginners .carousel-section .slick-arrow.slick-next {
    right: 23%;
  }
}
.testimonials-movies-slider-section.for-beginners .carousel-section .slick-arrow.slick-prev {
  top: 28%;
  opacity: 0.3;
}
@media (min-width: 1200px) {
  .testimonials-movies-slider-section.for-beginners .carousel-section .slick-arrow.slick-prev {
    left: 23%;
  }
}
.testimonials-movies-slider-section.for-beginners .carousel-section .slick-slide .block-item {
  align-items: center;
}
.testimonials-movies-slider-section.for-beginners .carousel-section .slick-slide .block-item .text {
  min-height: auto;
}
@media (min-width: 768px) {
  .testimonials-movies-slider-section.for-beginners .carousel-section .slick-slide .block-item .text {
    min-height: 225px;
  }
}
.testimonials-movies-slider-section.for-beginners .carousel-section .slick-slide .block-item .text h5, .testimonials-movies-slider-section.for-beginners .carousel-section .slick-slide .block-item .text .h5 {
  display: none;
}
.testimonials-movies-slider-section.for-beginners .carousel-section .slick-slide .block-item .text h4, .testimonials-movies-slider-section.for-beginners .carousel-section .slick-slide .block-item .text .h4 {
  font-size: 18px;
  text-align: center;
  font-weight: 500;
  line-height: 1.66;
}
@media (max-width: 576px) {
  .testimonials-movies-slider-section.for-beginners .carousel-section .slick-slide .block-item .text h4, .testimonials-movies-slider-section.for-beginners .carousel-section .slick-slide .block-item .text .h4 {
    margin-top: 33px;
  }
}
@media (min-width: 768px) {
  .testimonials-movies-slider-section.for-beginners .carousel-section .slick-slide .block-item .text h4, .testimonials-movies-slider-section.for-beginners .carousel-section .slick-slide .block-item .text .h4 {
    font-size: 24px;
    line-height: 1.5;
  }
}
.testimonials-movies-slider-section.for-beginners .carousel-section .slick-slide .block-item .avatar-section {
  background-color: transparent;
}
.testimonials-movies-slider-section.influencers {
  padding: 17px 0 0 0;
}
@media (min-width: 768px) {
  .testimonials-movies-slider-section.influencers {
    padding: 99px 0 0 0;
  }
}
.testimonials-movies-slider-section.influencers .text-section h2, .testimonials-movies-slider-section.influencers .text-section .h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.5;
}
@media (min-width: 576px) {
  .testimonials-movies-slider-section.influencers .text-section h2, .testimonials-movies-slider-section.influencers .text-section .h2 {
    font-size: 32px;
  }
}
@media (min-width: 1200px) {
  .testimonials-movies-slider-section.influencers .text-section h2, .testimonials-movies-slider-section.influencers .text-section .h2 {
    font-size: 40px;
  }
}
.testimonials-movies-slider-section.influencers .text-section p {
  text-align: center;
  margin-top: 18px;
  margin-bottom: 10px;
  font-size: 15px;
}
@media (min-width: 768px) {
  .testimonials-movies-slider-section.influencers .text-section p {
    font-size: 18px;
    margin-bottom: 40px;
  }
}
.testimonials-movies-slider-section.influencers .carousel-section {
  background-color: transparent;
  padding-bottom: 80px;
}
.testimonials-movies-slider-section.influencers .carousel-section .content {
  align-items: center;
}
.testimonials-movies-slider-section.influencers .carousel-section .slick-arrow.slick-next {
  top: 28%;
  opacity: 0.3;
}
@media (min-width: 1200px) {
  .testimonials-movies-slider-section.influencers .carousel-section .slick-arrow.slick-next {
    right: 23%;
  }
}
.testimonials-movies-slider-section.influencers .carousel-section .slick-arrow.slick-prev {
  top: 28%;
  opacity: 0.3;
}
@media (min-width: 1200px) {
  .testimonials-movies-slider-section.influencers .carousel-section .slick-arrow.slick-prev {
    left: 23%;
  }
}
.testimonials-movies-slider-section.influencers .carousel-section .slick-slide .block-item {
  align-items: center;
}
.testimonials-movies-slider-section.influencers .carousel-section .slick-slide .block-item .text {
  min-height: auto;
}
@media (min-width: 768px) {
  .testimonials-movies-slider-section.influencers .carousel-section .slick-slide .block-item .text {
    min-height: 225px;
  }
}
.testimonials-movies-slider-section.influencers .carousel-section .slick-slide .block-item .text h5, .testimonials-movies-slider-section.influencers .carousel-section .slick-slide .block-item .text .h5 {
  display: none;
}
.testimonials-movies-slider-section.influencers .carousel-section .slick-slide .block-item .text h4, .testimonials-movies-slider-section.influencers .carousel-section .slick-slide .block-item .text .h4 {
  font-size: 18px;
  text-align: center;
  font-weight: 500;
}
@media (min-width: 768px) {
  .testimonials-movies-slider-section.influencers .carousel-section .slick-slide .block-item .text h4, .testimonials-movies-slider-section.influencers .carousel-section .slick-slide .block-item .text .h4 {
    font-size: 24px;
    line-height: 36px;
  }
}
.testimonials-movies-slider-section.influencers .carousel-section .slick-slide .block-item .avatar-section {
  background-color: transparent;
}
.testimonials-movies-slider-section .title-section-mylead {
  padding: 0 20px;
}
@media (min-width: 1200px) {
  .testimonials-movies-slider-section .title-section-mylead {
    max-width: 540px;
    margin: 0 auto;
  }
}
.testimonials-movies-slider-section .title-section-mylead p {
  color: #87919C;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.8px;
  margin-bottom: 20px;
}
.testimonials-movies-slider-section .title-section-mylead h2, .testimonials-movies-slider-section .title-section-mylead .h2 {
  color: #fff;
  line-height: 1.3;
  font-size: 24px;
}
@media (min-width: 768px) {
  .testimonials-movies-slider-section .title-section-mylead h2, .testimonials-movies-slider-section .title-section-mylead .h2 {
    font-size: 34px;
  }
}
@media (min-width: 1200px) {
  .testimonials-movies-slider-section .title-section-mylead h2, .testimonials-movies-slider-section .title-section-mylead .h2 {
    font-size: 40px;
  }
}
.testimonials-movies-slider-section .title-section-mylead h5, .testimonials-movies-slider-section .title-section-mylead .h5 {
  margin-bottom: 15px;
  font-size: 13px;
}
@media (min-width: 768px) {
  .testimonials-movies-slider-section .title-section-mylead h5, .testimonials-movies-slider-section .title-section-mylead .h5 {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.testimonials-movies-slider-section .text-section {
  padding: 0 20px;
}
@media (max-width: 991px) {
  .testimonials-movies-slider-section .text-section {
    margin-top: 40px;
  }
}
.testimonials-movies-slider-section .text-section h4, .testimonials-movies-slider-section .text-section .h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .testimonials-movies-slider-section .text-section h4, .testimonials-movies-slider-section .text-section .h4 {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .testimonials-movies-slider-section .text-section h4, .testimonials-movies-slider-section .text-section .h4 {
    font-size: 20px;
  }
}
.testimonials-movies-slider-section .text-section p {
  margin-top: 20px;
  margin-bottom: 70px;
  color: #87919C;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .testimonials-movies-slider-section .text-section p {
    margin-top: 30px;
    font-size: 18px;
    line-height: 1.5;
  }
}
@media (max-width: 991px) {
  .testimonials-movies-slider-section .text-section p {
    margin-bottom: 40px;
  }
}
.testimonials-movies-slider-section .carousel-section {
  background-color: #2F454D;
  padding: 30px 20px 40px 20px;
  overflow: hidden;
  margin: 0;
}
@media (min-width: 768px) {
  .testimonials-movies-slider-section .carousel-section {
    padding: 100px 20px;
  }
}
@media (min-width: 992px) {
  .testimonials-movies-slider-section .carousel-section {
    border-radius: 35px;
    margin: 20px;
  }
}
.testimonials-movies-slider-section .carousel-section .slick-arrow.slick-prev, .testimonials-movies-slider-section .carousel-section .slick-arrow.slick-next {
  top: 29%;
  z-index: 9;
  height: 50px;
  width: 50px;
  opacity: 0.3;
}
.testimonials-movies-slider-section .carousel-section .slick-arrow.slick-prev:hover:before, .testimonials-movies-slider-section .carousel-section .slick-arrow.slick-next:hover:before {
  background-color: #A8B4C1 !important;
  color: #fff !important;
}
.testimonials-movies-slider-section .carousel-section .slick-arrow.slick-prev:before, .testimonials-movies-slider-section .carousel-section .slick-arrow.slick-next:before {
  font-family: "Font Awesome 6 Solid";
  font-weight: 900;
  font-size: 18px;
  height: 50px;
  width: 50px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid #A8B4C1;
  background-color: transparent;
  color: #A8B4C1;
  transition: 0.2s all;
  opacity: 1;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .testimonials-movies-slider-section .carousel-section .slick-arrow.slick-prev {
    left: 80px;
  }
}
@media (min-width: 1200px) {
  .testimonials-movies-slider-section .carousel-section .slick-arrow.slick-prev {
    left: 23%;
  }
}
.testimonials-movies-slider-section .carousel-section .slick-arrow.slick-prev:before {
  content: "";
}
@media (min-width: 768px) and (max-width: 1199px) {
  .testimonials-movies-slider-section .carousel-section .slick-arrow.slick-next {
    right: 80px;
  }
}
@media (min-width: 1200px) {
  .testimonials-movies-slider-section .carousel-section .slick-arrow.slick-next {
    right: 23%;
  }
}
.testimonials-movies-slider-section .carousel-section .slick-arrow.slick-next:before {
  content: "";
}
@media (min-width: 768px) {
  .testimonials-movies-slider-section .carousel-section .slick-list {
    overflow: visible;
  }
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item {
  position: relative;
  display: inline-flex !important;
  flex-direction: column;
  transition: 0.2s all;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .testimonials-movies-slider-section .carousel-section .slick-slide .block-item {
    text-align: center;
    padding: 0 140px;
    align-items: center;
  }
}
@media (min-width: 1200px) {
  .testimonials-movies-slider-section .carousel-section .slick-slide .block-item {
    text-align: center;
    padding: 0 100px;
    align-items: center;
  }
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item:hover {
  cursor: pointer;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item:hover .image-section .image:after {
  opacity: 0.5;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item:hover .image-section .image:before {
  opacity: 1;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .shadow-box {
  display: none;
}
@media (min-width: 768px) {
  .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .shadow-box {
    display: block;
  }
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .shadow-box:after {
  content: "";
  display: block;
  height: 110%;
  width: 110%;
  background-color: #273F47;
  z-index: 4;
  position: absolute;
  left: -5%;
  bottom: -10%;
  box-shadow: 1px 1px 3px 6px #273f47;
  border-radius: 20%;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .shadow-box:before {
  content: "";
  display: block;
  height: 110%;
  width: 110%;
  background-color: #294049;
  z-index: 3;
  position: absolute;
  left: -5%;
  bottom: 0%;
  box-shadow: 1px 1px 13px 17px #294049;
  border-radius: 20%;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .shadow-box-2 {
  display: none;
}
@media (min-width: 768px) {
  .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .shadow-box-2 {
    display: block;
  }
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .shadow-box-2:after {
  content: "";
  display: block;
  height: 130%;
  width: 130%;
  background-color: #29414A;
  z-index: 2;
  position: absolute;
  left: -15%;
  bottom: -15%;
  box-shadow: 1px 1px 12px 0 #29414A;
  border-radius: 20%;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .shadow-box-2:before {
  content: "";
  display: block;
  height: 160%;
  width: 130%;
  background-color: #2A424B;
  z-index: 1;
  position: absolute;
  left: -15%;
  bottom: -40%;
  box-shadow: 0 0 12px 5px #2a424b;
  border-radius: 20%;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image {
  width: 100% !important;
  height: auto !important;
  display: flex !important;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 5;
}
@media (min-width: 768px) {
  .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image {
    border-radius: 30px;
  }
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image .shadow-box {
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image:hover:after {
  opacity: 0.5;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image:hover:before {
  opacity: 1;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image:active:before {
  color: #F28503;
  background-color: #3A4037;
  height: 170px;
  width: 170px;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image:after {
  content: "";
  display: block;
  padding-top: 63%;
  background-color: #283B41;
  opacity: 0;
  width: 100%;
  transition: 0.2s all;
}
@media (max-width: 991px) {
  .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image:after {
    opacity: 0.5;
  }
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.video:before {
  font-family: "Font Awesome 6 Brands";
  content: "";
  font-size: 38px;
}
@media (min-width: 576px) {
  .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.video:before {
    font-size: 42px;
  }
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.text:before {
  font-family: "Font Awesome 6 Solid";
  content: "";
  font-size: 38px;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image:before {
  transition: 0.2s all;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  color: #45BF52;
  position: absolute;
  background-color: #283B41;
  opacity: 0;
  height: 130px;
  width: 130px;
  border-radius: 100%;
  z-index: 3;
}
@media (max-width: 576px) {
  .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image:before {
    height: 98px;
    width: 98px;
    opacity: 1;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image:before {
    opacity: 1;
  }
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.playlist-1 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.playlist-1 {
  background-image: url("/images/playlist-1@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.playlist-1, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.playlist-1, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.playlist-1 {
  background-image: url("/images/playlist-1@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.playlist-2 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.playlist-2 {
  background-image: url("/images/playlist-2@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.playlist-2, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.playlist-2, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.playlist-2 {
  background-image: url("/images/playlist-2@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.playlist-3 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.playlist-3 {
  background-image: url("/images/playlist-3@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.playlist-3, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.playlist-3, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.playlist-3 {
  background-image: url("/images/playlist-3@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.playlist-4 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.playlist-4 {
  background-image: url("/images/playlist-4@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.playlist-4, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.playlist-4, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.playlist-4 {
  background-image: url("/images/playlist-4@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-01 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-01 {
  background-image: url("/images/testimonials-movies-pl-01@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-01, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-01, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-01 {
  background-image: url("/images/testimonials-movies-pl-01@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-02 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-02 {
  background-image: url("/images/testimonials-movies-pl-02@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-02, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-02, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-02 {
  background-image: url("/images/testimonials-movies-pl-02@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-03 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-03 {
  background-image: url("/images/testimonials-movies-pl-03@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-03, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-03, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-03 {
  background-image: url("/images/testimonials-movies-pl-03@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-04 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-04 {
  background-image: url("/images/testimonials-movies-pl-04@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-04, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-04, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-04 {
  background-image: url("/images/testimonials-movies-pl-04@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-05 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-05 {
  background-image: url("/images/testimonials-movies-pl-05@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-05, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-05, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-05 {
  background-image: url("/images/testimonials-movies-pl-05@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-06 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-06 {
  background-image: url("/images/testimonials-movies-pl-06@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-06, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-06, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-06 {
  background-image: url("/images/testimonials-movies-pl-06@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-07 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-07 {
  background-image: url("/images/testimonials-movies-pl-07@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-07, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-07, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-07 {
  background-image: url("/images/testimonials-movies-pl-07@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-08 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-08 {
  background-image: url("/images/testimonials-movies-pl-08@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-08, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-08, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-pl-08 {
  background-image: url("/images/testimonials-movies-pl-08@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-en-01 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-en-01 {
  background-image: url("/images/testimonials-movies-en-01@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-en-01, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-en-01, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-en-01 {
  background-image: url("/images/testimonials-movies-en-01@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-en-02 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-en-02 {
  background-image: url("/images/testimonials-movies-en-02@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-en-02, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-en-02, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-en-02 {
  background-image: url("/images/testimonials-movies-en-02@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-en-03 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-en-03 {
  background-image: url("/images/testimonials-movies-en-03@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-en-03, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-en-03, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-en-03 {
  background-image: url("/images/testimonials-movies-en-03@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-uk-01 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-uk-01 {
  background-image: url("/images/testimonials-movies-uk-01@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-uk-01, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-uk-01, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-uk-01 {
  background-image: url("/images/testimonials-movies-uk-01@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-uk-02 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-uk-02 {
  background-image: url("/images/testimonials-movies-uk-02@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-uk-02, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-uk-02, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-uk-02 {
  background-image: url("/images/testimonials-movies-uk-02@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-uk-03 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-uk-03 {
  background-image: url("/images/testimonials-movies-uk-03@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-uk-03, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-uk-03, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-uk-03 {
  background-image: url("/images/testimonials-movies-uk-03@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-uk-04 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-uk-04 {
  background-image: url("/images/testimonials-movies-uk-04@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-uk-04, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-uk-04, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-uk-04 {
  background-image: url("/images/testimonials-movies-uk-04@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-uk-05 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-uk-05 {
  background-image: url("/images/testimonials-movies-uk-05@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-uk-05, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-uk-05, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-uk-05 {
  background-image: url("/images/testimonials-movies-uk-05@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-uk-06 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-uk-06 {
  background-image: url("/images/testimonials-movies-uk-06@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-uk-06, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-uk-06, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-uk-06 {
  background-image: url("/images/testimonials-movies-uk-06@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-uk-07 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-uk-07 {
  background-image: url("/images/testimonials-movies-uk-07@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-uk-07, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-uk-07, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-uk-07 {
  background-image: url("/images/testimonials-movies-uk-07@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-ru-01 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-ru-01 {
  background-image: url("/images/testimonials-movies-ru-01@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-ru-01, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-ru-01, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-ru-01 {
  background-image: url("/images/testimonials-movies-ru-01@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-ru-02 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-ru-02 {
  background-image: url("/images/testimonials-movies-ru-02@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-ru-02, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-ru-02, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-ru-02 {
  background-image: url("/images/testimonials-movies-ru-02@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-ru-03 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-ru-03 {
  background-image: url("/images/testimonials-movies-ru-03@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-ru-03, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-ru-03, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-ru-03 {
  background-image: url("/images/testimonials-movies-ru-03@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-ru-04 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-ru-04 {
  background-image: url("/images/testimonials-movies-ru-04@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-ru-04, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-ru-04, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-ru-04 {
  background-image: url("/images/testimonials-movies-ru-04@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-ru-05 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-ru-05 {
  background-image: url("/images/testimonials-movies-ru-05@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-ru-05, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-ru-05, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-ru-05 {
  background-image: url("/images/testimonials-movies-ru-05@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-ru-06 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-ru-06 {
  background-image: url("/images/testimonials-movies-ru-06@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-ru-06, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-ru-06, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-ru-06 {
  background-image: url("/images/testimonials-movies-ru-06@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-ru-07 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-ru-07 {
  background-image: url("/images/testimonials-movies-ru-07@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-ru-07, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-ru-07, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-ru-07 {
  background-image: url("/images/testimonials-movies-ru-07@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-es-01 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-es-01 {
  background-image: url("/images/testimonials-movies-es-01@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-es-01, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-es-01, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-es-01 {
  background-image: url("/images/testimonials-movies-es-01@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-es-02 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-es-02 {
  background-image: url("/images/testimonials-movies-es-02@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-es-02, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-es-02, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-es-02 {
  background-image: url("/images/testimonials-movies-es-02@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-es-03 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-es-03 {
  background-image: url("/images/testimonials-movies-es-03@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-es-03, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-es-03, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-es-03 {
  background-image: url("/images/testimonials-movies-es-03@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-es-04 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-es-04 {
  background-image: url("/images/testimonials-movies-es-04@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-es-04, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-es-04, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-es-04 {
  background-image: url("/images/testimonials-movies-es-04@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-es-05 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-es-05 {
  background-image: url("/images/testimonials-movies-es-05@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-es-05, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-es-05, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-es-05 {
  background-image: url("/images/testimonials-movies-es-05@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-es-06 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-es-06 {
  background-image: url("/images/testimonials-movies-es-06@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-es-06, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-es-06, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-es-06 {
  background-image: url("/images/testimonials-movies-es-06@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-es-07 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-es-07 {
  background-image: url("/images/testimonials-movies-es-07@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-es-07, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-es-07, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.testimonials-movies-es-07 {
  background-image: url("/images/testimonials-movies-es-07@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-pl-01 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-pl-01 {
  background-image: url("/images/for-beginners-movies-pl-01@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-pl-01, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-pl-01, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-pl-01 {
  background-image: url("/images/for-beginners-movies-pl-01@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-pl-02 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-pl-02 {
  background-image: url("/images/for-beginners-movies-pl-02@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-pl-02, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-pl-02, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-pl-02 {
  background-image: url("/images/for-beginners-movies-pl-02@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-pl-03 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-pl-03 {
  background-image: url("/images/for-beginners-movies-pl-03@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-pl-03, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-pl-03, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-pl-03 {
  background-image: url("/images/for-beginners-movies-pl-03@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-pl-04 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-pl-04 {
  background-image: url("/images/for-beginners-movies-pl-04@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-pl-04, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-pl-04, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-pl-04 {
  background-image: url("/images/for-beginners-movies-pl-04@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-pl-05 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-pl-05 {
  background-image: url("/images/for-beginners-movies-pl-05@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-pl-05, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-pl-05, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-pl-05 {
  background-image: url("/images/for-beginners-movies-pl-05@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-pl-06 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-pl-06 {
  background-image: url("/images/for-beginners-movies-pl-06@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-pl-06, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-pl-06, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-pl-06 {
  background-image: url("/images/for-beginners-movies-pl-06@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-en-01 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-en-01 {
  background-image: url("/images/for-beginners-movies-en-01@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-en-01, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-en-01, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-en-01 {
  background-image: url("/images/for-beginners-movies-en-01@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-en-02 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-en-02 {
  background-image: url("/images/for-beginners-movies-en-02@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-en-02, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-en-02, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-en-02 {
  background-image: url("/images/for-beginners-movies-en-02@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-en-03 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-en-03 {
  background-image: url("/images/for-beginners-movies-en-03@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-en-03, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-en-03, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-en-03 {
  background-image: url("/images/for-beginners-movies-en-03@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-en-04 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-en-04 {
  background-image: url("/images/for-beginners-movies-en-04@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-en-04, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-en-04, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-en-04 {
  background-image: url("/images/for-beginners-movies-en-04@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-en-05 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-en-05 {
  background-image: url("/images/for-beginners-movies-en-05@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-en-05, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-en-05, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-en-05 {
  background-image: url("/images/for-beginners-movies-en-05@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-en-06 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-en-06 {
  background-image: url("/images/for-beginners-movies-en-06@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-en-06, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-en-06, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-en-06 {
  background-image: url("/images/for-beginners-movies-en-06@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-en-07 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-en-07 {
  background-image: url("/images/for-beginners-movies-en-07@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-en-07, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-en-07, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-en-07 {
  background-image: url("/images/for-beginners-movies-en-07@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-ru-01 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-ru-01 {
  background-image: url("/images/for-beginners-movies-ru-01@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-ru-01, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-ru-01, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-ru-01 {
  background-image: url("/images/for-beginners-movies-ru-01@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-ru-02 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-ru-02 {
  background-image: url("/images/for-beginners-movies-ru-02@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-ru-02, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-ru-02, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-ru-02 {
  background-image: url("/images/for-beginners-movies-ru-02@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-ru-03 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-ru-03 {
  background-image: url("/images/for-beginners-movies-ru-03@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-ru-03, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-ru-03, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-ru-03 {
  background-image: url("/images/for-beginners-movies-ru-03@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-ru-04 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-ru-04 {
  background-image: url("/images/for-beginners-movies-ru-04@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-ru-04, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-ru-04, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-ru-04 {
  background-image: url("/images/for-beginners-movies-ru-04@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-ru-05 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-ru-05 {
  background-image: url("/images/for-beginners-movies-ru-05@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-ru-05, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-ru-05, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-ru-05 {
  background-image: url("/images/for-beginners-movies-ru-05@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-ru-06 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-ru-06 {
  background-image: url("/images/for-beginners-movies-ru-06@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-ru-06, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-ru-06, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-ru-06 {
  background-image: url("/images/for-beginners-movies-ru-06@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-ru-07 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-ru-07 {
  background-image: url("/images/for-beginners-movies-ru-07@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-ru-07, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-ru-07, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-ru-07 {
  background-image: url("/images/for-beginners-movies-ru-07@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-es-01 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-es-01 {
  background-image: url("/images/for-beginners-movies-es-01@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-es-01, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-es-01, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-es-01 {
  background-image: url("/images/for-beginners-movies-es-01@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-es-02 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-es-02 {
  background-image: url("/images/for-beginners-movies-es-02@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-es-02, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-es-02, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-es-02 {
  background-image: url("/images/for-beginners-movies-es-02@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-es-03 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-es-03 {
  background-image: url("/images/for-beginners-movies-es-03@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-es-03, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-es-03, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-es-03 {
  background-image: url("/images/for-beginners-movies-es-03@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-es-04 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-es-04 {
  background-image: url("/images/for-beginners-movies-es-04@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-es-04, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-es-04, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-es-04 {
  background-image: url("/images/for-beginners-movies-es-04@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-es-05 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-es-05 {
  background-image: url("/images/for-beginners-movies-es-05@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-es-05, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-es-05, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-es-05 {
  background-image: url("/images/for-beginners-movies-es-05@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-es-06 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 700px 440px;
  display: block;
  height: 440px;
  width: 700px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-es-06 {
  background-image: url("/images/for-beginners-movies-es-06@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-es-06, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-es-06, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .image-section .image.for-beginners-movies-es-06 {
  background-image: url("/images/for-beginners-movies-es-06@1x.jpg") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .text {
  z-index: 6;
  position: relative;
  min-height: 225px;
  display: flex;
  flex-direction: column;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .text h4, .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .text .h4 {
  margin-top: 50px;
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0;
  line-height: 36px;
  margin-bottom: 30px;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .text h4 .underline, .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .text .h4 .underline {
  border-bottom: 4px solid #45BF52;
  font-weight: 900;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .text h5, .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .text .h5 {
  font-size: 15px;
  font-weight: 400;
  line-height: 27px;
  color: #87919C;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 768px) {
  .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .text h5, .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .text .h5 {
    font-size: 18px;
  }
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .text h5:before, .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .text .h5:before {
  content: "“";
  color: #45BF52;
  font-size: 65px;
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .text h5:before, .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .text .h5:before {
    color: #87919C;
  }
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #283B41;
  padding: 5px;
  border-radius: 100px;
  margin-top: 30px;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image {
  border-radius: 100%;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-1 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 53px 53px;
  display: block;
  height: 53px;
  width: 53px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-1 {
  background-image: url("/images/avatar-1@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-1, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-1, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-1 {
  background-image: url("/images/avatar-1@1x.png") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-01 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 53px 53px;
  display: block;
  height: 53px;
  width: 53px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-01 {
  background-image: url("/images/avatar-pl-01@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-01, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-01, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-01 {
  background-image: url("/images/avatar-pl-01@1x.png") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-02 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 53px 53px;
  display: block;
  height: 53px;
  width: 53px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-02 {
  background-image: url("/images/avatar-pl-02@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-02, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-02, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-02 {
  background-image: url("/images/avatar-pl-02@1x.png") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-03 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 53px 53px;
  display: block;
  height: 53px;
  width: 53px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-03 {
  background-image: url("/images/avatar-pl-03@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-03, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-03, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-03 {
  background-image: url("/images/avatar-pl-03@1x.png") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-04 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 53px 53px;
  display: block;
  height: 53px;
  width: 53px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-04 {
  background-image: url("/images/avatar-pl-04@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-04, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-04, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-04 {
  background-image: url("/images/avatar-pl-04@1x.png") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-05 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 53px 53px;
  display: block;
  height: 53px;
  width: 53px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-05 {
  background-image: url("/images/avatar-pl-05@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-05, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-05, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-05 {
  background-image: url("/images/avatar-pl-05@1x.png") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-06 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 53px 53px;
  display: block;
  height: 53px;
  width: 53px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-06 {
  background-image: url("/images/avatar-pl-06@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-06, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-06, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-06 {
  background-image: url("/images/avatar-pl-06@1x.png") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-07 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 53px 53px;
  display: block;
  height: 53px;
  width: 53px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-07 {
  background-image: url("/images/avatar-pl-07@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-07, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-07, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-07 {
  background-image: url("/images/avatar-pl-07@1x.png") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-08 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 53px 53px;
  display: block;
  height: 53px;
  width: 53px;
}
.webp.webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-08 {
  background-image: url("/images/avatar-pl-08@1x.webp") !important;
}
.no-js .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-08, .no-webp .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-08, .no-webpalpha .testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section .image.avatar-pl-08 {
  background-image: url("/images/avatar-pl-08@1x.png") !important;
}
.testimonials-movies-slider-section .carousel-section .slick-slide .block-item .avatar-section span {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 20px 0 15px;
}
.testimonials-movies-slider-section .carousel-section .slick-slide:not(.slick-current) .block-item {
  opacity: 0.2;
  pointer-events: none;
}
.testimonials-movies-slider-section .carousel-section .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
@media (max-width: 767px) {
  .testimonials-movies-slider-section .carousel-section .content {
    margin-bottom: 35px;
  }
}
.testimonials-movies-slider-section .carousel-section .content .navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 90px;
  z-index: 10;
}
@media (min-width: 768px) {
  .testimonials-movies-slider-section .carousel-section .content .navigation {
    max-width: 110px;
    margin-left: 30px;
  }
}
.testimonials-movies-slider-section .carousel-section .content .navigation .prev-btn, .testimonials-movies-slider-section .carousel-section .content .navigation .next-btn {
  font-family: "Icomoon";
  font-weight: 500;
  font-size: 13px;
  height: 40px;
  width: 40px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #A8B4C1;
  background-color: transparent;
  color: #A8B4C1;
  transition: 0.2s all;
}
@media (max-width: 768px) {
  .testimonials-movies-slider-section .carousel-section .content .navigation .prev-btn, .testimonials-movies-slider-section .carousel-section .content .navigation .next-btn {
    padding-top: 1px;
  }
}
@media (min-width: 768px) {
  .testimonials-movies-slider-section .carousel-section .content .navigation .prev-btn, .testimonials-movies-slider-section .carousel-section .content .navigation .next-btn {
    height: 50px;
    width: 50px;
    border: 4px solid #A8B4C1;
    font-size: 18px;
  }
}
.testimonials-movies-slider-section .carousel-section .content .navigation .prev-btn:disabled, .testimonials-movies-slider-section .carousel-section .content .navigation .next-btn:disabled {
  opacity: 0.1;
  pointer-events: none;
}
.testimonials-movies-slider-section .carousel-section .content .navigation .prev-btn:not(:disabled):hover, .testimonials-movies-slider-section .carousel-section .content .navigation .next-btn:not(:disabled):hover {
  background-color: #A8B4C1;
  color: #fff;
}
@media (min-width: 768px) {
  .testimonials-movies-slider-section .carousel-section .content .navigation .prev-btn {
    padding-top: 2px;
    padding-right: 2px;
  }
}
.testimonials-movies-slider-section .carousel-section .content .navigation .prev-btn:after {
  content: "";
}
@media (max-width: 768px) {
  .testimonials-movies-slider-section .carousel-section .content .navigation .next-btn {
    padding-left: 2px;
  }
}
@media (min-width: 768px) {
  .testimonials-movies-slider-section .carousel-section .content .navigation .next-btn {
    padding-top: 2px;
    padding-left: 2px;
  }
}
.testimonials-movies-slider-section .carousel-section .content .navigation .next-btn:after {
  content: "";
}

.blocks-slider-mobile {
  background-color: #F4F6F9;
  padding: 57px 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .blocks-slider-mobile {
    padding: 109px 20px;
  }
}
@media (max-width: 768px) {
  .blocks-slider-mobile.custom-padding-1 {
    padding: 57px 10px;
  }
}
@media (max-width: 768px) {
  .blocks-slider-mobile.custom-padding-2 {
    padding: 57px 10px 32px 10px;
  }
}
.blocks-slider-mobile.custom-margin-1 {
  margin-top: 0;
}
@media (min-width: 1200px) {
  .blocks-slider-mobile.custom-margin-1 {
    margin-top: 40px;
  }
}
.blocks-slider-mobile .info {
  margin-top: 20px;
}
.blocks-slider-mobile .info p {
  text-align: center;
  color: #87919C;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 27px;
}
.blocks-slider-mobile .title-section-mylead {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .blocks-slider-mobile .title-section-mylead.additional-padding {
    padding: 0 10px;
  }
}
@media (min-width: 768px) {
  .blocks-slider-mobile .title-section-mylead.smaller-margin {
    margin-bottom: 56px;
  }
}
@media (min-width: 768px) {
  .blocks-slider-mobile .title-section-mylead {
    text-align: center;
    margin-bottom: 100px;
  }
}
.blocks-slider-mobile .title-section-mylead h5, .blocks-slider-mobile .title-section-mylead .h5 {
  font-size: 13px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .blocks-slider-mobile .title-section-mylead h5, .blocks-slider-mobile .title-section-mylead .h5 {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .blocks-slider-mobile .title-section-mylead h2, .blocks-slider-mobile .title-section-mylead .h2 {
    font-size: 24px;
    line-height: 1.5;
  }
}
.blocks-slider-mobile.items-equal-height .slick-track {
  display: flex !important;
}
.blocks-slider-mobile.items-equal-height .slick-track .slick-slide {
  padding-right: 15px !important;
  display: flex !important;
  justify-content: center !important;
  flex-grow: 1 !important;
  height: inherit !important;
}
@media (max-width: 1199px) {
  .blocks-slider-mobile.items-equal-height .slick-track .slick-slide:not(.slick-current) {
    opacity: 0.3;
    pointer-events: none;
    transition: 0.3s;
  }
}
.blocks-slider-mobile.items-equal-height .slick-track .slick-slide .blocks-slider-mobile-item {
  height: 100% !important;
}
@media (max-width: 768px) {
  .blocks-slider-mobile.mobile-items-spacing {
    padding: 60px 0 60px 10px !important;
    margin: 0;
  }
}
@media (max-width: 768px) {
  .blocks-slider-mobile.mobile-items-spacing-white-background {
    padding: 60px 0 60px 20px !important;
    margin: 0;
  }
}
@media (max-width: 768px) {
  .blocks-slider-mobile.mobile-card .title-section-mylead {
    margin-bottom: 30px !important;
    padding-right: 15px !important;
  }
}
@media (max-width: 768px) {
  .blocks-slider-mobile.mobile-card .content {
    margin-bottom: 30px !important;
  }
}
@media (max-width: 768px) {
  .blocks-slider-mobile.mobile-card .blocks-slider-mobile-carousel .blocks-slider-mobile-item {
    border-radius: 20px !important;
  }
}
@media (max-width: 768px) {
  .blocks-slider-mobile.mobile-card .blocks-slider-mobile-carousel .blocks-slider-mobile-item .image-section {
    padding: 5px 10px 10px 10px !important;
    border-radius: 20px !important;
  }
}
@media (max-width: 768px) {
  .blocks-slider-mobile.mobile-card .blocks-slider-mobile-carousel .blocks-slider-mobile-item .image-section.block-slider-mobile-3-image-section {
    padding: 0 !important;
  }
}
@media (max-width: 992px) {
  .blocks-slider-mobile.mobile-card .blocks-slider-mobile-carousel .blocks-slider-mobile-item .text {
    padding: 20px 30px 4px 30px !important;
  }
}
@media (max-width: 768px) {
  .blocks-slider-mobile.mobile-card .blocks-slider-mobile-carousel .blocks-slider-mobile-item .text.small-padding-mobile {
    padding: 9px 20px 5px 20px !important;
  }
}
.blocks-slider-mobile.mobile-card .blocks-slider-mobile-carousel .blocks-slider-mobile-item .text.custom-padding-1 {
  padding: 20px 30px 40px 30px !important;
}
@media (max-width: 768px) {
  .blocks-slider-mobile.mobile-card .blocks-slider-mobile-carousel .blocks-slider-mobile-item .text.custom-padding-1 {
    padding: 9px 20px 5px 20px !important;
  }
}
@media (max-width: 768px) {
  .blocks-slider-mobile.mobile-card .blocks-slider-mobile-carousel .blocks-slider-mobile-item .text h2, .blocks-slider-mobile.mobile-card .blocks-slider-mobile-carousel .blocks-slider-mobile-item .text .h2 {
    font-size: 20px !important;
    font-weight: 900 !important;
    line-height: 1.4 !important;
  }
}
.blocks-slider-mobile.blocks-slider-mobile-2.content-lockers {
  padding: 60px 5px 60px 20px;
}
@media (min-width: 576px) {
  .blocks-slider-mobile.blocks-slider-mobile-2.content-lockers {
    padding: 78px 5px 60px 20px;
  }
}
@media (min-width: 992px) {
  .blocks-slider-mobile.blocks-slider-mobile-2.content-lockers {
    padding: 60px 20px 31px 20px;
  }
}
@media (min-width: 1200px) {
  .blocks-slider-mobile.blocks-slider-mobile-2.content-lockers {
    padding: 98px 20px;
  }
}
.blocks-slider-mobile.blocks-slider-mobile-2.content-lockers .title-section-mylead {
  margin-bottom: 21px;
}
@media (min-width: 576px) {
  .blocks-slider-mobile.blocks-slider-mobile-2.content-lockers .title-section-mylead {
    margin-bottom: 57px;
  }
}
@media (min-width: 1200px) {
  .blocks-slider-mobile.blocks-slider-mobile-2.content-lockers .title-section-mylead {
    text-align: center;
    margin-bottom: 54px;
  }
}
.blocks-slider-mobile.blocks-slider-mobile-2.audit .info p {
  text-align: left;
}
.blocks-slider-mobile.blocks-slider-mobile-2.audit .title-section-mylead {
  max-width: 900px;
}
.blocks-slider-mobile.blocks-slider-mobile-2.audit .title-section-mylead h2, .blocks-slider-mobile.blocks-slider-mobile-2.audit .title-section-mylead .h2 {
  margin-bottom: 30px;
  font-size: 24px;
}
@media (min-width: 768px) {
  .blocks-slider-mobile.blocks-slider-mobile-2.audit .title-section-mylead h2, .blocks-slider-mobile.blocks-slider-mobile-2.audit .title-section-mylead .h2 {
    font-size: 40px;
  }
}
.blocks-slider-mobile.blocks-slider-mobile-2.audit .title-section-mylead h4, .blocks-slider-mobile.blocks-slider-mobile-2.audit .title-section-mylead .h4 {
  font-size: 18px;
}
@media (min-width: 768px) {
  .blocks-slider-mobile.blocks-slider-mobile-2.audit .title-section-mylead h4, .blocks-slider-mobile.blocks-slider-mobile-2.audit .title-section-mylead .h4 {
    font-size: 24px;
  }
}
@media (min-width: 768px) {
  .blocks-slider-mobile.blocks-slider-mobile-2.homepage-slider .title-section-mylead {
    text-align: center;
  }
}
.blocks-slider-mobile.blocks-slider-mobile-2.audit-slider-2 .title-section-mylead {
  margin-bottom: 28px;
}
.blocks-slider-mobile.blocks-slider-mobile-2.audit-slider-2 .title-section-mylead h4, .blocks-slider-mobile.blocks-slider-mobile-2.audit-slider-2 .title-section-mylead .h4 {
  line-height: 1.55 !important;
}
@media (min-width: 768px) {
  .blocks-slider-mobile.blocks-slider-mobile-2.audit-slider-2 .title-section-mylead h4, .blocks-slider-mobile.blocks-slider-mobile-2.audit-slider-2 .title-section-mylead .h4 {
    line-height: 1.6 !important;
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .blocks-slider-mobile.blocks-slider-mobile-2.audit-slider-2 .title-section-mylead h4, .blocks-slider-mobile.blocks-slider-mobile-2.audit-slider-2 .title-section-mylead .h4 {
    line-height: 1.5 !important;
    font-size: 24px;
  }
}
@media (min-width: 768px) {
  .blocks-slider-mobile.blocks-slider-mobile-2.audit-slider-2 .title-section-mylead h2, .blocks-slider-mobile.blocks-slider-mobile-2.audit-slider-2 .title-section-mylead .h2 {
    line-height: 1.5 !important;
    font-size: 34px;
  }
}
@media (min-width: 1200px) {
  .blocks-slider-mobile.blocks-slider-mobile-2.audit-slider-2 .title-section-mylead h2, .blocks-slider-mobile.blocks-slider-mobile-2.audit-slider-2 .title-section-mylead .h2 {
    line-height: 1.5 !important;
    font-size: 40px;
  }
}
.blocks-slider-mobile.blocks-slider-mobile-2.audit-slider-2 .info {
  margin-top: 0;
}
@media (min-width: 560px) {
  .blocks-slider-mobile.blocks-slider-mobile-2.audit-slider-2 .info {
    margin-top: 20px;
  }
}
.blocks-slider-mobile.blocks-slider-mobile-2.audit-slider-2 .info p {
  text-align: left;
  color: #87919C;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.7;
  padding: 5px 0 0 10px;
  margin: 0;
}
@media (min-width: 768px) {
  .blocks-slider-mobile.blocks-slider-mobile-2.audit-slider-2 .info p {
    font-size: 16px;
    line-height: 1.625;
  }
}
@media (min-width: 1200px) {
  .blocks-slider-mobile.blocks-slider-mobile-2.audit-slider-2 .info p {
    font-size: 18px;
    line-height: 1.5;
  }
}
@media (max-width: 768px) {
  .blocks-slider-mobile.blocks-slider-mobile-2.influencers {
    padding: 57px 20px 37px 20px;
  }
}
.blocks-slider-mobile.blocks-slider-mobile-2.influencers .title-section-mylead {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .blocks-slider-mobile.blocks-slider-mobile-2.influencers .title-section-mylead {
    margin-bottom: 40px;
  }
}
.blocks-slider-mobile.blocks-slider-mobile-2.influencers .influencers-registration-banner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1035px 85px;
  display: block;
  background-size: cover;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  padding: 15px;
  flex-direction: column;
  align-items: center;
  padding: 50px;
}
.webp.webpalpha .blocks-slider-mobile.blocks-slider-mobile-2.influencers .influencers-registration-banner {
  background-image: url("/images/cta3@1x.webp") !important;
}
.no-js .blocks-slider-mobile.blocks-slider-mobile-2.influencers .influencers-registration-banner, .no-webp .blocks-slider-mobile.blocks-slider-mobile-2.influencers .influencers-registration-banner, .no-webpalpha .blocks-slider-mobile.blocks-slider-mobile-2.influencers .influencers-registration-banner {
  background-image: url("/images/cta3@1x.png") !important;
}
@media (max-width: 767px) {
  .blocks-slider-mobile.blocks-slider-mobile-2.influencers .influencers-registration-banner {
    flex-direction: column;
    padding: 60px 20px;
  }
}
@media (max-width: 767px) and (min-width: 576px) {
  .blocks-slider-mobile.blocks-slider-mobile-2.influencers .influencers-registration-banner {
    padding: 30px 20px;
  }
}
.blocks-slider-mobile.blocks-slider-mobile-2.influencers .influencers-registration-banner h5.title, .blocks-slider-mobile.blocks-slider-mobile-2.influencers .influencers-registration-banner .title.h5 {
  color: #fff !important;
  margin-left: 20px;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  max-width: 574px;
  margin-bottom: 30px;
  margin-left: 0 !important;
}
@media (min-width: 576px) {
  .blocks-slider-mobile.blocks-slider-mobile-2.influencers .influencers-registration-banner h5.title, .blocks-slider-mobile.blocks-slider-mobile-2.influencers .influencers-registration-banner .title.h5 {
    font-size: 36px;
  }
}
.blocks-slider-mobile.blocks-slider-mobile-2.influencers .influencers-registration-banner .sign-up-global {
  height: 56px;
  margin: 0 !important;
  width: 100%;
  text-align: center;
}
@media (min-width: 576px) {
  .blocks-slider-mobile.blocks-slider-mobile-2.influencers .influencers-registration-banner .sign-up-global {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.blocks-slider-mobile.blocks-slider-mobile-2 .title-section-mylead {
  text-align: left;
}
@media (max-width: 768px) {
  .blocks-slider-mobile.blocks-slider-mobile-2 .title-section-mylead.less-margin-mobile {
    margin-bottom: 30px;
  }
}
.blocks-slider-mobile.blocks-slider-mobile-3 {
  background-color: #fff;
  height: 100%;
  padding: 60px 0;
}
@media (min-width: 576px) {
  .blocks-slider-mobile.blocks-slider-mobile-3 {
    padding: 60px 20px;
  }
}
@media (max-width: 768px) {
  .blocks-slider-mobile.blocks-slider-mobile-3.custom-spacing-ivr {
    margin: 0;
    padding: 40px 0 60px 20px;
  }
}
@media (max-width: 768px) {
  .blocks-slider-mobile.blocks-slider-mobile-3.custom-spacing-influencers {
    margin: 0;
    padding: 60px 0 40px 20px;
  }
}
.blocks-slider-mobile.blocks-slider-mobile-3 .title-section-mylead {
  text-align: left;
}
@media (min-width: 768px) {
  .blocks-slider-mobile.blocks-slider-mobile-3 .title-section-mylead.influencers-title {
    text-align: center;
    margin: 0 auto;
    max-width: 1094px;
  }
}
.blocks-slider-mobile.blocks-slider-mobile-3 .title-section-mylead.influencers-title h2, .blocks-slider-mobile.blocks-slider-mobile-3 .title-section-mylead.influencers-title .h2 {
  margin-bottom: 33px;
}
@media (min-width: 768px) {
  .blocks-slider-mobile.blocks-slider-mobile-3 .title-section-mylead {
    text-align: center;
    margin: 0 auto;
    max-width: 743px;
  }
}
.blocks-slider-mobile.blocks-slider-mobile-3 .title-section-mylead h2, .blocks-slider-mobile.blocks-slider-mobile-3 .title-section-mylead .h2 {
  margin-bottom: 47px;
}
.blocks-slider-mobile.blocks-slider-mobile-3 .title-section-mylead h4, .blocks-slider-mobile.blocks-slider-mobile-3 .title-section-mylead .h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 39px;
}
@media (max-width: 1200px) {
  .blocks-slider-mobile.blocks-slider-mobile-3 .title-section-mylead h4, .blocks-slider-mobile.blocks-slider-mobile-3 .title-section-mylead .h4 {
    display: none;
  }
}
.blocks-slider-mobile.blocks-slider-mobile-3 .title-section-mylead .collapse {
  margin-bottom: 40px;
}
.blocks-slider-mobile.blocks-slider-mobile-3 .title-section-mylead a {
  max-width: 200px;
  margin: 0 auto 50px auto;
}
@media (max-width: 1200px) {
  .blocks-slider-mobile.blocks-slider-mobile-3 .title-section-mylead a {
    display: none;
  }
}
.blocks-slider-mobile.blocks-slider-mobile-4 {
  background-color: #fff;
  padding: 60px 0 13px 20px;
}
@media (min-width: 768px) {
  .blocks-slider-mobile.blocks-slider-mobile-4 {
    padding: 60px 0 60px 20px;
  }
}
.blocks-slider-mobile.blocks-slider-mobile-4 .title-section-mylead {
  text-align: left;
}
@media (min-width: 768px) {
  .blocks-slider-mobile.blocks-slider-mobile-4 .title-section-mylead {
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .blocks-slider-mobile.blocks-slider-mobile-4 .title-section-mylead {
    margin-bottom: 60px;
  }
}
.blocks-slider-mobile.blocks-slider-mobile-5 {
  background-color: #fff;
  padding: 60px 0 0 0;
}
@media (max-width: 768px) {
  .blocks-slider-mobile.blocks-slider-mobile-5 {
    padding-bottom: 0 !important;
  }
}
@media (min-width: 992px) {
  .blocks-slider-mobile.blocks-slider-mobile-5 {
    padding: 60px 20px;
  }
}
.blocks-slider-mobile.blocks-slider-mobile-5 .title-section-mylead {
  text-align: left;
}
@media (max-width: 768px) {
  .blocks-slider-mobile.blocks-slider-mobile-5 .title-section-mylead {
    padding-left: 10px !important;
  }
}
.blocks-slider-mobile.blocks-slider-mobile-5 .title-section-mylead h2, .blocks-slider-mobile.blocks-slider-mobile-5 .title-section-mylead .h2 {
  font-size: 24px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .blocks-slider-mobile.blocks-slider-mobile-5 .title-section-mylead h2, .blocks-slider-mobile.blocks-slider-mobile-5 .title-section-mylead .h2 {
    font-size: 34px;
  }
}
@media (min-width: 1200px) {
  .blocks-slider-mobile.blocks-slider-mobile-5 .title-section-mylead h2, .blocks-slider-mobile.blocks-slider-mobile-5 .title-section-mylead .h2 {
    font-size: 36px;
  }
}
.blocks-slider-mobile.blocks-slider-mobile-5 .title-section-mylead h4, .blocks-slider-mobile.blocks-slider-mobile-5 .title-section-mylead .h4 {
  margin-top: 30px;
  font-size: 18px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .blocks-slider-mobile.blocks-slider-mobile-5 .title-section-mylead h4, .blocks-slider-mobile.blocks-slider-mobile-5 .title-section-mylead .h4 {
    margin-top: 40px;
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .blocks-slider-mobile.blocks-slider-mobile-5 .title-section-mylead h4, .blocks-slider-mobile.blocks-slider-mobile-5 .title-section-mylead .h4 {
    margin-top: 50px;
    font-size: 24px;
  }
}
.blocks-slider-mobile.blocks-slider-mobile-5 .title-section-mylead p {
  margin-top: 10px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .blocks-slider-mobile.blocks-slider-mobile-5 .title-section-mylead p {
    margin-top: 20px;
  }
}
@media (min-width: 1200px) {
  .blocks-slider-mobile.blocks-slider-mobile-5 .title-section-mylead p {
    margin-top: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .blocks-slider-mobile.blocks-slider-mobile-5 .title-section-mylead {
    line-height: 55px;
  }
}
@media (min-width: 768px) {
  .blocks-slider-mobile.blocks-slider-mobile-5 .title-section-mylead {
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .blocks-slider-mobile.blocks-slider-mobile-5 .title-section-mylead {
    margin-bottom: 60px;
  }
}
.blocks-slider-mobile.blocks-slider-mobile-5 .info p {
  text-align: left;
  color: #87919C;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.7;
  padding: 10px 0 0 10px;
}
@media (min-width: 768px) {
  .blocks-slider-mobile.blocks-slider-mobile-5 .info p {
    font-size: 16px;
    line-height: 1.625;
    padding: 10px 100px 0 100px;
  }
}
@media (min-width: 1200px) {
  .blocks-slider-mobile.blocks-slider-mobile-5 .info p {
    font-size: 18px;
    line-height: 1.5;
  }
}
@media (max-width: 768px) {
  .blocks-slider-mobile.blocks-slider-mobile-5 .cta-4 {
    margin: 60px 20px 0 10px;
  }
}
.blocks-slider-mobile.blocks-slider-mobile-6 {
  background-color: #fff;
}
@media (max-width: 768px) {
  .blocks-slider-mobile.blocks-slider-mobile-6 {
    padding: 40px 0 0 0;
    margin: 0 0 0 20px;
  }
}
.blocks-slider-mobile.blocks-slider-mobile-6 .title-section-mylead {
  text-align: left;
}
@media (min-width: 576px) {
  .blocks-slider-mobile.blocks-slider-mobile-6 .title-section-mylead {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .blocks-slider-mobile.blocks-slider-mobile-6 .text-section {
    padding: 0 20px;
  }
}
.blocks-slider-mobile.blocks-slider-mobile-6 .text-section h4, .blocks-slider-mobile.blocks-slider-mobile-6 .text-section .h4 {
  font-size: 24px;
  font-weight: 700;
  color: #283B41;
  line-height: 36px;
  margin-bottom: 0;
}
.blocks-slider-mobile.blocks-slider-mobile-6 .text-section p {
  margin-top: 30px;
  margin-bottom: 70px;
  color: #87919C;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}
@media (max-width: 991px) {
  .blocks-slider-mobile.blocks-slider-mobile-6 .text-section p {
    margin-bottom: 40px;
  }
}
.blocks-slider-mobile.blocks-slider-mobile-7 {
  background-color: #fff;
  padding: 60px 0 0 20px;
  margin-bottom: 0;
}
.blocks-slider-mobile.blocks-slider-mobile-7 .title-section-mylead {
  text-align: left;
}
@media (min-width: 768px) {
  .blocks-slider-mobile.blocks-slider-mobile-7 .title-section-mylead {
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .blocks-slider-mobile.blocks-slider-mobile-7 .title-section-mylead {
    margin-bottom: 60px;
  }
}
.blocks-slider-mobile.blocks-slider-mobile-7 .title-section-mylead h4, .blocks-slider-mobile.blocks-slider-mobile-7 .title-section-mylead .h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}
@media (min-width: 576px) {
  .blocks-slider-mobile.blocks-slider-mobile-7 .title-section-mylead h4, .blocks-slider-mobile.blocks-slider-mobile-7 .title-section-mylead .h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
  }
}
.blocks-slider-mobile.blocks-slider-mobile-7 .title-section-mylead p {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
}
@media (min-width: 576px) {
  .blocks-slider-mobile.blocks-slider-mobile-7 .title-section-mylead p {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    text-align: left;
  }
}

.blog-section {
  padding: 100px 0;
}
.blog-section .margin-btn {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .blog-section .margin-btn {
    margin-top: 8px;
    margin-bottom: 18px;
  }
}
.blog-section .title-section-mylead {
  text-align: left;
}
@media (min-width: 768px) {
  .blog-section .title-section-mylead {
    text-align: center;
  }
}
.blog-section .title-section-mylead p {
  margin-top: 31px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .blog-section .title-section-mylead p {
    margin-top: 36px;
    margin-bottom: 50px;
  }
}
.blog-section .btn-mylead-2 {
  padding: 12px 19px;
  width: 100%;
}
@media (min-width: 450px) {
  .blog-section .btn-mylead-2 {
    width: -moz-fit-content;
    width: fit-content;
  }
}

.content-text-section {
  padding: 57px 0;
  position: relative;
  border-radius: 50px;
  margin: 0 20px;
}
@media (min-width: 576px) {
  .content-text-section {
    padding: 100px 0;
  }
}
@media (max-width: 1199px) {
  .content-text-section {
    border-radius: 20px;
    background-position: center -500px !important;
  }
}
@media (max-width: 576px) {
  .content-text-section.ivr-section-padding {
    padding: 37px 0;
  }
}
@media (max-width: 1200px) {
  .content-text-section.for-webmasters-section-padding {
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .content-text-section.for-webmasters-section-padding {
    padding: 80px 0;
  }
}
.content-text-section.become-publisher {
  padding: 0 0 37px 0;
}
@media (min-width: 576px) {
  .content-text-section.become-publisher {
    padding: 100px 0;
  }
}
.content-text-section.content-lockers {
  padding: 42px 0 25px 0;
}
@media (min-width: 576px) {
  .content-text-section.content-lockers {
    padding: 72px 0 0 0;
  }
}
@media (min-width: 1200px) {
  .content-text-section.content-lockers {
    padding: 105px 0 0 0;
  }
}
.content-text-section.home-page-wrapper {
  padding: 60px 0 36px 0;
}
@media (min-width: 576px) {
  .content-text-section.home-page-wrapper {
    padding: 100px 0;
  }
}
@media (max-width: 576px) {
  .content-text-section.home-page-wrapper .text {
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .content-text-section.home-page-wrapper .text h2, .content-text-section.home-page-wrapper .text .h2 {
    margin-bottom: 28px;
  }
}
@media (max-width: 576px) {
  .content-text-section.home-page-wrapper .text h4, .content-text-section.home-page-wrapper .text .h4 {
    margin-top: 0;
  }
}
.content-text-section.publisher-page-wrapper {
  padding: 43px 0 0 0;
}
@media (min-width: 576px) {
  .content-text-section.publisher-page-wrapper {
    padding: 66px 0 29px 0;
  }
}
@media (min-width: 1200px) {
  .content-text-section.publisher-page-wrapper {
    padding: 76px 0 29px 0;
  }
}
.content-text-section.publisher-page-wrapper .text {
  margin-bottom: 45px;
}
@media (max-width: 1200px) {
  .content-text-section.publisher-page-wrapper .text {
    margin-bottom: 41px;
  }
}
@media (max-width: 1200px) {
  .content-text-section.publisher-page-wrapper .text.max-width {
    max-width: 640px;
  }
}
@media (min-width: 576px) {
  .content-text-section.publisher-page-wrapper .text h2, .content-text-section.publisher-page-wrapper .text .h2 {
    font-size: 34px;
  }
}
@media (min-width: 1200px) {
  .content-text-section.publisher-page-wrapper .text h2, .content-text-section.publisher-page-wrapper .text .h2 {
    font-size: 36px;
  }
}
@media (max-width: 1200px) {
  .content-text-section.publisher-page-wrapper .text h2, .content-text-section.publisher-page-wrapper .text .h2 {
    text-align: center;
  }
}
.content-text-section.publisher-page-wrapper .text p {
  font-size: 15px;
  line-height: 1.7;
}
@media (min-width: 576px) {
  .content-text-section.publisher-page-wrapper .text p {
    font-size: 16px;
    line-height: 1.6;
  }
}
@media (min-width: 1200px) {
  .content-text-section.publisher-page-wrapper .text p {
    font-size: 18px;
    line-height: 1.5;
  }
}
@media (max-width: 1200px) {
  .content-text-section.publisher-page-wrapper .text p {
    text-align: center;
  }
}
@media (max-width: 1200px) {
  .content-text-section.publisher-page-wrapper .text.publisher-first-col-text {
    margin: 0 auto 21px auto;
  }
}
.content-text-section.publisher-page-wrapper .text.publisher-first-col-text h4, .content-text-section.publisher-page-wrapper .text.publisher-first-col-text .h4 {
  font-size: 18px;
  line-height: 1.5;
  margin: 50px 0 26px 0;
}
@media (min-width: 576px) {
  .content-text-section.publisher-page-wrapper .text.publisher-first-col-text h4, .content-text-section.publisher-page-wrapper .text.publisher-first-col-text .h4 {
    font-size: 20px;
    line-height: 1.6;
  }
}
@media (min-width: 1200px) {
  .content-text-section.publisher-page-wrapper .text.publisher-first-col-text h4, .content-text-section.publisher-page-wrapper .text.publisher-first-col-text .h4 {
    font-size: 24px;
    line-height: 1.5;
  }
}
@media (max-width: 1200px) {
  .content-text-section.publisher-page-wrapper .text.publisher-first-col-text h4, .content-text-section.publisher-page-wrapper .text.publisher-first-col-text .h4 {
    text-align: center;
  }
}
.content-text-section.publisher-page-wrapper .text.publisher-second-col-text p {
  margin-top: 4px;
}
@media (max-width: 1200px) {
  .content-text-section.publisher-page-wrapper .text.publisher-second-col-text p {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
  }
}
.content-text-section.cl-wrapper {
  background-color: #F4F6F9;
  border-radius: 20px;
  max-width: 100%;
  padding: 10px 20px 57px 10px;
}
@media (min-width: 576px) {
  .content-text-section.cl-wrapper {
    padding: 48px 60px;
  }
}
@media (min-width: 768px) {
  .content-text-section.cl-wrapper {
    border-radius: 50px;
  }
}
@media (min-width: 1200px) {
  .content-text-section.cl-wrapper {
    padding: 48px 100px;
  }
}
.content-text-section.cl-wrapper .text h4, .content-text-section.cl-wrapper .text .h4 {
  margin: 0 0 30px 0;
  height: 108px;
}
.content-text-section.sms-programs-wrapper {
  padding: 50px 0;
}
@media (min-width: 576px) {
  .content-text-section.sms-programs-wrapper {
    padding: 100px 0;
  }
}
@media (max-width: 576px) {
  .content-text-section.sms-programs-wrapper.mobile-margin {
    margin: 0 30px;
  }
}
.content-text-section.sms-programs-wrapper.last-section-padding {
  padding: 0;
}
@media (min-width: 1200px) {
  .content-text-section.sms-programs-wrapper.last-section-padding {
    padding: 100px 0;
  }
}
@media (min-width: 576px) {
  .content-text-section.content-lockers-wrapper .text h2, .content-text-section.content-lockers-wrapper .text .h2 {
    font-size: 34px !important;
    font-weight: 500 !important;
  }
}
@media (min-width: 1200px) {
  .content-text-section.company-about-us-wrapper.overflow-xl-visible {
    overflow: visible;
  }
}
.content-text-section.company-about-us-wrapper.job {
  padding: 53px 0;
  min-height: 526px;
}
@media (min-width: 767px) {
  .content-text-section.company-about-us-wrapper.job {
    padding: 90px 0;
  }
}
@media (min-width: 1200px) {
  .content-text-section.company-about-us-wrapper.job {
    padding: 100px 0;
    min-height: 648px;
  }
}
@media (min-width: 991px) and (max-width: 1200px) {
  .content-text-section.company-about-us-wrapper.job {
    background-position: 36vw !important;
  }
}
.content-text-section.company-about-us-wrapper.job .text {
  max-width: 540px;
}
.content-text-section.company-about-us-wrapper.job .text h2, .content-text-section.company-about-us-wrapper.job .text .h2 {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .content-text-section.company-about-us-wrapper.job .text h2, .content-text-section.company-about-us-wrapper.job .text .h2 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 26px;
  }
}
@media (min-width: 1200px) {
  .content-text-section.company-about-us-wrapper.job .text h2, .content-text-section.company-about-us-wrapper.job .text .h2 {
    margin-top: 91px;
  }
}
.content-text-section.company-about-us-wrapper.job .text h4, .content-text-section.company-about-us-wrapper.job .text .h4 {
  margin: 39px 0 40px 0;
}
@media (max-width: 767px) {
  .content-text-section.company-about-us-wrapper.job .text h4, .content-text-section.company-about-us-wrapper.job .text .h4 {
    margin-top: 0;
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .content-text-section.company-about-us-wrapper.job .image-section {
    height: 100%;
    display: flex;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .content-text-section.company-about-us-wrapper.job .image-section .image-left {
    width: 779px !important;
    position: absolute;
    left: -250px;
    top: -30px;
  }
}
.content-text-section.company-about-us-wrapper.materials {
  min-height: 608px;
  padding: 0;
  margin: 0 20px;
  background-color: #F4F6F9;
}
@media (min-width: 992px) {
  .content-text-section.company-about-us-wrapper.materials {
    background-color: transparent;
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .content-text-section.company-about-us-wrapper.materials {
    padding: 143px 0;
  }
}
.content-text-section.company-about-us-wrapper.materials .company-about-us-materials-content {
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 992px) {
  .content-text-section.company-about-us-wrapper.materials .company-about-us-materials-content {
    flex-direction: row;
  }
}
.content-text-section.company-about-us-wrapper.materials .text-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 991px) {
  .content-text-section.company-about-us-wrapper.materials .text-wrapper {
    padding: 0;
    margin: 0;
  }
}
@media (min-width: 992px) {
  .content-text-section.company-about-us-wrapper.materials .text-wrapper {
    justify-content: center;
  }
}
.content-text-section.company-about-us-wrapper.materials .text-wrapper .text {
  max-width: 517px;
  margin-left: 40px;
  padding-right: 25px;
}
.content-text-section.company-about-us-wrapper.materials .text-wrapper .text a.sign-up-global {
  width: 100%;
}
@media (min-width: 576px) {
  .content-text-section.company-about-us-wrapper.materials .text-wrapper .text a.sign-up-global {
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (max-width: 991px) {
  .content-text-section.company-about-us-wrapper.materials .text-wrapper .text {
    margin-left: 0;
    padding: 0 30px;
  }
}
@media (min-width: 1200px) {
  .content-text-section.company-about-us-wrapper.materials .text-wrapper .text {
    max-width: 700px;
    margin-left: 87px;
  }
}
.content-text-section.description-section {
  background-color: #fff;
}
.content-text-section.description-section .text {
  text-align: center;
  margin: 0 auto;
  max-width: 1036px;
  padding: 0;
}
@media (min-width: 576px) {
  .content-text-section.description-section .text {
    padding: 0 20px;
  }
}
@media (min-width: 1199px) {
  .content-text-section.description-section .text {
    padding: 0;
  }
}
.content-text-section.description-section .text.sms-programs-max-width {
  max-width: 100%;
}
.content-text-section.description-section .text.sms-programs-max-width .title-section {
  max-width: 672px;
  display: none;
}
@media (min-width: 576px) {
  .content-text-section.description-section .text.sms-programs-max-width .title-section {
    display: block;
  }
}
.content-text-section.description-section .text.sms-programs-max-width .subtitle-section {
  display: none;
}
@media (min-width: 576px) {
  .content-text-section.description-section .text.sms-programs-max-width .subtitle-section {
    display: block;
  }
}
.content-text-section.description-section .text.ivr-text {
  text-align: left;
}
@media (min-width: 576px) {
  .content-text-section.description-section .text.ivr-text {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .content-text-section.description-section .text.ivr-text .ivr-text-wrapper {
    padding: 0 20px;
  }
}
.content-text-section.description-section .text.ivr-text .title-section {
  text-align: left;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0;
}
@media (min-width: 576px) {
  .content-text-section.description-section .text.ivr-text .title-section {
    max-width: 415px;
    margin: 0 auto;
    text-align: center;
  }
}
.content-text-section.description-section .text.ivr-text h4, .content-text-section.description-section .text.ivr-text .h4 {
  margin: 30px 0 20px 0;
}
@media (min-width: 576px) {
  .content-text-section.description-section .text.ivr-text h4, .content-text-section.description-section .text.ivr-text .h4 {
    margin: 50px 0 30px 0;
  }
}
.content-text-section.description-section .text .title-section {
  max-width: 415px;
  margin: 0 auto;
}
.content-text-section.description-section .text .title-section h2, .content-text-section.description-section .text .title-section .h2 {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.5;
}
@media (min-width: 576px) {
  .content-text-section.description-section .text .title-section h2, .content-text-section.description-section .text .title-section .h2 {
    font-size: 40px;
  }
}
.content-text-section.description-section .text .ivr-banner {
  margin: 30px 0;
  height: 981px;
  width: 100%;
  border-radius: 30px;
  background-color: #F4F6F9;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 50px 50px 30px 50px;
  position: relative;
}
@media (min-width: 576px) {
  .content-text-section.description-section .text .ivr-banner {
    margin: 57px 0 62px 0;
    height: 350px;
    max-width: 1036px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 50px 50px 30px 50px;
  }
}
@media (min-width: 768px) {
  .content-text-section.description-section .text .ivr-banner {
    height: 320px;
  }
}
.content-text-section.description-section .text .ivr-banner .dash {
  position: absolute;
  top: 29%;
  left: 50%;
  height: 42%;
  width: 3px;
  background-image: url("data:image/svg+xml,%3csvg width='14' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%2387919CFF' stroke-width='6' stroke-dasharray='6%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
}
@media (min-width: 576px) {
  .content-text-section.description-section .text .ivr-banner .dash {
    background-image: url("data:image/svg+xml,%3csvg width='30' height='3' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='15' height='3' fill='none' stroke='%2387919CFF' stroke-width='6' stroke-dasharray='24' stroke-dashoffset='0' stroke-linecap='round'/%3e%3c/svg%3e");
    background-repeat: repeat-x;
    top: 37%;
    left: 33%;
    width: 34%;
    height: 3px;
  }
}
@media (min-width: 1200px) {
  .content-text-section.description-section .text .ivr-banner .dash {
    left: 29%;
    width: 42%;
  }
}
.content-text-section.description-section .text .ivr-banner .img-wrapper {
  width: 79px;
  min-width: 79px;
  height: 138px;
  z-index: 2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 79px 138px;
  display: block;
  background-position: top;
  background-size: cover;
}
.webp.webpalpha .content-text-section.description-section .text .ivr-banner .img-wrapper {
  background-image: url("/images/mobile-phone-icon@1x.webp") !important;
}
.no-js .content-text-section.description-section .text .ivr-banner .img-wrapper, .no-webp .content-text-section.description-section .text .ivr-banner .img-wrapper, .no-webpalpha .content-text-section.description-section .text .ivr-banner .img-wrapper {
  background-image: url("/images/mobile-phone-icon@1x.png") !important;
}
.content-text-section.description-section .text .ivr-banner .ppm {
  position: relative;
  width: 304px;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
.content-text-section.description-section .text .ivr-banner .ppm div {
  width: -moz-fit-content;
  width: fit-content;
  height: 137px;
  border-radius: 24px;
  background-color: #fff;
  text-align: center;
  padding: 28px 15px;
  margin-bottom: 20px;
}
.content-text-section.description-section .text .ivr-banner .ppm div h2, .content-text-section.description-section .text .ivr-banner .ppm div .h2 {
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}
.content-text-section.description-section .text .ivr-banner .ppm div h4, .content-text-section.description-section .text .ivr-banner .ppm div .h4 {
  color: #87919C;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
}
.content-text-section.description-section .text .ivr-banner .ppm h4, .content-text-section.description-section .text .ivr-banner .ppm .h4 {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
}
.content-text-section.description-section .text .ivr-banner .ppm p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}
.content-text-section.description-section .text .sms-programs-banner {
  margin: 57px 0 40px 0;
  height: auto;
  width: 100%;
  max-width: 1431px;
  border-radius: 30px;
  background-color: #F4F6F9;
  display: flex;
  flex-direction: column;
  padding: 30px 20px;
}
@media (min-width: 576px) {
  .content-text-section.description-section .text .sms-programs-banner {
    margin: 57px 0 62px 0;
  }
}
@media (min-width: 768px) {
  .content-text-section.description-section .text .sms-programs-banner {
    padding: 20px;
  }
}
@media (min-width: 1200px) {
  .content-text-section.description-section .text .sms-programs-banner {
    flex-direction: row;
  }
}
.content-text-section.description-section .text .sms-programs-banner .description {
  padding: 10px 0 30px 0;
  height: auto;
  display: flex;
  flex-direction: column;
  text-align: left;
}
@media (min-width: 576px) {
  .content-text-section.description-section .text .sms-programs-banner .description {
    padding: 59px 30px 30px 30px;
  }
}
@media (min-width: 1200px) {
  .content-text-section.description-section .text .sms-programs-banner .description {
    max-width: 65%;
  }
}
.content-text-section.description-section .text .sms-programs-banner .description h3, .content-text-section.description-section .text .sms-programs-banner .description .h3 {
  color: #283B41;
  font-weight: 900;
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 32px;
}
@media (min-width: 576px) {
  .content-text-section.description-section .text .sms-programs-banner .description h3, .content-text-section.description-section .text .sms-programs-banner .description .h3 {
    font-size: 30px;
    line-height: 42px;
    margin-bottom: 42px;
  }
}
.content-text-section.description-section .text .sms-programs-banner .description h4, .content-text-section.description-section .text .sms-programs-banner .description .h4 {
  color: #283B41;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  margin: 0 0 20px 0;
}
@media (min-width: 576px) {
  .content-text-section.description-section .text .sms-programs-banner .description h4, .content-text-section.description-section .text .sms-programs-banner .description .h4 {
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    margin: 0 0 30px 0;
  }
}
.content-text-section.description-section .text .sms-programs-banner .description p {
  color: #87919C;
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  margin: 0;
}
@media (min-width: 576px) {
  .content-text-section.description-section .text .sms-programs-banner .description p {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
  }
}
.content-text-section.description-section .text .sms-programs-banner .img-wrapper {
  position: relative;
  height: auto;
  width: 100%;
  max-width: 70%;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .content-text-section.description-section .text .sms-programs-banner .img-wrapper {
    max-width: 50%;
  }
}
@media (min-width: 1200px) {
  .content-text-section.description-section .text .sms-programs-banner .img-wrapper {
    max-width: 33%;
    margin: 0;
  }
}
.content-text-section.description-section .text .sms-programs-banner .img-wrapper .image.computer {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 1920px 630px !important;
  display: block;
  height: 630px;
  width: 1920px;
  background-image: url("/images/svg/computer.svg") !important;
  background-size: 100% !important;
}
@media (min-width: 1200px) {
  .content-text-section.description-section .text .sms-programs-banner .img-wrapper .image.computer {
    background-size: 80% !important;
  }
}
.content-text-section.description-section .text .sms-programs-banner .img-wrapper .image.computer {
  width: 100% !important;
  background-position: center bottom 30px !important;
  height: auto;
}
@media (min-width: 576px) {
  .content-text-section.description-section .text .sms-programs-banner .img-wrapper .image.computer {
    margin-top: -49px;
  }
}
@media (min-width: 1200px) {
  .content-text-section.description-section .text .sms-programs-banner .img-wrapper .image.computer {
    width: 94% !important;
    margin-left: 30px;
    margin-top: 0;
  }
}
.content-text-section.description-section .text .sms-programs-banner .img-wrapper .image.computer:after {
  content: "";
  padding-bottom: 100%;
  display: block;
}
.content-text-section.description-section .text .content-lockers-banner {
  margin: 0 0 12px 0;
  height: auto;
  width: 100%;
  max-width: 1431px;
  border-radius: 30px;
  background-color: #F4F6F9;
  display: flex;
  flex-direction: column;
  padding: 20px;
}
@media (min-width: 460px) {
  .content-text-section.description-section .text .content-lockers-banner {
    margin: 30px 0 12px 0;
  }
}
@media (min-width: 576px) {
  .content-text-section.description-section .text .content-lockers-banner {
    margin: 30px 0 72px 0;
  }
}
@media (min-width: 1200px) {
  .content-text-section.description-section .text .content-lockers-banner {
    margin: 30px 0 92px 0;
  }
}
@media (min-width: 1200px) {
  .content-text-section.description-section .text .content-lockers-banner {
    flex-direction: row;
  }
}
.content-text-section.description-section .text .content-lockers-banner.for-webmasters {
  margin: 0;
  padding: 25px 20px 20px 20px;
}
@media (min-width: 576px) {
  .content-text-section.description-section .text .content-lockers-banner.for-webmasters {
    padding-top: 50px;
  }
}
@media (min-width: 1200px) {
  .content-text-section.description-section .text .content-lockers-banner.for-webmasters {
    padding-top: 41px;
    padding-bottom: 70px;
  }
}
.content-text-section.description-section .text .content-lockers-banner.for-webmasters .cards-wrapper {
  padding-bottom: 0;
}
@media (min-width: 576px) {
  .content-text-section.description-section .text .content-lockers-banner.for-webmasters .cards-wrapper {
    padding-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .content-text-section.description-section .text .content-lockers-banner.for-webmasters .cards-wrapper .cards-container .cl-card .card-item {
    margin-bottom: 20px;
  }
}
.content-text-section.description-section .text .content-lockers-banner.for-webmasters .cards-wrapper .cards-container .cl-card .card-item .card-image .image.step-1-tools-for-webmaster {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 600px 240px !important;
  display: block;
  height: 240px;
  width: 600px;
  background-image: url("/images/svg/team.svg") !important;
  background-size: 84% !important;
}
.content-text-section.description-section .text .content-lockers-banner.for-webmasters .cards-wrapper .cards-container .cl-card .card-item .card-image .image.step-2-tools-for-webmaster {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 600px 240px !important;
  display: block;
  height: 240px;
  width: 600px;
  background-image: url("/images/svg/stopwatch.svg") !important;
  background-size: 84% !important;
}
.content-text-section.description-section .text .content-lockers-banner.for-webmasters .cards-wrapper .cards-container .cl-card .card-item .card-text {
  padding: 40px 20px 0 20px;
}
.content-text-section.description-section .text .content-lockers-banner.for-webmasters .cards-wrapper .cards-container .cl-card .card-item .card-text h3, .content-text-section.description-section .text .content-lockers-banner.for-webmasters .cards-wrapper .cards-container .cl-card .card-item .card-text .h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 34px;
}
.content-text-section.description-section .text .content-lockers-banner.for-webmasters .cards-wrapper .cards-container .cl-card .card-item .card-text h3 span, .content-text-section.description-section .text .content-lockers-banner.for-webmasters .cards-wrapper .cards-container .cl-card .card-item .card-text .h3 span {
  font-weight: 900;
}
.content-text-section.description-section .text .content-lockers-banner.for-webmasters .cards-wrapper .arrow-container .arrow-icon {
  display: none;
}
.content-text-section.description-section .text .content-lockers-banner.for-webmasters .cl-description {
  align-items: flex-start;
  text-align: left;
}
.content-text-section.description-section .text .content-lockers-banner.for-webmasters .cl-description.for-webmasters {
  justify-content: flex-start;
}
.content-text-section.description-section .text .content-lockers-banner.for-webmasters .cl-description.for-webmasters h3, .content-text-section.description-section .text .content-lockers-banner.for-webmasters .cl-description.for-webmasters .h3 {
  padding-top: 0;
}
@media (min-width: 576px) {
  .content-text-section.description-section .text .content-lockers-banner.for-webmasters .cl-description.for-webmasters h3, .content-text-section.description-section .text .content-lockers-banner.for-webmasters .cl-description.for-webmasters .h3 {
    padding-top: 50px;
  }
}
@media (min-width: 1200px) {
  .content-text-section.description-section .text .content-lockers-banner.for-webmasters .cl-description.for-webmasters h3, .content-text-section.description-section .text .content-lockers-banner.for-webmasters .cl-description.for-webmasters .h3 {
    padding-top: 80px;
  }
}
.content-text-section.description-section .text .content-lockers-banner.for-webmasters .cl-description.for-webmasters .buttons-wrapper {
  padding-bottom: 10px;
}
@media (min-width: 576px) {
  .content-text-section.description-section .text .content-lockers-banner.for-webmasters .cl-description.for-webmasters .buttons-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 576px) {
  .content-text-section.description-section .text .content-lockers-banner.for-webmasters .cl-description.for-webmasters .buttons-wrapper a {
    width: 100%;
  }
}
.content-text-section.description-section .text .content-lockers-banner.for-webmasters .cl-description.for-webmasters .buttons-wrapper a.btn-show-more-global {
  max-width: 100%;
  width: 100%;
  margin-left: 0;
}
@media (min-width: 576px) {
  .content-text-section.description-section .text .content-lockers-banner.for-webmasters .cl-description.for-webmasters .buttons-wrapper a.btn-show-more-global {
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin-left: 30px;
  }
}
.content-text-section.description-section .text .content-lockers-banner.for-webmasters .cl-description.for-webmasters .buttons-wrapper a.sign-up-global {
  margin-bottom: 30px;
}
@media (min-width: 576px) {
  .content-text-section.description-section .text .content-lockers-banner.for-webmasters .cl-description.for-webmasters .buttons-wrapper a.sign-up-global {
    margin-bottom: 0;
  }
}
@media (min-width: 576px) {
  .content-text-section.description-section .text .content-lockers-banner.for-webmasters .cl-description {
    padding: 0px 15px 0 15px;
  }
}
@media (min-width: 1200px) {
  .content-text-section.description-section .text .content-lockers-banner.for-webmasters .cl-description {
    padding: 0px 92px 0 50px;
    align-items: flex-start;
  }
}
.content-text-section.description-section .text .content-lockers-banner.for-webmasters .cl-description .buttons-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
@media (min-width: 576px) {
  .content-text-section.description-section .text .content-lockers-banner.for-webmasters .cl-description .buttons-wrapper {
    flex-direction: row;
  }
}
.content-text-section.description-section .text .content-lockers-banner.for-webmasters .cl-description .buttons-wrapper .btn-show-more-global {
  background-color: #fff;
  margin-left: 20px;
  margin-bottom: 0;
  min-width: 140px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 0 15px;
}
.content-text-section.description-section .text .content-lockers-banner.for-webmasters .cl-description .buttons-wrapper .btn-show-more-global:hover {
  background-color: #87919C;
  color: #fff;
}
.content-text-section.description-section .text .content-lockers-banner .cards-wrapper {
  padding: 39px 0 30px 0;
  height: auto;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}
@media (min-width: 576px) {
  .content-text-section.description-section .text .content-lockers-banner .cards-wrapper {
    align-items: stretch;
    padding: 59px 0 30px 0;
  }
}
@media (min-width: 1200px) {
  .content-text-section.description-section .text .content-lockers-banner .cards-wrapper {
    max-width: 60%;
  }
}
@media (min-width: 1400px) {
  .content-text-section.description-section .text .content-lockers-banner .cards-wrapper {
    margin-right: 50px;
  }
}
.content-text-section.description-section .text .content-lockers-banner .cards-wrapper .cards-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 576px) {
  .content-text-section.description-section .text .content-lockers-banner .cards-wrapper .cards-container {
    flex-direction: row;
  }
}
.content-text-section.description-section .text .content-lockers-banner .cards-wrapper .cards-container .cl-card {
  min-height: 450px;
  height: auto;
}
@media (min-width: 576px) {
  .content-text-section.description-section .text .content-lockers-banner .cards-wrapper .cards-container .cl-card {
    width: 340px;
  }
}
.content-text-section.description-section .text .content-lockers-banner .cards-wrapper .cards-container .cl-card .card-item {
  text-align: left;
  background-color: #fff;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  max-width: 300px;
  height: 100%;
  padding: 10px;
}
@media (min-width: 576px) {
  .content-text-section.description-section .text .content-lockers-banner .cards-wrapper .cards-container .cl-card .card-item {
    max-width: 340px;
  }
}
.content-text-section.description-section .text .content-lockers-banner .cards-wrapper .cards-container .cl-card .card-item .card-image {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  height: 240px;
}
.content-text-section.description-section .text .content-lockers-banner .cards-wrapper .cards-container .cl-card .card-item .card-image .image {
  background-color: #f6fff4;
  position: relative;
  margin-bottom: -55px;
  width: 100% !important;
  height: auto;
}
.content-text-section.description-section .text .content-lockers-banner .cards-wrapper .cards-container .cl-card .card-item .card-image .image.step-1 {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 600px 240px !important;
  display: block;
  height: 240px;
  width: 600px;
  background-image: url("/images/svg/team.svg") !important;
  background-size: 84% !important;
}
.content-text-section.description-section .text .content-lockers-banner .cards-wrapper .cards-container .cl-card .card-item .card-image .image.step-2 {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 600px 240px !important;
  display: block;
  height: 240px;
  width: 600px;
  background-image: url("/images/svg/stopwatch.svg") !important;
  background-size: 84% !important;
}
.content-text-section.description-section .text .content-lockers-banner .cards-wrapper .cards-container .cl-card .card-item .card-text {
  padding: 20px 20px 40px 20px;
}
.content-text-section.description-section .text .content-lockers-banner .cards-wrapper .cards-container .cl-card .card-item .card-text h4, .content-text-section.description-section .text .content-lockers-banner .cards-wrapper .cards-container .cl-card .card-item .card-text .h4 {
  color: #45BF52;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 11px;
  line-height: 28px;
  margin: 15px 0 15px 0;
  text-transform: uppercase;
}
.content-text-section.description-section .text .content-lockers-banner .cards-wrapper .cards-container .cl-card .card-item .card-text p {
  color: #87919C;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}
@media (min-width: 576px) {
  .content-text-section.description-section .text .content-lockers-banner .cards-wrapper .cards-container .cl-card .card-item .card-text p {
    font-size: 16px;
    font-weight: 500;
  }
}
.content-text-section.description-section .text .content-lockers-banner .cards-wrapper .cards-container .arrow-container {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 576px) {
  .content-text-section.description-section .text .content-lockers-banner .cards-wrapper .cards-container .arrow-container {
    height: auto;
    width: 40px;
  }
}
.content-text-section.description-section .text .content-lockers-banner .cards-wrapper .cards-container .arrow-container .arrow-icon:after {
  font-family: "Icomoon";
  content: "";
  font-size: 20px;
  font-weight: 400;
  color: #87919C;
}
@media (min-width: 576px) {
  .content-text-section.description-section .text .content-lockers-banner .cards-wrapper .cards-container .arrow-container .arrow-icon:after {
    font-family: "Icomoon";
    content: "";
    font-size: 20px;
    font-weight: 400;
    color: #87919C;
  }
}
.content-text-section.description-section .text .content-lockers-banner .cards-wrapper h3, .content-text-section.description-section .text .content-lockers-banner .cards-wrapper .h3 {
  color: #283B41;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .content-text-section.description-section .text .content-lockers-banner .cards-wrapper h3, .content-text-section.description-section .text .content-lockers-banner .cards-wrapper .h3 {
    font-size: 20px;
    line-height: 36px;
  }
}
.content-text-section.description-section .text .content-lockers-banner .cl-description {
  position: relative;
  height: auto;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 36px 0 0 0;
  max-width: 750px;
}
@media (min-width: 576px) {
  .content-text-section.description-section .text .content-lockers-banner .cl-description {
    padding: 80px 15px 0 15px;
  }
}
@media (min-width: 1200px) {
  .content-text-section.description-section .text .content-lockers-banner .cl-description {
    padding: 80px 92px 0 70px;
    text-align: left;
    align-items: flex-start;
  }
}
.content-text-section.description-section .text .content-lockers-banner .cl-description h3, .content-text-section.description-section .text .content-lockers-banner .cl-description .h3 {
  color: #283B41;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .content-text-section.description-section .text .content-lockers-banner .cl-description h3, .content-text-section.description-section .text .content-lockers-banner .cl-description .h3 {
    font-size: 26px;
    line-height: 40px;
    margin-bottom: 42px;
  }
}
.content-text-section.description-section .text .content-lockers-banner .cl-description p {
  color: #87919C;
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  margin: 0 0 30px 0;
}
@media (min-width: 576px) {
  .content-text-section.description-section .text .content-lockers-banner .cl-description p {
    font-size: 18px;
    line-height: 27px;
    margin: 0 0 40px 0;
  }
}
.content-text-section.description-section .text .content-lockers-banner .cl-description a {
  width: 100%;
}
@media (min-width: 440px) {
  .content-text-section.description-section .text .content-lockers-banner .cl-description a {
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (min-width: 1200px) {
  .content-text-section.mirror-reflection.content-text-section-background {
    transform: scale(-1, 1);
  }
}
@media (min-width: 1200px) {
  .content-text-section.mirror-reflection.content-text-section .image-section {
    transform: scale(-1, 1) !important;
  }
}
@media (min-width: 1600px) {
  .content-text-section.mirror-reflection.content-text-section .image-section .image-left {
    left: 200px;
  }
}
@media (min-width: 1200px) {
  .content-text-section.mirror-reflection.content-text-section .image-section .image-left {
    height: 100% !important;
    position: absolute;
    left: 35%;
    top: 5%;
  }
}
@media (min-width: 1200px) {
  .content-text-section.mirror-reflection.content-text-section .text {
    transform: scale(-1, 1);
  }
}
@media (min-width: 1200px) {
  .content-text-section.content-text-section-background {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 645px 673px;
    display: block;
    background-image: url("/images/svg/wave-1.svg") !important;
    text-align: center;
  }
}
@media (min-width: 1200px) {
  .content-text-section.content-text-section-background .text {
    margin-bottom: 0;
    padding-left: 60px;
    padding-right: 20px;
  }
}
@media (max-width: 576px) {
  .content-text-section.content-text-section-background.content-text-section-spacing {
    padding: 54px 0;
  }
}
@media (min-width: 1200px) {
  .content-text-section.content-text-section-background.content-text-section-spacing {
    margin: 0 20px 0 0;
  }
}
@media (min-width: 1600px) and (max-width: 1921px) {
  .content-text-section.content-text-section-background.content-text-section-spacing {
    background-position: 35vw;
  }
}
@media (max-width: 576px) {
  .content-text-section.content-text-section-background.content-text-section-spacing .image-section {
    margin-top: 120px;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .content-text-section.content-text-section-background.content-text-section-spacing .image-section {
    margin-top: 230px;
  }
}
@media (max-width: 576px) {
  .content-text-section.content-text-section-background.content-text-section-spacing.content-lockers-mobile-margin {
    padding: 54px 0 23px 0;
  }
}
@media (max-width: 576px) {
  .content-text-section.content-text-section-background.content-text-section-spacing .order-xl-last:after {
    bottom: -120px !important;
    height: 165px !important;
  }
}
@media (max-width: 576px) {
  .content-text-section.content-text-section-background.content-text-section-spacing .order-xl-first.tablet-center .image-section .image-left {
    max-width: 250px !important;
    padding: 75px !important;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .content-text-section.content-text-section-background.content-text-section-spacing .order-xl-first.tablet-center .image-section .image-left {
    margin: 0 auto !important;
    margin-right: auto !important;
  }
}
@media (max-width: 576px) {
  .content-text-section.content-text-section-background.content-text-section-spacing .title-section-mylead h5, .content-text-section.content-text-section-background.content-text-section-spacing .title-section-mylead .h5 {
    font-weight: 500;
  }
}
@media (min-width: 1200px) {
  .content-text-section.content-text-section-background.content-text-section-spacing .text {
    padding-left: 120px;
  }
}
@media (max-width: 576px) {
  .content-text-section.content-text-section-background.content-text-section-spacing .text h2, .content-text-section.content-text-section-background.content-text-section-spacing .text .h2 {
    font-weight: 500;
    margin-bottom: 28px;
  }
}
@media (max-width: 576px) {
  .content-text-section.content-text-section-background.content-text-section-spacing .text h4, .content-text-section.content-text-section-background.content-text-section-spacing .text .h4 {
    margin-top: 0;
    margin-bottom: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .content-text-section.content-text-section-background {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 645px 673px;
    display: block;
    background-image: url("/images/svg/wave-mobile.svg") !important;
    background-position: center 45% !important;
    background-size: 100%;
  }
  .content-text-section.content-text-section-background .image-section {
    margin-top: 150px;
  }
  .content-text-section.content-text-section-background .image-section .image-left {
    margin-right: 45px;
  }
  .content-text-section.content-text-section-background .text {
    margin-bottom: 140px;
  }
}
@media (max-width: 991px) {
  .content-text-section.content-text-section-background .image-section {
    margin-top: 210px;
  }
  .content-text-section.content-text-section-background .text {
    margin-bottom: 10px;
  }
  .content-text-section.content-text-section-background .order-xl-last {
    position: relative;
    background-color: #F4F6F9;
  }
  .content-text-section.content-text-section-background .order-xl-last:after {
    content: "";
    display: block;
    background-position: center !important;
    background-repeat: no-repeat;
    background-size: 645px 673px !important;
    display: block;
    height: 673px;
    width: 645px;
    background-image: url("/images/svg/wave-mobile.svg") !important;
    width: 100% !important;
    height: 270px;
    position: absolute;
    bottom: -200px;
    background-size: 100% !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .content-text-section.content-text-section-background {
    background-position: center 60% !important;
  }
  .content-text-section.content-text-section-background .image-section .image-left {
    margin-right: 45px;
  }
}
@media (min-width: 1600px) {
  .content-text-section.content-text-section-background {
    background-size: auto 100%;
    text-align: left;
  }
}
@media (min-width: 1600px) and (min-width: 1920px) {
  .content-text-section.content-text-section-background {
    background-position: 35vw;
  }
}
@media (min-width: 1921px) {
  .content-text-section.content-text-section-background {
    background-position: 700px;
  }
}
@media (min-width: 1200px) and (max-width: 1599px) {
  .content-text-section.content-text-section-background {
    background-size: auto 100%;
    background-position: 27vw;
    text-align: left;
  }
}
@media (max-width: 991px) {
  .content-text-section.content-text-section-background:after {
    content: "";
    background-color: #F4F6F9;
    display: block;
    height: 200px;
    position: absolute;
    width: 100%;
    top: 0;
  }
}
@media (min-width: 1200px) {
  .content-text-section.content-text-section-background:after {
    content: "";
    background-color: #F4F6F9;
    display: block;
    height: 100%;
    position: absolute;
    right: 0;
    width: 40%;
    top: 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .content-text-section.content-text-section-background:after {
    content: "";
    background-color: #F4F6F9;
    display: block;
    height: 40%;
    position: absolute;
    width: 100%;
    top: 0;
  }
}
@media (min-width: 992px) {
  .content-text-section.company-about-us-content-text-section-background {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 645px 673px;
    display: block;
    background-image: url("/images/svg/wave-1.svg") !important;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .content-text-section.company-about-us-content-text-section-background .text {
    margin-bottom: 0;
    padding-left: 60px;
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  .content-text-section.company-about-us-content-text-section-background .text .title-section-mylead .large {
    margin-bottom: 20px;
  }
}
.content-text-section.company-about-us-content-text-section-background .text h4, .content-text-section.company-about-us-content-text-section-background .text .h4 {
  font-size: 18px !important;
}
@media (min-width: 576px) {
  .content-text-section.company-about-us-content-text-section-background .text h4, .content-text-section.company-about-us-content-text-section-background .text .h4 {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .content-text-section.company-about-us-content-text-section-background .text a {
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .content-text-section.company-about-us-content-text-section-background {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 645px 673px;
    display: block;
    background-image: url("/images/svg/wave-mobile.svg") !important;
    background-position: center 45% !important;
    background-size: 100%;
  }
  .content-text-section.company-about-us-content-text-section-background .image-section {
    margin-top: 150px;
  }
  .content-text-section.company-about-us-content-text-section-background .image-section .image-left {
    margin: 0 auto !important;
  }
  .content-text-section.company-about-us-content-text-section-background .text {
    margin-bottom: 140px;
  }
}
@media (max-width: 767px) {
  .content-text-section.company-about-us-content-text-section-background .image-section {
    margin-top: 170px;
  }
}
@media (max-width: 767px) and (min-width: 576px) {
  .content-text-section.company-about-us-content-text-section-background .image-section {
    margin-top: 210px;
  }
}
@media (max-width: 767px) {
  .content-text-section.company-about-us-content-text-section-background .text {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .content-text-section.company-about-us-content-text-section-background .order-lg-last {
    position: relative;
    background-color: #F4F6F9;
  }
  .content-text-section.company-about-us-content-text-section-background .order-lg-last:after {
    content: "";
    display: block;
    background-position: center !important;
    background-repeat: no-repeat;
    background-size: 645px 673px !important;
    display: block;
    height: 673px;
    width: 645px;
    background-image: url("/images/svg/wave-mobile.svg") !important;
    width: 100% !important;
    height: 270px;
    position: absolute;
    bottom: -190px;
    background-size: 100% !important;
  }
}
@media (max-width: 767px) and (min-width: 576px) {
  .content-text-section.company-about-us-content-text-section-background .order-lg-last:after {
    bottom: -200px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .content-text-section.company-about-us-content-text-section-background {
    background-position: center 60% !important;
  }
  .content-text-section.company-about-us-content-text-section-background .image-section .image-left {
    margin-right: 45px;
  }
}
@media (min-width: 1600px) {
  .content-text-section.company-about-us-content-text-section-background {
    background-size: auto 100%;
    text-align: left;
  }
}
@media (min-width: 1600px) and (min-width: 1920px) {
  .content-text-section.company-about-us-content-text-section-background {
    background-position: 35vw;
  }
}
@media (min-width: 1921px) {
  .content-text-section.company-about-us-content-text-section-background {
    background-position: 700px;
  }
}
@media (min-width: 992px) and (max-width: 1599px) {
  .content-text-section.company-about-us-content-text-section-background {
    background-size: auto 100%;
    background-position: 27vw;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .content-text-section.company-about-us-content-text-section-background:after {
    content: "";
    background-color: #F4F6F9;
    display: block;
    height: 200px;
    position: absolute;
    width: 100%;
    top: 0;
  }
}
@media (min-width: 992px) {
  .content-text-section.company-about-us-content-text-section-background:after {
    content: "";
    background-color: #F4F6F9;
    display: block;
    height: 100%;
    position: absolute;
    right: 0;
    width: 40%;
    top: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .content-text-section.company-about-us-content-text-section-background:after {
    content: "";
    background-color: #F4F6F9;
    display: block;
    height: 40%;
    position: absolute;
    width: 100%;
    top: 0;
  }
}
.content-text-section .text {
  position: relative;
  margin-bottom: 50px;
  text-align: left;
  z-index: 1;
}
.content-text-section .text.max-width {
  max-width: 600px;
}
.content-text-section .text.content-lockers-text {
  margin-bottom: 0;
}
@media (min-width: 576px) {
  .content-text-section .text.content-lockers-text {
    margin-bottom: 50px;
  }
}
.content-text-section .text.become-publisher-text {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .content-text-section .text.become-publisher-text {
    margin-bottom: 50px;
  }
}
@media (max-width: 1199px) {
  .content-text-section .text {
    padding: 0 20px;
  }
}
.content-text-section .text h2, .content-text-section .text .h2 {
  font-size: 24px;
  font-weight: 700;
  color: #283B41;
  margin-bottom: 40px;
}
@media (min-width: 576px) {
  .content-text-section .text h2, .content-text-section .text .h2 {
    font-size: 32px;
  }
}
@media (min-width: 1200px) {
  .content-text-section .text h2, .content-text-section .text .h2 {
    font-size: 36px;
  }
}
.content-text-section .text h2 .underline, .content-text-section .text .h2 .underline {
  border-bottom: 4px solid #45BF52;
  font-weight: 900;
}
.content-text-section .text h2.large, .content-text-section .text .large.h2 {
  font-size: 24px !important;
  font-weight: 900;
  line-height: 1.5;
}
@media (min-width: 576px) {
  .content-text-section .text h2.large, .content-text-section .text .large.h2 {
    font-size: 40px !important;
  }
}
.content-text-section .text h4, .content-text-section .text .h4 {
  color: #283B41;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin: 50px 0 30px 0;
}
@media (min-width: 576px) {
  .content-text-section .text h4, .content-text-section .text .h4 {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .content-text-section .text h4, .content-text-section .text .h4 {
    font-size: 24px;
  }
}
.content-text-section .text p {
  margin-bottom: 20px;
  color: #87919C;
  font-size: 15px;
  font-weight: 400;
  line-height: 27px;
}
@media (min-width: 576px) {
  .content-text-section .text p {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .content-text-section .text p {
    font-size: 18px;
  }
}
.content-text-section .text p:last-child {
  margin-bottom: 0;
}
.content-text-section .text p.button-bottom {
  margin-bottom: 36px;
}
.content-text-section .text .btn-mylead-2.hide-button-after-expanding[aria-expanded=true] {
  transition: 0.3s;
  display: none;
}
.content-text-section .text .sign-up-global.green-color.about-us-btn {
  box-shadow: none;
  font-weight: 700;
}
.content-text-section .text .sign-up-global.green-color.about-us-btn.disabled {
  opacity: 0.4;
  pointer-events: none;
  text-transform: uppercase;
  font-weight: 500;
}
.content-text-section .text .window-text {
  text-align: left;
  border-radius: 30px;
  box-shadow: 0 40px 40px rgba(40, 59, 65, 0.1);
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  width: 100%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .content-text-section .text .window-text {
    bottom: -650px;
    left: 20px;
    right: 0;
    margin: auto 0;
    position: absolute;
    width: 300px;
    height: 300px;
    padding: 0 40px;
    border-radius: 50px;
  }
}
@media (min-width: 1200px) {
  .content-text-section .text .window-text {
    top: 80px;
    bottom: 0;
    left: -300px;
    margin: auto 0;
    position: absolute;
    width: 300px;
    height: 300px;
    padding: 0 40px;
    border-radius: 50px;
  }
}
.content-text-section .text .window-text .subtitle {
  color: #A8B4C1;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 26px;
  font-size: 14px;
}
.content-text-section .text .window-text h5, .content-text-section .text .window-text .h5 {
  color: #283B41;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 6px;
}
@media (min-width: 768px) {
  .content-text-section .text .window-text h5, .content-text-section .text .window-text .h5 {
    font-size: 22px;
    margin-bottom: 30px;
    font-weight: 700;
  }
}
@media (min-width: 1200px) {
  .content-text-section .text .window-text h5, .content-text-section .text .window-text .h5 {
    font-size: 26px;
  }
}
.content-text-section .text .window-text h5 .mobile, .content-text-section .text .window-text .h5 .mobile {
  display: none;
}
@media (min-width: 992px) {
  .content-text-section .text .window-text h5 .mobile, .content-text-section .text .window-text .h5 .mobile {
    display: block;
  }
}
.content-text-section .text .window-text h5 .underline, .content-text-section .text .window-text .h5 .underline {
  font-weight: 900;
  border-bottom: 4px solid #45BF52;
}
.content-text-section .text .window-text p {
  color: #87919C;
  line-height: 26px;
  font-size: 14px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .content-text-section .text .window-text p {
    margin-bottom: 20px;
  }
}
.content-text-section .text.cl-text h2, .content-text-section .text.cl-text .h2 {
  line-height: 36px;
  font-size: 24px;
  font-weight: 700;
}
@media (min-width: 576px) {
  .content-text-section .text.cl-text h2, .content-text-section .text.cl-text .h2 {
    line-height: 54px;
    font-size: 40px;
    font-weight: 900;
  }
}
.content-text-section .text.cl-text h4, .content-text-section .text.cl-text .h4 {
  font-size: 18px;
  line-height: 28px;
}
@media (min-width: 576px) {
  .content-text-section .text.cl-text h4, .content-text-section .text.cl-text .h4 {
    font-size: 24px;
    line-height: 36px;
  }
}
.content-text-section .text.cl-text p {
  font-size: 15px;
}
@media (min-width: 576px) {
  .content-text-section .text.cl-text p {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .content-text-section .text.cl-text.cl-spacing h2, .content-text-section .text.cl-text.cl-spacing .h2 {
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .content-text-section .text.cl-text.cl-spacing h4, .content-text-section .text.cl-text.cl-spacing .h4 {
    margin: 0 0 20px 0;
  }
}
.content-text-section .text.company-about-us-text h2, .content-text-section .text.company-about-us-text .h2 {
  line-height: 36px;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .content-text-section .text.company-about-us-text h2, .content-text-section .text.company-about-us-text .h2 {
    line-height: 54px;
    font-size: 40px;
    font-weight: 900;
  }
}
@media (min-width: 992px) {
  .content-text-section .text.company-about-us-text h2, .content-text-section .text.company-about-us-text .h2 {
    margin-top: 91px;
  }
}
.content-text-section .text.company-about-us-text h4, .content-text-section .text.company-about-us-text .h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  margin: 16px 0 40px 0;
}
@media (min-width: 768px) {
  .content-text-section .text.company-about-us-text h4, .content-text-section .text.company-about-us-text .h4 {
    margin: 39px 0 40px 0;
    font-size: 24px;
    line-height: 36px;
  }
}
.content-text-section .text.mobile-margins h2, .content-text-section .text.mobile-margins .h2 {
  margin-bottom: 25px;
}
@media (min-width: 576px) {
  .content-text-section .text.mobile-margins h2, .content-text-section .text.mobile-margins .h2 {
    margin-bottom: 40px;
  }
}
.content-text-section .text.mobile-margins h4, .content-text-section .text.mobile-margins .h4 {
  margin: 0 0 20px 0;
}
@media (min-width: 576px) {
  .content-text-section .text.mobile-margins h4, .content-text-section .text.mobile-margins .h4 {
    margin: 50px 0 30px 0;
  }
}
.content-text-section .text.mobile-margins p {
  font-size: 15px;
}
@media (min-width: 576px) {
  .content-text-section .text.mobile-margins p {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .content-text-section .text.mobile-margins .wide-btn {
    max-width: 100% !important;
    width: 100% !important;
  }
}
.content-text-section .image-section {
  position: relative;
}
@media (min-width: 992px) {
  .content-text-section .image-section.image-section-cpa {
    top: -27px;
    left: -29px;
  }
}
.content-text-section .image-section .image-about-us {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 183px 124px !important;
  display: block;
  height: 124px;
  width: 183px;
  background-image: url("/images/svg/computer.svg") !important;
  background-size: contain !important;
  height: 270px;
  width: auto;
  background-size: 55% !important;
}
@media (min-width: 576px) {
  .content-text-section .image-section .image-about-us {
    height: 300px;
    margin-bottom: 55px;
  }
}
@media (min-width: 768px) {
  .content-text-section .image-section .image-about-us {
    height: 350px;
    background-size: 50% !important;
  }
}
@media (min-width: 992px) {
  .content-text-section .image-section .image-about-us {
    position: absolute;
    right: -220px;
    top: 50px;
    background-position: center !important;
    background-repeat: no-repeat;
    background-size: 700px 500px !important;
    display: block;
    height: 500px;
    width: 700px;
    background-image: url("/images/svg/computer-3.svg") !important;
    height: 500px !important;
  }
}
@media (min-width: 1200px) {
  .content-text-section .image-section .image-about-us {
    position: absolute;
    right: -119px;
    top: -43px;
    background-position: center !important;
    background-repeat: no-repeat;
    background-size: 700px 700px !important;
    display: block;
    height: 700px;
    width: 700px;
    background-image: url("/images/svg/computer-3.svg") !important;
    width: 700px !important;
    height: 570px !important;
  }
}
@media (min-width: 1200px) {
  .content-text-section .image-section {
    height: 100%;
    display: flex;
  }
}
.content-text-section .image-section .image {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 779px 570px !important;
  display: block;
  height: 570px;
  width: 779px;
  background-image: url("/images/svg/start-01-02.svg") !important;
  width: 100% !important;
  background-size: contain !important;
}
@media (max-width: 576px) {
  .content-text-section .image-section .image {
    height: 270px !important;
  }
}
@media (max-width: 1199px) {
  .content-text-section .image-section .image {
    margin: 0 auto;
  }
}
@media (min-width: 1600px) {
  .content-text-section .image-section .image {
    position: absolute;
    right: -60px;
    top: 0;
  }
}
.content-text-section .image-section .image-start-01-02 {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 779px 570px !important;
  display: block;
  height: 570px;
  width: 779px;
  background-image: url("/images/svg/start-01-02.svg") !important;
  width: 70% !important;
  height: 200px !important;
  background-size: contain !important;
}
@media (min-width: 576px) {
  .content-text-section .image-section .image-start-01-02 {
    width: 100% !important;
    height: 370px !important;
  }
}
@media (min-width: 1200px) {
  .content-text-section .image-section .image-start-01-02 {
    height: 570px !important;
    margin-top: -40px;
  }
}
@media (max-width: 1199px) {
  .content-text-section .image-section .image-start-01-02 {
    margin: 0 auto;
  }
}
@media (min-width: 1600px) {
  .content-text-section .image-section .image-start-01-02 {
    position: absolute;
    right: -60px;
    top: -70px;
  }
}
.content-text-section .image-section .image-cpa {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 779px 270px !important;
  display: block;
  height: 270px;
  width: 779px;
  background-image: url("/images/svg/shooting-target.svg") !important;
  width: 90% !important;
  background-size: contain !important;
}
@media (min-width: 576px) {
  .content-text-section .image-section .image-cpa {
    background-position: center !important;
    background-repeat: no-repeat;
    background-size: 779px 380px !important;
    display: block;
    height: 380px;
    width: 779px;
    background-image: url("/images/svg/shooting-target.svg") !important;
    width: 100% !important;
  }
}
@media (min-width: 992px) {
  .content-text-section .image-section .image-cpa {
    width: 170% !important;
  }
}
@media (min-width: 1200px) {
  .content-text-section .image-section .image-cpa {
    width: 100% !important;
  }
}
@media (max-width: 1199px) {
  .content-text-section .image-section .image-cpa {
    margin: 0 auto;
  }
}
.content-text-section .image-section .image-left {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 779px 570px !important;
  display: block;
  height: 570px;
  width: 779px;
  background-image: url("/images/svg/cooperation.svg") !important;
  width: 100% !important;
  background-size: contain !important;
  height: auto !important;
  max-width: 670px;
}
@media (max-width: 1199px) {
  .content-text-section .image-section .image-left {
    margin: 0 auto;
  }
}
@media (min-width: 1600px) {
  .content-text-section .image-section .image-left {
    position: absolute;
    left: -275px;
    top: 20px;
  }
}
.content-text-section .image-section .image-left:after {
  content: "";
  display: block;
  padding-top: 63%;
}
.content-text-section .image-section .image-left-home-page-ct {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 779px 570px !important;
  display: block;
  height: 570px;
  width: 779px;
  background-image: url("/images/svg/cooperation.svg") !important;
  width: 125% !important;
  background-size: contain !important;
  height: auto !important;
  max-width: 1000px;
}
@media (max-width: 1199px) {
  .content-text-section .image-section .image-left-home-page-ct {
    margin: 0 auto;
  }
}
@media (min-width: 1600px) {
  .content-text-section .image-section .image-left-home-page-ct {
    position: absolute;
    left: -440px;
    top: 20px;
  }
}
.content-text-section .image-section .image-left-home-page-ct:after {
  content: "";
  display: block;
  padding-top: 63%;
}
.content-text-section .image-section .image-left-home-page-ct-2 {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 779px 570px !important;
  display: block;
  height: 570px;
  width: 779px;
  background-image: url("/images/svg/cooperation.svg") !important;
  width: 90% !important;
  background-size: contain !important;
  height: auto !important;
  max-width: 1000px;
}
@media (min-width: 992px) {
  .content-text-section .image-section .image-left-home-page-ct-2 {
    width: 125% !important;
  }
}
@media (max-width: 1199px) {
  .content-text-section .image-section .image-left-home-page-ct-2 {
    margin: 0 auto;
  }
}
@media (min-width: 1600px) {
  .content-text-section .image-section .image-left-home-page-ct-2 {
    position: absolute;
    left: -440px;
    top: 20px;
  }
}
.content-text-section .image-section .image-left-home-page-ct-2:after {
  content: "";
  display: block;
  padding-top: 63%;
}

.color-blocks-section {
  margin: 20px;
  padding: 0;
  overflow: hidden;
}
.color-blocks-section .color-blocks {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .color-blocks-section .color-blocks {
    flex-direction: row;
  }
}
.color-blocks-section .color-blocks .color-block {
  padding: 60px 20px;
}
@media (min-width: 1200px) {
  .color-blocks-section .color-blocks .color-block {
    padding: 80px 60px;
    width: 33.3333%;
  }
}
.color-blocks-section .color-blocks .color-block h2, .color-blocks-section .color-blocks .color-block .h2 {
  color: #283B41;
  font-size: 20px;
  line-height: 38px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.5;
  font-size: 24px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .color-blocks-section .color-blocks .color-block h2, .color-blocks-section .color-blocks .color-block .h2 {
    font-size: 34px;
  }
}
@media (min-width: 1200px) {
  .color-blocks-section .color-blocks .color-block h2, .color-blocks-section .color-blocks .color-block .h2 {
    font-size: 30px;
  }
}
.color-blocks-section .color-blocks .color-block h2 .underline, .color-blocks-section .color-blocks .color-block .h2 .underline {
  font-weight: 900;
  border-bottom: 4px solid #45BF52;
}
.color-blocks-section .color-blocks .color-block h3, .color-blocks-section .color-blocks .color-block .h3 {
  color: #283B41;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .color-blocks-section .color-blocks .color-block h3, .color-blocks-section .color-blocks .color-block .h3 {
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  .color-blocks-section .color-blocks .color-block h3, .color-blocks-section .color-blocks .color-block .h3 {
    font-size: 24px;
  }
}
.color-blocks-section .color-blocks .color-block h3 .underline, .color-blocks-section .color-blocks .color-block .h3 .underline {
  font-weight: 900;
  border-bottom: 4px solid #45BF52;
}
.color-blocks-section .color-blocks .color-block h5, .color-blocks-section .color-blocks .color-block .h5 {
  opacity: 1;
  color: #283B41;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .color-blocks-section .color-blocks .color-block h5, .color-blocks-section .color-blocks .color-block .h5 {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .color-blocks-section .color-blocks .color-block h5, .color-blocks-section .color-blocks .color-block .h5 {
    font-size: 22px;
    margin-bottom: 30px;
  }
}
.color-blocks-section .color-blocks .color-block p {
  color: #87919C;
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .color-blocks-section .color-blocks .color-block p {
    font-size: 18px;
    line-height: 1.5;
  }
}
.color-blocks-section .color-blocks .color-block p:last-child {
  margin-bottom: 0;
}
.color-blocks-section .color-blocks .color-block.grey {
  background-color: #F4F6F9;
}
.color-blocks-section .color-blocks .color-block.green {
  background-color: #45BF52;
}
.color-blocks-section .color-blocks .color-block.green h3, .color-blocks-section .color-blocks .color-block.green .h3 {
  color: #fff;
}
.color-blocks-section .color-blocks .color-block.green h3 .underline, .color-blocks-section .color-blocks .color-block.green .h3 .underline {
  border-color: #fff;
}
.color-blocks-section .color-blocks .color-block.green h5, .color-blocks-section .color-blocks .color-block.green .h5, .color-blocks-section .color-blocks .color-block.green p {
  color: #fff;
}
.color-blocks-section .color-blocks .color-block.black {
  background-color: #283B41;
}
.color-blocks-section .color-blocks .color-block.black h5, .color-blocks-section .color-blocks .color-block.black .h5, .color-blocks-section .color-blocks .color-block.black p {
  color: #fff;
}
.color-blocks-section .color-blocks .color-block.black h3, .color-blocks-section .color-blocks .color-block.black .h3 {
  color: #fff;
}

.start-section {
  background-color: #F4F6F9;
}
.start-section.start-section-padding {
  padding: 50px 17px 20px 17px;
}
@media (min-width: 576px) {
  .start-section.start-section-padding {
    padding-top: 150px;
  }
}
.start-section.earning-models-padding {
  padding: 50px 17px 20px 17px;
}
@media (max-width: 1200px) {
  .start-section.earning-models-padding {
    margin-top: 0 !important;
  }
}
@media (min-width: 992px) {
  .start-section.earning-models-padding {
    padding-top: 68px;
  }
}
@media (min-width: 1200px) {
  .start-section.earning-models-padding {
    padding-top: 92px;
  }
}
.start-section.white-background {
  background-image: none !important;
  background-color: #fff;
}
.start-section.first-section {
  margin-top: 85px;
}
@media (min-width: 576px) {
  .start-section.first-section {
    margin-top: 20px;
  }
}
.start-section.first {
  margin-top: 85px;
}
@media (min-width: 576px) {
  .start-section.first {
    margin-top: 20px;
  }
}
.start-section.content-locker-view {
  padding: 20px 10px 40px 10px;
}
@media (min-width: 576px) {
  .start-section.content-locker-view {
    padding: 20px;
  }
}
.start-section.content-locker-view.first-section {
  padding-top: 50px;
}
@media (min-width: 576px) {
  .start-section.content-locker-view.first-section {
    padding-top: 150px;
  }
}
.start-section.content-locker-view h1, .start-section.content-locker-view .h1 {
  margin-bottom: 49px;
}
.start-section.content-locker-view h4, .start-section.content-locker-view .h4 {
  margin: 0 auto 50px auto;
  max-width: 1000px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .start-section.content-locker-view h4, .start-section.content-locker-view .h4 {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .start-section.content-locker-view h4, .start-section.content-locker-view .h4 {
    font-size: 24px;
  }
}
.start-section.content-locker-view h5, .start-section.content-locker-view .h5 {
  color: #45BF52;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-decoration: none;
}
.start-section.content-locker-view h5 a, .start-section.content-locker-view .h5 a {
  color: #45BF52;
  text-decoration: none;
}
.start-section.content-locker-view a.btn-show-more-global {
  background-color: #fff;
  margin: 0 auto;
  padding: 0 15px;
}
.start-section.content-locker-view a.btn-show-more-global:hover {
  background-color: #87919C;
}
@media (max-width: 576px) {
  .start-section.content-locker-view a.btn-show-more-global {
    margin: 0 5px;
  }
}
@media (min-width: 576px) {
  .start-section.content-locker-view a.btn-show-more-global {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
.start-section.content-locker-view p {
  margin-bottom: 20px;
  max-width: 1000px;
}
.start-section.content-locker-view .block-items .block-item {
  height: 410px;
  padding: 33px 20px 30px 20px;
}
@media (max-width: 576px) {
  .start-section.content-locker-view .block-items .block-item {
    margin-bottom: 10px;
  }
}
.start-section.content-locker-view .block-items .block-item .cl-image {
  border-radius: 30px;
  width: 100%;
  background-size: 100% !important;
  margin: 0 auto;
}
.start-section.content-locker-view .block-items .block-item .cl-image.cpa-locker {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 210px 200px !important;
  display: block;
  height: 200px;
  width: 210px;
  background-image: url("/images/svg/computer-2.svg") !important;
}
@media (min-width: 576px) and (max-width: 700px) {
  .start-section.content-locker-view .block-items .block-item .cl-image.cpa-locker {
    background-size: 90% !important;
    width: auto !important;
  }
}
@media (min-width: 1200px) {
  .start-section.content-locker-view .block-items .block-item .cl-image.cpa-locker {
    width: 210px !important;
  }
}
.start-section.content-locker-view .block-items .block-item .cl-image.captcha-locker {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 230px 200px !important;
  display: block;
  height: 200px;
  width: 230px;
  background-image: url("/images/svg/safe.svg") !important;
}
@media (min-width: 576px) and (max-width: 700px) {
  .start-section.content-locker-view .block-items .block-item .cl-image.captcha-locker {
    background-size: 90% !important;
    width: auto !important;
  }
}
@media (min-width: 1200px) {
  .start-section.content-locker-view .block-items .block-item .cl-image.captcha-locker {
    width: 230px !important;
  }
}
.start-section.content-locker-view .block-items .block-item .cl-image.file-locker {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 230px 200px !important;
  display: block;
  height: 200px;
  width: 230px;
  background-image: url("/images/svg/airport.svg") !important;
}
@media (min-width: 576px) and (max-width: 700px) {
  .start-section.content-locker-view .block-items .block-item .cl-image.file-locker {
    background-size: 90% !important;
    width: auto !important;
  }
}
@media (min-width: 1200px) {
  .start-section.content-locker-view .block-items .block-item .cl-image.file-locker {
    width: 240px !important;
  }
}
.start-section.content-locker-view .block-items .block-item .cl-image.mobile-rewards {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 215px 200px !important;
  display: block;
  height: 200px;
  width: 215px;
  background-image: url("/images/svg/question-mark.svg") !important;
}
@media (min-width: 576px) and (max-width: 700px) {
  .start-section.content-locker-view .block-items .block-item .cl-image.mobile-rewards {
    background-size: 90% !important;
    width: auto !important;
  }
}
@media (min-width: 1200px) {
  .start-section.content-locker-view .block-items .block-item .cl-image.mobile-rewards {
    width: 220px !important;
  }
}
.start-section.content-locker-view .block-items .block-item .cl-image:after {
  content: "";
  padding-bottom: 65%;
  display: block;
}
.start-section.content-locker-view .block-items .block-item h5, .start-section.content-locker-view .block-items .block-item .h5 {
  padding: 30px 0 0 0;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: normal;
  text-transform: none;
}
.start-section.content-locker-view .block-items .block-item p {
  color: #87919C;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.start-section.home-banner-1-view {
  padding: 50px 10px 40px 10px;
}
@media (min-width: 576px) {
  .start-section.home-banner-1-view {
    padding: 150px;
  }
}
.start-section.home-banner-1-view .content {
  display: flex;
  flex-direction: column;
}
.start-section.home-banner-1-view .content h1, .start-section.home-banner-1-view .content .h1 {
  margin-bottom: 49px;
}
.start-section.home-banner-1-view .content h5, .start-section.home-banner-1-view .content .h5 {
  color: #45BF52;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-decoration: none;
}
.start-section.home-banner-1-view .content h5 a, .start-section.home-banner-1-view .content .h5 a {
  color: #45BF52;
  text-decoration: none;
}
.start-section.home-banner-1-view .content a.sign-up-global {
  margin: 0 auto;
}
.start-section .text-container {
  display: flex;
  justify-content: center;
}
.start-section .text-container .text-wrapper {
  max-width: 743px;
}
.start-section .text-container .text-wrapper h1, .start-section .text-container .text-wrapper .h1 {
  margin-bottom: 38px;
}
.start-section h1, .start-section .h1 {
  color: #283B41;
  font-size: 33px;
  font-weight: 900;
  text-align: center;
  line-height: 40px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .start-section h1, .start-section .h1 {
    font-size: 43px;
    line-height: 60px;
  }
}
@media (min-width: 1200px) {
  .start-section h1, .start-section .h1 {
    font-size: 56px;
  }
}
.start-section h1.earning-models-title, .start-section .earning-models-title.h1 {
  font-size: 24px;
  margin-top: 8px;
}
@media (max-width: 440px) {
  .start-section h1.earning-models-title, .start-section .earning-models-title.h1 {
    margin-bottom: 18px;
    padding: 0 40px;
  }
}
@media (min-width: 992px) {
  .start-section h1.earning-models-title, .start-section .earning-models-title.h1 {
    font-size: 32px;
  }
}
@media (min-width: 1200px) {
  .start-section h1.earning-models-title, .start-section .earning-models-title.h1 {
    font-size: 40px;
    margin-bottom: 68px;
  }
}
.start-section h1.start-section-title, .start-section .start-section-title.h1 {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .start-section h1.start-section-title, .start-section .start-section-title.h1 {
    margin-bottom: 40px;
  }
}
.start-section p {
  color: #87919C;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  line-height: 27px;
  max-width: 640px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .start-section p {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .start-section p {
    font-size: 18px;
  }
}
.start-section h4, .start-section .h4 {
  color: #283B41;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  text-align: center;
}
.start-section .block-items {
  margin-top: 50px;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .start-section .block-items {
    margin-bottom: 40px;
  }
}
@media (min-width: 1200px) {
  .start-section .block-items {
    margin-bottom: 60px;
  }
}
.start-section .block-items.earning-models-block-items {
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .start-section .block-items.earning-models-block-items {
    margin-top: 0;
  }
}
.start-section .block-items.earning-models-block-items .four-tiles {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.start-section .block-items.earning-models-block-items .four-tiles .card-item:nth-child(odd) {
  justify-content: flex-end;
}
.start-section .block-items.earning-models-block-items .four-tiles .card-item:nth-child(even) {
  justify-content: flex-start;
}
.start-section .block-items.earning-models-block-items .four-tiles .card-item .block-item {
  max-width: 457px !important;
}
@media (min-width: 992px) {
  .start-section .block-items.earning-models-block-items .four-tiles .card-item .block-item .image-section .image.model-nav-image-1, .start-section .block-items.earning-models-block-items .four-tiles .card-item .block-item .image-section .image.model-nav-image-2, .start-section .block-items.earning-models-block-items .four-tiles .card-item .block-item .image-section .image.model-nav-image-3, .start-section .block-items.earning-models-block-items .four-tiles .card-item .block-item .image-section .image.model-nav-image-4, .start-section .block-items.earning-models-block-items .four-tiles .card-item .block-item .image-section .image.model-nav-image-5, .start-section .block-items.earning-models-block-items .four-tiles .card-item .block-item .image-section .image.model-nav-image-6, .start-section .block-items.earning-models-block-items .four-tiles .card-item .block-item .image-section .image.model-nav-image-7 {
    background-size: 57% !important;
  }
}
@media (min-width: 1200px) {
  .start-section .block-items.earning-models-block-items .four-tiles .card-item .block-item .image-section .image.model-nav-image-1, .start-section .block-items.earning-models-block-items .four-tiles .card-item .block-item .image-section .image.model-nav-image-2, .start-section .block-items.earning-models-block-items .four-tiles .card-item .block-item .image-section .image.model-nav-image-3, .start-section .block-items.earning-models-block-items .four-tiles .card-item .block-item .image-section .image.model-nav-image-4, .start-section .block-items.earning-models-block-items .four-tiles .card-item .block-item .image-section .image.model-nav-image-5, .start-section .block-items.earning-models-block-items .four-tiles .card-item .block-item .image-section .image.model-nav-image-6, .start-section .block-items.earning-models-block-items .four-tiles .card-item .block-item .image-section .image.model-nav-image-7 {
    background-size: 57% !important;
  }
}
.start-section .block-items.earning-models-block-items .model-nav-text.margin-top {
  margin-top: 20px;
}
.start-section .block-items.earning-models-block-items .model-nav-text h4, .start-section .block-items.earning-models-block-items .model-nav-text .h4 {
  text-align: left;
  max-width: 920px;
  font-size: 18px;
  font-weight: 700;
  margin: 0 auto 20px;
  color: #283B41;
}
@media (min-width: 768px) {
  .start-section .block-items.earning-models-block-items .model-nav-text h4, .start-section .block-items.earning-models-block-items .model-nav-text .h4 {
    font-size: 24px;
  }
}
.start-section .block-items.earning-models-block-items .model-nav-text p {
  text-align: left;
  max-width: 920px;
  margin: 0 auto 20px;
  color: #87919C;
  font-size: 15px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .start-section .block-items.earning-models-block-items .model-nav-text p {
    font-size: 18px;
  }
}
.start-section .block-items.earning-models-block-items .model-nav-text ul {
  margin: 0 auto 20px;
  text-align: left;
  max-width: 920px;
}
.start-section .block-items.earning-models-block-items .model-nav-text ul li {
  color: #87919C;
  font-size: 15px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .start-section .block-items.earning-models-block-items .model-nav-text ul li {
    font-size: 18px;
  }
}
.start-section .block-items.earning-models-block-items .btn-show-more-global {
  margin: 0 auto;
  padding: 0 16px;
  border: 3px solid #87919C;
}
.start-section .block-items.blocks-center-lg {
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .start-section .block-items.blocks-center-lg .row {
    max-width: 302px;
  }
}
@media (max-width: 992px) {
  .start-section .block-items.blocks-center-lg .row .card-item {
    padding-left: 0;
    padding-right: 0;
  }
}
.start-section .block-items .card-item {
  display: flex;
}
.start-section .block-items .card-item .block-item {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
}
.start-section .block-items .card-item .block-item:hover {
  z-index: 1;
}
.start-section .block-items .card-item .block-item h5, .start-section .block-items .card-item .block-item .h5 {
  padding: 48px 0 14px 0;
}
.start-section .block-items .card-item .block-item .image-section {
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.start-section .block-items .card-item .block-item .image-section .image {
  height: 200px !important;
}
.start-section .block-items .card-item .block-item .image-section .image:after {
  padding-bottom: 0;
}
.start-section .block-items .block-item {
  border-radius: 20px;
  padding: 20px 20px 30px 20px;
  background-color: #fff;
  display: block;
  text-decoration: none;
  transition: 0.2s all;
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .start-section .block-items .block-item {
    border-radius: 30px;
  }
}
.start-section .block-items .block-item.less-padding-bottom {
  padding: 20px;
}
.start-section .block-items .block-item:hover {
  box-shadow: 0 40px 40px rgba(40, 59, 65, 0.1);
}
.start-section .block-items .block-item.disabled {
  pointer-events: none;
  cursor: default;
}
.start-section .block-items .block-item .image-section {
  background-color: #F5FFF3;
  border-radius: 20px;
  padding: 30px 0;
}
@media (min-width: 1200px) {
  .start-section .block-items .block-item .image-section {
    border-radius: 30px;
  }
}
@media (min-width: 370px) {
  .start-section .block-items .block-item .image-section.card-image {
    min-height: 262px;
    min-width: 262px;
  }
}
.start-section .block-items .block-item .image-section .image.image-1 {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 428px 271px !important;
  display: block;
  height: 271px;
  width: 428px;
  background-image: url("/images/svg/new-start-01.svg") !important;
}
.start-section .block-items .block-item .image-section .image.image-2 {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 428px 271px !important;
  display: block;
  height: 271px;
  width: 428px;
  background-image: url("/images/svg/new-start-02.svg") !important;
}
.start-section .block-items .block-item .image-section .image.image-3 {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 428px 271px !important;
  display: block;
  height: 271px;
  width: 428px;
  background-image: url("/images/svg/new-start-03.svg") !important;
}
.start-section .block-items .block-item .image-section .image.image-4 {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 428px 271px !important;
  display: block;
  height: 271px;
  width: 428px;
  background-image: url("/images/svg/new-start-04.svg") !important;
}
.start-section .block-items .block-item .image-section .image.image-5 {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 428px 271px !important;
  display: block;
  height: 271px;
  width: 428px;
  background-image: url("/images/svg/new-start-05.svg") !important;
}
.start-section .block-items .block-item .image-section .image.image-6 {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 428px 271px !important;
  display: block;
  height: 271px;
  width: 428px;
  background-image: url("/images/svg/new-start-06.svg") !important;
}
.start-section .block-items .block-item .image-section .image.image-1-publisher {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 428px 271px !important;
  display: block;
  height: 271px;
  width: 428px;
  background-image: url("/images/svg/new-publisher-05.svg") !important;
}
.start-section .block-items .block-item .image-section .image.image-2-publisher {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 428px 271px !important;
  display: block;
  height: 271px;
  width: 428px;
  background-image: url("/images/svg/new-publisher-06.svg") !important;
}
.start-section .block-items .block-item .image-section .image.image-3-publisher {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 428px 271px !important;
  display: block;
  height: 271px;
  width: 428px;
  background-image: url("/images/svg/new-publisher-04.svg") !important;
}
.start-section .block-items .block-item .image-section .image.image-4-publisher {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 428px 271px !important;
  display: block;
  height: 271px;
  width: 428px;
  background-image: url("/images/svg/new-publisher-03.svg") !important;
}
.start-section .block-items .block-item .image-section .image.image-5-publisher {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 428px 271px !important;
  display: block;
  height: 271px;
  width: 428px;
  background-image: url("/images/svg/new-start-06.svg") !important;
}
.start-section .block-items .block-item .image-section .image.image-6-publisher {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 428px 271px !important;
  display: block;
  height: 271px;
  width: 428px;
  background-image: url("/images/svg/new-publisher-02.svg") !important;
}
.start-section .block-items .block-item .image-section .image.image-1-company {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 428px 271px !important;
  display: block;
  height: 271px;
  width: 428px;
  background-image: url("/images/svg/social-media-or-blog.svg") !important;
}
.start-section .block-items .block-item .image-section .image.image-2-company {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 428px 271px !important;
  display: block;
  height: 271px;
  width: 428px;
  background-image: url("/images/svg/question-mark.svg") !important;
}
.start-section .block-items .block-item .image-section .image.image-3-company {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 428px 271px !important;
  display: block;
  height: 271px;
  width: 428px;
  background-image: url("/images/svg/new-start-06.svg") !important;
}
.start-section .block-items .block-item .image-section .image.image-4-company {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 428px 271px !important;
  display: block;
  height: 271px;
  width: 428px;
  background-image: url("/images/svg/about_us.svg") !important;
}
.start-section .block-items .block-item .image-section .image.image-5-company {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 428px 271px !important;
  display: block;
  height: 271px;
  width: 428px;
  background-image: url("/images/svg/job_offers.svg") !important;
  width: 100%;
  height: auto;
  background-size: 67% !important;
}
@media (min-width: 420px) {
  .start-section .block-items .block-item .image-section .image.image-5-company {
    background-size: contain !important;
  }
}
@media (min-width: 992px) {
  .start-section .block-items .block-item .image-section .image.image-5-company {
    background-size: 67% !important;
  }
}
@media (min-width: 1200px) {
  .start-section .block-items .block-item .image-section .image.image-5-company {
    background-size: contain !important;
  }
}
.start-section .block-items .block-item .image-section .image.image-6-company {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 428px 271px !important;
  display: block;
  height: 271px;
  width: 428px;
  background-image: url("/images/svg/start-02-01.svg") !important;
}
.start-section .block-items .block-item .image-section .image.image-1, .start-section .block-items .block-item .image-section .image.image-2, .start-section .block-items .block-item .image-section .image.image-3, .start-section .block-items .block-item .image-section .image.image-4, .start-section .block-items .block-item .image-section .image.image-5, .start-section .block-items .block-item .image-section .image.image-6, .start-section .block-items .block-item .image-section .image.image-1-publisher, .start-section .block-items .block-item .image-section .image.image-2-publisher, .start-section .block-items .block-item .image-section .image.image-3-publisher, .start-section .block-items .block-item .image-section .image.image-4-publisher, .start-section .block-items .block-item .image-section .image.image-5-publisher, .start-section .block-items .block-item .image-section .image.image-6-publisher, .start-section .block-items .block-item .image-section .image.image-1-company, .start-section .block-items .block-item .image-section .image.image-2-company, .start-section .block-items .block-item .image-section .image.image-3-company, .start-section .block-items .block-item .image-section .image.image-4-company, .start-section .block-items .block-item .image-section .image.image-6-company {
  width: 100%;
  height: auto;
  background-size: 85% !important;
}
@media (min-width: 1200px) {
  .start-section .block-items .block-item .image-section .image.image-1, .start-section .block-items .block-item .image-section .image.image-2, .start-section .block-items .block-item .image-section .image.image-3, .start-section .block-items .block-item .image-section .image.image-4, .start-section .block-items .block-item .image-section .image.image-5, .start-section .block-items .block-item .image-section .image.image-6, .start-section .block-items .block-item .image-section .image.image-1-publisher, .start-section .block-items .block-item .image-section .image.image-2-publisher, .start-section .block-items .block-item .image-section .image.image-3-publisher, .start-section .block-items .block-item .image-section .image.image-4-publisher, .start-section .block-items .block-item .image-section .image.image-5-publisher, .start-section .block-items .block-item .image-section .image.image-6-publisher, .start-section .block-items .block-item .image-section .image.image-1-company, .start-section .block-items .block-item .image-section .image.image-2-company, .start-section .block-items .block-item .image-section .image.image-3-company, .start-section .block-items .block-item .image-section .image.image-4-company, .start-section .block-items .block-item .image-section .image.image-6-company {
    background-size: contain !important;
  }
}
.start-section .block-items .block-item .image-section .image.model-nav-image-1 {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 428px 271px !important;
  display: block;
  height: 271px;
  width: 428px;
  background-image: url("/images/svg/model-01.svg") !important;
}
.start-section .block-items .block-item .image-section .image.model-nav-image-2 {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 428px 271px !important;
  display: block;
  height: 271px;
  width: 428px;
  background-image: url("/images/svg/model-02.svg") !important;
}
.start-section .block-items .block-item .image-section .image.model-nav-image-3 {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 428px 271px !important;
  display: block;
  height: 271px;
  width: 428px;
  background-image: url("/images/svg/model-03.svg") !important;
}
.start-section .block-items .block-item .image-section .image.model-nav-image-4 {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 428px 271px !important;
  display: block;
  height: 271px;
  width: 428px;
  background-image: url("/images/svg/model-04.svg") !important;
}
.start-section .block-items .block-item .image-section .image.model-nav-image-5 {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 428px 271px !important;
  display: block;
  height: 271px;
  width: 428px;
  background-image: url("/images/svg/model-05.svg") !important;
}
.start-section .block-items .block-item .image-section .image.model-nav-image-6 {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 428px 271px !important;
  display: block;
  height: 271px;
  width: 428px;
  background-image: url("/images/svg/model-06.svg") !important;
}
.start-section .block-items .block-item .image-section .image.model-nav-image-7 {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 428px 271px !important;
  display: block;
  height: 271px;
  width: 428px;
  background-image: url("/images/svg/model-07.svg") !important;
}
.start-section .block-items .block-item .image-section .image.model-nav-image-1, .start-section .block-items .block-item .image-section .image.model-nav-image-2, .start-section .block-items .block-item .image-section .image.model-nav-image-3, .start-section .block-items .block-item .image-section .image.model-nav-image-4, .start-section .block-items .block-item .image-section .image.model-nav-image-5, .start-section .block-items .block-item .image-section .image.model-nav-image-6, .start-section .block-items .block-item .image-section .image.model-nav-image-7 {
  width: 100%;
  height: auto;
  background-size: 85% !important;
}
@media (min-width: 1200px) {
  .start-section .block-items .block-item .image-section .image.model-nav-image-1, .start-section .block-items .block-item .image-section .image.model-nav-image-2, .start-section .block-items .block-item .image-section .image.model-nav-image-3, .start-section .block-items .block-item .image-section .image.model-nav-image-4, .start-section .block-items .block-item .image-section .image.model-nav-image-5, .start-section .block-items .block-item .image-section .image.model-nav-image-6, .start-section .block-items .block-item .image-section .image.model-nav-image-7 {
    background-size: contain !important;
  }
}
.start-section .block-items .block-item .image-section .image:after {
  content: "";
  padding-bottom: 55%;
  display: block;
}
.start-section .block-items .block-item h5, .start-section .block-items .block-item .h5 {
  padding: 50px 0 30px 0;
  color: #283B41;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  line-height: 36px;
}
.start-section .block-items .block-item h5.less-padding, .start-section .block-items .block-item .less-padding.h5 {
  padding: 32px 0 3px 0;
}
.start-section .block-items .block-item h5.less-padding-earning-models, .start-section .block-items .block-item .less-padding-earning-models.h5 {
  padding: 17px 0 0 0;
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .start-section .block-items .block-item h5, .start-section .block-items .block-item .h5 {
    font-size: 22px;
  }
}
.start-section .block-items .block-item h6, .start-section .block-items .block-item .h6 {
  color: #87919C;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  line-height: 27px;
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .start-section .block-items .block-item h6, .start-section .block-items .block-item .h6 {
    font-size: 18px;
  }
}

.blocks-numeric-section {
  background-color: #F4F6F9;
  padding: 60px 10px 0 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .blocks-numeric-section {
    padding: 60px 20px;
  }
}
@media (min-width: 768px) {
  .blocks-numeric-section {
    padding: 80px 20px;
  }
}
@media (min-width: 1200px) {
  .blocks-numeric-section {
    padding: 102px 20px;
  }
}
.blocks-numeric-section .title-section-mylead h2, .blocks-numeric-section .title-section-mylead .h2 {
  font-size: 24px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .blocks-numeric-section .title-section-mylead h2, .blocks-numeric-section .title-section-mylead .h2 {
    font-size: 34px;
  }
}
.blocks-numeric-section.audit {
  background-color: #fff;
}
@media (max-width: 576px) {
  .blocks-numeric-section.audit {
    padding: 40px 10px 0 10px;
  }
}
.blocks-numeric-section.audit .title-section-mylead {
  text-align: left;
}
.blocks-numeric-section.audit .title-section-mylead p {
  margin-bottom: 0;
}
.blocks-numeric-section.audit .text-section {
  text-align: left;
}
@media (min-width: 768px) {
  .blocks-numeric-section.audit .text-section h4, .blocks-numeric-section.audit .text-section .h4 {
    margin-bottom: 30px;
  }
}
.blocks-numeric-section.audit .blocks-numeric {
  margin-top: 31px;
}
@media (min-width: 768px) {
  .blocks-numeric-section.audit .blocks-numeric {
    margin-top: 50px;
  }
}
@media (min-width: 1200px) {
  .blocks-numeric-section.audit .blocks-numeric {
    margin-top: 57px;
  }
}
.blocks-numeric-section.audit .blocks-numeric .blocks-numeric-item {
  background-color: #F4F6F9;
  position: relative;
  padding: 10px;
}
@media (min-width: 768px) {
  .blocks-numeric-section.audit .blocks-numeric .blocks-numeric-item {
    border-radius: 30px;
    padding: 20px;
  }
}
@media (max-width: 992px) {
  .blocks-numeric-section.audit .blocks-numeric .blocks-numeric-item .mobile-padding-x {
    padding-left: 0;
    padding-right: 0;
  }
}
.blocks-numeric-section.audit .blocks-numeric .blocks-numeric-item .text {
  padding: 28px 21px;
  margin: 0 !important;
}
@media (min-width: 768px) {
  .blocks-numeric-section.audit .blocks-numeric .blocks-numeric-item .text {
    padding: 20px;
  }
}
@media (min-width: 992px) {
  .blocks-numeric-section.audit .blocks-numeric .blocks-numeric-item .text {
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .blocks-numeric-section.audit .blocks-numeric .blocks-numeric-item .text h2, .blocks-numeric-section.audit .blocks-numeric .blocks-numeric-item .text .h2 {
    margin-bottom: 32px;
  }
}
.blocks-numeric-section.audit .blocks-numeric .blocks-numeric-item .image-section {
  background-color: #fff;
  height: auto;
  width: 100%;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .blocks-numeric-section.audit .blocks-numeric .blocks-numeric-item .image-section {
    max-height: 240px;
    border-radius: 20px;
  }
}
.blocks-numeric-section.audit .blocks-numeric .blocks-numeric-item .image-section:after {
  content: "";
  padding-top: 100%;
}

.accordion-info {
  background-color: #F4F6F9;
  padding: 60px 10px;
}
@media (min-width: 1200px) {
  .accordion-info {
    padding: 100px 10px;
  }
}
.accordion-info.additional-margin-bottom {
  margin-bottom: 60px;
}
@media (min-width: 992px) {
  .accordion-info.additional-margin-bottom {
    margin-bottom: 80px;
  }
}
@media (min-width: 1200px) {
  .accordion-info.additional-margin-bottom {
    margin-bottom: 100px;
  }
}
.accordion-info.background-white {
  background-color: #fff;
}
.accordion-info.influencers-wrapper {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 10px;
}
@media (min-width: 576px) {
  .accordion-info.influencers-wrapper {
    padding: 60px 10px;
  }
}
.accordion-info.influencers-wrapper .influencers-title {
  margin-bottom: 48px;
}
.accordion-info.influencers-wrapper .accordion {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .accordion-info.influencers-wrapper .accordion {
    padding: 20px;
  }
}
.accordion-info.single-job-offer-faq-wrapper {
  padding: 80px 0 38px 0;
}
.accordion-info.single-job-offer-faq-wrapper .title {
  margin: 0 0 58px 0;
}
.accordion-info.single-job-offer-faq-wrapper .accordion {
  margin-top: 20px;
}
.accordion-info .faq-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media (min-width: 992px) {
  .accordion-info .faq-title {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
}
.accordion-info .faq-title h2, .accordion-info .faq-title .h2 {
  color: #283B41;
  font-weight: 500;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 15px;
}
@media (min-width: 576px) and (max-width: 991px) {
  .accordion-info .faq-title h2, .accordion-info .faq-title .h2 {
    font-size: 34px;
    margin-bottom: 15px;
  }
}
@media (min-width: 992px) {
  .accordion-info .faq-title h2, .accordion-info .faq-title .h2 {
    font-size: 40px;
    margin-bottom: 0;
  }
}
.accordion-info .faq-title h2:after, .accordion-info .faq-title .h2:after {
  display: none;
  content: "";
  background-color: #F4F6F9;
  height: 50px;
  width: 3px;
  margin: 0 30px;
}
@media (min-width: 992px) {
  .accordion-info .faq-title h2:after, .accordion-info .faq-title .h2:after {
    display: block;
  }
}
.accordion-info .faq-title h5, .accordion-info .faq-title .h5 {
  color: #283B41;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
.accordion-info .faq-title h5:before, .accordion-info .faq-title .h5:before {
  font-family: "Icomoon";
  display: block;
  color: #45BF52;
  font-size: 20px;
  font-weight: 500;
  margin-right: 15px;
  width: 20px;
}
.accordion-info .faq-title h5.gq:before, .accordion-info .faq-title .gq.h5:before, .accordion-info .faq-title h5.offerwall:before, .accordion-info .faq-title .offerwall.h5:before, .accordion-info .faq-title h5.cooperation:before, .accordion-info .faq-title .cooperation.h5:before {
  content: "";
}
.accordion-info .faq-title h5.partner_program:before, .accordion-info .faq-title .partner_program.h5:before {
  content: "";
}
.accordion-info .faq-title h5.aff:before, .accordion-info .faq-title .aff.h5:before {
  content: "";
}
.accordion-info .faq-title h5.withdrawals:before, .accordion-info .faq-title .withdrawals.h5:before {
  content: "";
}
.accordion-info .faq-title h5.content_locker:before, .accordion-info .faq-title .content_locker.h5:before {
  content: "";
}
.accordion-info .faq-title h5.hide_link:before, .accordion-info .faq-title .hide_link.h5:before {
  font-size: 14px;
  content: "";
}
.accordion-info .faq-title h5.ivr:before, .accordion-info .faq-title .ivr.h5:before {
  content: "";
}
.accordion-info .faq-title h5.ppi:before, .accordion-info .faq-title .ppi.h5:before {
  content: "";
}
.accordion-info .faq-title h5.sms:before, .accordion-info .faq-title .sms.h5:before {
  content: "";
}
.accordion-info .faq-title h5.register:before, .accordion-info .faq-title .register.h5:before {
  font-size: 18px;
  content: "";
}
.accordion-info .faq-title h5.mobile_app:before, .accordion-info .faq-title .mobile_app.h5:before {
  content: "";
}
.accordion-info .faq-title h5.browser_extension:before, .accordion-info .faq-title .browser_extension.h5:before {
  content: "";
}
.accordion-info .title-section-mylead {
  padding: 0 10px;
}
.accordion-info .title-section-mylead h2, .accordion-info .title-section-mylead .h2 {
  max-width: 940px;
  margin: 0 auto 0 auto;
  font-size: 24px;
  line-height: 1.5;
}
@media (min-width: 992px) {
  .accordion-info .title-section-mylead h2, .accordion-info .title-section-mylead .h2 {
    margin: 20px auto 0 auto;
    font-size: 34px;
  }
}
@media (min-width: 1200px) {
  .accordion-info .title-section-mylead h2, .accordion-info .title-section-mylead .h2 {
    font-size: 40px;
    margin: 0 auto 0 auto;
  }
}
.accordion-info .title-section-mylead h4, .accordion-info .title-section-mylead .h4 {
  max-width: 600px;
  margin: 40px auto 0 auto;
}
.accordion-info .title-section-mylead p {
  max-width: 940px;
  margin: 40px auto 0 auto;
  text-align: left;
}
.accordion-info .title-section-mylead .btn-wrapper {
  max-width: 940px;
  margin: 40px auto 0 auto;
  text-align: left;
}
.accordion-info .title-section-mylead .btn-wrapper .btn-show-more-global {
  padding: 0 15px;
}
@media (max-width: 576px) {
  .accordion-info .title-section-mylead .btn-wrapper .btn-show-more-global {
    height: 50px;
  }
}
@media (min-width: 576px) {
  .accordion-info .title-section-mylead .btn-wrapper .btn-show-more-global {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
.accordion-info .title-section-mylead .underline {
  font-weight: 900;
  border-bottom: 4px solid #45BF52;
}
.accordion-info .accordion {
  margin-top: 70px;
}
.accordion-info .accordion.accordion-wrapper {
  max-width: 940px;
  margin: 40px auto 0 auto;
}
@media (min-width: 992px) {
  .accordion-info .accordion.accordion-wrapper {
    margin: 70px auto 0 auto;
  }
}
.accordion-info .accordion.accordion-wrapper-2 {
  max-width: 940px;
}
.accordion-info .accordion.limited-width {
  max-width: 940px;
  margin: 40px auto 0 auto;
}
.accordion-info .accordion .accordion-item {
  margin-bottom: 10px;
  border: none;
  border-radius: 20px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .accordion-info .accordion .accordion-item {
    margin-bottom: 20px;
  }
}
.accordion-info .accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.accordion-info .accordion .accordion-item.light-grey-theme {
  background-color: #F4F6F9;
}
.accordion-info .accordion .accordion-item.light-grey-theme h2.accordion-header .accordion-button, .accordion-info .accordion .accordion-item.light-grey-theme .accordion-header.h2 .accordion-button {
  background-color: #F4F6F9;
}
.accordion-info .accordion .accordion-item.light-grey-theme h2.accordion-header .accordion-button.without-border, .accordion-info .accordion .accordion-item.light-grey-theme .accordion-header.h2 .accordion-button.without-border {
  border-bottom: none;
}
.accordion-info .accordion .accordion-item.light-grey-theme h2.accordion-header .accordion-button:not(.collapsed), .accordion-info .accordion .accordion-item.light-grey-theme .accordion-header.h2 .accordion-button:not(.collapsed) {
  background-color: #F4F6F9;
}
.accordion-info .accordion .accordion-item.light-grey-theme h2.accordion-header .accordion-button:after, .accordion-info .accordion .accordion-item.light-grey-theme .accordion-header.h2 .accordion-button:after {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 12px 12px !important;
  display: block;
  height: 12px;
  width: 12px;
  background-image: url("/images/svg/chevron-right-black.svg") !important;
  transform: rotate(0deg);
}
.accordion-info .accordion .accordion-item.light-grey-theme .accordion-collapse .accordion-body {
  border-top: 2px solid #fff;
}
.accordion-info .accordion .accordion-item.light-grey-theme .accordion-collapse .accordion-body a {
  background-color: #fff;
}
.accordion-info .accordion .accordion-item h2.accordion-header .question-white, .accordion-info .accordion .accordion-item .accordion-header.h2 .question-white {
  background-color: #fff;
  color: #45BF52;
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  min-height: 44px;
  width: 44px;
  min-width: 44px;
  border-radius: 100%;
  margin-right: 25px;
}
.accordion-info .accordion .accordion-item h2.accordion-header .question-white:before, .accordion-info .accordion .accordion-item .accordion-header.h2 .question-white:before {
  font-family: "Icomoon";
  content: "";
  display: block;
}
.accordion-info .accordion .accordion-item h2.accordion-header .question-green, .accordion-info .accordion .accordion-item .accordion-header.h2 .question-green {
  background-color: #E9FFE6;
  color: #45BF52;
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  min-height: 44px;
  width: 44px;
  min-width: 44px;
  border-radius: 100%;
  margin-right: 25px;
}
.accordion-info .accordion .accordion-item h2.accordion-header .question-green:before, .accordion-info .accordion .accordion-item .accordion-header.h2 .question-green:before {
  font-family: "Icomoon";
  content: "";
  display: block;
}
.accordion-info .accordion .accordion-item h2.accordion-header .accordion-button, .accordion-info .accordion .accordion-item .accordion-header.h2 .accordion-button {
  outline: transparent 0 !important;
  box-shadow: none !important;
  padding: 20px;
  color: #283B41;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  line-height: 1.25;
  background-color: #fff;
}
@media (min-width: 768px) {
  .accordion-info .accordion .accordion-item h2.accordion-header .accordion-button, .accordion-info .accordion .accordion-item .accordion-header.h2 .accordion-button {
    padding: 25px 30px;
    font-size: 18px;
    line-height: 1.33;
  }
}
.accordion-info .accordion .accordion-item h2.accordion-header .accordion-button:not(.collapsed), .accordion-info .accordion .accordion-item .accordion-header.h2 .accordion-button:not(.collapsed) {
  background-color: #fff;
}
.accordion-info .accordion .accordion-item h2.accordion-header .accordion-button:not(.collapsed):after, .accordion-info .accordion .accordion-item .accordion-header.h2 .accordion-button:not(.collapsed):after {
  transform: rotate(90deg);
}
.accordion-info .accordion .accordion-item h2.accordion-header .accordion-button:after, .accordion-info .accordion .accordion-item .accordion-header.h2 .accordion-button:after {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 12px 12px !important;
  display: block;
  height: 12px;
  width: 12px;
  background-image: url("/images/svg/chevron-right-grey.svg") !important;
  transform: rotate(0deg);
}
.accordion-info .accordion .accordion-item h2.accordion-header .accordion-button .number, .accordion-info .accordion .accordion-item .accordion-header.h2 .accordion-button .number {
  background-color: #EDFFEF;
  color: #45BF52;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  min-height: 44px;
  width: 44px;
  min-width: 44px;
  border-radius: 100%;
  margin-right: 25px;
}
.accordion-info .accordion .accordion-item .accordion-collapse .accordion-body {
  padding: 30px 20px;
  border-top: 2px solid #F4F6F9;
}
@media (min-width: 768px) {
  .accordion-info .accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 30px 100px;
  }
}
.accordion-info .accordion .accordion-item .accordion-collapse .accordion-body:not(.accordion-body-custom) a {
  display: inline-flex;
  justify-content: center;
  text-align: center;
  margin-top: 30px;
  text-decoration: none;
  margin-bottom: 0;
  margin-right: 0;
  font-size: 14px;
  color: #87919C;
  font-weight: 500;
  background-color: #fff;
  padding: 10px 15px;
  border-radius: 35px;
  transition: 0.3s all;
}
@media (min-width: 576px) {
  .accordion-info .accordion .accordion-item .accordion-collapse .accordion-body:not(.accordion-body-custom) a {
    width: auto;
  }
}
.accordion-info .accordion .accordion-item .accordion-collapse .accordion-body:not(.accordion-body-custom) a.light-grey-btn {
  background-color: #F4F6F9;
}
.accordion-info .accordion .accordion-item .accordion-collapse .accordion-body:not(.accordion-body-custom) a.light-grey-btn:hover {
  background-color: #87919C;
  color: #fff;
}
.accordion-info .accordion .accordion-item .accordion-collapse .accordion-body:not(.accordion-body-custom) a:hover {
  background-color: #87919C;
  color: #fff;
}
.accordion-info .accordion .accordion-item .accordion-collapse .accordion-body:not(.accordion-body-custom) a[aria-expanded=true] {
  transition: 0.3s;
  display: none;
}
.accordion-info .accordion .accordion-item .accordion-collapse .accordion-body.accordion-body-custom a {
  background-color: transparent;
  color: #45BF52;
  text-decoration: underline;
}
.accordion-info .accordion .accordion-item .accordion-collapse .accordion-body.accordion-body-custom p p strong {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #283B41;
}
.accordion-info .accordion .accordion-item .accordion-collapse .accordion-body.accordion-body-custom p p .custom-btn-style-1 {
  background-color: #F4F6F9;
  color: #87919C !important;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  border-radius: 30px;
  margin-bottom: 20px;
  text-decoration: none;
  padding: 0 15px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 10px 0;
  transition: 0.2s all;
}
.accordion-info .accordion .accordion-item .accordion-collapse .accordion-body.accordion-body-custom p p .custom-btn-style-1:hover {
  background-color: #87919C;
  color: #fff !important;
}
.accordion-info .accordion .accordion-item .accordion-collapse .accordion-body p {
  color: #87919C;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.73;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .accordion-info .accordion .accordion-item .accordion-collapse .accordion-body p {
    font-size: 16px;
    line-height: 1.625;
  }
}
@media (min-width: 1200px) {
  .accordion-info .accordion .accordion-item .accordion-collapse .accordion-body p {
    font-size: 18px;
    line-height: 1.5;
  }
}
.accordion-info .accordion .accordion-item .accordion-collapse .accordion-body p.collapse {
  margin: 10px 0;
  transition: 0.3s;
}

.tabs-section-vertical {
  background-color: #F4F6F9;
  border-radius: 20px;
  overflow: hidden;
  padding: 10px 20px 20px 20px;
  margin-bottom: 20px;
  height: 100%;
  max-height: 100%;
}
@media (min-width: 768px) {
  .tabs-section-vertical {
    padding: 50px 50px 100px 50px;
  }
}
@media (min-width: 992px) {
  .tabs-section-vertical {
    border-radius: 50px;
  }
}
.tabs-section-vertical .title-section-mylead {
  margin: 48px 0;
}
.tabs-section-vertical .title-section-mylead h2, .tabs-section-vertical .title-section-mylead .h2 {
  text-align: center;
  font-size: 24px;
  line-height: 36px;
}
@media (min-width: 768px) {
  .tabs-section-vertical .title-section-mylead h2, .tabs-section-vertical .title-section-mylead .h2 {
    text-align: left;
    font-size: 40px;
    line-height: 60px;
  }
}
.tabs-section-vertical .tabs .content-container .v-window__container {
  background-color: #fff;
  border-radius: 20px;
}
.tabs-section-vertical .tabs .v-tabs {
  position: relative;
}
.tabs-section-vertical .tabs .v-tabs .v-item-group {
  width: 100%;
  height: auto;
  border-radius: 30px;
  max-width: 100%;
  box-shadow: 0px 20px 40px 0px rgba(40, 59, 65, 0.1);
}
.tabs-section-vertical .tabs .v-tabs .v-item-group .v-slide-group__content {
  max-width: 100%;
  width: 100% !important;
}
.tabs-section-vertical .tabs .v-tabs .v-item-group.v-tabs-bar {
  background-color: white;
  padding: 5px 0 14px 0;
  margin-bottom: 40px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .tabs-section-vertical .tabs .v-tabs .v-item-group.v-tabs-bar {
    margin-bottom: 0;
  }
}
.tabs-section-vertical .tabs .v-tabs .v-item-group .v-slide-group {
  max-width: 100%;
}
.tabs-section-vertical .tabs .v-tabs .v-item-group .v-slide-group__prev, .tabs-section-vertical .tabs .v-tabs .v-item-group .v-slide-group__next {
  display: none !important;
}
.tabs-section-vertical .tabs .v-tabs .v-item-group .v-slide-group__content {
  background-color: transparent;
}
.tabs-section-vertical .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab {
  background-color: transparent;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  text-transform: none;
  width: 100%;
  height: 71px;
  position: relative;
  max-width: 100%;
  padding: 0 0 0 24px;
  min-width: 250px;
  white-space: normal;
  border-bottom: 2px solid #F4F6F9;
  transition: 0.2s;
}
.tabs-section-vertical .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab:last-child {
  border-bottom: 2px solid transparent;
}
@media (min-width: 576px) {
  .tabs-section-vertical .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab:not(:last-child) {
    margin-right: 10px;
    margin-left: 0;
  }
}
.tabs-section-vertical .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab span {
  color: #87919C;
  font-size: 12px;
  font-weight: 900;
}
.tabs-section-vertical .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab h5, .tabs-section-vertical .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab .h5 {
  color: #87919C;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-align: left;
  margin: 0;
}
.tabs-section-vertical .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab:before {
  background-color: #fff;
}
.tabs-section-vertical .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab--active {
  background-color: #fff;
  border-bottom: 2px solid #45BF52 !important;
}
.tabs-section-vertical .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab--active span {
  color: #45BF52;
  transition: 0.3s;
}
.tabs-section-vertical .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab--active h5, .tabs-section-vertical .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab--active .h5 {
  color: #283B41;
  font-weight: 700;
}
.tabs-section-vertical .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab--active .vertical-tabs-icon {
  margin-right: 10px;
  background-color: #45BF52;
  border-radius: 30px;
}
.tabs-section-vertical .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab--active .vertical-tabs-icon:after {
  color: white;
  font-weight: 400;
}
.tabs-section-vertical .tabs .v-tabs .v-item-group .v-slide-group__content .v-tab:active:after {
  opacity: 0 !important;
}
.tabs-section-vertical .tabs .v-tabs .v-item-group .v-slide-group__content .v-tabs-slider-wrapper {
  display: none !important;
}

.tabs-section-vertical-filter {
  margin-top: 70px;
  overflow: unset;
}
@media (min-width: 576px) {
  .tabs-section-vertical-filter {
    margin-top: 20px;
  }
}
.tabs-section-vertical-filter .custom-title-section {
  margin-top: 40px;
  margin-bottom: 10px;
}
@media (min-width: 576px) {
  .tabs-section-vertical-filter .custom-title-section {
    margin-top: 140px;
    margin-bottom: 80px;
  }
}
.tabs-section-vertical-filter .custom-title-section h1, .tabs-section-vertical-filter .custom-title-section .h1 {
  font-size: 33px;
  color: #283B41;
  margin-bottom: 30px;
  font-weight: 900;
}
@media (min-width: 576px) {
  .tabs-section-vertical-filter .custom-title-section h1, .tabs-section-vertical-filter .custom-title-section .h1 {
    margin-bottom: 50px;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .tabs-section-vertical-filter .custom-title-section h1, .tabs-section-vertical-filter .custom-title-section .h1 {
    font-size: 43px;
  }
}
@media (min-width: 992px) {
  .tabs-section-vertical-filter .custom-title-section h1, .tabs-section-vertical-filter .custom-title-section .h1 {
    font-size: 56px;
  }
}
.tabs-section-vertical-filter .custom-title-section h4, .tabs-section-vertical-filter .custom-title-section .h4 {
  color: #45BF52;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.tabs-section-vertical-filter .custom-title-section h4 a, .tabs-section-vertical-filter .custom-title-section .h4 a {
  color: #45BF52;
}
.tabs-section-vertical-filter .tabs .content-container .v-window__container {
  background-color: transparent !important;
}

.audit-form-section {
  position: relative;
}
.audit-form-section .row-sticky {
  position: absolute;
  height: 100%;
  display: block;
  width: 25%;
  left: 75%;
}
@media (min-width: 1550px) and (max-width: 1619px) {
  .audit-form-section .row-sticky {
    left: 74%;
  }
}
@media (min-width: 1620px) and (max-width: 1719px) {
  .audit-form-section .row-sticky {
    left: 73%;
  }
}
@media (min-width: 1720px) and (max-width: 1819px) {
  .audit-form-section .row-sticky {
    left: 72%;
  }
}
@media (min-width: 1820px) and (max-width: 1849px) {
  .audit-form-section .row-sticky {
    left: 71%;
  }
}
@media (min-width: 1850px) {
  .audit-form-section .row-sticky {
    left: 70%;
  }
}
.audit-form-section .content-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(40, 59, 65, 0.1);
  padding: 50px 30px;
  max-width: 355px;
}
@media (min-width: 1200px) {
  .audit-form-section .content-form {
    margin-top: 145px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .audit-form-section .content-form {
    margin: -55px auto 60px auto;
  }
}
@media (max-width: 991px) {
  .audit-form-section .content-form {
    margin: 30px auto 50px auto;
  }
}
.audit-form-section .content-form.content-form-wrapper {
  padding: 0;
}
.audit-form-section .content-form.content-form-wrapper .fade-enter-active, .audit-form-section .content-form.content-form-wrapper .fade-leave-active {
  transition: opacity 0.5s ease;
}
.audit-form-section .content-form.content-form-wrapper .fade-enter-from, .audit-form-section .content-form.content-form-wrapper .fade-leave-to {
  opacity: 0;
}
.audit-form-section .content-form.faq-style {
  overflow: hidden;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .audit-form-section .content-form.faq-style {
    margin: 30px auto 50px auto;
  }
}
.audit-form-section .content-form.faq-style .image {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 500px 390px !important;
  display: block;
  height: 390px;
  width: 500px;
  background-image: url("/images/svg/quest-2.svg") !important;
  margin: -20px;
  top: -110px;
  position: relative;
  margin-bottom: -140px;
}
.audit-form-section .content-form.faq-style h3, .audit-form-section .content-form.faq-style .h3 {
  color: #283B41 !important;
  font-size: 22px !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-align: center;
  width: 100%;
  max-width: 180px;
  margin-bottom: 0 !important;
  text-transform: none !important;
}
.audit-form-section .content-form.faq-style p {
  color: #87919C;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
}
.audit-form-section .content-form.faq-style a {
  width: 100%;
  margin-bottom: 0 !important;
}
.audit-form-section .content-form.content-form-sticky {
  position: sticky;
  top: 120px;
  margin-right: 40px;
  max-width: 355px;
  z-index: 99;
  display: none;
}
@media (min-width: 1200px) {
  .audit-form-section .content-form.content-form-sticky {
    display: flex;
  }
}
.audit-form-section .content-form h3, .audit-form-section .content-form .h3 {
  color: #283B41;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  margin: 0;
  width: 100%;
  max-width: 180px;
}
.audit-form-section .content-form h5, .audit-form-section .content-form .h5 {
  color: #87919C;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
  margin: 0;
  width: 100%;
  max-width: 180px;
}
.audit-form-section .content-form hr {
  opacity: 1;
  background-color: #45BF52;
  color: #45BF52;
  border-radius: 1.5px;
  height: 3px;
  width: 100%;
  max-width: 60px;
  margin: 14px auto 15px auto;
}

.blocks-details-section {
  background-color: #F4F6F9;
  margin: 0 20px;
  padding: 0 !important;
}
@media (min-width: 576px) {
  .blocks-details-section {
    padding: 20px !important;
  }
}
.blocks-details-section .title-section-mylead {
  max-width: 280px;
  margin: 80px auto 40px auto;
}
@media (min-width: 576px) {
  .blocks-details-section .title-section-mylead {
    max-width: 420px;
  }
}
@media (min-width: 768px) {
  .blocks-details-section .title-section-mylead {
    max-width: 540px;
  }
}
@media (min-width: 1200px) {
  .blocks-details-section .title-section-mylead {
    max-width: 490px;
  }
}
.blocks-details-section .title-section-mylead h2, .blocks-details-section .title-section-mylead .h2 {
  margin-bottom: 43px;
  font-size: 24px;
}
@media (min-width: 576px) {
  .blocks-details-section .title-section-mylead h2, .blocks-details-section .title-section-mylead .h2 {
    font-size: 32px;
  }
}
@media (min-width: 1200px) {
  .blocks-details-section .title-section-mylead h2, .blocks-details-section .title-section-mylead .h2 {
    font-size: 40px;
  }
}
.blocks-details-section .title-section-mylead h3, .blocks-details-section .title-section-mylead .h3 {
  font-size: 18px;
  font-weight: 700;
}
@media (min-width: 576px) {
  .blocks-details-section .title-section-mylead h3, .blocks-details-section .title-section-mylead .h3 {
    font-size: 20px;
  }
}

.company-for-media-section {
  background-color: #F4F6F9;
  padding: 23px 20px 60px 20px;
  margin-top: 70px;
  margin-bottom: 20px;
  overflow: visible;
}
@media (min-width: 576px) {
  .company-for-media-section {
    padding: 60px 20px;
    margin-top: 20px;
  }
}
@media (min-width: 576px) {
  .company-for-media-section .company-for-media-section-wrapper {
    margin-top: 70px;
  }
}
@media (min-width: 992px) {
  .company-for-media-section .left-column {
    max-width: 844px;
  }
}
.company-for-media-section .left-column section {
  margin-left: 0;
  margin-right: 0;
}
.company-for-media-section .right-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: transparent;
  border-radius: 30px;
  width: 100%;
}
.company-for-media-section .right-column.right-column-sticky {
  position: sticky;
  top: 120px;
  margin-right: 40px;
  width: 100%;
  z-index: 99;
  display: flex;
}
.company-for-media-section .right-column .more-info {
  width: 100%;
  height: auto;
  border-radius: 30px;
  background-color: #fff;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px 40px 20px;
}
@media (min-width: 1200px) {
  .company-for-media-section .right-column .more-info {
    padding: 40px;
  }
}
.company-for-media-section .right-column .marketing-partner {
  width: 100%;
  height: auto;
  border-radius: 30px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  margin: 0 0 20px 0;
}
.company-for-media-section .right-column .marketing-partner h3, .company-for-media-section .right-column .marketing-partner .h3 {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 18px;
}
@media (min-width: 1200px) {
  .company-for-media-section .right-column .marketing-partner h3, .company-for-media-section .right-column .marketing-partner .h3 {
    font-size: 22px;
    line-height: 29px;
  }
}
.company-for-media-section .right-column .marketing-partner h5, .company-for-media-section .right-column .marketing-partner .h5 {
  line-height: 26px;
  color: #87919C;
  font-weight: 500;
  margin-bottom: 24px;
}
@media (min-width: 1200px) {
  .company-for-media-section .right-column .marketing-partner h5, .company-for-media-section .right-column .marketing-partner .h5 {
    line-height: 29px;
  }
}
.company-for-media-section .right-column .marketing-partner .btn-mylead-2 {
  text-align: center;
}
.company-for-media-section .right-column h3, .company-for-media-section .right-column .h3 {
  color: #283B41;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  margin: 0 0 11px 0;
  width: 100%;
}
@media (min-width: 1200px) {
  .company-for-media-section .right-column h3, .company-for-media-section .right-column .h3 {
    font-size: 22px;
  }
}
.company-for-media-section .right-column h5, .company-for-media-section .right-column .h5 {
  color: #87919C;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  margin: 0 0 59px 0;
  width: 100%;
}
.company-for-media-section .right-column .info {
  display: block;
  width: 100%;
  margin-bottom: 50px;
}
.company-for-media-section .right-column .info .info-content {
  border-radius: 10px;
  width: 100%;
  padding: 49px 0 25px 0;
  background-color: #F4F6F9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.company-for-media-section .right-column .info .info-content h5, .company-for-media-section .right-column .info .info-content .h5 {
  color: #283B41;
  font-weight: 500;
  margin-bottom: 7px;
}
.company-for-media-section .right-column .info .info-content h6, .company-for-media-section .right-column .info .info-content .h6 {
  color: #87919C;
  font-size: 12px;
  font-weight: 400;
}
.company-for-media-section .right-column .info .info-content .picture-container {
  position: absolute;
  top: -30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.company-for-media-section .right-column .info .info-content .social-media-container {
  position: absolute;
  bottom: -14px;
  height: 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.company-for-media-section .right-column .info .info-content .social-media-container .icon-container {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  background-color: #F4F6F9;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  margin: 0 5px;
}
.company-for-media-section .right-column .info .info-content .social-media-container .icon-container:after {
  font-family: "Icomoon";
  font-weight: normal;
  color: #87919C;
}
.company-for-media-section .right-column .info .info-content .social-media-container .icon-container:hover:after {
  transform: scale(1.2);
  transition: 0.3s;
}
.company-for-media-section .right-column .info .info-content .social-media-container .icon-container.icon-facebook {
  margin-right: 10px;
  font-size: 12px;
}
.company-for-media-section .right-column .info .info-content .social-media-container .icon-container.icon-facebook:after {
  content: "";
}
.company-for-media-section .right-column .info .info-content .social-media-container .icon-container.icon-instagram {
  margin-right: 10px;
  font-size: 14px;
}
.company-for-media-section .right-column .info .info-content .social-media-container .icon-container.icon-instagram:after {
  content: "";
}
.company-for-media-section .right-column .info .info-content .social-media-container .icon-container.icon-linkedin {
  font-size: 11px;
}
.company-for-media-section .right-column .info .info-content .social-media-container .icon-container.icon-linkedin:after {
  content: "";
}
.company-for-media-section .right-column .info .info-content .social-media-container .icon-container.icon-skype {
  font-size: 12px;
}
.company-for-media-section .right-column .info .info-content .social-media-container .icon-container.icon-skype:after {
  content: "";
}
.company-for-media-section .right-column .info .info-content .social-media-container .icon-container.icon-discord {
  font-size: 14px;
}
.company-for-media-section .right-column .info .info-content .social-media-container .icon-container.icon-discord:after {
  content: "";
}
.company-for-media-section .right-column .info .info-content .social-media-container .instagram-icon-container {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #fff;
  margin-right: 10px;
}
.company-for-media-section .right-column .info .info-content .social-media-container .linkedin-icon-container {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}
.company-for-media-section .right-column .mail-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.company-for-media-section .right-column .mail-container .mail-icon-container {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #F4F6F9;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 29px 29px !important;
  display: block;
  height: 29px;
  width: 29px;
  background-image: url("/images/svg/icon-mail.svg") !important;
}
.company-for-media-section .right-column .mail-container a {
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: #283B41;
}

.download-list-section {
  background-color: #fff;
  border-radius: 20px;
  padding: 50px 0 30px 0;
  margin-bottom: 20px;
}
.download-list-section .title-section {
  display: flex;
  justify-content: center;
  align-items: center;
}
.download-list-section .title-section h2, .download-list-section .title-section .h2 {
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .download-list-section .title-section h2, .download-list-section .title-section .h2 {
    font-size: 40px;
    line-height: 60px;
  }
}

.blog-news-expandable-section {
  background-color: #fff;
  border-radius: 20px;
  padding: 50px 10px 43px 10px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .blog-news-expandable-section {
    padding: 50px 40px 30px 40px;
  }
}
.blog-news-expandable-section .padding-0 {
  padding-right: 0;
  padding-left: 0;
}
.blog-news-expandable-section .margin-btn {
  margin-top: 5px;
}
@media (min-width: 452px) {
  .blog-news-expandable-section .margin-btn {
    margin-top: 33px;
  }
}
.blog-news-expandable-section .title-section-mylead {
  text-align: center;
}
.blog-news-expandable-section .title-section-mylead p {
  font-size: 15px;
  margin-top: 6px;
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  .blog-news-expandable-section .title-section-mylead p {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
.blog-news-expandable-section .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .blog-news-expandable-section .content {
    margin-bottom: 50px;
    align-items: center;
  }
}
.blog-news-expandable-section .content .navigation {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 90px;
  z-index: 10;
}
.blog-news-expandable-section .content .navigation .prev-btn, .blog-news-expandable-section .content .navigation .next-btn {
  font-family: "Icomoon";
  font-weight: 500;
  font-size: 13px;
  height: 40px;
  width: 40px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #A8B4C1;
  background-color: transparent;
  color: #A8B4C1;
  transition: 0.2s all;
}
@media (max-width: 768px) {
  .blog-news-expandable-section .content .navigation .prev-btn, .blog-news-expandable-section .content .navigation .next-btn {
    padding-top: 1px;
  }
}
@media (min-width: 768px) {
  .blog-news-expandable-section .content .navigation .prev-btn, .blog-news-expandable-section .content .navigation .next-btn {
    height: 50px;
    width: 50px;
    border: 4px solid #A8B4C1;
    font-size: 18px;
  }
}
.blog-news-expandable-section .content .navigation .prev-btn:disabled, .blog-news-expandable-section .content .navigation .next-btn:disabled {
  opacity: 0.1;
  pointer-events: none;
}
.blog-news-expandable-section .content .navigation .prev-btn:not(:disabled):hover, .blog-news-expandable-section .content .navigation .next-btn:not(:disabled):hover {
  background-color: #A8B4C1;
  color: #fff;
}
@media (min-width: 768px) {
  .blog-news-expandable-section .content .navigation .prev-btn {
    padding-top: 2px;
    padding-right: 2px;
  }
}
.blog-news-expandable-section .content .navigation .prev-btn:after {
  content: "";
}
@media (max-width: 768px) {
  .blog-news-expandable-section .content .navigation .next-btn {
    padding-left: 2px;
  }
}
@media (min-width: 768px) {
  .blog-news-expandable-section .content .navigation .next-btn {
    padding-top: 2px;
    padding-left: 2px;
  }
}
.blog-news-expandable-section .content .navigation .next-btn:after {
  content: "";
}

.campaigns-list-section {
  background-color: #F4F6F9;
  padding-right: 20px;
  padding-left: 20px;
  overflow: visible;
  min-height: 1740px;
}
@media (min-width: 576px) {
  .campaigns-list-section {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.campaigns-list-section.first-section {
  margin-top: 85px;
  padding-top: 50px;
}
@media (min-width: 576px) {
  .campaigns-list-section.first-section {
    margin-top: 20px;
    padding-top: 150px;
  }
}
.campaigns-list-section .campaigns-list-container-wrapper {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}
@media (min-width: 1200px) {
  .campaigns-list-section .campaigns-list-container-wrapper {
    max-width: 1420px;
  }
}
.campaigns-list-section .campaigns-list-container-wrapper.margin-top-30 {
  margin-top: 30px;
}
.campaigns-list-section h1, .campaigns-list-section .h1 {
  color: #283B41;
  font-size: 30px;
  font-weight: 700;
  text-align: left;
  line-height: 40px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .campaigns-list-section h1, .campaigns-list-section .h1 {
    font-size: 43px;
    font-weight: 900;
    line-height: 60px;
    margin-bottom: 29px;
  }
}
@media (min-width: 1200px) {
  .campaigns-list-section h1, .campaigns-list-section .h1 {
    font-size: 56px;
    margin-bottom: 49px;
  }
}
.campaigns-list-section p {
  color: #A8B4C1;
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  line-height: 27px;
  max-width: 1000px;
  margin-bottom: 30px;
}
.campaigns-list-section ul li {
  color: #A8B4C1;
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  line-height: 27px;
  max-width: 1000px;
  margin-bottom: 10px;
}
.campaigns-list-section h4, .campaigns-list-section .h4 {
  color: #283B41;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  text-align: left;
  margin-bottom: 30px;
  max-width: 1000px;
}
@media (min-width: 768px) {
  .campaigns-list-section h4, .campaigns-list-section .h4 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (min-width: 1200px) {
  .campaigns-list-section h4, .campaigns-list-section .h4 {
    font-size: 24px;
    line-height: 36px;
  }
}
.campaigns-list-section h5, .campaigns-list-section .h5 {
  color: #45BF52;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.campaigns-list-section h5 a, .campaigns-list-section .h5 a {
  color: #45BF52;
  text-decoration: none;
}
.campaigns-list-section a.btn-show-more-global {
  background-color: #fff;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 0 15px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .campaigns-list-section a.btn-show-more-global {
    margin-bottom: 50px;
  }
}
.campaigns-list-section a.btn-show-more-global:hover {
  background-color: #87919C;
}
.campaigns-list-section .campaigns-list-wrapper {
  width: 100%;
  height: auto;
}

h3, .h3 {
  font-size: 10px;
  font-weight: 700;
  display: inline-block;
  align-items: center;
}

.expand-menu + .filter-elements {
  display: none;
}

.expand-menu {
  cursor: pointer;
}
.expand-menu:hover {
  color: #45BF52;
}
.expand-menu.active {
  margin-top: 6px;
}

.active + .filter-elements {
  display: block;
}

.active .show-more-icon {
  transform: rotate(90deg);
}

.show-more-icon {
  font-size: 6px;
  color: black;
  line-height: 20px;
}
.show-more-icon:before {
  font-weight: 400;
  margin-right: 8px;
  font-family: "Icomoon";
  color: #283B41;
  position: relative;
  font-size: 6px;
  content: "";
}

.podcast-section {
  padding: 60px 20px 85px 20px;
  position: relative;
  margin: 0;
  background-color: #F4F6F9;
}
@media (min-width: 576px) {
  .podcast-section {
    padding: 42px 20px 85px 20px;
    margin: 0 20px;
  }
}
@media (max-width: 1199px) {
  .podcast-section {
    background-position: center -500px !important;
  }
}
.podcast-section .placeholder-text {
  text-align: center;
  color: #87919C;
  margin: 50px 0 0 0;
  font-weight: 100;
}
.podcast-section .number-box h2, .podcast-section .number-box .h2 {
  text-align: center;
}
.podcast-section .number-box .front-text-wrapper {
  text-align: center;
}
.podcast-section p {
  margin-top: 18px;
  margin-bottom: 40px;
  color: #87919C;
  font-size: 15px;
  font-weight: 400;
  line-height: 27px;
  text-align: center;
}
@media (max-width: 991px) {
  .podcast-section p {
    margin-bottom: 40px;
  }
}
@media (min-width: 768px) {
  .podcast-section p {
    font-size: 18px;
  }
}
.podcast-section .player-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 15px 20px 40px 20px;
  background-color: #fff;
  border-radius: 15px;
}
@media (min-width: 768px) {
  .podcast-section .player-wrapper {
    padding: 15px 40px 40px 40px;
  }
}
.podcast-section .player-wrapper p {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.71px;
  text-transform: uppercase;
  margin-bottom: 13px;
  margin-top: 0;
}
.podcast-section .player-wrapper .spotify-embeds {
  width: 100%;
}
.podcast-section .player-wrapper .spotify-embed:not(:last-of-type) {
  margin-bottom: 5px;
}
.podcast-section .player-wrapper .spotify-embed iframe {
  display: block;
  transition: opacity 0.125s;
  width: 100%;
}
.js .podcast-section .player-wrapper .spotify-embed iframe {
  opacity: 0;
}
.js .podcast-section .player-wrapper .spotify-embed iframe.loaded {
  opacity: 1;
}
.podcast-section .platform-logos-container p {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.71px;
  text-transform: uppercase;
  margin-bottom: 13px;
  margin-top: 54px;
}
.podcast-section .platform-logos-container .logos-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.podcast-section .platform-logos-container .logos-wrapper .single-logo {
  max-width: 100%;
  height: 100px;
  background-color: #fff;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  flex-direction: column;
}
@media (min-width: 576px) {
  .podcast-section .platform-logos-container .logos-wrapper .single-logo {
    max-width: 31%;
    flex-direction: row;
  }
}
.podcast-section .platform-logos-container .logos-wrapper .single-logo.yt-logo {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 110px 50px;
  display: block;
  background-size: 35% !important;
}
.webp.webpalpha .podcast-section .platform-logos-container .logos-wrapper .single-logo.yt-logo {
  background-image: url("/images/youtube_logo@1x.webp") !important;
}
.no-js .podcast-section .platform-logos-container .logos-wrapper .single-logo.yt-logo, .no-webp .podcast-section .platform-logos-container .logos-wrapper .single-logo.yt-logo, .no-webpalpha .podcast-section .platform-logos-container .logos-wrapper .single-logo.yt-logo {
  background-image: url("/images/youtube_logo@1x.png") !important;
}
@media (min-width: 576px) {
  .podcast-section .platform-logos-container .logos-wrapper .single-logo.yt-logo {
    background-size: 45% !important;
  }
}
.podcast-section .platform-logos-container .logos-wrapper .single-logo.spotify-logo {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 110px 50px;
  display: block;
  background-size: 36% !important;
}
.webp.webpalpha .podcast-section .platform-logos-container .logos-wrapper .single-logo.spotify-logo {
  background-image: url("/images/spotify_logo@1x.webp") !important;
}
.no-js .podcast-section .platform-logos-container .logos-wrapper .single-logo.spotify-logo, .no-webp .podcast-section .platform-logos-container .logos-wrapper .single-logo.spotify-logo, .no-webpalpha .podcast-section .platform-logos-container .logos-wrapper .single-logo.spotify-logo {
  background-image: url("/images/spotify_logo@1x.png") !important;
}
@media (min-width: 576px) {
  .podcast-section .platform-logos-container .logos-wrapper .single-logo.spotify-logo {
    background-size: 45% !important;
  }
}
.podcast-section .platform-logos-container .logos-wrapper .single-logo.itunes-logo {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 110px 50px;
  display: block;
  background-size: 35% !important;
}
.webp.webpalpha .podcast-section .platform-logos-container .logos-wrapper .single-logo.itunes-logo {
  background-image: url("/images/itunes_logo@1x.webp") !important;
}
.no-js .podcast-section .platform-logos-container .logos-wrapper .single-logo.itunes-logo, .no-webp .podcast-section .platform-logos-container .logos-wrapper .single-logo.itunes-logo, .no-webpalpha .podcast-section .platform-logos-container .logos-wrapper .single-logo.itunes-logo {
  background-image: url("/images/itunes_logo@1x.png") !important;
}
@media (min-width: 576px) {
  .podcast-section .platform-logos-container .logos-wrapper .single-logo.itunes-logo {
    background-size: 45% !important;
  }
}

.blog-and-ebooks-section {
  padding: 60px 20px;
  margin: 20px 0 0 0;
  background-color: #F4F6F9;
}
@media (max-width: 575px) {
  .blog-and-ebooks-section {
    border-radius: 0;
  }
}
@media (min-width: 576px) {
  .blog-and-ebooks-section {
    margin: 20px;
  }
}
.blog-and-ebooks-section .text-section p {
  text-align: center;
  margin-top: 18px;
  margin-bottom: 40px;
  color: #87919C;
  font-weight: 400;
}
@media (min-width: 768px) {
  .blog-and-ebooks-section .btn-wrapper {
    margin: 50px 0;
  }
}
.blog-and-ebooks-section .blog-and-ebooks-wrapper .slick-arrow.slick-prev, .blog-and-ebooks-section .blog-and-ebooks-wrapper .slick-arrow.slick-next {
  z-index: 9;
  height: 50px;
  width: 50px;
}
.blog-and-ebooks-section .blog-and-ebooks-wrapper .slick-arrow.slick-prev.slick-disabled, .blog-and-ebooks-section .blog-and-ebooks-wrapper .slick-arrow.slick-next.slick-disabled {
  opacity: 0;
}
.blog-and-ebooks-section .blog-and-ebooks-wrapper .slick-arrow.slick-prev:hover:before, .blog-and-ebooks-section .blog-and-ebooks-wrapper .slick-arrow.slick-next:hover:before {
  background-color: #F4F6F9 !important;
  color: #283B41 !important;
}
.blog-and-ebooks-section .blog-and-ebooks-wrapper .slick-arrow.slick-prev:before, .blog-and-ebooks-section .blog-and-ebooks-wrapper .slick-arrow.slick-next:before {
  font-family: "Font Awesome 6 Solid";
  font-weight: 900;
  font-size: 18px;
  height: 50px;
  width: 50px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #283B41;
  transition: 0.2s all;
  opacity: 1;
  box-shadow: 0px 10px 70px rgba(5, 5, 5, 0.2), 0px -10px 80px rgba(5, 5, 5, 0.1);
}
@media (min-width: 576px) {
  .blog-and-ebooks-section .blog-and-ebooks-wrapper .slick-arrow.slick-prev {
    left: -80px;
  }
}
.blog-and-ebooks-section .blog-and-ebooks-wrapper .slick-arrow.slick-prev:before {
  content: "";
}
@media (min-width: 576px) {
  .blog-and-ebooks-section .blog-and-ebooks-wrapper .slick-arrow.slick-next {
    right: -80px;
  }
}
.blog-and-ebooks-section .blog-and-ebooks-wrapper .slick-arrow.slick-next:before {
  content: "";
}
.blog-and-ebooks-section .blog-and-ebooks-wrapper .menu-wrapper {
  display: flex;
  justify-content: space-between;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto 0 auto;
}
.blog-and-ebooks-section .blog-and-ebooks-wrapper .menu-wrapper .menu-item {
  padding: 10px 10px;
  width: 120px;
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  line-height: 56px;
  cursor: pointer;
}
@media (min-width: 370px) {
  .blog-and-ebooks-section .blog-and-ebooks-wrapper .menu-wrapper .menu-item {
    width: 167px;
  }
}
@media (min-width: 768px) {
  .blog-and-ebooks-section .blog-and-ebooks-wrapper .menu-wrapper .menu-item {
    width: 276px;
    font-size: 20px;
  }
}
.blog-and-ebooks-section .blog-and-ebooks-wrapper .menu-wrapper .menu-item:after {
  content: "";
  float: left;
  background: #A8B4C1;
  opacity: 10%;
  width: 100%;
  height: 4px;
  border-radius: 50px;
  margin-top: 5px;
}
.blog-and-ebooks-section .blog-and-ebooks-wrapper .menu-wrapper .active-menu-item:after {
  background: #45BF52;
  opacity: 100%;
  transition: 0.3s;
}
.blog-and-ebooks-section .slick-list {
  margin: 0 -10px !important;
  overflow: visible !important;
}
@media (min-width: 768px) {
  .blog-and-ebooks-section .slick-list {
    height: auto;
  }
}
@media (min-width: 768px) {
  .blog-and-ebooks-section .slick-list .slick-track {
    display: flex;
    height: 100%;
  }
}
.blog-and-ebooks-section .slick-list .slick-slide {
  padding: 0 10px;
  transition: 0.3s all;
}
@media (min-width: 768px) {
  .blog-and-ebooks-section .slick-list .slick-slide {
    display: flex !important;
    height: auto;
  }
}
@media (min-width: 768px) {
  .blog-and-ebooks-section .slick-list .slick-slide > div {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .blog-and-ebooks-section .slick-list .slick-slide {
    text-align: center;
  }
}
.blog-and-ebooks-section .slick-list .slick-slide[aria-hidden=true] {
  opacity: 0.3;
  pointer-events: none;
}

.blog-section {
  margin-top: 70px;
  background-color: #F4F6F9;
  border-radius: 20px;
  overflow: hidden;
  padding: 10px 20px 20px 20px;
  margin-bottom: 20px;
  height: 100%;
  max-height: 100%;
  min-height: 800px;
}
@media (min-width: 576px) {
  .blog-section {
    margin-top: 20px;
  }
}
@media (min-width: 768px) {
  .blog-section {
    padding: 50px 50px 100px 50px;
  }
}
@media (min-width: 992px) {
  .blog-section {
    border-radius: 50px;
    min-height: 1890px;
  }
}
.blog-section.home-page-carousel-spacing {
  margin-top: 50px;
  padding: 10px 0 20px 0;
}
@media (min-width: 576px) {
  .blog-section.home-page-carousel-spacing {
    margin-top: 20px;
    padding: 50px 50px 100px 50px;
  }
}
.blog-section.white-background {
  background-color: #fff;
}
.blog-section .author-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0 40px;
}
@media (min-width: 768px) {
  .blog-section .author-header {
    align-items: center;
  }
}
.blog-section .author-header .author-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 40px;
}
.blog-section .author-header .author-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-section .author-header h1, .blog-section .author-header .h1 {
  font-weight: 700;
  font-style: Bold;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0px;
  margin-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .blog-section .author-header h1, .blog-section .author-header .h1 {
    font-size: 40px;
  }
}
@media (min-width: 1200px) {
  .blog-section .author-header h1, .blog-section .author-header .h1 {
    font-size: 50px;
  }
}
.blog-section .author-header .author-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #87919C;
  margin-bottom: 20px;
}
.blog-section .author-header .author-description {
  font-weight: 400;
  font-size: 14px;
  line-height: 27px;
  letter-spacing: 0px;
  max-width: 700px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .blog-section .author-header .author-description {
    font-size: 16px;
  }
}
.blog-section .author-header .author-socials {
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-section .author-header .author-linkedin {
  width: 40px;
  height: 40px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  margin: 0 5px;
}
.blog-section .author-header .author-linkedin:after {
  font-family: "Icomoon";
  font-weight: normal;
  color: #283B41;
  content: "";
}
.blog-section .author-header .author-telegram {
  width: 40px;
  height: 40px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  margin: 0 5px;
}
.blog-section .author-header .author-telegram:after {
  font-family: "Icomoon";
  font-weight: normal;
  color: #283B41;
  content: "";
}
.blog-section .title-section-mylead h2, .blog-section .title-section-mylead .h2 {
  font-size: 24px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .blog-section .title-section-mylead h2, .blog-section .title-section-mylead .h2 {
    font-size: 34px;
    line-height: 1.47;
  }
}
@media (min-width: 1200px) {
  .blog-section .title-section-mylead h2, .blog-section .title-section-mylead .h2 {
    font-size: 40px;
    line-height: 1.5;
  }
}
.blog-section .title-section-mylead p {
  font-size: 15px;
  line-height: 1.73;
  font-weight: 400;
}
@media (min-width: 768px) {
  .blog-section .title-section-mylead p {
    font-size: 16px;
    line-height: 1.62;
  }
}
@media (min-width: 1200px) {
  .blog-section .title-section-mylead p {
    font-size: 18px;
    line-height: 1.5;
  }
}
.blog-section .custom-title-section {
  margin-top: 60px;
  margin-bottom: 0;
}
@media (min-width: 576px) {
  .blog-section .custom-title-section {
    margin-top: 140px;
    margin-bottom: 40px;
  }
}
.blog-section .custom-title-section h1, .blog-section .custom-title-section .h1 {
  font-size: 33px;
  color: #283B41;
  margin-bottom: 40px;
  font-weight: 900;
  text-align: center;
}
@media (min-width: 576px) and (max-width: 991px) {
  .blog-section .custom-title-section h1, .blog-section .custom-title-section .h1 {
    text-align: left;
    margin-bottom: 50px;
    font-size: 43px;
  }
}
@media (min-width: 992px) {
  .blog-section .custom-title-section h1, .blog-section .custom-title-section .h1 {
    text-align: left;
    margin-bottom: 50px;
    font-size: 56px;
  }
}
.blog-section .blog-index {
  min-height: 1000px;
}
@media (min-width: 1601px) {
  .blog-section .blog-index .sidebar {
    padding-left: 30px;
  }
}
.blog-section .blog-index .sidebar .sidebar-item {
  margin-top: 20px;
  background-color: #fff;
  border-radius: 20px;
  padding: 35px 30px;
}
@media (max-width: 576px) {
  .blog-section .blog-index .sidebar .sidebar-item.sidebar-tags {
    padding: 35px 20px;
  }
}
.blog-section .blog-index .sidebar .sidebar-item .newsletter-section .form-info {
  text-align: center;
}
.blog-section .blog-index .sidebar .sidebar-item .newsletter-section .newsletter-title-section {
  display: flex;
  align-items: center;
}
.blog-section .blog-index .sidebar .sidebar-item .newsletter-section .newsletter-title-section .image-section {
  width: 60px;
  height: 60px;
  background-color: #EDFFEF;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  margin-right: 20px;
}
.blog-section .blog-index .sidebar .sidebar-item .newsletter-section .newsletter-title-section .image-section .image {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 22px 16px !important;
  display: block;
  height: 16px;
  width: 22px;
  background-image: url("/images/svg/job-offers-mail-green.svg") !important;
}
.blog-section .blog-index .sidebar .sidebar-item .newsletter-section .newsletter-title-section .title-section h2, .blog-section .blog-index .sidebar .sidebar-item .newsletter-section .newsletter-title-section .title-section .h2 {
  margin-bottom: 4px;
}
.blog-section .blog-index .sidebar .sidebar-item .newsletter-section .newsletter-title-section .title-section h5, .blog-section .blog-index .sidebar .sidebar-item .newsletter-section .newsletter-title-section .title-section .h5 {
  color: #87919C;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-align: left;
  line-height: 20px;
  margin-bottom: 0;
}
.blog-section .blog-index .sidebar .sidebar-item .newsletter-section .newsletter-title-section .title-section {
  width: calc(100% - 80px);
}
.blog-section .blog-index .sidebar .sidebar-item .newsletter-section .newsletter-form {
  position: relative;
}
.blog-section .blog-index .sidebar .sidebar-item .newsletter-section .newsletter-form .form-group {
  margin: 25px 0 20px 0;
}
.blog-section .blog-index .sidebar .sidebar-item .newsletter-section .newsletter-form .form-group .form-control {
  border-radius: 25px;
  background-color: #F4F6F9;
  border: none;
  height: 50px;
  color: #87919C;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
  padding-left: 30px;
  outline: transparent 0 !important;
  box-shadow: none !important;
}
.blog-section .blog-index .sidebar .sidebar-item .newsletter-section .newsletter-form .form-group .form-control::-webkit-input-placeholder {
  opacity: 0.6;
}
.blog-section .blog-index .sidebar .sidebar-item .newsletter-section .newsletter-form .form-group .form-control:-moz-placeholder {
  opacity: 0.6;
}
.blog-section .blog-index .sidebar .sidebar-item .newsletter-section .newsletter-form .form-group .form-control::-moz-placeholder {
  opacity: 0.6;
}
.blog-section .blog-index .sidebar .sidebar-item .newsletter-section .newsletter-form .form-group .form-control:-ms-input-placeholder {
  opacity: 0.6;
}
.blog-section .blog-index .sidebar .sidebar-item .newsletter-section .newsletter-form .form-group button {
  position: absolute;
  height: 34px;
  width: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  z-index: 4;
  top: 8px;
  right: 8px;
  border: none;
  border-radius: 100%;
  outline: transparent 0 !important;
  box-shadow: none !important;
  transition: 0.1s;
}
.blog-section .blog-index .sidebar .sidebar-item .newsletter-section .newsletter-form .form-group button:hover {
  background-color: #45BF52;
}
.blog-section .blog-index .sidebar .sidebar-item .newsletter-section .newsletter-form .form-group button:hover:before {
  color: #fff;
}
.blog-section .blog-index .sidebar .sidebar-item .newsletter-section .newsletter-form .form-group button:before {
  transition: 0.1s;
  font-family: "Icomoon";
  content: "";
  display: block;
  color: #87919C;
  font-size: 14px;
}
.blog-section .blog-index .sidebar .sidebar-item .newsletter-section .info-section h5, .blog-section .blog-index .sidebar .sidebar-item .newsletter-section .info-section .h5 {
  color: #87919C;
  font-size: 11px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  text-align: center;
  line-height: 17px;
}
.blog-section .blog-index .sidebar .sidebar-item .newsletter-section .info-section h5 a, .blog-section .blog-index .sidebar .sidebar-item .newsletter-section .info-section .h5 a {
  display: block;
  color: #87919C;
}
.blog-section .blog-index .sidebar .sidebar-item h2, .blog-section .blog-index .sidebar .sidebar-item .h2 {
  color: #283B41;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}
.blog-section .blog-index .sidebar .sidebar-item h2:not(.newsletter-title), .blog-section .blog-index .sidebar .sidebar-item .h2:not(.newsletter-title) {
  text-align: center;
  margin-bottom: 35px;
}
.blog-section .blog-index .sidebar .sidebar-item h2:not(.newsletter-title).blog-tags-title, .blog-section .blog-index .sidebar .sidebar-item .h2:not(.newsletter-title).blog-tags-title {
  margin-bottom: 25px;
}
.blog-section .blog-index .sidebar .sidebar-item .rss-section h3, .blog-section .blog-index .sidebar .sidebar-item .rss-section .h3 {
  color: #283B41;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  text-align: left;
  line-height: 22px;
  margin-bottom: 20px;
}
.blog-section .blog-index .sidebar .sidebar-item .rss-section h4, .blog-section .blog-index .sidebar .sidebar-item .rss-section .h4 {
  color: #87919C;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 20px;
  margin-bottom: 20px;
}
.blog-section .blog-index .sidebar .sidebar-item .rss-section a {
  color: #87919C;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 20px;
  margin: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  height: 40px;
  border-radius: 20px;
  border: 3px solid #F4F6F9;
  background-color: #fff;
  transition: 0.1s;
}
.blog-section .blog-index .sidebar .sidebar-item .rss-section a:hover {
  background-color: #F4F6F9;
}
.blog-section .blog-index .sidebar .sidebar-item .rss-section a:hover .plus {
  background-color: #45BF52;
}
.blog-section .blog-index .sidebar .sidebar-item .rss-section a:hover .plus:before {
  color: #fff;
}
.blog-section .blog-index .sidebar .sidebar-item .rss-section a .plus {
  transition: 0.1s;
  color: #87919C;
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F4F6F9;
  border-radius: 100%;
  margin-right: 10px;
  margin-left: 3px;
}
.blog-section .blog-index .sidebar .sidebar-item .rss-section a .plus:before {
  transition: 0.1s;
  content: "+";
  font-size: 12px;
  font-weight: 500;
  color: #B2B9C1;
}
.blog-section .blog-index .sidebar .sidebar-item .blog-tags {
  text-align: center;
  margin-top: 25px;
}
.blog-section .blog-index .sidebar .sidebar-item .blog-tags .v-slide-group__content {
  justify-content: center;
}
.blog-section .blog-index .sidebar .sidebar-item .blog-tags .v-slide-group__content .v-chip {
  border-radius: 20px;
  height: 23px;
  opacity: 0.5;
  margin: 0 2.5px 5px 2.5px;
  outline: transparent 0 !important;
  box-shadow: none !important;
  transition: 0.2s;
}
.blog-section .blog-index .sidebar .sidebar-item .blog-tags .v-slide-group__content .v-chip:hover, .blog-section .blog-index .sidebar .sidebar-item .blog-tags .v-slide-group__content .v-chip--active {
  opacity: 1;
}
.blog-section .blog-index .sidebar .sidebar-item .blog-tags .v-slide-group__content .v-chip:not(.v-chip--active) {
  background: #F4F6F9;
  opacity: 1;
}
.blog-section .blog-index .sidebar .sidebar-item .blog-tags .v-slide-group__content .v-chip span {
  color: #283B41;
  opacity: 0.5;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
}
.blog-section .blog-index .sidebar .sidebar-item .blog-tags .v-slide-group__content .v-chip--active span {
  color: #fff;
}
.blog-section .blog-index .sidebar .sidebar-item .blog-tags button {
  color: #87919C;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
  text-decoration: underline;
  margin-top: 20px;
}
.blog-section .blog-index .blog-categories {
  margin-bottom: 40px;
}
.blog-section .blog-index .blog-categories.v-tabs .v-slide-group__prev, .blog-section .blog-index .blog-categories.v-tabs .v-slide-group__next {
  display: none !important;
}
.blog-section .blog-index .blog-categories.v-tabs .v-item-group {
  background-color: transparent;
  height: 60px;
  gap: 20px;
}
.blog-section .blog-index .blog-categories.v-tabs .v-item-group .v-tabs-slider-wrapper {
  height: 3px !important;
}
.blog-section .blog-index .blog-categories.v-tabs .v-item-group .v-tabs-slider-wrapper .v-tabs-slider {
  background-color: #45BF52;
  height: 3px;
  border-radius: 1.5px;
}
.blog-section .blog-index .blog-categories.v-tabs .v-item-group .v-slide-group__content {
  display: flex;
  gap: 50px;
}
.blog-section .blog-index .blog-categories.v-tabs .v-item-group .v-slide-group__content .v-tab {
  padding: 0;
  color: #87919C !important;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
  text-transform: capitalize;
  opacity: 1;
  min-width: auto;
}
.blog-section .blog-index .blog-categories.v-tabs .v-item-group .v-slide-group__content .v-tab:before, .blog-section .blog-index .blog-categories.v-tabs .v-item-group .v-slide-group__content .v-tab.v-ripple__container {
  display: none !important;
}
.blog-section .blog-index .blog-categories.v-tabs .v-item-group .v-slide-group__content .v-tab--active {
  color: #283B41 !important;
  font-weight: 700;
}
.blog-section .blog-index .v-chip-group .v-chip--active {
  background: #45BF52;
}
.blog-section .blog-index .input-group {
  position: relative;
  align-items: center;
}
.blog-section .blog-index .input-group.active:before {
  color: #45BF52;
  opacity: 1;
}
.blog-section .blog-index .input-group:before {
  font-family: "Icomoon";
  content: "";
  display: block;
  opacity: 0.6;
  color: #87919C;
  font-size: 14px;
  position: absolute;
  z-index: 4;
  right: 30px;
}
.blog-section .blog-index .input-group .form-control {
  border-radius: 25px;
  background-color: #fff;
  height: 50px;
  border: none;
  color: #87919C;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  padding: 0 30px;
  outline: transparent 0 !important;
  box-shadow: none !important;
}
.blog-section .blog-index .input-group .form-control::-webkit-input-placeholder {
  opacity: 0.6;
}
.blog-section .blog-index .input-group .form-control:-moz-placeholder {
  opacity: 0.6;
}
.blog-section .blog-index .input-group .form-control::-moz-placeholder {
  opacity: 0.6;
}
.blog-section .blog-index .input-group .form-control:-ms-input-placeholder {
  opacity: 0.6;
}
.blog-section .blog-index .input-group .form-control:active, .blog-section .blog-index .input-group .form-control:focus {
  box-shadow: 0 12px 30px rgba(40, 59, 65, 0.14) !important;
}
.blog-section .blog-index .blog-items .row-padding {
  margin: 0 -10px;
}
.blog-section .blog-index .blog-items h4.no-posts, .blog-section .blog-index .blog-items .no-posts.h4 {
  padding: 10px;
  color: #87919C;
  font-size: 16px;
}
.blog-section .blog-index .blog-items h4.no-posts a, .blog-section .blog-index .blog-items .no-posts.h4 a {
  color: #45BF52;
  text-decoration: none;
}
.blog-section .blog-index .blog-items ul.pagination {
  margin: 20px 0 25px 0;
}
.blog-section .blog-index .blog-items ul.pagination.short-pagination {
  justify-content: space-between;
}
.blog-section .blog-index .blog-items ul.pagination.short-pagination :not(:first-child):not(:last-child) {
  display: none;
}
.blog-section .blog-index .blog-items .blog-item {
  background-color: #fff;
  margin: 0 10px 20px 10px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: 0.2s all;
}
.blog-section .blog-index .blog-items .blog-item:hover {
  background-color: #fff;
  box-shadow: 0 40px 50px rgba(0, 0, 0, 0.16);
}
.blog-section .blog-index .blog-items .blog-item:hover .image-section:before {
  opacity: 0.4;
}
.blog-section .blog-index .blog-items .blog-item:hover .image-section:after {
  opacity: 1;
}
.blog-section .blog-index .blog-items .blog-item:hover .text .author-section {
  background-color: #F4F6F9;
}
.blog-section .blog-index .blog-items .blog-item:active .image-section:after {
  color: #F28503;
  background-color: #3A4037;
  height: 120px;
  width: 120px;
}
.blog-section .blog-index .blog-items .blog-item .image-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.blog-section .blog-index .blog-items .blog-item .image-section:before {
  transition: 0.2s all;
  content: "";
  display: block;
  background-color: #000000;
  height: 100%;
  width: 100%;
  position: absolute;
  opacity: 0;
}
.blog-section .blog-index .blog-items .blog-item .image-section:after {
  transition: 0.2s all;
  font-family: "Font Awesome 6 Solid";
  content: "";
  font-size: 30px;
  position: absolute;
  opacity: 0;
  color: #45BF52;
  background-color: #283B41;
  height: 100px;
  width: 100px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.blog-section .blog-index .blog-items .blog-item .image-section .image {
  width: 100%;
  background-position: center !important;
  height: auto;
  background-size: cover;
}
.blog-section .blog-index .blog-items .blog-item .image-section .image:after {
  content: "";
  padding-bottom: 72%;
  display: block;
}
.blog-section .blog-index .blog-items .blog-item .text {
  padding: 10px 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  transition: 0.2s all;
}
.blog-section .blog-index .blog-items .blog-item .text .category {
  margin: 20px 0;
  color: #87919C;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
}
.blog-section .blog-index .blog-items .blog-item .text h2, .blog-section .blog-index .blog-items .blog-item .text .h2 {
  color: #283B41;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px 0;
  min-height: 96px;
  line-height: 24px;
}
.blog-section .blog-index .blog-items .blog-item .text .author-section {
  display: flex;
  border-radius: 30px;
  background-color: #F4F6F9;
  align-items: center;
  padding: 5px 20px 5px 5px;
  margin: 0 -20px;
  transition: 0.2s all;
}
.blog-section .blog-index .blog-items .blog-item .text .author-section .avatar {
  height: 50px;
  width: 50px;
  display: block;
  background-size: cover;
  background-position: center;
  border-radius: 100%;
  z-index: 1;
  margin-right: 10px;
}
.blog-section .blog-index .blog-items .blog-item .text .author-section .info {
  width: calc(100% - 60px);
}
.blog-section .blog-index .blog-items .blog-item .text .author-section .info h4, .blog-section .blog-index .blog-items .blog-item .text .author-section .info .h4 {
  color: #283B41;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: 19.5px;
  margin-bottom: 0;
}
.blog-section .blog-index .blog-items .blog-item .text .author-section .info .numbers {
  display: flex;
  justify-content: space-between;
  color: #A8B4C1;
  font-weight: 500;
  max-width: 250px;
  font-size: 11px;
  align-items: center;
  height: 23px;
  position: relative;
  top: 2px;
}
.blog-section .blog-index .blog-items .blog-item .text .author-section .info .numbers .date, .blog-section .blog-index .blog-items .blog-item .text .author-section .info .numbers .views, .blog-section .blog-index .blog-items .blog-item .text .author-section .info .numbers .comments {
  height: 100%;
  display: flex;
  align-items: center;
}
.blog-section .blog-index .blog-items .blog-item .text .author-section .info .numbers .date:before, .blog-section .blog-index .blog-items .blog-item .text .author-section .info .numbers .views:before, .blog-section .blog-index .blog-items .blog-item .text .author-section .info .numbers .comments:before {
  font-weight: 400;
  margin-right: 8px;
  font-family: "Icomoon";
  color: #A8B4C1;
}
.blog-section .blog-index .blog-items .blog-item .text .author-section .info .numbers .date {
  text-transform: capitalize;
}
.blog-section .blog-index .blog-items .blog-item .text .author-section .info .numbers .date:before {
  top: -2px;
  position: relative;
  font-size: 12px;
  content: "";
}
@media (min-width: 576px) and (max-width: 640px) {
  .blog-section .blog-index .blog-items .blog-item .text .author-section .info .numbers .views {
    display: none;
  }
}
@media (min-width: 1200px) and (max-width: 1360px) {
  .blog-section .blog-index .blog-items .blog-item .text .author-section .info .numbers .views {
    display: none;
  }
}
.blog-section .blog-index .blog-items .blog-item .text .author-section .info .numbers .views:before {
  position: relative;
  font-size: 12px;
  content: "";
  top: -1px;
}
.blog-section .blog-index .blog-items .blog-item .text .author-section .info .numbers .comments:before {
  position: relative;
  font-size: 14px;
  content: "";
}

.job-offers-section {
  background-color: #F4F6F9;
}
.job-offers-section.first-section {
  margin-top: 85px;
  padding-top: 50px;
}
@media (min-width: 576px) {
  .job-offers-section.first-section {
    margin-top: 20px;
    padding-top: 150px;
  }
}
.job-offers-section h1, .job-offers-section .h1 {
  color: #283B41;
  font-size: 56px;
  font-weight: 900;
  text-align: center;
  line-height: 60px;
  margin-bottom: 40px;
}
@media (max-width: 576px) {
  .job-offers-section h1, .job-offers-section .h1 {
    font-size: 33px;
    line-height: 40px;
  }
}
.job-offers-section h4, .job-offers-section .h4 {
  color: #45BF52;
  font-size: 14px;
  font-weight: 700;
  line-height: 36px;
  text-align: center;
  text-transform: uppercase;
}
.job-offers-section h4 a, .job-offers-section .h4 a {
  color: #45BF52;
  text-decoration: none;
}
@media (max-width: 576px) {
  .job-offers-section h4, .job-offers-section .h4 {
    line-height: 20px;
  }
}

ul.pagination {
  margin-top: 50px;
  display: flex;
}
ul.pagination.short-pagination .page-item {
  display: none;
}
ul.pagination.short-pagination .page-item:first-child, ul.pagination.short-pagination .page-item:nth-child(2), ul.pagination.short-pagination .page-item:nth-child(3), ul.pagination.short-pagination .page-item:nth-last-child(2), ul.pagination.short-pagination .page-item:nth-last-child(3), ul.pagination.short-pagination .page-item:last-child, ul.pagination.short-pagination .page-item.active {
  display: flex;
}
ul.pagination .page-item:not(:first-child) {
  margin-left: 10px;
}
ul.pagination .page-item.active .page-link {
  background-color: #45BF52;
  color: #fff;
}
ul.pagination .page-item .page-link {
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #87919C;
  border: none;
  border-radius: 100%;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0;
  outline: transparent 0 !important;
  box-shadow: none !important;
  transition: 0.1s;
}
ul.pagination .page-item .page-link span {
  display: none;
}
ul.pagination .page-item .page-link:hover {
  box-shadow: 0 0 30px -15px #283B41 !important;
}
ul.pagination .page-item.pagination-prev-nav .page-link:before {
  content: "";
}
ul.pagination .page-item.pagination-next-nav .page-link:before {
  content: "";
}
ul.pagination .page-item.pagination-prev-nav .page-link:before, ul.pagination .page-item.pagination-next-nav .page-link:before {
  font-family: "Icomoon";
  display: block;
  font-size: 11px;
}
ul.pagination .page-item.pagination-prev-nav.disabled, ul.pagination .page-item.pagination-next-nav.disabled {
  opacity: 0.1;
}

.company-single-job-offer-section {
  background-color: #F4F6F9;
  padding: 23px 20px 60px 20px;
  margin-top: 70px;
  margin-bottom: 20px;
  overflow: visible;
}
@media (min-width: 576px) {
  .company-single-job-offer-section {
    padding: 60px 20px;
    margin-top: 20px;
  }
}
@media (min-width: 992px) {
  .company-single-job-offer-section {
    padding: 60px 0;
  }
}
@media (min-width: 1200px) {
  .company-single-job-offer-section {
    padding: 60px 20px;
  }
}

.company-form-section {
  position: relative;
  width: 100%;
}
.company-form-section .content-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border-radius: 30px;
  width: 100%;
  margin-top: 10px;
}
.company-form-section .content-form .fade-enter-active,
.company-form-section .content-form .fade-leave-active {
  transition: opacity 0.5s ease;
}
.company-form-section .content-form .fade-enter-from,
.company-form-section .content-form .fade-leave-to {
  opacity: 0;
}
.company-form-section .content-form h3, .company-form-section .content-form .h3 {
  color: #283B41;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0;
  width: 100%;
  max-width: 180px;
}
.company-form-section .content-form h5, .company-form-section .content-form .h5 {
  color: #87919C;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  margin: 0;
  width: 100%;
  max-width: 180px;
}
.company-form-section .content-form hr {
  opacity: 1;
  color: #45BF52;
  border-radius: 1.5px;
  height: 3px;
  width: 100%;
  max-width: 60px;
  margin: 20px auto;
}
.company-form-section .content-form .info {
  color: #87919C;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 19px;
}

.company-contact-section {
  background-color: #F4F6F9;
  padding: 23px 20px 60px 20px;
  margin-top: 70px;
  margin-bottom: 20px;
  overflow: visible;
}
@media (min-width: 576px) {
  .company-contact-section {
    padding: 60px 20px;
    margin-top: 20px;
  }
}
@media (min-width: 576px) {
  .company-contact-section .company-contact-section-wrapper {
    margin-top: 70px;
  }
}
.company-contact-section .container-contact {
  margin: 0 auto;
  padding: 0;
  max-width: 1180px;
}
.company-contact-section .row > * {
  padding-right: 10px;
  padding-left: 10px;
}
@media (min-width: 1200px) {
  .company-contact-section .row > * {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 768px) {
  .company-contact-section .col-md-5.custom {
    width: 40.666667% !important;
  }
}
@media (min-width: 768px) {
  .company-contact-section .col-md-7.custom {
    width: 59.333333% !important;
  }
}
@media (max-width: 768px) {
  .company-contact-section .left-column {
    margin-bottom: 30px;
  }
}
.company-contact-section .left-column .contact-details-section {
  width: 100%;
  height: auto;
  border-radius: 20px;
  background-color: #fff;
  overflow: hidden;
}
.company-contact-section .left-column .contact-details-section .contact-details-container {
  border-bottom: 2px solid #F4F6F9;
  padding: 30px 30px 0 30px;
}
@media (min-width: 768px) {
  .company-contact-section .left-column .contact-details-section .contact-details-container {
    padding: 40px 40px 0 40px;
  }
}
.company-contact-section .left-column .contact-details-section .contact-details-container h2, .company-contact-section .left-column .contact-details-section .contact-details-container .h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 40px;
}
.company-contact-section .left-column .contact-details-section .contact-details-container a {
  margin-bottom: 38px;
}
.company-contact-section .left-column .contact-details-section .contact-details-container a.sign-up-global {
  flex-wrap: wrap;
}
@media (max-width: 400px) {
  .company-contact-section .left-column .contact-details-section .contact-details-container a.sign-up-global {
    padding: 11px 20px;
  }
}
@media (min-width: 768px) {
  .company-contact-section .left-column .contact-details-section .contact-details-container a.sign-up-global {
    padding: 11px 20px;
  }
}
@media (min-width: 992px) {
  .company-contact-section .left-column .contact-details-section .contact-details-container a.sign-up-global {
    padding: 13px 27px 10px 27px;
  }
}
.company-contact-section .left-column .contact-details-section .contact-details-container a.phone-number {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #87919C;
  display: flex;
}
.company-contact-section .left-column .contact-details-section .contact-details-container a.phone-number .image-phone {
  margin-right: 15px;
}
.company-contact-section .left-column .contact-details-section .contact-details-container a.phone-number .image-phone:after {
  font-family: "Icomoon";
  content: "";
  font-size: 13px;
  font-weight: 400;
}
.company-contact-section .left-column .contact-details-section .contact-details-container a.phone-number:hover {
  color: #45BF52;
  transition: 0.3s;
}
.company-contact-section .left-column .contact-details-section .contact-details-container .alt-contact-methods {
  margin-bottom: 20px;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.company-contact-section .left-column .contact-details-section .contact-details-container .alt-contact-methods h2, .company-contact-section .left-column .contact-details-section .contact-details-container .alt-contact-methods .h2 {
  margin-bottom: 0;
}
.company-contact-section .left-column .contact-details-section .contact-details-container .alt-contact-methods h2.alt-contact-header .accordion-button, .company-contact-section .left-column .contact-details-section .contact-details-container .alt-contact-methods .alt-contact-header.h2 .accordion-button {
  outline: transparent 0 !important;
  box-shadow: none !important;
  padding: 10px 30px 4px 30px;
  font-size: 14px;
  font-weight: 500;
  color: #87919C;
  text-align: left;
  line-height: 24px;
  background-color: #F4F6F9;
  border-bottom: 2px solid #F4F6F9;
}
.company-contact-section .left-column .contact-details-section .contact-details-container .alt-contact-methods h2.alt-contact-header .accordion-button:not(.collapsed), .company-contact-section .left-column .contact-details-section .contact-details-container .alt-contact-methods .alt-contact-header.h2 .accordion-button:not(.collapsed) {
  background-color: #F4F6F9;
}
.company-contact-section .left-column .contact-details-section .contact-details-container .alt-contact-methods h2.alt-contact-header .accordion-button:not(.collapsed):after, .company-contact-section .left-column .contact-details-section .contact-details-container .alt-contact-methods .alt-contact-header.h2 .accordion-button:not(.collapsed):after {
  transform: rotate(90deg);
}
.company-contact-section .left-column .contact-details-section .contact-details-container .alt-contact-methods h2.alt-contact-header .accordion-button:after, .company-contact-section .left-column .contact-details-section .contact-details-container .alt-contact-methods .alt-contact-header.h2 .accordion-button:after {
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 7px 7px !important;
  display: block;
  height: 7px;
  width: 7px;
  background-image: url("/images/svg/chevron-right-black.svg") !important;
  transform: rotate(0deg);
  margin-left: 20px;
}
.company-contact-section .left-column .contact-details-section .contact-details-container .alt-contact-methods .alt-contact-collapse {
  background-color: #F4F6F9;
}
.company-contact-section .left-column .contact-details-section .contact-details-container .alt-contact-methods .alt-contact-collapse .alt-contact-body {
  padding: 10px 30px;
}
.company-contact-section .left-column .contact-details-section .contact-details-container .alt-contact-methods .alt-contact-collapse .alt-contact-body a {
  display: inline-flex;
  margin-top: 30px;
  text-decoration: none;
  margin-bottom: 0;
  margin-right: 0;
  font-size: 14px;
  color: #87919C;
  font-weight: 500;
  background-color: #F4F6F9;
  padding: 10px 15px;
  border-radius: 35px;
  width: 100%;
  word-break: break-word;
  transition: 0.3s all;
}
@media (min-width: 576px) {
  .company-contact-section .left-column .contact-details-section .contact-details-container .alt-contact-methods .alt-contact-collapse .alt-contact-body a {
    width: auto;
  }
}
.company-contact-section .left-column .contact-details-section .contact-details-container .alt-contact-methods .alt-contact-collapse .alt-contact-body a:hover {
  background-color: #87919C;
  color: #fff;
  transition: 0.3s;
}
.company-contact-section .left-column .contact-details-section .contact-details-container .alt-contact-methods .alt-contact-collapse .alt-contact-body a[aria-expanded=true] {
  transition: 0.3s;
  display: none;
}
.company-contact-section .left-column .contact-details-section .contact-details-container .alt-contact-methods .alt-contact-collapse .alt-contact-body ul {
  list-style-type: none;
  padding-left: 0;
}
.company-contact-section .left-column .contact-details-section .contact-details-container .alt-contact-methods .alt-contact-collapse .alt-contact-body ul li {
  color: #87919C;
  font-size: 16px;
}
.company-contact-section .left-column .contact-details-section .contact-details-container .alt-contact-methods .alt-contact-collapse .alt-contact-body ul li:hover a .single-icon:after {
  transition: 0.3s;
  color: #fff;
}
.company-contact-section .left-column .contact-details-section .contact-details-container .alt-contact-methods .alt-contact-collapse .alt-contact-body ul li a {
  margin-top: 0;
}
.company-contact-section .left-column .contact-details-section .contact-details-container .alt-contact-methods .alt-contact-collapse .alt-contact-body ul li a .single-icon {
  margin-right: 15px;
}
.company-contact-section .left-column .contact-details-section .contact-details-container .alt-contact-methods .alt-contact-collapse .alt-contact-body ul li a .single-icon:after {
  font-family: "Icomoon";
  font-weight: normal;
  color: #87919C;
}
.company-contact-section .left-column .contact-details-section .contact-details-container .alt-contact-methods .alt-contact-collapse .alt-contact-body ul li a .single-icon.icon-skype {
  font-size: 13px;
}
.company-contact-section .left-column .contact-details-section .contact-details-container .alt-contact-methods .alt-contact-collapse .alt-contact-body ul li a .single-icon.icon-skype:after {
  content: "";
}
.company-contact-section .left-column .contact-details-section .contact-details-container .alt-contact-methods .alt-contact-collapse .alt-contact-body ul li a .single-icon.icon-viber {
  font-size: 13px;
}
.company-contact-section .left-column .contact-details-section .contact-details-container .alt-contact-methods .alt-contact-collapse .alt-contact-body ul li a .single-icon.icon-viber:after {
  content: "";
}
.company-contact-section .left-column .contact-details-section .contact-details-container .alt-contact-methods .alt-contact-collapse .alt-contact-body ul li a .single-icon.icon-telegram {
  font-size: 13px;
}
.company-contact-section .left-column .contact-details-section .contact-details-container .alt-contact-methods .alt-contact-collapse .alt-contact-body ul li a .single-icon.icon-telegram:after {
  content: "";
}
.company-contact-section .left-column .contact-details-section .contact-details-container .alt-contact-methods .alt-contact-collapse .alt-contact-body ul li a .single-icon.icon-discord {
  font-size: 13px;
}
.company-contact-section .left-column .contact-details-section .contact-details-container .alt-contact-methods .alt-contact-collapse .alt-contact-body ul li a .single-icon.icon-discord:after {
  content: "";
}
.company-contact-section .left-column .contact-details-section .contact-details-container .alt-contact-methods .alt-contact-collapse .alt-contact-body ul li a .single-icon.icon-whatsapp {
  font-size: 15px;
}
.company-contact-section .left-column .contact-details-section .contact-details-container .alt-contact-methods .alt-contact-collapse .alt-contact-body ul li a .single-icon.icon-whatsapp:after {
  font-family: "Font Awesome 6 Brands";
  content: "";
  content: "";
  font-size: 15px;
  font-weight: 500;
}
.company-contact-section .left-column .contact-details-section .contact-details-container .social-media-wrapper {
  margin: 40px 0 0 0;
}
.company-contact-section .left-column .contact-details-section .contact-details-container .social-media-wrapper h4, .company-contact-section .left-column .contact-details-section .contact-details-container .social-media-wrapper .h4 {
  font-size: 16px;
  font-weight: 700;
  color: #283B41;
  margin-bottom: 20px;
}
.company-contact-section .left-column .contact-details-section .contact-details-container .social-media-wrapper .icons-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 210px;
}
.company-contact-section .left-column .contact-details-section .contact-details-container .social-media-wrapper .icons-wrapper .single-icon {
  text-decoration: none;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
}
.company-contact-section .left-column .contact-details-section .contact-details-container .social-media-wrapper .icons-wrapper .single-icon:hover:after {
  transform: scale(1.2);
  transition: 0.3s;
}
.company-contact-section .left-column .contact-details-section .contact-details-container .social-media-wrapper .icons-wrapper .single-icon:after {
  font-family: "Icomoon";
  font-weight: normal;
  color: #87919C;
}
.company-contact-section .left-column .contact-details-section .contact-details-container .social-media-wrapper .icons-wrapper .single-icon.icon-facebook {
  font-size: 12px;
}
.company-contact-section .left-column .contact-details-section .contact-details-container .social-media-wrapper .icons-wrapper .single-icon.icon-facebook:after {
  content: "";
}
.company-contact-section .left-column .contact-details-section .contact-details-container .social-media-wrapper .icons-wrapper .single-icon.icon-instagram {
  font-size: 15px;
}
.company-contact-section .left-column .contact-details-section .contact-details-container .social-media-wrapper .icons-wrapper .single-icon.icon-instagram:after {
  content: "";
}
.company-contact-section .left-column .contact-details-section .contact-details-container .social-media-wrapper .icons-wrapper .single-icon.icon-linkedin {
  font-size: 12px;
}
.company-contact-section .left-column .contact-details-section .contact-details-container .social-media-wrapper .icons-wrapper .single-icon.icon-linkedin:after {
  content: "";
}
.company-contact-section .left-column .contact-details-section .contact-details-container .social-media-wrapper .icons-wrapper .single-icon.icon-youtube {
  font-size: 14px;
}
.company-contact-section .left-column .contact-details-section .contact-details-container .social-media-wrapper .icons-wrapper .single-icon.icon-youtube:after {
  content: "";
}
.company-contact-section .left-column .contact-details-section .contact-details-container .social-media-wrapper .icons-wrapper .single-icon.icon-twitter {
  font-size: 15px;
}
.company-contact-section .left-column .contact-details-section .contact-details-container .social-media-wrapper .icons-wrapper .single-icon.icon-twitter:after {
  content: "";
}
.company-contact-section .left-column .contact-details-section .contact-details-container .social-media-wrapper .icons-wrapper .single-icon.icon-skype {
  font-size: 13px;
}
.company-contact-section .left-column .contact-details-section .contact-details-container .social-media-wrapper .icons-wrapper .single-icon.icon-skype:after {
  content: "";
}
.company-contact-section .left-column .contact-details-section .contact-details-container .social-media-wrapper .icons-wrapper .single-icon.icon-discord {
  font-size: 13px;
}
.company-contact-section .left-column .contact-details-section .contact-details-container .social-media-wrapper .icons-wrapper .single-icon.icon-discord:after {
  content: "";
}
.company-contact-section .left-column .contact-details-section .company-details-container {
  padding: 40px 10px 10px 10px;
  min-height: 200px;
}
.company-contact-section .left-column .contact-details-section .company-details-container .additional-padding {
  padding: 0 20px;
}
@media (min-width: 576px) {
  .company-contact-section .left-column .contact-details-section .company-details-container .additional-padding {
    padding: 0 30px;
  }
}
.company-contact-section .left-column .contact-details-section .company-details-container .logo-wrapper {
  width: 100%;
  height: 40px;
  margin: 0 0 40px 28px;
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 113px 30px !important;
  display: block;
  height: 30px;
  width: 113px;
  background-image: url("/images/svg/logo_ml_dark.svg") !important;
}
.company-contact-section .left-column .contact-details-section .company-details-container .address-wrapper h3, .company-contact-section .left-column .contact-details-section .company-details-container .address-wrapper .h3 {
  font-size: 16px;
  font-weight: 900;
  color: #87919C;
  display: flex;
  line-height: 24px;
  margin-bottom: 0;
}
.company-contact-section .left-column .contact-details-section .company-details-container .address-wrapper h3 .location, .company-contact-section .left-column .contact-details-section .company-details-container .address-wrapper .h3 .location {
  margin-right: 13px;
}
.company-contact-section .left-column .contact-details-section .company-details-container .address-wrapper h3 .location:after, .company-contact-section .left-column .contact-details-section .company-details-container .address-wrapper .h3 .location:after {
  font-family: "Icomoon";
  content: "";
  font-size: 16px;
  font-weight: 400;
}
.company-contact-section .left-column .contact-details-section .company-details-container .address-wrapper ul {
  list-style-type: none;
  padding-left: 24px;
  margin-bottom: 60px;
}
.company-contact-section .left-column .contact-details-section .company-details-container .address-wrapper ul li {
  color: #87919C;
  font-size: 16px;
  font-weight: 500;
}
.company-contact-section .left-column .contact-details-section .company-details-container .address-wrapper ul li:nth-of-type(4) {
  margin-bottom: 24px;
}
.company-contact-section .left-column .contact-details-section .company-details-container .map-container {
  position: relative;
  height: 205px;
  width: 100%;
  border-radius: 20px;
}
.company-contact-section .left-column .contact-details-section .company-details-container .map-container .map-wrapper {
  height: 205px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.company-contact-section .left-column .contact-details-section .company-details-container .map-container .map-btn {
  text-decoration: none;
  position: absolute;
  top: -18px;
  left: 40px;
  text-decoration: none;
  font-size: 13px;
  padding: 7px 17px;
  font-weight: 500;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  color: #87919C;
  background-color: #fff;
  display: inline-flex;
  border: 3px solid #F4F6F9;
  z-index: 1;
  transition: 0.2s all;
}
.company-contact-section .left-column .contact-details-section .company-details-container .map-container .map-btn:after {
  font-family: "Icomoon";
  content: "";
  font-size: 10px;
  font-weight: 400;
  margin-left: 10px;
}
.company-contact-section .left-column .contact-details-section .company-details-container .map-container .map-btn:hover {
  color: #fff;
  background-color: #4ACC58;
  transition: 0.3s;
}
.company-contact-section .left-column .contact-details-section .company-details-container .map-container .map-btn:active {
  color: #fff;
  background-color: #4ACC58;
  transform: translateY(3px);
}
.company-contact-section .right-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #fff;
  border-radius: 30px;
  width: 100%;
  padding: 30px;
  min-height: 993px;
}
@media (min-width: 768px) {
  .company-contact-section .right-column {
    padding: 40px;
  }
}
.company-contact-section .right-column h3, .company-contact-section .right-column .h3 {
  color: #283B41;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 30px 0;
}
@media (min-width: 1200px) {
  .company-contact-section .right-column h3, .company-contact-section .right-column .h3 {
    font-size: 22px;
  }
}
.company-contact-section .right-column h4, .company-contact-section .right-column .h4 {
  color: #283B41;
  font-size: 16px;
  font-weight: 700;
}
.company-contact-section .right-column p {
  color: #87919C;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  margin: 0 0 40px 0;
}
.company-contact-section .right-column .company-details-container {
  padding: 10px 0;
  min-height: 200px;
}
.company-contact-section .right-column .company-details-container .logo-wrapper {
  width: 100%;
  height: 40px;
  margin: 0 0 40px 0;
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: 113px 30px !important;
  display: block;
  height: 30px;
  width: 113px;
  background-image: url("/images/svg/logo_ml_dark.svg") !important;
}
.company-contact-section .right-column .company-details-container .impressum-wrapper h3, .company-contact-section .right-column .company-details-container .impressum-wrapper .h3 {
  font-size: 16px;
  font-weight: 900;
  color: #87919C;
  display: flex;
  line-height: 24px;
  margin-bottom: 0;
}
.company-contact-section .right-column .company-details-container .impressum-wrapper ul {
  list-style-type: none;
  padding-left: 0;
}
.company-contact-section .right-column .company-details-container .impressum-wrapper ul li {
  color: #87919C;
  font-size: 16px;
  font-weight: 500;
}
.company-contact-section .right-column .company-details-container .impressum-wrapper ul li:nth-of-type(4) {
  margin-bottom: 24px;
}

#map {
  height: 100%;
}

.post-content-section {
  border-radius: 20px;
  padding: 0 20px 20px 40px;
}
@media (min-width: 576px) {
  .post-content-section {
    border-radius: 50px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .post-content-section {
    padding: 80px 20px;
  }
}
@media (min-width: 992px) {
  .post-content-section {
    padding: 100px 20px;
  }
}
.post-content-section.white {
  background-color: #fff;
}
.post-content-section.white .blog-preview {
  background-color: #fff;
}
.post-content-section.white .blog-preview .text {
  background-color: #F4F6F9;
}
.post-content-section:not(.white) {
  background-color: #F4F6F9;
}
.post-content-section:not(.white) .blog-preview {
  background-color: #F4F6F9;
}
@media (max-width: 767px) {
  .post-content-section .blog-preview .content {
    align-items: flex-start;
  }
}

.post-section {
  margin-top: 70px;
  background-color: #F4F6F9;
  overflow: hidden;
  padding: 10px 10px 20px 10px;
  margin-bottom: 20px;
  height: 100%;
  max-height: 100%;
  border-radius: 20px;
}
@media (min-width: 576px) {
  .post-section {
    padding: 10px 20px 20px 20px;
    border-radius: 50px;
    margin-top: 20px;
  }
}
.post-section .post-content {
  border-radius: 20px;
  margin-top: 10px;
  background-color: #fff;
}
@media (min-width: 576px) {
  .post-section .post-content {
    border-radius: 50px;
    margin-top: 75px;
  }
}
.post-section .post-content .blog-img-container {
  padding: 10px;
}
.post-section .post-content .blog-img-container .blog-img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
@media (min-width: 576px) {
  .post-section .post-content .blog-img-container .blog-img {
    border-radius: 40px;
  }
}
.post-section .post-content .content {
  border-bottom: 2px solid #F4F6F9;
  padding: 50px 10px 0 10px;
  text-align: center;
}
.post-section .post-content .content .btn-style1 {
  padding: 15px;
  background: #45bf52;
  color: #ffffff;
  border-radius: 100px;
  font-weight: 500;
  text-decoration: none;
  min-width: 165px;
  display: inline-block;
  text-align: center;
}
@media (min-width: 576px) {
  .post-section .post-content .content {
    padding: 50px 20px;
  }
}
@media (max-width: 575px) {
  .post-section .post-content .content {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}
@media (max-width: 767px) {
  .post-section .post-content .content {
    background-color: #fff;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .post-section .post-content .content {
    padding: 50px 50px 80px 50px;
  }
}
@media (min-width: 992px) {
  .post-section .post-content .content {
    padding: 50px 120px 80px 120px;
  }
}
.post-section .post-content .content img {
  max-width: 100%;
  height: auto;
}
.post-section .post-content .content .posts-nav {
  display: flex;
  flex-direction: column;
  text-align: left;
}
@media (min-width: 576px) {
  .post-section .post-content .content .posts-nav {
    flex-direction: row;
    justify-content: space-between;
    gap: 25px;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .post-section .post-content .content .posts-nav .next-post-section {
    border-top: 3px solid #F4F6F9;
    margin: 20px -20px;
    padding: 20px;
  }
}
.post-section .post-content .content .posts-nav .prev-post-section, .post-section .post-content .content .posts-nav .next-post-section {
  font-size: 15px;
  text-decoration: none;
  margin-top: 30px;
}
@media (min-width: 576px) {
  .post-section .post-content .content .posts-nav .prev-post-section, .post-section .post-content .content .posts-nav .next-post-section {
    margin-top: 50px;
  }
}
@media (min-width: 576px) {
  .post-section .post-content .content .posts-nav .prev-post-section, .post-section .post-content .content .posts-nav .next-post-section {
    max-width: 280px;
  }
}
.post-section .post-content .content .posts-nav .prev-post-section:hover h5, .post-section .post-content .content .posts-nav .prev-post-section:hover .h5, .post-section .post-content .content .posts-nav .next-post-section:hover h5, .post-section .post-content .content .posts-nav .next-post-section:hover .h5 {
  text-decoration: underline;
  -webkit-text-decoration-color: #A8B4C1;
          text-decoration-color: #A8B4C1;
}
.post-section .post-content .content .posts-nav .prev-post-section:hover h3, .post-section .post-content .content .posts-nav .prev-post-section:hover .h3, .post-section .post-content .content .posts-nav .next-post-section:hover h3, .post-section .post-content .content .posts-nav .next-post-section:hover .h3 {
  text-decoration: underline;
  -webkit-text-decoration-color: #283B41;
          text-decoration-color: #283B41;
}
.post-section .post-content .content .posts-nav .prev-post-section h5, .post-section .post-content .content .posts-nav .prev-post-section .h5, .post-section .post-content .content .posts-nav .next-post-section h5, .post-section .post-content .content .posts-nav .next-post-section .h5 {
  color: #A8B4C1;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  margin-bottom: 15px;
  transition: 0.2s;
}
.post-section .post-content .content .posts-nav .prev-post-section h3, .post-section .post-content .content .posts-nav .prev-post-section .h3, .post-section .post-content .content .posts-nav .next-post-section h3, .post-section .post-content .content .posts-nav .next-post-section .h3 {
  color: #283B41;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 24px;
  margin: 0;
}
@media (min-width: 576px) {
  .post-section .post-content .content .posts-nav .prev-post-section h3, .post-section .post-content .content .posts-nav .prev-post-section .h3, .post-section .post-content .content .posts-nav .next-post-section h3, .post-section .post-content .content .posts-nav .next-post-section .h3 {
    font-size: 18px;
  }
}
@media (min-width: 576px) {
  .post-section .post-content .content .posts-nav .prev-post-section {
    text-align: left;
  }
}
@media (min-width: 576px) {
  .post-section .post-content .content .posts-nav .next-post-section {
    text-align: right;
  }
}
.post-section .post-content .custom-title-section {
  padding: 45px 20px 20px;
  text-align: left;
}
@media (max-width: 767px) {
  .post-section .post-content .custom-title-section {
    background-color: #fff;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .post-section .post-content .custom-title-section {
    padding: 50px 120px 20px;
  }
}
.post-section .post-content .custom-title-section h5, .post-section .post-content .custom-title-section .h5 {
  font-size: 14px;
  font-weight: 900;
  font-style: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #87919C;
  margin: 0;
}
.post-section .post-content .custom-title-section h5 a, .post-section .post-content .custom-title-section .h5 a {
  color: #87919C;
}
.post-section .post-content .custom-title-section h1, .post-section .post-content .custom-title-section .h1 {
  color: #283B41;
  font-weight: 700;
  font-style: normal;
  font-size: 33px;
  line-height: 40px;
  margin: 15px 0;
}
@media (min-width: 576px) {
  .post-section .post-content .custom-title-section h1, .post-section .post-content .custom-title-section .h1 {
    line-height: 60px;
    font-size: 46px;
    margin: 20px 0 40px 0;
  }
}
.post-section .post-content .custom-title-section .author-section {
  display: flex;
  border-radius: 30px;
  background-color: #fff;
  align-items: center;
  transition: 0.2s all;
}
@media (max-width: 767px) {
  .post-section .post-content .custom-title-section .author-section {
    background-color: #fff;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    text-align: center;
    flex-direction: column;
  }
}
.post-section .post-content .custom-title-section .author-section .avatar-section {
  display: flex;
  align-items: center;
  margin-top: 15px;
  text-decoration: none;
  color: #283B41;
}
@media (min-width: 576px) {
  .post-section .post-content .custom-title-section .author-section .avatar-section {
    margin-top: 0;
  }
}
.post-section .post-content .custom-title-section .author-section .avatar-section .avatar {
  height: 40px;
  width: 40px;
  display: block;
  background-size: cover;
  background-position: center;
  border-radius: 100%;
  z-index: 1;
  margin-right: 20px;
}
.post-section .post-content .custom-title-section .author-section .avatar-section h4, .post-section .post-content .custom-title-section .author-section .avatar-section .h4 {
  color: #283B41;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 19.5px;
  margin-bottom: 0;
  margin-right: 20px;
  display: flex;
  width: -moz-max-content;
  width: max-content;
}
.post-section .post-content .custom-title-section .author-section .info {
  width: 100%;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .post-section .post-content .custom-title-section .author-section .info {
    width: calc(100% - 60px);
    margin-top: 0;
  }
}
.post-section .post-content .custom-title-section .author-section .info .numbers {
  display: flex;
  justify-content: center;
  color: #87919C;
  font-weight: 500;
  font-size: 14px;
  align-items: center;
  height: 23px;
  flex-wrap: wrap;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
@media (min-width: 768px) {
  .post-section .post-content .custom-title-section .author-section .info .numbers {
    justify-content: flex-start;
  }
}
@media (min-width: 768px) {
  .post-section .post-content .custom-title-section .author-section .info .numbers {
    color: #A8B4C1;
  }
}
.post-section .post-content .custom-title-section .author-section .info .numbers .date, .post-section .post-content .custom-title-section .author-section .info .numbers .views, .post-section .post-content .custom-title-section .author-section .info .numbers .comments, .post-section .post-content .custom-title-section .author-section .info .numbers .edit {
  height: 100%;
  display: flex;
  align-items: center;
}
.post-section .post-content .custom-title-section .author-section .info .numbers .date:before, .post-section .post-content .custom-title-section .author-section .info .numbers .views:before, .post-section .post-content .custom-title-section .author-section .info .numbers .comments:before, .post-section .post-content .custom-title-section .author-section .info .numbers .edit:before {
  font-weight: 400;
  margin-right: 8px;
  font-family: "Icomoon";
  color: #87919C;
}
@media (min-width: 576px) {
  .post-section .post-content .custom-title-section .author-section .info .numbers .date:before, .post-section .post-content .custom-title-section .author-section .info .numbers .views:before, .post-section .post-content .custom-title-section .author-section .info .numbers .comments:before, .post-section .post-content .custom-title-section .author-section .info .numbers .edit:before {
    color: #A8B4C1;
  }
}
.post-section .post-content .custom-title-section .author-section .info .numbers .date {
  text-transform: capitalize;
}
.post-section .post-content .custom-title-section .author-section .info .numbers .date:before {
  font-size: 14px;
  content: "";
}
.post-section .post-content .custom-title-section .author-section .info .numbers .views:before {
  font-size: 14px;
  content: "";
}
.post-section .post-content .custom-title-section .author-section .info .numbers .comments:before {
  position: relative;
  font-size: 14px;
  content: "";
}
.post-section .post-content .custom-title-section .author-section .info .numbers .edit {
  text-transform: capitalize;
}
.post-section .post-content .custom-title-section .author-section .info .numbers .edit:before {
  position: relative;
  font-weight: 400;
  font-family: "Icomoon";
  font-size: 10px;
  content: "";
}
.post-section .post-content .last-update {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
  border-radius: 15px;
  background: #0075FF1A;
  background: radial-gradient(circle farthest-corner at 50% 100%, #0075FF -30%, #0075FF1A 50%, #0075FF1A 100%);
  padding: 8px;
}
@media (min-width: 576px) {
  .post-section .post-content .last-update {
    padding: 12px 12px 12px 24px;
    flex-direction: row;
    background: linear-gradient(to right, #0075FF1A 0%, #0075FF1A 70%, #0075FF 100%);
  }
}
.post-section .post-content .last-update p {
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #0075ff;
  margin: 0;
  line-height: 110%;
}
.post-section .post-content .last-update .description {
  height: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.post-section .post-content .last-update .description:before {
  font-family: "Icomoon";
  content: "";
  font-size: 18px;
  color: #0075ff;
  margin-right: 8px;
}
.post-section .post-content .last-update .description.support:before {
  content: "";
}
.post-section .post-content .last-update .button-wrapper {
  display: flex;
  padding: 12px;
  gap: 12px;
}
.post-section .post-content .last-update .button-wrapper .btn-discord {
  background-color: #fff;
  color: #5865F2;
  border-radius: 100px;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0px;
}
.post-section .post-content .last-update .button-wrapper .btn-discord:hover {
  color: #4752C4;
  transform: scale(1.05);
}
.post-section .post-content .last-update .button-wrapper .btn-discord:before {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  font-size: 14px;
  transition: 0.2s all;
  content: "";
  margin-right: 8px;
  font-size: 16px;
}
.post-section .post-content .last-update .button-wrapper .btn-telegram {
  background-color: #fff;
  color: #0088CC;
  border-radius: 100px;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0px;
}
.post-section .post-content .last-update .button-wrapper .btn-telegram:hover {
  color: #0077B5;
  transform: scale(1.05);
}
.post-section .post-content .last-update .button-wrapper .btn-telegram:before {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  font-size: 14px;
  transition: 0.2s all;
  content: "";
  margin-right: 8px;
  font-size: 18px;
}
.post-section .post-content .last-update .date-wrapper {
  background-color: #fff;
  display: flex;
  padding: 12px;
  border-radius: 14px;
}
.post-section .post-content .last-update .date-wrapper .date-label {
  display: none;
}
@media (min-width: 576px) {
  .post-section .post-content .last-update .date-wrapper .date-label {
    display: block;
  }
}
.post-section .post-content .last-update .date-wrapper .date {
  text-transform: capitalize;
}
.post-section .post-content .last-update .date-wrapper .date:before {
  font-family: "Icomoon";
  font-size: 14px;
  content: "";
  margin-right: 8px;
  margin-left: 8px;
}

.team-section {
  padding: 80px 0;
  position: relative;
  border-radius: 50px;
  margin: 0 20px;
}
.team-section .title-section-mylead {
  margin-bottom: 48px;
}

.chart-section {
  padding: 40px 0 20px 0;
  position: relative;
  border-radius: 20px;
  margin: 20px 20px;
  background-color: #F4F6F9;
}
@media (min-width: 768px) {
  .chart-section {
    padding: 80px 0;
    border-radius: 50px;
  }
}
.chart-section .title-section-mylead {
  margin-bottom: 39px;
}
.chart-section .title-section-mylead h2, .chart-section .title-section-mylead .h2 {
  max-width: 631px;
  margin: 0 auto 30px auto;
}
.chart-section .title-section-mylead p {
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .chart-section .tablet-padding {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

.campaign-details-section {
  background-color: #F4F6F9;
  padding-right: 20px;
  padding-left: 20px;
}
@media (min-width: 576px) {
  .campaign-details-section {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.campaign-details-section .campaigns-list-container-wrapper {
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 1180px;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
@media (min-width: 1200px) {
  .campaign-details-section {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.campaign-details-section.first-section {
  margin-top: 85px;
  padding-top: 30px;
}
@media (min-width: 576px) {
  .campaign-details-section.first-section {
    margin-top: 20px;
    padding-top: 150px;
  }
}
.campaign-details-section h1, .campaign-details-section .h1 {
  color: #283B41;
  font-size: 30px;
  font-weight: 900;
  text-align: left;
  line-height: 40px;
  margin-bottom: 49px;
}
@media (min-width: 768px) {
  .campaign-details-section h1, .campaign-details-section .h1 {
    font-size: 43px;
    font-weight: 900;
    line-height: 60px;
    margin-bottom: 49px;
  }
}
@media (min-width: 1200px) {
  .campaign-details-section h1, .campaign-details-section .h1 {
    font-size: 56px;
    margin-bottom: 59px;
  }
}
.campaign-details-section h5.breadcrumbs, .campaign-details-section .breadcrumbs.h5 {
  color: #45BF52;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  text-align: left;
  text-transform: uppercase;
  margin: 20px 0 7px 0;
}
@media (min-width: 1200px) {
  .campaign-details-section h5.breadcrumbs, .campaign-details-section .breadcrumbs.h5 {
    margin: 20px 0;
  }
}
.campaign-details-section h5 a, .campaign-details-section .h5 a {
  color: #45BF52;
  text-decoration: none;
}
.campaign-details-section .campaign-details-container {
  width: 100%;
  height: auto;
}
.campaign-details-section .campaign-footer-modal-dialog .btn-close-custom {
  position: absolute;
  top: -55px;
  right: 0;
  height: 47px;
  width: 47px;
  background-color: #fff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  order: -1;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
@media (min-width: 768px) {
  .campaign-details-section .campaign-footer-modal-dialog .btn-close-custom {
    order: 0;
    top: -30px;
    right: -90px;
  }
}
.campaign-details-section .campaign-footer-modal-dialog .btn-close-custom:before {
  display: block;
  font-family: "Font Awesome 6 Solid";
  content: "";
  color: #000000;
  font-size: 17px;
}
.campaign-details-section .campaign-footer-modal-dialog .btn-close-custom:hover {
  transition: 0.3s;
  background-color: #87919C;
}
.campaign-details-section .campaign-footer-modal-dialog .btn-close-custom:hover:before {
  color: #fff;
}
.campaign-details-section .campaign-footer-modal-dialog .modal-content {
  border: none;
  border-radius: 30px;
  margin: 15px;
  padding: 30px;
}
.campaign-details-section .campaign-footer-modal-dialog .modal-content .modal-header {
  border: none;
  height: 80px;
  background-color: transparent;
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 0;
  justify-content: flex-start;
  flex-direction: column;
}
.campaign-details-section .campaign-footer-modal-dialog .modal-content .modal-header h5, .campaign-details-section .campaign-footer-modal-dialog .modal-content .modal-header .h5 {
  font-size: 30px;
  padding: 0;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  color: #283B41;
  text-transform: none;
}
.campaign-details-section .campaign-footer-modal-dialog .modal-content .modal-body.modal-body-padding {
  padding: 0;
}
.campaign-details-section .campaign-footer-modal-dialog .modal-content .modal-body .categories-list p {
  color: #87919C;
  font-size: 15px;
  font-weight: 500;
}
.campaign-details-section .campaign-footer-modal-dialog .modal-content .modal-footer {
  border: none;
}

.blocks-details-section-2 {
  background-color: #F4F6F9;
  margin: 0 20px;
  padding: 0 10px !important;
}
@media (min-width: 576px) {
  .blocks-details-section-2 {
    padding: 20px !important;
  }
}
.blocks-details-section-2 .title-section-mylead {
  max-width: none;
  margin: 58px 20px 40px 20px;
}
@media (min-width: 576px) {
  .blocks-details-section-2 .title-section-mylead {
    margin: 80px 20px 40px 20px;
  }
}
@media (min-width: 768px) {
  .blocks-details-section-2 .title-section-mylead {
    max-width: 540px;
    margin: 80px auto 40px auto;
  }
}
@media (min-width: 1200px) {
  .blocks-details-section-2 .title-section-mylead {
    max-width: 490px;
  }
}
.blocks-details-section-2 .title-section-mylead h2, .blocks-details-section-2 .title-section-mylead .h2 {
  margin-bottom: 29px;
  font-size: 24px;
  font-weight: 900;
  text-align: left;
}
@media (min-width: 576px) {
  .blocks-details-section-2 .title-section-mylead h2, .blocks-details-section-2 .title-section-mylead .h2 {
    font-size: 34px;
    text-align: center;
    margin-bottom: 43px;
  }
}
@media (min-width: 1200px) {
  .blocks-details-section-2 .title-section-mylead h2, .blocks-details-section-2 .title-section-mylead .h2 {
    font-size: 40px;
  }
}
.blocks-details-section-2 .title-section-mylead h3, .blocks-details-section-2 .title-section-mylead .h3 {
  max-width: 630px;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
}
@media (min-width: 576px) {
  .blocks-details-section-2 .title-section-mylead h3, .blocks-details-section-2 .title-section-mylead .h3 {
    font-size: 20px;
    text-align: center;
  }
}
@media (min-width: 1200px) {
  .blocks-details-section-2 .title-section-mylead h3, .blocks-details-section-2 .title-section-mylead .h3 {
    font-size: 24px;
  }
}
.blocks-details-section-2 .influencers-header-wrapper {
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .blocks-details-section-2 .influencers-header-wrapper {
    margin: 0 10px 10px 10px;
  }
}
.blocks-details-section-2 .influencers-header-wrapper .ifluencers-header {
  width: 100%;
  height: auto;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 30px 20px 30px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .blocks-details-section-2 .influencers-header-wrapper .ifluencers-header {
    flex-direction: row;
    align-items: center;
  }
}
@media (min-width: 1200px) {
  .blocks-details-section-2 .influencers-header-wrapper .ifluencers-header {
    max-width: 1420px;
  }
}
.blocks-details-section-2 .influencers-header-wrapper .ifluencers-header h3, .blocks-details-section-2 .influencers-header-wrapper .ifluencers-header .h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .blocks-details-section-2 .influencers-header-wrapper .ifluencers-header h3, .blocks-details-section-2 .influencers-header-wrapper .ifluencers-header .h3 {
    font-size: 24px;
    line-height: 1.5;
  }
}
.blocks-details-section-2 .influencers-header-wrapper .ifluencers-header p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0;
  text-align: left;
  color: #A8B4C1;
}
@media (max-width: 768px) {
  .blocks-details-section-2 .influencers-header-wrapper .ifluencers-header p {
    margin-top: 5px;
  }
}

.blog-post-access-form-section {
  position: relative;
}
.blog-post-access-form-section .content-form {
  margin: 30px auto 50px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #F4F6F9;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(40, 59, 65, 0.1);
  padding: 50px 30px;
  width: 100%;
}
.blog-post-access-form-section .content-form.content-form-wrapper {
  padding: 0;
}

.blog-post-free-access-section {
  position: relative;
}
.blog-post-free-access-section .locker-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #F4F6F9;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(40, 59, 65, 0.1);
  width: 100%;
  padding: 0;
}

.text-slider-section.text-slider-container {
  background-color: #fff;
  border-radius: 20px;
  padding: 0;
  margin-bottom: 20px;
}
.text-slider-section.text-slider-container .green-bar {
  height: 8px;
  width: 100%;
  background-color: #6DBE5F;
}
.text-slider-section.text-slider-container .text-slider-wrapper {
  padding: 42px 0 0 0;
}
.text-slider-section.text-slider-container .text-slider-wrapper .title-section-mylead {
  text-align: center;
  margin-bottom: 0;
}
.text-slider-section.text-slider-container .text-slider-wrapper .title-section-mylead h2, .text-slider-section.text-slider-container .text-slider-wrapper .title-section-mylead .h2 {
  font-size: 24px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .text-slider-section.text-slider-container .text-slider-wrapper .title-section-mylead h2, .text-slider-section.text-slider-container .text-slider-wrapper .title-section-mylead .h2 {
    font-size: 34px;
  }
}
.text-slider-section.text-slider-container .text-slider-wrapper .title-section-mylead h5, .text-slider-section.text-slider-container .text-slider-wrapper .title-section-mylead .h5 {
  font-size: 12px;
  margin-bottom: 0;
}
.text-slider-section.text-slider-container .text-slider-wrapper .logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 33px;
  margin-bottom: 40px;
  border-bottom: 3px solid #F4F6F9;
}
.text-slider-section.text-slider-container .text-slider-wrapper .logo-container .logo-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
}
.text-slider-section.text-slider-container .text-slider-wrapper .logo-container .logo-wrapper a {
  margin-bottom: 10px;
}
.text-slider-section.text-slider-container .text-slider-wrapper .logo-container .logo-wrapper .amazon-logo {
  width: 90px;
  min-width: 90px;
  height: 27px;
  z-index: 2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 90px 27px;
  display: block;
  background-position: top;
  background-size: contain;
}
.webp.webpalpha .text-slider-section.text-slider-container .text-slider-wrapper .logo-container .logo-wrapper .amazon-logo {
  background-image: url("/images/amazon@1x.webp") !important;
}
.no-js .text-slider-section.text-slider-container .text-slider-wrapper .logo-container .logo-wrapper .amazon-logo, .no-webp .text-slider-section.text-slider-container .text-slider-wrapper .logo-container .logo-wrapper .amazon-logo, .no-webpalpha .text-slider-section.text-slider-container .text-slider-wrapper .logo-container .logo-wrapper .amazon-logo {
  background-image: url("/images/amazon@1x.png") !important;
}
.text-slider-section.text-slider-container .text-slider-wrapper .logo-container .logo-wrapper .microsoft-logo {
  width: 115px;
  min-width: 115px;
  height: 25px;
  z-index: 2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 115px 25px;
  display: block;
  background-position: top;
  background-size: contain;
}
.webp.webpalpha .text-slider-section.text-slider-container .text-slider-wrapper .logo-container .logo-wrapper .microsoft-logo {
  background-image: url("/images/microsoft@1x.webp") !important;
}
.no-js .text-slider-section.text-slider-container .text-slider-wrapper .logo-container .logo-wrapper .microsoft-logo, .no-webp .text-slider-section.text-slider-container .text-slider-wrapper .logo-container .logo-wrapper .microsoft-logo, .no-webpalpha .text-slider-section.text-slider-container .text-slider-wrapper .logo-container .logo-wrapper .microsoft-logo {
  background-image: url("/images/microsoft@1x.png") !important;
}
.text-slider-section.text-slider-container .text-slider-wrapper .logo-container .logo-wrapper .netflix-logo {
  width: 80px;
  min-width: 80px;
  height: 30px;
  z-index: 2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 80px 30px;
  display: block;
  background-position: top;
  background-size: contain;
}
.webp.webpalpha .text-slider-section.text-slider-container .text-slider-wrapper .logo-container .logo-wrapper .netflix-logo {
  background-image: url("/images/netflix@1x.webp") !important;
}
.no-js .text-slider-section.text-slider-container .text-slider-wrapper .logo-container .logo-wrapper .netflix-logo, .no-webp .text-slider-section.text-slider-container .text-slider-wrapper .logo-container .logo-wrapper .netflix-logo, .no-webpalpha .text-slider-section.text-slider-container .text-slider-wrapper .logo-container .logo-wrapper .netflix-logo {
  background-image: url("/images/netflix@1x.png") !important;
}
.text-slider-section.text-slider-container .text-slider-wrapper .logo-container .logo-wrapper .google-logo {
  width: 85px;
  min-width: 30px;
  height: 45px;
  z-index: 2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 85px 30px;
  display: block;
  background-position: top;
  background-size: contain;
}
.webp.webpalpha .text-slider-section.text-slider-container .text-slider-wrapper .logo-container .logo-wrapper .google-logo {
  background-image: url("/images/google@1x.webp") !important;
}
.no-js .text-slider-section.text-slider-container .text-slider-wrapper .logo-container .logo-wrapper .google-logo, .no-webp .text-slider-section.text-slider-container .text-slider-wrapper .logo-container .logo-wrapper .google-logo, .no-webpalpha .text-slider-section.text-slider-container .text-slider-wrapper .logo-container .logo-wrapper .google-logo {
  background-image: url("/images/google@1x.png") !important;
}
.text-slider-section.text-slider-container .text-slider-wrapper .carousel-section {
  margin: 0 20px;
  background-color: #F4F6F9;
  border-radius: 30px;
  padding: 50px 34px;
}
@media (min-width: 768px) {
  .text-slider-section.text-slider-container .text-slider-wrapper .carousel-section {
    margin: 0 40px;
  }
}
.text-slider-section.text-slider-container .text-slider-wrapper .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-bottom: 40px;
  text-align: center;
}
.text-slider-section.text-slider-container .text-slider-wrapper .content .navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 110px;
  z-index: 10;
}
.text-slider-section.text-slider-container .text-slider-wrapper .content .navigation .prev-btn, .text-slider-section.text-slider-container .text-slider-wrapper .content .navigation .next-btn {
  font-family: "Font Awesome 6 Solid";
  font-weight: 900;
  font-size: 18px;
  height: 50px;
  width: 50px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid #A8B4C1;
  background-color: transparent;
  color: #A8B4C1;
  transition: 0.2s all;
}
.text-slider-section.text-slider-container .text-slider-wrapper .content .navigation .prev-btn:disabled, .text-slider-section.text-slider-container .text-slider-wrapper .content .navigation .next-btn:disabled {
  opacity: 0.1;
  pointer-events: none;
}
.text-slider-section.text-slider-container .text-slider-wrapper .content .navigation .prev-btn:not(:disabled):hover, .text-slider-section.text-slider-container .text-slider-wrapper .content .navigation .next-btn:not(:disabled):hover {
  background-color: #A8B4C1;
  color: #fff;
}
.text-slider-section.text-slider-container .text-slider-wrapper .content .navigation .prev-btn:after {
  content: "";
}
.text-slider-section.text-slider-container .text-slider-wrapper .content .navigation .next-btn:after {
  content: "";
}
.text-slider-section.text-slider-container .text-slider-wrapper .text-slider-carousel {
  text-align: center;
  display: flex;
}
@media (min-width: 992px) {
  .text-slider-section.text-slider-container .text-slider-wrapper .text-slider-carousel {
    margin: 0 -10px;
  }
}
.text-slider-section.text-slider-container .text-slider-wrapper .text-slider-carousel .text-slider-item {
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 500px;
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .text-slider-section.text-slider-container .text-slider-wrapper .text-slider-carousel .text-slider-item {
    margin: 0 10px;
  }
}
.text-slider-section.text-slider-container .text-slider-wrapper .text-slider-carousel .text-slider-item .logo-container {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
.text-slider-section.text-slider-container .text-slider-wrapper .text-slider-carousel .text-slider-item .logo-container .logo-wrapper {
  justify-content: center;
}
.text-slider-section.text-slider-container .text-slider-wrapper .text-slider-carousel .text-slider-item .text {
  background-color: #F4F6F9;
}
.text-slider-section.text-slider-container .text-slider-wrapper .text-slider-carousel .text-slider-item .text .number {
  color: #6DBE5F;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.text-slider-section.text-slider-container .text-slider-wrapper .text-slider-carousel .text-slider-item .text h2, .text-slider-section.text-slider-container .text-slider-wrapper .text-slider-carousel .text-slider-item .text .h2 {
  color: #283B41;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .text-slider-section.text-slider-container .text-slider-wrapper .text-slider-carousel .text-slider-item .text h2, .text-slider-section.text-slider-container .text-slider-wrapper .text-slider-carousel .text-slider-item .text .h2 {
    font-size: 24px;
    line-height: 36px;
  }
}
.text-slider-section.text-slider-container .text-slider-wrapper .text-slider-carousel .text-slider-item .text h2 .underline, .text-slider-section.text-slider-container .text-slider-wrapper .text-slider-carousel .text-slider-item .text .h2 .underline {
  border-bottom: 3px solid #45BF52;
  font-weight: 900;
}
.text-slider-section.text-slider-container .text-slider-wrapper .text-slider-carousel .text-slider-item .text h3, .text-slider-section.text-slider-container .text-slider-wrapper .text-slider-carousel .text-slider-item .text .h3 {
  color: #283B41;
  font-size: 20px;
  font-weight: 500;
  line-height: 36px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .text-slider-section.text-slider-container .text-slider-wrapper .text-slider-carousel .text-slider-item .text h3, .text-slider-section.text-slider-container .text-slider-wrapper .text-slider-carousel .text-slider-item .text .h3 {
    font-size: 24px;
  }
}
.text-slider-section.text-slider-container .text-slider-wrapper .text-slider-carousel .text-slider-item .text h3 .underline, .text-slider-section.text-slider-container .text-slider-wrapper .text-slider-carousel .text-slider-item .text .h3 .underline {
  border-bottom: 3px solid #45BF52;
  font-weight: 900;
}
.text-slider-section.text-slider-container .text-slider-wrapper .text-slider-carousel .text-slider-item .text p {
  color: #87919C;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  margin: 0;
}

.mentoring-page {
  min-height: 100vh;
  padding: 100px 0 0;
  position: relative;
}
@media (min-width: 576px) {
  .mentoring-page {
    padding: 150px 30px 0;
  }
}
@media (min-width: 992px) {
  .mentoring-page {
    padding: 150px 50px 0;
  }
}
.mentoring-page .hero-blob-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.mentoring-page .hero-blob-img {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 100%;
  height: 295px;
  top: 0;
  right: -60px;
  background-image: url("/images/mentoring/blob.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
}
@media (min-width: 768px) {
  .mentoring-page .hero-blob-img {
    height: 100%;
    max-height: 600px;
  }
}
.mentoring-page .mentoring-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 992px) {
  .mentoring-page .mentoring-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
}
.mentoring-page .main-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  min-width: 0;
}

.mentor-sidebar {
  display: none;
  box-shadow: 0px 40px 50px 0px #00000029;
  border-radius: 25px;
}
@media (min-width: 992px) {
  .mentor-sidebar {
    display: block;
    position: sticky;
    top: 210px;
    flex-shrink: 0;
    width: 380px;
  }
}

.hero-section {
  position: relative;
  padding: 20px 20px 32px;
  margin: 0;
  overflow: visible !important;
  width: 100%;
}
@media (min-width: 768px) {
  .hero-section {
    padding: 48px;
  }
}
@media (min-width: 992px) {
  .hero-section {
    padding: 60px 48px 60px 0;
  }
}
.hero-section .hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
.hero-section .hero-title {
  font-size: 30px;
  font-weight: 400;
  line-height: 130%;
  color: #283B41;
  margin: 0 0 20px 0;
}
.hero-section .hero-title strong {
  font-weight: 700;
}
@media (min-width: 992px) {
  .hero-section .hero-title {
    font-size: 56px;
    margin: 0 0 50px 0;
  }
}
.hero-section .hero-description {
  font-size: 18px;
  line-height: 150%;
  color: #283B41;
  margin: 0 0 40px;
}
@media (min-width: 992px) {
  .hero-section .hero-description {
    font-size: 22px;
    max-width: 700px;
    margin-bottom: 48px;
    margin: 0 0 50px 0;
  }
}
.hero-section .hero-cta {
  display: flex;
  width: 100%;
  justify-content: center;
}
@media (min-width: 992px) {
  .hero-section .hero-cta {
    width: auto;
    align-self: flex-start;
  }
}

.mentor-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border-radius: 25px;
  padding: 32px 24px;
  text-align: center;
}
@media (min-width: 992px) {
  .mentor-card {
    height: 499px;
    padding: 32px;
  }
}
.mentor-card .mentor-avatar {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .mentor-card .mentor-avatar {
    width: 144px;
    height: 144px;
    margin-bottom: 24px;
  }
}
.mentor-card .mentor-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mentor-card .mentor-name {
  font-size: 24px;
  font-weight: 600;
  color: #283B41;
  line-height: 130%;
  margin: 0 0 4px 0;
}
.mentor-card .mentor-role {
  font-size: 13px;
  font-weight: 500;
  color: #87919C;
  line-height: 130%;
  display: block;
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .mentor-card .mentor-role {
    margin-bottom: 24px;
  }
}
.mentor-card .mentor-cta {
  width: 100%;
  margin-bottom: 10px;
}
.mentor-card .mentor-cta-secondary {
  width: 100%;
}
.mentor-card .mentor-divider {
  position: relative;
  width: 100%;
  margin: 16px 0;
  display: flex;
  justify-content: center;
}
.mentor-card .mentor-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #e5e7eb;
}
.mentor-card .mentor-divider span {
  position: relative;
  background-color: #fff;
  padding: 0 12px;
  font-size: 10px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 10%;
  color: #87919C;
}
.mentor-card .mentor-social {
  display: flex;
  justify-content: center;
  gap: 2px;
  width: 100%;
}
.mentor-card .mentor-social .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #283B41;
  background-color: #F4F6F9;
  text-decoration: none;
  width: 33%;
  height: 40px;
  font-size: 13px;
  font-weight: 500;
  line-height: 100%;
  transition: color;
}
.mentor-card .mentor-social .social-link:hover {
  color: #45BF52;
}
.mentor-card .mentor-social .social-link:first-of-type {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.mentor-card .mentor-social .social-link:last-of-type {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.mentor-card .mentor-social.pulse-animation .social-link {
  animation: pulse-zoom 1s ease-in-out 3;
  color: #45BF52;
}
@keyframes pulse-zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.mentor-sidebar .mentor-card {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.mentor-card-mobile {
  padding: 0;
  box-shadow: 0px 40px 50px 0px #00000029;
  border-radius: 16px;
}
@media (min-width: 992px) {
  .mentor-card-mobile {
    display: none;
  }
}

.section-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 900;
  color: #45BF52;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .section-label {
    font-size: 14px;
  }
}

.section-title {
  font-size: 22px;
  font-weight: 700;
  color: #283B41;
  margin-bottom: 20px;
  line-height: 130%;
  letter-spacing: 0;
}
@media (min-width: 992px) {
  .section-title {
    font-size: 36px;
    margin-bottom: 30px;
  }
}

.section-description {
  font-size: 14px;
  line-height: 150%;
  color: #87919C;
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: 0;
}
@media (min-width: 992px) {
  .section-description {
    font-size: 18px;
    max-width: 750px;
  }
}

.benefits-section {
  padding: 32px 20px 16px;
  margin: 0;
}
@media (min-width: 768px) {
  .benefits-section {
    padding: 48px;
  }
}
@media (min-width: 992px) {
  .benefits-section {
    padding: 60px 48px 60px 0;
  }
}
.benefits-section .benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 576px) {
  .benefits-section .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (min-width: 1450px) {
  .benefits-section .benefits-grid {
    margin-top: 30px;
    grid-template-columns: repeat(3, 1fr);
  }
}
.benefits-section .benefit-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
  background-color: rgba(69, 191, 82, 0.1);
  border-radius: 24px;
}
@media (min-width: 768px) {
  .benefits-section .benefit-card {
    padding: 24px;
  }
}
.benefits-section .benefit-icon {
  display: flex;
  color: #45BF52;
}
.benefits-section .benefit-icon .benefit-svg-icon {
  width: 28px;
  height: 28px;
}
@media (min-width: 768px) {
  .benefits-section .benefit-icon .benefit-svg-icon {
    width: 32px;
    height: 32px;
  }
}
.benefits-section .benefit-text {
  font-size: 18px;
  line-height: 140%;
  font-weight: 500;
  color: #283B41;
  margin: 0;
  letter-spacing: 0;
}

.earnings-section {
  padding: 32px 20px 16px;
  margin: 0;
}
@media (min-width: 768px) {
  .earnings-section {
    padding: 48px;
  }
}
@media (min-width: 992px) {
  .earnings-section {
    padding: 60px 48px 60px 0;
  }
}
.earnings-section .earnings-gallery {
  display: flex;
}
.earnings-section .earnings-gallery .earnings-screenshot {
  overflow: hidden;
  position: relative;
  width: calc(100% + 32px);
  margin: 0 -16px -24px;
  height: 80vw;
}
@media (min-width: 992px) {
  .earnings-section .earnings-gallery .earnings-screenshot {
    height: 600px;
  }
}
@media (min-width: 992px) {
  .earnings-section .earnings-gallery .earnings-screenshot {
    width: calc(100% + 84px);
    margin: 0 -42px -60px;
  }
}
.earnings-section .earnings-gallery .earnings-screenshot .layer1 {
  width: 50vw;
  position: absolute;
  top: 2%;
  left: 20px;
  height: auto;
  border-radius: 16px;
  border: 4px solid #fff;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
@media (min-width: 992px) {
  .earnings-section .earnings-gallery .earnings-screenshot .layer1 {
    width: 50%;
    left: 5%;
    top: 10%;
    max-width: 360px;
  }
}
.earnings-section .earnings-gallery .earnings-screenshot .layer2 {
  width: 50vw;
  position: absolute;
  top: 20px;
  right: 20px;
  height: auto;
  border-radius: 16px;
  border: 4px solid #fff;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
@media (min-width: 992px) {
  .earnings-section .earnings-gallery .earnings-screenshot .layer2 {
    width: 50%;
    right: 15%;
    max-width: 400px;
  }
}
.earnings-section .earnings-gallery .earnings-screenshot .layer3 {
  width: 40vw;
  position: absolute;
  bottom: 10px;
  right: 10px;
  height: auto;
  border-radius: 16px;
  border: 4px solid #fff;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
@media (min-width: 992px) {
  .earnings-section .earnings-gallery .earnings-screenshot .layer3 {
    width: 50%;
    max-width: 400px;
  }
}

.process-section {
  padding: 32px 20px 16px;
  margin: 0;
}
@media (min-width: 768px) {
  .process-section {
    padding: 48px;
  }
}
@media (min-width: 992px) {
  .process-section {
    padding: 60px 48px 60px 0;
  }
}
.process-section .process-description {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #283B41;
  margin-bottom: 20px;
}
.process-section .process-cta-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #283B41;
  margin: 32px 0 16px;
}
@media (min-width: 1450px) {
  .process-section .process-cta-text {
    margin: 60px 0 32px;
  }
}
.process-section .process-steps {
  display: flex;
  flex-direction: column;
  padding-bottom: 24px;
}
@media (min-width: 1450px) {
  .process-section .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    gap: 16px;
  }
  .process-section .process-steps::before {
    content: "";
    position: absolute;
    top: 32px;
    left: 32px;
    right: calc(25% - 32px);
    height: 2px;
    background: #f4f6f9;
    z-index: 0;
  }
}
@media (min-width: 1600px) {
  .process-section .process-steps {
    gap: 24px;
  }
}
.process-section .process-step {
  display: flex;
  flex-direction: row;
  gap: 32px;
  height: 152px;
}
.process-section .process-step.completed {
  height: 86px;
}
@media (min-width: 1450px) {
  .process-section .process-step {
    flex-direction: column;
    height: 230px;
    gap: 0;
  }
}
.process-section .step-icon {
  position: relative;
  width: 64px;
  min-width: 64px;
  min-height: 64px;
  height: 64px;
  background-color: rgba(69, 191, 82, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
@media (min-width: 1450px) {
  .process-section .step-icon {
    margin-bottom: 0;
    z-index: 1;
    background: linear-gradient(rgba(69, 191, 82, 0.1), rgba(69, 191, 82, 0.1)), #fff;
  }
}
.process-section .step-icon svg {
  width: 24px;
  height: 24px;
  fill: #45BF52;
}
.process-section .step-icon .connector {
  position: absolute;
  top: 64px;
  left: 20px;
  width: 24px;
  height: 88px;
  fill: #f4f6f9;
}
@media (min-width: 1450px) {
  .process-section .step-icon .connector {
    display: none;
  }
}
.process-section .step-icon .connector.desktop {
  display: none;
}
@media (min-width: 1450px) {
  .process-section .process-step:not(.completed) {
    position: relative;
  }
  .process-section .process-step:not(.completed)::after {
    content: "";
    position: absolute;
    right: calc((100% - 90px) / 2);
    top: 32px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: #f4f6f9;
    border-radius: 50%;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8' fill='none'%3E%3Cpath d='M4.756 3.433L1.415 0.225C1.258 0.079 1.047 -0.002 0.828 0C0.609 0.002 0.399 0.086 0.245 0.235C0.09 0.384 0.002 0.585 0 0.795C-0.002 1.005 0.082 1.208 0.234 1.359L2.984 4L0.234 6.641C0.082 6.792 -0.002 6.995 0 7.205C0.002 7.415 0.09 7.616 0.245 7.765C0.399 7.914 0.609 7.998 0.828 8C1.047 8.002 1.258 7.921 1.415 7.775L4.756 4.567C4.912 4.417 5 4.213 5 4C5 3.787 4.912 3.583 4.756 3.433Z' fill='%2387919C'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(50% + 2px) center;
  }
}
.process-section .text-wrapper {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
}
.process-section .text-wrapper .step-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  color: #283B41;
  margin-bottom: 16px;
  vertical-align: middle;
}
.process-section .text-wrapper .step-title.clickable {
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color;
}
.process-section .text-wrapper .step-title.clickable:hover {
  color: #45BF52;
}
.process-section .text-wrapper .step-description {
  font-size: 15px;
  font-weight: 400;
  line-height: 100%;
  color: #87919C;
  margin: 0;
}
.process-section .text-wrapper .step-description a {
  color: #87919C;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color;
}
.process-section .text-wrapper .step-description a:hover {
  color: #45BF52;
}

.courses-section {
  margin-top: 20px;
  padding: 32px 10px 16px;
  margin: 0;
}
@media (min-width: 768px) {
  .courses-section {
    padding: 48px 0;
  }
}
@media (min-width: 992px) {
  .courses-section {
    padding: 60px 0;
  }
}
