html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, main {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/**
 * * HTML5 display-role reset for older browsers
 * */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section,
main, summary {
  display: block;
}

/**
 * * inherit box model for all elements
 * */
*,
*::before,
*::after {
  box-sizing: inherit;
}

/**
 * * html root rules
 * * 1. set border-box for inheritance
 * * 2. avoid 300ms click delay on touch devices that support the `touch-action`
 * *    CSS property
 * * 3. Prevent adjustments of font size after orientation changes in IE, on
 * *    Windows Phone and iOS.
 * * 4. Setting @viewport causes scrollbars to overlap content in IE11 and Edge,
 * *    so we force a non-overlapping, non-auto-hiding scrollbar to counteract.
 * * 5. Change the default tap highlight to be completely transparent in iOS.
 * */
html {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  touch-action: manipulation;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 4 */
  -ms-overflow-style: scrollbar;
  /* 5 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);

  scroll-behavior: smooth;
}

/**
 * * body rules
 * * 1. reset line-height to 1
 * * 2. set base font-family to sans-serif
 * * 3. Set an explicit initial text-align value so that we can later use the
 * *    `inherit` value on things like `<th>` elements.
 * */
body {
  /* 1 */
  line-height: 1;
  /* 2 */
  font-family: sans-serif;
  /* 3 */
  text-align: left;
}

/**
 * * Future-proof rule: in browsers that support :focus-visible, suppress the focus outline
 * * on elements that programmatically receive focus but wouldn't normally show a visible
 * * focus outline. In general, this would mean that the outline is only applied if the
 * * interaction that led to the element receiving programmatic focus was a keyboard interaction,
 * * or the browser has somehow determined that the user is primarily a keyboard user and/or
 * * wants focus outlines to always be presented.
 * *
 * * See https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible
 * * and https://developer.paciellogroup.com/blog/2018/03/focus-visible-and-backwards-compatibility/
 * */
[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

/**
 * * Lists
 * */
ol, ul {
  list-style: none;
}

/**
 * * Quotes
 * */
blockquote, q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

/**
 * * Tables
 * */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  caption-side: bottom;
}

/**
 * * Table Headers
 * * 1. Matches default `<td>` alignment by inheriting from the `<body>`, or the
 * *    closest parent with a set `text-align`.
 * * 2. Fix alignment for Safari
 * */
th {
  /* 1 */
  text-align: inherit;
  /* 2 */
  text-align: -webkit-match-parent;
}

/**
 * * Horizontal Lines
 * * 1. Add the correct box sizing in Firefox.
 * * 2. Show the overflow in Edge and IE.
 * */
hr {
  /* 1 */
  box-sizing: content-box;
  height: 0;
  /* 2 */
  overflow: visible;
}

/**
 * * Preformatted Text
 * * 1. Correct the inheritance and scaling of font size in all browsers.
 * * 2. Don't allow content to break outside
 * * 3. We have @viewport set which causes scrollbars to overlap content in IE11
 * *    and Edge, so we force a non-overlapping, non-auto-hiding scrollbar to
 * *    counteract.
 * */
pre,
code,
kbd,
samp {
  /* 1 */
  font-family: monospace, monospace;
}

pre {
  /* 2 */
  overflow: auto;
  /* 3 */
  -ms-overflow-style: scrollbar;
}

/**
 * * Links
 * * 1. Remove the gray background on active links in IE 10.
 * * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 * */
a {
  /* 1 */
  background-color: transparent;
  /* 2 */
  -webkit-text-decoration-skip: objects;
}

/**
 * * 1. Remove the bottom border in Chrome 57- and Firefox 39-
 * * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 * * 3. Add explicit cursor to indicate changed behavior.
 * * 4. Prevent the text-decoration to be skipped.
 * */
abbr[title] {
  /* 1 */
  border-bottom: 0;
  /* 2 */
  text-decoration: underline;
  text-decoration: underline dotted;
  /* 3 */
  cursor: help;
  /* 4 */
  text-decoration-skip-ink: none;
}

address {
  font-style: normal;
  line-height: inherit;
}

/**
 * * Add the correct font weight in Chrome, Edge, and Safari.
 * */
b,
strong {
  font-weight: bolder;
}

/**
 * * Add the correct font size in all browsers.
 * */
small {
  font-size: 80%;
}

/**
 * * Prevent `sub` and `sup` elements from affecting the line height in
 * * all browsers.
 * */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/**
 * * Prevent `em` being affected from global reset
 * */
em {
  font-style: italic;
}

/**
 * * Remove the border on images inside links in IE 10.
 * */
img {
  border-style: none;
}

/**
 * * Hide SVG overflow in IE
 * */
svg:not(:root) {
  overflow: hidden;
}

/**
 * * Remove the default `border-radius` that macOS Chrome adds.
 * * Details at https://github.com/twbs/bootstrap/issues/24093
 * */
button {
  border-radius: 0;
}

/**
 * * Work around a Firefox/IE bug where the transparent `button` background
 * * results in a loss of the default `button` focus styles.
 * * Credit: https://github.com/suitcss/base/
 * */
button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

/**
 * * form element resets
 * * 1. Remove the margin in Firefox and Safari
 * * 2. inherit font rules
 * */
input,
button,
select,
optgroup,
textarea {
  /* 1 */
  margin: 0;
  /* 2 */
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/**
 * * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 * *    controls in Android 4.
 * * 2. Correct the inability to style clickable types in iOS and Safari.
 * */
button,
[type=reset],
[type=submit],
[type=button] {
  /* 2 */
  -webkit-appearance: button;
}

/**
 * * Remove the default appearance of temporal inputs to avoid a Mobile Safari
 * * bug where setting a custom line-height prevents text from being vertically
 * * centered within the input.
 * * See https://bugs.webkit.org/show_bug.cgi?id=139848
 * * and https://github.com/twbs/bootstrap/issues/11266
 * */
input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

/**
 * * 1. Remove the default vertical scrollbar in IE.
 * * 2. Textareas should really only resize vertically so they don't break their
 * *    (horizontal) containers.
 * */
textarea {
  overflow: auto;
  resize: vertical;
}

/**
 * * Show the overflow in IE.
 * */
button,
input {
  overflow: visible;
}

/**
 * * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * */
button,
select {
  text-transform: none;
}

/**
 * * Set the cursor for non-`<button>` buttons
 * * Details at https://github.com/twbs/bootstrap/pull/30562
 * */
[role=button] {
  cursor: pointer;
}

/**
 * * Remove the inheritance of word-wrap in Safari.
 * * See https://github.com/twbs/bootstrap/issues/24990
 * */
select {
  word-wrap: normal;
}

/**
 * * Remove inner border and padding from Firefox, but don't restore the outline
 * * like Normalize.
 * */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * * 1. Add the correct box sizing in IE 10-
 * * 2. Remove the padding in IE 10-
 * */
input[type=radio],
input[type=checkbox] {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  padding: 0;
}

/**
 * * Suppress the focus outline on elements that cannot be accessed via keyboard.
 * * This prevents an unwanted focus outline from appearing around elements that
 * * might still respond to pointer events.
 * * Credit: https://github.com/suitcss/base
 * */
[tabindex="-1"]:focus {
  outline: 0 !important;
}

/**
 * * Browsers set a default `min-width: min-content` on fieldsets,
 * * unlike e.g. `<div>`s, which have `min-width: 0` by default.
 * * So we reset that to ensure fieldsets behave more like a standard block element.
 * * See https://github.com/twbs/bootstrap/issues/12359
 * * and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements
 * */
fieldset {
  min-width: 0;
}

/**
 * * 1. Correct the text wrapping in Edge and IE.
 * * 2. Correct the color inheritance from `fieldset` elements in IE.
 * * 3. Set display to block for all browsers
 * */
legend {
  /* 1 */
  max-width: 100%;
  white-space: normal;
  /* 2 */
  color: inherit;
  /* 3 */
  display: block;
}

/**
 * * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 * */
progress {
  vertical-align: baseline;
}

/**
 * * 1. Remove the default vertical scrollbar in IE 10+.
 * * 2. Textareas should really only resize vertically so they don't break their
 * *    (horizontal) containers.
 * */
textarea {
  /* 1 */
  overflow: auto;
  /* 2 */
  resize: vertical;
}

/**
 * * 1. Add the correct box sizing in IE 10.
 * * 2. Remove the padding in IE 10.
 * */
[type=checkbox],
[type=radio] {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  padding: 0;
}

/**
 * * Correct the cursor style of increment and decrement buttons in Chrome.
 * */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * * 1. Correct the odd appearance in Chrome and Safari.
 * * 2. Correct the outline style in Safari.
 * */
[type=search] {
  /* 1 */
  -webkit-appearance: textfield;
  /* 2 */
  outline-offset: -2px;
}

/**
 * * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 * */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * * 1. Correct the inability to style clickable types in iOS and Safari.
 * * 2. Change font properties to `inherit` in Safari.
 * */
::-webkit-file-upload-button {
  /* 1 */
  -webkit-appearance: button;
  /* 2 */
  font: inherit;
}

/**
 * * Correct element display for output
 * */
output {
  display: inline-block;
}

/**
 * * Add the correct display in IE 10+.
 * */
template {
  display: none;
}

/**
 * * Always hide an element with the `hidden` HTML attribute (from PureCSS).
 * * Needed for proper display in IE 10-.
 * */
[hidden] {
  display: none;
}

/**
 * * adds resets for buttons that are not covered by reset-and-normalize base
 * */
[role=button],
input[type=button],
input[type=reset],
input[type=submit],
button {
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  color: inherit;
  text-align: inherit;
  background: none;
  appearance: button;
  user-select: none;
}
[role=button]:not(:disabled),
input[type=button]:not(:disabled),
input[type=reset]:not(:disabled),
input[type=submit]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}
[role=button]:-moz-focusring,
input[type=button]:-moz-focusring,
input[type=reset]:-moz-focusring,
input[type=submit]:-moz-focusring,
button:-moz-focusring {
  outline: none;
}
[role=button]:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus,
button:focus {
  outline: none;
}

@font-face {
  font-family: "Halcom";
  font-weight: 350;
  src: url("/wp-content/themes/mpr/assets/fonts/halcom/halcom-book.otf") format("opentype");
}
@font-face {
  font-family: "Halcom";
  font-weight: 400;
  src: url("/wp-content/themes/mpr/assets/fonts/halcom/halcom-regular.otf") format("opentype");
}
@font-face {
  font-family: "Halcom";
  font-weight: 500;
  src: url("/wp-content/themes/mpr/assets/fonts/halcom/halcom-medium.otf") format("opentype");
}
@font-face {
  font-family: "Halcom";
  font-weight: 700;
  src: url("/wp-content/themes/mpr/assets/fonts/halcom/halcom-bold.otf") format("opentype");
}
@font-face {
  font-family: "Halcom";
  font-weight: 800;
  src: url("/wp-content/themes/mpr/assets/fonts/halcom/halcom-extrabold.otf") format("opentype");
}
@font-face {
  font-family: "Halcom";
  font-weight: 900;
  src: url("/wp-content/themes/mpr/assets/fonts/halcom/halcom-black.otf") format("opentype");
}
html {
  font-size: 62.5%;
}

body {
  font-family: "Halcom";
  font-weight: 350;
  color: #000000;
  line-height: 1.6rem;
  font-size: 1.6rem;
}

.footer {
  background-color: #333333;
}
.footer__container {
  padding: 7.4rem 4rem;
}
@media (min-width: 50em) {
  .footer__container {
    display: flex;
    padding: 3.2rem 0;
    max-width: 128rem;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
  }
}
.footer__copyright {
  color: #ffffff;
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 1.5rem;
  text-align: center;
  max-width: 14rem;
  margin: 0 auto 5.2rem;
}
@media (min-width: 50em) {
  .footer__copyright {
    max-width: 100%;
    text-align: left;
    margin: 0;
    font-size: 1.4rem;
  }
}

.dot {
  border-radius: 50%;
  background-color: #00CABD;
  width: 1.4rem;
  height: 1.4rem;
  display: inline-block;
}
@media (min-width: 50em) {
  .dot {
    width: 3.2rem;
    height: 3.2rem;
  }
}
@media (min-width: 50em) {
  .dot--small {
    width: 1.6rem;
    height: 1.6rem;
  }
}

.hero {
  position: relative;
}
@media (max-width: 50em) {
  .hero {
    overflow: hidden;
  }
}
.hero:after {
  content: "";
  position: absolute;
  top: -55%;
  right: -8%;
  border-radius: 50%;
  width: 110rem;
  height: 110rem;
  border: 2rem solid #00CABD;
  z-index: -1;
}
@media (max-width: 50em) {
  .hero:after {
    top: -70%;
    right: -4%;
  }
}
.hero__content {
  max-width: 128rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
  height: 90rem;
}
@media (max-width: 50em) {
  .hero__content {
    flex-direction: column-reverse;
  }
}
.hero__content__text {
  flex: 1;
}
@media (max-width: 50em) {
  .hero__content__text {
    transform: translateY(-13rem);
    padding: 0 2rem;
  }
}
.hero__content__text__title {
  margin-bottom: 4.8rem;
}
@media (max-width: 50em) {
  .hero__content__text__title {
    margin-bottom: 3.2rem;
  }
}
.hero__content__text__cta a {
  background-color: #00CBBE;
  color: #ffffff;
  font-weight: 700;
  font-size: 2rem;
  line-height: 2rem;
  text-decoration: none;
  padding: 2.6rem 5rem;
  display: inline-block;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 50em) {
  .hero__content__text__cta a {
    font-size: 1.4rem;
    line-height: 1.4rem;
    padding: 2rem 3.2rem;
  }
}
.hero__content__text__cta a:hover {
  background-color: #00DDCF;
  color: #f1f1f1;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}
.hero__content__image {
  height: 62rem;
  flex: 2;
  position: absolute;
  right: 0;
  top: 12rem;
}
@media (max-width: 50em) {
  .hero__content__image {
    position: static;
    top: 0;
    left: 0;
    height: 48rem;
  }

  .hero__content__image img {
    width: 92%;
  }
}
.hero__content__image img {
  /* width: 100%; */
  height: 100%;
  object-fit: contain;
}

.faq {
  margin-bottom: 12rem;
}
.faq__container {
  max-width: 128rem;
  margin: 0 auto;
}
@media (max-width: 50em) {
  .faq__container {
    padding: 0 2rem;
  }
}
.faq__item {
  border: 0.3rem solid #E4E5EB;
  padding: 7rem 0;
}
@media (max-width: 50em) {
  .faq__item {
    padding: 4rem 0;
  }
}
.faq__item__header {
  position: relative;
}
.faq__item__question h3 {
  font-size: 5rem;
  line-height: 5rem;
  font-weight: 700;
  text-align: center;
  max-width: 72rem;
  margin: 0 auto;
}
.faq__item__question h3 .last-word::after {
  content: ".";
  color: #00CABD;
  font-size: 8rem;
  line-height: 0;
}

@media (max-width: 50em) {
  .faq__item__question h3 {
    font-size: 2.5rem;
    line-height: 2.5rem;
    width: 73%;
    text-align: start;
    margin-left: 2rem;
  }
  .faq__item__question h3 .last-word::after {
    font-size: 5rem;
  }
}
.faq__item__question h3 .dot {
  width: 1.4rem;
  height: 1.4rem;
  margin-left: 0.4rem;
}
@media (max-width: 50em) {
  .faq__item__question h3 .dot {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.faq__item__trigger {
  position: absolute !important;
  right: 7rem;
  top: 50%;
  transform: translateY(-50%);
}
.faq__item__body {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  padding: 6.4rem 7rem 0;
  justify-content: space-between;
}
@media (max-width: 50em) {
  .faq__item__body {
    padding: 0 2.4rem;
    flex-direction: column;
  }
}
.faq__item__body__image {
  width: 48rem;
  height: 48rem;
}
@media (max-width: 50em) {
  .faq__item__body__image {
    max-width: 32rem;
    max-height: 32rem;
    width: 100%;
    height: 100%;
    margin-top: 4rem;
  }
}
.faq__item__body__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.faq__item__body__text {
  margin-right: 10rem;
  font-size: 2rem;
  line-height: 3.4rem;
}
@media (max-width: 50em) {
  .faq__item__body__text {
    margin-right: 0;
    margin-top: 4rem;
  }
}
.faq__item__body__text p {
  margin-bottom: 4rem;
}
.faq__item__body__text p strong {
  font-weight: 700;
}
.faq__item__body__cta a {
  border: 0.3rem solid #E4E5EB;
  text-decoration: none;
  padding: 1.6rem 3.2rem;
  font-size: 1.6rem;
  line-height: 1.6rem;
  font-weight: 700;
  color: #000000;
  transition: all 0.25s ease-in-out;
  display: inline-block;
}
.faq__item__body__cta a:hover {
  border-color: #00CABD;
}

.ac {
  border: none;
  margin: 0;
  background-color: transparent;
}
.ac:not(:last-child) {
  margin-bottom: 4rem;
}

.ac .ac-trigger::after {
  content: url(/wp-content/themes/mpr/assets/images/lp/trigger.svg?_t=1663662415);
  width: 8rem;
  height: 8rem;
}

.ac .ac-trigger {
	height: 100%;
}

@media (max-width: 50em) {
  .ac .ac-trigger::after, 
  .is-active.ac .faq__item .ac-trigger::after {
    /* display: none; */
    transform: scale(.5) translate(212%,-95%) !important;
  }
}

.numbers {
  margin-bottom: 3rem;
  transform: translateY(-10rem);
}
@media (max-width: 50em) {
  .numbers {
    margin-bottom: 0rem;
  }
}
.numbers__container {
  max-width: 128rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 50em) {
  .numbers__container {
    flex-direction: column;
    padding: 0 2rem;
  }
}
.numbers__item {
  flex: 1;
}
.numbers__item:not(:last-child) {
  margin-right: 4rem;
}
@media (max-width: 50em) {
  .numbers__item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 4rem;
  }
}
.numbers__item h3 {
  font-size: 5rem;
  line-height: 8rem;
  color: #00CABD;
  font-weight: 800;
}
@media (max-width: 50em) {
  .numbers__item h3 {
    font-size: 3.2rem;
    line-height: 3.2rem;
  }
}
.numbers__item__info {
  font-size: 2rem;
  line-height: 3.2rem;
}
.portfolio {
  position: relative;
  padding: 10rem 0 0;
}
.portfolio:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  border-radius: 50%;
  width: 110rem;
  height: 110rem;
  border: 2rem solid #00CABD;
  z-index: -1;
  transform: translateY(-50%) translateX(-40%);
}
@media (max-width: 50em) {
  .portfolio:after {
    transform: translateY(0) translateX(-70%);
    top: 0;
  }
}
.portfolio__container {
  max-width: 128rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 50em) {
  .portfolio {
    padding-top: 12rem;
    padding-bottom: 7rem;
  }
  .portfolio__container {
    flex-direction: column;
    padding: 0;
  }
}
.portfolio__item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.portfolio__item:not(:last-child) {
  margin-right: 8rem;
}
@media (max-width: 50em) {
  .portfolio__item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 8rem;
  }
}
.portfolio__item__image {
  width: 26rem;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.32);
  display: flex;
}
@media (max-width: 50em) {
  .portfolio__item__image {
    width: 100%;
  }
}
.portfolio__item__image--large {
  width: 34rem;
}
@media (max-width: 50em) {
  .portfolio__item__image--large {
    width: 100%;
  }
}
.portfolio__item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials {
  margin-bottom: 12rem;
}
@media (max-width: 50em) {
  .testimonials {
    margin-bottom: 10rem;
  }
}
.testimonials__container {
  max-width: 76rem;
  margin: 0 auto;
}
@media (max-width: 50em) {
  .testimonials__container {
    padding: 0 2rem;
  }
}
.testimonials__item {
  display: flex;
}
@media (max-width: 50em) {
  .testimonials__item {
    position: relative;
  }
}
.testimonials__item__quote {
  margin-right: 3.2rem;
}
@media (max-width: 50em) {
  .testimonials__item__quote {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transform: translateY(-50%);
  }
}
.testimonials__item__text {
  font-size: 2rem;
  line-height: 3.4rem;
}
@media (max-width: 50em) {
  .testimonials__item__text {
    font-size: 1.8rem;
    line-height: 3.2rem;
  }
}
.testimonials__item__text__body p {
  margin-bottom: 4.4rem;
  text-align: justify;
}
.testimonials__item__text__author {
  font-weight: 700;
}

.text__content {
  max-width: 62rem;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 50em) {
  .text__content {
    padding: 0 2rem;
  }
}
.text__content p {
  font-size: 2rem;
  line-height: 3.4rem;
  margin-bottom: 4rem;
}
@media (max-width: 50em) {
  .text__content p {
    font-size: 2rem;
    line-height: 3.4rem;
  }
}
.text__content p strong {
  font-weight: 700;
}
.text__cta {
  max-width: 62rem;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 50em) {
  .text__cta {
    padding: 0 2rem;
  }
}
.text__cta a {
  border: 0.3rem solid #E4E5EB;
  text-decoration: none;
  padding: 1.6rem 3.2rem;
  font-size: 1.6rem;
  line-height: 1.6rem;
  font-weight: 700;
  color: #000000;
  transition: all 0.25s ease-in-out;
  display: inline-block;
}
.text__cta a:hover {
  border-color: #00CABD;
}

.header {
  position: absolute;
  top: 4rem;
  left: 0;
	z-index: 1;
}
.header__container {
  max-width: 136rem;
  margin: 0 auto;
  padding: 0 6rem;
}
@media (max-width: 50em) {
  .header__container {
    padding: 0 2rem;
  }
}
.header__logo {
  height: 5rem;
}
@media (max-width: 50em) {
  .header__logo {
    height: 4rem;
  }
}
.header__logo img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

.title {
  font-size: 7rem;
  line-height: 8rem;
  font-weight: 900;
  max-width: 68rem;
  position: relative;
  z-index: 1;
}
.title--border {
  border: 0.5rem solid #000000;
  border-radius: 40rem;
  padding: 0 3rem;
}
.title--underline {
  text-decoration: underline;
}
.title .dot {
  width: 2rem;
  height: 2rem;
}
@media (max-width: 50em) {
  .title {
    font-size: 3.5rem;
    line-height: 4.5rem;
  }
  .title--border {
    border: 0.3rem solid #000000;
  }
  .title .dot {
    width: 1.2rem;
    height: 1.2rem;
  }
}


.testimonials__container {
	position: relative
}

.testimonials__item__quote {
	position: absolute;
}

.testimonials__item {
	padding-left: 8rem;
}

@media (max-width: 50em) {
	.testimonials__item {
	padding-left: 0;
}
	.testimonials__item__quote {
		top: 0;
		left: 2rem;
	}
	
	.social {
		justify-content: center;
		align-items: center;
		display: flex;
	}

}

.glide__bullets {
  position: absolute;
  right: 0;
  top: -3rem;
}

.glide__bullet {
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid #E4E5EB;
  border-radius: 1rem;
}
.glide__bullet.glide__bullet--active {
  background-color: #E4E5EB;
}

.social a:not(:last-child) {
	margin-right: 2rem;
  text-decoration: none;
}

img.social__item__icon {
  transition: all 0.3s ease-in-out;
}

img.social__item__icon:hover {
  transform: scale(1.1) rotate(15deg);
  opacity: 0.9;
}


/** Contact Section **/
.contact {
  background: #E4E5EB;
  padding: 12rem 0;
}

.contact h3 {
  font-size: 5rem;
  line-height: 5rem;
  letter-spacing: -0.1rem;
  font-weight: 900;
}

.contact h3 span {
  color: #00CBBE;
}

.contact p {
  font-size: 2rem;
  letter-spacing: -0.04rem;
  line-height: 3.4rem;
}

.contact img {
  max-width: 100%;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
}

.contact img:hover {
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.contact form {
  width: 100%;
  margin: 4rem auto 0 auto;
}

.contact .wpcf7 form .wpcf7-response-output {
  margin: 0;
  padding: 1rem;
}

.contact__left {
  padding-right: 3rem;
}

.contact__right {
  padding-left: 12rem;
}

.form__row {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 3rem;
  display: flex;
  justify-content: space-between;
}

.form__row .wpcf7-spinner {
  margin: 2.4rem;
}

.form__row__input {
  width: calc(50% - 1rem);
  display: inline-block;
  box-sizing: border-box;
}

.form__row .form__row__input .selected-flag {
  background-color: #F3F4F7;
  border-right: 1px solid #C5C7CC;
}

.form__row .form__row__input input {
  background: #fff;
  border: 1px solid #C5C7CC;
  height: 6.5rem;
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 2rem;
  color: #000;
  transition: all 0.25s ease-in-out;
}

.form__row .form__row__input input:focus {
  outline: none;
  border-color: #00CBBE;
}

.form__row .form__row__input label {
  font-size: 1.4rem;
  line-height: 1.4rem;
  letter-spacing: -0.028rem;
  font-weight: 700;
  margin-left: 2rem;
  margin-bottom: 1rem;
  color: #000000;
  text-transform: uppercase;
  display: block;
}

.form__row .form__row__input .wpcf7-not-valid-tip {
  margin-top: 1rem;
}

.form__row input[type="submit"] {
  background: #00CBBE;
  border: 0;
  border-radius: 0;
  color: #fff;
  font-size: 2rem;
  line-height: 2.1rem;
  letter-spacing: -0.04rem;
  font-weight: 700;
  
  padding: 2.4rem 3.4rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
  
  margin-top: 1rem;
  text-align: center;
}

.form__row input[type="submit"]:hover {
  background-color: #00DDCF;
  color: #f1f1f1;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

/* Media Query for Mobile */
@media screen and (max-width: 768px) {
  .form__row {
    flex-direction: column;
    margin-bottom: 1rem;
  }

  .form__row .wpcf7-spinner {
    margin: 1rem auto;
  }
  
  .form__row__input {
    flex: 0 0 100%;
    width: 100%;
    margin-bottom: 2rem;
  }

  .contact h3 {
    font-size: 4rem;
    line-height: 4.5rem;
    letter-spacing: -0.1rem;
  }
  
  .contact__left {
    margin-bottom: 4rem;
  }

  .contact__left,
  .contact__right {
    padding: 0;
  }
}


/** General Grid Style **/
.container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 128rem;
  margin: 0 auto;
}

.column-2-3 {
  flex: 0 0 calc(66.667% - 1rem);
  margin-right: 1rem;
}

.column-1-3 {
  flex: 0 0 calc(33.333% - 1rem);
  margin-left: 1rem;
}

/* Media Query for Mobile */
@media screen and (max-width: 768px) {
  .container {
    flex-direction: column;
  }
  
  .column-2-3,
  .column-1-3 {
    flex: 0 0 100%;
    margin-right: 4rem;
    margin-left: 4rem;
  }
}

/* Margin utilities */
.m-0 { margin: 0; }
.m-1 { margin: 1rem; }
.m-2 { margin: 3rem; }
.m-3 { margin: 6rem; }
.m-4 { margin: 9rem; }
.m-5 { margin: 12rem; }

/* Margin-top utilities */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 3rem; }
.mt-3 { margin-top: 6rem; }
.mt-4 { margin-top: 9rem; }
.mt-5 { margin-top: 12rem; }

/* Margin-right utilities */
.mr-0 { margin-right: 0; }
.mr-1 { margin-right: 1rem; }
.mr-2 { margin-right: 3rem; }
.mr-3 { margin-right: 6rem; }
.mr-4 { margin-right: 9rem; }
.mr-5 { margin-right: 12rem; }

/* Margin-bottom utilities */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 3rem; }
.mb-3 { margin-bottom: 6rem; }
.mb-4 { margin-bottom: 9rem; }
.mb-5 { margin-bottom: 12rem; }

