@charset "UTF-8";
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/montserrat-variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
/**--Media-queries--**/
.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) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1200px) {
  .container,
  .container-fluid,
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

@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: 1400px;
    padding: 0 calc(2.9rem + 2.8vw);
  }
}
@media (min-width: 1400px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1800px;
  }
}
.container--md {
  max-width: 1400px;
}

.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(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.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%;
}

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

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

@media (min-width: 576px) {
  .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;
  }
}
@media (min-width: 768px) {
  .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;
  }
}
@media (min-width: 992px) {
  .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;
  }
}
@media (min-width: 1200px) {
  .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;
  }
}
@media (min-width: 1400px) {
  .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;
  }
}
@media (min-width: 1200px) {
  .order-xl-3 {
    order: 3;
  }
}
@media (min-width: 1360px) {
  .container-narrow-xl {
    max-width: 1280px;
    padding: 0 20px;
  }
}
.header__hamburger {
  position: relative;
  width: 24px;
  display: none;
  vertical-align: middle;
  color: currentColor;
}
@media (max-width: 1199px) {
  .header__hamburger {
    display: block;
  }
}
.header__hamburger.open, .header__hamburger:hover {
  color: currentColor;
}
.header__hamburger.open:after {
  opacity: 1;
  visibility: visible;
}
.header__hamburger:after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease-in-out all;
  z-index: 11;
}

.header__hamburger span {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  width: 24px;
  margin-top: -1px;
  background-color: currentColor;
  transition: height 0s linear, transform 0.6s ease-in-out;
  transition-delay: 0.6s, 0s, 0s;
  transform-origin: center;
}

.header__hamburger.open span {
  height: 0;
  transform: rotate(360deg);
  transition: width 0s linear, transform 0s ease;
  transition-delay: 0.3s, 0.6s, 0.6s;
}

.header__hamburger span:after {
  position: absolute;
  top: 6px;
  left: 0;
  height: 2px;
  width: 24px;
  background-color: inherit;
  content: "";
  transform: rotate(0deg);
  transition: top 0.3s ease, width 0.3s ease, transform 0.3s ease;
  transition-delay: 0.9s, 0.9s, 0.6s, 0.6s;
}

.header__hamburger.open span:after {
  top: 0;
  width: 24px;
  transform: rotate(45deg);
  transition-delay: 0s, 0s, 0.3s, 0.3s;
}

.header__hamburger span:before {
  position: absolute;
  top: -6px;
  left: 0;
  height: 2px;
  width: 24px;
  background-color: inherit;
  content: "";
  transform: rotate(0deg);
  transition: top 0.3s ease, width 0.3s ease, transform 0.3s ease;
  transition-delay: 0.9s, 0.9s, 0.6s, 0.6s;
}

.header__hamburger.open span:before {
  top: 0;
  width: 24px;
  transform: rotate(-45deg);
  transition-delay: 0s, 0s, 0.3s, 0.3s;
}

@keyframes shakeee {
  0% {
    transform: translate(1px, 0);
  }
  20% {
    transform: translate(-2px, 0);
  }
  40% {
    transform: translate(3px, 0);
  }
  60% {
    transform: translate(-3px, 0);
  }
  80% {
    transform: translate(4px, 0);
  }
  100% {
    transform: translate(-2px, 0);
  }
}
.notification-bar {
  position: relative;
  z-index: 1;
  background-color: #0291c1;
  text-align: center;
  width: 100%;
  top: 0;
  transition: 0.5s all ease-in-out;
  opacity: 1;
  visibility: visible;
}
.notification-bar p {
  color: #fff;
  margin: 0;
  font-size: 14px;
  max-width: 570px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.32px;
}
.notification-bar p:not(:last-child) {
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .notification-bar p {
    max-width: 100%;
    white-space: nowrap;
    margin: 0;
  }
}
@media (max-width: 1200px) {
  .notification-bar p {
    font-size: 14px;
    max-width: 95%;
  }
}
@media (max-width: 767px) {
  .notification-bar p {
    max-width: 90%;
    line-height: 1.6;
  }
}

.display_topbar .notification-bar {
  opacity: 1;
  visibility: visible;
}
@media only screen and (max-width: 575px) {
  .display_topbar .notification-bar {
    display: flex;
    align-items: center;
  }
}

.know-more {
  display: inline-block;
  vertical-align: middle;
  padding: 5px 10px;
  margin: 0 0 0 22px;
  background-color: #fff;
  border-radius: 4px;
  color: #ee3e5a;
  cursor: pointer;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}
@media (min-width: 1199px) {
  .know-more:hover {
    color: #fff;
    background-color: #ee3e5a;
  }
}
@media (max-width: 992px) {
  .know-more {
    margin-left: 5px;
    font-size: 11px;
    padding: 3px 8px;
  }
}
.know-more.shakeee {
  position: relative;
  animation: shakeee 0.4s linear;
  animation-iteration-count: 3;
}

.notification-bar-close {
  height: 100%;
  position: absolute;
  right: 0;
  top: calc(50% + 4px);
  width: 40px;
  z-index: 9;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  padding: 10px 0 0 35px;
}
@media (max-width: 1200px) {
  .notification-bar-close {
    right: 10px;
    top: 8px;
    transform: translate(0, 0);
    height: 30px;
    width: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .notification-bar-close {
    top: 5px;
    height: 30px;
    width: 35px;
  }
}
.notification-bar-close:after, .notification-bar-close:before {
  background-color: #fff;
  content: "";
  height: 2px;
  position: absolute;
  left: 10px;
  top: 16px;
  width: 20px;
  transform: rotate(-45deg);
}
@media (max-width: 1200px) {
  .notification-bar-close:after, .notification-bar-close:before {
    background-color: #fff;
    content: "";
    left: 9px;
    top: 14px;
    width: 18px;
  }
}
@media (max-width: 767px) {
  .notification-bar-close:after, .notification-bar-close:before {
    width: 17px;
    top: 14px;
  }
}
.notification-bar-close::before {
  transform: rotate(45deg);
}

@media only screen and (max-width: 575px) {
  .display_topbar .notification-bar .notification-bar-close {
    top: 20px;
  }
}
:root {
  --goquick-price: "$1249";
  --goquick-pro-price: "$3499";
  --goquick-boost-price: "$2499";
  --goquick-ultra: "Quote";
}

.goquick-price::after {
  content: var(--goquick-price);
}

.goquick-boost-price::after {
  content: var(--goquick-boost-price);
}

.goquick-pro-price::after {
  content: var(--goquick-pro-price);
}

.goquick-ultra::after {
  content: var(--goquick-ultra);
}

.demo-btn {
  background: #f7f7f7;
  color: #000 !important;
  border: 2px solid #f7f7f7;
  font-size: 12px;
  padding: 10px 24px;
  line-height: 1.5;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0;
  font-weight: 600;
  border-radius: 5px;
  white-space: nowrap;
  display: none;
}
.demo-btn:hover {
  background-color: #ee3e5a;
  color: #fff !important;
}
@media (max-width: 1279px) {
  .demo-btn {
    display: none;
  }
}

.contactblock {
  display: inline-flex;
  gap: 1rem;
  vertical-align: middle;
}
.contactblock .btn {
  min-width: auto;
  font-size: clamp(0.75rem, 0.625vw + 0.125rem, 0.875rem);
  text-transform: uppercase;
  font-weight: 700;
}
@media (max-width: 1599px) {
  .contactblock .btn {
    font-size: 12px;
    padding: 0.625rem 1rem;
  }
}

.explore-inline {
  text-transform: uppercase;
  font-size: 9px !important;
  padding: 3px 7px !important;
  font-weight: 800;
  margin-left: 5px;
  vertical-align: middle;
  border-radius: 5px !important;
  display: inline;
  background: #ee3e5a;
  color: #fff;
  border-color: #ee3e5a;
  padding: 4px 7px;
}
.explore-inline.upgraded {
  font-weight: 600;
}
.explore-inline.wow::after {
  content: "WOW!";
}
.explore-inline.new::after {
  content: "new";
}
.explore-inline.upgraded::after {
  content: "New";
}

li a[href*=b2b-multivendor-ecommerce-platform] {
  justify-content: flex-start;
}

.b2b-header-cta {
  display: none !important;
}

html:not(.tg-popup) #header {
  z-index: 999999;
}

#header.open {
  z-index: 99999999 !important;
}

#header {
  background-color: #fff;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  border-bottom: 1px solid #dfdfdf;
  transition: transform 0.3s ease-in-out;
  z-index: 9;
}

.header {
  display: flex;
  gap: clamp(1.375rem, 3.462vw - 1.654rem, 2.5rem);
  background: #fff;
  padding: 15px 0;
  justify-content: space-between;
  align-items: center;
}
.header .logo svg,
.header .logo img {
  width: 130px;
  height: 40px;
  display: block;
}
@media (max-width: 1499px) {
  .header .logo svg,
  .header .logo img {
    width: 100px;
    margin: 0;
  }
}
.header .header__right {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.308vw - 0.769rem, 2rem);
}
@media (min-width: 1200px) {
  .header .header__right {
    justify-content: space-between;
    flex: 1;
  }
}
@media (min-width: 1200px) {
  .header .header__right .contactblock {
    order: 1;
  }
}

