@keyframes splide-loading{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.splide--draggable>.splide__slider>.splide__track,.splide--draggable>.splide__track{-ms-user-select:none;user-select:none}.splide--fade>.splide__slider>.splide__track>.splide__list,.splide--fade>.splide__track>.splide__list{display:block}.splide--fade>.splide__slider>.splide__track>.splide__list>.splide__slide,.splide--fade>.splide__track>.splide__list>.splide__slide{left:0;opacity:0;position:absolute;top:0;z-index:0}.splide--fade>.splide__slider>.splide__track>.splide__list>.splide__slide.is-active,.splide--fade>.splide__track>.splide__list>.splide__slide.is-active{opacity:1;position:relative;z-index:1}.splide--rtl{direction:rtl}.splide--ttb.is-active>.splide__slider>.splide__track>.splide__list,.splide--ttb.is-active>.splide__track>.splide__list{display:block}.splide__container{box-sizing:border-box;position:relative}.splide__list{backface-visibility:hidden;display:-ms-flexbox;display:flex;height:100%;margin:0!important;padding:0!important;transform-style:preserve-3d}.splide.is-initialized:not(.is-active) .splide__list{display:block}.splide__pagination{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:center;justify-content:center;margin:0;pointer-events:none}.splide__pagination li{display:inline-block;line-height:1;list-style-type:none;margin:0;pointer-events:auto}.splide__progress__bar{width:0}.splide{outline:none;position:relative;visibility:hidden}.splide.is-initialized,.splide.is-rendered{visibility:visible}.splide__slide{backface-visibility:hidden;box-sizing:border-box;-ms-flex-negative:0;flex-shrink:0;list-style-type:none!important;margin:0;outline:none;position:relative}.splide__slide img{vertical-align:bottom}.splide__slider{position:relative}.splide__spinner{animation:splide-loading 1s linear infinite;border:2px solid #999;border-left-color:transparent;border-radius:50%;bottom:0;contain:strict;display:inline-block;height:20px;left:0;margin:auto;position:absolute;right:0;top:0;width:20px}.splide__track{overflow:hidden;position:relative;z-index:0}
@charset "UTF-8";

/*!
 * Pikaday
 * Copyright © 2014 David Bushell | BSD & MIT license | https://dbushell.com/
 */

.pika-single {
    z-index: 9999;
    display: block;
    position: relative;
    color: #333;
    background: #fff;
    border: 1px solid #ccc;
    border-bottom-color: #bbb;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/*
clear child float (pika-lendar), using the famous micro clearfix hack
http://nicolasgallagher.com/micro-clearfix-hack/
*/
.pika-single:before,
.pika-single:after {
    content: " ";
    display: table;
}
.pika-single:after { clear: both }

.pika-single.is-hidden {
    display: none;
}

.pika-single.is-bound {
    position: absolute;
    box-shadow: 0 5px 15px -5px rgba(0,0,0,.5);
}

.pika-lendar {
    float: left;
    width: 240px;
    margin: 8px;
}

.pika-title {
    position: relative;
    text-align: center;
}

.pika-label {
    display: inline-block;
    position: relative;
    z-index: 9999;
    overflow: hidden;
    margin: 0;
    padding: 5px 3px;
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    background-color: #fff;
}
.pika-title select {
    cursor: pointer;
    position: absolute;
    z-index: 9998;
    margin: 0;
    left: 0;
    top: 5px;
    opacity: 0;
}

.pika-prev,
.pika-next {
    display: block;
    cursor: pointer;
    position: relative;
    outline: none;
    border: 0;
    padding: 0;
    width: 20px;
    height: 30px;
    /* hide text using text-indent trick, using width value (it's enough) */
    text-indent: 20px;
    white-space: nowrap;
    overflow: hidden;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 75% 75%;
    opacity: .5;
}

.pika-prev:hover,
.pika-next:hover {
    opacity: 1;
}

.pika-prev,
.is-rtl .pika-next {
    float: left;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==');
}

.pika-next,
.is-rtl .pika-prev {
    float: right;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=');
}

.pika-prev.is-disabled,
.pika-next.is-disabled {
    cursor: default;
    opacity: .2;
}

.pika-select {
    display: inline-block;
}

.pika-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 0;
}

.pika-table th,
.pika-table td {
    width: 14.285714285714286%;
    padding: 0;
}

.pika-table th {
    color: #999;
    font-size: 12px;
    line-height: 25px;
    font-weight: bold;
    text-align: center;
}

.pika-button {
    cursor: pointer;
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    outline: none;
    border: 0;
    margin: 0;
    width: 100%;
    padding: 5px;
    color: #666;
    font-size: 12px;
    line-height: 15px;
    text-align: right;
    background: #f5f5f5;
    height: initial;
}

.pika-week {
    font-size: 11px;
    color: #999;
}

.is-today .pika-button {
    color: #33aaff;
    font-weight: bold;
}

.is-selected .pika-button,
.has-event .pika-button {
    color: #fff;
    font-weight: bold;
    background: #33aaff;
    box-shadow: inset 0 1px 3px #178fe5;
    border-radius: 3px;
}

.has-event .pika-button {
    background: #005da9;
    box-shadow: inset 0 1px 3px #0076c9;
}

.is-disabled .pika-button,
.is-inrange .pika-button {
    background: #D5E9F7;
}

.is-startrange .pika-button {
    color: #fff;
    background: #6CB31D;
    box-shadow: none;
    border-radius: 3px;
}

.is-endrange .pika-button {
    color: #fff;
    background: #33aaff;
    box-shadow: none;
    border-radius: 3px;
}

.is-disabled .pika-button {
    pointer-events: none;
    cursor: default;
    color: #999;
    opacity: .3;
}

.is-outside-current-month .pika-button {
    color: #999;
    opacity: .3;
}

.is-selection-disabled {
    pointer-events: none;
    cursor: default;
}

.pika-button:hover,
.pika-row.pick-whole-week:hover .pika-button {
    color: #fff;
    background: #ff8000;
    box-shadow: none;
    border-radius: 3px;
}

/* styling for abbr */
.pika-table abbr {
    border-bottom: none;
    cursor: help;
}

@charset "UTF-8";
.datepicker {
  width: min-content;
}
.datepicker:not(.active) {
  display: none;
}

.datepicker-dropdown {
  position: absolute;
  z-index: 20;
  padding-top: 4px;
}
.datepicker-dropdown.datepicker-orient-top {
  padding-top: 0;
  padding-bottom: 4px;
}

.datepicker-picker {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  background-color: hsl(0, 0%, 100%);
}
.datepicker-dropdown .datepicker-picker {
  box-shadow: 0 2px 3px rgba(10.2, 10.2, 10.2, 0.1), 0 0 0 1px rgba(10.2, 10.2, 10.2, 0.1);
}

.datepicker-main {
  flex: auto;
  padding: 2px;
}

.datepicker-footer {
  box-shadow: inset 0 1px 1px rgba(10.2, 10.2, 10.2, 0.1);
  background-color: hsl(0, 0%, 96%);
}

.datepicker-title {
  box-shadow: inset 0 -1px 1px rgba(10.2, 10.2, 10.2, 0.1);
  background-color: hsl(0, 0%, 96%);
  padding: 0.375rem 0.75rem;
  text-align: center;
  font-weight: 700;
}

.datepicker-controls {
  display: flex;
}
.datepicker-header .datepicker-controls {
  padding: 2px 2px 0;
}
.datepicker-controls .button {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid hsl(0, 0%, 86.4%);
  border-radius: 4px;
  box-shadow: none;
  background-color: hsl(0, 0%, 100%);
  cursor: pointer;
  padding: calc(0.375em - 1px) 0.75em;
  height: 2.25em;
  vertical-align: top;
  text-align: center;
  line-height: 1.5;
  white-space: nowrap;
  color: hsl(0, 0%, 21%);
  font-size: 1rem;
}
.datepicker-controls .button:focus, .datepicker-controls .button:active {
  outline: none;
}
.datepicker-controls .button:hover {
  border-color: hsl(0, 0%, 72%);
  color: hsl(0, 0%, 21%);
}
.datepicker-controls .button:focus {
  border-color: hsl(217, 71%, 53%);
  color: hsl(0, 0%, 21%);
}
.datepicker-controls .button:focus:not(:active) {
  box-shadow: 0 0 0 0.125em rgba(50.0565, 115.29485, 220.2435, 0.25);
}
.datepicker-controls .button:active {
  border-color: hsl(0, 0%, 28%);
  color: hsl(0, 0%, 21%);
}
.datepicker-controls .button[disabled] {
  cursor: not-allowed;
}
.datepicker-header .datepicker-controls .button {
  border-color: transparent;
  font-weight: bold;
}
.datepicker-header .datepicker-controls .button:hover {
  background-color: hsl(0, 0%, 97.5%);
}
.datepicker-header .datepicker-controls .button:active {
  background-color: hsl(0, 0%, 95%);
}
.datepicker-footer .datepicker-controls .button {
  flex: auto;
  margin: calc(0.375rem - 1px) 0.375rem;
  border-radius: 2px;
  font-size: 0.75rem;
}
.datepicker-controls .view-switch {
  flex: auto;
}
.datepicker-controls .prev-button,
.datepicker-controls .next-button {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
  flex: 0 0 14.2857142857%;
}
.datepicker-controls .prev-button.disabled,
.datepicker-controls .next-button.disabled {
  visibility: hidden;
}

.datepicker-view,
.datepicker-grid {
  display: flex;
}

.datepicker-view {
  align-items: stretch;
  width: 15.75rem;
}

.datepicker-grid {
  flex-wrap: wrap;
  flex: auto;
}

.datepicker .days {
  display: flex;
  flex-direction: column;
  flex: auto;
}
.datepicker .days-of-week {
  display: flex;
}
.datepicker .week-numbers {
  display: flex;
  flex-direction: column;
  flex: 0 0 9.6774193548%;
}
.datepicker .weeks {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: auto;
}
.datepicker span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: default;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.datepicker .dow {
  height: 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
}
.datepicker .week {
  flex: auto;
  color: hsl(0, 0%, 72%);
  font-size: 0.75rem;
}

.datepicker-cell, .datepicker .days .dow {
  flex-basis: 14.2857142857%;
}

.datepicker-cell {
  height: 2.25rem;
}
.datepicker-cell:not(.day) {
  flex-basis: 25%;
  height: 4.5rem;
}
.datepicker-cell:not(.disabled):hover {
  background-color: hsl(0, 0%, 97.5%);
  cursor: pointer;
}
.datepicker-cell.focused:not(.selected) {
  background-color: hsl(0, 0%, 91.2%);
}
.datepicker-cell.selected, .datepicker-cell.selected:hover {
  background-color: hsl(217, 71%, 53%);
  color: #fff;
  font-weight: 600;
}
.datepicker-cell.disabled {
  color: hsl(0, 0%, 86.4%);
}
.datepicker-cell.prev:not(.disabled), .datepicker-cell.next:not(.disabled) {
  color: hsl(0, 0%, 48%);
}
.datepicker-cell.prev.selected, .datepicker-cell.next.selected {
  color: rgb(229.5, 229.5, 229.5);
}
.datepicker-cell.highlighted:not(.selected):not(.range):not(.today) {
  border-radius: 0;
  background-color: hsl(0, 0%, 96%);
}
.datepicker-cell.highlighted:not(.selected):not(.range):not(.today):not(.disabled):hover {
  background-color: hsl(0, 0%, 93.6%);
}
.datepicker-cell.highlighted:not(.selected):not(.range):not(.today).focused {
  background-color: hsl(0, 0%, 91.2%);
}
.datepicker-cell.today:not(.selected) {
  background-color: hsl(171, 100%, 41%);
}
.datepicker-cell.today:not(.selected):not(.disabled) {
  color: #fff;
}
.datepicker-cell.today.focused:not(.selected) {
  background-color: hsl(171, 100%, 39.975%);
}
.datepicker-cell.range-end:not(.selected), .datepicker-cell.range-start:not(.selected) {
  background-color: hsl(0, 0%, 72%);
  color: #fff;
}
.datepicker-cell.range-end.focused:not(.selected), .datepicker-cell.range-start.focused:not(.selected) {
  background-color: hsl(0, 0%, 70.2%);
}
.datepicker-cell.range-start:not(.range-end) {
  border-radius: 4px 0 0 4px;
}
.datepicker-cell.range-end:not(.range-start) {
  border-radius: 0 4px 4px 0;
}
.datepicker-cell.range {
  border-radius: 0;
  background-color: hsl(0, 0%, 86.4%);
}
.datepicker-cell.range:not(.disabled):not(.focused):not(.today):hover {
  background-color: hsl(0, 0%, 84.24%);
}
.datepicker-cell.range.disabled {
  color: hsl(0, 0%, 77.76%);
}
.datepicker-cell.range.focused {
  background-color: hsl(0, 0%, 82.08%);
}

.datepicker-input.in-edit {
  border-color: hsl(217, 71%, 50.35%);
}
.datepicker-input.in-edit:focus, .datepicker-input.in-edit:active {
  box-shadow: 0 0 0.25em 0.25em rgba(38.501175, 107.4178575, 218.283825, 0.2);
}

/*
  Sass Div function
*/
/*
  Round number
*/
/* Import */
/* Radius */
/* Animation */
/* Shadow */
.secondary-section, .primary-section, .alignfull {
  max-width: 100vw;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

@media (min-width: 62em) {
  .alignwide {
    margin-left: calc(-40vw + 50%);
    margin-right: calc(-40vw + 50%);
  }
}

.aligncenter {
  margin: 0 auto;
  display: block;
}

/*
  Sass Div function
*/
/*
  Round number
*/
/* Blocks */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre kbd,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

/* Form */
button,
input,
select,
textarea {
  margin: 0;
}

td,
th {
  padding: 0;
}
td:not([align]),
th:not([align]) {
  text-align: inherit;
}

template,
[hidden] {
  display: none;
}

pre,
code,
kbd,
samp,
var {
  font-family: monospace;
}

kbd {
  padding: 0 0.25em;
  background-color: var(--grey-200);
}

pre {
  overflow-y: hidden;
  page-break-inside: avoid;
  border-left: 0.3rem solid var(--primary);
}
pre > code {
  display: block;
  white-space: pre;
  padding: 1.6rem 3.2rem;
}

code {
  border: 1px solid var(--grey-200);
  background-color: var(--grey-200);
  display: inline;
  max-width: 100%;
  word-wrap: break-word;
  padding: 0 0.25em;
}

fieldset {
  margin: 1.6rem 0;
  padding: 1.6rem;
  border: 1px solid var(--grey-400);
}
fieldset[disabled] {
  pointer-events: none;
  opacity: 0.5;
}
fieldset legend {
  margin: 0 0 0 -0.1875em;
  padding: 0 0.1875em;
}

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

form {
  margin-bottom: 1.6rem;
}

label {
  display: block;
  margin: 0;
  font-weight: 400;
  line-height: 1.8;
}

[type=checkbox] + label,
[type=radio] + label {
  display: inline-block;
  vertical-align: baseline;
  margin-left: 0.8rem;
  margin-right: 1.6rem;
  margin-bottom: 0;
}
[type=checkbox] + label[for],
[type=radio] + label[for] {
  cursor: pointer;
}

:focus:-ms-input-placeholder {
  color: var(--text-lighten);
}

:focus::placeholder {
  color: var(--text-lighten);
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 1em;
  line-height: 1.15;
  margin: 0;
  max-width: 100%;
  background-color: var(--background);
  color: var(--text);
  border: 0.1rem solid var(--text-darken);
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

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

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

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

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

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

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

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

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

h1,
.h1 {
  margin-top: 0;
  margin-bottom: 1.6rem;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.6px;
  color: var(--heading);
  font-size: 2.55rem;
  text-transform: uppercase;
}
@media (min-width: 62em) {
  h1,
  .h1 {
    font-size: 4.8rem;
  }
}

h2,
.h2 {
  margin-top: 0;
  margin-bottom: 1.6rem;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.6px;
  color: var(--heading);
  font-size: 2.4rem;
  text-transform: uppercase;
}
@media (min-width: 62em) {
  h2,
  .h2 {
    font-size: 4.2rem;
  }
}

h3,
.h3 {
  margin-top: 0;
  margin-bottom: 1.6rem;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.6px;
  color: var(--heading);
  font-size: 2.25rem;
  text-transform: uppercase;
}
@media (min-width: 62em) {
  h3,
  .h3 {
    font-size: 3.6rem;
  }
}

h4,
.h4 {
  margin-top: 0;
  margin-bottom: 1.6rem;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.6px;
  color: var(--heading);
  font-size: 2.1rem;
}
@media (min-width: 62em) {
  h4,
  .h4 {
    font-size: 3rem;
  }
}

h5,
.h5 {
  margin-top: 0;
  margin-bottom: 1.6rem;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.6px;
  color: var(--heading);
  font-size: 1.95rem;
}
@media (min-width: 62em) {
  h5,
  .h5 {
    font-size: 2.4rem;
  }
}

h6,
.h6 {
  margin-top: 0;
  margin-bottom: 1.6rem;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.6px;
  color: var(--heading);
  font-size: 1.8rem;
}
@media (min-width: 62em) {
  h6,
  .h6 {
    font-size: 1.8rem;
  }
}

img {
  border-style: none;
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}

figure {
  margin: 1.6rem 0;
  text-align: center;
}

figcaption {
  font-size: small;
}

video,
canvas,
object {
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
}

:root {
  --primary-darken: rgb(6.6847826087, 4.4565217391, 36.5434782609);
  --primary: #0F0A52;
  --primary-lighten: rgb(23.3152173913, 15.5434782609, 127.4565217391);
  --border-input-darken: rgb(50.3846153846, 51.8241758242, 80.6153846154);
  --border-input: #464870;
  --border-input-lighten: rgb(89.6153846154, 92.1758241758, 143.3846153846);
  --primary-hover-darken: rgb(103.273381295, 107.3741007194, 216.726618705);
  --primary-hover: #9093E3;
  --primary-hover-lighten: rgb(184.726618705, 186.6258992806, 237.273381295);
  --primary-border-hover-darken: rgb(114.2, 118.424, 219.8);
  --primary-border-hover: #9B9EE6;
  --primary-border-hover-lighten: rgb(195.8, 197.576, 240.2);
  --primary-alt-darken: rgb(6.6847826087, 4.4565217391, 36.5434782609);
  --primary-alt: #0F0A52;
  --primary-alt-lighten: rgb(23.3152173913, 15.5434782609, 127.4565217391);
  --primary-alt-btn-darken: rgb(6.6847826087, 4.4565217391, 36.5434782609);
  --primary-alt-btn: #0F0A52;
  --primary-alt-btn-lighten: rgb(23.3152173913, 15.5434782609, 127.4565217391);
  --get-quote-hover-darken: rgb(103.273381295, 107.3741007194, 216.726618705);
  --get-quote-hover: #9093E3;
  --get-quote-hover-lighten: rgb(184.726618705, 186.6258992806, 237.273381295);
  --secondary-darken: rgb(229.5, 229.5, 229.5);
  --secondary: #ffffff;
  --secondary-lighten: white;
  --secondary-alt-darken: rgb(194.65, 191.1, 247.9);
  --secondary-alt: #EEEDFD;
  --secondary-alt-lighten: white;
  --secondary-alt-hover-darken: rgb(173.3673469388, 167.2448979592, 242.7551020408);
  --secondary-alt-hover: #D7D4F9;
  --secondary-alt-hover-lighten: white;
  --link-darken: hsl(217, 71%, 43%);
  --link: hsl(217, 71%, 53%);
  --link-lighten: hsl(217, 71%, 63%);
  --info-darken: rgb(42.8875, 115.8875, 176.1125);
  --info: #3e8ed0;
  --info-lighten: rgb(103.0125, 166.0125, 217.9875);
  --success-darken: rgb(51.5481171548, 168.4518828452, 115.9832635983);
  --success: #48c78e;
  --success-lighten: rgb(111.050209205, 210.949790795, 166.1129707113);
  --warning-darken: rgb(255, 210.4871794872, 87);
  --warning: #ffe08a;
  --warning-lighten: rgb(255, 237.5128205128, 189);
  --danger-darken: rgb(237.4120603015, 22.5879396985, 65.3015075377);
  --danger: #f14668;
  --danger-lighten: rgb(244.5879396985, 117.4120603015, 142.6984924623);
  --heading-darken: rgb(6.6847826087, 4.4565217391, 36.5434782609);
  --heading: #0F0A52;
  --heading-lighten: rgb(23.3152173913, 15.5434782609, 127.4565217391);
  --text-darken: rgb(50.3846153846, 51.8241758242, 80.6153846154);
  --text: #464870;
  --text-lighten: rgb(89.6153846154, 92.1758241758, 143.3846153846);
  --background-darken: hsl(0, 0%, 90%);
  --background: hsl(0, 0%, 100%);
  --background-lighten: hsl(0, 0%, 100%);
  --primary-block-bg-on-main-darken: rgb(6.6847826087, 4.4565217391, 36.5434782609);
  --primary-block-bg-on-main: #0F0A52;
  --primary-block-bg-on-main-lighten: rgb(23.3152173913, 15.5434782609, 127.4565217391);
  --black: hsl(0, 0%, 4%);
  --grey-950: hsl(0, 0%, 4%);
  --grey-900: hsl(0, 0%, 7%);
  --grey-800: hsl(0, 0%, 14%);
  --grey-700: hsl(0, 0%, 21%);
  --grey-600: hsl(0, 0%, 29%);
  --grey-500: hsl(0, 0%, 48%);
  --grey-400: hsl(0, 0%, 71%);
  --grey-300: hsl(0, 0%, 86%);
  --grey-200: hsl(0, 0%, 93%);
  --grey-100: hsl(0, 0%, 96%);
  --grey-50: hsl(0, 0%, 98%);
  --white: hsl(0, 0%, 100%);
  --spacer: 1.6rem;
}

html {
  box-sizing: border-box;
  font-size: 16px;
}

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

body {
  background: var(--grey-100);
  color: var(--text);
  font-family: "manrope", -apple-system, "BlinkMacSystemFont", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1.4rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

small, .reviews__items .single-review, .reviews__items header p, .reasons__block p, .reasons__block h6.reasons__block-title span:last-child, .service-card__content p, .review__location, .review__person-desc, .review, .our-reviews header p, .form-get-quote__description span, cite, label, .faq__title button::before, .small, .label .error {
  font-size: 1.4rem !important;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1.6rem;
  border-radius: 0;
  overflow-x: auto;
}

thead,
tbody,
tfoot {
  border: 1px solid var(--grey-100);
  background-color: var(--grey-50);
}

caption {
  padding: 0.8rem 0.4rem;
  font-weight: 700;
}

thead {
  background: var(--grey-100);
  color: var(--grey-950);
}

tfoot {
  background: var(--grey-200);
  color: var(--grey-950);
}

thead tr,
tfoot tr {
  background: transparent;
}

thead th,
thead td,
tfoot th,
tfoot td {
  padding: 0.8rem 0.4rem;
  font-weight: 700;
  text-align: left;
}

tbody th,
tbody td {
  padding: 0.8rem 0.4rem;
}

tbody tr:nth-child(even) {
  border-bottom: 0;
  background-color: var(--grey-100);
}

p {
  margin-top: 0;
  margin-bottom: 1.6rem;
}
p:last-child {
  margin-bottom: 0;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1.6rem;
}
ol ol,
ol ul,
ol dl,
ul ol,
ul ul,
ul dl,
dl ol,
dl ul,
dl dl {
  padding-left: 1.6rem;
  margin-bottom: 0;
}

ul,
ol {
  list-style-position: inside;
}

blockquote {
  margin-bottom: 1.6rem;
  padding: 1.6rem 3.2rem;
  border-left: 0.3rem solid var(--primary-lighten);
  background-color: var(--background-darken);
}
blockquote:last-child {
  margin-bottom: 0;
}

cite {
  display: block;
  color: var(--text-lighten);
}
cite::before {
  content: "— ";
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  clear: both;
  margin: 0.4rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid var(--primary-darken);
  border-left: 0;
}

dl {
  margin-bottom: 1.6rem;
}

dt {
  margin-bottom: 0.4rem;
  font-weight: 700;
}

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

details {
  display: block;
}
summary {
  display: list-item;
}

a {
  background-color: transparent;
  color: var(--primary-alt);
  cursor: pointer;
  line-height: inherit;
}
a strong {
  color: currentColor;
}
a:focus, a:hover, a:active {
  color: var(--border-input);
}
a:not([href]) {
  color: inherit;
  cursor: unset;
}

b,
.b,
strong,
.strong {
  font-weight: 700;
}

em,
.em {
  font-style: italic;
}

u {
  text-decoration: underline;
}

small, .reviews__items .single-review, .reviews__items header p, .reasons__block p, .reasons__block h6.reasons__block-title span:last-child, .service-card__content p, .review__location, .review__person-desc, .review, .our-reviews header p, .form-get-quote__description span, label, cite,
.small,
.label .error {
  font-size: 0.875em;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

abbr[title] {
  position: relative;
  border-bottom: none;
  text-decoration: none;
}
abbr[title]::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-bottom: thin dotted;
}

dfn {
  font-style: normal;
  font-weight: 600;
}

mark {
  padding: 0 0.25em;
  background-color: yellow;
}

time,
data {
  font-weight: 500;
}

del {
  text-decoration: line-through;
}

ins {
  font-weight: 500;
}

.container {
  width: 100%;
  max-width: 1312px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 36em) {
  .container {
    max-width: 39rem;
  }
}
@media (min-width: 48em) {
  .container {
    max-width: 76.8rem;
  }
}
@media (min-width: 62em) {
  .container {
    max-width: 115rem;
  }
}
@media (min-width: 75em) {
  .container {
    max-width: 135rem;
  }
}
@media (min-width: 90em) {
  .container {
    max-width: 135rem;
  }
}

/* oswald-regular - latin */
/* oswald-700 - latin */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local(""), url("../fonts/Manrope-Regular.woff2") format("woff2"), url("../fonts/Manrope-Regular.woff") format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local(""), url("../fonts/Manrope-Medium.woff2") format("woff2"), url("../fonts/Manrope-Medium.woff") format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local(""), url("../fonts/Manrope-Semibold.woff2") format("woff2"), url("../fonts/Manrope-Semibold.woff") format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local(""), url("../fonts/Manrope-Bold.woff2") format("woff2"), url("../fonts/Manrope-Bold.woff") format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: local(""), url("../fonts/Manrope-ExtraBold.woff2") format("woff2"), url("../fonts/Manrope-ExtraBold.woff") format("woff");
}
@font-face {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local(""), url("../fonts/Gilroy-Black.woff2") format("woff2"), url("../fonts/Gilroy-Black.woff") format("woff");
}
@font-face {
  font-family: "Gilroy-Regular";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local(""), url("../fonts/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy-Regular.woff") format("woff");
}
.single-locations .contacts__cityinfo, .single-locations .contacts__info, .single-locations .resources, .single-locations .text-block, .dialog-content, .county, .reviews-list .review, .service-area-county__item-icon, .resources__item, .our-company__item, .easy-when-section button .faq-icon, .faq-section button .faq-icon, .reviews__items .single-review, .holders__item, .faq__list li, .article-card, .rates-table__tabs > li a[aria-selected=true], .our-clients__list, .reasons__block, .services-section__list .service-card, .services-section__list-mobile .service-card, .form-review__review, .form-review__quote, .wp-block-column.is-style-shadow-block, .shadow-block {
  padding: 3.2rem;
  background-color: var(--white);
  border-radius: 1.2rem;
  color: var(--text);
  box-shadow: rgba(10.2, 10.2, 10.2, 0.13) 0 1.6px 3.6px, rgba(10.2, 10.2, 10.2, 0.1) 0 0.3px 0.9px;
}

.shadow-block {
  margin-bottom: 3.2rem;
}

.our-team-video-slider__navigation-prev, .our-team-video-slider__navigation-next, .video-slider__navigation-prev, .video-slider__navigation-next, .featured-posts .featured-posts__arrows button, .reviews__navigation-prev, .reviews__navigation-next, .relocation-guide__arrows button, .rates-table__navigation-prev, .rates-table__navigation-next, .reasons__list-mobile .navigation-prev, .reasons__list-mobile .navigation-next, .services-section .services-table__navigation-prev, .services-section .services-table__navigation-next, .our-reviews__navigation-prev, .our-reviews__navigation-next {
  margin-right: 4.8px;
  margin-left: 4.8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
  border-radius: 9999px;
  border: none;
  color: var(--grey-600);
}

*[data-glide-el^=controls] {
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  touch-action: none;
}
*[data-glide-el^=controls] * {
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  touch-action: none;
}

.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.125em;
}

.replaced-svg {
  max-width: 100%;
  height: auto;
}

.btn, .navigation .nav-links .page-numbers, .wp-block-button .wp-block-button__link {
  font-weight: 700;
  padding: 1.2308rem 2.72rem;
  margin: 0.125em;
  display: flex;
  gap: 0.5em;
  align-items: center;
  text-transform: uppercase;
  outline: none !important;
  text-decoration: none;
  cursor: pointer;
  line-height: 1.4;
  text-align: center;
  background-color: transparent;
  border-radius: 1rem;
  border: 2px solid transparent;
  white-space: nowrap;
  transition-property: all;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}
.btn svg, .navigation .nav-links .page-numbers svg, .wp-block-button .wp-block-button__link svg {
  margin-left: 0.125em;
}
.btn svg.arrow, .navigation .nav-links .page-numbers svg.arrow, .wp-block-button .wp-block-button__link svg.arrow {
  width: 16px;
  height: 16px;
}
.btn:hover, .navigation .nav-links .page-numbers:hover, .wp-block-button .wp-block-button__link:hover, .btn:active, .navigation .nav-links .page-numbers:active, .wp-block-button .wp-block-button__link:active, .btn:focus, .navigation .nav-links .page-numbers:focus, .wp-block-button .wp-block-button__link:focus {
  text-decoration: underline;
  color: var(--primary);
}
.btn:active, .navigation .nav-links .page-numbers:active, .wp-block-button .wp-block-button__link:active, .btn:focus, .navigation .nav-links .page-numbers:focus, .wp-block-button .wp-block-button__link:focus {
  outline: 1px dotted #212121;
  outline: 5px auto -webkit-focus-ring-color;
}
.btn--primary, .wp-block-button.is-style-primary .wp-block-button__link {
  color: var(--white);
  background-color: var(--primary);
  border-color: var(--primary);
  /* light shadow */
  box-shadow: none;
  border-radius: 1rem;
}
.btn--primary path, .wp-block-button.is-style-primary .wp-block-button__link path {
  stroke: var(--white);
}
.btn--primary:hover, .wp-block-button.is-style-primary .wp-block-button__link:hover, .btn--primary:active, .wp-block-button.is-style-primary .wp-block-button__link:active, .btn--primary:focus, .wp-block-button.is-style-primary .wp-block-button__link:focus {
  text-decoration: none;
  background-color: var(--primary-hover);
  border-color: var(--primary-border-hover);
  color: var(--white);
  font-weight: 700;
  box-shadow: none;
}
.btn--primary:hover .icon, .wp-block-button.is-style-primary .wp-block-button__link:hover .icon, .btn--primary:active .icon, .wp-block-button.is-style-primary .wp-block-button__link:active .icon, .btn--primary:focus .icon, .wp-block-button.is-style-primary .wp-block-button__link:focus .icon {
  fill: var(--white) !important;
}
.btn--secondary, .wp-block-button.is-style-secondary .wp-block-button__link {
  color: var(--primary);
  background-color: var(--secondary);
  border-color: var(--secondary-alt);
  box-shadow: none;
}
.btn--secondary:hover, .wp-block-button.is-style-secondary .wp-block-button__link:hover, .btn--secondary:active, .wp-block-button.is-style-secondary .wp-block-button__link:active, .btn--secondary:focus, .wp-block-button.is-style-secondary .wp-block-button__link:focus {
  text-decoration: none;
  text-shadow: 1px 0 0 currentColor;
  color: var(--primary);
  background-color: var(--secondary-alt);
  border-color: var(--secondary-alt);
}
.btn--secondary-alt {
  color: var(--primary);
  background-color: var(--secondary-alt);
  border-color: var(--secondary-alt);
}
.btn--secondary-alt:hover, .btn--secondary-alt:active, .btn--secondary-alt:focus {
  text-decoration: none;
  color: var(--primary);
  background-color: var(--secondary-alt-hover);
  border-color: var(--secondary-alt-hover);
}
.btn--outline, .navigation .nav-links .page-numbers {
  border-color: var(--white);
  background: var(--white);
  color: var(--primary-alt);
  font-weight: 400;
  box-shadow: none;
}
.btn--outline:hover, .navigation .nav-links .page-numbers:hover, .btn--outline:active, .navigation .nav-links .page-numbers:active, .btn--outline:focus, .navigation .nav-links .page-numbers:focus {
  text-decoration: none;
  text-shadow: 1px 0 0 currentColor;
  box-shadow: none;
}

.btn-get-quote {
  text-decoration: none !important;
  font-weight: 700 !important;
  color: var(--white) !important;
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}
.btn-get-quote:hover {
  background-color: var(--get-quote-hover) !important;
  border-color: var(--get-quote-hover) !important;
}

button.readmore {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  gap: 10px;
  margin-top: 18px;
  padding: 0;
  align-items: center;
  width: fit-content;
  background: none;
  border: none !important;
  color: var(--primary);
  cursor: pointer;
}
button.readmore svg {
  width: 18px;
}
button.readmore[aria-expanded=true] svg {
  transform: rotate(180deg);
}

html, body {
  overflow-x: hidden;
}

#app {
  overflow-x: hidden;
  overflow-x: clip;
  padding-top: 64px;
}
@media (min-width: 36em) {
  #app {
    padding-top: 115.2px;
  }
}
@media (min-width: 48em) {
  #app {
    padding-top: 124.8px;
  }
}
@media (min-width: 62em) {
  #app {
    padding-top: 64px;
  }
}