/* Margin-left utilities */
.ml-0 { margin-left: 0; }
.ml-1 { margin-left: 1rem; }
.ml-2 { margin-left: 3rem; }
.ml-3 { margin-left: 6rem; }
.ml-4 { margin-left: 9rem; }
.ml-5 { margin-left: 12rem; }

/* Padding utilities */
.p-0 { padding: 0; }
.p-1 { padding: 1rem; }
.p-2 { padding: 3rem; }
.p-3 { padding: 6rem; }
.p-4 { padding: 9rem; }
.p-5 { padding: 12rem; }

/* Padding-top utilities */
.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 1rem; }
.pt-2 { padding-top: 3rem; }
.pt-3 { padding-top: 6rem; }
.pt-4 { padding-top: 9rem; }
.pt-5 { padding-top: 12rem; }

/* Padding-right utilities */
.pr-0 { padding-right: 0; }
.pr-1 { padding-right: 1rem; }
.pr-2 { padding-right: 3rem; }
.pr-3 { padding-right: 6rem; }
.pr-4 { padding-right: 9rem; }
.pr-5 { padding-right: 12rem; }

/* Padding-bottom utilities */
.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 1rem; }
.pb-2 { padding-bottom: 3rem; }
.pb-3 { padding-bottom: 6rem; }
.pb-4 { padding-bottom: 9rem; }
.pb-5 { padding-bottom: 12rem; }

/* Padding-left utilities */
.pl-0 { padding-left: 0; }
.pl-1 { padding-left: 1rem; }
.pl-2 { padding-left: 3rem; }
.pl-3 { padding-left: 6rem; }
.pl-4 { padding-left: 9rem; }
.pl-5 { padding-left: 12rem; }