.nav-menu {
  flex: 1;
}
@media (min-width: 1200px) {
  .nav-menu {
    display: flex;
    gap: clamp(1.125rem, 2.5vw - 1.375rem, 1.625rem);
  }
  .nav-menu .divider {
    position: relative;
    padding-inline-start: clamp(1.125rem, 2.5vw - 1.375rem, 1.625rem);
  }
  .nav-menu .divider:before {
    position: absolute;
    content: "";
    left: 0px;
    height: 32px;
    width: 1px;
    top: 50%;
    background: #a5a4a4;
    transform: translateY(-50%);
  }
}
.nav-menu__link {
  font-weight: 600;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .nav-menu__link {
    font-size: clamp(0.813rem, 0.313vw + 0.5rem, 0.875rem);
    line-height: 20px;
    position: relative;
  }
}
.nav-menu__link .badge {
  padding: 3px 8px 3px 8px;
  background-color: #df2e57;
  color: #fff;
  line-height: 10px;
  font-size: 10px;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  .nav-menu__link .badge {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 8px 4px 10px;
    white-space: nowrap;
  }
  .nav-menu__link .badge:after {
    position: absolute;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    border: 5px solid transparent;
    border-top-color: #df2e57;
  }
}
.nav-menu > li {
  position: relative;
  line-height: normal;
}
@media (max-width: 1199px) {
  .nav-menu > li:not(:last-of-type) {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .nav-menu > li.has-dropdown:after {
    content: "";
    width: 0%;
    background: #ee3e5a;
    display: block;
    height: 2.4px;
    position: absolute;
    left: 0;
    bottom: -27.335px;
    transition: 0.3s;
  }
}
.nav-menu > li.has-dropdown .nav-menu__link {
  position: relative;
  display: flex;
  gap: 8px;
}
@media (max-width: 1199px) {
  .nav-menu > li.has-dropdown .nav-menu__link {
    justify-content: space-between;
  }
}
.nav-menu > li.has-dropdown .nav-menu__link::after {
  content: "";
  height: 8px;
  position: relative;
  background-color: transparent;
  transform: rotate(45deg);
  width: 8px;
  border-right: 1px solid;
  border-bottom: 1px solid;
  transition: 0.3s;
  transition: all 0.3s ease, color 1ms;
  margin-top: 4px;
}
@media (min-width: 1200px) {
  .nav-menu > li.has-dropdown .overlay {
    content: "";
    display: block;
    width: 100%;
    background: rgba(0, 0, 0, 0.3490196078);
    height: 100%;
    position: fixed;
    left: 0;
    backdrop-filter: blur(5px);
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
  }
}
.nav-menu > li.has-dropdown:not(.active) .dropdown-wrapper {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media (max-width: 1199px) {
  .nav-menu > li.has-dropdown:not(.active) .dropdown-wrapper {
    display: none;
  }
}
.nav-menu > li.active:after {
  width: 100%;
}
.nav-menu > li.active.has-dropdown .nav-menu__link {
  color: #df2e57;
}
.nav-menu > li.active.has-dropdown .nav-menu__link::after {
  transform: rotate(-135deg);
  margin-top: 7px;
}
@media (min-width: 1200px) {
  .nav-menu > li.active.has-dropdown .overlay {
    opacity: 1;
    visibility: visible;
  }
}
@media (min-width: 1200px) {
  .nav-menu > li.active .dropdown > * {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1200px) {
  .dropdown-wrapper {
    position: fixed;
    width: 100%;
    left: 0;
    background-color: #fff;
  }
  .dropdown-wrapper .dropdown {
    display: flex;
  }
  .dropdown-wrapper .dropdown > * {
    padding: 2rem 2rem 3rem;
    opacity: 0;
    transform: translateY(-4%);
    transition: opacity 0.3s, transform 0.4s;
    transition-timing-function: ease-in-out;
    flex: 1;
  }
  .dropdown-wrapper .dropdown > *:not(:last-child) {
    border-right: 1px solid #dedede;
  }
  .dropdown-wrapper .dropdown > *:first-child {
    padding-left: 0;
    transition-delay: 0.4s;
  }
  .dropdown-wrapper .dropdown > *:nth-child(2) {
    transition-delay: 0.6s;
  }
  .dropdown-wrapper .dropdown > *:last-child {
    transition-delay: 0.8s;
    padding-right: 0;
  }
  .dropdown-wrapper .dropdown > *:last-child:has(.article) {
    flex: 0 0 calc(285px + 3rem);
  }
}
@media (min-width: 1200px) and (min-width: 1500px) {
  .dropdown-wrapper .dropdown > *:last-child:has(.article) {
    align-self: flex-end;
  }
}
@media (min-width: 1200px) {
  .dropdown-wrapper .dropdown > *:last-child.blog {
    flex: 0 0 40%;
    align-self: normal;
  }
  .dropdown-wrapper .dropdown p {
    font-size: 14px;
  }
}
@media (min-width: 1200px) and (max-width: 1600px) {
  .dropdown-wrapper .dropdown p {
    font-size: 13px;
  }
}
@media (min-width: 1200px) {
  .dropdown-wrapper .dropdown a:not(.btn):hover {
    color: #000;
  }
  .dropdown-wrapper .dropdown-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2rem;
  }
  .dropdown-wrapper .dropdown .menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem 1rem;
    flex: 1;
  }
  .dropdown-wrapper .dropdown .menu-grid--grid-3 {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2rem 3rem;
  }
  .dropdown-wrapper .dropdown .menu-grid--grid-4 {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 2rem 3rem;
  }
  .dropdown-wrapper .dropdown .menu-grid--grid-1by1 {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1rem;
  }
  .dropdown-wrapper .dropdown .menu-grid.gap-0 {
    grid-gap: 0;
  }
  .dropdown-wrapper .dropdown .menu-grid .mb-0 {
    margin-bottom: 0 !important;
  }
  .dropdown-wrapper .dropdown .menu-card {
    display: block;
    padding: 1rem;
    border-radius: 5px;
    transition: 0s;
    height: 100%;
  }
  .dropdown-wrapper .dropdown .menu-card:hover {
    background: #fde8eb;
  }
  .dropdown-wrapper .dropdown .menu-card:not(.menu-card--flex) .media {
    margin-bottom: 1rem;
  }
  .dropdown-wrapper .dropdown .menu-card .content h6 {
    margin-bottom: 6px;
  }
  .dropdown-wrapper .dropdown .menu-card--flex {
    display: flex;
    gap: 1rem;
  }
  .dropdown-wrapper .dropdown .menu-card--flex .content h6 {
    font-size: 16px;
  }
  .dropdown-wrapper .dropdown .menu-card--flex .content p {
    line-height: 1.5;
  }
  .dropdown-wrapper .dropdown .menu-card--flex.icons .media {
    flex: 0 0 30px;
    max-width: 30px;
  }
}
@media (min-width: 1200px) and (min-width: 1600px) {
  .dropdown-wrapper .dropdown .menu-card--flex.icons .media {
    flex: 0 0 32px;
    max-width: 32px;
  }
}
@media (min-width: 1200px) {
  .dropdown-wrapper .dropdown .menu-card--flex:not(.icons) {
    align-items: center;
    gap: 1rem;
  }
}
@media (min-width: 1200px) and (min-width: 1600px) {
  .dropdown-wrapper .dropdown .menu-card--flex:not(.icons) {
    gap: 2rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-wrapper .dropdown .menu-card--flex:not(.icons) .media {
    flex: 0 0 170px;
    max-width: 170px;
  }
}
@media (min-width: 1200px) and (min-width: 1600px) {
  .dropdown-wrapper .dropdown .menu-card--flex:not(.icons) .media {
    flex: 0 0 200px;
    max-width: 200px;
  }
}
@media (min-width: 1200px) and (min-width: 1600px) {
  .dropdown-wrapper .dropdown .menu-card--flex:not(.icons) .content h6 {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .dropdown-wrapper .dropdown .blog-list__item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1rem;
    transition: 0.3s;
    border-radius: 5px;
    overflow: hidden;
  }
  .dropdown-wrapper .dropdown .blog-list__item:hover {
    background: #fde8eb;
  }
  .dropdown-wrapper .dropdown .blog-list__item .media {
    flex: 0 0 144px;
    max-width: 144px;
  }
  .dropdown-wrapper .dropdown .blog-list__item .content h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .dropdown-wrapper .dropdown .blog-list__item .content .text--link:hover:after {
    width: 1.8rem;
  }
  .dropdown-wrapper .dropdown .blog-list__item .content a {
    font-size: 14px;
    padding: 0;
  }
  .dropdown-wrapper .dropdown .article h6 {
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 500;
  }
  .dropdown-wrapper .dropdown .article__media {
    margin-bottom: 1.5rem;
  }
  .dropdown-wrapper .dropdown .article .btn--outline-primary {
    color: #df2e57 !important;
  }
  .dropdown-wrapper .dropdown .article .btn--outline-primary:hover {
    background-color: #df2e57 !important;
    color: #fff !important;
    border-color: #df2e57 !important;
  }
  .dropdown-wrapper .dropdown .article .btn-row {
    display: flex;
    gap: 10px;
  }
  .dropdown-wrapper .dropdown .article .btn-row .btn {
    padding-inline: 13px;
    min-width: 115px !important;
    font-size: 15px;
  }
}

@media (max-width: 1199px) {
  .nav-menu {
    background: #fff;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    text-align: left;
    top: 0;
    position: fixed;
    transition: 0.25s ease-in-out;
    right: -100%;
    bottom: 0;
    z-index: 111;
    width: 85%;
    max-width: 480px;
    padding: 20px;
  }
  .nav-menu.visible {
    opacity: 1;
    visibility: visible;
    right: 0;
  }
  .nav-menu .media,
  .nav-menu .content p,
  .nav-menu .article,
  .nav-menu .blog-list {
    display: none;
  }
  .nav-menu h6 {
    font-size: 1rem;
  }
  .nav-menu h6:not(.dropdown-heading) {
    font-weight: 400;
    margin-bottom: 14px;
  }
  .nav-menu h6.dropdown-heading {
    font-weight: 600;
    margin-bottom: 1rem;
  }
  .nav-menu .dropdown-wrapper > .container {
    padding: 1.1rem 0 0 12px;
  }
  .nav-menu .menu-grid {
    padding-left: 15px;
    border-left: 2px solid #eaeaea;
  }
  .nav-menu .has-dropdown:not(:first-child) .dropdown-heading {
    display: none;
  }
}

@media (max-width: 767px) {
  .header .btn.header-demo-btn {
    display: none;
  }
}
@media (min-width: 1200px) and (max-width: 1360px) {
  .header .btn.header-demo-btn {
    display: none;
  }
}

.contact-page .header-demo-btn,
.request-demo-page .header-demo-btn {
  display: none;
}

.old-price {
  font-size: 18px;
}
@media (max-width: 1199px) {
  .old-price {
    font-size: 14px;
  }
}

.blink {
  -webkit-animation-name: blinker;
  -webkit-animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-direction: alternate;
}

@keyframes blinker {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.label-ribbon {
  display: inline-block;
  margin-bottom: 4px;
  padding: 2px 4px;
  color: #fff;
  background: #ee3e5a;
  border-radius: 4px;
  font-size: 11px;
  text-transform: capitalize;
}

.qstn-textarea {
  padding-right: 2rem !important;
}

.characters-required {
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  margin-top: 0.5rem;
}
@media (min-width: 577px) {
  .characters-required {
    text-align: right;
  }
}
@media (max-width: 767px) {
  .characters-required {
    font-size: 12px;
  }
}

#remaining-chars {
  height: 24px;
  width: 24px;
  flex: 0 0 22px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  background-color: #f0eeee;
  font-weight: 600;
  position: relative;
  font-size: 11px;
  margin-left: 2px;
}
#remaining-chars.valid {
  background: transparent;
  overflow: hidden;
}
#remaining-chars.valid:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: #1abf1a;
  position: absolute;
}
#remaining-chars.valid:before {
  content: "";
  display: block;
  width: 13px;
  height: 8px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  z-index: 1;
  transform: rotate(316deg);
  top: 6px;
}
#remaining-chars:empty {
  display: none;
}

.sticky {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 12px 1rem;
  background-color: #000;
  color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-weight: 500;
  text-align: center;
}
@media (min-width: 1500px) {
  .sticky {
    padding: 0.8rem;
  }
}
.sticky * {
  color: inherit;
  font-size: 14px;
  text-align: center;
}
@media (min-width: 1200px) {
  .sticky * {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .sticky * {
    text-align: center;
  }
}
.sticky .sticky__content {
  z-index: 1;
  font-weight: 500;
}
.sticky .sticky__content .svg {
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 8px;
}
.sticky a {
  font-weight: 600;
  border-radius: 4px;
  text-wrap: nowrap;
  display: inline-block;
  margin-left: clamp(5px, 1vw, 10px);
  color: #fff !important;
  padding: 4px 8px;
  background: #df2e57;
  border: 1px solid #df2e57;
  border-radius: 3px;
  font-size: 14px;
}
.sticky a:hover {
  background: #ee3e5a;
  animation: none;
}
@media (max-width: 767px) {
  .sticky a {
    padding: 4px 8px;
    font-size: 14px;
  }
}

.dash {
  position: relative;
  margin: 0.5rem;
}
.dash::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 2px;
  width: 10px;
  background-color: #fff;
}

.vertical-line {
  position: relative;
  margin: 0.5rem;
}
.vertical-line::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 20px;
  width: 2px;
  background-color: #fff;
}