.primary-section {
  padding: 128px 0;
  color: var(--white);
  background-color: var(--primary-block-bg-on-main);
  /*    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cdefs%3E%3Cpattern id='b' width='7' height='11' patternUnits='userSpaceOnUse'%3E%3Cg fill='%23ffffff06'%3E%3Cuse href='%23a'/%3E%3Cuse href='%23a' y='5'/%3E%3Cuse href='%23a' x='1' y='10'/%3E%3Cuse href='%23a' x='2' y='1'/%3E%3Cuse href='%23a' x='2' y='4'/%3E%3Cuse href='%23a' x='3' y='8'/%3E%3Cuse href='%23a' x='4' y='3'/%3E%3Cuse href='%23a' x='4' y='7'/%3E%3Cuse href='%23a' x='5' y='2'/%3E%3Cuse href='%23a' x='5' y='6'/%3E%3Cuse href='%23a' x='6' y='9'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='c' width='19' height='17' patternUnits='userSpaceOnUse'%3E%3Cg fill='%23ffffff04'%3E%3Cuse href='%23a' y='9'/%3E%3Cuse href='%23a' x='16' y='5'/%3E%3Cuse href='%23a' x='14' y='2'/%3E%3Cuse href='%23a' x='11' y='11'/%3E%3Cuse href='%23a' x='6' y='14'/%3E%3C/g%3E%3Cg fill='%23ffffff12'%3E%3Cuse href='%23a' x='3' y='13'/%3E%3Cuse href='%23a' x='9' y='7'/%3E%3Cuse href='%23a' x='13' y='10'/%3E%3Cuse href='%23a' x='15' y='4'/%3E%3Cuse href='%23a' x='18' y='1'/%3E%3C/g%3E%3C/pattern%3E%3Cpath stroke='%23ffffff00' stroke-width='1' id='a' d='M0 0h1v1H0z'/%3E%3C/defs%3E%3Crect fill='url(%23b)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23c)' width='100%25' height='100%25'/%3E%3C/svg%3E");
  background-size: cover;*/
}
@media (max-width: 48em) {
  .primary-section {
    padding: 5rem 0;
  }
}
@media (max-width: 36em) {
  .primary-section {
    padding: 4rem 0;
  }
}
.primary-section h2, .primary-section h3, .primary-section h3, .primary-section h4, .primary-section h5, .primary-section h6 {
  color: var(--white);
}
.primary-section .line-title::before {
  background-color: var(--secondary);
}
.primary-section .title {
  color: var(--grey-50);
}
.primary-section .services-section__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.primary-section .services-section__text .btn--secondary, .primary-section .services-section__text .wp-block-button.is-style-secondary .wp-block-button__link, .wp-block-button.is-style-secondary .primary-section .services-section__text .wp-block-button__link {
  margin-top: auto;
  color: #ffffff;
  background: #8a739d;
  border-radius: 4px;
  border-color: #8a739d;
  font-weight: 400;
}
.primary-section .services-section__text .btn--secondary:hover, .primary-section .services-section__text .wp-block-button.is-style-secondary .wp-block-button__link:hover, .wp-block-button.is-style-secondary .primary-section .services-section__text .wp-block-button__link:hover {
  box-shadow: none;
}
.primary-section .services-section__text .icon {
  display: none;
}

.local-mover-text {
  margin-bottom: 8rem;
}

.block-padding {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media (max-width: 48em) {
  .block-padding {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

.secondary-section {
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
  color: var(--text);
  background-color: var(--secondary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cdefs%3E%3Cpattern id='b' width='7' height='11' patternUnits='userSpaceOnUse'%3E%3Cg fill='%23ffffff06'%3E%3Cuse href='%23a'/%3E%3Cuse href='%23a' y='5'/%3E%3Cuse href='%23a' x='1' y='10'/%3E%3Cuse href='%23a' x='2' y='1'/%3E%3Cuse href='%23a' x='2' y='4'/%3E%3Cuse href='%23a' x='3' y='8'/%3E%3Cuse href='%23a' x='4' y='3'/%3E%3Cuse href='%23a' x='4' y='7'/%3E%3Cuse href='%23a' x='5' y='2'/%3E%3Cuse href='%23a' x='5' y='6'/%3E%3Cuse href='%23a' x='6' y='9'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='c' width='19' height='17' patternUnits='userSpaceOnUse'%3E%3Cg fill='%23ffffff04'%3E%3Cuse href='%23a' y='9'/%3E%3Cuse href='%23a' x='16' y='5'/%3E%3Cuse href='%23a' x='14' y='2'/%3E%3Cuse href='%23a' x='11' y='11'/%3E%3Cuse href='%23a' x='6' y='14'/%3E%3C/g%3E%3Cg fill='%23ffffff12'%3E%3Cuse href='%23a' x='3' y='13'/%3E%3Cuse href='%23a' x='9' y='7'/%3E%3Cuse href='%23a' x='13' y='10'/%3E%3Cuse href='%23a' x='15' y='4'/%3E%3Cuse href='%23a' x='18' y='1'/%3E%3C/g%3E%3C/pattern%3E%3Cpath stroke='%23ffffff00' stroke-width='1' id='a' d='M0 0h1v1H0z'/%3E%3C/defs%3E%3Crect fill='url(%23b)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23c)' width='100%25' height='100%25'/%3E%3C/svg%3E");
  background-size: cover;
}
.secondary-section .line-title::before {
  background-color: var(--primary);
}
.secondary-section .title {
  color: var(--text);
}

.line-title::before {
  content: none;
  display: flex;
  width: 5rem;
  height: 0.3rem;
  background-color: var(--primary);
  margin-bottom: 1.6rem;
  text-align: inherit;
}

.title a, .line-title a {
  text-decoration: none;
}

.primary-section .line-title a {
  color: var(--white);
}

.text-block iframe[src^="https://www.youtube"],
.text-block iframe[src^="https://youtube"] {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}

.secondary-list {
  padding-left: 18px;
  list-style-position: outside;
}
.secondary-list li {
  margin-bottom: 1rem;
  list-style-image: url("../icons/circle.svg");
}

.navigation {
  margin-top: 3.2rem;
}
.navigation .nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 1.6rem;
  flex-wrap: wrap;
}
@media (max-width: 48em) {
  .navigation .nav-links {
    gap: 5px;
  }
}
.navigation .nav-links .nav-next {
  margin-left: auto;
}
.navigation .nav-links .nav-previous {
  margin-right: auto;
}
.navigation .nav-links a.page-numbers {
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
}
.navigation .nav-links .page-numbers {
  font-size: 18px;
  font-weight: 500;
  min-width: 54px;
  height: 54px;
  padding: 15px;
  align-items: center;
  justify-content: center;
  border: 1px solid #EEEDFD;
}
@media (max-width: 48em) {
  .navigation .nav-links .page-numbers {
    min-width: 45px;
    height: 45px;
    padding: 10px;
    border-radius: 10px;
  }
}
.navigation .nav-links .page-numbers:hover {
  background: #EEEDFD;
  font-weight: 500;
  text-shadow: none;
}
.navigation .nav-links .page-numbers.current {
  background: #0F0A52;
  color: var(--white);
}
.navigation .nav-links .page-numbers.current:hover {
  background: #0F0A52;
  color: var(--white);
}
.navigation .nav-links .page-numbers.dots {
  background: none;
  border: none;
}
.navigation .nav-links .page-numbers.dots:hover {
  text-decoration: none;
}
.navigation .nav-links .page-numbers.prev,
.navigation .nav-links .page-numbers.next {
  padding: 15px 12px;
}
.navigation .nav-links .page-numbers.prev svg,
.navigation .nav-links .page-numbers.next svg {
  width: 16px;
}

.articles-list {
  display: grid;
  gap: 1.6rem;
}
@media (min-width: 48em) {
  .articles-list {
    grid-template-columns: 1fr 1fr;
  }
}

*:-ms-input-placeholder {
  -ms-transition-property: color;
  transition-property: color;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

*::placeholder {
  transition-property: color;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

*:focus:-ms-input-placeholder {
  color: transparent;
}

*:focus::placeholder {
  color: transparent;
}

.main-map {
  height: 500px;
  width: 100%;
  max-width: 100%;
}

.map-marker {
  font-size: 3.6rem;
}
.map-marker:nth-of-type(odd) {
  color: var(--primary);
}
.map-marker:nth-of-type(even) {
  color: var(--secondary);
}

.is-style-outline table,
.is-style-outline th,
.is-style-outline td {
  border: 1px solid var(--grey-400);
  border-collapse: collapse;
}

@media (max-width: 768px) {
  .is-style-reversed {
    flex-direction: column-reverse;
  }
}
.icon-section__list {
  display: flex;
  flex: 1 0 auto;
  justify-content: space-between;
  margin-top: 2em;
  flex-wrap: wrap;
}
.icon-section__list .icon-box {
  display: flex;
  width: 23%;
  min-width: 275px;
  background-color: #fff;
  padding: 2em;
  color: #2f0654;
  margin-bottom: 1em;
}
@media (max-width: 62em) {
  .icon-section__list .icon-box {
    width: 48%;
  }
}
@media (max-width: 36em) {
  .icon-section__list .icon-box {
    width: 100%;
  }
}
.icon-section__list .icon-box__icon {
  height: 60px;
  display: block;
}
.icon-section__list .icon-box__icon .icon {
  height: 100%;
  width: auto;
}
.icon-section__list .icon-box__description {
  margin-top: 1em;
  display: block;
  text-align: left;
}

.comment-form-comment textarea {
  overflow: auto;
  border: none !important;
  outline: none !important;
  width: 100%;
  padding: 1em;
}

.america {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border: 2px solid green;
  align-items: center;
}
.america img {
  filter: grayscale(100%) sepia(20%) hue-rotate(-180deg) saturate(200%);
  border-radius: 10px;
}

textarea:focus-visible, input:focus-visible, select:focus-visible {
  outline: none;
}

input.label__input, textarea.label__input {
  /* Firefox 19+ */
  /* Firefox 18- */
}
input.label__input:-ms-input-placeholder, textarea.label__input:-ms-input-placeholder {
  color: var(--border-input);
}
input.label__input::placeholder, textarea.label__input::placeholder {
  color: var(--border-input);
}
input.label__input::-webkit-input-placeholder, textarea.label__input::-webkit-input-placeholder {
  color: var(--border-input);
}
input.label__input::-moz-placeholder, textarea.label__input::-moz-placeholder {
  color: var(--border-input);
}
input.label__input:-moz-placeholder, textarea.label__input:-moz-placeholder {
  color: var(--border-input);
}
input.label__input:-ms-input-placeholder, textarea.label__input:-ms-input-placeholder {
  color: var(--border-input);
}

select.label__input {
  color: var(--border-input);
}
select option {
  color: var(--primary-alt);
}

.labels {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 1.6rem;
}
.labels .label {
  grid-column: 1/5;
}
.labels .label--first {
  grid-column: 1/3;
}
.labels .label--last {
  grid-column: 3/5;
}

.label {
  margin-bottom: 1.6rem;
  position: relative;
}
.label__title {
  opacity: 0.875;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: var(--primary-alt);
  font-size: 1.25rem;
}
.label__input {
  background-color: var(--white);
  color: var(--primary-alt);
  border-radius: 1rem;
  padding: 2.7rem 1.6rem;
  font-style: normal;
  font-weight: 400;
  border: 2px solid #EEEDFD;
  height: 4rem;
  display: block;
  width: 100%;
}
.label__input[type=date] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  color: var(--border-input);
}
.label__input[type=date]::-webkit-calendar-picker-indicator {
  color: var(--border-input);
}
.label__input.is-valid {
  border-color: var(--success);
}
.label textarea {
  resize: vertical;
  height: auto;
}
.label .error {
  transition-property: all;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  box-shadow: rgba(10.2, 10.2, 10.2, 0.13) 0 6.4px 14.4px, rgba(10.2, 10.2, 10.2, 0.1) 0 1.2px 3.6px;
  background-color: var(--danger-darken);
  border-radius: 1rem;
  color: var(--grey-50);
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
  line-height: 1;
  margin-top: 0.4rem;
  opacity: 0;
  padding: 0.4rem 0.8rem;
  position: absolute;
  right: 0;
  top: 100%;
  transform: translateX(-50%);
  visibility: hidden;
  z-index: 1;
}
.label .error.is-active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.hf-message {
  padding: 1.6rem;
  background-color: var(--info-lighten);
  border: 1px solid var(--info-darken);
  border-radius: 1rem;
  margin: 1.6rem 0;
}
.hf-message-warning {
  border-color: var(--warning-darken);
  background-color: var(--warning-lighten);
}
.hf-message-success {
  border-color: var(--success-darken);
  background-color: var(--success-lighten);
}

.splide:not(.is-active) .splide__list {
  display: grid;
  grid-auto-flow: column;
}

/* oswald-regular - latin */
/* oswald-700 - latin */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local(""), url("../fonts/Manrope-Regular.woff2") format("woff2"), url("../fonts/Manrope-Regular.woff") format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local(""), url("../fonts/Manrope-Medium.woff2") format("woff2"), url("../fonts/Manrope-Medium.woff") format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local(""), url("../fonts/Manrope-Semibold.woff2") format("woff2"), url("../fonts/Manrope-Semibold.woff") format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local(""), url("../fonts/Manrope-Bold.woff2") format("woff2"), url("../fonts/Manrope-Bold.woff") format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: local(""), url("../fonts/Manrope-ExtraBold.woff2") format("woff2"), url("../fonts/Manrope-ExtraBold.woff") format("woff");
}
@font-face {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local(""), url("../fonts/Gilroy-Black.woff2") format("woff2"), url("../fonts/Gilroy-Black.woff") format("woff");
}
@font-face {
  font-family: "Gilroy-Regular";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local(""), url("../fonts/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy-Regular.woff") format("woff");
}
.single-locations .contacts__cityinfo, .single-locations .contacts__info, .single-locations .resources, .single-locations .text-block, .dialog-content, .county, .reviews-list .review, .service-area-county__item-icon, .resources__item, .our-company__item, .easy-when-section button .faq-icon, .faq-section button .faq-icon, .reviews__items .single-review, .holders__item, .faq__list li, .article-card, .rates-table__tabs > li a[aria-selected=true], .our-clients__list, .reasons__block, .services-section__list .service-card, .services-section__list-mobile .service-card, .form-review__review, .form-review__quote, .shadow-block, .wp-block-column.is-style-shadow-block {
  padding: 3.2rem;
  background-color: var(--white);
  border-radius: 1.2rem;
  color: var(--text);
  box-shadow: rgba(10.2, 10.2, 10.2, 0.13) 0 1.6px 3.6px, rgba(10.2, 10.2, 10.2, 0.1) 0 0.3px 0.9px;
}

.shadow-block {
  margin-bottom: 3.2rem;
}

.our-team-video-slider__navigation-prev, .our-team-video-slider__navigation-next, .video-slider__navigation-prev, .video-slider__navigation-next, .featured-posts .featured-posts__arrows button, .reviews__navigation-prev, .reviews__navigation-next, .relocation-guide__arrows button, .rates-table__navigation-prev, .rates-table__navigation-next, .reasons__list-mobile .navigation-prev, .reasons__list-mobile .navigation-next, .services-section .services-table__navigation-prev, .services-section .services-table__navigation-next, .our-reviews__navigation-prev, .our-reviews__navigation-next {
  margin-right: 4.8px;
  margin-left: 4.8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
  border-radius: 9999px;
  border: none;
  color: var(--grey-600);
}

*[data-glide-el^=controls] {
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  touch-action: none;
}
*[data-glide-el^=controls] * {
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  touch-action: none;
}

.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.125em;
}

.replaced-svg {
  max-width: 100%;
  height: auto;
}

.btn, .wp-block-button .wp-block-button__link, .navigation .nav-links .page-numbers {
  font-weight: 700;
  padding: 1.2308rem 2.72rem;
  margin: 0.125em;
  display: flex;
  gap: 0.5em;
  align-items: center;
  text-transform: uppercase;
  outline: none !important;
  text-decoration: none;
  cursor: pointer;
  line-height: 1.4;
  text-align: center;
  background-color: transparent;
  border-radius: 1rem;
  border: 2px solid transparent;
  white-space: nowrap;
  transition-property: all;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}
.btn svg, .wp-block-button .wp-block-button__link svg, .navigation .nav-links .page-numbers svg {
  margin-left: 0.125em;
}
.btn svg.arrow, .wp-block-button .wp-block-button__link svg.arrow, .navigation .nav-links .page-numbers svg.arrow {
  width: 16px;
  height: 16px;
}
.btn:hover, .wp-block-button .wp-block-button__link:hover, .navigation .nav-links .page-numbers:hover, .btn:active, .wp-block-button .wp-block-button__link:active, .navigation .nav-links .page-numbers:active, .btn:focus, .wp-block-button .wp-block-button__link:focus, .navigation .nav-links .page-numbers:focus {
  text-decoration: underline;
  color: var(--primary);
}
.btn:active, .wp-block-button .wp-block-button__link:active, .navigation .nav-links .page-numbers:active, .btn:focus, .wp-block-button .wp-block-button__link:focus, .navigation .nav-links .page-numbers:focus {
  outline: 1px dotted #212121;
  outline: 5px auto -webkit-focus-ring-color;
}
.btn--primary, .wp-block-button.is-style-primary .wp-block-button__link {
  color: var(--white);
  background-color: var(--primary);
  border-color: var(--primary);
  /* light shadow */
  box-shadow: none;
  border-radius: 1rem;
}
.btn--primary path, .wp-block-button.is-style-primary .wp-block-button__link path {
  stroke: var(--white);
}
.btn--primary:hover, .wp-block-button.is-style-primary .wp-block-button__link:hover, .btn--primary:active, .wp-block-button.is-style-primary .wp-block-button__link:active, .btn--primary:focus, .wp-block-button.is-style-primary .wp-block-button__link:focus {
  text-decoration: none;
  background-color: var(--primary-hover);
  border-color: var(--primary-border-hover);
  color: var(--white);
  font-weight: 700;
  box-shadow: none;
}
.btn--primary:hover .icon, .wp-block-button.is-style-primary .wp-block-button__link:hover .icon, .btn--primary:active .icon, .wp-block-button.is-style-primary .wp-block-button__link:active .icon, .btn--primary:focus .icon, .wp-block-button.is-style-primary .wp-block-button__link:focus .icon {
  fill: var(--white) !important;
}
.btn--secondary, .wp-block-button.is-style-secondary .wp-block-button__link {
  color: var(--primary);
  background-color: var(--secondary);
  border-color: var(--secondary-alt);
  box-shadow: none;
}
.btn--secondary:hover, .wp-block-button.is-style-secondary .wp-block-button__link:hover, .btn--secondary:active, .wp-block-button.is-style-secondary .wp-block-button__link:active, .btn--secondary:focus, .wp-block-button.is-style-secondary .wp-block-button__link:focus {
  text-decoration: none;
  text-shadow: 1px 0 0 currentColor;
  color: var(--primary);
  background-color: var(--secondary-alt);
  border-color: var(--secondary-alt);
}
.btn--secondary-alt {
  color: var(--primary);
  background-color: var(--secondary-alt);
  border-color: var(--secondary-alt);
}
.btn--secondary-alt:hover, .btn--secondary-alt:active, .btn--secondary-alt:focus {
  text-decoration: none;
  color: var(--primary);
  background-color: var(--secondary-alt-hover);
  border-color: var(--secondary-alt-hover);
}
.btn--outline, .navigation .nav-links .page-numbers {
  border-color: var(--white);
  background: var(--white);
  color: var(--primary-alt);
  font-weight: 400;
  box-shadow: none;
}
.btn--outline:hover, .navigation .nav-links .page-numbers:hover, .btn--outline:active, .navigation .nav-links .page-numbers:active, .btn--outline:focus, .navigation .nav-links .page-numbers:focus {
  text-decoration: none;
  text-shadow: 1px 0 0 currentColor;
  box-shadow: none;
}

.btn-get-quote {
  text-decoration: none !important;
  font-weight: 700 !important;
  color: var(--white) !important;
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}
.btn-get-quote:hover {
  background-color: var(--get-quote-hover) !important;
  border-color: var(--get-quote-hover) !important;
}

button.readmore {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  gap: 10px;
  margin-top: 18px;
  padding: 0;
  align-items: center;
  width: fit-content;
  background: none;
  border: none !important;
  color: var(--primary);
  cursor: pointer;
}
button.readmore svg {
  width: 18px;
}
button.readmore[aria-expanded=true] svg {
  transform: rotate(180deg);
}

html, body {
  overflow-x: hidden;
}

#app {
  overflow-x: hidden;
  overflow-x: clip;
  padding-top: 64px;
}
@media (min-width: 36em) {
  #app {
    padding-top: 115.2px;
  }
}
@media (min-width: 48em) {
  #app {
    padding-top: 124.8px;
  }
}
@media (min-width: 62em) {
  #app {
    padding-top: 64px;
  }
}

.primary-section {
  padding: 128px 0;
  color: var(--white);
  background-color: var(--primary-block-bg-on-main);
  /*    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cdefs%3E%3Cpattern id='b' width='7' height='11' patternUnits='userSpaceOnUse'%3E%3Cg fill='%23ffffff06'%3E%3Cuse href='%23a'/%3E%3Cuse href='%23a' y='5'/%3E%3Cuse href='%23a' x='1' y='10'/%3E%3Cuse href='%23a' x='2' y='1'/%3E%3Cuse href='%23a' x='2' y='4'/%3E%3Cuse href='%23a' x='3' y='8'/%3E%3Cuse href='%23a' x='4' y='3'/%3E%3Cuse href='%23a' x='4' y='7'/%3E%3Cuse href='%23a' x='5' y='2'/%3E%3Cuse href='%23a' x='5' y='6'/%3E%3Cuse href='%23a' x='6' y='9'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='c' width='19' height='17' patternUnits='userSpaceOnUse'%3E%3Cg fill='%23ffffff04'%3E%3Cuse href='%23a' y='9'/%3E%3Cuse href='%23a' x='16' y='5'/%3E%3Cuse href='%23a' x='14' y='2'/%3E%3Cuse href='%23a' x='11' y='11'/%3E%3Cuse href='%23a' x='6' y='14'/%3E%3C/g%3E%3Cg fill='%23ffffff12'%3E%3Cuse href='%23a' x='3' y='13'/%3E%3Cuse href='%23a' x='9' y='7'/%3E%3Cuse href='%23a' x='13' y='10'/%3E%3Cuse href='%23a' x='15' y='4'/%3E%3Cuse href='%23a' x='18' y='1'/%3E%3C/g%3E%3C/pattern%3E%3Cpath stroke='%23ffffff00' stroke-width='1' id='a' d='M0 0h1v1H0z'/%3E%3C/defs%3E%3Crect fill='url(%23b)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23c)' width='100%25' height='100%25'/%3E%3C/svg%3E");
  background-size: cover;*/
}
@media (max-width: 48em) {
  .primary-section {
    padding: 5rem 0;
  }
}
@media (max-width: 36em) {
  .primary-section {
    padding: 4rem 0;
  }
}
.primary-section h2, .primary-section h3, .primary-section h3, .primary-section h4, .primary-section h5, .primary-section h6 {
  color: var(--white);
}
.primary-section .line-title::before {
  background-color: var(--secondary);
}
.primary-section .title {
  color: var(--grey-50);
}
.primary-section .services-section__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.primary-section .services-section__text .btn--secondary, .primary-section .services-section__text .wp-block-button.is-style-secondary .wp-block-button__link, .wp-block-button.is-style-secondary .primary-section .services-section__text .wp-block-button__link {
  margin-top: auto;
  color: #ffffff;
  background: #8a739d;
  border-radius: 4px;
  border-color: #8a739d;
  font-weight: 400;
}
.primary-section .services-section__text .btn--secondary:hover, .primary-section .services-section__text .wp-block-button.is-style-secondary .wp-block-button__link:hover, .wp-block-button.is-style-secondary .primary-section .services-section__text .wp-block-button__link:hover {
  box-shadow: none;
}
.primary-section .services-section__text .icon {
  display: none;
}

.local-mover-text {
  margin-bottom: 8rem;
}

.block-padding {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media (max-width: 48em) {
  .block-padding {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

.secondary-section {
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
  color: var(--text);
  background-color: var(--secondary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cdefs%3E%3Cpattern id='b' width='7' height='11' patternUnits='userSpaceOnUse'%3E%3Cg fill='%23ffffff06'%3E%3Cuse href='%23a'/%3E%3Cuse href='%23a' y='5'/%3E%3Cuse href='%23a' x='1' y='10'/%3E%3Cuse href='%23a' x='2' y='1'/%3E%3Cuse href='%23a' x='2' y='4'/%3E%3Cuse href='%23a' x='3' y='8'/%3E%3Cuse href='%23a' x='4' y='3'/%3E%3Cuse href='%23a' x='4' y='7'/%3E%3Cuse href='%23a' x='5' y='2'/%3E%3Cuse href='%23a' x='5' y='6'/%3E%3Cuse href='%23a' x='6' y='9'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='c' width='19' height='17' patternUnits='userSpaceOnUse'%3E%3Cg fill='%23ffffff04'%3E%3Cuse href='%23a' y='9'/%3E%3Cuse href='%23a' x='16' y='5'/%3E%3Cuse href='%23a' x='14' y='2'/%3E%3Cuse href='%23a' x='11' y='11'/%3E%3Cuse href='%23a' x='6' y='14'/%3E%3C/g%3E%3Cg fill='%23ffffff12'%3E%3Cuse href='%23a' x='3' y='13'/%3E%3Cuse href='%23a' x='9' y='7'/%3E%3Cuse href='%23a' x='13' y='10'/%3E%3Cuse href='%23a' x='15' y='4'/%3E%3Cuse href='%23a' x='18' y='1'/%3E%3C/g%3E%3C/pattern%3E%3Cpath stroke='%23ffffff00' stroke-width='1' id='a' d='M0 0h1v1H0z'/%3E%3C/defs%3E%3Crect fill='url(%23b)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23c)' width='100%25' height='100%25'/%3E%3C/svg%3E");
  background-size: cover;
}
.secondary-section .line-title::before {
  background-color: var(--primary);
}
.secondary-section .title {
  color: var(--text);
}

.line-title::before {
  content: none;
  display: flex;
  width: 5rem;
  height: 0.3rem;
  background-color: var(--primary);
  margin-bottom: 1.6rem;
  text-align: inherit;
}

.title a, .line-title a {
  text-decoration: none;
}

.primary-section .line-title a {
  color: var(--white);
}

.text-block iframe[src^="https://www.youtube"],
.text-block iframe[src^="https://youtube"] {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}

.secondary-list {
  padding-left: 18px;
  list-style-position: outside;
}
.secondary-list li {
  margin-bottom: 1rem;
  list-style-image: url("../icons/circle.svg");
}

.navigation {
  margin-top: 3.2rem;
}
.navigation .nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 1.6rem;
  flex-wrap: wrap;
}
@media (max-width: 48em) {
  .navigation .nav-links {
    gap: 5px;
  }
}
.navigation .nav-links .nav-next {
  margin-left: auto;
}
.navigation .nav-links .nav-previous {
  margin-right: auto;
}
.navigation .nav-links a.page-numbers {
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
}
.navigation .nav-links .page-numbers {
  font-size: 18px;
  font-weight: 500;
  min-width: 54px;
  height: 54px;
  padding: 15px;
  align-items: center;
  justify-content: center;
  border: 1px solid #EEEDFD;
}
@media (max-width: 48em) {
  .navigation .nav-links .page-numbers {
    min-width: 45px;
    height: 45px;
    padding: 10px;
    border-radius: 10px;
  }
}
.navigation .nav-links .page-numbers:hover {
  background: #EEEDFD;
  font-weight: 500;
  text-shadow: none;
}
.navigation .nav-links .page-numbers.current {
  background: #0F0A52;
  color: var(--white);
}
.navigation .nav-links .page-numbers.current:hover {
  background: #0F0A52;
  color: var(--white);
}
.navigation .nav-links .page-numbers.dots {
  background: none;
  border: none;
}
.navigation .nav-links .page-numbers.dots:hover {
  text-decoration: none;
}
.navigation .nav-links .page-numbers.prev,
.navigation .nav-links .page-numbers.next {
  padding: 15px 12px;
}
.navigation .nav-links .page-numbers.prev svg,
.navigation .nav-links .page-numbers.next svg {
  width: 16px;
}

.articles-list {
  display: grid;
  gap: 1.6rem;
}
@media (min-width: 48em) {
  .articles-list {
    grid-template-columns: 1fr 1fr;
  }
}

*:-ms-input-placeholder {
  -ms-transition-property: color;
  transition-property: color;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

*::placeholder {
  transition-property: color;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

*:focus:-ms-input-placeholder {
  color: transparent;
}

*:focus::placeholder {
  color: transparent;
}

.main-map {
  height: 500px;
  width: 100%;
  max-width: 100%;
}

.map-marker {
  font-size: 3.6rem;
}
.map-marker:nth-of-type(odd) {
  color: var(--primary);
}
.map-marker:nth-of-type(even) {
  color: var(--secondary);
}

.is-style-outline table,
.is-style-outline th,
.is-style-outline td {
  border: 1px solid var(--grey-400);
  border-collapse: collapse;
}

@media (max-width: 768px) {
  .is-style-reversed {
    flex-direction: column-reverse;
  }
}
.icon-section__list {
  display: flex;
  flex: 1 0 auto;
  justify-content: space-between;
  margin-top: 2em;
  flex-wrap: wrap;
}
.icon-section__list .icon-box {
  display: flex;
  width: 23%;
  min-width: 275px;
  background-color: #fff;
  padding: 2em;
  color: #2f0654;
  margin-bottom: 1em;
}
@media (max-width: 62em) {
  .icon-section__list .icon-box {
    width: 48%;
  }
}
@media (max-width: 36em) {
  .icon-section__list .icon-box {
    width: 100%;
  }
}
.icon-section__list .icon-box__icon {
  height: 60px;
  display: block;
}
.icon-section__list .icon-box__icon .icon {
  height: 100%;
  width: auto;
}
.icon-section__list .icon-box__description {
  margin-top: 1em;
  display: block;
  text-align: left;
}

.comment-form-comment textarea {
  overflow: auto;
  border: none !important;
  outline: none !important;
  width: 100%;
  padding: 1em;
}

.america {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border: 2px solid green;
  align-items: center;
}
.america img {
  filter: grayscale(100%) sepia(20%) hue-rotate(-180deg) saturate(200%);
  border-radius: 10px;
}

.site-header {
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: 64px;
  background-color: var(--background);
  transition-duration: 250ms, 250ms;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1), cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-property: background-color, box-shadow;
  display: flex;
  padding: 0 80px;
}
.site-header .site-header__nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0;
}
.site-header .site-header__nav .site-header__menu {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 24px;
  margin: 0;
  text-transform: uppercase;
}
.site-header .site-header__nav .site-header__menu li {
  list-style: none;
  position: relative;
}
.site-header .site-header__nav .site-header__menu li a {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 0.875rem;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.0313rem;
  text-decoration: none;
  vertical-align: middle;
  padding: 0;
  position: relative;
}
.site-header .site-header__nav .site-header__logo .brand {
  font-size: 1.5rem;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.0625rem;
  text-decoration: none;
  vertical-align: middle;
}
.site-header .site-header__nav .site-header__cta {
  width: 18.1875rem;
  height: 3rem;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.site-header .site-header__nav .site-header__cta .phone {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 151px;
  height: 48px;
  background-color: #fff;
  border: 1px;
  border-radius: 8px;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--colors-white-10, rgba(255, 255, 255, 0.1));
}
.site-header .site-header__nav .site-header__cta .phone span {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: -0.0313rem;
  vertical-align: middle;
  text-transform: uppercase;
  color: #0F0A52;
  align-items: center;
}
.site-header .site-header__nav .site-header__cta .phone:hover {
  background: linear-gradient(0deg, var(--colors-light-purple-75, rgba(238, 237, 253, 0.75)), var(--colors-light-purple-75, rgba(238, 237, 253, 0.75))), linear-gradient(98.13deg, rgba(245, 244, 255, 0.25) -21.34%, rgba(227, 225, 251, 0.25) 111.39%);
}
.site-header .site-header__nav .site-header__cta .phone:hover span {
  color: rgb(15, 10, 82);
}
.site-header .site-header__nav .site-header__cta .btn-get-quote {
  width: 8.25rem;
  height: 48px;
  font-family: "Manrope";
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: -0.0313rem;
  border: 2px;
  border-radius: 8px;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-header .site-header__nav .site-header__cta .icon {
  fill: var(--primary-alt);
}
@media (min-width: 75em) {
  .site-header .site-header__nav .site-header__cta .icon {
    width: 2rem;
    height: 2rem;
  }
}
.site-header .site-header__nav .site-header__cta .phone.btn--primary:hover .icon, .site-header .site-header__nav .site-header__cta .wp-block-button.is-style-primary .phone.wp-block-button__link:hover .icon, .wp-block-button.is-style-primary .site-header .site-header__nav .site-header__cta .phone.wp-block-button__link:hover .icon,
.site-header .site-header__nav .site-header__cta .phone.btn--primary:focus .icon,
.site-header .site-header__nav .site-header__cta .wp-block-button.is-style-primary .phone.wp-block-button__link:focus .icon,
.wp-block-button.is-style-primary .site-header .site-header__nav .site-header__cta .phone.wp-block-button__link:focus .icon {
  fill: var(--primary-alt) !important;
}
.site-header .site-header__nav .mobile-opener {
  margin-top: 0.5rem;
}

.menu-item-has-children {
  position: relative;
}
.menu-item-has-children:hover > .sub-menu {
  display: flex;
}
.menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}

.menu-item-has-children > a {
  position: relative;
  display: flex;
  align-items: center;
}
.menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 6px;
  background: url('data:image/svg+xml;utf8,<svg width="11" height="6" viewBox="0 0 11 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.5 1L5.5 5L9.5 1" stroke="%230F0A52" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center center;
  background-size: contain;
  margin-left: 6px;
  vertical-align: middle;
  transition: transform 0.3s;
}
.menu-item-has-children > a:hover::after {
  background: url('data:image/svg+xml;utf8,<svg width="11" height="6" viewBox="0 0 11 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.5 1L5.5 5L9.5 1" stroke="%239093E3" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center center;
}

.menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}

.menu-item-has-children:hover .sub-menu {
  display: flex;
}

.menu-item-has-children .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  background: white;
  border-radius: 8px;
  padding: 8px 16px;
}

.menu-item-has-children:hover .sub-menu {
  display: flex;
  flex-direction: column;
}

.menu-item-has-children:hover .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: max-content;
  padding: 0;
  padding-top: 16px;
  text-transform: uppercase;
  padding: 8px 16px 8px 8px;
}

.menu-item-has-children.open > a::after {
  transform: rotate(180deg);
  transition: 0.5s;
}

.dialog-container {
  display: none;
}
.dialog-container .dialog-content {
  width: 853px;
  border-radius: 24px;
}
@media (max-width: 62em) {
  .dialog-container .dialog-content {
    width: 95%;
  }
}
@media (max-width: 36em) {
  .dialog-container .dialog-content {
    margin-top: 163px;
  }
}
.dialog-container .dialog-content header button {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  top: -54px;
  right: 0px;
  padding: 6px;
  background: url("data:image/svg+xml;utf8,<svg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' clip-rule='evenodd' d='M0.259611 0.259611C0.426056 0.0933737 0.651679 0 0.886921 0C1.12216 0 1.34779 0.0933737 1.51423 0.259611L15.7175 14.4628C15.8047 14.5441 15.8746 14.6421 15.9232 14.751C15.9717 14.8599 15.9978 14.9774 15.9999 15.0966C16.002 15.2158 15.98 15.3342 15.9354 15.4448C15.8907 15.5553 15.8243 15.6557 15.74 15.74C15.6557 15.8243 15.5553 15.8907 15.4448 15.9354C15.3342 15.98 15.2158 16.002 15.0966 15.9999C14.9774 15.9978 14.8599 15.9717 14.751 15.9232C14.6421 15.8746 14.5441 15.8047 14.4628 15.7175L0.259611 1.51423C0.0933737 1.34779 0 1.12216 0 0.886921C0 0.651679 0.0933737 0.426056 0.259611 0.259611Z' fill='%230F0A52'/><path fill-rule='evenodd' clip-rule='evenodd' d='M15.7183 0.259669C15.8845 0.426114 15.9779 0.651737 15.9779 0.886979C15.9779 1.12222 15.8845 1.34784 15.7183 1.51429L1.51506 15.7175C1.34678 15.8743 1.12421 15.9597 0.894235 15.9556C0.664259 15.9516 0.444837 15.8584 0.282194 15.6958C0.119552 15.5331 0.0263885 15.3137 0.0223309 15.0837C0.0182732 14.8538 0.103638 14.6312 0.260442 14.4629L14.4637 0.259669C14.6301 0.0934317 14.8557 5.79544e-05 15.091 5.79544e-05C15.3262 5.79544e-05 15.5519 0.0934317 15.7183 0.259669Z' fill='%230F0A52'/></svg>") no-repeat center center;
  background-size: 16px 16px;
  background-color: white;
}
.dialog-container .dialog-overlay {
  background: rgba(212, 201, 230, 0.2);
  -webkit-backdrop-filter: blur(19px);
          backdrop-filter: blur(19px);
}

.mobile-opener {
  display: none;
}
.mobile-opener .icon {
  font-size: 2.6rem;
  margin: 0;
  width: 4.2rem;
  height: 4.2rem;
}

@media (max-width: 75em) {
  .site-header {
    padding: 0 16px;
    border: none;
  }
  .site-header .site-header__nav {
    padding: 0;
    flex-direction: row;
  }
  .site-header .site-header__nav .site-header__menu {
    display: none;
  }
  .site-header .site-header__nav .site-header__cta {
    justify-content: flex-end;
    margin-left: 200px;
  }
  .site-header .site-header__nav .site-header__cta .phone {
    display: none;
  }
  .site-header .site-header__nav .site-header__cta .btn-get-quote {
    display: none;
  }
  .site-header .site-header__nav .mobile-opener {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
  }
  .site-header .site-header__nav .mobile-opener .icon {
    width: 32px;
  }
}
@media (max-width: 48em) {
  .site-header {
    padding: 16px;
  }
  .site-header .site-header__nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .site-header .site-header__nav .site-header__cta {
    margin-left: 0;
  }
  .site-header .mobile-opener {
    margin-top: 0;
  }
  .site-header .mobile-opener .icon {
    font-size: 2rem;
  }
  .dialog-content {
    max-width: 853px;
    width: 100%;
    border-radius: 24px;
  }
}
.site-footer {
  padding: 60px 80px;
  background-color: #0f0a52;
}
.site-footer .footer-container {
  display: grid;
  grid-template-columns: repeat(3, 210px) 295px;
  grid-template-rows: 1fr;
  grid-column-gap: 69px;
  grid-row-gap: 0px;
}
@media (max-width: 75em) {
  .site-footer .footer-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
@media (max-width: 36em) {
  .site-footer .footer-container {
    display: grid;
    grid-template-columns: repeat(2, 171px);
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 0px;
  }
  .site-footer .footer-container .div1 {
    grid-area: 1/1/2/2;
  }
  .site-footer .footer-container .div2 {
    grid-area: 1/2/3/3;
  }
  .site-footer .footer-container .div3 {
    grid-area: 2/1/4/2;
  }
  .site-footer .footer-container .div6 {
    grid-area: 3/2/4/3;
  }
  .site-footer .footer-container .div5 {
    grid-area: 4/1/5/3;
  }
}
.site-footer .footer-widget h4 {
  font-family: "Manrope";
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: -0.5px;
  vertical-align: middle;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
  margin-top: 0;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .site-footer .footer-widget h4 {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.site-footer .footer-widget ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 0;
}
.site-footer .footer-widget ul li {
  width: 210px;
  height: 28px;
}
.site-footer .footer-widget ul li a {
  font-family: "Manrope";
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: white;
  text-decoration: none;
}
@media (max-width: 600px) {
  .site-footer .footer-widget ul li a {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.3px;
  }
}
.site-footer .footer-widget ul li a:hover {
  color: rgba(255, 255, 255, 0.5);
}
.site-footer .contact-widget p {
  display: block;
  margin-bottom: 8px;
  color: white;
  text-decoration: none;
}
.site-footer__socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.site-footer__socials a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #333a57;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  color: white;
  transition: 0.3s ease;
}
.site-footer__socials a:hover {
  background-color: rgba(255, 255, 255, 0.5);
  color: #0f0a52;
}
.site-footer__socials a svg,
.site-footer__socials a img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  fill: currentColor;
}

.footer-bottom {
  background-color: rgb(215, 212, 249);
}
.footer-bottom__info {
  font-family: "Manrope";
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.7px;
  vertical-align: middle;
  color: rgba(70, 72, 112, 0.75);
}

.contact-info-widget {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}
.contact-info-widget .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-info-widget .contact-item:nth-child(2) {
  align-items: center;
}

.phone-box {
  background: #ffffff;
  padding: 8px 0;
  width: 151px;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
}
.phone-box a {
  font-family: "Manrope";
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.5px;
  vertical-align: middle;
  text-transform: uppercase;
  color: rgb(15, 10, 82);
  text-decoration: none;
}
.phone-box:hover {
  cursor: pointer;
  background-color: rgba(238, 237, 253, 0.75);
}
.phone-box:hover a {
  color: rgb(15, 10, 82);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-item img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.contact-item a,
.contact-item p {
  font-family: "Manrope";
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.3px;
  vertical-align: middle;
  color: rgb(255, 255, 255);
  text-decoration: none;
}
.contact-item a:hover,
.contact-item p:hover {
  cursor: pointer;
  color: rgba(70, 72, 112, 0.75);
  text-decoration: none;
}
@media (max-width: 600px) {
  .contact-item a,
  .contact-item p {
    font-family: "Manrope";
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.3px;
    vertical-align: middle;
  }
}

.social-widget {
  margin-top: 36px;
}

.social-icons {
  display: flex;
  gap: 14px;
  padding-top: 16px;
}

@media (max-width: 48em) {
  .site-footer {
    padding: 24px 0 32px;
  }
  .site-footer .footer-container {
    gap: 10px;
  }
  .footer-widget--combined {
    padding-right: 16px;
    gap: 50px;
    height: 484px;
    display: flex;
    flex-direction: column-reverse;
  }
}
@media (max-width: 48em) and (max-width: 62em) {
  .footer-widget--combined {
    display: contents;
  }
}
@media (max-width: 36em) {
  .site-footer {
    height: 894px;
  }
  .site-footer .resources-first {
    position: relative;
    bottom: 30px;
  }
  .site-footer .resources-second {
    position: relative;
    bottom: 19px;
  }
  .site-footer .first-wid {
    height: 220px;
  }
  .site-footer .sec-wid {
    bottom: 107px;
    position: relative;
  }
  .site-footer .contact-widget {
    flex-direction: column;
    display: flex;
    position: relative;
    bottom: 86px;
  }
  .site-footer .contact-widget .phone-box {
    width: 98%;
  }
  .site-footer .social-icons {
    flex-wrap: wrap;
    gap: 8px;
  }
  .footer-bottom__info {
    font-size: 12px;
    line-height: 140%;
    letter-spacing: -0.7px;
  }
}
.error404 .title-404 {
  text-align: center;
  font-size: 10rem;
  color: var(--primary);
  margin: 1.6rem 0;
}
@media (min-width: 36em) {
  .error404 .title-404 {
    font-size: 18rem;
  }
}
@media (min-width: 48em) {
  .error404 .title-404 {
    font-size: 24rem;
  }
}
@media (min-width: 62em) {
  .error404 .title-404 {
    font-size: 32rem;
  }
}
.error404 .title-404 b {
  color: var(--secondary);
}

.page-header {
  position: relative;
  padding: 4.8rem 0 3.2rem;
  margin: 0 auto;
  max-width: 115rem;
  text-align: center;
  z-index: 1;
}
.page-header h1 {
  text-align: center;
  font-size: 6rem;
  margin: 0 0 1.6rem;
  text-transform: uppercase;
}

.form-review {
  padding-top: 1.6rem;
  padding-bottom: 8rem;
}
@media (min-width: 62em) {
  .form-review {
    display: grid;
    gap: 1.6rem;
    grid-template-columns: 2fr 1fr;
  }
}
@media (min-width: 75em) {
  .form-review {
    grid-template-columns: 2fr 1fr;
  }
}
@media (max-width: 48em) {
  .form-review {
    padding-bottom: 4rem;
  }
}
.form-review__quote {
  margin-bottom: 1.6rem;
}
@media (min-width: 62em) {
  .form-review__quote {
    margin-bottom: 0;
  }
}
.form-review__review {
  overflow: hidden;
}
.form-review__review .review-count {
  margin-left: -3.2rem;
  margin-right: -3.2rem;
  margin-top: -3.2rem;
  margin-bottom: 1.6rem;
  background-color: var(--secondary-darken);
  padding: 1.6rem 3.2rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  justify-content: space-between;
}
.form-review__review .review-count__total {
  background-color: var(--white);
  border-radius: 50%;
  padding: 0.8rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Oswald";
  font-weight: 600;
  font-size: 20px;
}
.form-review__review .review-count__text {
  font-family: "Oswald";
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  text-decoration: none;
}
.form-review__review .review-count__stars {
  --percent: calc(var(--rating) / 5 * 100%);
  display: inline-block;
  font-size: 2rem;
  line-height: 1;
}
.form-review__review .review-count__stars::before {
  content: "★★★★★";
  letter-spacing: 3px;
  background: linear-gradient(90deg, var(--primary) var(--percent), var(--grey-200) var(--percent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 62em) {
  .form-review__review {
    min-width: 0;
  }
}

.form-get-quote form {
  margin-bottom: 0;
}
.form-get-quote__title {
  font-size: 2rem;
  padding-right: 2rem;
}
.form-get-quote__inputs {
  margin-bottom: 3.2rem;
  padding-bottom: 3.2rem;
  border-bottom: 1px dashed var(--border-input);
  color: var(--border-input);
  display: grid;
  gap: 1.6rem;
}
@media (min-width: 48em) {
  .form-get-quote__inputs {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "basic contact" "notes notes";
  }
}
@media (max-width: 48em) {
  .form-get-quote__inputs {
    margin-bottom: 1.6rem;
    padding-bottom: 1.6rem;
  }
}
.form-get-quote__inputs-title {
  margin-bottom: 1.6rem;
  font-size: 1.6rem;
  font-weight: 500;
  display: block;
  color: var(--primary-alt);
  font-family: "Oswald", sans-serif;
}
@media (min-width: 48em) {
  .form-get-quote__basic {
    grid-area: basic;
  }
}
@media (min-width: 48em) {
  .form-get-quote__contact {
    grid-area: contact;
  }
}
@media (min-width: 48em) {
  .form-get-quote__notes {
    grid-area: notes;
  }
}
.form-get-quote__description {
  display: flex;
  flex-flow: column;
}
@media (min-width: 62em) {
  .form-get-quote__description {
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 62em) {
  .form-get-quote__description span {
    margin-right: 1.6rem;
  }
}
.form-get-quote__description button {
  margin-top: 1.6rem;
}
@media (min-width: 62em) {
  .form-get-quote__description button {
    margin: 0;
    margin-left: 0.8rem;
  }
}
@media (max-width: 48em) {
  .form-get-quote .label__title {
    display: none;
  }
}
@media (max-width: 48em) {
  .form-get-quote .mobile-hide {
    display: none;
  }
}

.dialog-content {
  padding: 0;
  height: 721px;
}
@media (max-width: 36em) {
  .dialog-content {
    height: fit-content;
    padding-bottom: 32px;
  }
}

.dialog-container {
  -webkit-backdrop-filter: blur(19px);
          backdrop-filter: blur(19px);
}

.form-get-quote-steps {
  margin: 0 auto;
  border-radius: 24px;
  background-color: rgb(255, 255, 255);
  width: 100%;
  padding: 32px;
}
@media (max-width: 36em) {
  .form-get-quote-steps {
    width: 100%;
    height: auto;
    border-radius: 24px 24px 0 0;
    padding: 0;
  }
}
.form-get-quote-steps__wrapper {
  border-radius: 25px;
}
.form-get-quote-steps__title {
  text-align: center;
  font-family: "Manrope";
  font-weight: 700;
  font-size: 28px;
  line-height: 150%;
  letter-spacing: -1.1px;
  vertical-align: middle;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media (max-width: 36em) {
  .form-get-quote-steps__title {
    font-size: 18px;
  }
}
.form-get-quote-steps .datepicker {
  width: 100%;
  max-width: 656px;
}

#date-pikaday {
  padding: 20px 24px;
  box-shadow: 0px 4px 6px rgba(85, 37, 131, 0.28);
  border-radius: 0.8rem;
  margin: 0 auto;
}
#date-pikaday table {
  margin-bottom: 0;
}
#date-pikaday table th {
  font-family: "Manrope";
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.7px;
  text-align: center;
}
#date-pikaday .pika-single {
  font-size: 25.6px;
  border: none;
  display: flex;
  flex-direction: row;
  font-size: 14px;
  gap: 30px;
}
@media (max-width: 75em) {
  #date-pikaday .pika-single {
    font-size: 24px;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 48em) {
  #date-pikaday .pika-single {
    flex-direction: column;
  }
}
@media (max-width: 36em) {
  #date-pikaday .pika-single {
    flex-direction: row;
  }
}

.pika-single > :last-child {
  margin-left: 0;
}
.pika-lendar {
  width: auto;
}

.pika-prev,
.pika-next {
  position: absolute;
  top: 50%;
  transform: translateY(283%);
  z-index: 1;
  border-radius: 9.6px;
  padding: 18px;
  box-shadow: 0px 4px 6px rgba(85, 37, 131, 0.28);
  background-color: var(--white);
  opacity: 0.7;
}

.pika-prev {
  left: -3.3rem;
  background-image: url("data:image/svg+xml;utf8,<svg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M14.7882 8.00014H1.21177M1.21177 8.00014L8 1.21191M1.21177 8.00014L8 14.7884' stroke='%230F0A52' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/></svg>");
  background-size: 16px;
}
@media (max-width: 36em) {
  .pika-prev {
    left: -25px;
  }
}

.pika-next {
  right: -3.3rem;
  background-image: url("data:image/svg+xml;utf8,<svg width='6' height='12' viewBox='0 0 8 14' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M1 13L7 7L1 1' stroke='%23464870' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: 8px;
}
@media (max-width: 36em) {
  .pika-next {
    right: -30px;
  }
}

.pika-button {
  background: var(--white);
  text-align: center;
  color: var(--primary);
  border-radius: 12px;
  font-family: "Manrope";
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.3px;
  text-align: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.pika-button:hover {
  box-shadow: none;
  background-color: #E2E1F3;
}

.is-disabled .pika-button {
  color: #464870;
}

thead,
tbody {
  border: none !important;
  background-color: var(--white);
}

tbody tr {
  background-color: var(--white) !important;
}

tbody tr:nth-child(even) {
  background-color: var(--white) !important;
}

td {
  background-color: var(--white);
}

td.is-selected .pika-button {
  background-color: var(--primary-hover);
  box-shadow: none;
  color: var(--white);
}

td.is-empty {
  background-color: var(--white);
}

.pika-table th {
  color: var(--primary);
  font-weight: 400;
  text-align: center;
}
.pika-table th abbr[title]::after {
  display: none;
}

.pika-title {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.pika-label {
  font-family: "Manrope";
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.3px;
  text-align: center;
  color: rgb(15, 10, 82);
}

.steps {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
  margin: 41px auto 20px;
}

.step {
  width: 28%;
  text-align: center;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media (max-width: 36em) {
  .step {
    padding: 10px 0;
  }
}

.step__title {
  font-family: "Manrope";
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.7px;
  text-align: center;
}
@media (max-width: 36em) {
  .step__title {
    font-size: 13px;
  }
}

.step__number {
  width: 28px;
  height: 28px;
  background: white;
  border: 1.5px solid var(--colors-grey-50, rgba(70, 72, 112, 0.5));
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}
@media (max-width: 36em) {
  .step__number {
    width: 22px;
    height: 22px;
  }
}
.step__number .digit {
  display: block;
  font-family: "Inter";
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  text-align: center;
  color: rgba(70, 72, 112, 0.75);
}
@media (max-width: 36em) {
  .step__number .digit {
    font-size: 11px;
  }
}
.step__number .icon {
  display: none;
  width: 20px;
  height: 20px;
}
.step__number .icon path {
  color: var(--white);
}

.step.valid .step__number {
  background-color: var(--primary-hover) !important;
  border: 5px solid var(--secondary-alt);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 36em) {
  .step.valid .step__number {
    width: 22px;
    height: 22px;
    border: 3.93px solid var(--Colors-Light-purple, rgb(238, 237, 253));
  }
}
.step.valid .step__number .digit {
  display: none;
}
.step.valid .step__number .icon {
  display: block;
  width: 15.71px;
  height: 15.71px;
}

.step.active .step__number {
  color: #fff;
}

.step-content {
  display: none;
}
.step-content .navigation-block {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-right: 26px;
}
@media (max-width: 36em) {
  .step-content .navigation-block {
    justify-content: center;
  }
}
.step-content .navigation-block .prev-btn,
.step-content .navigation-block .next-btn,
.step-content .navigation-block .btn,
.step-content .navigation-block .wp-block-button .wp-block-button__link,
.wp-block-button .step-content .navigation-block .wp-block-button__link,
.step-content .navigation-block .navigation .nav-links .page-numbers,
.navigation .nav-links .step-content .navigation-block .page-numbers {
  width: 138px;
  padding: 17px 0;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  font-family: "Manrope";
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.5px;
  vertical-align: middle;
  text-transform: uppercase;
}
@media (max-width: 36em) {
  .step-content .navigation-block .prev-btn,
  .step-content .navigation-block .next-btn,
  .step-content .navigation-block .btn,
  .step-content .navigation-block .wp-block-button .wp-block-button__link,
  .wp-block-button .step-content .navigation-block .wp-block-button__link,
  .step-content .navigation-block .navigation .nav-links .page-numbers,
  .navigation .nav-links .step-content .navigation-block .page-numbers {
    width: 100%;
    margin: 0 0 0 16px;
  }
}

.step-content.active {
  display: block;
}

.step-content__form-block {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 64px;
}
.step-content__form-block .label {
  margin-bottom: 0;
  width: 90%;
}
.step-content__form-block .label__title {
  font-family: "Manrope";
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.3px;
}
.step-content__form-block .label__input {
  font-family: "Manrope";
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.3px;
  padding: 17px 16px;
}
@media (max-width: 48em) {
  .step-content__form-block {
    flex-wrap: wrap;
  }
}

@media (max-width: 48em) {
  .step-content__form-block label {
    width: 100%;
  }
}

.step.progress::after {
  height: 4px;
  background: #f5f5f5;
  content: "";
  position: absolute;
  top: 23px;
  left: calc(50% + 14px);
  width: 115%;
  z-index: 0;
}

#step1 label {
  width: 48%;
}
#step1 .step-content__form-block {
  flex-direction: row;
}

#step3 .step-content__form-block {
  flex-direction: column;
}

@media (max-width: 36em) {
  .error.is-active {
    font-size: 14px !important;
  }
}
.form-get-quote-title {
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: center;
}
@media (max-width: 36em) {
  .form-get-quote-title {
    margin-top: 24px;
  }
}

#btn-prev-title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 9.6px;
  background: var(--colors-white-50, rgba(255, 255, 255, 0.5));
  border: 1px solid var(--colors-purple-5, rgba(144, 147, 227, 0.05));
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
  padding: 0;
}
#btn-prev-title svg {
  width: 14px;
  height: 14px;
}
@media (max-width: 36em) {
  #btn-prev-title {
    width: 40px;
    height: 40px;
  }
}

.step__meta {
  font-family: "Manrope";
  font-weight: 400;
  font-size: 11px !important;
  line-height: 140%;
  letter-spacing: -0.7px;
  text-align: center;
}