@media (max-width: 1199px) {
  .case-study--card {
    margin-bottom: 10px;
    display: block;
  }
}
.case-study--card .media picture {
  display: flex;
  align-items: end;
  height: 30px;
}
.case-study--card .media picture img {
  max-height: 100%;
  margin: 0;
}
.case-study--card .content h6 {
  font-size: 16px;
}
.case-study--card .content p {
  font-weight: 400;
  display: block;
}
@media (max-width: 1199px) {
  .case-study--card .content p span {
    display: none;
  }
}
.case-study--card .content p strong {
  font-weight: 400;
}
@media (min-width: 1200px) {
  .case-study--card .content p strong {
    font-weight: 600;
  }
}

.sticky--christmas {
  background: radial-gradient(circle, #005270, #080c10 100%);
  position: relative;
  overflow: hidden;
  color: #f9c87f;
}
.sticky--christmas strong {
  color: #f9c87f !important;
}
.sticky--christmas .vertical-line::after {
  background-color: #fff;
}
.sticky--christmas::after {
  content: "";
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../../images/christmas/christmas-bg.png");
}
.sticky--christmas .item-sticky {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 991px) {
  .sticky--christmas .item-sticky {
    display: none;
  }
}
.sticky--christmas .item-sticky-1 {
  left: 0;
  top: 8px;
  transform: scaleX(-1);
}
.sticky--christmas .item-sticky-2 {
  right: 0;
  top: 8px;
}
.sticky--christmas .sticky__content {
  position: relative;
  z-index: 1;
}

.feature-ai svg {
  color: #6d4aff;
  animation: icon-twinkle 2.4s ease-in-out infinite;
}
@keyframes icon-twinkle {
  0%, 100% {
    opacity: 0.4;
    transform: scale(0.75) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.05) rotate(8deg);
  }
}

.slick-list,
.slick-slider,
.slick-track {
  position: relative;
  display: block;
}

.slick-loading .slick-slide,
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slider {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: 0;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-list,
.slick-slider .slick-track {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  top: 0;
  left: 0;
}

.slick-track:after,
.slick-track:before {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.demo_slider button,
.item_img .image:focus,
.item_img:focus {
  outline: 0 !important;
}

.footer {
  background-color: #151f20;
  color: #fff !important;
  padding: calc(2.7rem + 4vw) 0 calc(2.7rem + 2vw) 0;
}
@media (max-width: 767px) {
  .footer {
    padding: 50px 0 100px 0;
  }
}
.footer .container {
  max-width: 1800px;
  width: 100%;
  padding: 0 calc(2.9rem + 2.8vw);
}
@media (max-width: 1200px) {
  .footer .container {
    padding: 0 1.5rem;
  }
}
@media (max-width: 767px) {
  .footer .container {
    padding: 0 1.25rem;
  }
}
.footer .sub-footer-links h6 {
  font-size: 16px;
  font-weight: 600;
  padding-bottom: calc(0.6rem + 0.8vw);
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .footer .sub-footer-links h6 {
    font-size: 15px;
  }
}
.footer-top h5 {
  color: inherit;
  font-weight: 600;
  padding-bottom: calc(0.6rem + 0.8vw);
  font-size: 20px;
  position: relative;
  margin: 0;
}
.footer-top ul li {
  margin-bottom: 10px;
  color: inherit;
}
.footer-top ul li > a {
  color: inherit;
  font-size: 15px;
  text-decoration: none;
  font-weight: 300;
}
@media (max-width: 1300px) {
  .footer-top ul li > a {
    font-size: 14px;
  }
}
.footer-top ul li > a:hover {
  color: #ee3e5a;
}
@media (max-width: 1600px) {
  .footer-top ul li > a {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .footer-top .container > .row [class*=col-] {
    max-width: 20%;
    max-width: 0 0 20%;
  }
}
.footer-links {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .footer-links {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .footer-links h5 {
    padding: 10px 0px;
    cursor: pointer;
    font-size: 17px;
  }
  .footer-links h5.is--active::before {
    transform: rotate(-225deg);
  }
}
@media (max-width: 767px) {
  .footer-links h5::before {
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    content: "";
    height: 6px;
    position: absolute;
    right: 15px;
    top: 17px;
    transform: rotate(-45deg);
    width: 6px;
  }
}
@media (max-width: 767px) {
  .footer-links .toggle__target-js {
    display: none;
  }
}
.footer-links ul {
  padding-bottom: 20px;
}
@media (max-width: 1200px) {
  .footer-links ul {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .footer-links ul {
    display: block;
  }
}
@media (max-width: 1200px) {
  .footer-links ul li {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}
@media (max-width: 767px) {
  .footer-links ul li {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .footer-links ul.how-to-buld--wrap li {
    flex: 49%;
    max-width: 49%;
  }
}
@media (max-width: 767px) {
  .footer-links ul.how-to-buld--wrap li {
    max-width: 100%;
  }
}
.footer-bottom {
  color: #d9d9d9;
  border-top: solid #757e7f 1px;
  padding-top: 1rem;
}
@media screen and (max-width: 1200px) {
  .footer-bottom {
    color: #fff;
  }
}
.footer-bottom p {
  font-size: 13px;
  color: inherit;
}
@media screen and (max-width: 1200px) {
  .footer-bottom-links {
    padding: 0.625rem 0;
  }
}
.footer-bottom-links > li {
  padding: 0px 10px;
  line-height: 1;
  color: inherit;
}
@media screen and (max-width: 767px) {
  .footer-bottom-links > li {
    padding: 0.5rem 0;
  }
}
.footer-bottom-links > li:first-child {
  padding-left: 0;
}
.footer-bottom-links > li a {
  color: inherit;
  font-size: 13px;
  font-weight: 300;
  text-decoration: none;
}
.footer-bottom-links > li a:hover {
  color: #ee3e5a;
}
@media screen and (max-width: 1360px) {
  .footer-social-links {
    flex: 100%;
  }
}
@media screen and (max-width: 1400px) {
  .footer-social-links {
    text-align: center;
    flex: 100%;
  }
  .footer-social-links .social-nav {
    text-align: center;
  }
  .footer-social-links .links--horizontal {
    justify-content: center;
    padding: 1.5rem 0;
  }
}
.footer-social-links .links--horizontal-social li {
  width: 20px;
  height: 20px;
  margin: 0 25px 0 0;
  padding: unset;
}
.footer-social-links .links--horizontal-social li :first-child {
  color: inherit;
  font-size: 1.3em;
  font-weight: 500;
  line-height: 35px;
  text-transform: uppercase;
}
.footer-social-links .links--horizontal-social li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1440px) {
  .footer-social-links .links--horizontal-social li {
    width: 18px;
    height: 18px;
  }
  .footer-social-links .links--horizontal-social li:not(:last-child) {
    margin-right: 20px;
  }
}
.footer-social-links .links--horizontal-social li a {
  border-radius: 100%;
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
}
.footer-social-links .links--horizontal-social li a:hover svg {
  fill: #fff;
}
.footer-social-links .links--horizontal-social li a svg {
  fill: #a6a3b1;
  width: 100%;
  height: 100%;
}

.links--horizontal {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1360px) {
  .links--horizontal {
    justify-content: center;
  }
}

.xdsoft_datetimepicker.xdsoft_inline {
  width: 100%;
}

fieldset.error span.select2-selection--single {
  border-color: red;
}

span.select2-container--open {
  z-index: 11111;
}

.fixed-right-btn {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.open-popups .fixed-right-btn {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 1200px) {
  .hideheader .footer-fixed-cta {
    transform: translateY(0%);
    transition: transform 0.3s ease-in-out;
  }
  .hideheader .version-toggle {
    top: 0 !important;
  }
  .footer-fixed-cta {
    position: fixed;
    bottom: 0;
    text-align: center;
    transform: translateY(100%);
    width: 100%;
    padding: 8px 0 5px;
    transition: transform 0.3s ease-in-out;
    z-index: 999;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  }
  .footer-fixed-cta a {
    min-width: auto;
    font-size: 12px;
    padding: 8px 10px;
    text-transform: uppercase;
  }
}
@media (max-width: 1199px) {
  .footer-fixed-cta {
    display: none;
  }
}
@media (min-width: 1200px) {
  .footer-row {
    display: flex;
    gap: 2rem;
  }
}
.footer-row .footer-colm {
  flex: 1;
}

.btn {
  border: 2px solid transparent;
  border-radius: 0.25rem;
  min-width: calc(11.2rem + 2vw);
  font-weight: 600;
  padding: 0.625rem 1.5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-transform: capitalize;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}
@media (min-width: 768px) {
  .btn {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .btn {
    font-size: 14px;
  }
}
.btn.btn--primary {
  background-color: #df2e57;
  border-color: #df2e57;
  color: #fff;
}
.btn.btn--primary:hover {
  border-color: #df2e57;
  background: #fff;
  color: #df2e57;
}
.btn-primary--outline {
  background-color: transparent !important;
  border-color: #df2e57 !important;
  color: #df2e57 !important;
}
.btn-primary--outline:hover {
  background-color: #df2e57 !important;
  border-color: #ee3e5a !important;
  color: #fff !important;
}
.btn.btn--secondary {
  background-color: #000;
  color: #fff;
}
.btn.btn--secondary:hover {
  color: #000;
  border-color: #000;
  background: transparent;
}
.btn.btn--white {
  background-color: #fff;
  border-color: #fff;
  color: #000;
}
.btn.btn--white:hover {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}
.btn:visited, .btn:active, .btn:focus {
  box-shadow: none;
  background-color: #df2e57;
  border-color: #df2e57;
  color: #fff;
}
.btn:active {
  background-color: #df2e57 !important;
  border-color: #df2e57 !important;
  color: #fff !important;
}
.btn.btn--sm {
  min-width: 140px;
  padding: 0.625rem 1.25rem;
}

.cms .cta {
  padding-top: 2rem;
}

.textlink {
  color: #ee3e5a;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-thickness: 2px;
  display: inline-block;
  vertical-align: middle;
  padding-bottom: 0.5rem;
}
.textlink:hover {
  color: #ee3e5a !important;
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-thickness: 2px;
}

button {
  font-family: "Montserrat", sans-serif;
}

.section {
  padding: calc(1rem + 4vw) 0;
}
.section__header {
  padding-bottom: clamp(2rem, 3.5vw, 3.5rem);
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .section__header {
    padding-bottom: 1.5rem;
  }
  .section__header h2 br {
    display: none;
  }
}
.section__header.left {
  margin: 0;
}
@media (min-width: 768px) {
  .section__header--sm {
    max-width: 66.66%;
  }
}
@media (min-width: 768px) {
  .section__header.--md {
    max-width: 1100px;
  }
}
@media (min-width: 768px) {
  .section__header--md {
    max-width: 1100px;
  }
}
@media (min-width: 992px) {
  .section__header--lg {
    max-width: 83.333333%;
  }
}
.section__header .cms h2 {
  margin-bottom: 0;
}
.section__header p {
  margin-top: 1rem;
  color: #464646;
}
.section__footer {
  padding-top: 3rem;
}

.section:not([style*=background]) + .section:not([style*=background]) {
  padding-top: 0px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7490196078);
  opacity: 0.98;
  z-index: 9999999;
  display: none;
}
.tg-popup body::before {
  z-index: 999999999;
  display: block;
}
body.form-popup-modal--open {
  overflow: hidden;
}
body.form-popup-modal--open::before {
  display: block !important;
}

.tg-popup {
  overflow: hidden;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: auto;
  font-size: 16px;
}

body {
  font-family: "Montserrat", sans-serif;
  height: inherit;
  line-height: 1.42857;
  margin: 0;
}

body,
html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

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

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
hr,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figure,
figcaption,
hgroup,
menu,
footer,
header,
nav,
section,
summary,
time,
mark,
audio,
video,
p {
  margin: 0;
  padding: 0;
}

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

h1 {
  font-size: calc(112.5% + 3vw);
}

h2 {
  font-size: calc(95% + 1.3vw);
  font-weight: 600;
}

h3 {
  font-size: calc(112.5% + 0.75vw);
}

h4 {
  font-size: calc(112.5% + 0.45vw);
}

h5 {
  font-size: calc(112.5% + 0.24vw);
}

h6 {
  font-size: calc(112.5% + 0.04vw);
}

p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
}

p.p--large {
  font-weight: 300;
  font-size: calc(112.5% + 0.24vw);
}

@media only screen and (max-width: 1440px) {
  p,
  p.p--large,
  .listing li {
    font-size: 16px;
  }
}
ol,
ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

ul li {
  list-style-type: none;
}

img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  width: auto;
  height: auto;
}

svg {
  overflow: hidden;
  display: block;
}

a,
a:visited {
  color: inherit;
  line-height: normal;
  text-decoration: none;
  outline: 0px;
  transition: all 0.3s ease 0s;
}

a:hover {
  color: #ee3e5a;
  text-decoration: none;
}

.bg-gray {
  background: #f3f3f3;
}

.bg-white {
  background: #fff;
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
@media only screen and (min-width: 768px) {
  .text-md-center {
    text-align: center;
  }
}
@media only screen and (min-width: 768px) {
  .text-md-left {
    text-align: left;
  }
}
@media only screen and (min-width: 992px) {
  .text-lg-center {
    text-align: center;
  }
}
@media only screen and (min-width: 992px) {
  .text-lg-left {
    text-align: left;
  }
}
@media only screen and (min-width: 1200px) {
  .text-xl-left {
    text-align: left;
  }
}
@media only screen and (min-width: 1200px) {
  .text-xl-center {
    text-align: center;
  }
}

.position-relative {
  position: relative;
}

.h-100 {
  height: 100%;
}

.link__text {
  color: #df2e57;
  text-decoration: underline;
}

.link__text:hover {
  text-decoration: none;
}

.text--link {
  color: #df2e57;
  font-size: 18px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-bottom: 8px;
}
@media only screen and (max-width: 1200px) {
  .text--link {
    font-size: 16px;
  }
}
.text--link:visited {
  color: #df2e57;
}
.text--link.-black {
  color: #000;
}
.text--link.-black:hover {
  color: #df2e57;
}
.text--link .txt {
  border-bottom: solid currentColor 2px;
  padding-bottom: 3px;
}
.text--link::before {
  display: inline-block;
  -webkit-box-ordinal-group: 11;
  -ms-flex-order: 10;
  order: 10;
  margin-left: -11px;
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: width ease 0.3s, margin ease 0.3s;
}
.text--link::after {
  display: inline-block;
  content: "";
  width: 1.1rem;
  margin-left: 0.5rem;
  height: 2px;
  background-color: currentColor;
  transition: width ease 0.3s, margin ease 0.3s;
}
.bg-md-dark .text--link, .bg-dark-grey .text--link {
  color: #fff;
}
.bg-md-dark .text--link:hover, .bg-dark-grey .text--link:hover {
  color: #fff !important;
}
.text--link:hover {
  color: #000;
}
@media only screen and (max-width: 1200px) {
  .text--link .arrow--link {
    font-size: 16px;
  }
}
.text--link-2 {
  color: #df2e57;
  text-decoration: underline;
  font-size: 18px;
  font-weight: 400;
}
p .text--link-2 {
  font-weight: inherit;
}
.text--link-2.-black {
  color: #000;
}
@media only screen and (max-width: 767px) {
  .text--link-2 {
    font-size: 14px;
  }
}
.bg-dark .text--link:hover {
  color: #fff;
}

.link-text,
.link-text:visited {
  color: #df2e57;
  text-decoration: underline;
}

a.link,
a.link:visited {
  color: #df2e57;
  text-decoration: underline;
}
a.link:hover,
a.link:visited:hover {
  text-decoration: none;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

@media (min-width: 768px) {
  .order-md-2 {
    order: 2;
  }
}
@media (min-width: 992px) {
  .order-lg-2 {
    order: 2;
  }
}
.main-title {
  animation-name: blink;
  animation-duration: 1.2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.cta-mt-4 {
  margin-top: 4rem;
}

.box-cta {
  padding: 6rem 3rem;
}
@media (max-width: 1199px) {
  .box-cta {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .box-cta {
    padding: 1.5rem;
  }
}
.box-cta .btn {
  margin-top: 1rem;
  padding: 1rem 1.5rem;
}
.box-cta--primary {
  background-color: #012936;
  color: #fff;
}
.box-cta--primary .btn--primary {
  background-color: #0291c1;
}
.box-cta--primary .btn--primary:hover {
  border-color: currentColor;
  color: #fff;
}
.box-cta--secondary {
  background-color: #0291c1;
  color: #fff;
}
.box-cta--secondary .btn--primary {
  background-color: #012936;
}
.box-cta--secondary .btn--primary:hover {
  border-color: currentColor;
  color: #fff;
}

.icon {
  fill: #df2e57;
  color: #df2e57;
}

.icon-16 {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin: 0 auto;
}

.icon-20 {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin: 0 auto;
}

.icon-24 {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  margin: 0 auto;
}

.icon-28 {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  margin: 0 auto;
}

.icon-32 {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  margin: 0 auto;
}

.icon-36 {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  margin: 0 auto;
}

.icon-60 {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  margin: 0 auto;
}

.loader.demoform-btn-loader {
  position: absolute;
  left: 45%;
  top: 6px;
  background-color: #fff;
  width: 30px;
  height: 30px;
  padding: 4px;
}

.fixed-right-btn {
  position: fixed;
  z-index: 999;
  right: 0;
  top: calc(60% - 44px);
  transform-origin: bottom right;
  transform: rotate(-90deg) translateX(100%);
  border-right: none;
  background-color: #df2e57;
  border-radius: 5px 5px 0 0;
  border-bottom: none;
}
@media (max-width: 992px) and (min-width: 768px) and (orientation: landscape) {
  .fixed-right-btn {
    top: 65%;
  }
}
@media only screen and (max-width: 767px) {
  .fixed-right-btn {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    display: block;
    bottom: 0px;
    top: auto;
    left: 0;
    right: 0;
    text-align: center;
    transform: none;
    margin: 0 auto;
    padding: 0px;
  }
  .fixed-right-btn a {
    width: 100%;
    padding: 18px ​15px;
  }
}
.fixed-right-btn .sticker-Btn {
  color: #fff;
  font-size: 14px;
  display: inline-block;
  padding: 11px 15px;
  line-height: 1;
  font-weight: 600;
  white-space: pre;
  border: 0;
  background: none;
  cursor: pointer;
}
@media (max-width: 767px) {
  .fixed-right-btn .sticker-Btn {
    padding: 20px 15px;
  }
}

@media only screen and (min-width: 992px) {
  .is-loading:after {
    position: absolute;
    width: auto;
    background: #ad071a;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: " ";
    animation: loading 4s linear infinite;
    z-index: -1;
    animation-delay: 2s;
    border-radius: 2px 0 0 2px;
  }
}
@keyframes loading {
  0% {
    right: 170px;
  }
  5% {
    right: 140px;
  }
  15% {
    right: 140px;
  }
  20% {
    right: 110px;
  }
  30% {
    right: 110px;
  }
  35% {
    right: 80px;
  }
  45% {
    right: 80px;
  }
  50% {
    right: 50px;
  }
  60% {
    right: 50px;
  }
  65% {
    right: 0px;
    border-radius: 2px 0 0 2px;
  }
  75% {
    right: 0px;
    opacity: 1;
    border-radius: 2px;
  }
  85% {
    right: 0px;
    opacity: 0;
  }
  100% {
    right: 0px;
    opacity: 0;
  }
}
.arrow-btn {
  position: absolute;
  top: 0;
  right: -28px;
  background-color: #fff;
  color: #000;
  border-radius: 0px 5px 0 0;
  width: 32px;
  height: 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
@media (max-width: 767px) {
  .arrow-btn {
    display: none;
  }
}
.arrow-btn .arrow-anim {
  display: inline-block;
  height: 8px;
  width: 8px;
  border: 10px solid transparent;
  transform: translateY(-50%) rotate(225deg);
  position: relative;
  margin: 0 auto;
  cursor: pointer;
  position: absolute;
  top: 24px;
  right: 7px;
  left: 0;
}
.arrow-btn .arrow-anim:after, .arrow-btn .arrow-anim::before {
  content: "";
  display: block;
  height: inherit;
  width: inherit;
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
}
.arrow-btn .arrow-anim::before {
  animation: top-arrow 1.65s infinite;
}
.arrow-btn .arrow-anim:after {
  opacity: 1;
  animation: bottom-arrow 1.65s infinite;
}

@-webkit-keyframes top-arrow {
  0% {
    transform: translate(-6px, -6px);
  }
  35% {
    transform: translate(0, 0);
  }
  90% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes top-arrow {
  0% {
    transform: translate(-6px, -6px);
  }
  35% {
    transform: translate(0, 0);
  }
  90% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@-webkit-keyframes bottom-arrow {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  45% {
    opacity: 0;
    transform: translate(12px, 12px);
  }
  46% {
    opacity: 0;
    transform: translate(-16px, -16px);
  }
  90% {
    opacity: 1;
    transform: translate(-6px, -6px);
  }
  100% {
    opacity: 1;
    transform: translate(-6px, -6px);
  }
}
@keyframes bottom-arrow {
  0% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  45% {
    opacity: 0;
    transform: translate(12px, 12px);
  }
  46% {
    opacity: 0;
    transform: translate(-16px, -16px);
  }
  90% {
    opacity: 1;
    transform: translate(-6px, -6px);
  }
  100% {
    opacity: 1;
    transform: translate(-6px, -6px);
  }
}
.popup--slider-js:not(.slick-initialized) {
  display: none;
}

.form-modal-wrap {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999999;
  display: none;
  border-radius: 30px;
  overflow: hidden;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .form-modal-wrap {
    background: white;
    border-radius: 30px;
    overflow: hidden;
  }
}

.form-popup-modal {
  display: flex;
  position: relative;
  max-height: 90vh;
}
@media (max-width: 1199px) {
  .form-popup-modal {
    background: white;
    margin: clamp(1rem, 1vw + 0.8rem, 2rem);
    border-radius: 30px;
    overflow: hidden;
  }
}
.form-popup-modal .close-popup-icon {
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
}
@media (max-width: 991px) {
  .form-popup-modal .close-popup-icon {
    position: fixed;
    right: 20px;
    top: 2px;
    cursor: pointer;
    background-color: #838383;
    height: 32px;
    width: 32px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  }
}
.form-popup-modal .modal__left {
  overflow: auto;
  margin: 1rem 0;
}
@media (min-width: 992px) {
  .form-popup-modal .modal__left {
    flex: 0 0 60%;
    max-width: 60%;
  }
}
.form-popup-modal .modal__right {
  flex: 0 0 40%;
  max-width: 40%;
  background-color: #df2e57;
  padding: clamp(1.25rem, 1.375vw + 0.975rem, 2.625rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  .form-popup-modal .modal__right {
    display: none;
  }
}
.form-popup-modal .slider-wrapper {
  position: relative;
  padding: clamp(2.125rem, 2.802vw + 0.388rem, 3.75rem) clamp(1.875rem, 0.625vw + 1.75rem, 2.5rem) clamp(1.875rem, 0.625vw + 1.75rem, 2.5rem);
  border-radius: 20px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.15) 0 0 30px;
}
.form-popup-modal .slider-wrapper .media {
  position: absolute;
  top: 5%;
}
.form-popup-modal .slider-wrapper .media svg {
  width: 32px;
  height: 32px;
  fill: #df2e57;
}
.form-popup-modal .slider-wrapper .content p {
  font-size: 16px;
  padding: 2rem 0 1rem 0;
  font-weight: 500;
  line-height: 2;
}
.form-popup-modal .slider-wrapper .content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 0.5rem;
}
.form-popup-modal .slider-wrapper .slick-dots {
  position: static;
  justify-content: flex-start;
  padding: 0;
  margin-top: 1.8rem;
}
.form-popup-modal .slider-wrapper .slick-dots li {
  width: 40px;
  height: 5px;
  border-radius: 20px;
}
.form-popup-modal .slider-wrapper .popup--slider-js .slick-slide {
  height: auto;
}
.form-popup-modal .slider-wrapper .slick-list,
.form-popup-modal .slider-wrapper .slick-track {
  display: flex;
  align-items: center;
}
.form-popup-modal .slick-dots {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
}
.form-popup-modal .slick-dots li {
  vertical-align: middle;
  display: inline-block;
  margin: 0 3px;
  width: 10px;
  cursor: pointer;
  background-color: #a6a7a7;
  transition: all 0.5s ease-in-out;
  border-radius: 200px;
  height: 10px;
}
.form-popup-modal .slick-dots li button {
  background: none;
  border: none;
  text-indent: -9999999px;
  height: 0px;
  display: none;
}
.form-popup-modal .slick-dots li.slick-active {
  background-color: #ff3a58;
  width: 30px;
}

.form {
  padding: clamp(1.25rem, 2.5vw + 0.75rem, 3.75rem);
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .form {
    gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .form__group {
    margin-bottom: 1.5rem;
  }
}
.form__group select {
  font-weight: 400;
  padding-right: 30px;
  appearance: none;
  background-color: transparent;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAICAYAAADJEc7MAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAG5JREFUeNpiZoCAKiBWAuKLDIQBWC0LkJAGYhcg5oNKLCSgKQiIr8MENIF4HxCfAeJ4PJpA8ouRLCGoGacmfJqxamLEoXkqVNF1KB9EZwPxJ0Ih5wK15QzUBRjOY8ah8R4Q/4RqqATip+gKAAIMAI69Gsw786LtAAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
}
.form__label {
  display: block;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 4px;
}
.form__head {
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .form__head {
    margin-bottom: 1.8rem !important;
  }
}
.form__head h2 {
  font-size: clamp(1.25rem, 0.25vw + 1.2rem, 1.5rem);
  font-weight: 700;
}
.form__head p {
  font-size: 14px;
  font-weight: 400;
}
.form__input {
  border: 1px solid #d2d2d2;
  padding: 14px;
  border-radius: 6px;
  width: 100%;
  font-family: inherit;
}
.form__input:focus {
  outline: none;
}
.form textarea {
  resize: none;
}
.form .btn {
  width: 100%;
  font-family: inherit;
  background-color: #000;
}

.iti {
  position: relative;
  display: flex;
  border: 1px solid #d4dee5;
  border-radius: 3px;
}

.iti * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.iti__hide {
  display: none;
}

.iti__v-hide {
  visibility: hidden;
}

.iti input,
.iti input[type=text],
.iti input[type=tel] {
  position: relative;
  z-index: 0;
}

.iti__flag-container {
  position: relative;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 1px;
}

.iti__selected-flag {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 6px 0 8px;
}

.iti__arrow {
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #555;
}

.iti__arrow--up {
  border-top: none;
  border-bottom: 4px solid #555;
}

.iti__country-list {
  position: absolute;
  z-index: 9;
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0 0 0 -1px;
  -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  background-color: white;
  border: 1px solid #CCC;
  white-space: nowrap;
  max-height: 200px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.iti__country-list--dropup {
  bottom: 100%;
  margin-bottom: -1px;
}

@media (max-width: 500px) {
  .iti__country-list {
    white-space: normal;
  }
}
.iti__flag-box {
  display: inline-block;
  width: 20px;
}

.iti__divider {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #CCC;
}

.iti__country {
  padding: 5px 10px;
  outline: none;
}

.iti__dial-code {
  color: #999;
}

.iti__country.iti__highlight {
  background-color: rgba(0, 0, 0, 0.05);
}

.iti__flag-box,
.iti__country-name,
.iti__dial-code {
  vertical-align: middle;
}

.iti__flag-box,
.iti__country-name {
  margin-right: 6px;
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type=text],
.iti--allow-dropdown input[type=tel],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type=text],
.iti--separate-dial-code input[type=tel] {
  /* padding-right: 6px;
  padding-left: 52px;
  margin-left: 0;*/
  border: none;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
  right: auto;
  left: 0;
}

.iti--allow-dropdown .iti__flag-container:hover {
  cursor: pointer;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  /*background-color: rgba(0, 0, 0, 0.05);*/
}

.iti--allow-dropdown input[disabled] + .iti__flag-container:hover,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover {
  cursor: default;
}

.iti--allow-dropdown input[disabled] + .iti__flag-container:hover .iti__selected-flag,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover .iti__selected-flag {
  background-color: transparent;
}

/*.iti--separate-dial-code .iti__selected-flag {
    background-color: rgba(0, 0, 0, 0.05);
    border:1px solid #d4dee5;
}*/
.iti--separate-dial-code .iti__selected-dial-code {
  margin-left: 6px;
}

.iti--container {
  position: absolute;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: 1px;
}

.iti--container:hover {
  cursor: pointer;
}

.iti-mobile .iti--container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed;
}

.iti-mobile .iti__country-list {
  max-height: 100%;
  width: 100%;
}

.iti-mobile .iti__country {
  padding: 10px 10px;
  line-height: 1.5em;
}

.iti__flag {
  width: 20px;
}

.iti__flag.iti__be {
  width: 18px;
}

.iti__flag.iti__ch {
  width: 15px;
}

.iti__flag.iti__mc {
  width: 19px;
}

.iti__flag.iti__ne {
  width: 18px;
}

.iti__flag.iti__np {
  width: 13px;
}

.iti__flag.iti__va {
  width: 15px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-size: 5652px 15px;
  }
}
.iti__flag.iti__ac {
  height: 10px;
  background-position: 0px 0px;
}

.iti__flag.iti__ad {
  height: 14px;
  background-position: -22px 0px;
}

.iti__flag.iti__ae {
  height: 10px;
  background-position: -44px 0px;
}

.iti__flag.iti__af {
  height: 14px;
  background-position: -66px 0px;
}

.iti__flag.iti__ag {
  height: 14px;
  background-position: -88px 0px;
}

.iti__flag.iti__ai {
  height: 10px;
  background-position: -110px 0px;
}

.iti__flag.iti__al {
  height: 15px;
  background-position: -132px 0px;
}

.iti__flag.iti__am {
  height: 10px;
  background-position: -154px 0px;
}

.iti__flag.iti__ao {
  height: 14px;
  background-position: -176px 0px;
}

.iti__flag.iti__aq {
  height: 14px;
  background-position: -198px 0px;
}

.iti__flag.iti__ar {
  height: 13px;
  background-position: -220px 0px;
}

.iti__flag.iti__as {
  height: 10px;
  background-position: -242px 0px;
}

.iti__flag.iti__at {
  height: 14px;
  background-position: -264px 0px;
}

.iti__flag.iti__au {
  height: 10px;
  background-position: -286px 0px;
}

.iti__flag.iti__aw {
  height: 14px;
  background-position: -308px 0px;
}

.iti__flag.iti__ax {
  height: 13px;
  background-position: -330px 0px;
}

.iti__flag.iti__az {
  height: 10px;
  background-position: -352px 0px;
}

.iti__flag.iti__ba {
  height: 10px;
  background-position: -374px 0px;
}

.iti__flag.iti__bb {
  height: 14px;
  background-position: -396px 0px;
}

.iti__flag.iti__bd {
  height: 12px;
  background-position: -418px 0px;
}

.iti__flag.iti__be {
  height: 15px;
  background-position: -440px 0px;
}

.iti__flag.iti__bf {
  height: 14px;
  background-position: -460px 0px;
}

.iti__flag.iti__bg {
  height: 12px;
  background-position: -482px 0px;
}

.iti__flag.iti__bh {
  height: 12px;
  background-position: -504px 0px;
}

.iti__flag.iti__bi {
  height: 12px;
  background-position: -526px 0px;
}

.iti__flag.iti__bj {
  height: 14px;
  background-position: -548px 0px;
}

.iti__flag.iti__bl {
  height: 14px;
  background-position: -570px 0px;
}

.iti__flag.iti__bm {
  height: 10px;
  background-position: -592px 0px;
}

.iti__flag.iti__bn {
  height: 10px;
  background-position: -614px 0px;
}

.iti__flag.iti__bo {
  height: 14px;
  background-position: -636px 0px;
}

.iti__flag.iti__bq {
  height: 14px;
  background-position: -658px 0px;
}

.iti__flag.iti__br {
  height: 14px;
  background-position: -680px 0px;
}

.iti__flag.iti__bs {
  height: 10px;
  background-position: -702px 0px;
}

.iti__flag.iti__bt {
  height: 14px;
  background-position: -724px 0px;
}

.iti__flag.iti__bv {
  height: 15px;
  background-position: -746px 0px;
}

.iti__flag.iti__bw {
  height: 14px;
  background-position: -768px 0px;
}

.iti__flag.iti__by {
  height: 10px;
  background-position: -790px 0px;
}

.iti__flag.iti__bz {
  height: 14px;
  background-position: -812px 0px;
}

.iti__flag.iti__ca {
  height: 10px;
  background-position: -834px 0px;
}

.iti__flag.iti__cc {
  height: 10px;
  background-position: -856px 0px;
}

.iti__flag.iti__cd {
  height: 15px;
  background-position: -878px 0px;
}

.iti__flag.iti__cf {
  height: 14px;
  background-position: -900px 0px;
}

.iti__flag.iti__cg {
  height: 14px;
  background-position: -922px 0px;
}

.iti__flag.iti__ch {
  height: 15px;
  background-position: -944px 0px;
}

.iti__flag.iti__ci {
  height: 14px;
  background-position: -961px 0px;
}

.iti__flag.iti__ck {
  height: 10px;
  background-position: -983px 0px;
}

.iti__flag.iti__cl {
  height: 14px;
  background-position: -1005px 0px;
}

.iti__flag.iti__cm {
  height: 14px;
  background-position: -1027px 0px;
}

.iti__flag.iti__cn {
  height: 14px;
  background-position: -1049px 0px;
}

.iti__flag.iti__co {
  height: 14px;
  background-position: -1071px 0px;
}

.iti__flag.iti__cp {
  height: 14px;
  background-position: -1093px 0px;
}

.iti__flag.iti__cr {
  height: 12px;
  background-position: -1115px 0px;
}

.iti__flag.iti__cu {
  height: 10px;
  background-position: -1137px 0px;
}

.iti__flag.iti__cv {
  height: 12px;
  background-position: -1159px 0px;
}

.iti__flag.iti__cw {
  height: 14px;
  background-position: -1181px 0px;
}

.iti__flag.iti__cx {
  height: 10px;
  background-position: -1203px 0px;
}

.iti__flag.iti__cy {
  height: 14px;
  background-position: -1225px 0px;
}

.iti__flag.iti__cz {
  height: 14px;
  background-position: -1247px 0px;
}

.iti__flag.iti__de {
  height: 12px;
  background-position: -1269px 0px;
}

.iti__flag.iti__dg {
  height: 10px;
  background-position: -1291px 0px;
}

.iti__flag.iti__dj {
  height: 14px;
  background-position: -1313px 0px;
}

.iti__flag.iti__dk {
  height: 15px;
  background-position: -1335px 0px;
}

.iti__flag.iti__dm {
  height: 10px;
  background-position: -1357px 0px;
}

.iti__flag.iti__do {
  height: 14px;
  background-position: -1379px 0px;
}

.iti__flag.iti__dz {
  height: 14px;
  background-position: -1401px 0px;
}

.iti__flag.iti__ea {
  height: 14px;
  background-position: -1423px 0px;
}

.iti__flag.iti__ec {
  height: 14px;
  background-position: -1445px 0px;
}

.iti__flag.iti__ee {
  height: 13px;
  background-position: -1467px 0px;
}

.iti__flag.iti__eg {
  height: 14px;
  background-position: -1489px 0px;
}

.iti__flag.iti__eh {
  height: 10px;
  background-position: -1511px 0px;
}

.iti__flag.iti__er {
  height: 10px;
  background-position: -1533px 0px;
}

.iti__flag.iti__es {
  height: 14px;
  background-position: -1555px 0px;
}

.iti__flag.iti__et {
  height: 10px;
  background-position: -1577px 0px;
}

.iti__flag.iti__eu {
  height: 14px;
  background-position: -1599px 0px;
}

.iti__flag.iti__fi {
  height: 12px;
  background-position: -1621px 0px;
}

.iti__flag.iti__fj {
  height: 10px;
  background-position: -1643px 0px;
}

.iti__flag.iti__fk {
  height: 10px;
  background-position: -1665px 0px;
}

.iti__flag.iti__fm {
  height: 11px;
  background-position: -1687px 0px;
}

.iti__flag.iti__fo {
  height: 15px;
  background-position: -1709px 0px;
}

.iti__flag.iti__fr {
  height: 14px;
  background-position: -1731px 0px;
}

.iti__flag.iti__ga {
  height: 15px;
  background-position: -1753px 0px;
}

.iti__flag.iti__gb {
  height: 10px;
  background-position: -1775px 0px;
}

.iti__flag.iti__gd {
  height: 12px;
  background-position: -1797px 0px;
}

.iti__flag.iti__ge {
  height: 14px;
  background-position: -1819px 0px;
}

.iti__flag.iti__gf {
  height: 14px;
  background-position: -1841px 0px;
}

.iti__flag.iti__gg {
  height: 14px;
  background-position: -1863px 0px;
}

.iti__flag.iti__gh {
  height: 14px;
  background-position: -1885px 0px;
}

.iti__flag.iti__gi {
  height: 10px;
  background-position: -1907px 0px;
}

.iti__flag.iti__gl {
  height: 14px;
  background-position: -1929px 0px;
}

.iti__flag.iti__gm {
  height: 14px;
  background-position: -1951px 0px;
}

.iti__flag.iti__gn {
  height: 14px;
  background-position: -1973px 0px;
}

.iti__flag.iti__gp {
  height: 14px;
  background-position: -1995px 0px;
}

.iti__flag.iti__gq {
  height: 14px;
  background-position: -2017px 0px;
}

.iti__flag.iti__gr {
  height: 14px;
  background-position: -2039px 0px;
}

.iti__flag.iti__gs {
  height: 10px;
  background-position: -2061px 0px;
}

.iti__flag.iti__gt {
  height: 13px;
  background-position: -2083px 0px;
}

.iti__flag.iti__gu {
  height: 11px;
  background-position: -2105px 0px;
}

.iti__flag.iti__gw {
  height: 10px;
  background-position: -2127px 0px;
}

.iti__flag.iti__gy {
  height: 12px;
  background-position: -2149px 0px;
}

.iti__flag.iti__hk {
  height: 14px;
  background-position: -2171px 0px;
}

.iti__flag.iti__hm {
  height: 10px;
  background-position: -2193px 0px;
}

.iti__flag.iti__hn {
  height: 10px;
  background-position: -2215px 0px;
}

.iti__flag.iti__hr {
  height: 10px;
  background-position: -2237px 0px;
}

.iti__flag.iti__ht {
  height: 12px;
  background-position: -2259px 0px;
}

.iti__flag.iti__hu {
  height: 10px;
  background-position: -2281px 0px;
}

.iti__flag.iti__ic {
  height: 14px;
  background-position: -2303px 0px;
}

.iti__flag.iti__id {
  height: 14px;
  background-position: -2325px 0px;
}

.iti__flag.iti__ie {
  height: 10px;
  background-position: -2347px 0px;
}

.iti__flag.iti__il {
  height: 15px;
  background-position: -2369px 0px;
}

.iti__flag.iti__im {
  height: 10px;
  background-position: -2391px 0px;
}

.iti__flag.iti__in {
  height: 14px;
  background-position: -2413px 0px;
}

.iti__flag.iti__io {
  height: 10px;
  background-position: -2435px 0px;
}

.iti__flag.iti__iq {
  height: 14px;
  background-position: -2457px 0px;
}

.iti__flag.iti__ir {
  height: 12px;
  background-position: -2479px 0px;
}

.iti__flag.iti__is {
  height: 15px;
  background-position: -2501px 0px;
}

.iti__flag.iti__it {
  height: 14px;
  background-position: -2523px 0px;
}

.iti__flag.iti__je {
  height: 12px;
  background-position: -2545px 0px;
}

.iti__flag.iti__jm {
  height: 10px;
  background-position: -2567px 0px;
}

.iti__flag.iti__jo {
  height: 10px;
  background-position: -2589px 0px;
}

.iti__flag.iti__jp {
  height: 14px;
  background-position: -2611px 0px;
}

.iti__flag.iti__ke {
  height: 14px;
  background-position: -2633px 0px;
}

.iti__flag.iti__kg {
  height: 12px;
  background-position: -2655px 0px;
}

.iti__flag.iti__kh {
  height: 13px;
  background-position: -2677px 0px;
}

.iti__flag.iti__ki {
  height: 10px;
  background-position: -2699px 0px;
}

.iti__flag.iti__km {
  height: 12px;
  background-position: -2721px 0px;
}

.iti__flag.iti__kn {
  height: 14px;
  background-position: -2743px 0px;
}

.iti__flag.iti__kp {
  height: 10px;
  background-position: -2765px 0px;
}

.iti__flag.iti__kr {
  height: 14px;
  background-position: -2787px 0px;
}

.iti__flag.iti__kw {
  height: 10px;
  background-position: -2809px 0px;
}

.iti__flag.iti__ky {
  height: 10px;
  background-position: -2831px 0px;
}

.iti__flag.iti__kz {
  height: 10px;
  background-position: -2853px 0px;
}

.iti__flag.iti__la {
  height: 14px;
  background-position: -2875px 0px;
}

.iti__flag.iti__lb {
  height: 14px;
  background-position: -2897px 0px;
}

.iti__flag.iti__lc {
  height: 10px;
  background-position: -2919px 0px;
}

.iti__flag.iti__li {
  height: 12px;
  background-position: -2941px 0px;
}

.iti__flag.iti__lk {
  height: 10px;
  background-position: -2963px 0px;
}

.iti__flag.iti__lr {
  height: 11px;
  background-position: -2985px 0px;
}

.iti__flag.iti__ls {
  height: 14px;
  background-position: -3007px 0px;
}

.iti__flag.iti__lt {
  height: 12px;
  background-position: -3029px 0px;
}

.iti__flag.iti__lu {
  height: 12px;
  background-position: -3051px 0px;
}

.iti__flag.iti__lv {
  height: 10px;
  background-position: -3073px 0px;
}

.iti__flag.iti__ly {
  height: 10px;
  background-position: -3095px 0px;
}

.iti__flag.iti__ma {
  height: 14px;
  background-position: -3117px 0px;
}

.iti__flag.iti__mc {
  height: 15px;
  background-position: -3139px 0px;
}

.iti__flag.iti__md {
  height: 10px;
  background-position: -3160px 0px;
}

.iti__flag.iti__me {
  height: 10px;
  background-position: -3182px 0px;
}

.iti__flag.iti__mf {
  height: 14px;
  background-position: -3204px 0px;
}

.iti__flag.iti__mg {
  height: 14px;
  background-position: -3226px 0px;
}

.iti__flag.iti__mh {
  height: 11px;
  background-position: -3248px 0px;
}

.iti__flag.iti__mk {
  height: 10px;
  background-position: -3270px 0px;
}

.iti__flag.iti__ml {
  height: 14px;
  background-position: -3292px 0px;
}

.iti__flag.iti__mm {
  height: 14px;
  background-position: -3314px 0px;
}

.iti__flag.iti__mn {
  height: 10px;
  background-position: -3336px 0px;
}

.iti__flag.iti__mo {
  height: 14px;
  background-position: -3358px 0px;
}

.iti__flag.iti__mp {
  height: 10px;
  background-position: -3380px 0px;
}

.iti__flag.iti__mq {
  height: 14px;
  background-position: -3402px 0px;
}

.iti__flag.iti__mr {
  height: 14px;
  background-position: -3424px 0px;
}

.iti__flag.iti__ms {
  height: 10px;
  background-position: -3446px 0px;
}

.iti__flag.iti__mt {
  height: 14px;
  background-position: -3468px 0px;
}

.iti__flag.iti__mu {
  height: 14px;
  background-position: -3490px 0px;
}

.iti__flag.iti__mv {
  height: 14px;
  background-position: -3512px 0px;
}

.iti__flag.iti__mw {
  height: 14px;
  background-position: -3534px 0px;
}

.iti__flag.iti__mx {
  height: 12px;
  background-position: -3556px 0px;
}

.iti__flag.iti__my {
  height: 10px;
  background-position: -3578px 0px;
}

.iti__flag.iti__mz {
  height: 14px;
  background-position: -3600px 0px;
}

.iti__flag.iti__na {
  height: 14px;
  background-position: -3622px 0px;
}

.iti__flag.iti__nc {
  height: 10px;
  background-position: -3644px 0px;
}

.iti__flag.iti__ne {
  height: 15px;
  background-position: -3666px 0px;
}

.iti__flag.iti__nf {
  height: 10px;
  background-position: -3686px 0px;
}

.iti__flag.iti__ng {
  height: 10px;
  background-position: -3708px 0px;
}

.iti__flag.iti__ni {
  height: 12px;
  background-position: -3730px 0px;
}

.iti__flag.iti__nl {
  height: 14px;
  background-position: -3752px 0px;
}

.iti__flag.iti__no {
  height: 15px;
  background-position: -3774px 0px;
}

.iti__flag.iti__np {
  height: 15px;
  background-position: -3796px 0px;
}

.iti__flag.iti__nr {
  height: 10px;
  background-position: -3811px 0px;
}

.iti__flag.iti__nu {
  height: 10px;
  background-position: -3833px 0px;
}

.iti__flag.iti__nz {
  height: 10px;
  background-position: -3855px 0px;
}

.iti__flag.iti__om {
  height: 10px;
  background-position: -3877px 0px;
}

.iti__flag.iti__pa {
  height: 14px;
  background-position: -3899px 0px;
}

.iti__flag.iti__pe {
  height: 14px;
  background-position: -3921px 0px;
}

.iti__flag.iti__pf {
  height: 14px;
  background-position: -3943px 0px;
}

.iti__flag.iti__pg {
  height: 15px;
  background-position: -3965px 0px;
}

.iti__flag.iti__ph {
  height: 10px;
  background-position: -3987px 0px;
}

.iti__flag.iti__pk {
  height: 14px;
  background-position: -4009px 0px;
}

.iti__flag.iti__pl {
  height: 13px;
  background-position: -4031px 0px;
}

.iti__flag.iti__pm {
  height: 14px;
  background-position: -4053px 0px;
}

.iti__flag.iti__pn {
  height: 10px;
  background-position: -4075px 0px;
}

.iti__flag.iti__pr {
  height: 14px;
  background-position: -4097px 0px;
}

.iti__flag.iti__ps {
  height: 10px;
  background-position: -4119px 0px;
}

.iti__flag.iti__pt {
  height: 14px;
  background-position: -4141px 0px;
}

.iti__flag.iti__pw {
  height: 13px;
  background-position: -4163px 0px;
}

.iti__flag.iti__py {
  height: 11px;
  background-position: -4185px 0px;
}

.iti__flag.iti__qa {
  height: 8px;
  background-position: -4207px 0px;
}

.iti__flag.iti__re {
  height: 14px;
  background-position: -4229px 0px;
}

.iti__flag.iti__ro {
  height: 14px;
  background-position: -4251px 0px;
}

.iti__flag.iti__rs {
  height: 14px;
  background-position: -4273px 0px;
}

.iti__flag.iti__ru {
  height: 14px;
  background-position: -4295px 0px;
}

.iti__flag.iti__rw {
  height: 14px;
  background-position: -4317px 0px;
}

.iti__flag.iti__sa {
  height: 14px;
  background-position: -4339px 0px;
}

.iti__flag.iti__sb {
  height: 10px;
  background-position: -4361px 0px;
}

.iti__flag.iti__sc {
  height: 10px;
  background-position: -4383px 0px;
}

.iti__flag.iti__sd {
  height: 10px;
  background-position: -4405px 0px;
}

.iti__flag.iti__se {
  height: 13px;
  background-position: -4427px 0px;
}

.iti__flag.iti__sg {
  height: 14px;
  background-position: -4449px 0px;
}

.iti__flag.iti__sh {
  height: 10px;
  background-position: -4471px 0px;
}

.iti__flag.iti__si {
  height: 10px;
  background-position: -4493px 0px;
}

.iti__flag.iti__sj {
  height: 15px;
  background-position: -4515px 0px;
}

.iti__flag.iti__sk {
  height: 14px;
  background-position: -4537px 0px;
}

.iti__flag.iti__sl {
  height: 14px;
  background-position: -4559px 0px;
}

.iti__flag.iti__sm {
  height: 15px;
  background-position: -4581px 0px;
}

.iti__flag.iti__sn {
  height: 14px;
  background-position: -4603px 0px;
}

.iti__flag.iti__so {
  height: 14px;
  background-position: -4625px 0px;
}

.iti__flag.iti__sr {
  height: 14px;
  background-position: -4647px 0px;
}

.iti__flag.iti__ss {
  height: 10px;
  background-position: -4669px 0px;
}

.iti__flag.iti__st {
  height: 10px;
  background-position: -4691px 0px;
}

.iti__flag.iti__sv {
  height: 12px;
  background-position: -4713px 0px;
}

.iti__flag.iti__sx {
  height: 14px;
  background-position: -4735px 0px;
}

.iti__flag.iti__sy {
  height: 14px;
  background-position: -4757px 0px;
}

.iti__flag.iti__sz {
  height: 14px;
  background-position: -4779px 0px;
}

.iti__flag.iti__ta {
  height: 10px;
  background-position: -4801px 0px;
}

.iti__flag.iti__tc {
  height: 10px;
  background-position: -4823px 0px;
}

.iti__flag.iti__td {
  height: 14px;
  background-position: -4845px 0px;
}

.iti__flag.iti__tf {
  height: 14px;
  background-position: -4867px 0px;
}

.iti__flag.iti__tg {
  height: 13px;
  background-position: -4889px 0px;
}

.iti__flag.iti__th {
  height: 14px;
  background-position: -4911px 0px;
}

.iti__flag.iti__tj {
  height: 10px;
  background-position: -4933px 0px;
}

.iti__flag.iti__tk {
  height: 10px;
  background-position: -4955px 0px;
}

.iti__flag.iti__tl {
  height: 10px;
  background-position: -4977px 0px;
}

.iti__flag.iti__tm {
  height: 14px;
  background-position: -4999px 0px;
}

.iti__flag.iti__tn {
  height: 14px;
  background-position: -5021px 0px;
}

.iti__flag.iti__to {
  height: 10px;
  background-position: -5043px 0px;
}

.iti__flag.iti__tr {
  height: 14px;
  background-position: -5065px 0px;
}

.iti__flag.iti__tt {
  height: 12px;
  background-position: -5087px 0px;
}

.iti__flag.iti__tv {
  height: 10px;
  background-position: -5109px 0px;
}

.iti__flag.iti__tw {
  height: 14px;
  background-position: -5131px 0px;
}

.iti__flag.iti__tz {
  height: 14px;
  background-position: -5153px 0px;
}

.iti__flag.iti__ua {
  height: 14px;
  background-position: -5175px 0px;
}

.iti__flag.iti__ug {
  height: 14px;
  background-position: -5197px 0px;
}

.iti__flag.iti__um {
  height: 11px;
  background-position: -5219px 0px;
}

.iti__flag.iti__un {
  height: 14px;
  background-position: -5241px 0px;
}

.iti__flag.iti__us {
  height: 11px;
  background-position: -5263px 0px;
}

.iti__flag.iti__uy {
  height: 14px;
  background-position: -5285px 0px;
}

.iti__flag.iti__uz {
  height: 10px;
  background-position: -5307px 0px;
}

.iti__flag.iti__va {
  height: 15px;
  background-position: -5329px 0px;
}

.iti__flag.iti__vc {
  height: 14px;
  background-position: -5346px 0px;
}

.iti__flag.iti__ve {
  height: 14px;
  background-position: -5368px 0px;
}

.iti__flag.iti__vg {
  height: 10px;
  background-position: -5390px 0px;
}

.iti__flag.iti__vi {
  height: 14px;
  background-position: -5412px 0px;
}

.iti__flag.iti__vn {
  height: 14px;
  background-position: -5434px 0px;
}

.iti__flag.iti__vu {
  height: 12px;
  background-position: -5456px 0px;
}

.iti__flag.iti__wf {
  height: 14px;
  background-position: -5478px 0px;
}

.iti__flag.iti__ws {
  height: 10px;
  background-position: -5500px 0px;
}

.iti__flag.iti__xk {
  height: 15px;
  background-position: -5522px 0px;
}

.iti__flag.iti__ye {
  height: 14px;
  background-position: -5544px 0px;
}

.iti__flag.iti__yt {
  height: 14px;
  background-position: -5566px 0px;
}

.iti__flag.iti__za {
  height: 14px;
  background-position: -5588px 0px;
}

.iti__flag.iti__zm {
  height: 14px;
  background-position: -5610px 0px;
}

.iti__flag.iti__zw {
  height: 10px;
  background-position: -5632px 0px;
}

.iti__flag {
  height: 15px;
  -webkit-box-shadow: 0px 0px 1px 0px #888;
  box-shadow: 0px 0px 1px 0px #888;
  background-image: url("/images/flags.png");
  background-repeat: no-repeat;
  background-color: #DBDBDB;
  background-position: 20px 0;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("/images/flags@2x.png");
  }
}
.iti__flag.iti__np {
  background-color: transparent;
}

.checkbox,
.radio {
  display: inline-flex;
  align-items: center;
  position: relative;
  vertical-align: middle;
  font-weight: 500;
  margin: 0;
  color: #444;
  font-size: 14px;
  cursor: pointer;
}
.checkbox input,
.radio input {
  margin: 0 0.5rem 0 0 !important;
  z-index: 1;
  cursor: pointer;
  width: 18px;
  height: 18px;
}
.checkbox input:checked,
.radio input:checked {
  background-color: #2b83c2;
}
.checkbox input[type=radio],
.checkbox input[type=checkbox],
.radio input[type=radio],
.radio input[type=checkbox] {
  position: relative;
}

.radio.disabled,
.checkbox.disabled {
  cursor: not-allowed;
}

input[type=radio][disabled],
input[type=checkbox][disabled],
input[type=text][disabled],
input[type=password][disabled] {
  cursor: not-allowed;
}

.checkbox.disabled,
.radio.disabled {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

@-webkit-keyframes autofill {
  to {
    background: #fff;
  }
}
.contactblock {
  display: none;
}

.ajax-error {
  display: none;
}

.add-more {
  display: none;
}

.refresh-icon {
  width: 22px;
  height: 22px;
  display: none;
  cursor: pointer;
  transition: all 1s ease;
  margin-left: 10px;
}

/*NEW CONTACT US PAGE DESIGN*/
.error {
  color: red;
  font-size: 14px;
}

.form-header {
  text-align: center;
  padding-bottom: 3rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .form-header {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .form-header br {
    display: none;
  }
}
.form-header h1,
.form-header h2,
.form-header p {
  color: #fff;
}

.form-body {
  max-width: 700px;
  margin: 0 auto 3rem;
  padding: calc(1rem + 1.5vw);
  box-shadow: 0.15vw 0.3vw 2.5vw 0 rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  background-color: #fff;
}

.form--contact .form-group {
  padding-bottom: 2rem;
  position: relative;
}
.form--contact .form-group h6 {
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: 1rem;
}
.form--contact input[type=text],
.form--contact input[type=email],
.form--contact input[type=phone],
.form--contact input[type=search],
.form--contact input[type=password],
.form--contact input[type=tel],
.form--contact textarea,
.form--contact select,
.form--contact input[type=number],
.form--contact input[type=file] {
  background-color: #fff;
  border: none;
  border-bottom: 1px solid #727491;
  border-radius: 0;
  height: 42px;
  padding: 0;
  width: 100%;
  color: #000;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  transition: 0.25s all ease-in-out;
  display: block;
}
.form--contact input[type=text]:focus,
.form--contact input[type=email]:focus,
.form--contact input[type=phone]:focus,
.form--contact input[type=search]:focus,
.form--contact input[type=password]:focus,
.form--contact input[type=tel]:focus,
.form--contact textarea:focus,
.form--contact select:focus,
.form--contact input[type=number]:focus,
.form--contact input[type=file]:focus {
  border-color: #000;
  outline: none;
}
.form--contact input[type=text]:hover,
.form--contact input[type=email]:hover,
.form--contact input[type=phone]:hover,
.form--contact input[type=search]:hover,
.form--contact input[type=password]:hover,
.form--contact input[type=tel]:hover,
.form--contact textarea:hover,
.form--contact select:hover,
.form--contact input[type=number]:hover,
.form--contact input[type=file]:hover {
  border-color: #acadb9;
}
.form--contact input:-webkit-autofill,
.form--contact textarea:-webkit-autofill,
.form--contact select:-webkit-autofill {
  -webkit-animation-name: autofill;
  -webkit-animation-fill-mode: both;
}
.form--contact select {
  -moz-appearance: none;
  -webkit-appearance: none;
  padding-right: 50px;
  background-image: url(/images/down-arrow.png);
  background-size: 14px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: calc(100% - 14px) center;
  line-height: inherit;
}
.form--contact textarea {
  height: 120px;
  max-height: 200px;
  padding: 15px 0;
  resize: none;
  line-height: 1.6;
}
.form--contact input[type=file] {
  padding: 10px;
  height: auto;
}
.form--contact .form-label {
  color: #1b1b1b;
  font-size: 1rem;
  font-weight: 500;
  display: block;
}
.form--contact .form-label span {
  font-size: 11px;
  color: #858585;
  margin-left: 3px;
  margin-top: 2px;
}
.form--contact input.error,
.form--contact select.error,
.form--contact textarea.error {
  border-color: red !important;
}
.form--contact .error {
  border-color: red;
}
.form--contact .error .iti--allow-dropdown {
  border-color: red;
}
.form--contact .error iframe {
  border: 1px solid red;
}
.form--contact input.form-button,
.form--contact button.form-button {
  background: #ee3e5a;
  color: #fff;
  border: none;
  padding: 5px 30px;
  font-size: 1.25rem;
  height: 50px;
  display: block;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid #ee3e5a;
  min-width: 200px;
  margin: 0 auto;
}
.form--contact input.form-button:hover,
.form--contact button.form-button:hover {
  background: #fff;
  color: #ee3e5a;
  border: 1px solid #ee3e5a;
}
.form--contact input.form-button {
  margin: 0;
  margin-bottom: 4px;
}
@media (min-width: 1200px) {
  .form--contact input.form-button {
    min-width: 300px;
  }
}
.form--contact .form-questionnaire {
  padding-top: 5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.iti {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #727491;
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type=text],
.iti--allow-dropdown input[type=tel],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type=text],
.iti--separate-dial-code input[type=tel] {
  border: none;
  height: 40px;
}

.iti__flag-container {
  color: #000;
}

input:-internal-autofill-selected {
  background-color: #fff !important;
}

.more-uploads-file {
  margin-top: 0.5rem;
}

.attachfile {
  position: relative;
}
.attachfile .js-attachfile-div {
  position: relative;
}
.attachfile .js-attachfile-div {
  margin-top: 1rem;
}

.remove-file {
  position: absolute;
  right: -10px;
  top: 15px;
  text-indent: -9999px;
  width: 20px;
  height: 20px;
  background-color: #ee3e5a;
  border-radius: 50%;
}
.remove-file:hover {
  background-color: #000;
}
.remove-file::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 10px;
  background-color: #fff;
  left: 5px;
  top: 9px;
}

.add-more {
  color: #ee3e5a;
  font-size: 14px;
  float: right;
  text-decoration: underline;
}
.add-more:hover {
  color: #000;
  text-decoration: none;
}

.form-input--file + label {
  max-width: 100%;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  display: flex;
  overflow: hidden;
  padding: 0.875rem 0;
  border-bottom: 1px solid #727491;
  border-radius: 0;
  align-items: center;
}

input[type=file].form-input--file {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
input[type=file].form-input--file + label span {
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding: 0 10px;
}
input[type=file].form-input--file + label strong {
  height: 100%;
  color: #000;
  background-color: #efefef;
  display: inline-block;
  padding: 5px 1.25rem;
  border-radius: 60px;
}

hr {
  border: none;
  border-bottom: 1px solid #d4dee5;
  margin: 2rem 0 4rem 0;
}
@media (max-width: 767px) {
  hr {
    margin: 0.5rem 0 2rem 0;
  }
}

/*Placeholder*/
.form--contact input::-webkit-input-placeholder {
  color: #ddd;
  font-size: 14px;
  opacity: 1;
  font-weight: normal;
}

.form--contact input:-ms-input-placeholder {
  color: #ddd;
  font-size: 14px;
  opacity: 1;
  font-weight: normal;
}

.form--contact input::-webkit-input-placeholder {
  color: #ddd;
  font-size: 14px;
  opacity: 1;
  font-weight: normal;
}

.form--contact input::placeholder {
  color: #ddd;
  font-size: 14px;
  opacity: 1;
  font-weight: normal;
}

.form--contact textarea::-webkit-input-placeholder {
  color: #ddd;
  font-size: 14px;
  opacity: 1;
  font-weight: normal;
}

.form--contact textarea:-ms-input-placeholder {
  color: #ddd;
  font-size: 14px;
  opacity: 1;
  font-weight: normal;
}

.form--contact textarea::placeholder {
  color: #ddd;
  font-size: 14px;
  opacity: 1;
  font-weight: normal;
}

.popup-button {
  background-color: #fff;
  color: #ee3e5a;
  font-size: 11px;
  border: 1px solid #ee3e5a;
  border-radius: 4px;
  padding: 0px 8px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
}
.popup-button:hover {
  color: #222;
  border-color: #222;
}

.pop-window {
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  overflow: auto;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.85);
  display: none;
}

.is-opened .pop-window {
  display: block;
}

.pop__window {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}
.pop__window-close {
  font-size: 0;
  height: 35px;
  position: fixed;
  right: -50px;
  top: 0px;
  width: 35px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 2;
}
.pop__window-close:after, .pop__window-close:before {
  background-color: #000;
  border-radius: 40px;
  content: "";
  height: 4px;
  position: absolute;
  left: 8px;
  top: 16px;
  width: 20px;
  transform: rotate(-45deg);
}
.pop__window-close:before {
  transform: rotate(45deg);
}
.pop__window-middle {
  position: relative;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 5px;
  transition: 0.5s all ease-in-out;
  transform: rotate(0);
  top: 50px;
}
.pop__window-form {
  max-height: 480px;
  overflow: hidden;
  overflow-y: auto;
  padding-right: 30px;
  margin-bottom: 80px;
  padding-bottom: 20px;
}
.pop__window-form .form--contact input.form-button,
.pop__window-form .form--contact button.form-button {
  margin: 0 auto;
}
.pop__window-form .form--contact textarea {
  height: 110px;
  max-height: 150px;
  padding: 15px;
  resize: none;
  line-height: 1.6;
}

.fixed--button {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.85);
  position: fixed;
  bottom: 15px;
  left: 0;
  right: 0;
}

.or-option {
  font-size: 0.875rem;
  padding-right: 5px;
  font-weight: 600;
}

@media screen and (max-width: 1380px) {
  .form--contact textarea {
    height: 140px;
  }
  .pop__window-form {
    max-height: 400px;
  }
  .pop__window-form .form--contact textarea {
    height: 80px;
  }
}
@media screen and (max-width: 1200px) {
  .pop__window-middle {
    max-width: 640px;
  }
}
@media screen and (max-width: 767px) {
  .pop__window {
    display: block;
  }
  .pop__window-form {
    padding-right: 0px;
  }
  .pop__window-close {
    right: 0;
  }
}
.contact-page > div[style="display: block !important;"] > iframe[title="chat widget"] {
  -webkit-clip-path: circle(0);
  clip-path: circle(0);
}

.listing {
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem;
}
@media (max-width: 767px) {
  .listing {
    grid-template-columns: repeat(1, 1fr);
  }
}

.dropdown {
  padding-bottom: 2rem;
}
.dropdown-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dropdown-trigger h5 {
  font-size: 1rem;
  margin: 0;
}
.dropdown-trigger:hover {
  cursor: pointer;
}
.dropdown-button {
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid #727491;
  cursor: pointer;
  position: relative;
}
.dropdown-button .active::after {
  display: none;
}
.dropdown-button::after {
  content: "";
  position: absolute;
  height: 12px;
  width: 1px;
  background: #000;
  top: 50%;
  left: 50%;
  margin: auto;
  transform: translate(-50%, -50%);
}
.dropdown-button::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 1px;
  background: #000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
}
.dropdown-target {
  padding-top: 2rem;
}
.dropdown-target .form-group:last-child {
  padding-bottom: 0;
}

.dropdown-button.active::after {
  display: none;
}

.small-content {
  font-size: 12px;
  font-weight: 500;
}
@media (min-width: 1200px) {
  .small-content {
    margin-left: 20px;
  }
}

.form--contact .onclick-hide {
  display: none;
}
.form--contact .onclick-show {
  display: block;
}

.small__heading {
  font-size: 12px;
  font-weight: normal;
  white-space: nowrap;
}

header .nav-menu {
  background: #fff;
  overflow: auto;
  display: block !important;
  opacity: 0;
  visibility: hidden;
  text-align: left;
  top: 0;
  position: fixed;
  transition: 0.25s ease-in-out;
  right: -100%;
  bottom: 0;
  z-index: 111;
  width: 85%;
  max-width: 480px;
  padding: 20px;
}
header .nav-menu.visible {
  opacity: 1;
  visibility: visible;
  right: 0;
}
header .nav-menu .media,
header .nav-menu .content p,
header .nav-menu .article,
header .nav-menu .blog-list {
  display: none;
}
header .nav-menu h6 {
  font-size: 1rem;
}
header .nav-menu h6:not(.dropdown-heading) {
  font-weight: 400;
  margin-bottom: 14px;
}
header .nav-menu h6.dropdown-heading {
  font-weight: 600;
  margin-bottom: 1rem;
}
header .nav-menu .dropdown-wrapper > .container {
  padding: 1.1rem 0 0 12px;
}
header .nav-menu .menu-grid {
  display: block;
  padding-left: 15px;
  border-left: 2px solid #eaeaea;
}
header .nav-menu .has-dropdown:not(:first-child) .dropdown-heading {
  display: none;
}
header .nav-menu > li:not(:last-of-type) {
  margin-bottom: 1.5rem;
}
header .nav-menu > li.has-dropdown > a {
  justify-content: space-between;
}
header .nav-menu > li.has-dropdown::after {
  display: none;
}
header .nav-menu > li.has-dropdown:not(.active) .dropdown-wrapper {
  display: none;
}
header .nav-menu > li.active.has-dropdown > a {
  color: #df2e57;
}
header .nav-menu > li.active.has-dropdown > a::after {
  transform: rotate(-135deg);
  margin-top: 7px;
}
header .nav-menu > li.active.has-dropdown .overlay {
  display: none;
}
@media (min-width: 1200px) {
  header .header .header__right {
    flex: 0;
  }
}
header .header .header__hamburger {
  display: block;
}
header .dropdown-wrapper {
  position: revert;
}
header .dropdown-wrapper .dropdown {
  display: block;
  padding: 0;
}
header .dropdown-wrapper .dropdown .menu-grid {
  display: block;
}
header .dropdown-wrapper .dropdown > * {
  all: revert !important;
}
header .dropdown-wrapper .dropdown .menu-card {
  all: inherit;
  cursor: pointer;
}
header .dropdown-wrapper .dropdown .menu-card .content h6 {
  margin-bottom: 1rem;
}
header .dropdown-wrapper .dropdown .menu-card:hover {
  background: transparent;
}
header .dropdown-wrapper .dropdown .menu-card:hover .content h6 {
  color: #df2e57;
  font-weight: 500;
}
header .dropdown-wrapper .dropdown .menu-card.is-active {
  background: red !important;
}

.section-bg {
  position: relative;
}
.section-bg:after {
  position: absolute;
  content: "";
  height: 45vh;
  width: 100%;
  z-index: -1;
  top: 0;
  background-color: #df2e57;
}

/*# sourceMappingURL=contact-us.css.map */