.our-reviews header {
  margin-bottom: 1.6rem;
}
.our-reviews header h2 {
  font-size: 2rem;
}
.our-reviews header p {
  opacity: 0.875;
}
.our-reviews__navigation {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.our-reviews__navigation-dots {
  display: flex;
  align-items: center;
  margin-right: 1.6rem;
}
.our-reviews__navigation-dots button {
  width: 1rem;
  height: 1rem;
  margin-right: 0.3rem;
  display: block;
  padding: 0;
  cursor: pointer;
  border-radius: 9999px;
  border-color: var(--grey-400);
}
.our-reviews__navigation-dots button.active {
  background-color: var(--grey-950);
  border-color: var(--grey-950);
}
.our-reviews__navigation-prev:hover, .our-reviews__navigation-next:hover {
  box-shadow: 0px 4px 4px rgba(85, 37, 131, 0.1);
}
.our-reviews__navigation-button {
  margin: 1.6rem 0 1.6rem auto;
}
.our-reviews__items .review__description a {
  display: block;
  margin-top: 2rem;
}

.review__avatars {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 1.6rem;
}
.review__person {
  display: flex;
  flex-flow: column;
  align-items: center;
}
.review__person img {
  border-radius: 50%;
  margin-bottom: 0.8rem;
}
.review__person .review__person-name {
  font-size: 1.5rem;
  font-weight: 700;
}
.review__person-desc {
  opacity: 0.875;
  color: var(--border-input);
}
.review__location {
  display: flex;
  padding: 0.8rem 0;
  border-top: 1px solid var(--grey-300);
  border-bottom: 1px solid var(--grey-300);
  margin-bottom: 1.6rem;
}
.review__location-dest {
  display: flex;
  flex-flow: column;
  margin-right: 0.8rem;
}
@media (min-width: 36em) {
  .review__location-dest {
    flex-flow: row;
  }
}
.review__location-dest b {
  font-weight: 400;
}
.review__location-dest span {
  opacity: 0.875;
  margin-right: 0.8rem;
  color: var(--border-input);
}
.review__rating {
  margin: 1.6rem 0;
  display: flex;
  align-items: center;
}
.review__rating-stars {
  --percent: calc(var(--rating) / 5 * 100%);
  display: inline-block;
  font-size: 2.4rem;
  line-height: 1;
}
.review__rating-stars::before {
  content: "★★★★★";
  letter-spacing: 3px;
  background: linear-gradient(90deg, var(--secondary) var(--percent), var(--grey-200) var(--percent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.review__rating-source {
  margin-left: 1.6rem;
}
.review__signature {
  margin: 5rem 0 3rem;
}
@media (max-width: 48em) {
  .review__signature {
    margin: 2rem 0 1.6rem;
  }
}

.service-card {
  --icon-size: 6rem;
  margin-bottom: 1.6rem;
}
@media (min-width: 36em) {
  .service-card {
    --icon-size: 8rem;
  }
}
@media (min-width: 36em) {
  .service-card {
    display: flex;
  }
}
.service-card__img {
  position: absolute;
}
.service-card__img img,
.service-card__img svg {
  height: 100%;
}
.service-card__content {
  display: flex;
  flex-direction: column;
}
.service-card__title {
  text-decoration: none;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  margin-bottom: 1.6rem;
  font-size: 1.8rem;
  margin-left: calc(1.6rem + var(--icon-size));
  min-height: var(--icon-size);
}
.service-card .btn, .service-card .wp-block-button .wp-block-button__link, .wp-block-button .service-card .wp-block-button__link, .service-card .navigation .nav-links .page-numbers, .navigation .nav-links .service-card .page-numbers {
  margin-right: auto;
}
.service-card .btn.btn--outline:hover, .service-card .wp-block-button .btn--outline.wp-block-button__link:hover, .wp-block-button .service-card .btn--outline.wp-block-button__link:hover, .service-card .navigation .nav-links .page-numbers:hover, .navigation .nav-links .service-card .page-numbers:hover {
  background-color: var(--border-input);
  border: 1px solid var(--border-input);
  color: var(--white);
}

#app {
  padding-bottom: 0;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

* {
  box-sizing: border-box;
}

@media (min-width: 375px) {
  .container {
    max-width: 375px;
  }
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1312px;
    padding: 32px 16px;
  }
}

@media (min-width: 62em) {
  .services-section .container {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 2fr;
    padding: 0;
  }
}
.services-section__list {
  display: grid;
}
@media (max-width: 36em) {
  .services-section__list {
    display: none;
  }
}
.services-section__list-mobile {
  display: none;
}
@media (max-width: 36em) {
  .services-section__list-mobile {
    display: grid;
  }
}
.services-section__list, .services-section__list-mobile {
  gap: 1.6rem;
}
@media (min-width: 48em) {
  .services-section__list, .services-section__list-mobile {
    grid-template-columns: 1fr 1fr;
    align-content: start;
  }
}
@media (max-width: 62em) {
  .services-section__list, .services-section__list-mobile {
    margin-top: 3rem;
  }
}
.services-section__list .service-card, .services-section__list-mobile .service-card {
  position: relative;
  background-color: #f5f5f5;
  --icon-size: 7rem;
  color: var(--text);
  margin-bottom: 0;
  height: 280px;
  border-radius: 4px;
  padding-top: 1.3rem;
  line-height: 1.8rem;
}
.services-section__list .service-card__img, .services-section__list-mobile .service-card__img {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  right: 10px;
  width: 45%;
  min-height: 73px;
}
.services-section__list .service-card__title, .services-section__list-mobile .service-card__title {
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  font-size: 20px;
  text-transform: uppercase;
  margin-left: 0;
  width: min-content;
  border-bottom: 2px dashed #2f0654;
  width: 45%;
  min-height: 72px;
  line-height: 22px;
}
@media (max-width: 36em) {
  .services-section__list .service-card, .services-section__list-mobile .service-card {
    height: auto;
  }
  .services-section__list .service-card:nth-of-type(1n + 3), .services-section__list-mobile .service-card:nth-of-type(1n + 3) {
    display: block;
  }
}
.services-section__list .service-card__content, .services-section__list-mobile .service-card__content {
  height: 100%;
}
.services-section__text h4 {
  font-size: 25px;
  font-weight: 700;
  line-height: 32px;
  text-transform: uppercase;
  margin: 2.5rem 0;
}
@media (max-width: 48em) {
  .services-section__text h4 {
    margin-top: 0;
  }
}
.services-section__text h6 {
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
}
.services-section__text p {
  font-family: Segoe UI;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}
.services-section .service-card .btn, .services-section .service-card .wp-block-button .wp-block-button__link, .wp-block-button .services-section .service-card .wp-block-button__link, .services-section .service-card .navigation .nav-links .page-numbers, .navigation .nav-links .services-section .service-card .page-numbers {
  margin-top: auto;
}
.services-section .services-table__navigation {
  display: flex;
  order: 2;
  justify-content: center;
  margin-top: 1em;
  gap: 40px;
}
.services-section .services-table__navigation .my-carousel-progress {
  color: var(--white);
}
.services-section .services-table__navigation-prev, .services-section .services-table__navigation-next {
  z-index: 1;
}
.express {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media (min-width: 62em) {
  .express {
    display: grid;
    gap: 3.2rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 36em) {
  .express {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.express__img {
  background-color: var(--white);
  display: flex;
  align-items: center;
}
.express__img-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-around;
  background: var(--white);
  padding: 5rem;
}
@media (max-width: 48em) {
  .express__img-grid {
    padding: 3rem;
  }
}
@media (max-width: 36em) {
  .express__img-grid {
    padding: 3rem;
    gap: 2.4rem;
  }
}
.express__img-grid img {
  max-width: none;
  height: fit-content;
}
.express__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 62em) {
  .express__content {
    margin-top: 5rem;
  }
}
.express__content .service-wrap {
  display: flex;
  gap: 18px;
}
@media (max-width: 36em) {
  .express__content .service-wrap {
    display: grid;
  }
}
.express__content .line-title {
  font-size: 2.5rem;
}
.express__content .service-card {
  position: relative;
}
.express__content .service-card__img {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  right: 10px;
  width: 45%;
  min-height: 83px;
}
.express__content .service-card__title {
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  font-size: 20px;
  margin-left: 0;
  width: min-content;
  width: 45%;
  min-height: 82px;
  background-image: linear-gradient(to right, #552583 65%, #ffffff 0%);
  background-position: bottom;
  background-size: 6px 2px;
  background-repeat: repeat-x;
}
.express__content .btn-get-quote {
  margin-top: auto;
}
@media (max-width: 48em) {
  .express__content .btn-get-quote {
    width: 100%;
  }
}
.express-desktop {
  display: block;
}
@media (max-width: 48em) {
  .express-desktop {
    display: none;
  }
}
.express-mobile {
  display: none;
}
@media (max-width: 48em) {
  .express-mobile {
    display: block;
  }
}
.express .js-logos-carousel .splide__slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.reasons .line-title {
  font-size: 2.5rem;
  text-align: left;
  margin-bottom: 40px;
}
.reasons .line-title::before {
  margin-left: auto;
  margin-right: auto;
}
.reasons__list {
  display: grid;
}
@media (max-width: 36em) {
  .reasons__list {
    display: none;
  }
}
.reasons__list-mobile {
  display: none;
}
@media (max-width: 36em) {
  .reasons__list-mobile {
    display: grid;
  }
}
.reasons__list-mobile .splide__slide__row {
  padding-left: 0;
}
.reasons__list-mobile .reasons__block {
  margin-bottom: 1.6rem;
}
.reasons__list-mobile .navigation {
  display: flex;
  order: 2;
  justify-content: center;
  margin-top: 1em;
  gap: 40px;
}
.reasons__list-mobile .navigation .my-carousel-progress {
  color: var(--white);
}
.reasons__list-mobile .navigation-prev, .reasons__list-mobile .navigation-next {
  z-index: 1;
}
.reasons__list, .reasons__list-mobile {
  gap: 1.6rem;
}
@media (min-width: 48em) {
  .reasons__list, .reasons__list-mobile {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 62em) {
  .reasons__list, .reasons__list-mobile {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.reasons__list .btn-get-quote, .reasons__list-mobile .btn-get-quote {
  height: 5.5rem;
  font-size: 1.7rem;
  line-height: 2.261rem;
}
@media (max-width: 36em) {
  .reasons__block {
    height: auto;
  }
}
.reasons__block-img {
  margin-bottom: 1.6rem;
  position: absolute;
}
.reasons__block-img img,
.reasons__block-img svg {
  width: auto;
  height: 7rem;
  max-width: 7rem;
}
.reasons__block h6.reasons__block-title {
  color: var(--primary-alt);
  margin-left: calc(1.6rem + 7rem);
  display: grid;
  margin-top: 1em;
}
.reasons__block h6.reasons__block-title span:first-child {
  text-transform: uppercase;
  font-size: 2rem;
}
.reasons__block h6.reasons__block-title span:last-child {
  margin-top: 0.8rem;
  font-size: 1.6rem;
  color: var(--primary-block-bg-on-main);
  font-weight: 500;
}
.reasons__block p {
  color: var(--primary-alt);
  line-height: 1.82rem;
}
.reasons__block.quote {
  background-color: var(--border-input);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--white);
}
.reasons__block.quote h4 {
  margin-bottom: 1rem;
  font-size: 2rem;
  text-align: left;
  color: var(--white);
  text-transform: uppercase;
}
.reasons__block.quote p {
  margin-bottom: 2.4rem;
  color: var(--white);
}

.included {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media (max-width: 36em) {
  .included {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.included .line-title {
  font-size: 2.5rem;
}
.included .line-title::before {
  margin-left: auto;
  margin-right: auto;
}
.included__img {
  display: none;
  margin-bottom: 1.6rem;
}
@media (min-width: 36em) {
  .included__img {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.included__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.6rem;
}
@media (min-width: 48em) {
  .included__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.included__list li {
  padding-left: 4rem;
  position: relative;
  margin-bottom: 1.2rem;
}
@media (max-width: 62em) {
  .included__list li {
    padding-left: 0;
  }
}
.included__list li svg {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  width: 3.6rem;
  height: 3.6rem;
}
.included__list li p {
  color: var(--primary-alt);
  line-height: 15px;
}
.included__list h5 {
  color: var(--primary-alt);
  font-size: 2rem;
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
}
@media (max-width: 62em) {
  .included__list h5 {
    padding-left: 4rem;
  }
}

.our-clients {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media (max-width: 48em) {
  .our-clients {
    padding-top: 5rem;
  }
}
@media (max-width: 36em) {
  .our-clients {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.our-clients .line-title {
  text-align: left;
  font-size: 2.5rem;
  margin-top: 0;
  color: var(--white);
}
.our-clients .line-title::before {
  margin-left: auto;
  margin-right: auto;
}
.our-clients .description {
  text-align: left;
}
.our-clients__list {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1fr 1fr;
  margin-top: 2.5rem;
  border-radius: 0.4rem;
  align-items: center;
  justify-items: center;
}
@media (min-width: 48em) {
  .our-clients__list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (min-width: 75em) {
  .our-clients__list {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }
}
.our-rates {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: var(--border-input);
  color: var(--white);
}
@media (max-width: 48em) {
  .our-rates {
    padding-top: 5rem;
  }
}
@media (max-width: 36em) {
  .our-rates {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.our-rates .line-title {
  color: inherit;
  font-size: 2.5rem;
  text-align: left;
  margin-bottom: 2rem;
}
.our-rates .line-title::before {
  margin-left: auto;
  margin-right: auto;
}
.our-rates .description {
  margin-bottom: 4rem;
}

.rates-table {
  position: relative;
}
.rates-table__navigation {
  display: flex;
  order: 2;
  justify-content: center;
  margin-top: 1em;
  gap: 40px;
}
.rates-table__navigation .my-carousel-progress {
  color: var(--white);
}
.rates-table__navigation-prev, .rates-table__navigation-next {
  z-index: 1;
}
.rates-table__tabs {
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 48em) {
  .rates-table__tabs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3.2rem;
  }
}
.rates-table__tabs > li {
  width: 49%;
}
@media (max-width: 48em) {
  .rates-table__tabs > li {
    width: 100%;
    margin-bottom: 1.6rem;
  }
}
.rates-table__tabs > li a {
  color: var(--white);
  text-decoration: none;
  font-weight: 400;
  font-size: 1.7rem;
  display: block;
  text-align: center;
  border-radius: 0.4rem;
  padding: 10px 29px;
  box-shadow: 0px 4px 6px rgba(85, 37, 131, 0.28);
  cursor: pointer;
}
@media (min-width: 48em) {
  .rates-table__tabs > li a {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }
}
.rates-table__tabs > li a[aria-selected=true] {
  border-radius: 0.4rem;
  padding: 10px 29px;
  color: var(--primary-alt);
  font-weight: 700;
}
@media (min-width: 48em) {
  .rates-table__tabs > li a[aria-selected=true] {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }
}
.rates-table__tabs > li a[aria-selected=true]:hover {
  color: var(--border-input);
}
.rates-table__tabs > li a[aria-selected=false]:hover {
  text-shadow: 1px 0 0 currentColor;
}
.rates-table__tabs > li a:hover {
  color: var(--link);
  box-shadow: 0px 6px 8px rgba(85, 37, 131, 0.4);
  color: var(--white);
}
.rates-table__panel {
  display: none;
}
.rates-table__panel:not([hidden]) {
  display: block;
}
.rates-table__panel-desktop {
  display: none;
}
@media (min-width: 62em) {
  .rates-table__panel-desktop {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.1rem;
  }
  .rates-table__panel-desktop .pricing {
    background-color: var(--white);
    color: var(--heading);
  }
  .rates-table__panel-desktop .pricing__title {
    border-radius: 0;
  }
  .rates-table__panel-desktop .pricing:nth-child(odd) {
    background: #f5f5f5;
  }
  .rates-table__panel-desktop .pricing:nth-child(odd) .pricing__cta a.btn, .rates-table__panel-desktop .pricing:nth-child(odd) .pricing__cta .wp-block-button a.wp-block-button__link, .wp-block-button .rates-table__panel-desktop .pricing:nth-child(odd) .pricing__cta a.wp-block-button__link, .rates-table__panel-desktop .pricing:nth-child(odd) .pricing__cta .navigation .nav-links a.page-numbers, .navigation .nav-links .rates-table__panel-desktop .pricing:nth-child(odd) .pricing__cta a.page-numbers {
    background-color: #464870 !important;
    border-color: #464870 !important;
    color: var(--white) !important;
  }
}
.rates-table__panel-mobile {
  display: none;
}
@media (max-width: 62em) {
  .rates-table__panel-mobile {
    display: grid;
  }
}
.rates-table__panel-mobile .pricing {
  background-color: var(--white);
  color: var(--heading);
}
.rates-table__panel-mobile .pricing.featured .pricing__title::after {
  content: none;
}
.rates-table__panel-mobile .pricing:nth-child(odd) .pricing__cta a.btn, .rates-table__panel-mobile .pricing:nth-child(odd) .pricing__cta .wp-block-button a.wp-block-button__link, .wp-block-button .rates-table__panel-mobile .pricing:nth-child(odd) .pricing__cta a.wp-block-button__link, .rates-table__panel-mobile .pricing:nth-child(odd) .pricing__cta .navigation .nav-links a.page-numbers, .navigation .nav-links .rates-table__panel-mobile .pricing:nth-child(odd) .pricing__cta a.page-numbers {
  background-color: #464870 !important;
  border-color: #464870 !important;
  color: var(--white) !important;
}
.rates-table__panel-mobile .pricing .pricing__img img {
  width: 100%;
}
.rates-table__panel:nth-child(odd) .pricing.featured .pricing__badge {
  color: var(--primary);
}
.rates-table__compare-table {
  color: var(--primary);
  table-layout: fixed;
  width: 100%;
}
.rates-table__compare-table.desktop {
  display: table;
}
@media (max-width: 36em) {
  .rates-table__compare-table.desktop {
    display: none;
  }
}
.rates-table__compare-table.mobile {
  display: none;
}
@media (max-width: 36em) {
  .rates-table__compare-table.mobile {
    display: table;
  }
}
.rates-table__compare-table th {
  font-size: large;
  padding: 2rem;
  text-align: center;
  width: 33%;
}
.rates-table__compare-table td {
  padding: 1rem;
  font-size: medium;
  width: 33%;
}
.rates-table__compare-table td.service-title {
  font-weight: 600;
}
.rates-table__compare-table td.service-value {
  text-align: center;
}

.pricing {
  padding: 4.5rem 7.5rem;
  position: relative;
  border-radius: 1rem;
  transition-property: box-shadow;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}
@media (max-width: 62em) {
  .pricing {
    padding: 4rem 5rem;
  }
}
@media (max-width: 48em) {
  .pricing {
    padding: 4rem 4rem;
  }
}
.pricing:hover {
  box-shadow: rgba(10.2, 10.2, 10.2, 0.13) 0 6.4px 14.4px, rgba(10.2, 10.2, 10.2, 0.1) 0 1.2px 3.6px;
}
.pricing__badge {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 5rem;
  color: var(--secondary);
  z-index: 1;
}
@media (min-width: 62em) {
  .pricing__badge {
    color: var(--primary);
  }
}
.pricing__img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  margin-top: 2.2rem;
}
.pricing__img img {
  max-width: 100%;
  object-fit: contain;
}
.pricing__img svg {
  height: 14rem;
}
.pricing h3.pricing__title {
  color: var(--heading);
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
  letter-spacing: 0px;
}
.pricing h3.pricing__title small, .pricing h3.pricing__title .reviews__items .single-review, .reviews__items .pricing h3.pricing__title .single-review, .pricing h3.pricing__title .reviews__items header p, .reviews__items header .pricing h3.pricing__title p, .pricing h3.pricing__title label, .pricing h3.pricing__title cite, .pricing h3.pricing__title .form-get-quote__description span, .form-get-quote__description .pricing h3.pricing__title span, .pricing h3.pricing__title .our-reviews header p, .our-reviews header .pricing h3.pricing__title p, .pricing h3.pricing__title .review, .pricing h3.pricing__title .review__person-desc, .pricing h3.pricing__title .review__location, .pricing h3.pricing__title .service-card__content p, .service-card__content .pricing h3.pricing__title p, .pricing h3.pricing__title .reasons__block h6.reasons__block-title span:last-child, .reasons__block h6.reasons__block-title .pricing h3.pricing__title span:last-child, .pricing h3.pricing__title .reasons__block p, .reasons__block .pricing h3.pricing__title p {
  font-family: "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  text-transform: lowercase;
}
.pricing__astericks {
  font-weight: 700;
  color: #ff0000;
}
.pricing__poppup {
  position: absolute;
  top: 10px;
  padding: 5px 4.5rem;
  text-align: center;
  background: #282828;
  color: #fff;
  width: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 4px;
  font-size: 14px;
  z-index: 10;
  display: none;
}
@media (max-width: 62em) {
  .pricing__poppup {
    top: 0;
    transform: translate(-50%, 15%);
  }
}
.pricing__price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.82rem;
}
.pricing__price-border-notice {
  margin-top: 0;
  margin-bottom: 1.2rem;
  padding-top: 1.2rem;
  width: 100%;
  background-image: linear-gradient(to right, #552583 65%, #ffffff 0%);
  background-position: bottom;
  background-size: 6px 2px;
  background-repeat: repeat-x;
}
.pricing__price span {
  letter-spacing: 0.5px;
}
.pricing__price span span {
  font-weight: 400;
}
.pricing__price small, .pricing__price .reviews__items .single-review, .reviews__items .pricing__price .single-review, .pricing__price .reviews__items header p, .reviews__items header .pricing__price p, .pricing__price label, .pricing__price cite, .pricing__price .form-get-quote__description span, .form-get-quote__description .pricing__price span, .pricing__price .our-reviews header p, .our-reviews header .pricing__price p, .pricing__price .review, .pricing__price .review__person-desc, .pricing__price .review__location, .pricing__price .service-card__content p, .service-card__content .pricing__price p, .pricing__price .reasons__block h6.reasons__block-title span:last-child, .reasons__block h6.reasons__block-title .pricing__price span:last-child, .pricing__price .reasons__block p, .reasons__block .pricing__price p {
  color: var(--text);
  font-weight: 400;
  font-size: 1.2rem;
  position: relative;
  background: #fdb927;
  padding: 0px 5px 3px;
  border-radius: 4px;
  overflow: hidden;
}
.pricing__services {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 1rem;
  margin-bottom: 0;
  padding-bottom: 1.6rem;
}
.pricing__services li:first-child {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  margin-bottom: 0.5rem;
}
.pricing__services li:not(li:first-child) {
  padding-left: 5px;
  margin-bottom: 0;
}
.pricing__cta {
  display: flex;
  justify-content: center;
}
.pricing__cta .btn-get-quote {
  width: 100%;
}
.pricing__cta .btn--outline, .pricing__cta .navigation .nav-links .page-numbers, .navigation .nav-links .pricing__cta .page-numbers {
  text-shadow: none;
}
.pricing.featured {
  z-index: 1;
}
.pricing.featured .pricing__title {
  position: relative;
}

.relocation-guide .line-title {
  text-align: left;
  font-size: 2.5rem;
}
.relocation-guide .line-title::before {
  margin-left: auto;
  margin-right: auto;
}
.relocation-guide__list {
  margin-top: 4rem;
}
.relocation-guide__arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  color: var(--border-input);
  margin-top: 4rem;
}
.relocation-guide__arrows :hover {
  color: var(--primary-alt);
}
.relocation-guide__arrows .my-carousel-progress {
  color: var(--white);
}
.relocation-guide__arrows .my-carousel-progress.primary-text {
  color: var(--primary-alt);
}
@media (min-width: 48em) {
  .relocation-guide__arrows-prev {
    left: -4rem;
  }
}
@media (min-width: 48em) {
  .relocation-guide__arrows-next {
    right: -4rem;
  }
}

.article-card {
  text-align: center;
  padding: 1.6rem 1.6rem 2.6rem;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 0.4rem;
  height: 100%;
}
.article-card__img {
  margin: -1.6rem;
  margin-bottom: 1.6rem;
  display: block;
  padding-bottom: 56.25%;
  height: 245px;
  overflow: hidden;
  position: relative;
}
.article-card__img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-card__img::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  background-color: var(--primary-lighten);
  transition-property: opacity;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}
.article-card__img:hover::after {
  opacity: 0.25;
}
.article-card h4.article-card__title {
  color: var(--primary);
  text-align: left;
  font-size: 21px;
  text-transform: uppercase;
  padding: 0px 1.5rem;
  letter-spacing: 0.4px;
  margin-top: 2.1rem;
  margin-bottom: 1.1rem;
  min-height: 52px;
}
.article-card h4.article-card__title:hover {
  color: var(--primary-lighten);
}
.article-card h4.article-card__title a {
  text-decoration: none;
  color: inherit;
}
.article-card p {
  padding: 0 15px;
  line-height: 18px;
  text-align: left;
}

.service-areas {
  padding-top: 6.4rem;
  padding-bottom: 9.6rem;
}
@media (min-width: 62em) {
  .service-areas {
    display: grid;
    gap: 1.6rem;
    grid-template-columns: 0.75fr 1fr;
  }
}
@media (max-width: 36em) {
  .service-areas {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.service-areas__content {
  margin-bottom: 1.6rem;
  position: relative;
}
@media (min-width: 62em) {
  .service-areas__content {
    margin-bottom: 0;
  }
}
.service-areas__content .line-title {
  margin: 1.6rem 0 2rem;
}
@media (max-width: 48em) {
  .service-areas__content .line-title {
    margin-top: 0;
  }
}
.service-areas__content p {
  line-height: 1.8rem;
}
.service-areas__content .btn-get-quote {
  position: absolute;
  bottom: 0;
  font-size: 17px;
  padding: 15px 45px;
}
@media (max-width: 48em) {
  .service-areas__content .btn-get-quote {
    position: static;
  }
}
@media (max-width: 36em) {
  .service-areas__content .btn-get-quote {
    width: 100%;
  }
}
.service-areas__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  font-size: 1.4rem;
  margin-top: 3.2rem;
  max-width: 82%;
}
@media (max-width: 36em) {
  .service-areas__list {
    max-width: 100%;
  }
}
.service-areas__list li {
  margin-bottom: 1rem;
}
.service-areas__list li a {
  color: #0F0A52;
  margin-left: 6px;
}
.service-areas__list li a:hover {
  text-shadow: 1px 0 0 currentColor;
}
.service-areas__map img {
  width: 100%;
  height: auto;
}
.service-areas h3 {
  font-size: 2.5rem;
}

.request-cta {
  padding-top: 7rem;
  padding-bottom: 7rem;
  text-align: center;
  background: #9093E3;
}
@media (min-width: 62em) {
  .request-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
}
.request-cta__text {
  margin-bottom: 1.6rem;
  text-align: left;
}
@media (min-width: 62em) {
  .request-cta__text {
    margin-bottom: 0;
    margin-right: 1.6rem;
  }
}
.request-cta__tel {
  font-weight: 700;
  font-size: 2.4rem;
  white-space: nowrap;
}
.request-cta__tel .icon {
  border-color: #0F0A52;
  stroke-opacity: 0;
}
.request-cta__btn {
  display: inline-flex;
  flex-direction: column;
  font-size: 2.4rem;
  border-radius: 4px;
  font-weight: 700;
}
.request-cta__btn small, .request-cta__btn .reviews__items .single-review, .reviews__items .request-cta__btn .single-review, .request-cta__btn .reviews__items header p, .reviews__items header .request-cta__btn p, .request-cta__btn label, .request-cta__btn cite, .request-cta__btn .form-get-quote__description span, .form-get-quote__description .request-cta__btn span, .request-cta__btn .our-reviews header p, .our-reviews header .request-cta__btn p, .request-cta__btn .review, .request-cta__btn .review__person-desc, .request-cta__btn .review__location, .request-cta__btn .service-card__content p, .service-card__content .request-cta__btn p, .request-cta__btn .reasons__block h6.reasons__block-title span:last-child, .reasons__block h6.reasons__block-title .request-cta__btn span:last-child, .request-cta__btn .reasons__block p, .reasons__block .request-cta__btn p {
  font-size: 1.6rem;
}
.request-cta .tel-wrapper {
  display: flex;
  flex-direction: column;
  width: 15em;
  margin-right: 7.5rem;
}
.request-cta h3 {
  text-align: left;
  font-size: 2.26rem;
}
.request-cta p {
  display: block;
  max-width: 400px;
  line-height: 2rem;
}

.faq {
  padding-top: 8.2rem;
  padding-bottom: 3.2rem;
  word-break: break-word;
}
.faq .line-title {
  text-align: left;
  font-size: 2.5rem;
}
.faq .line-title::before {
  margin-left: auto;
  margin-right: auto;
}
.faq__list {
  display: grid;
  gap: 1.6rem;
  list-style: none;
  counter-reset: faq-list;
  margin-top: 4.2rem;
}
.faq__list li {
  border-radius: 0.4rem;
}
.faq__title {
  margin-bottom: 0;
}
.faq__title button {
  border: 0;
  padding: 0;
  display: flex;
  text-align: left;
  background: transparent;
  width: 100%;
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
}
.faq__title button::before {
  counter-increment: faq-list;
  content: counters(faq-list, ".", decimal-leading-zero);
  margin-right: 1.6rem;
  color: var(--secondary);
  font-weight: 700;
  align-self: center;
  white-space: nowrap;
  font-size: 2rem !important;
}
.faq__title button:hover {
  color: var(--primary-lighten);
}
.faq__title button .icon {
  min-width: 15px;
}
.faq__title button svg {
  transform: rotate(270deg);
  margin-left: auto;
}
.faq__title button[aria-expanded=false] svg {
  color: var(--grey-400);
  transform: scale(1);
}
.faq__title button span {
  margin-left: auto;
}
.faq__content {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: max-height 250ms, visibility 250ms 250ms, opacity 250ms 250ms;
}
.faq__content[aria-hidden=false] {
  max-height: 90rem;
  overflow-y: auto;
  visibility: visible;
  opacity: 1;
  transition: max-height 250ms, visibility 0, opacity 0;
}
.faq__content-inner {
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  line-height: 1.8rem;
}

.my-carousel-progress-index::after {
  content: " / ";
  color: var(--white);
}

.primary-text .my-carousel-progress-index::after {
  content: " / ";
  color: var(--primary-alt);
}

.article-slider-desktop ul.splide__slide__row,
.article-slider-mobile ul.splide__slide__row {
  padding-left: 0;
}

/*
.article-slider-desktop, .article-slider-mobile{
    display: none;
}
*/
.js-blog-carousel {
  justify-content: center;
}

.article-slider-desktop {
  display: block;
  /*
  @include max(sm){
      display: none;
  }
  */
}

/*
.article-slider-mobile{
    display: none;
    @include max(sm){
        display: block;
    }
}
*/
.reviews-inline {
  padding-top: 128px;
  padding-bottom: 8rem;
}
@media (max-width: 36em) {
  .reviews-inline {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (max-width: 48em) {
  .reviews-inline-item__wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }
  .reviews-inline-item {
    margin: 15px !important;
    flex: 0 0 auto;
    max-width: calc(50% - 30px);
    width: calc(50% - 30px);
  }
}
.reviews-inline-item__wrapper {
  display: flex;
  justify-content: space-between;
}
.reviews-inline-item {
  display: flex;
  align-items: center;
}
.reviews-inline-item__icon-wrapper {
  width: 60px;
  height: 60px;
  position: relative;
  margin-right: 8px;
  flex: 1 1 60px;
  max-width: 60px;
}
.reviews-inline-item__content {
  line-height: 1.25;
  font-weight: 600;
}
.reviews-inline-item__subtitle {
  font-size: 24px;
  margin: 0;
}
.reviews-inline-item__title {
  font-size: 14px;
  white-space: nowrap;
  font-weight: 400;
}

.price .low {
  opacity: 0.4;
}
.price .middle {
  opacity: 0.7;
}
.price .blue {
  background: #66DCDC;
  fill: #66DCDC;
}
.price .green {
  background: #66CF66;
  fill: #66CF66;
}
.price .grey {
  background: #B3B3B3;
  fill: #B3B3B3;
}
.price-wrapper {
  display: grid;
  gap: 3.2rem;
  grid-template-columns: 0.75fr 1.25fr;
  justify-items: center;
  grid-template-areas: "desc items" "table table";
}
@media (max-width: 48em) {
  .price-wrapper {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "desc desc" "items items" "table table";
  }
}
.price-wrapper__description {
  grid-area: desc;
}
.price-wrapper__description .price-wrapper__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3.2rem;
}
.price-wrapper__description .price-wrapper__list li {
  padding-left: 4rem;
  position: relative;
  margin-bottom: 1.2rem;
  width: 48%;
}
@media (max-width: 48em) {
  .price-wrapper__description .price-wrapper__list li {
    width: 100%;
  }
}
.price-wrapper__description .price-wrapper__list li svg {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  width: 3.6rem;
  height: 3.6rem;
}
.price-wrapper__description .price-wrapper__list span {
  color: var(--primary-alt);
  font-size: 2rem;
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.3px;
  font-family: "Oswald", sans-serif;
  text-transform: capitalize;
}
.price-wrapper__items {
  grid-area: items;
  background: #fff;
  height: 100%;
  width: 100%;
}
.price-wrapper__items-block {
  display: flex;
  gap: 1.6rem;
  padding: 1.6rem;
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 48em) {
  .price-wrapper__items-block {
    flex-wrap: wrap;
    justify-content: space-around;
  }
}
@media (max-width: 36em) {
  .price-wrapper__items-block .price-wrapper-item {
    max-width: 47%;
  }
}
.price-wrapper__items-description {
  padding: 1.6rem;
}
.price-wrapper__items-description .decription-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.price-wrapper__items-description .decription-row .price-fill-box {
  display: flex;
  gap: 0;
}
.price-wrapper__items-description .decription-row .price-fill-box div {
  height: 10px;
  width: 20px;
}
.price-wrapper__items .price-wrapper-item__img {
  width: 200px;
  height: 100px;
}
@media (max-width: 36em) {
  .price-wrapper__items .price-wrapper-item__img {
    width: 100%;
    height: auto;
    min-height: 70px;
  }
}
.price-wrapper__items .price-wrapper-item__img img {
  object-fit: contain;
}
.price-wrapper__items .price-wrapper-item__title {
  margin-bottom: 1.6rem;
  text-align: center;
}
.price-wrapper__items .price-wrapper-item__list {
  padding: 0 20px;
}
@media (max-width: 36em) {
  .price-wrapper__items .price-wrapper-item__list {
    padding: 0;
  }
}
.price-wrapper__items .price-wrapper-item__list-item {
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.3px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
}
@media (max-width: 36em) {
  .price-wrapper__items .price-wrapper-item__list-item {
    font-size: 1.4rem;
  }
}
.price-wrapper__items .price-wrapper-item__list-item span {
  padding-left: 10px;
}
.price-wrapper__table {
  grid-area: table;
  width: 100%;
}
.price-wrapper__table tr,
.price-wrapper__table td {
  width: 25%;
  text-align: center;
}

.datepicker {
  width: 60%;
}
.datepicker .datepicker-view {
  width: 100%;
}
.datepicker .dow {
  height: 2.5rem;
  font-size: 1.2rem;
}
.datepicker .datepicker-controls .button {
  font-size: 1.2rem;
}
.datepicker span {
  color: var(--text);
}
.datepicker .datepicker-cell {
  height: 2.5rem;
}

.holders {
  padding: 60px 0 90px 0;
  width: 100%;
}
.holders__sect {
  display: flex;
  gap: 60px;
  flex-direction: column;
}
.holders__heading {
  display: flex;
  gap: 16px;
  flex-direction: column;
  align-items: center;
}
.holders__cta {
  border-radius: 12px;
  padding: 16px;
  border: 2px solid rgb(242, 242, 252);
  background: rgba(255, 255, 255, 0.75);
}
.holders__cta:hover {
  text-decoration: none;
}
.holders__cta span {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -1%;
  text-align: center;
  color: #464870;
  text-transform: none;
}
.holders__cta .icon {
  width: 28px;
  height: 28px;
  margin-right: 8px;
}
.holders__cta:hover {
  background: linear-gradient(0deg, var(--colors-light-purple-75, rgba(238, 237, 253, 0.75)), var(--colors-light-purple-75, rgba(238, 237, 253, 0.75))), linear-gradient(98.13deg, rgba(245, 244, 255, 0.25) -21.34%, rgba(227, 225, 251, 0.25) 111.39%);
}
.holders__title {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 60px;
  line-height: 120%;
  letter-spacing: -0.2px;
  vertical-align: middle;
  text-transform: uppercase;
}
.holders__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
}
.holders__item {
  border-radius: 1rem;
  background: var(--white);
  padding: 117px 32px 28px 32px !important;
  position: relative;
}
.holders__item-title {
  font-family: "Manrope";
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: -0.2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.holders__item-description {
  font-family: "Manrope";
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -1px;
}
.holders__item-icon {
  position: absolute;
  left: 32px;
  top: -20px;
  width: 105px;
  height: 105px;
  object-fit: contain;
  border-radius: 15px;
  border: 2px solid #F5F0FF;
  box-shadow: 0 0 0 0px white, 0 0 0 2px #F5F0FF;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.holders__item-icon img {
  height: 86px;
  width: 86px;
}
.holders .holders__heading.align-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.holders .holders__heading.align-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.holders .holders__heading.align-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.holders__title-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.holders__description {
  font-family: "Manrope";
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  color: rgb(70, 72, 112);
  width: 50%;
}

.holders__cta-link {
  height: 54px;
  padding: 19px 24px;
  font-family: "Manrope";
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.5px;
  vertical-align: middle;
  text-transform: uppercase;
  color: rgb(15, 10, 82);
  background: var(--Colors-White, rgb(255, 255, 255));
  border: 1px solid var(--Colors-Light-purple, rgb(238, 237, 253));
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  text-decoration: none;
  display: flex;
  width: fit-content;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 75em) {
  .holders {
    padding: 0 0 32px 0;
  }
  .holders__title {
    font-size: 56px;
  }
  .holders__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .holders__description {
    width: 70%;
  }
}
@media (max-width: 62em) {
  .holders__title {
    font-size: 48px;
  }
  .holders__heading {
    flex-direction: column;
    gap: 8px;
    align-items: start;
  }
  .holders__title-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .holders__description {
    width: 100%;
  }
}
@media (max-width: 48em) {
  .holders__sect {
    margin: 0 auto 64px;
  }
  .holders__title {
    font-size: 36px;
    letter-spacing: -1.1px;
  }
  .holders__list {
    grid-template-columns: 1fr;
  }
  .holders__item {
    padding: 72px 24px 24px 24px !important;
  }
  .holders__item-icon {
    width: 80px;
    height: 80px;
    left: 24px;
  }
  .holders__item-icon img {
    width: 65.5px;
    height: 65.5px;
  }
}
@media (max-width: 36em) {
  .holders__cta {
    padding: 12px;
  }
  .holders__cta span {
    font-family: "Manrope";
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.3px;
    text-align: center;
  }
  .holders__cta .icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }
  .holders__container {
    gap: 40px;
  }
  .holders__title {
    font-size: 28px;
    line-height: 150%;
    text-align: center;
    margin-bottom: 0;
  }
  .holders__item {
    padding: 72px 24px 24px 24px !important;
  }
  .holders__item-title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .holders__item-description {
    font-size: 14px;
  }
  .holders__item-icon {
    width: 80px;
    height: 80px;
    left: 24px;
  }
  .holders__item-icon img {
    width: 65.5px;
    height: 65.5px;
  }
  .holders__description {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.3px;
  }
  .holders__cta-link {
    width: 100%;
  }
}
.track {
  width: auto;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 90px 80px;
}
.track__cont {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}
.track__text {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 60px;
  line-height: 120%;
  letter-spacing: -0.2px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-100%);
  z-index: 3;
  position: relative;
  margin-bottom: 0;
}
.track__overlay {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary);
  z-index: 2;
  display: flex;
  justify-content: flex-end;
}
.track__overlay img {
  object-fit: contain;
  z-index: 6;
  margin-right: -80px;
}

@media (max-width: 75em) {
  .track__container {
    margin-left: 0;
  }
  .track__text {
    font-size: 44px;
  }
}
@media (max-width: 62em) {
  .track__text {
    font-size: 36px;
  }
}
@media (max-width: 48em) {
  .track__container {
    margin-left: 0;
  }
  .track__text {
    font-size: 24px;
  }
}
@media (max-width: 36em) {
  .track {
    padding: 48px 16px;
  }
  .track__container {
    padding: 0 0;
  }
  .track__text {
    font-size: 18px;
    margin-bottom: 0;
  }
  .track__overlay img {
    width: 150px;
  }
}
.reviews {
  width: 100%;
  margin: 0 auto;
}
.reviews .reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}
.reviews .reviews-header h2 {
  margin-bottom: 0;
}
.reviews__navigation {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}
.reviews__navigation-prev, .reviews__navigation-next {
  border-radius: 12px;
  background: var(--colors-white-50, rgba(255, 255, 255, 0.5019607843));
}
.reviews__navigation-prev svg, .reviews__navigation-next svg {
  display: none;
}
.reviews__navigation-prev:hover, .reviews__navigation-next:hover {
  box-shadow: 0px 4px 4px rgba(85, 37, 131, 0.1);
}
.reviews__navigation-prev {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.4853 10.1703H1.51472M1.51472 10.1703L10 1.68506M1.51472 10.1703L10 18.6556' stroke='%230F0A52' stroke-width='1.875' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.reviews__navigation-next {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.51472 10.1703H18.4853M18.4853 10.1703L10 1.68506M18.4853 10.1703L10 18.6556' stroke='%230F0A52' stroke-width='1.875' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.reviews__navigation__button {
  margin: 1.6rem 0 1.6rem auto;
}
.reviews__navigation__splide__arrows {
  width: 12px;
  height: 12px;
  border: 1.88px solid var(--Colors-Dark-blue, #0F0A52);
}
.reviews__items {
  max-width: 1440px;
  padding: 0;
  margin: 0 auto;
}
.reviews__items header {
  margin: 0 auto;
  display: flex;
}
@media (min-width: 375px) {
  .reviews__items header {
    max-width: 375px;
  }
}
@media (min-width: 576px) {
  .reviews__items header {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .reviews__items header {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .reviews__items header {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .reviews__items header {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .reviews__items header {
    max-width: 1312px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.reviews__items header h2 {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 60px;
  line-height: 120%;
  letter-spacing: -0.2px;
  vertical-align: middle;
  text-transform: uppercase;
}
.reviews__items header a {
  text-decoration: none;
  color: var(--primary-alt);
}
.reviews__items header p {
  opacity: 0.875;
}
.reviews__items .splide__track {
  padding-left: 16px !important;
}
.reviews__items .splide__slide {
  display: flex;
  flex-shrink: 1;
}
.reviews__items .single-review {
  display: flex;
  flex-direction: column;
  padding: 36px;
  border-radius: 16px;
  background: var(--Colors-White, rgb(255, 255, 255));
  width: 386px;
  height: 100%;
}
.reviews__items .single-review__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}
.reviews__items .single-review__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}
.reviews__items .single-review__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reviews__items .single-review__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.reviews__items .single-review__name {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 28px;
  line-height: 150%;
  letter-spacing: -0.1px;
  text-transform: uppercase;
  color: var(--primary);
}
.reviews__items .single-review__description {
  font-family: "Manrope";
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -3%;
  color: var(--Colors-Grey, rgb(70, 72, 112));
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
}
.reviews__items .single-review__rating {
  display: flex;
  align-items: center;
}
.reviews__items .single-review__rating-stars {
  --percent: calc(var(--rating) / 5 * 100%);
  display: inline-block;
  font-size: 24px;
  line-height: 1;
}
.reviews__items .single-review__rating-stars::before {
  content: "★★★★★";
  letter-spacing: 3px;
  background: linear-gradient(90deg, #fdb927 var(--percent), var(--grey-200) var(--percent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.reviews__items .single-review__rating-source {
  margin-left: 1.6rem;
}
.reviews__items .single-review__rating .icon {
  width: 24px;
  height: 24px;
}

.post-type-archive-reviews .reviews {
  padding: 0;
}
.post-type-archive-reviews .reviews .reviews__items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.post-type-archive-reviews .reviews__items .single-review,
.post-type-archive-reviews .reviews .reviews__items .single-review {
  width: 100%;
  height: auto;
}
.post-type-archive-reviews .reviews .reviews__items .single-review__description {
  -webkit-line-clamp: none !important;
}
.post-type-archive-reviews .reviews .reviews__items .single-review__description .truncated {
  max-height: 0;
  overflow: hidden;
  display: none;
  opacity: 0;
  transition: max-height 250ms, visibility 250ms 250ms, opacity 250ms 250ms;
}
.post-type-archive-reviews .reviews .reviews__items .single-review__description[aria-hidden=false] .truncated {
  max-height: none;
  overflow-y: auto;
  display: inline;
  opacity: 1;
  transition: max-height 250ms, visibility 0, opacity 0;
}
.post-type-archive-reviews .reviews .reviews__items .single-review__description[aria-hidden=false] .dots-readmore {
  display: none;
}
.post-type-archive-reviews .reviews .single-review__meta {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  align-items: center;
}
@media (max-width: 48em) {
  .post-type-archive-reviews .reviews .single-review__meta {
    gap: 10px;
    align-items: flex-start;
  }
}
.post-type-archive-reviews .reviews .single-review__meta > div {
  display: flex;
}
.post-type-archive-reviews .reviews .single-review__meta .key-value {
  display: flex;
  gap: 8px;
  align-items: center;
}
@media (max-width: 48em) {
  .post-type-archive-reviews .reviews .single-review__meta .key-value {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.post-type-archive-reviews .reviews .single-review__meta-manager {
  display: flex;
  gap: 8px;
}
@media (max-width: 48em) {
  .post-type-archive-reviews .reviews .single-review__meta-manager {
    flex-direction: row;
    gap: 8px;
  }
  .post-type-archive-reviews .reviews .single-review__meta-manager > span:last-child {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.post-type-archive-reviews .reviews .single-review__meta-key {
  color: #464870;
  font-size: 14px;
  font-weight: 400;
}
.post-type-archive-reviews .reviews .single-review__meta-value {
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 48em) {
  .post-type-archive-reviews .reviews .single-review__meta-value {
    font-size: 16px;
  }
}
.post-type-archive-reviews .reviews .single-review__meta-photo {
  display: block;
  width: 42px;
  min-width: 42px;
  height: 42px;
  border-radius: 42px;
  overflow: hidden;
}
.post-type-archive-reviews .reviews .single-review__meta .divider {
  background: #EEEDFD;
  width: 1px;
  height: 30px;
  align-self: center;
}

@media (max-width: 62em) {
  .reviews__items {
    padding: 65px 16px;
  }
  .reviews__items header h2 {
    font-size: 44px;
    line-height: 150%;
    letter-spacing: -0.9px;
  }
}
@media (max-width: 48em) {
  .reviews__items {
    padding: 65px 16px;
  }
  .reviews__items header h2 {
    font-size: 36px;
    line-height: 150%;
    letter-spacing: -0.9px;
  }
  .reviews__items .splide__track {
    height: 240px;
  }
  .reviews__items .single-review {
    padding: 16px;
    gap: 8px;
    width: 253px;
    height: 240px;
  }
  .reviews__items .single-review__avatar {
    width: 48px;
    height: 48px;
  }
  .reviews__items .single-review__name {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0%;
  }
  .reviews__items .single-review__description {
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 7;
  }
}
@media (max-width: 36em) {
  .reviews {
    padding: 64px 0;
  }
  .reviews__navigation {
    gap: 0px;
  }
  .reviews__navigation-prev, .reviews__navigation-next {
    width: 44px;
    height: 44px;
  }
  .reviews__navigation__button {
    margin: 1.6rem 0 1.6rem auto;
  }
  .reviews__navigation__splide__arrows {
    width: 12px;
    height: 12px;
    border: 1.88px solid var(--Colors-Dark-blue, #0F0A52);
  }
  .reviews__items {
    padding: 0;
  }
  .reviews__items header h2 {
    font-size: 28px;
    line-height: 150%;
    letter-spacing: -1.1%;
  }
  .reviews__items .splide__track {
    height: 243px;
  }
}
.textimage {
  padding-top: 60px;
}
@media (max-width: 62em) {
  .textimage {
    padding: 80px 36px;
  }
}
@media (max-width: 48em) {
  .textimage {
    padding: 72px 32px;
  }
}
@media (max-width: 36em) {
  .textimage {
    padding: 0;
  }
}
.textimage__cont {
  margin: 0 auto;
  display: flex;
  gap: 110px;
}
@media (max-width: 36em) {
  .textimage__cont {
    gap: 24px;
    padding: 64px 16px;
  }
}
.textimage__image-wrapper {
  width: 541px;
  height: 482px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
@media (max-width: 62em) {
  .textimage__image-wrapper {
    width: 100%;
    height: 100%;
    border: 1px solid 0;
  }
}
.textimage__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 36em) {
  .textimage__image img {
    object-fit: cover;
    height: 402px;
  }
}
.textimage__content {
  height: 482px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
}
@media (max-width: 75em) {
  .textimage__content {
    height: auto;
    gap: 16px;
  }
}
@media (max-width: 36em) {
  .textimage__content {
    gap: 8px;
  }
}
.textimage__title {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 60px;
  line-height: 120%;
  letter-spacing: -2.1px;
  vertical-align: middle;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media (max-width: 75em) {
  .textimage__title {
    font-size: 48px;
  }
}
@media (max-width: 62em) {
  .textimage__title {
    font-size: 36px;
  }
}
@media (max-width: 36em) {
  .textimage__title {
    font-size: 28px;
    line-height: 150%;
    letter-spacing: -0.1px;
  }
}
.textimage__text {
  font-family: "Manrope";
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.4px;
}
@media (max-width: 62em) {
  .textimage__text {
    font-size: 16px;
    letter-spacing: -0.7px;
  }
}
@media (max-width: 36em) {
  .textimage__text {
    font-size: 14px;
    line-height: 140%;
  }
  .textimage__text p:not(:first-of-type) {
    display: none;
  }
}
.textimage__text p {
  margin-bottom: 12px;
}
.textimage__button {
  align-self: start;
  font-family: "Manrope";
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.5px;
  vertical-align: middle;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  gap: 10px;
  background: var(--Colors-White, rgb(255, 255, 255));
  padding: 19px 24px;
  color: var(--Colors-Dark-blue, rgb(15, 10, 82));
  border-radius: 12px;
  border: 2px solid rgb(242, 242, 252);
  box-shadow: none;
}
.textimage__button svg path {
  stroke: var(--Colors-Dark-blue, rgb(15, 10, 82));
  fill: var(--Colors-Dark-blue, rgb(15, 10, 82));
}
.textimage__button:hover {
  background: linear-gradient(0deg, var(--colors-light-purple-75, rgba(238, 237, 253, 0.75)), var(--colors-light-purple-75, rgba(238, 237, 253, 0.75))), linear-gradient(98.13deg, rgba(245, 244, 255, 0.25) -21.34%, rgba(227, 225, 251, 0.25) 111.39%);
  color: var(--Colors-Dark-blue, rgb(15, 10, 82));
}
@media (max-width: 36em) {
  .textimage__button {
    display: flex;
    width: 100%;
    justify-content: center;
  }
}
.textimage .textimage-services--reverse .textimage-services__cont {
  flex-direction: row-reverse;
}
@media (max-width: 75em) {
  .textimage.orientation-column .textimage__cont {
    flex-direction: column;
    gap: 36px;
    align-items: center;
  }
}
@media (max-width: 75em) {
  .textimage.orientation-column-reverse .textimage__cont {
    flex-direction: column-reverse;
    gap: 36px;
    align-items: center;
  }
}

@media (max-width: 36em) {
  .block-padding {
    padding: 0;
  }
}
.featured-posts {
  background: url(../images/bgfp.png) no-repeat center;
}
@media (max-width: 36em) {
  .featured-posts {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.featured-posts .title-block {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.featured-posts .title-block .line-title {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 60px;
  line-height: 120%;
  letter-spacing: -0.02px;
  vertical-align: middle;
  text-transform: uppercase;
  color: rgb(15, 10, 82);
  margin-bottom: 36px;
}
@media (max-width: 36em) {
  .featured-posts .title-block .line-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -0.1px;
    text-align: center;
  }
}
.featured-posts .title-block .line-title::before {
  margin-left: auto;
  margin-right: auto;
}
.featured-posts .title-block .btn-title {
  font-family: "Manrope";
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.5px;
  vertical-align: middle;
  text-transform: uppercase;
  color: rgb(15, 10, 82);
  padding: 19px 24px;
  border: 1px solid var(--Colors-Light-purple, rgb(238, 237, 253));
  background: var(--Colors-White, rgb(255, 255, 255));
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
  border: 1px;
  border-radius: 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.featured-posts .title-block .btn-title:hover {
  background: linear-gradient(0deg, var(--colors-light-purple-75, rgba(238, 237, 253, 0.75)), var(--colors-light-purple-75, rgba(238, 237, 253, 0.75))), linear-gradient(98.13deg, rgba(245, 244, 255, 0.25) -21.34%, rgba(227, 225, 251, 0.25) 111.39%);
}
@media (max-width: 36em) {
  .featured-posts .title-block .btn-title {
    width: 100%;
  }
}
.featured-posts .title-block .btn-title svg {
  width: 16px;
  height: 17px;
}
.featured-posts__list {
  position: relative;
  margin-top: 60px;
  gap: 32px;
}
.featured-posts .featured-posts__arrows {
  display: flex;
  justify-content: end;
  margin-top: 24px;
  color: var(--border-input);
  left: auto;
  right: 0;
  gap: 12px;
}
@media (max-width: 36em) {
  .featured-posts .featured-posts__arrows {
    gap: 0;
  }
}
.featured-posts .featured-posts__arrows :hover {
  color: var(--primary-alt);
}
.featured-posts .featured-posts__arrows button {
  background: var(--colors-white-50, rgba(255, 255, 255, 0.5019607843));
  position: relative;
  top: auto;
  transform: none;
  border-radius: 12px;
}
@media (max-width: 36em) {
  .featured-posts .featured-posts__arrows button {
    width: 44px;
    height: 44px;
  }
}

.featured-article-card {
  text-align: center;
  padding: 16px;
  overflow: hidden;
  border-radius: 16px;
  height: 587px;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--colors-purple-5, rgba(144, 147, 227, 0.05));
  background: var(--Colors-White, rgb(255, 255, 255));
}
@media (max-width: 36em) {
  .featured-article-card {
    height: 468px;
  }
}
.featured-article-card .featured-icon {
  right: 32px;
  position: absolute;
  top: 32px;
  z-index: 9;
}
.featured-article-card .featured-icon svg {
  width: 48px;
  height: 48px;
}
.featured-article-card__img {
  margin-bottom: 1.6rem;
  border-radius: 16px;
  display: block;
  padding-bottom: 56.25%;
  height: 350px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 36em) {
  .featured-article-card__img {
    height: 280px;
  }
}
.featured-article-card__img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.featured-article-card__img::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  background-color: var(--primary-lighten);
  transition-property: opacity;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}
.featured-article-card__img:hover::after {
  opacity: 0.25;
}
.featured-article-card__title {
  font-family: "Manrope";
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: -1.1px;
  text-transform: uppercase;
  color: rgb(15, 10, 82);
  text-align: left;
}
@media (max-width: 36em) {
  .featured-article-card__title {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.featured-article-card__title:hover {
  color: var(--primary-lighten);
}
.featured-article-card__title a {
  text-decoration: none;
  color: inherit;
}
.featured-article-card__category {
  display: flex;
  margin-bottom: 16px;
}
.featured-article-card__category span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  color: rgb(144, 147, 227);
  background: linear-gradient(0deg, var(--colors-light-purple-75, rgba(238, 237, 253, 0.75)), var(--colors-light-purple-75, rgba(238, 237, 253, 0.75))), linear-gradient(98.13deg, rgba(245, 244, 255, 0.25) -21.34%, rgba(227, 225, 251, 0.25) 111.39%);
  border: 1px solid rgb(215, 212, 249);
  border-radius: 6px;
  font-family: "Manrope";
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: -0.5px;
  vertical-align: middle;
  text-transform: uppercase;
}
@media (max-width: 36em) {
  .featured-article-card__category {
    margin-bottom: 12px;
  }
  .featured-article-card__category span {
    text-transform: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.3px;
    vertical-align: middle;
  }
}
.featured-article-card__info {
  display: flex;
  gap: 16px;
  margin-top: auto;
}
.featured-article-card__info span {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0;
  color: rgba(70, 72, 112, 0.75);
}
@media (max-width: 36em) {
  .featured-article-card__info span {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.3px;
  }
}
.featured-article-card__info span:not(:last-child)::after {
  content: "•";
  position: absolute;
  font-size: 14px;
  margin-left: 4px;
}
.featured-article-card p {
  line-height: 18px;
  text-align: left;
}

.faq-section {
  margin: 0 auto;
}
@media (max-width: 36em) {
  .faq-section {
    padding: 32px 0;
  }
}
.faq-section__wrapper {
  display: grid;
  grid-template-columns: 650px auto;
  gap: 90px;
}
@media (max-width: 991.98px) {
  .faq-section__wrapper {
    gap: 24px;
  }
}
.faq-section .line-title {
  text-align: left;
  font-size: 40px;
}
@media (max-width: 1199.98px) {
  .faq-section .line-title {
    font-size: 36px;
  }
}
@media (max-width: 991.98px) {
  .faq-section .line-title {
    font-size: 30px;
  }
}
@media (max-width: 767.98px) {
  .faq-section .line-title {
    font-size: 24px;
  }
}
.faq-section::before {
  margin-left: auto;
  margin-right: auto;
}
.faq-section__list {
  display: grid;
  gap: 1.6rem;
  list-style: none;
  width: 650px;
}
.faq-section__list.fullwidth {
  width: 100%;
}
@media (max-width: 75em) {
  .faq-section__list {
    width: 100%;
  }
}
.faq-section__list li,
.faq-section__list article.faq-item {
  border-radius: 1.5rem;
  border: 2px solid #EEEDFD;
  padding: 24px;
  background: #ffffff;
}
@media (max-width: 36em) {
  .faq-section__list li,
  .faq-section__list article.faq-item {
    padding: 16px;
  }
}
.faq-section__title {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 60px;
  line-height: 120%;
  letter-spacing: -3.5px;
  vertical-align: middle;
  text-transform: uppercase;
  width: 100%;
  margin-bottom: 36px;
  margin-top: 24px;
  color: var(--Font-Heading, rgb(15, 10, 82));
}
@media (max-width: 1199.98px) {
  .faq-section__title {
    font-size: 48px;
  }
}
@media (max-width: 991.98px) {
  .faq-section__title {
    font-size: 36px;
  }
}
@media (max-width: 767.98px) {
  .faq-section__title {
    font-size: 24px;
    letter-spacing: 0;
  }
}
@media (max-width: 576px) {
  .faq-section__title {
    margin-bottom: 8px;
    font-size: 18px;
  }
}
.faq-section__subtitle {
  font-family: "Manrope";
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0;
  color: var(--Font-Body, rgb(70, 72, 112));
}
@media (max-width: 991.98px) {
  .faq-section__subtitle {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .faq-section__subtitle {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .faq-section__subtitle {
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.7px;
  }
}
.faq-section__link {
  margin-top: 36px;
  text-decoration: none;
  display: inline-block;
  padding-right: 24px;
  padding: 19px 24px;
  border-radius: 12px;
  border-width: 1px;
  background: var(--Colors-White, rgb(255, 255, 255));
  border: 1px solid var(--Colors-Light-purple, rgb(238, 237, 253));
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
  font-family: "Manrope";
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.5px;
  vertical-align: middle;
  text-transform: uppercase;
}
.faq-section__link:hover {
  background: linear-gradient(0deg, var(--colors-light-purple-75, rgba(238, 237, 253, 0.75)), var(--colors-light-purple-75, rgba(238, 237, 253, 0.75))), linear-gradient(98.13deg, rgba(245, 244, 255, 0.25) -21.34%, rgba(227, 225, 251, 0.25) 111.39%);
  color: rgb(15, 10, 82);
}
@media (max-width: 991.98px) {
  .faq-section__link {
    margin-top: 16px;
  }
}
@media (max-width: 567px) {
  .faq-section__link {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.faq-section__link svg {
  height: 18px;
  width: 23px;
}
.faq-section__button-link {
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-section__item-title {
  margin-bottom: 0;
}
.faq-section button {
  padding: 0;
  display: flex;
  align-items: center;
  text-align: left;
  background: transparent;
  width: 100%;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  border: none;
  font-family: "Manrope";
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: -1.1px;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media (max-width: 75em) {
  .faq-section button {
    font-size: 22px;
  }
}
@media (max-width: 36em) {
  .faq-section button {
    font-size: 21px;
  }
}
.faq-section button:hover {
  color: var(--primary-lighten);
}
.faq-section button .faq-icon {
  margin-left: auto;
  width: 42px;
  min-width: 42px;
  height: 42px;
  border-radius: 9.6px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.faq-section button .faq-icon .icon {
  width: auto;
  height: auto;
}
.faq-section button svg {
  margin-left: auto;
}
.faq-section button .faq-icon-plus,
.faq-section button .faq-icon-minus {
  display: flex;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  position: absolute;
}
.faq-section button .faq-icon-minus {
  opacity: 0;
  transform: rotate(-90deg);
}
.faq-section button[aria-expanded=true] .faq-icon-plus {
  opacity: 0;
  transform: rotate(90deg);
}
.faq-section button[aria-expanded=true] .faq-icon-minus {
  opacity: 1;
  transform: rotate(0);
}
.faq-section .faq-section__content-inner {
  font-family: "Manrope";
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.3px;
}
.faq-section__content {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: max-height 250ms, visibility 250ms 250ms, opacity 250ms 250ms;
}
.faq-section__content[aria-hidden=false] {
  max-height: 550px;
  overflow-y: auto;
  visibility: visible;
  opacity: 1;
  transition: max-height 250ms, visibility 0, opacity 0;
}
.faq-section__content-inner {
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  line-height: 1.8rem;
}
.faq-section .faq-section__top-button {
  border: 2px solid var(--colors-light-purple-75, rgba(238, 237, 253, 0.75));
  background: var(--colors-white-75, rgba(255, 255, 255, 0.75));
  text-decoration: none;
  height: 56px;
  padding: 12px 16px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
}
.faq-section .faq-section__top-button .faq-section__top-button-link {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3px;
  text-align: center;
  align-items: center;
  gap: 8px;
  display: flex;
  align-items: center;
  color: rgb(70, 72, 112);
}
.faq-section .faq-section__top-button .faq-section__top-button-link svg {
  width: 25px;
  height: 25px;
}
.faq-section .faq-section__top-button:hover {
  background: var(--Colors-Medium-purple, rgb(215, 212, 249));
}

@media (max-width: 36em) {
  .faq-section__list {
    gap: 8px;
  }
}
.faq-section__wrapper {
  display: flex;
  gap: 90px;
}
@media (max-width: 1199.98px) {
  .faq-section__wrapper {
    flex-direction: column;
    gap: 60px;
  }
}

@media (max-width: 1199.98px) {
  .faq-layout--left .faq-section__wrapper {
    flex-direction: column-reverse;
  }
}

.faq-section__wrapper {
  display: flex;
  gap: 90px;
}
@media (max-width: 1199.98px) {
  .faq-section__wrapper {
    flex-direction: column;
    gap: 60px;
  }
}

@media (max-width: 1199.98px) {
  .faq-section__wrapper.faq-layout--left {
    flex-direction: column-reverse;
  }
}

.easy-when-section {
  width: 100%;
  max-width: 1440px;
  padding: 100px 0;
  margin: 0 auto;
}
.easy-when-section__wrapper {
  display: grid;
  grid-template-columns: auto 650px;
  gap: 90px;
}
@media (max-width: 1199.98px) {
  .easy-when-section__wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
}
@media (max-width: 991.98px) {
  .easy-when-section__wrapper {
    gap: 24px;
  }
}
.easy-when-section .line-title {
  text-align: left;
  font-size: 40px;
}
@media (max-width: 1199.98px) {
  .easy-when-section .line-title {
    font-size: 36px;
  }
}
@media (max-width: 991.98px) {
  .easy-when-section .line-title {
    font-size: 30px;
  }
}
@media (max-width: 767.98px) {
  .easy-when-section .line-title {
    font-size: 24px;
  }
}
.easy-when-section::before {
  margin-left: auto;
  margin-right: auto;
}
.easy-when-section__list {
  display: grid;
  gap: 1.6rem;
  list-style: none;
  gap: 16px;
}
.easy-when-section__list li {
  border-radius: 12px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.75);
  border: 2px solid rgb(242, 242, 252);
}
@media (max-width: 576px) {
  .easy-when-section__list li {
    padding: 18px 16px;
  }
}
.easy-when-section__title {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 60px;
  line-height: 120%;
  letter-spacing: -1.5px;
  vertical-align: middle;
  text-transform: uppercase;
  width: 100%;
  margin-bottom: 24px;
  color: var(--Font-Heading, rgb(15, 10, 82));
}
@media (max-width: 1199.98px) {
  .easy-when-section__title {
    font-size: 48px;
  }
}
@media (max-width: 991.98px) {
  .easy-when-section__title {
    font-size: 36px;
  }
}
@media (max-width: 767.98px) {
  .easy-when-section__title {
    font-size: 24px;
    letter-spacing: 0;
  }
}
@media (max-width: 576px) {
  .easy-when-section__title {
    margin-bottom: 8px;
    font-size: 28px;
  }
}
.easy-when-section__subtitle {
  font-family: "Manrope";
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0;
  color: var(--Font-Body, rgb(70, 72, 112));
}
@media (max-width: 991.98px) {
  .easy-when-section__subtitle {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .easy-when-section__subtitle {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .easy-when-section__subtitle {
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.7px;
  }
}
.easy-when-section__link {
  margin-bottom: 24px;
  text-decoration: none;
  display: inline-block;
  padding-right: 24px;
  padding: 16px;
  border-radius: 12px;
  border-width: 1px;
  background: var(--Colors-White, rgb(255, 255, 255));
  border: 1px solid var(--Colors-Light-purple, rgb(238, 237, 253));
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
  font-family: "Manrope";
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  text-align: center;
}
@media (max-width: 991.98px) {
  .easy-when-section__link {
    margin-top: 16px;
  }
}
@media (max-width: 567px) {
  .easy-when-section__link {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    overflow: hidden;
    white-space: nowrap;
    width: 127px;
    display: flex;
    gap: 1px;
    padding: 9px 4px;
  }
}
.easy-when-section__link svg {
  height: 25px;
  width: 25px;
}
.easy-when-section__button-link {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 567px) {
  .easy-when-section__button-link {
    gap: 1px;
  }
}
.easy-when-section__item-title {
  margin-bottom: 0;
}
.easy-when-section button {
  padding: 0;
  display: flex;
  align-items: center;
  text-align: left;
  background: transparent;
  width: 100%;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  border: none;
  font-family: "Manrope";
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: -1.1px;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media (max-width: 1199.98px) {
  .easy-when-section button {
    font-size: 22px;
  }
}
@media (max-width: 991.98px) {
  .easy-when-section button {
    font-size: 20px;
  }
}
@media (max-width: 767.98px) {
  .easy-when-section button {
    font-size: 18px;
  }
}
.easy-when-section button:hover {
  color: var(--primary-lighten);
}
.easy-when-section button .faq-icon {
  margin-left: auto;
  width: 42px;
  height: 42px;
  border-radius: 9.6px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.easy-when-section button .faq-icon .icon {
  width: auto;
  height: auto;
}
.easy-when-section button svg {
  margin-left: auto;
}
.easy-when-section button .faq-icon-plus,
.easy-when-section button .faq-icon-minus {
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  position: absolute;
}
.easy-when-section button .faq-icon-minus {
  opacity: 0;
  transform: rotate(-90deg);
}
.easy-when-section button[aria-expanded=true] .faq-icon-plus {
  opacity: 0;
  transform: rotate(90deg);
}
.easy-when-section button[aria-expanded=true] .faq-icon-minus {
  opacity: 1;
  transform: rotate(0);
}
.easy-when-section__content {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: max-height 250ms, visibility 250ms 250ms, opacity 250ms 250ms;
}
.easy-when-section__content[aria-hidden=false] {
  max-height: 90rem;
  overflow-y: auto;
  visibility: visible;
  opacity: 1;
  transition: max-height 250ms, visibility 0, opacity 0;
}
.easy-when-section__content-inner {
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  line-height: 1.8rem;
}

.easy-when-subtitles {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 62em) {
  .easy-when-section {
    padding: 80px 40px;
  }
}
@media (max-width: 48em) {
  .easy-when-section {
    padding: 48px 32px;
  }
}
@media (max-width: 36em) {
  .easy-when-section {
    padding: 0;
  }
}
.smart-compare-section {
  padding: 90px 16px 120px;
}
.smart-compare-section__heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.smart-compare-section__cta {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.1px;
  text-align: center;
  text-transform: none;
  height: 56px;
  color: rgb(70, 72, 112);
  background: rgba(255, 255, 255, 0.75);
  border: 2px solid rgb(242, 242, 252);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  gap: 8px;
}
.smart-compare-section__cta svg {
  width: 24px;
  height: 24px;
}
.smart-compare-section__title {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 60px;
  line-height: 120%;
  letter-spacing: -0.2px;
  vertical-align: middle;
  text-transform: uppercase;
  margin-bottom: 0;
}
.smart-compare-section__description {
  font-family: "Manrope";
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
  width: 45%;
}
.smart-compare-section__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
}
.smart-compare-section .smart-compare-section__wrapper {
  scrollbar-width: thin;
  scrollbar-color: #c1c1c1 transparent;
}
.smart-compare-section .smart-compare-section__wrapper::-webkit-scrollbar {
  height: 6px;
}
.smart-compare-section .smart-compare-section__wrapper::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px;
}
.smart-compare-section__company {
  background: var(--white);
  padding: 16px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.smart-compare-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 1.6rem;
}
.smart-compare-section__grid-item {
  padding: 36px;
  text-align: left;
  border-radius: 24px;
  background: var(--Colors-Light-purple, rgb(238, 237, 253));
}
.smart-compare-section__grid-item.company-description {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.smart-compare-section__grid-item.company-description .company-description-text {
  font-family: "Manrope";
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0;
  vertical-align: middle;
  color: rgba(70, 72, 112, 0.5);
}
.smart-compare-section__grid-item.company-description .company-description-price-range {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 48px;
  line-height: 150%;
  letter-spacing: -1.1px;
  vertical-align: middle;
  color: rgb(15, 10, 82);
  margin-bottom: 24px;
}
.smart-compare-section__grid-item.service {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.smart-compare-section__grid-item.service .service-title {
  color: rgba(70, 72, 112, 0.5);
  font-family: "Manrope";
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
}
.smart-compare-section__grid-item.service .service-rate {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 28px;
  line-height: 150%;
  letter-spacing: -2.1px;
  vertical-align: middle;
  text-transform: uppercase;
  color: rgb(15, 10, 82);
  margin-bottom: 4px;
}
.smart-compare-section__grid-item.service .service-add-cost {
  font-family: "Manrope";
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: -1.9px;
  text-transform: uppercase;
  color: rgb(15, 10, 82);
}
.smart-compare-section__grid-item.total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.smart-compare-section__grid-item.total .total-description {
  max-width: 40%;
  font-family: "Manrope";
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: var(--colors-grey-50, rgba(70, 72, 112, 0.5));
}
.smart-compare-section__grid-item.total .total-final {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 48px;
  line-height: 150%;
  letter-spacing: -1.1px;
  vertical-align: middle;
}
.smart-compare-section .smart-compare-section__grid-item.service .service-info-bottom-image {
  display: flex;
  justify-content: center;
}
.smart-compare-section__company-label {
  border: 2px solid #EEEDFD;
  padding: 1.4rem 2rem;
  display: flex;
  max-width: fit-content;
  color: #464870;
  font-size: 2.1rem;
  font-family: "Manrope";
  font-weight: 500;
  font-size: 21px;
  line-height: 30.86px;
  letter-spacing: -1px;
  color: rgb(70, 72, 112);
  border-radius: 15px;
  padding: 20px;
  border: 2.57px solid var(--colors-light-purple-75, rgba(238, 237, 253, 0.75));
  background: var(--colors-white-75, rgba(255, 255, 255, 0.75));
}
.smart-compare-section__company-label img {
  margin-right: 1rem;
}
.smart-compare-section__company:first-child .smart-compare-section__grid-item {
  background: #EEEDFD;
}
.smart-compare-section__grid-item.full-width {
  grid-column: span 2;
}
.smart-compare-section__grid-item.service {
  height: 390px;
}

@media (max-width: 75em) {
  .smart-compare-section__grid-item.company-description .company-description-text {
    font-weight: 400;
    margin-top: 76px;
  }
  .smart-compare-section__grid-item.company-description .company-description-price-range {
    font-weight: 500;
    font-size: 28px;
  }
  .smart-compare-section__company-label {
    margin: 10px 0 0 16px;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: -0.3px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 54px;
  }
  .smart-compare-section__company-label img {
    width: 24px;
    height: 24px;
    margin-right: 0;
  }
  .smart-compare-section__grid-item {
    padding: 16px;
  }
  .smart-compare-section__grid-item.service .service-title {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.3px;
  }
  .smart-compare-section__grid-item.service .service-rate {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: -0.3px;
  }
  .smart-compare-section__grid-item.service .service-add-cost {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: -0.3px;
  }
  .smart-compare-section__grid-item.total {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
  }
  .smart-compare-section__grid-item.total .total-description {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.3px;
  }
  .smart-compare-section__grid-item.total .total-final {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
  }
  .smart-compare-section__wrapper {
    gap: 16px;
    padding: 40px 16px;
    position: relative;
  }
  .company-description-image img {
    /* border: 1px solid red; */
    margin-top: 54px;
  }
  .smart-compare-section__company {
    flex: 0 0 75%;
    scroll-snap-align: start;
    border-radius: 24px;
    overflow: hidden;
  }
  .slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 8px;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
  }
  .slider-nav button {
    background: white;
    border: none;
    font-size: 24px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    pointer-events: all;
  }
}
@media (max-width: 62em) {
  .smart-compare-section__title {
    font-size: 48px;
  }
  .smart-compare-section__description {
    width: 100%;
  }
  .smart-compare-section__wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
}
@media (max-width: 48em) {
  .smart-compare-section__heading {
    align-items: flex-start;
  }
  .smart-compare-section__title {
    font-size: 36px;
  }
  .smart-compare-section__description {
    text-align: left;
  }
}
@media (max-width: 36em) {
  .smart-compare-section__wrapper {
    padding: 64px 0;
  }
  .smart-compare-section__grid {
    gap: 16px;
  }
  .smart-compare-section__grid-item.company-description .company-description-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
    margin-top: 0;
  }
  .smart-compare-section__grid-item.company-description .company-description-price-range {
    font-weight: 500;
    font-size: 28px;
  }
  .smart-compare-section__grid-item.total {
    justify-content: space-between;
  }
  .smart-compare-section__grid-item.total .total-description {
    max-width: 48%;
  }
  .smart-compare-section__company-label {
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: -0.3px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 54px;
  }
  .smart-compare-section__company-label img {
    width: 24px;
    height: 24px;
    margin-right: 0;
  }
  .smart-compare-section__grid-item {
    padding: 16px;
  }
  .smart-compare-section__heading {
    align-items: flex-start;
  }
  .smart-compare-section__cta {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.3px;
    text-align: center;
  }
  .smart-compare-section__cta svg {
    width: 22px;
    height: 22px;
  }
  .smart-compare-section__title {
    font-size: 28px;
  }
  .smart-compare-section__description {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.3px;
  }
  .company-description-image img,
  .smart-compare-section__grid-item-image img {
    padding: 0;
    height: 195px;
    width: 193px;
    object-fit: contain;
    display: block;
    position: relative;
    right: 34px;
    scale: 1.3;
  }
  .smart-compare-section__grid-item.service {
    height: 214px;
  }
  .smart-compare-section__grid-item.service .service-rate {
    text-transform: none;
    letter-spacing: -0.7px;
  }
  .smart-compare-section__grid-item.service .service-add-cost {
    text-transform: none;
    letter-spacing: -0.7px;
    font-size: 14px;
  }
  .smart-compare-section__grid-item.service .service-info-bottom-image {
    display: flex;
    justify-content: center;
  }
  .smart-compare-section__grid-item.service .service-info-bottom-image img {
    position: relative;
    width: 99px;
  }
  .smart-compare-section__grid-item .total {
    display: none;
  }
  .compare-overlay-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0;
  }
  .company-layer.base {
    position: relative;
    z-index: 1;
  }
  .company-layer.overlay {
    position: absolute;
    z-index: 2;
    pointer-events: none;
  }
  .company-layer.overlay .clip-inner {
    height: 100%;
    width: 100%;
    clip-path: inset(0 0 0 50%);
    transition: clip-path 0.3s ease;
  }
  #sliderHandle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 10px;
    height: 100%;
    background: white;
    z-index: 3;
    cursor: ew-resize;
  }
  #sliderHandle::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 59px;
    background: none;
    background-image: url('data:image/svg+xml,%3Csvg width="58" height="59" viewBox="0 0 58 59" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cg filter="url(%23filter0_d_2148_16598)"%3E%3Crect x="5" y="4.35596" width="48" height="48" rx="24" fill="white" shape-rendering="crispEdges" /%3E%3Crect x="6" y="5.35596" width="46" height="46" rx="23" stroke="%23EEEDFD" stroke-opacity="0.75" stroke-width="2" shape-rendering="crispEdges" /%3E%3Cpath d="M22.7573 32.5985L18.5147 28.3559L22.7573 24.1132" stroke="%23464870" stroke-width="0.9375" stroke-linecap="square" stroke-linejoin="round" /%3E%3Cpath d="M35.2427 32.5985L39.4853 28.3559L35.2427 24.1132" stroke="%23464870" stroke-width="0.9375" stroke-linecap="square" stroke-linejoin="round" /%3E%3C/g%3E%3Cdefs%3E%3Cfilter id="filter0_d_2148_16598" x="0" y="0.355957" width="58" height="58" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix" /%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha" /%3E%3CfeOffset dy="1" /%3E%3CfeGaussianBlur stdDeviation="2.5" /%3E%3CfeComposite in2="hardAlpha" operator="out" /%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0" /%3E%3CfeBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2148_16598" /%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2148_16598" result="shape" /%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E');
    background-size: cover;
  }
}
.service-area-section {
  padding: 48px 0;
}
.service-area-section__wrapper {
  margin: 0 auto;
  display: flex;
  gap: 73px;
  padding: 44px 42px;
  border-radius: 0 0 48px 48px;
  background: linear-gradient(to top, rgba(145, 136, 210, 0.3), rgba(255, 255, 255, 0.1));
}
.service-area-section__wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.service-area-section__image {
  max-width: 100%;
  height: auto;
}
.service-area-section__info {
  width: 500px;
}
.service-area-section__title {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 60px;
  line-height: 120%;
  letter-spacing: -0.2px;
  vertical-align: middle;
  text-transform: uppercase;
  color: var(--Font-Body, rgb(70, 72, 112));
}
.service-area-section__description {
  font-family: "Manrope";
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #464870;
}
.service-area-section__btn {
  text-decoration: none;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 19px 24px;
  font-family: "Manrope";
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  border-radius: 12px;
  color: var(--Colors-Dark-blue, rgb(15, 10, 82));
  background: var(--Colors-White, rgb(255, 255, 255));
  border: 1px solid var(--Colors-Light-purple, rgb(238, 237, 253));
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}
.service-area-section__btn:hover {
  background: linear-gradient(0deg, var(--colors-light-purple-75, rgba(238, 237, 253, 0.75)), var(--colors-light-purple-75, rgba(238, 237, 253, 0.75))), linear-gradient(98.13deg, rgba(245, 244, 255, 0.25) -21.34%, rgba(227, 225, 251, 0.25) 111.39%);
  text-decoration: none;
}

@media (max-width: 75em) {
  .service-area-section__wrapper {
    flex-direction: column-reverse;
    align-items: center;
  }
  .service-area-section__info {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}
@media (max-width: 62em) {
  .service-area-section__title {
    font-size: 48px;
  }
  .service-area-section__description {
    font-size: 16px;
  }
  .service-area-section__info {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}
@media (max-width: 48em) {
  .service-area-section__wrapper {
    padding: 32px;
  }
  .service-area-section__title {
    font-size: 36px;
  }
  .service-area-section__description {
    font-size: 16px;
  }
  .service-area-section__info {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}
@media (max-width: 36em) {
  .service-area-section {
    padding: 64px 16px;
  }
  .service-area-section .car-service-class {
    display: none;
  }
  .service-area-section__wrapper {
    padding: 24px 0 48px;
    gap: 24px;
  }
  .service-area-section__title {
    font-size: 28px;
    line-height: 150%;
    letter-spacing: -1.1%;
  }
  .service-area-section__description {
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.3px;
  }
  .service-area-section__info {
    padding: 16px 16px 0;
  }
  .service-area-section__btn {
    width: 100%;
    margin-top: 16px;
    justify-content: center;
  }
}
.our-clients-redesign {
  margin: 0 auto;
}
.our-clients-redesign__heading {
  display: flex;
  gap: 16px;
  flex-direction: column;
  align-items: center;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}
.our-clients-redesign__cta {
  background: #fff;
  border-radius: 12px;
  border: 2px solid rgb(242, 242, 252);
  color: #464870;
  text-decoration: none;
  font-family: "Manrope";
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.1px;
  text-align: center;
  padding: 16px;
  text-transform: none;
  display: flex;
  gap: 8px;
  height: 56px;
}
.our-clients-redesign__cta:hover {
  background: linear-gradient(0deg, var(--colors-light-purple-75, rgba(238, 237, 253, 0.75)), var(--colors-light-purple-75, rgba(238, 237, 253, 0.75))), linear-gradient(98.13deg, rgba(245, 244, 255, 0.25) -21.34%, rgba(227, 225, 251, 0.25) 111.39%);
  text-decoration: none;
}
.our-clients-redesign__cta .icon {
  width: 16px;
  height: 19px;
}
.our-clients-redesign__title {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 60px;
  line-height: 120%;
  letter-spacing: -2.1px;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  width: 50%;
}
.our-clients-redesign__description {
  font-family: "Manrope";
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  color: rgb(15, 10, 82);
  width: 50%;
  text-transform: none;
}
.our-clients-redesign__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 32px;
}
.our-clients-redesign__block {
  background: #F3F2F8;
  border: 2px solid #EEEDFD;
  border-radius: 2.4rem;
  padding: 3.2rem 3.2rem 1rem;
  overflow: hidden;
}
.our-clients-redesign__block h3 {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 28px;
  line-height: 150%;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: rgb(15, 10, 82);
}
.our-clients-redesign__block a {
  text-decoration: none;
}
.our-clients-redesign__block-logos {
  margin: 38.4px -51.2px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 19px 8px;
  justify-content: space-between;
  height: 130px;
}
.our-clients-redesign__block-image {
  height: auto;
  mix-blend-mode: darken;
  opacity: 0.5;
}
.our-clients-redesign__block-image img {
  max-height: 100%;
  width: auto;
}
.our-clients-redesign__block-digits {
  height: 160px;
  position: relative;
  margin: 9.4px -51.2px;
  overflow: hidden;
}
.our-clients-redesign__block-digits .icon.pin-star {
  width: 211px;
  height: 213px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.our-clients-redesign__block-digits-component {
  position: absolute;
  background: var(--white);
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
}
.our-clients-redesign__block-digits-component:nth-of-type(1) {
  left: 30%;
  top: 26%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  overflow: hidden;
  height: 16.8px;
}
.our-clients-redesign__block-digits-component:nth-of-type(1) span {
  height: auto;
}
.our-clients-redesign__block-digits-component:nth-of-type(1) img {
  height: 10.11px;
  width: 10.11px;
}
.our-clients-redesign__block-digits-component:nth-of-type(1) .our-clients-redesign__block-digits-value {
  font-family: "Gilroy";
  font-weight: 500;
  font-size: 5.9px;
  line-height: 9.44px;
  letter-spacing: -0.13px;
  text-align: center;
  vertical-align: middle;
  color: rgb(15, 10, 82);
}
.our-clients-redesign__block-digits-component:nth-of-type(1) .our-clients-redesign__block-digits-description {
  font-weight: 500;
  font-size: 5.9px;
  line-height: 9.44px;
  letter-spacing: -0.13px;
  vertical-align: middle;
  color: rgba(13, 7, 90, 0.75);
}
.our-clients-redesign__block-digits-component:nth-of-type(2) {
  right: -15%;
  top: 8%;
  overflow: hidden;
  height: 20.8px;
}
.our-clients-redesign__block-digits-component:nth-of-type(2) img {
  height: 12.5px;
  width: 10.75px;
}
.our-clients-redesign__block-digits-component:nth-of-type(2) .our-clients-redesign__block-digits-value {
  font-family: "Gilroy";
  font-weight: 500;
  font-size: 6.27px;
  line-height: 10.03px;
  letter-spacing: -0.14px;
  text-align: center;
  vertical-align: middle;
  color: rgb(15, 10, 82);
}
.our-clients-redesign__block-digits-component:nth-of-type(2) .our-clients-redesign__block-digits-description {
  font-family: "Gilroy";
  font-weight: 500;
  font-size: 6.27px;
  line-height: 10.03px;
  letter-spacing: -0.14px;
  vertical-align: middle;
  color: rgba(13, 7, 90, 0.75);
}
.our-clients-redesign__block-digits-component:nth-of-type(3) {
  left: 55%;
  bottom: 0;
  padding: 5px 4px;
  height: 24px;
}
.our-clients-redesign__block-digits-component:nth-of-type(3) img {
  height: 8.9px;
  width: 8.9px;
}
.our-clients-redesign__block-digits-component:nth-of-type(3) .our-clients-redesign__block-digits-value {
  font-family: "Gilroy";
  font-weight: 500;
  font-size: 5.22px;
  line-height: 8.35px;
  letter-spacing: -0.12px;
  text-align: center;
  vertical-align: middle;
  color: rgb(15, 10, 82);
}
.our-clients-redesign__block-digits-component:nth-of-type(3) .our-clients-redesign__block-digits-description {
  font-family: "Gilroy";
  font-weight: 500;
  font-size: 5.22px;
  line-height: 8.35px;
  letter-spacing: -0.12px;
  vertical-align: middle;
  color: rgba(13, 7, 90, 0.75);
}
.our-clients-redesign__block-digits-component:nth-of-type(4) {
  display: none !important;
}
.our-clients-redesign__block-digits-component:nth-of-type(5) {
  left: -5px;
  top: 12%;
  height: 32px;
  border-radius: 6px;
  opacity: 50%;
  padding: 12px 9px;
}
.our-clients-redesign__block-digits-component:nth-of-type(5) img {
  width: 16px;
  height: 15px;
}
.our-clients-redesign__block-digits-component:nth-of-type(5) .our-clients-redesign__block-digits-value {
  font-family: "Gilroy";
  font-weight: 500;
  font-size: 11.23px;
  line-height: 17.97px;
  letter-spacing: -0.26px;
  text-align: center;
  vertical-align: middle;
  color: rgb(15, 10, 82);
}
.our-clients-redesign__block-digits-component:nth-of-type(5) .our-clients-redesign__block-digits-description {
  font-weight: 500;
  font-size: 11.23px;
  line-height: 17.97px;
  letter-spacing: -0.26px;
  vertical-align: middle;
  color: rgba(13, 7, 90, 0.75);
}
.our-clients-redesign__block-digits-component:nth-of-type(6) {
  left: 5%;
  bottom: 5%;
  height: 40px;
  opacity: 80%;
  padding: 16px 12px;
}
.our-clients-redesign__block-digits-component:nth-of-type(6) img {
  width: 24px;
  height: 27px;
}
.our-clients-redesign__block-digits-component:nth-of-type(6) .our-clients-redesign__block-digits-value {
  font-family: "Gilroy";
  font-weight: 500;
  font-size: 14px;
  line-height: 22.4px;
  letter-spacing: -0.32px;
  text-align: center;
  vertical-align: middle;
  color: rgb(15, 10, 82);
}
.our-clients-redesign__block-digits-component:nth-of-type(6) .our-clients-redesign__block-digits-description {
  font-weight: 500;
  font-size: 14px;
  line-height: 22.4px;
  letter-spacing: -0.32px;
  vertical-align: middle;
  color: rgba(13, 7, 90, 0.75);
}
.our-clients-redesign__block-digits-component:nth-of-type(7) {
  right: 0;
  bottom: 30%;
  height: 33px;
  opacity: 70%;
  padding: 13px 10px;
  border-radius: 6.6px;
}
.our-clients-redesign__block-digits-component:nth-of-type(7) img {
  width: 20px;
  height: 20px;
}
.our-clients-redesign__block-digits-component:nth-of-type(7) .our-clients-redesign__block-digits-value {
  font-family: "Gilroy";
  font-weight: 500;
  font-size: 11.71px;
  line-height: 18.73px;
  letter-spacing: -0.27px;
  text-align: center;
  vertical-align: middle;
  color: rgb(15, 10, 82);
}
.our-clients-redesign__block-digits-component:nth-of-type(7) .our-clients-redesign__block-digits-description {
  font-weight: 500;
  font-size: 11.71px;
  line-height: 18.73px;
  letter-spacing: -0.27px;
  vertical-align: middle;
  color: rgba(13, 7, 90, 0.75);
}
.our-clients-redesign__block-digits-component:nth-of-type(8) {
  left: 54%;
  top: 14%;
  height: 29.5px;
  border-radius: 5.9px;
  padding: 11.8px 8.5px;
  opacity: 80%;
}
.our-clients-redesign__block-digits-component:nth-of-type(8) img {
  width: 17.7px;
  height: 17.7px;
}
.our-clients-redesign__block-digits-component:nth-of-type(8) .our-clients-redesign__block-digits-value {
  font-family: "Gilroy";
  font-weight: 500;
  font-size: 10.32px;
  line-height: 16.52px;
  letter-spacing: -0.24px;
  text-align: center;
  vertical-align: middle;
  color: rgb(15, 10, 82);
}
.our-clients-redesign__block-digits-component:nth-of-type(8) .our-clients-redesign__block-digits-description {
  font-weight: 500;
  font-size: 10.32px;
  line-height: 16.52px;
  letter-spacing: -0.24px;
  vertical-align: middle;
  color: rgba(13, 7, 90, 0.75);
}
.our-clients-redesign__block-digits-icon {
  height: 40px;
  margin-right: 9.6px;
  display: block;
}
.our-clients-redesign__block-digits-icon img {
  height: 27px;
  width: 24px;
}
.our-clients-redesign__block-digits-value {
  font-family: "Gilroy";
  font-weight: 500;
  font-size: 14px;
  line-height: 22.4px;
  letter-spacing: -0.32px;
  text-align: center;
  vertical-align: middle;
  color: rgb(15, 10, 82);
}
.our-clients-redesign__block-digits-description {
  color: rgba(13, 7, 90, 0.75);
  font-weight: 500;
  font-size: 14px;
  line-height: 22.4px;
  letter-spacing: -0.32px;
  vertical-align: middle;
}
.our-clients-redesign__block-digits-component.blured {
  filter: blur(2px);
  position: absolute;
  background: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: 0.3rem;
  display: flex;
  align-items: center;
}
.our-clients-redesign__block-digits-component.blured .our-clients-redesign__block-digits-value,
.our-clients-redesign__block-digits-component.blured .our-clients-redesign__block-digits-description {
  font-size: 0.7rem;
}
.our-clients-redesign__achievements {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 32px;
  margin-top: 32px;
}
.our-clients-redesign__achievements-item {
  display: flex;
  flex-direction: column;
  background: var(--white);
  padding: 16px;
  border-radius: 16px;
  gap: 16px;
}
.our-clients-redesign__achievements-item .item-icon {
  width: 24px;
  height: 24px;
}
.our-clients-redesign__achievements-item-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Manrope";
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.3px;
  color: rgba(70, 72, 112, 0.75);
}
.our-clients-redesign__achievements-item-value {
  font-family: "Manrope";
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -1.1px;
  text-transform: uppercase;
  color: rgb(15, 10, 82);
}
.our-clients-redesign .our-clients-redesign__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.our-clients-redesign .our-clients-redesign__heading.align-center {
  align-items: center;
  text-align: center;
}
.our-clients-redesign .our-clients-redesign__heading.align-right {
  align-items: flex-end;
  text-align: right;
}
.our-clients-redesign .our-clients-redesign__title.text-left {
  text-align: left;
}
.our-clients-redesign .our-clients-redesign__title.text-center {
  text-align: center;
}
.our-clients-redesign .our-clients-redesign__title.text-right {
  text-align: right;
}

@media (max-width: 75em) {
  .our-clients-redesign {
    display: flex;
    flex-direction: column;
    padding: 80px 60px;
  }
  .our-clients-redesign__title {
    font-size: 48px;
    width: 100%;
  }
  .our-clients-redesign__description {
    width: 100%;
  }
  .our-clients-redesign__info {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    margin: 0 auto;
  }
  .our-clients-redesign__achievements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    margin: 20px auto;
  }
}
@media (max-width: 62em) {
  .our-clients-redesign {
    padding: 80px 40px;
  }
  .our-clients-redesign__heading {
    width: 80%;
  }
  .our-clients-redesign__title {
    font-size: 40px;
  }
  .our-clients-redesign__info {
    width: 85%;
  }
  .our-clients-redesign__achievements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 85%;
    margin: 20px auto;
  }
}
@media (max-width: 48em) {
  .our-clients-redesign {
    padding: 60px 32px;
  }
  .our-clients-redesign__heading {
    width: 100;
  }
  .our-clients-redesign__title {
    font-size: 32px;
  }
  .our-clients-redesign__description {
    font-size: 16px;
  }
  .our-clients-redesign__info {
    width: 100%;
  }
  .our-clients-redesign__achievements {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
  }
}
@media (max-width: 36em) {
  .our-clients-redesign {
    padding: 64px 0;
  }
  .our-clients-redesign__cta {
    font-size: 14px;
    gap: 4px;
  }
  .our-clients-redesign__title {
    font-size: 28px;
    line-height: 150%;
    letter-spacing: -1.4px;
  }
  .our-clients-redesign__description {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.3px;
  }
  .our-clients-redesign__info {
    padding-top: 0;
    width: 100%;
  }
  .our-clients-redesign__block {
    padding: 25px 24px;
  }
  .our-clients-redesign__block h3 {
    font-family: "Manrope";
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.6px;
    margin-bottom: 12px;
  }
  .our-clients-redesign__block .description {
    font-family: "Manrope";
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.3px;
  }
  .our-clients-redesign__block-logos {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, auto);
    /* gap: 16px; */
    overflow: hidden;
    height: auto;
  }
  .our-clients-redesign__block-image {
    width: 79px;
    height: 31px;
    gap: 8.6px;
  }
  .our-clients-redesign__achievements {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
  }
  .our-clients-redesign__achievements-item-heading {
    font-weight: 400;
    font-size: 18px;
  }
  .our-clients-redesign__achievements-item-value {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
  }
}
.hero-cta {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #DEDFF7 50%, rgba(255, 255, 255, 0) 100%);
  overflow-x: hidden;
  min-height: 833px;
}
.hero-cta .block-padding {
  padding: 0 16px;
}
.hero-cta__wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 24px 0 24px 0;
  display: flex;
  justify-content: space-between;
}
.hero-cta__info {
  width: 710px;
  margin: 24px 0 92px;
}
.hero-cta__image {
  margin: 0;
  width: 650px;
}
.hero-cta__image img {
  margin-left: 86px;
}
.hero-cta__title {
  font-family: "Manrope";
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -2.5px;
  text-decoration: none;
  vertical-align: middle;
  text-transform: uppercase;
  font-size: 68px;
  line-height: 120%;
}
.hero-cta__description {
  font-family: "Manrope";
  font-weight: 400;
  letter-spacing: 0px;
  text-decoration: none;
  vertical-align: middle;
  font-size: 18px;
  line-height: 24px;
  color: #464870;
  margin: 24px 0 48px;
  padding-right: 70px;
}
.hero-cta__socials {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin: 48px 40px 24px 80px;
  height: 40px;
}
.hero-cta__socials a {
  text-decoration: none;
}
.hero-cta .social {
  padding: 8px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.hero-cta .social__icon {
  display: flex;
  height: 24px;
  width: 24px;
}
.hero-cta .social__value {
  font-family: "Gilroy-Regular";
  font-size: 14px;
  line-height: 22.4px;
  letter-spacing: -0.32px;
  vertical-align: middle;
  color: #0F0A52;
  -webkit-text-stroke: 0.5px #0F0A52;
}
.hero-cta .social__description {
  font-family: "Gilroy-Regular";
  font-weight: 400;
  font-size: 14px;
  line-height: 22.4px;
  letter-spacing: -0.32px;
  vertical-align: middle;
  color: rgba(13, 7, 90, 0.7490196078);
}
.hero-cta__inputs {
  display: grid;
  max-width: 482px;
  grid-gap: 16px;
  padding: 0;
}
.hero-cta__inputs label {
  margin: 0;
  padding: 0;
}
.hero-cta__inputs .label__title {
  color: rgba(70, 72, 112, 0.5019607843);
  font-family: "Manrope";
  font-weight: 400;
  font-size: 14px;
  margin: 0;
  line-height: 140%;
  display: flex;
  align-items: start;
  margin-bottom: 6px;
}
.hero-cta__inputs .label__input {
  height: 56px;
  padding: 0 16px;
  border: 2px;
  border-radius: 12px;
  font-family: "Manrope";
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
}
.hero-cta__inputs button {
  grid-column: span 2;
  text-align: center;
  justify-content: center;
  padding: 19px 24px;
  border: 2px solid rgb(242, 242, 252);
  border-radius: 10px;
  font-family: "Manrope";
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin: 0;
}
.hero-cta .textimage__button {
  width: 512px;
}

@media (max-width: 75em) {
  .hero-cta__socials {
    gap: 8px;
    justify-content: space-around;
  }
  .hero-cta__title {
    font-size: 48px;
    line-height: 120%;
  }
  .hero-cta__description {
    font-size: 18px;
    line-height: 22px;
    margin: 16px 0 32px;
    padding-right: 0;
  }
}
@media (max-width: 62em) {
  .hero-cta__wrapper {
    flex-direction: column;
    padding: 0;
    gap: 24px;
  }
  .hero-cta__info {
    width: 90%;
    margin: 0 auto;
  }
  .hero-cta__title {
    font-size: 28px;
    line-height: 120%;
  }
  .hero-cta__description {
    font-size: 16px;
    line-height: 22px;
  }
  .hero-cta__inputs {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .hero-cta__inputs button {
    width: 100%;
    grid-column: auto;
  }
  .hero-cta__image {
    width: 100%;
    margin-top: 0;
    text-align: center;
  }
  .hero-cta__image img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .hero-cta__socials {
    flex-wrap: wrap;
    align-items: center;
    margin: 32px auto 64px;
    gap: 12px;
    width: 65%;
  }
  .hero-cta__socials .social {
    width: 100%;
    justify-content: flex-start;
    gap: 12px;
  }
}
@media (max-width: 48em) {
  .hero-cta__title {
    font-size: 36px;
    line-height: 120%;
  }
  .hero-cta__info {
    width: 100%;
  }
  .hero-cta__socials {
    width: 100%;
  }
  .hero-cta__description {
    font-size: 16px;
    margin: 16px 0 24px;
  }
}
@media (max-width: 36em) {
  .hero-cta__title {
    font-size: 28px;
    line-height: 150%;
    letter-spacing: 0px;
    width: 98%;
  }
  .hero-cta__description {
    letter-spacing: -0.3px;
  }
  .hero-cta__socials {
    margin: 32px 0 64px;
    gap: 11px;
  }
  .hero-cta__socials .social {
    width: 165px;
    gap: 4px;
    font-size: 13px;
    padding: 8px 6px;
  }
  .hero-cta__socials .social__value {
    font-size: 13px;
  }
  .hero-cta__socials .social__description {
    font-size: 13px;
  }
}
.section-cta {
  margin-bottom: 90px;
}
.section-cta__wrapper {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 90px 167px;
  gap: 42px;
  align-items: center;
  background: url(../images/Background-last.svg) no-repeat center/cover;
  border-radius: 24px;
}
.section-cta__text {
  font-family: "Manrope";
  line-height: 120%;
  letter-spacing: -2%;
  text-align: center;
  vertical-align: middle;
}
.section-cta__text h2 {
  font-size: 60px;
  font-weight: 500;
  margin-bottom: 0;
}
.section-cta__text h3 {
  font-size: 48px;
  font-weight: 500;
}
.section-cta__text h4 {
  font-size: 36px;
  font-weight: 400;
}
.section-cta__button {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope";
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.05px;
  vertical-align: middle;
  text-transform: uppercase;
  border-radius: 10px;
}
.section-cta__button a {
  padding: 16px 24px;
  height: 54px;
}
.section-cta__button svg {
  width: 17px;
  height: auto;
}
.section-cta .btn-contact-us {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--Colors-White, rgb(255, 255, 255));
  border-radius: 12px;
  padding: 19px 24px;
  border: 1px solid var(--Colors-Light-purple, rgb(238, 237, 253));
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
  height: 54px;
  font-family: "Manrope";
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.5px;
  vertical-align: middle;
  text-transform: uppercase;
  color: rgb(15, 10, 82);
  text-decoration: none;
}

@media (max-width: 75em) {
  .section-cta__wrapper {
    gap: 24px;
    padding: 58px 16px;
  }
  .section-cta__text h2 {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0%;
  }
  .section-cta__button a {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 48em) {
  .section-cta__wrapper {
    gap: 24px;
    padding: 58px 16px;
  }
  .section-cta__text h2 {
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 0%;
  }
  .section-cta__button {
    flex-direction: column;
    width: 80%;
  }
  .section-cta__button a {
    width: 80%;
  }
}
@media (max-width: 36em) {
  .section-cta__wrapper {
    gap: 24px;
    padding: 58px 16px;
  }
  .section-cta__text h2 {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0%;
  }
  .section-cta__button {
    width: 100%;
  }
  .section-cta__button a {
    width: 100%;
  }
}
.services-articles {
  width: 100%;
  padding: 100px 0;
}
.services-articles__wrapper {
  display: flex;
  flex-direction: column;
}
.services-articles__title {
  margin-bottom: 24px;
  font-family: "Manrope";
  font-weight: 500;
  font-size: 60px;
  line-height: 120%;
  letter-spacing: -0.2px;
  vertical-align: middle;
  text-transform: uppercase;
}
.services-articles__description {
  font-family: "Manrope";
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
}
.services-articles__list {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 32px;
}

.services-articles__title-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.services-articles__description {
  width: 50%;
}

.services-articles__cta-link {
  height: 54px;
  padding: 19px 24px;
  font-family: "Manrope";
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.5px;
  vertical-align: middle;
  text-transform: uppercase;
  color: rgb(15, 10, 82);
  background: var(--Colors-White, rgb(255, 255, 255));
  border: 1px solid var(--Colors-Light-purple, rgb(238, 237, 253));
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  text-decoration: none;
  display: flex;
  width: fit-content;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.service-article {
  list-style: none;
  background: var(--white);
  padding: 16px;
  border-radius: 16px;
}
.service-article__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.service-article__img {
  border-radius: 16px;
  display: block;
  height: 350px;
  overflow: hidden;
  position: relative;
}
.service-article__img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service-article__img:hover::after {
  opacity: 0.25;
}
.service-article__title {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 28px;
  line-height: 150%;
  letter-spacing: -1.8px;
  text-transform: uppercase;
  color: #0F0A52;
}
.service-article__title a {
  text-decoration: none;
}
.service-article__description {
  font-family: "Manrope";
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -1px;
  color: #464870;
}
.service-article__link {
  margin-top: 24px;
}
.service-article__link a {
  width: fit-content;
  border-radius: 8px;
  font-family: "Manrope";
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.5px;
  vertical-align: middle;
  text-transform: uppercase;
}

@media (max-width: 75em) {
  .services-articles__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-articles__title {
    font-size: 56px;
  }
}
@media (max-width: 62em) {
  .services-articles__title {
    font-size: 48px;
  }
  .services-articles__heading {
    flex-direction: column;
    gap: 8px;
    align-items: start;
  }
}
@media (max-width: 48em) {
  .services-articles {
    padding: 0;
  }
  .services-articles__list {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 32px;
  }
  .services-articles__title {
    font-size: 32px;
    margin-top: 16px;
  }
  .services-articles__description {
    width: 90%;
  }
  .services-articles__title-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .services-articles__description {
    width: 100%;
  }
  .service-article__link {
    padding: 16px 0;
  }
  .service-article__link a {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 16px 0;
  }
}
@media (max-width: 36em) {
  .services-articles__wrapper {
    padding: 64px 16px;
  }
  .services-articles__title {
    font-size: 28px;
    line-height: 150%;
    letter-spacing: 0.1px;
    margin-bottom: 8px;
  }
  .services-articles__description {
    width: 100%;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.7px;
  }
  .services-articles__cta-link {
    width: 100%;
  }
  .service-article__item .service-article__img {
    height: 213px;
    margin-bottom: 16px;
    background: var(--Colors-Light-purple, rgb(238, 237, 253));
  }
  .service-article__title {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
  }
  .service-article__description {
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.3px;
  }
}
.video-slider {
  background: url(../images/bg-2.svg) no-repeat top center;
  background-size: cover;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
  height: auto;
}
.video-slider .line-title {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 60px;
  line-height: 120%;
  letter-spacing: -0.2px;
  vertical-align: middle;
  text-transform: uppercase;
  width: 780px;
  margin-bottom: 48px;
  color: #13103D;
}
.video-slider .splide__list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 24px;
  padding: 0;
}
.video-slider__navigation {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: -530px;
  margin-bottom: 370px;
}
.video-slider__navigation-prev, .video-slider__navigation-next {
  border-radius: 12px;
  background: var(--colors-white-50, rgba(255, 255, 255, 0.5019607843));
}
.video-slider__navigation-prev:hover, .video-slider__navigation-next:hover {
  box-shadow: 0px 4px 4px rgba(85, 37, 131, 0.1);
}
.video-slider__navigation__button {
  margin: 1.6rem 0 1.6rem auto;
}
.video-slider__navigation__splide__arrows {
  width: 12px;
  height: 12px;
  border: 1.88px solid var(--Colors-Dark-blue, #0F0A52);
}
.video-slider .splide__slide.video-slider__item {
  max-height: 420px;
  overflow: hidden;
  width: 302px;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
}
.video-slider__item {
  height: 420px;
  width: 302px;
  flex-shrink: 0;
  margin-right: 0 !important;
}
.video-slider__item-preview {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-slider__item-preview img {
  width: 100%;
  height: 420px;
  border-radius: 16px;
  object-fit: cover;
}
.video-slider__item-preview .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: white;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  text-align: center;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-slider__item video {
  height: 100%;
  background: var(--grey-700);
}
.video-slider__item .hidden {
  display: none;
}

@media (max-width: 62em) {
  .video-slider__navigation {
    margin-top: 24px;
    margin-bottom: -165px;
  }
  .video-slider .splide__list {
    gap: 16px;
  }
  .video-slider .splide__list .video-slider__item {
    width: 253px !important;
    flex-shrink: 0;
  }
  .video-slider .line-title {
    width: 80%;
    font-size: 48px;
  }
}
@media (max-width: 48em) {
  .video-slider {
    width: 100%;
  }
  .video-slider .line-title {
    font-size: 32px;
    font-family: "Manrope";
    line-height: 150%;
    letter-spacing: -1.1px;
  }
}
@media (max-width: 36em) {
  .video-slider {
    padding: 64px 0;
  }
  .video-slider .line-title {
    font-size: 28px;
    width: 100%;
    margin-bottom: 24px;
  }
  .video-slider__navigation-prev, .video-slider__navigation-next {
    width: 44px;
    height: 44px;
  }
  .splide {
    padding-top: 0;
  }
  .splide__track {
    padding-right: 16px;
  }
}
.section-instagram {
  width: 100%;
  margin: 0 auto;
}
.section-instagram__button {
  margin: 0 auto 36px;
  font-family: "Manrope";
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.5px;
  vertical-align: middle;
  text-transform: uppercase;
  padding: 19px 24px;
  display: flex;
  justify-content: space-around;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
}
.section-instagram__content {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.section-instagram__content .instagram-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-direction: column;
}
.section-instagram__content .inst-title {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 60px;
  line-height: 120%;
  letter-spacing: -0.2px;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  width: 50%;
}
.section-instagram__content .instagram-list {
  margin-top: 24px;
  max-width: 100%;
}
.section-instagram__content .instagram-list__image {
  border-radius: 16px;
  overflow: hidden;
  height: 160px !important;
  width: 160px !important;
}
.section-instagram__content .instagram-list__image img {
  object-fit: cover;
  margin: 0 !important;
  width: 160px !important;
  height: 160px !important;
}

@media (max-width: 62em) {
  .section-instagram__content .inst-title {
    font-size: 48px;
    width: 100%;
  }
}
@media (max-width: 48em) {
  .section-instagram__button {
    display: flex;
    justify-content: center;
    width: 85%;
    margin-bottom: 24px;
  }
  .section-instagram__content .inst-title {
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: center;
    margin-bottom: 16px;
  }
  .section-instagram__content .instagram-list {
    height: 72px !important;
    display: flex;
    gap: 8px !important;
    width: 100%;
  }
  .section-instagram__content .instagram-list__image {
    width: 72px !important;
    height: 72px !important;
    border-radius: 8px;
  }
  .section-instagram__content .instagram-list__image img {
    width: 72px !important;
    height: 72px !important;
    border-radius: 8px;
  }
}
@media (max-width: 36em) {
  .section-instagram {
    padding-top: 32px;
    padding-bottom: 64px;
  }
  .section-instagram__button {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 24px;
  }
  .section-instagram__content .inst-title {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 16px;
  }
  .section-instagram__content .instagram-list {
    height: 72px !important;
    display: flex;
    gap: 8px !important;
    width: 100%;
  }
  .section-instagram__content .instagram-list__image {
    width: 72px !important;
    height: 72px !important;
    border-radius: 8px;
  }
  .section-instagram__content .instagram-list__image img {
    width: 72px !important;
    height: 72px !important;
    border-radius: 8px;
  }
}
.section-corporate {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.section-corporate__content {
  margin: 0 auto;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 75em) {
  .section-corporate__content {
    padding: 50px 0;
  }
}
.section-corporate__content .corporate-list {
  margin-top: 60px;
  max-width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  filter: grayscale(100%) brightness(90%) opacity(0.3);
}
@media (max-width: 75em) {
  .section-corporate__content .corporate-list {
    margin-top: 0;
    height: 90px;
  }
}
.section-corporate__content .corporate-list__image {
  overflow: hidden;
  box-shadow: 0px 0.3px 0.9px 0px rgba(10, 10, 10, 0.1019607843);
  box-shadow: 0px 1.6px 3.6px 0px rgba(10, 10, 10, 0.1294117647);
}
.section-corporate__content .corporate-list__image img {
  object-fit: cover;
}

.corporate-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-direction: column;
}

.section-corporate__button {
  margin-bottom: 16px;
  font-family: "Manrope";
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.01px;
  text-align: center;
  text-transform: none;
  padding: 16px;
  color: #464870;
  border-radius: 12px;
  height: 56px;
  box-shadow: none;
}
.section-corporate__button svg {
  width: 23px;
  height: 29px;
}

.corp-title {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 60px;
  line-height: 120%;
  letter-spacing: -0.02px;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  width: 65%;
  margin-bottom: 0;
}

@media (max-width: 75em) {
  .section-corporate__content .corp-title {
    font-size: 40px;
    line-height: 150%;
    letter-spacing: -1.1px;
    text-align: center;
    margin-bottom: 24px;
    width: 100%;
    padding: 0 16px;
  }
}
@media (max-width: 48em) {
  .section-corporate__content .corp-title {
    font-size: 32px;
  }
  .section-corporate__content .corporate-list {
    height: 59px !important;
    display: flex;
    gap: 8px !important;
    margin-top: 0;
    width: 100%;
  }
  .section-corporate__content .corporate-list__image {
    width: 83px !important;
    height: 33px !important;
  }
  .section-corporate__content .corporate-list__image svg {
    width: 22px;
    height: 25px;
  }
}
@media (max-width: 36em) {
  .section-corporate__button {
    display: flex;
    justify-content: center;
    width: auto;
    margin-bottom: 8px;
    padding: 12px 10px;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.3px;
  }
  .section-corporate__content {
    padding: 0 0;
  }
  .section-corporate__content .corp-title {
    font-size: 28px;
  }
  .section-corporate__content .corporate-list {
    height: 59px !important;
    display: flex;
    gap: 8px !important;
    margin-top: 0;
    width: 100%;
  }
  .section-corporate__content .corporate-list__image {
    width: 83px !important;
    height: 33px !important;
  }
  .section-corporate .section-corporate__button {
    padding: 10px 12px;
    height: 40px;
  }
  .section-corporate .section-corporate__button svg {
    height: 25px;
    width: 22px;
  }
}
.our-company {
  width: 100%;
}
.our-company__container {
  display: flex;
  gap: 90px;
  flex-direction: column;
}
.our-company__heading {
  display: flex;
  gap: 16px;
  flex-direction: column;
  align-items: start;
  width: 52%;
}
.our-company__cta {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
}
.our-company__cta span {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -1%;
  text-align: center;
  color: #464870;
  text-transform: none;
  text-decoration: none;
}
.our-company__cta .icon {
  width: 28px;
  height: 28px;
  margin-right: 8px;
}
.our-company__title {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 60px;
  line-height: 120%;
  letter-spacing: -2.2px;
  vertical-align: middle;
  text-transform: uppercase;
  margin-bottom: 0;
}
.our-company__description {
  font-family: "Manrope";
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  color: rgb(70, 72, 112);
}
.our-company__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
}
.our-company__list .splide {
  display: none;
}
.our-company__item {
  border-radius: 1rem;
  background: var(--white);
  padding: 117px 32px 28px 32px !important;
  position: relative;
}
.our-company__item-title {
  font-family: "Manrope";
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: -0.2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.our-company__item-description {
  font-family: "Manrope";
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -1px;
}
.our-company__item-icon {
  position: absolute;
  left: 32px;
  top: -20px;
  width: 105px;
  height: 105px;
  object-fit: contain;
  border-radius: 15px;
  border: 2px solid #F5F0FF;
  box-shadow: 0 0 0 0px white, 0 0 0 2px #F5F0FF;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.our-company__item-icon img {
  height: 86px;
  width: 86px;
}

.our-company__slider {
  display: none;
  overflow-x: clip;
}

@media (max-width: 75em) {
  .our-company__heading {
    width: 100%;
  }
  .our-company__title {
    font-size: 56px;
  }
  .our-company__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 62em) {
  .our-company__list {
    display: none !important;
  }
  .our-company__slider {
    display: block;
  }
  .our-company__slider .splide__track {
    overflow: visible;
  }
  .our-company__slider .splide__slide {
    padding: 117px 32px 28px;
    border-radius: 16px;
    background: white;
    position: relative;
  }
  .our-company__slider .our-company__item-icon {
    position: absolute;
    top: -20px;
    left: 32px;
    width: 105px;
    height: 105px;
    background: white;
    border: 2px solid #F5F0FF;
    box-shadow: 0 0 0 2px #F5F0FF;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .our-company__slider .our-company__item-icon img {
    width: 86px;
    height: 86px;
  }
  .our-company__slider .splide__arrow {
    background: white;
    border: none;
    border-radius: 12px;
    width: 40px;
    height: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
  }
  .our-company__arrows {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
    gap: 12px;
  }
  .our-company__arrows button {
    background: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .our-company__arrows button svg {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 48em) {
  .our-company__heading {
    width: 100%;
  }
  .our-company .our-company__title {
    font-size: 36px;
  }
  .our-company .our-company__list {
    grid-template-columns: 1fr;
  }
  .our-company .our-company__item {
    padding: 72px 24px 24px 24px !important;
  }
  .our-company .our-company__item .our-company__item-icon {
    width: 80px;
    height: 80px;
    left: 24px;
  }
  .our-company .our-company__item .our-company__item-icon img {
    width: 65.5px;
    height: 65.5px;
  }
  .our-company .our-company__item .our-company__item-title {
    font-size: 20px;
  }
  .our-company .our-company__item .our-company__item-description {
    font-size: 16px;
  }
  .our-company__slider {
    overflow-x: visible;
  }
}
@media (max-width: 36em) {
  .our-company__container {
    gap: 56px;
  }
  .our-company .our-company__item-icon {
    top: -40px;
  }
  .our-company .our-company__title {
    font-size: 28px;
    letter-spacing: -0.1px;
  }
  .our-company .our-company__description {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.7px;
  }
  .our-company .our-company__item {
    padding: 51px 24px 24px 24px !important;
    height: 172px;
    width: 275px !important;
  }
  .our-company .our-company__item .our-company__item-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
    margin-bottom: 8px;
  }
  .our-company .our-company__item .our-company__item-description {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.7px;
  }
}
.our-team-video-slider {
  width: 100%;
  margin: 90px auto 60px;
  display: flex;
  flex-direction: column;
  height: auto;
  padding-bottom: 60px;
}
.our-team-video-slider__description {
  width: 52%;
  font-family: "Manrope";
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  margin-bottom: 24px;
}
.our-team-video-slider .line-title {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 60px;
  line-height: 120%;
  letter-spacing: -0.2px;
  vertical-align: middle;
  text-transform: uppercase;
  width: 780px;
  margin-bottom: 24px;
  color: #13103D;
}
.our-team-video-slider .splide {
  margin-right: 10px !important;
}
.our-team-video-slider .splide__list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 24px;
  padding: 0;
}
.our-team-video-slider .our-team__button {
  display: flex;
  justify-content: center;
  width: 210px;
  gap: 10px;
  padding-right: 24px;
  padding-left: 24px;
  border-radius: 12px;
  border-width: 1px;
  background: var(--Colors-White, rgb(255, 255, 255));
  border: 1px solid var(--Colors-Light-purple, rgb(238, 237, 253));
  color: rgb(15, 10, 82);
  margin-bottom: 48px;
  font-family: "Manrope";
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.5px;
  vertical-align: middle;
  text-transform: uppercase;
}
.our-team-video-slider .our-team__button .our-team__button svg {
  height: auto;
}
.our-team-video-slider__navigation {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: -522px;
  margin-bottom: 370px;
  margin-right: -16px;
}
.our-team-video-slider__navigation-prev, .our-team-video-slider__navigation-next {
  border-radius: 12px;
  background: var(--colors-white-50, rgba(255, 255, 255, 0.5019607843));
  width: 60px;
  height: 60px;
}
.our-team-video-slider__navigation-prev:hover, .our-team-video-slider__navigation-next:hover {
  box-shadow: 0px 4px 4px rgba(85, 37, 131, 0.1);
}
.our-team-video-slider__navigation__splide__arrows {
  width: 12px;
  height: 12px;
  border: 1.88px solid var(--Colors-Dark-blue, #0F0A52);
}
.our-team-video-slider .splide__slide.our-team-video-slider__item {
  max-height: 420px;
  overflow: hidden;
  width: 302px;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
}
.our-team-video-slider__item {
  height: 420px;
  width: 302px;
  flex-shrink: 0;
  margin-right: 0 !important;
}
.our-team-video-slider__item-preview {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.our-team-video-slider__item-preview img {
  width: 100%;
  height: 420px;
  border-radius: 16px;
  object-fit: cover;
}
.our-team-video-slider__item-preview .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: white;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  text-align: center;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.our-team-video-slider__item video {
  height: 100%;
  background: var(--grey-700);
}
.our-team-video-slider__item .hidden {
  display: none;
}

@media (max-width: 62em) {
  .our-team-video-slider {
    margin-bottom: 32px;
  }
  .our-team-video-slider__navigation {
    margin-top: 24px;
    margin-bottom: -165px;
  }
  .our-team-video-slider .splide__list {
    gap: 16px;
  }
  .our-team-video-slider .splide__list .our-team-video-slider__item {
    width: 253px !important;
    flex-shrink: 0;
  }
  .our-team-video-slider .line-title {
    width: 80%;
    font-size: 48px;
  }
}
@media (max-width: 48em) {
  .our-team-video-slider {
    width: 100%;
    margin-bottom: 64px;
  }
  .our-team-video-slider .line-title {
    font-size: 32px;
    width: 100%;
    line-height: 150%;
    letter-spacing: -1.1px;
  }
  .our-team-video-slider__description {
    width: 100%;
  }
}
@media (max-width: 36em) {
  .our-team-video-slider {
    margin-bottom: 167px;
  }
  .our-team-video-slider .our-team__button {
    display: none;
  }
  .our-team-video-slider .line-title {
    font-size: 28px;
    margin-bottom: 8px;
  }
  .our-team-video-slider__description {
    width: 100%;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.3px;
    margin-bottom: 24px;
  }
  .our-team-video-slider__navigation {
    gap: 8px;
  }
  .our-team-video-slider__navigation-prev, .our-team-video-slider__navigation-next {
    width: 44px;
    height: 44px;
  }
}
.cont-inf {
  padding: 80px 0;
}
.cont-inf__container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cont-inf__heading {
  width: 65%;
}
.cont-inf .cont-inf__title {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 60px;
  line-height: 120%;
  letter-spacing: -0.2px;
  vertical-align: middle;
  text-transform: uppercase;
  color: rgb(15, 10, 82);
}
.cont-inf .cont-inf__description {
  font-family: "Manrope";
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  color: rgb(70, 72, 112);
  width: 70%;
}
.cont-inf__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cont-inf__item-location {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
}
.cont-inf__item {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0px 10px 20px rgba(15, 10, 82, 0.05);
}
.cont-inf__item-icon {
  margin-bottom: 16px;
  grid-row: 1/span 2;
  width: 105px;
  height: 105px;
  border: 2px solid rgb(245, 240, 255);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}
.cont-inf__item-title {
  font-family: "Manrope";
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: -0.1px;
  vertical-align: middle;
  text-transform: uppercase;
  color: rgb(15, 10, 82);
  margin-bottom: 0;
}
.cont-inf__item-description {
  font-family: "Manrope";
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.3px;
  vertical-align: middle;
  color: rgba(70, 72, 112, 0.75);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.cont-inf__item-description p {
  margin: 0;
}

.contacts-form {
  background: #fff;
  border-radius: 16px;
  padding: 48px 32px;
  box-shadow: 0px 10px 20px rgba(15, 10, 82, 0.05);
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 auto;
  width: 100%;
}
.contacts-form__title {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 28px;
  line-height: 150%;
  letter-spacing: -0.1px;
  text-transform: uppercase;
  color: rgb(15, 10, 82);
  margin-bottom: 0;
}
.contacts-form__description {
  font-family: "Manrope";
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.5px;
  margin-bottom: 0;
  width: 53%;
}
.contacts-form .labels {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.contacts-form .labels .label {
  display: flex;
  flex-direction: column;
  flex: 1 1 48%;
  margin-bottom: 0;
}
.contacts-form .labels .label__title {
  font-family: "Manrope";
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.3px;
  color: rgba(70, 72, 112, 0.75);
  margin-bottom: 6px;
}
.contacts-form .labels .label__input {
  height: 56px;
  border: 2px solid var(--Colors-Light-purple, rgb(238, 237, 253));
  padding: 0 0 0 16px;
  font-family: "Manrope";
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.3px;
}
.contacts-form .contact-form-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.contacts-form .contact-form-bottom p {
  font-family: "Manrope";
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.3px;
  vertical-align: middle;
  color: rgba(70, 72, 112, 0.75);
  margin-bottom: 0;
}
.contacts-form .contact-form-bottom .contact-form-button {
  align-self: flex-end;
  background: var(--Colors-White, rgb(255, 255, 255));
  border-radius: 12px;
  padding: 19px 24px;
  border: 1px solid var(--Colors-Light-purple, rgb(238, 237, 253));
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
  width: fit-content;
  height: 54px;
  font-family: "Manrope";
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.5px;
  vertical-align: middle;
  text-transform: uppercase;
  color: rgb(15, 10, 82);
}
.contacts-form .contact-form-bottom .contact-form-button::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 18px;
  margin-left: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='18' viewBox='0 0 16 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.856667 8.87991H14.9988M14.9988 8.87991L7.92773 1.80884M14.9988 8.87991L7.92773 15.951' stroke='%230F0A52' stroke-width='1.5625' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 36em) {
  .contacts-form .contact-form-bottom .contact-form-button {
    width: 100%;
    justify-content: center;
  }
}
.contacts-form .contact-form-bottom .contact-form-button:hover {
  background: #9093E3;
}

@media (max-width: 75em) {
  .cont-inf__heading {
    width: 100%;
  }
}
@media (max-width: 62em) {
  .cont-inf__list {
    grid-template: revert;
  }
  .cont-inf .cont-inf__title {
    font-size: 48px;
  }
  .cont-inf .cont-inf__description {
    width: 100%;
  }
  .contacts-form__description {
    width: 100%;
  }
  .labels {
    flex-direction: column;
  }
  .labels .label {
    flex: 1 1 100%;
  }
}
@media (max-width: 48em) {
  .cont-inf__list {
    grid-template: revert;
  }
  .cont-inf .cont-inf__title {
    font-size: 36px;
  }
  .cont-inf .cont-inf__description {
    font-size: 16px;
  }
  .contacts-form {
    gap: 12px;
  }
}
@media (max-width: 36em) {
  .cont-inf .cont-inf__title {
    font-size: 28px;
    letter-spacing: -0.9px;
  }
  .cont-inf .cont-inf__description {
    font-size: 14px;
    letter-spacing: -0.8px;
  }
  .cont-inf .cont-inf__description p {
    margin-bottom: 8px;
  }
  .cont-inf .cont-inf__item {
    max-width: 343px;
    gap: 8px;
    padding: 16px;
  }
  .cont-inf__item-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
  }
  .cont-inf__item-description {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.3%;
  }
  .cont-inf__item-icon {
    padding: 6px;
    width: auto;
    height: auto;
    border: 1.71px solid rgb(245, 240, 255);
  }
  .cont-inf__item-icon img {
    width: 125px;
  }
  .contacts-form {
    gap: 12px;
    padding: 24px;
  }
  .contacts-form__title {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
  }
  .contacts-form__description {
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.3px;
  }
  .contacts-form .labels {
    gap: 12px;
  }
  .label__input {
    font-size: 16px;
    line-height: 140%;
    letter-spacing: -0.3px;
  }
}
.section-get-free {
  width: 100%;
  margin: 0 auto;
}
.section-get-free .get-free {
  gap: 190px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 0;
}
@media (max-width: 75em) {
  .section-get-free .get-free {
    gap: 80px;
  }
}
@media (max-width: 62em) {
  .section-get-free .get-free {
    flex-direction: column-reverse;
  }
}
@media (max-width: 62em) {
  .section-get-free .get-free .get-free__form {
    width: 80%;
  }
}
@media (max-width: 48em) {
  .section-get-free .get-free .get-free__form {
    width: 100%;
  }
}
.section-get-free .get-free__inputs {
  display: grid;
  grid-gap: 16px;
  padding: 0;
}
@media (max-width: 62em) {
  .section-get-free .get-free__inputs {
    display: flex;
    flex-direction: column;
  }
}
.section-get-free .get-free__inputs label {
  margin: 0;
  padding: 0;
}
.section-get-free .get-free__inputs .label__title {
  color: rgba(70, 72, 112, 0.5019607843);
  font-family: "Manrope";
  font-weight: 400;
  font-size: 14px;
  margin: 0;
  line-height: 140%;
  display: flex;
  align-items: start;
  margin-bottom: 6px;
}
.section-get-free .get-free__inputs .label__input {
  height: 56px;
  padding: 0 16px;
  border: 2px;
  border-radius: 12px;
  font-family: "Manrope";
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
}
.section-get-free .get-free__inputs button {
  grid-column: span 2;
  text-align: center;
  justify-content: center;
  padding: 19px 24px;
  border: 2px;
  border-radius: 10px;
  font-family: "Manrope";
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin: 0;
}
.section-get-free .get-free__info {
  width: 540px;
}
@media (max-width: 62em) {
  .section-get-free .get-free__info {
    width: 100%;
  }
}
.section-get-free .get-free__info__button {
  width: fit-content;
  padding: 16px;
  background: var(--colors-white-75, rgba(255, 255, 255, 0.75));
  border-radius: 12px;
  font-family: "Manrope";
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.1px;
  text-align: center;
  color: rgb(70, 72, 112);
  text-transform: none;
  border: 2px solid var(--colors-light-purple-75, rgba(238, 237, 253, 0.75));
  margin-bottom: 36px;
}
@media (max-width: 36em) {
  .section-get-free .get-free__info__button {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.3px;
    text-align: center;
    padding: 10px 12px;
    margin-bottom: 8px;
  }
}
.section-get-free .get-free__info__button svg {
  width: auto;
  height: auto;
}
.section-get-free .get-free__info__line-title {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 60px;
  line-height: 120%;
  letter-spacing: -2.4px;
  vertical-align: middle;
  text-transform: uppercase;
  color: rgb(15, 10, 82);
  margin-bottom: 24px;
}
@media (max-width: 75em) {
  .section-get-free .get-free__info__line-title {
    font-size: 48px;
    letter-spacing: -0.4px;
  }
}
@media (max-width: 62em) {
  .section-get-free .get-free__info__line-title {
    font-size: 42px;
    letter-spacing: 0;
  }
}
@media (max-width: 48em) {
  .section-get-free .get-free__info__line-title {
    font-size: 36px;
  }
}
@media (max-width: 36em) {
  .section-get-free .get-free__info__line-title {
    font-size: 28px;
    line-height: 150%;
    letter-spacing: -1.1px;
    margin-bottom: 8px;
  }
}
.section-get-free .get-free__info__description {
  font-family: "Manrope";
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.5px;
}
@media (max-width: 62em) {
  .section-get-free .get-free__info__description {
    font-size: 16px;
  }
}
@media (max-width: 36em) {
  .section-get-free .get-free__info__description {
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.3px;
  }
}

.resources__header-title {
  margin-bottom: 44px !important;
  font-family: "Manrope";
  font-weight: 500;
  font-size: 60px;
  line-height: 120%;
  letter-spacing: -3px;
  vertical-align: middle;
  text-transform: uppercase;
  color: #0F0A52;
}
.resources__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 16px;
}
@media (max-width: 48em) {
  .resources__list {
    grid-template-columns: 1fr;
  }
}
.resources__item {
  border-radius: 12px;
  padding: 16px;
  background: var(--Colors-White, rgb(255, 255, 255));
}
.resources__item-title {
  text-transform: uppercase;
  font-size: 21.6px;
  font-weight: 600;
  color: #0F0A52;
  line-height: 2rem;
  margin-bottom: 0;
}
.resources__item-contact {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.resources__item-contact-value {
  font-size: 15px;
  line-height: 1.4rem;
  color: #464870;
}
.resources__item-contact-value span {
  letter-spacing: -0.7px;
  font-weight: 700;
}
.resources__item:nth-last-child(1):nth-child(odd) {
  grid-column: 1/-1;
}

.service-area-county {
  padding: 48px 0;
}
.service-area-county__wrapper {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 32px;
  padding: 60px 42px;
  border-radius: 0 0 48px 48px;
  background: linear-gradient(to top, rgba(145, 136, 210, 0.3), rgba(255, 255, 255, 0.1));
}
@media (max-width: 62em) {
  .service-area-county__wrapper {
    grid-template-columns: 1fr;
  }
}
.service-area-county__info {
  display: flex;
  flex-direction: column;
}
.service-area-county__title {
  margin-bottom: 8px;
  font-family: "Manrope";
  font-weight: 500;
  font-size: 60px;
  line-height: 120%;
  letter-spacing: -3px;
  vertical-align: middle;
  text-transform: uppercase;
  color: #0F0A52;
}
.service-area-county__description {
  margin-bottom: 60px;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #464870;
}
.service-area-county__map {
  margin-top: auto;
}
.service-area-county__list ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 8px;
}
@media (max-width: 48em) {
  .service-area-county__list ul {
    width: 100vw;
  }
}
@media (max-width: 48em) {
  .service-area-county__list {
    overflow-x: scroll;
  }
}
.service-area-county__item a {
  background: #fff;
  border: 1px solid #EEEDFD;
  border-radius: 16px;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
  padding: 8px 8px 8px 16px;
  text-decoration: none;
  width: 100%;
  height: 100%;
}
.service-area-county__item a:hover {
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
}
.service-area-county__item-name {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.service-area-county__item-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 12px;
}
.service-area-county__item-icon svg {
  width: 15px;
  height: auto;
}

.category-page__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 60px 32px;
}
@media (max-width: 48em) {
  .category-page__list {
    grid-template-columns: 1fr;
    grid-gap: 32px;
  }
}

.page-title__image {
  display: flex;
  justify-content: center;
}

.aligncenter.size-full {
  display: flex;
  justify-content: center;
  border-radius: 1rem;
}
.aligncenter.size-full img {
  width: 100%;
}

.single-post .entry-content {
  max-width: 76.8rem;
  margin: 3.2rem auto;
}
.single-post .wp-block-image {
  border-radius: 1rem;
  box-shadow: rgba(10.2, 10.2, 10.2, 0.13) 0 3.2px 7.2px, rgba(10.2, 10.2, 10.2, 0.1) 0 0.6px 1.8px;
}

.reviews-list {
  margin-bottom: 3.2rem;
  display: grid;
  gap: 1.6rem;
}
@media (min-width: 62em) {
  .reviews-list {
    grid-template-columns: 1fr 1fr;
  }
}
.locations-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 3.2rem;
}

.location-counties {
  display: grid;
  gap: 1.6rem;
  margin: 1.6rem 0;
  list-style: none;
}
@media (min-width: 48em) {
  .location-counties {
    grid-template-columns: 1fr 1fr;
  }
}
.location-counties .county {
  height: 100%;
}

.county {
  overflow: hidden;
  padding: 0;
}
.county__image {
  height: 0;
  overflow: hidden;
  padding-bottom: 62.5%;
  position: relative;
}
.county__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.county__content {
  padding: 1.6rem;
}
.county h3 {
  font-size: 2.4rem;
}
.county a {
  text-decoration: none;
}
.county__locations a {
  margin-right: 1.6rem;
  margin-bottom: 1.6rem;
  display: inline-block;
}

.services__about-inner {
  display: grid;
  gap: 1.6rem;
}
@media (min-width: 62em) {
  .services__about-inner {
    grid-template-columns: 1fr 1fr;
  }
}
.services__about-iframe iframe {
  max-width: 100%;
}

.heading-section {
  display: flex;
  margin-bottom: 1.6rem;
}
.heading-section.is-left {
  text-align: left;
  justify-content: flex-start;
}
.heading-section.is-center {
  text-align: center;
  justify-content: center;
}
.heading-section.is-right {
  text-align: right;
  justify-content: flex-end;
}
.heading-section__title {
  margin: 0;
  display: flex;
  align-items: center;
}
.heading-section.on-mobile-stack .heading-section__title {
  flex-direction: column;
  text-align: center;
}
@media (min-width: 62em) {
  .heading-section.on-desktop-stack .heading-section__title {
    flex-direction: column;
    text-align: center;
  }
}
.heading-section__icon {
  margin-right: 1.6rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.heading-section.on-mobile-stack .heading-section__icon {
  margin-right: 0;
  margin-bottom: 1.6rem;
}
@media (min-width: 62em) {
  .heading-section.on-desktop-stack .heading-section__icon {
    margin-right: 0;
    margin-bottom: 1.6rem;
  }
}
.heading-section__icon svg,
.heading-section__icon img {
  object-fit: contain;
}
.heading-section.is-small .heading-section__icon svg,
.heading-section.is-small .heading-section__icon img {
  width: 30px;
  height: 30px;
}
.heading-section.is-medium .heading-section__icon svg,
.heading-section.is-medium .heading-section__icon img {
  width: 48px;
  height: 48px;
}
.heading-section.is-large .heading-section__icon svg,
.heading-section.is-large .heading-section__icon img {
  width: 68px;
  height: 68px;
}
.heading-section.on-mobile-stack.is-small-stack .heading-section__icon svg,
.heading-section.on-mobile-stack.is-small-stack .heading-section__icon img {
  width: 68px;
  height: 68px;
}
.heading-section.on-mobile-stack.is-medium-stack .heading-section__icon svg,
.heading-section.on-mobile-stack.is-medium-stack .heading-section__icon img {
  width: 80px;
  height: 80px;
}
.heading-section.on-mobile-stack.is-large-stack .heading-section__icon svg,
.heading-section.on-mobile-stack.is-large-stack .heading-section__icon img {
  width: 130px;
  height: 130px;
}
@media (min-width: 62em) {
  .heading-section.on-desktop-stack.is-small-stack .heading-section__icon svg,
  .heading-section.on-desktop-stack.is-small-stack .heading-section__icon img {
    width: 80px;
    height: 80px;
  }
}
@media (min-width: 62em) {
  .heading-section.on-desktop-stack.is-medium-stack .heading-section__icon svg,
  .heading-section.on-desktop-stack.is-medium-stack .heading-section__icon img {
    width: 130px;
    height: 130px;
  }
}
@media (min-width: 62em) {
  .heading-section.on-desktop-stack.is-large-stack .heading-section__icon svg,
  .heading-section.on-desktop-stack.is-large-stack .heading-section__icon img {
    width: 180px;
    height: 180px;
  }
}

.dialog-container,
.dialog-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.dialog-container {
  z-index: 2;
  display: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.dialog-container [data-a11y-dialog-hide] {
  cursor: pointer;
}
.dialog-container.is-open {
  display: flex;
}
.dialog-container.center.is-enter .dialog-content {
  animation: 250ms cubic-bezier(0.075, 0.82, 0.165, 1) fadeInTop both;
}
.dialog-container.center.is-exit .dialog-content {
  animation: 250ms cubic-bezier(0.075, 0.82, 0.165, 1) fadeInTop both reverse;
}
.dialog-container.nearby.is-enter .dialog-content {
  animation: 250ms cubic-bezier(0.075, 0.82, 0.165, 1) fadeInBottom both;
}
.dialog-container.nearby.is-exit .dialog-content {
  animation: 250ms cubic-bezier(0.075, 0.82, 0.165, 1) fadeInBottom both reverse;
}
.dialog-container.nearby .dialog-content {
  width: auto;
}
.dialog-container.right.is-enter .dialog-content {
  animation: 250ms cubic-bezier(0.075, 0.82, 0.165, 1) fadeInRight both;
}
.dialog-container.right.is-exit .dialog-content {
  animation: 250ms cubic-bezier(0.075, 0.82, 0.165, 1) fadeInRight both reverse;
}
.dialog-container.right .dialog-content {
  margin: 0 0 0 auto;
  max-width: 32rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 0;
  padding: 3.2rem 1.6rem;
}
@media (min-width: 36em) {
  .dialog-container.right .dialog-content {
    border-top-left-radius: 1.2rem;
    border-bottom-left-radius: 1.2rem;
  }
}

.dialog-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  animation: 250ms cubic-bezier(0.075, 0.82, 0.165, 1) fade both;
}

.dialog-content {
  box-shadow: rgba(10.2, 10.2, 10.2, 0.13) 0 3.2px 7.2px, rgba(10.2, 10.2, 10.2, 0.1) 0 0.6px 1.8px;
  margin: 120px auto 0;
  z-index: 2;
  position: relative;
}
@media (min-width: 48em) {
  .dialog-content {
    border-radius: 1.2rem;
    max-width: 76.8rem;
  }
}
.dialog-content header {
  display: flex;
}
.dialog-content header h3 {
  font-size: 2rem;
}
.dialog-content header button {
  border-radius: 50%;
  border: 0;
  width: 3rem;
  height: 3rem;
  padding: 0;
  margin-left: auto;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 1.6rem;
  top: 1.6rem;
  box-shadow: rgba(10.2, 10.2, 10.2, 0.13) 0 3.2px 7.2px, rgba(10.2, 10.2, 10.2, 0.1) 0 0.6px 1.8px;
}
@media (min-width: 48em) {
  .dialog-content header button {
    right: -1rem;
    top: -1rem;
  }
}
.dialog-content header button:hover {
  box-shadow: rgba(10.2, 10.2, 10.2, 0.13) 0 6.4px 14.4px, rgba(10.2, 10.2, 10.2, 0.1) 0 1.2px 3.6px;
}

@keyframes fade {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fadeInTop {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottom {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
}
@media (min-width: 36em) {
  .change-city {
    min-width: 40rem;
  }
}
.change-city__list {
  margin-bottom: var(--spacer);
}
.change-city__list .city-wrapper {
  display: flex;
  gap: 2rem;
}
.change-city__list .county-block__list {
  width: 50%;
  padding: 1rem;
}
.change-city__list .city-block__list {
  width: 50%;
  padding: 10px;
  background: #f1f1f1;
  border-radius: 1rem;
}
.change-city__list .city-block__list .city-block {
  display: none;
}
.change-city__list .city-block__list .city-block.active {
  display: block;
}
.change-city__list a {
  display: block;
  text-decoration: none;
  transition-property: all;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  text-decoration: underline;
  margin-bottom: 1.5rem;
}
.change-city__list a:hover {
  padding-left: 2rem;
}
.change-city a.btn-other-locations {
  width: 100%;
}

.page-title {
  padding: 3.2rem 0 0.8rem;
}
.page-title__title {
  text-align: center;
  font-size: 68px;
  font-weight: 500;
  line-height: 1.1;
  position: relative;
  z-index: 1;
  margin: 0 0 1.6rem;
  text-transform: uppercase;
  letter-spacing: -3.5px;
}
@media (max-width: 48em) {
  .page-title__title {
    font-size: 28px;
    letter-spacing: -0.5px;
  }
}
.page-title__title.left {
  text-align: left;
}
.page-title h2.page-title__title {
  font-size: 60px;
  letter-spacing: -3px;
}
@media (max-width: 48em) {
  .page-title h2.page-title__title {
    font-size: 24px;
    letter-spacing: -0.3px;
  }
}
.page-title__summary {
  font-size: 18px;
  text-align: center;
  max-width: 770px;
  margin: 0 auto 3.2rem !important;
}
@media (max-width: 48em) {
  .page-title__summary {
    font-size: 16px;
    margin: 0 auto 0.8rem !important;
  }
}
.page-title__image {
  text-align: center;
}
.page-title__image img {
  border-radius: 1rem;
  box-shadow: rgba(10.2, 10.2, 10.2, 0.13) 0 3.2px 7.2px, rgba(10.2, 10.2, 10.2, 0.1) 0 0.6px 1.8px;
  margin-bottom: 1.6rem;
}

.dialog-container.right .dialog-content {
  background: linear-gradient(to right, #d1d1f5 0%, #f1f9fb 100%);
  border-radius: 1px;
  width: 375px;
  height: 783px;
  z-index: 100;
  overflow-y: auto;
  padding: 0;
}
.dialog-container.right .dialog-content .mobile-menu {
  max-width: 375px;
}
.dialog-container.right .dialog-content .mobile-menu__title {
  padding: 16px;
  border-bottom: 1px solid var(--secondary-lighten);
  display: flex;
  align-items: center;
  border-bottom: none;
}
.dialog-container.right .dialog-content .mobile-menu__brand {
  font-family: "Manrope";
  font-weight: 800;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -1px;
  vertical-align: middle;
  text-transform: uppercase;
  text-decoration: none;
  color: rgb(19, 16, 61);
}
.dialog-container.right .dialog-content .mobile-menu__brand:hover {
  color: var(--primary);
}
.dialog-container.right .dialog-content .mobile-menu__close {
  padding: 6px;
  display: inline-flex;
  margin-left: auto;
  border-radius: 6px;
  background: var(--Colors-White, rgb(255, 255, 255));
}
.dialog-container.right .dialog-content .mobile-menu__close svg {
  font-size: 28.8px;
  margin: 0;
}
.dialog-container.right .dialog-content .mobile-menu__action {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 16px;
  flex-direction: column;
  gap: 8px;
}
.dialog-container.right .dialog-content .mobile-menu__action a {
  width: 100%;
  justify-content: center;
}
.dialog-container.right .dialog-content .mobile-menu__action .btn, .dialog-container.right .dialog-content .mobile-menu__action .wp-block-button .wp-block-button__link, .wp-block-button .dialog-container.right .dialog-content .mobile-menu__action .wp-block-button__link, .dialog-container.right .dialog-content .mobile-menu__action .navigation .nav-links .page-numbers, .navigation .nav-links .dialog-container.right .dialog-content .mobile-menu__action .page-numbers {
  margin-top: 8px;
  font-family: "Manrope";
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.5px;
  vertical-align: middle;
  text-transform: uppercase;
  padding: 19px auto;
}
.dialog-container.right .dialog-content .mobile-menu__menu {
  list-style: none;
  background: linear-gradient(to right, #d1d1f5 0%, #f1f9fb 100%);
  padding: 16px;
}
.dialog-container.right .dialog-content .mobile-menu__menu li {
  padding: 16px 0;
  border-top: 1px solid rgba(132, 134, 180, 0.12);
  border-bottom: 1px solid rgba(132, 134, 180, 0.12);
}
.dialog-container.right .dialog-content .mobile-menu__menu a {
  text-decoration: none;
  font-family: "Manrope";
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: uppercase;
  color: rgb(15, 10, 82);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.dialog-container.right .dialog-content .mobile-menu__menu a::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 11px;
  background: url('data:image/svg+xml;utf8,<svg width="11" height="6" viewBox="0 0 11 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.5 1L5.5 5L9.5 1" stroke="%230F0A52" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center center;
  background-size: contain;
  margin-left: 6px;
  vertical-align: middle;
}
.dialog-container.right .dialog-content .mobile-menu__menu a:hover::after {
  color: var(--primary);
}
.dialog-container.right .dialog-content .mobile-menu__menu a:hover {
  color: var(--primary);
}
.dialog-container.right .dialog-content .menu-item-has-children .sub-menu {
  display: none;
  position: relative;
  top: 100%;
  left: 0;
  background: none;
  border-radius: 8px;
  padding: 10px;
}
.dialog-container.right .dialog-content .menu-item-has-children .sub-menu li {
  list-style: none;
  border: none;
}
.dialog-container.right .dialog-content .menu-item-has-children .sub-menu li a {
  text-transform: none;
  font-weight: 400;
  text-transform: uppercase;
}
.dialog-container.right .dialog-content .menu-item-has-children .sub-menu li a::after {
  content: none !important;
}
.dialog-container.right .dialog-content .menu-item-has-children.open .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: max-content;
  padding: 0;
  margin-top: 16px;
  text-transform: uppercase;
}
.dialog-container.right .dialog-content .menu-item-has-children.open > a::after {
  transform: rotate(180deg);
  transition: 0.5s;
}

.locations-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 1.6rem;
  display: grid;
  gap: 1.6rem;
}
@media (min-width: 75em) {
  .locations-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.location-card {
  box-shadow: rgba(10.2, 10.2, 10.2, 0.13) 0 1.6px 3.6px, rgba(10.2, 10.2, 10.2, 0.1) 0 0.3px 0.9px;
  border-radius: 1.2rem;
  overflow: hidden;
  position: relative;
}
.location-card__image {
  padding-bottom: 44.5%;
  height: 0;
  overflow: hidden;
  position: relative;
}
@media (min-width: 36em) {
  .location-card__image {
    padding-bottom: 56.25%;
  }
}
.location-card__image img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.location-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  padding: 1.6rem;
  background-color: rgba(0, 0, 0, 0.5);
}
@media (min-width: 36em) {
  .location-card__content {
    top: auto;
  }
}
.location-card__content a {
  transition-property: all;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  text-decoration: none;
  color: var(--grey-50);
  text-shadow: 0 1px 0 var(--grey-950);
  line-height: 1;
}
.location-card__content a:hover {
  color: var(--secondary);
}
.location-card__content p {
  color: var(--grey-50);
  text-shadow: 0 1px 0 var(--grey-950);
}

.breadcrumbs {
  font-size: 1.2rem;
  margin-top: 50px;
}
.breadcrumbs .container {
  padding-top: var(--spacer);
  padding-bottom: var(--spacer);
  border-bottom: 1px solid var(--grey-200);
}
.breadcrumbs a {
  color: var(--text-darken);
  text-decoration: none;
  background-color: transparent;
  box-shadow: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs .current-item {
  color: var(--text-lighten);
  background-color: transparent;
  box-shadow: none;
}

.share-box ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  display: table;
  width: 100%;
  text-align: center;
  table-layout: fixed;
  border-radius: 3px;
  background: transparent;
  border-left: none;
  border-color: #e1e1e1;
  margin-bottom: 3.2em;
}

.share-box ul li {
  margin: 0;
  padding: 0;
  display: table-cell;
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: #e1e1e1;
}

.share-box ul li a {
  display: block;
  padding: 15px 0;
  text-decoration: none;
  color: inherit;
  font-size: 14px;
  transition: all 0.2s ease-in-out;
  fill: #666;
}

.avia-related-tooltip {
  position: absolute;
  z-index: 9999999;
  padding: 0;
  width: 200px;
  border-radius: 2px;
  box-shadow: 0 3px 13px 0 rgba(0, 0, 0, 0.1);
  border-width: 1px;
  border-style: solid;
  padding: 15px;
  margin-top: -10px;
  display: none;
}

.social-link-facebook:hover a {
  fill: #fff;
  background-color: #37589b;
}

.social-link-twitter:hover a {
  fill: #fff;
  background-color: #46d4fe;
}

.social-link-pinterest:hover a {
  fill: #fff;
  background-color: #cb2027;
}

.social-link-linkedin:hover a {
  fill: #fff;
  background-color: #419cca;
}

.social-link-mail:hover a {
  fill: #fff;
  background-color: #9fae37;
}

.social {
  background: var(--white);
  padding: 0.8rem 1.2rem;
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  width: fit-content;
}
.social__icon {
  height: 2.5rem;
  margin-right: 0.6rem;
  display: block;
}
.social__icon img {
  max-height: 100%;
  width: auto;
}
.social__value {
  color: #0F0A52;
  font-weight: 600;
  font-size: 1.4rem;
  margin-right: 0.3rem;
  text-decoration: none;
}
.social__description {
  color: #0D075A;
  opacity: 0.75;
  font-size: 1.4rem;
  text-decoration: none;
}

.single-locations .text-block {
  margin: 1.6rem 0;
}
.single-locations .resources {
  margin: 1.6rem 0;
  display: grid;
  gap: 1.6rem;
}
@media (min-width: 36em) {
  .single-locations .resources {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 62em) {
  .single-locations .resources {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.single-locations .resources__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 36em) {
  .single-locations .resources h3 {
    grid-column: 1/3;
  }
}
@media (min-width: 62em) {
  .single-locations .resources h3 {
    grid-column: 1/5;
  }
}
.single-locations .resources a {
  font-size: 1.3rem;
  text-decoration: none;
}
.single-locations .resources a:hover {
  text-decoration: underline;
}
.single-locations .contacts {
  display: grid;
  gap: 1.6rem;
}
@media (min-width: 62em) {
  .single-locations .contacts {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 75em) {
  .single-locations .contacts {
    grid-template-columns: 1fr 2fr 1fr;
  }
}
.single-locations .contacts__info h4 {
  margin-bottom: 3.2rem;
  padding-bottom: 3.2rem;
  border-bottom: 1px solid var(--grey-200);
}
.single-locations .contacts__location {
  padding-left: 4rem;
  position: relative;
  margin-bottom: 3.2rem;
  padding-bottom: 3.2rem;
  border-bottom: 1px solid var(--grey-200);
  font-size: 1.3rem;
}
.single-locations .contacts__location svg {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 3rem;
  color: var(--primary);
}
.single-locations .contacts__cityinfo h4, .single-locations .contacts__cityinfo .list__info {
  margin-bottom: 3.2rem;
  padding-bottom: 3.2rem;
  border-bottom: 1px solid var(--grey-200);
}
.single-locations .contacts__cityinfo .info__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  gap: 1rem;
}
.single-locations .contacts__cityinfo .info__row .row__key {
  font-weight: 700;
}
.single-locations .contacts__cityinfo .info__row .row__value {
  text-align: right;
}
.single-locations .contacts__cityinfo .wiki__block {
  position: relative;
  top: 1px;
  font-size: 14px;
  font-weight: 700;
  text-align: right;
}
.single-locations .contacts__cityinfo .wiki__block .mh-icon-chevron-right svg {
  width: 1.2em;
  height: 1em;
  display: inline-block;
  margin-left: 0.5rem;
  vertical-align: -0.125em;
  padding: 0px;
  transform: rotate(-90deg);
}
.single-locations .contacts__cityinfo .weather-section .main_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.single-locations .contacts__cityinfo .weather-section .main_row .weather__temp {
  font-size: 5rem;
  font-weight: 700;
}
.single-locations .contacts__cityinfo .weather-section .main_row .desc_list {
  display: flex;
  flex-direction: column;
}
.single-locations .contacts__cityinfo .weather-section .main_row .desc_list .main_title {
  font-size: 1.4rem;
  font-weight: 500;
}
.single-locations .contacts__cityinfo .weather-section .main_row .desc_list .description {
  font-size: 1.3rem;
  font-weight: 300;
}
.single-locations .contacts__cityinfo .weather-section .params_row {
  display: flex;
  justify-content: space-between;
}
.single-locations .contacts__cityinfo .weather-section .params_row .item_name {
  font-weight: 600;
  font-size: 1.1rem;
}
.single-locations .contacts__cityinfo .weather-section .params_row .item_value {
  font-size: 1.2rem;
}
.single-locations .contacts__cityinfo .weather-section .params_row .metrics {
  font-size: 0.9rem;
}
.single-locations .contacts__schedule {
  font-size: 1.3rem;
}
@media (min-width: 36em) {
  .single-locations .contacts__schedule {
    display: grid;
    gap: 1.6rem;
    grid-template-columns: 1fr 1fr;
  }
}
.single-locations .contacts__schedule p {
  padding-left: 4rem;
  position: relative;
}
.single-locations .contacts__schedule p svg {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 3rem;
  color: var(--primary);
}
.single-locations .contacts__map {
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: rgba(10.2, 10.2, 10.2, 0.13) 0 1.6px 3.6px, rgba(10.2, 10.2, 10.2, 0.1) 0 0.3px 0.9px;
  position: relative;
  padding-bottom: 62.5%;
  height: 0;
}
@media (min-width: 62em) {
  .single-locations .contacts__map {
    padding-bottom: 0;
    height: auto;
  }
}
.single-locations .contacts__map iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}
