/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

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

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

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

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

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

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

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

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

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

/**
 * 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 {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

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

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

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

/**
 * Remove the inner border and padding in Firefox.
 */

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

/**
 * Restore the focus styles unset by the previous rule.
 */

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

/**
 * Correct the padding in Firefox.
 */

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

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * 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"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[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 {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 992px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Fonts */
@font-face {
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  src: url('//143223009.fs1.hubspotusercontent-eu1.net/hubfs/143223009/raw_assets/public/hups/fonts/Roboto/Roboto-Regular.woff2') format('woff2'),
    url('//143223009.fs1.hubspotusercontent-eu1.net/hubfs/143223009/raw_assets/public/hups/fonts/Roboto/Roboto-Regular.woff') format('woff');
}

@font-face {
  font-family: 'Calibre';
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  src: url('//143223009.fs1.hubspotusercontent-eu1.net/hubfs/143223009/raw_assets/public/hups/fonts/Calibre/Calibre-Regular.woff2') format('woff2'),
    url('//143223009.fs1.hubspotusercontent-eu1.net/hubfs/143223009/raw_assets/public/hups/fonts/Calibre/Calibre-Regular.woff') format('woff');
}

@font-face {
  font-family: 'Calibre';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('//143223009.fs1.hubspotusercontent-eu1.net/hubfs/143223009/raw_assets/public/hups/fonts/Calibre/Calibre-Medium.woff2') format('woff2'),
    url('//143223009.fs1.hubspotusercontent-eu1.net/hubfs/143223009/raw_assets/public/hups/fonts/Calibre/Calibre-Medium.woff') format('woff');
}

@font-face {
  font-family: 'Calibre';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url('//143223009.fs1.hubspotusercontent-eu1.net/hubfs/143223009/raw_assets/public/hups/fonts/Calibre/Calibre-Semibold.woff2') format('woff2'),
    url('//143223009.fs1.hubspotusercontent-eu1.net/hubfs/143223009/raw_assets/public/hups/fonts/Calibre/Calibre-Semibold.woff') format('woff');
}

@font-face {
  font-family: 'Degular Display';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url('//143223009.fs1.hubspotusercontent-eu1.net/hubfs/143223009/raw_assets/public/hups/fonts/DegularDisplay/DegularDisplay-SemiBold.woff2') format('woff2'),
    url('//143223009.fs1.hubspotusercontent-eu1.net/hubfs/143223009/raw_assets/public/hups/fonts/DegularDisplay/DegularDisplay-SemiBold.woff') format('woff');
}

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

:root {
  --white-color: #ffffff;
  --black-color: #000000;
  --text-black: #1E1E1E;
  --soft-black: #636363;
  --purple: #481268;
  --purple-hover: #2A0D3B;
  --blue: #73CCE6;
  --blue-75: #9AD9EB;
  --blue-50: #BBE5F2;
  --light-blue: #E1FFFD;
  --medium-blue: #73CCE6;
  --yellow: #F1DE3D;
  --yellow-hover: #E0CE39;
  --green: #006D85;
  --green-75: #78B5C3;
  --green-50: #B8DCE4;
  --violet: #B55FEF;
  --violet-50: #F0DEFD;
  --brown: #DDB367;
  --brown-50: #F7F0E3;
}

html {
  scroll-behavior: smooth;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

body {
  font-family: 'Calibre';
  color: var(--text-black);
  font-size: 18px;
  line-height: 1.33;
  overflow-wrap: break-word;
}

body.menu-active {
  overflow: hidden;
}

.body-wrapper {
  position: relative;
}


/* Paragraphs */
p {
  margin: 0 0 1rem;
}
p:last-child {
  margin: 0;
}

strong, b {
  font-weight: 500;
}

/* Anchors */
a {
  color: var(--purple);
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Headings */
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: 'Degular Display';
  color: var(--purple);
  font-weight: 600;
  margin: 0 0 18px;
  display: block;
}
h1, .h1 {
  font-size: 36px;
  line-height: 1.05;
}
h2, .h2 {
  font-size: 27px;
  line-height: 1.11;
}
h3, .h3 {
  font-size: 24px;
  line-height: 1.16;
}
h4, .h4 {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.26;
}
h5, .h5 {
  color: var(--text-black);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.33;
}
h6, .h6 {
  color: var(--text-black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.33;
}

@media(min-width: 768px) {
  h1, .h1 {
    font-size: 50px;
    line-height: 1;
  }
  h2, .h2 {
    font-size: 40px;
    line-height: 1;
  }
  h3, .h3 {
    font-size: 27px;
    line-height: 1.18;
  }
}

/* Lists */

ul,
ol {
  margin: 14px 0 0;
  padding: 0 0 0 26px;
}

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

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */
pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */
blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */
hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */
img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}
.dnd-section > .row-fluid {
  padding: 0 20px;
  max-width: 1440px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .dnd-section > .row-fluid {
    padding: 0 30px;
  }
}
[class*=full-width-section] > .row-fluid {
  padding: 0;
}
[class*=full-width-section] > .row-fluid .dnd-column {
  padding: 0;
}


/* dynamic page */
.call-to-action .hsfc-Step .hsfc-Step__Content {
  padding: 0 !important;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* button */
.hs-button, .cta_button {
  background-color: var(--yellow);
  border: 1px solid var(--yellow);
  border-radius: 10px;
  color: var(--purple);
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  display: inline-block;
  padding: 11px 28px 7px;
  text-align: center;
  text-decoration: none;
  min-width: 205px;
  transition: all 0.4s ease-in-out;
  position: relative;
}

.hs-button:hover, .cta_button:hover {
  background-color: var(--yellow-hover);
  border-color: var(--yellow-hover);
  text-decoration: underline;
}

.cta_button.outlined-purple {
  background-color: transparent;
  border-color: var(--purple);
}
.cta_button.outlined-purple:hover {
  text-decoration: underline;
}

.cta_button.outlined-white {
  color: var(--white-color);
  background-color: transparent;
  border-color: var(--white-color);
}
.cta_button.outlined-white:hover {
  text-decoration: underline;
}

.cta_button .icon {
  display: inline-block;
  width: 8px;
  margin-left: 3px;
}

.cta_button.phone_number {
  padding: 6px 28px;
}
.cta_button.phone_number svg {
  left: -8px;
  position: relative;
  top: 5px;
}
.cta_button.email_address svg {
  left: -8px;
  position: relative;
  top: 3px;
}
/* Fields */

.hs-form-field {
  margin-bottom: 25px;
}

/* Labels */

form label {
  color: var(--purple);
  display: block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 8px;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  background-color: var(--white-color);
  border: 1px solid var(--blue);
  box-shadow: none;
  outline: none;
  border-radius: 8px;
  color: #1E1E1E;
  font-size: 18px;
  line-height: 22px;
  padding: 14px 15px 10px;
  width: 100% !important;
}

form input[type=text]::placeholder,
form input[type=search]::placeholder,
form input[type=email]::placeholder,
form input[type=password]::placeholder,
form input[type=tel]::placeholder,
form input[type=number]::placeholder,
form input[type=file]::placeholder,
form select::placeholder,
form textarea::placeholder {
  color: #B6B6B6;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

form select {
  appearance: none;
  padding: 14px 40px 10px 15px;
}

form .select-holder {
  position: relative;
}

form .select-holder::after {
  background-image: url("data:image/svg+xml,%3Csvg width='17' height='9' viewBox='0 0 17 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.18136 6.49258L14.5414 0.303863C14.9577 -0.101288 15.6341 -0.101288 16.0505 0.303863C16.4668 0.709013 16.4668 1.36716 16.0505 1.77231L8.93591 8.69525C8.72682 8.89871 8.45409 8.99956 8.18136 8.99956C7.90864 8.99956 7.63591 8.89871 7.42682 8.69525L0.312273 1.77231C-0.104091 1.36716 -0.104091 0.709013 0.312273 0.303863C0.728636 -0.101288 1.405 -0.101288 1.82136 0.303863L8.18136 6.49258Z' fill='%23481268'/%3E%3C/svg%3E%0A");
  content: "";
  height: 9px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0 0 13px;
  padding-bottom: 10px;
  border-bottom: 0.5px solid #73CCE6;
}

form .inputs-list.hs-error-msgs li {
  padding: 0;
  border: none;
  margin: 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form .inputs-list .hs-form-checkbox-display {
  position: relative;
  cursor: pointer;
  padding-left: 35px;
  margin: 0;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

form input[type=checkbox] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
form input[type="checkbox"] + label::before, form input[type="checkbox"] + span::before {
  border: 1px solid #73CCE6;
  border-radius: 1px;
  content: "";
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  top: 0;
  width: 20px; 
}
form input[type="checkbox"] + label::after, form input[type="checkbox"] + span::after {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 14px auto;
  content: "";
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  top: 0;
  transform: scale(0);
  transition: all .2s ease-out;
  width: 20px;
}
form input[type="checkbox"]:checked + label::before, form input[type="checkbox"]:checked + span::before {
  background-color: #006D85;
}
form input[type="checkbox"]:checked + label::after, form input[type="checkbox"]:checked + span::after {
  transform: scale(1);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18.217' height='13.264'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' d='m.707 6.19 5.661 5.66L17.51.707'/%3E%3C/svg%3E");
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: var(--purple);
}

.hs-input.invalid.error {
  border-color: #E60303;
}
.inputs-list.invalid.error li {
  border-bottom-color: #E60303;
}
.inputs-list.invalid.error input[type="checkbox"] + span::before {
  border-color: #E60303;
}

.hs-error-msg, .hs-error-msgs .hs-main-font-element {
  color: #E60303;
  margin: 8px 0 0;
  font-weight: 400;
  padding-left: 18px;
}
.hs_error_rollup {
  margin-bottom: 15px;
}
.hs_error_rollup .hs-error-msgs .hs-main-font-element {
  text-align: center;
  padding-left: 0;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

.header {
  padding: 21px 15px;
  position: relative;
}
.header .container {
  max-width: 1440px;
}
.header .header__holder {
  display: flex;
  flex-flow: row wrap;
}
.header .logo {
  max-width: 87px;
  line-height: 0;
}
.header .header__menu {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-end;
  width: calc(100% - 87px);
  padding-left: 30px;
}
.header #main-nav ul {
  border-top: 1px solid #48126880;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header #main-nav ul li {
  position: relative;
}
.header #main-nav ul li a {
  font-size: 20px;
  display: block;
  padding: 22px 40px 14px 0;
  border-bottom: 1px solid #48126880;
  position: relative;
}
.header #main-nav ul li a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  height: 17px;
  width: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='17' viewBox='0 0 10 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.9333 8.81864L0.324489 2.45864C-0.108164 2.04227 -0.108164 1.36591 0.324489 0.949545C0.757141 0.533182 1.45996 0.533182 1.89262 0.949545L9.28549 8.06409C9.50277 8.27318 9.61046 8.54591 9.61046 8.81864C9.61046 9.09136 9.50277 9.36409 9.28549 9.57318L1.89262 16.6877C1.45997 17.1041 0.757142 17.1041 0.324489 16.6877C-0.108163 16.2714 -0.108163 15.595 0.324489 15.1786L6.9333 8.81864Z' fill='%23481268'/%3E%3C/svg%3E%0A");
}
.header #main-nav ul li a:hover {
  color: var(--purple-hover);
}

.header .menu .login {
  display: block;
}
.header .login {
  display: none;
}
.header .login .login-link {
  font-size: 20px;
  border-bottom: 1px solid #48126880;
  display: flex;
  align-items: center;
  padding: 18px 40px 10px 0;
  position: relative;
}
.header .login .login-link:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  height: 17px;
  width: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='17' viewBox='0 0 10 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.9333 8.81864L0.324489 2.45864C-0.108164 2.04227 -0.108164 1.36591 0.324489 0.949545C0.757141 0.533182 1.45996 0.533182 1.89262 0.949545L9.28549 8.06409C9.50277 8.27318 9.61046 8.54591 9.61046 8.81864C9.61046 9.09136 9.50277 9.36409 9.28549 9.57318L1.89262 16.6877C1.45997 17.1041 0.757142 17.1041 0.324489 16.6877C-0.108163 16.2714 -0.108163 15.595 0.324489 15.1786L6.9333 8.81864Z' fill='%23481268'/%3E%3C/svg%3E%0A");
}
.header .login .login-link .icon {
  display: inline-block;
  margin-right: 8px;
  position: relative;
  top: 2px;
}

.header .nav-bar {
  position: fixed;
  top: 74px;
  left: 0;
  height: 0;
  right: 0;
  overflow-y: auto;
  z-index: 10;
  transition: all 0.3s ease-in-out;
  background-color: #eef9f8;
}
.header .nav-bar #main-nav {
  background-color: #eef9f8;
  padding: 30px 20px;
  height: 100%;
  transform: translateY(-100%);
  transition: all 0.3s ease-in-out;
}
.menu-active .header .nav-bar {
  height: 100%;
}
.menu-active .header .nav-bar #main-nav {
  transform: translateY(0);
}

/* mobile menu toogle */
.navbar-toggle {
  width: 29px;
  height: 31px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: transparent;
  text-indent: -9999px;
  overflow: hidden;
  outline: none;
  box-shadow: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  padding: 0;
}
.navbar-toggle:after,
.navbar-toggle:before,
.navbar-toggle span {
  position: absolute;
  left: 0;
  right: 0;
  background: var(--black-color);
  height: 3px;
  transition: all 0.3s ease;
  width: 100%;
}
.navbar-toggle span {
  top: 50%;
  transform: translateY(-50%);
}
.navbar-toggle:after,
.navbar-toggle:before {
  content: '';
}
.navbar-toggle:after {
  bottom: 24px;
}
.navbar-toggle:before {
  top: 24px;
}
.menu-active .navbar-toggle {
  background: transparent;
}
.menu-active .navbar-toggle:after,
.menu-active .navbar-toggle:before {
  background: var(--purple);
}
.menu-active .navbar-toggle:before {
  transform: rotate(45deg) translate(-7px, -7px)
}
.menu-active .navbar-toggle:after {
  transform: rotate(-45deg) translate(-7px, 7px)
}
.menu-active .navbar-toggle span {
  opacity: 0;
  visibility: hidden;
}


@media(min-width: 768px) {
  .header {
    padding: 21px;
  }
  .navbar-toggle {
    display: none;
  }
  .header .nav-bar {
    position: static;
    overflow-y: unset;
    transition: none;
    height: auto;
    z-index: 1;
    background-color: transparent;
  }
  .header .nav-bar #main-nav {
    padding: 0;
    background: transparent;
    transform: none;
    transition: none;
    height: auto;
  }
  .header #main-nav ul {
    display: flex;
    flex-flow: row wrap;
    border: none;
  }
  .header #main-nav ul li a {
    padding: 0 30px 0 0;
    border: none;
  }
  .header #main-nav ul li a::after {
    display: none;
  }
  .header .menu .login {
    display: none;
  }
  .header .login {
    border-left: 1px solid #48126880;
    padding: 0 10px 0 24px;
    display: block;
  }
  .header .login .login-link { 
    padding: 0;
    border: none;
  }
  .header .login .login-link::after {
    display: none;
  }
}
@media(min-width: 992px) {
  .header #main-nav ul li a {
    padding-right: 52px;
  }
  .header .login {
    padding: 0 24px 0 31px;
  }
}
.hero-banner-01 {
  background-color: var(--purple);
  padding: 24px 0 40px;
}
.hero-banner-01 .container {
  padding: 0 15px;
  max-width: 1170px;
}
.hero-banner-01 h1 {
  background-color: var(--purple);
  border-radius: 0 10px 0 0;
  color: var(--light-blue);
  padding: 12px 0 0 6px;
  max-width: 290px;
  margin-bottom: 15px;
  margin-top: -47px;
  position: relative;
  z-index: 3;
}
.hero-banner-01 .short-text {
  color: var(--white-color);
  font-size: 16px;
  text-align: center;
  display: block;
  margin-top: 21px;
}
.hero-banner-01 .holder {
  max-width: 615px;
  padding: 60px 0 0;
  margin-top: -45px;
  position: relative;
  z-index: 2;
}
.hero-banner-01 .button-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0 -8px;
}
.hero-banner-01 .button-list li {
  padding: 0 8px 21px;
}
.hero-banner-01 .button-list li:last-child {
  padding-bottom: 0;
}
.hero-banner-01 .button-list .cta_button {
  font-weight: 500;
}

.hero-banner-01 .image-holder {
  margin: 28px auto 0;
  position: relative;
  z-index: 1;
  max-width: fit-content;
  padding: 0 4px 0 66px;
  min-height: 146px;
}
.hero-banner-01 .image-holder:after {
  content: '';
  position: absolute;
  left: 23px;
  top: -28px;
  width: 82.2%;
  height: 71.6%;
  background-color: var(--violet);
  border-radius: 10px;
  z-index: -1;
}
.hero-banner-01 .image-holder img {
  border-radius: 20px;
  overflow: hidden;
}

@media(min-width: 400px) {
  .hero-banner-01 h1 {
    max-width: 360px;
  }
  .hero-banner-01 .image-holder img {
    height: auto !important;
  }
}
@media(min-width: 576px) {
  .hero-banner-01 h1 {
    border-radius: 0 20px 0 0;
    max-width: 450px;
    margin-top: -60px;
    padding: 30px 0 0 10px;
  }
  .hero-banner-01 .image-holder::after {
    border-radius: 20px;
  }
  .hero-banner-01 .button-list {
    justify-content: flex-start;
    margin: 0 -8px;
  }
  .hero-banner-01 .button-list li {
    padding: 0 8px 21px;
  }
}
@media(min-width: 768px) {
  .hero-banner-01 {
    padding: 24px 0 110px;
  }
  .hero-banner-01 h1 {
    border-radius: 0 30px 0 0;
    max-width: 500px;
  }
  .hero-banner-01 .holder {
    padding: 60px 44px 0 7px;
  }
  .hero-banner-01 .button-list {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -10px;
  }
  .hero-banner-01 .button-list li {
    padding: 0 10px;
  }
  .hero-banner-01 .short-text {
    margin-top: 26px;
  }
  .hero-banner-01 .image-holder {
    margin: 40px auto 0;
    padding: 0;
    min-height: auto;
  }
  .hero-banner-01 .image-holder::after {
    top: -34px;
    border-radius: 20px;
    left: auto;
    right: -15px;
    width: 73.2%;
  }
  .hero-banner-01 .image-holder img {
    border-radius: 50px;
  }
}
@media(min-width: 992px) {
  .hero-banner-01 .row {
    display: flex;
    flex-flow: row wrap;
    flex-direction: row-reverse;
    align-items: flex-end;
    margin: 0 -15px;
  }
  .hero-banner-01 .column {
    padding: 0 15px;
  }
  .hero-banner-01 .column:nth-child(1) {
    width: 45.3%;
  }
  .hero-banner-01 .column:nth-child(2) {
    width: 54.7%;
  }
  .hero-banner-01 .holder {
    background-color: var(--purple);
    border-radius: 0 30px 0 0;
    padding: 60px 20px 0 7px;
  }
  .hero-banner-01 .content {
    padding-top: 57px;
  }
  .hero-banner-01 h1 {
    background-color: transparent;
    border-radius: 0;
    padding: 0 0 0 10px;
    margin-top: 0;
  }
  .hero-banner-01 .button-list .cta_button {
    min-width: 155px;
  }
  .hero-banner-01 .image-holder {
    margin: 33px 30px 0 -76px;
    max-width: inherit;
  }
  .hero-banner-01 .image-holder::after {
    right: -30px;
    border-radius: 30px;
  }
}
@media(min-width: 1200px) {
  .hero-banner-01 .holder {
    padding: 60px 44px 0 7px;
  }
  .hero-banner-01 .button-list .cta_button {
    min-width: 205px;
  }
  .hero-banner-01 .image-holder {
    margin: 33px 0 0 -106px;
  }
  .hero-banner-01 .image-holder::after {
    right: 8px;
  }
}
.hero-banner-02 {
  position: relative;
}
.hero-banner-02 .holder {
  margin-left: 4.2%;
  border-radius: 10px 0 0 10px;
  overflow: hidden;
}
.hero-banner-02 .holder:after, .hero-banner-02 .holder:before {
  content: '';
  position: absolute;
  bottom: 0;
  top: 0;
  z-index: -1;
}
.hero-banner-02 .holder:before {
  left: 0;
  background-color: #006D8540;
  border-radius: 5px;
  width: 4.2%;
}
.hero-banner-02 .holder:after {
  left: 4.2%;
  background-color: #006D8580;
  border-radius: 10px;
  width: 13.4%;
}
.hero-banner-02 .content {
  background-color: var(--green);
  border-radius: 15px 0 0 15px;
  padding: 22px 19px 40px;
  margin: -43px 0 0 14%;
  height: 100%;
}
.hero-banner-02 h1 {
  color: var(--white-color);
  margin-bottom: 29px;
}
.hero-banner-02 .short-text {
  color: var(--white-color);
  font-size: 16px;
  text-align: center;
  display: block;
  margin-top: 15px;
}
.hero-banner-02 .button-holder {
  max-width: 260px;
}
.hero-banner-02 .button-list li {
  padding: 0 0 21px;
}
.hero-banner-02 .button-list li:last-child {
  padding-bottom: 0;
}
.hero-banner-02 .button-list .cta_button {
  font-weight: 500;
}
.hero-banner-02 .image-holder {
  border-radius: 0 0 10px 10px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  min-height: 188px;
}

@media(min-width: 768px) {
  .hero-banner-02 .image-holder {
    min-height: 310px;
  }
  .hero-banner-02 .content {
    background-color: var(--green);
    padding: 45px 47px 110px;
    margin: -43px 0 0 11.8%;
    height: 100%;
  }
  .hero-banner-02 .short-text {
    margin-top: 27px;
  }
}
@media(min-width: 992px) {
  .hero-banner-02 .row {
    display: flex;
    flex-flow: row wrap;
    flex-direction: row-reverse;
  }
  .hero-banner-02 .column:nth-child(1) {
    width: 60%;
  }
  .hero-banner-02 .column:nth-child(2) {
    width: 40%;
  }
  .hero-banner-02 .image-holder {
    border-radius: 0;
  }
  .hero-banner-02 .holder {
    margin-left: 6.5%;
    border-radius: 0;
  }
  .hero-banner-02 .holder:after {
    left: 1.6%;
    width: 4.9%;
  }
  .hero-banner-02 .holder:before {
    width: 1.6%;
  }
  .hero-banner-02 .content {
    padding: 65px 30px 110px;
    margin: 0;
  }
}

@media(min-width: 1200px) {
  .hero-banner-02 .content {
    padding: 65px 47px 110px;
  }
}
@media(min-width: 1366px) {
  .hero-banner-02 .column:nth-child(1) {
    width: 66.2%;
  }
  .hero-banner-02 .column:nth-child(2) {
    width: 33.8%;
  }
  .hero-banner-02 .content {
    padding: 81px 47px 125px;
  }
}
.hero-banner-03 {
  background-color: var(--purple);
  padding: 23px 0 40px;
}
.hero-banner-03 .container {
  max-width: 1150px;
  padding: 0 15px;
}
.hero-banner-03 h1 {
  color: var(--light-blue);
  margin-bottom: 18px;
}
.hero-banner-03 .short-text {
  color: var(--light-blue);
  font-size: 16px;
  text-align: center;
  display: block;
  margin-top: 26px;
}
.hero-banner-03 .image-holder.desktop {
  display: none;
}
.hero-banner-03 .image-holder.mobile {
  display: block;
  margin-bottom: 45px;
}
.hero-banner-03 .image-holder {
  max-width: 250px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-banner-03 .image-holder::after {
  background-color: var(--light-blue);
  border-radius: 10px;
  content: "";
  height: 55.6%;
  right: -31px;
  position: absolute;
  bottom: -16px;
  width: 94.2%;
  z-index: -1;
}
.hero-banner-03 .image-holder img {
  border-radius: 20px;
  overflow: hidden;
}
.hero-banner-03 .button-holder {
  text-align: center;
}
.hero-banner-03 .column:nth-child(2) {
  display: none;
}

@media(min-width: 480px) {
  .hero-banner-03 .image-holder {
    max-width: 360px;
  }
  .hero-banner-03 h1 {
    margin-bottom: 25px;
  }
}
@media(min-width: 576px) {
  .hero-banner-03 .image-holder {
    max-width: 460px;
  }
}
@media(min-width: 768px) {
  .hero-banner-03 {
    padding: 40px 0 120px;
  }
  .hero-banner-03 h1 {
    margin-bottom: 30px;
  }
}
@media(min-width: 992px) {
  .hero-banner-03 .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .hero-banner-03 .column {
    padding: 0 15px;
  }
  .hero-banner-03 .column:nth-child(1) {
    width: 42%;
  }
  .hero-banner-03 .column:nth-child(2) {
    width: 58%;
    display: block;
  }
  .hero-banner-03 .image-holder {
    max-width: 500px;
    margin: 0;
  }
  .hero-banner-03 .image-holder.desktop {
    display: block;
  }
  .hero-banner-03 .image-holder.mobile {
    display: none;
  }
  .hero-banner-03 .image-holder::after {
    border-radius: 30px;
    content: "";
    height: 71.6%;
    right: 0;
    position: absolute;
    top: 50%;
    bottom: auto;
    width: 82.2%;
    transform: translateY(-50%);
    z-index: -1;
  }
  .hero-banner-03 .image-holder img {
    border-radius: 30px;
  }
  .hero-banner-03 .button-holder {
    text-align: left;
  }
  .hero-banner-03 .short-text {
    max-width: 263px;
  }
}
.hero-banner-04 {
  background-color: var(--purple);
  padding: 35px 0 0;
}
.hero-banner-04 .container {
  max-width: 1440px;
  padding: 0 20px;
}
.hero-banner-04 .content {
  padding: 40px 30px 40px 0;
  position: relative;
  z-index: 1;
  margin-top: -115px;
}
.hero-banner-04 .content:after {
  content: '';
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--purple);
  border-radius: 0 10px 0 0;
  overflow: hidden;
  z-index: -1;
  max-width: 63%;
}
.hero-banner-04 h1 {
  margin-bottom: 30px;
}
.hero-banner-04 .title {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  text-align: center;
  border-radius: 5px;
  background-color: var(--brown);
  padding: 6px 17px 3px;
  display: inline-block;
  margin-bottom: 18px;
  margin-top: 2px;
}
.hero-banner-04 h1 {
  color: var(--light-blue);
}
.hero-banner-04 .text {
  color: var(--white-color);
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
}
.hero-banner-04 .image-holder {
  border-radius: 20px; 
  line-height: 0;
  position: relative;
  z-index: 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  min-height: 157px;
  max-width: 256px;
  margin: 0 0 0 auto;
}
.hero-banner-04 .text-list.desktop {
  display: none;
}
.hero-banner-04 .text-list {
  background-color: var(--white-color);
  border-radius: 10px;
  overflow: hidden;
  padding: 18px 20px;
  width: 229px;
  min-height: 150px;
  margin-bottom: 32px;
}
.hero-banner-04 .text-list li {
  color: var(--purple);
  position: relative;
  padding: 0 0 0 26px;
  font-size: 18px;
  line-height: 40px;
}
.hero-banner-04 .text-list li:after {
  content: '';
  position: absolute;
  top: 4px;
  left: -2px;
  height: 15px;
  width: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='15' viewBox='0 0 20 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.023 0.000763351C17.5236 0.0157413 17.0512 0.221688 16.7016 0.573671C13.0218 4.16838 10.214 7.16772 6.79923 10.5677L3.16168 7.57213C2.3512 6.90561 1.14125 7.00297 0.453687 7.79305C-0.230033 8.58314 -0.130164 9.76266 0.680314 10.4329L0.687996 10.4404L5.68146 14.5594C6.442 15.1847 7.56745 15.1397 8.27422 14.4545C12.4111 10.4142 15.3573 7.18645 19.4135 3.22103C20.1779 2.50209 20.1971 1.31883 19.4596 0.573671C19.087 0.191733 18.5646 -0.0142146 18.023 0.000763351Z' fill='%23006D85'/%3E%3C/svg%3E%0A");
}
.hero-banner-04 .text-list li span {
  font-weight: 500;
}

@media(min-width: 400px) {
  .hero-banner-04 .image-holder {
    max-width: 550px;
    min-height: 247px;
  }
}
@media(min-width: 768px) {
  .hero-banner-04 {
    padding: 50px 0;
  }
  .hero-banner-04 .image-holder {
    border-radius: 30px;
    max-width: 600px;
    margin: 0 auto;
    min-height: 297px;
  }
  .hero-banner-04 .content {
    padding: 40px 50px 20px 0;
  }
  .hero-banner-04 .content:after {
    border-radius: 0 20px 0 0;
  }
  .hero-banner-04 .text-list {
    width: 256px;
    border-radius: 20px;
    padding: 25px 20px;
    min-height: 170px;
    margin-bottom: 32px;
  }
  .hero-banner-04 .text-list li {
    padding: 0 0 0 35px;
  }
  .hero-banner-04 .text-list li::after {
    left: 5px;
    top: 7px;
  }
}
@media(min-width: 992px) {
  .hero-banner-04 {
    padding: 0;
  }
  .hero-banner-04 .container {
    max-width: 1440px;
    padding: 0 30px;
  }
  .hero-banner-04 .row {
    display: flex;
    flex-flow: row wrap;
    flex-direction: row-reverse;
    align-items: flex-end;
  }
  .hero-banner-04 .column:nth-child(1) {
    width: 55%;
  }
  .hero-banner-04 .column:nth-child(2) {
    width: 45%;
  }
  .hero-banner-04 .image-holder {
    border-radius: 50px 50px 0 0;
    margin-left: -90px;
    max-width: 893px;
    min-height: 413px;
  }
  .hero-banner-04 .content {
    padding: 40px 30px 54px 0;
  }
  .hero-banner-04 .content:after {
    border-radius: 0 30px 0 0;
    top: 110px;
    max-width: 100%;
  }
  .hero-banner-04 .text-list.mobile {
    display: none;
  }
  .hero-banner-04 .text-list.desktop {
    display: block;
    position: absolute;
    bottom: 8px;
    left: 130px;
    z-index: 2;
  }
}
@media(min-width: 1200px) {
  .hero-banner-04 .column:nth-child(1) {
    width: 60%;
  }
  .hero-banner-04 .column:nth-child(2) {
    width: 40%;
  }
  .hero-banner-04 h1 {
    margin-bottom: 20px;
  }
  .hero-banner-04 .content {
    padding: 40px 30px 54px 0;
  }
  .hero-banner-04 .image-holder {
    min-height: 413px;
  }
}
@media(min-width: 1440px) {
  .hero-banner-04 .container {
    padding: 0 46px;
  }
  .hero-banner-04 .column:nth-child(1) {
    width: 68%;
  }
  .hero-banner-04 .column:nth-child(2) {
    width: 32%;
  }
  .hero-banner-04 .content {
    padding: 40px 50px 74px 0;
  }
}
.hero-banner-05 {
  background-color: var(--purple);
  padding: 26px 0 30px;
}
.hero-banner-05 .container {
  padding: 0 20px;
}
.hero-banner-05 .holder {
  max-width: 320px;
}
.hero-banner-05 .heading-box {
  background-color: var(--blue);
  border-radius: 20px;
  display: flex;
  flex-flow: row wrap;
  overflow: hidden;
  max-width: 272px;
  padding: 46px 18px 15px;
}
.hero-banner-05 .heading-box h1 {
  margin-bottom: 0;
}
.hero-banner-05 .text-box {
  background-color: var(--white-color);
  border-radius: 10px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  overflow: hidden;
  max-width: 232px;
  padding: 20px 17px 13px;
  margin: 0 12px 0 auto;
}

@media(min-width: 768px) {
  .hero-banner-05 {
    padding: 50px 0 60px;
  }
  .hero-banner-05 .holder {
    max-width: 482px;
  }
  .hero-banner-05 .heading-box {
    border-radius: 30px;
    margin: 0 0 0 auto;
    max-width: 392px;
    padding: 66px 28px 33px;
  }
  .hero-banner-05 .text-box {
    max-width: 272px;
    border-radius: 20px;
    margin: 0;
    padding: 26px 26px 18px;
  }
}
@media (min-width: 992px) {
  .hero-banner-05 .container {
    padding: 0 30px;
  }
}
@media(min-width: 1440px) {
  .hero-banner-05 .container {
    padding: 0 46px;
  }
}
.hero-banner-06 {
  background-color: var(--purple);
  padding: 26px 0 0;
}
.hero-banner-06.no-image {
  padding: 26px 0;
}
.hero-banner-06 .container {
  padding: 0 20px;
  max-width: 760px;
}
.hero-banner-06 .holder {
  max-width: 320px;
  margin: 0 auto;
}
.hero-banner-06.no-image .heading-box {
  border-radius: 15px;
  margin: 0;
  padding: 37px 15px 15px;
  max-width: 282px;
}
.hero-banner-06 .heading-box {
  background-color: var(--purple);
  border-radius: 0 10px 0 0;
  display: flex;
  flex-flow: row wrap;
  overflow: hidden;
  max-width: 269px;
  padding: 25px 18px 25px;
  position: relative;
  z-index: 1;
  margin-top: -40px;
}
.hero-banner-06 .heading-box h1 {
  color: var(--light-blue);
  margin-bottom: 0;
}
.hero-banner-06 .image-holder img {
  border-radius: 20px;
}
.hero-banner-06 .image-holder {
  max-width: 437px;
}

@media(min-width: 480px) {
  .hero-banner-06 .holder {
    max-width: 400px;
  }
  .hero-banner-06 .heading-box {
    max-width: 320px;
  }
}
@media(min-width: 768px) {
  .hero-banner-06 {
    padding: 50px 0 0;
  }
  .hero-banner-06.no-image {
    padding: 50px;
  }
  .hero-banner-06 .holder {
    display: flex;
    align-items: flex-end;
    flex-direction: row-reverse;
    max-width: 100%;
  }
  .hero-banner-06.no-image .holder {
    display: block;
    max-width: 550px;
    margin: 0;
  }
  .hero-banner-06 .heading-box {
    border-radius: 40px 40px 0 0;
    margin: 0 -150px 0px auto;
    max-width: 522px;
    padding: 37px 28px;
  }
  .hero-banner-06.no-image .heading-box {
    margin: 0;
    border-radius: 30px;
    max-width: 100%;
    padding: 42px 28px 20px;
  }
  .hero-banner-06 .image-holder {
    margin-bottom: 48px;
  }
  .hero-banner-06 .image-holder img {
    border-radius: 30px;
  }
}
@media (min-width: 992px) {
  .hero-banner-06 .container {
    padding: 0 30px;
  }
  .hero-banner-06 .image-holder img {
    border-radius: 50px;
    overflow: hidden;
  }
}
@media(min-width: 1440px) {
  .hero-banner-06 .container {
    padding: 0 46px;
  }
}
.hero-banner-07 {
  background-color: var(--purple);
  padding: 26px 0;
}
.hero-banner-07 .container {
  padding: 0 20px;
  max-width: 1210px;
}
.hero-banner-07 .heading-box {
  background-color: var(--brown);
  border-radius: 20px;
  overflow: hidden;
  max-width: 445px;
  padding: 47px 17px 14px;
  max-width: 305px;
  position: relative;
  z-index: 1;
}
.hero-banner-07 .heading-box h1 {
  color: var(--purple);
  margin-bottom: 0;
}
.hero-banner-07 .text-box {
  background-color: var(--white-color);
  border-radius: 10px;
  overflow: hidden;
  padding: 28px 17px 3px;
  max-width: 230px;
}
.hero-banner-07 .text-box ul, .hero-banner-07 .text-box ol {
  list-style: none;
  padding: 0;
  margin: 0;
} 
.hero-banner-07 .text-box ul li, .hero-banner-07 .text-box ol li {
  color: var(--purple);
  position: relative;
  padding: 0 0 17px 30px;
}
.hero-banner-07 .text-box ul li:after, .hero-banner-07 .text-box ol li:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='15' viewBox='0 0 20 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.023 0.000763351C17.5236 0.0157413 17.0512 0.221688 16.7016 0.573671C13.0218 4.16838 10.214 7.16772 6.79923 10.5677L3.16168 7.57213C2.3512 6.90561 1.14125 7.00297 0.453687 7.79305C-0.230033 8.58314 -0.130164 9.76266 0.680314 10.4329L0.687996 10.4404L5.68146 14.5594C6.442 15.1847 7.56745 15.1397 8.27422 14.4545C12.4111 10.4142 15.3573 7.18645 19.4135 3.22103C20.1779 2.50209 20.1971 1.31883 19.4596 0.573671C19.087 0.191733 18.5646 -0.0142146 18.023 0.000763351Z' fill='%23006D85'/%3E%3C/svg%3E%0A");
}

@media(min-width: 768px) {
  .hero-banner-07 {
    padding: 50px 0;
  }
  .hero-banner-07 .heading-box {
    border-radius: 30px;
    padding: 68px 30px 30px;
    max-width: 445px;
  }
  .hero-banner-07 .text-box {
    border-radius: 20px;
    max-width: 696px;
    padding: 28px 17px 3px;
  }
  .hero-banner-07 .text-box ul, .hero-banner-07 .text-box ol {
    display: flex;
    flex-flow: row wrap;
  }
  .hero-banner-07 .text-box ul li, .hero-banner-07 .text-box ol li {
    margin: 0 10px;
    width: calc(33.33% - 20px);
  }
}
@media (min-width: 992px) {
  .hero-banner-07 .container {
    padding: 0 30px;
  }
}
@media(min-width: 1440px) {
  .hero-banner-07 .container {
    padding: 0 46px;
  }
}
.hero-banner-08 {
  background-color: var(--purple);
  padding: 26px 0 0;
}
.hero-banner-08.no-image {
  padding: 26px 0;
}
.hero-banner-08 .container {
  padding: 0 20px;
  max-width: 760px;
}
.hero-banner-08 .holder {
  max-width: 320px;
  margin: 0 auto;
}
.hero-banner-08.no-image .heading-box {
  border-radius: 15px;
  margin: 0;
  padding: 37px 15px 15px 0;
  max-width: 282px;
}
.hero-banner-08 .heading-box {
  background-color: var(--purple);
  border-radius: 0 10px 0 0;
  display: flex;
  flex-flow: row wrap;
  overflow: hidden;
  max-width: 269px;
  padding: 25px 18px 25px 0;
  position: relative;
  z-index: 1;
  margin-top: -40px;
}
.hero-banner-08 .heading-box h1 {
  color: var(--light-blue);
  margin-bottom: 0;
}
.hero-banner-08 .image-holder img {
  border-radius: 20px;
}
.hero-banner-08 .image-holder {
  max-width: 437px;
}

@media(min-width: 480px) {
  .hero-banner-08 .holder {
    max-width: 400px;
  }
  .hero-banner-08.no-image .holder {
    max-width: 100%;
  }
  .hero-banner-08.no-image .heading-box {
    max-width: 100%;
  }
  .hero-banner-08 .heading-box {
    max-width: 320px;
  }
}
@media(min-width: 768px) {
  .hero-banner-08 {
    padding: 50px 0 0;
  }
  .hero-banner-08.no-image {
    padding: 20px;
  }
  .hero-banner-08 .holder {
    display: flex;
    align-items: flex-end;
    flex-direction: row-reverse;
    max-width: 100%;
  }
  .hero-banner-08.no-image .holder {
    display: block;
    max-width: 550px;
    margin: 0;
  }
  .hero-banner-08 .heading-box {
    border-radius: 40px 40px 0 0;
    margin: 0 -150px 0px auto;
    max-width: 522px;
    padding: 37px 28px 37px 0;
  }
  .hero-banner-08.no-image .heading-box {
    margin: 0;
    border-radius: 30px;
    max-width: 100%;
    padding: 42px 28px 20px 0;
  }
  .hero-banner-08 .image-holder {
    margin-bottom: 48px;
  }
  .hero-banner-08 .image-holder img {
    border-radius: 30px;
  }
}

@media(min-width: 768px) and (max-width: 991px) {
.hero-banner-08.no-image .container {
    padding: 0 20px 0;
  }
}

@media (min-width: 992px) {
  .hero-banner-08 .container {
    padding: 0 30px;
  }
  .hero-banner-08 .image-holder img {
    border-radius: 50px;
    overflow: hidden;
  }
}
@media(min-width: 1440px) {
  .hero-banner-08 .container {
    padding: 0 46px;
  }
}
.hero-banner-09 {
  background-color: var(--purple);
  padding: 26px 0 30px;
}
.hero-banner-09 .container {
  padding: 0 20px;
  max-width: 990px;
}
.hero-banner-09 .holder {
  max-width: 370px;
}
.hero-banner-09 .heading-box {
  background-color: var(--violet);
  border-radius: 15px;
  display: flex;
  flex-flow: row wrap;
  overflow: hidden;
  max-width: 282px;
  padding: 40px 18px 22px;
}
.hero-banner-09 .heading-box h1 {
  margin-bottom: 0;
}
.hero-banner-09 .text-box {
  background-color: var(--light-blue);
  border-radius: 10px;
  color: var(--purple);
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  overflow: hidden;
  max-width: 232px;
  padding: 20px 17px 13px;
  margin: 0 0 0 auto;
}

@media(min-width: 480px) {
  .hero-banner-09 .heading-box {
    max-width: 332px;
  }
}
@media(min-width: 768px) {
  .hero-banner-09 {
    padding: 50px 0;
  }
  .hero-banner-09 .holder {
    max-width: 590px;
  }
  .hero-banner-09 .heading-box {
    border-radius: 30px;
    max-width: 506px;
    padding: 40px 36px 22px;
  }
  .hero-banner-09 .text-box {
    max-width: fit-content;
    border-radius: 20px;
    padding: 25px 26px 18px;
  }
}
@media (min-width: 992px) {
  .hero-banner-09 .container {
    padding: 0 30px;
  }
}
@media(min-width: 1440px) {
  .hero-banner-09 .container {
    padding: 0 46px;
  }
}
.hero-banner-10.overlap .content-holder {
  padding-bottom: 180px;
}
.hero-banner-10 {
  position: relative;
}
.hero-banner-10 .holder {
  border-radius: 10px 0 0 10px;
  overflow: hidden;
}
.hero-banner-10 .content-holder {
  background-color: var(--green);
  border-radius: 15px 0 0 15px;
  padding: 34px 20px 40px;
  height: 100%;
}
.hero-banner-10 .content {
  max-width: 680px;
}
.hero-banner-10 h1 {
  color: var(--white-color);
  margin-bottom: 24px;
}
.hero-banner-10 .tag {
  background-color: var(--purple);
  border-radius: 5px;
  color: var(--white-color);
  display: inline-block;
  font-family: "Degular Display";
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  padding: 6px 19px;
  text-align: center;
  margin-bottom: 14px;
}
.hero-banner-10 .short-text {
  color: var(--white-color);
  font-size: 16px;
  text-align: center;
  display: block;
  margin-top: 15px;
}
.hero-banner-10 .text {
  color: var(--white-color);
  font-weight: 500;
}
.hero-banner-10 .text ul {
  list-style: none;
  margin: 30px 0 0 0;
  padding: 0;
}
.hero-banner-10 .text ul li {
  padding: 0 0 15px 32px;
  position: relative;
}
.hero-banner-10 .text ul li:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 15px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='15' viewBox='0 0 20 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.023 0.000763351C17.5236 0.0157413 17.0512 0.221688 16.7016 0.573671C13.0218 4.16838 10.214 7.16772 6.79923 10.5677L3.16168 7.57213C2.3512 6.90561 1.14125 7.00297 0.453687 7.79305C-0.230033 8.58314 -0.130164 9.76266 0.680314 10.4329L0.687996 10.4404L5.68146 14.5594C6.442 15.1847 7.56745 15.1397 8.27422 14.4545C12.4111 10.4142 15.3573 7.18645 19.4135 3.22103C20.1779 2.50209 20.1971 1.31883 19.4596 0.573671C19.087 0.191733 18.5646 -0.0142146 18.023 0.000763351Z' fill='%2373CCE6'/%3E%3C/svg%3E%0A");
}
.hero-banner-10 .button-holder {
  max-width: 280px;
  margin-top: 17px;
}
.hero-banner-10 .button-list li {
  padding: 0 0 21px; 
}
.hero-banner-10 .button-list li:last-child {
  padding-bottom: 0;
}
.hero-banner-10 .button-list .cta_button {
  font-weight: 500;
  min-width: 222px;
}

@media(min-width: 768px) {
  .hero-banner-10.overlap .content-holder {
    padding-bottom: 230px;
  }
  .hero-banner-10 .holder {
    margin-left: 14%;
  }
  .hero-banner-10 .holder:after, .hero-banner-10 .holder:before {
    content: '';
    position: absolute;
    bottom: 0;
    top: 0;
    z-index: -1;
  } 
  .hero-banner-10 .holder:before {
    left: 0;
    background-color: #006D8540;
    border-radius: 5px;
    width: 4.2%;
  }
  .hero-banner-10 .holder:after {
    left: 4.2%;
    background-color: #006D8580;
    border-radius: 10px;
    width: 13.4%;
  }
  .hero-banner-10 .content-holder {
    background-color: var(--green);
    padding: 46px 40px 85px;
  }
  .hero-banner-10 .short-text {
    margin-top: 27px;
  }
}
@media(min-width: 992px) {
  .hero-banner-10 .holder {
    margin-left: 17.9%;
    border-radius: 0;
  }
  .hero-banner-10 .holder:after {
    left: 4%;
    width: 14%;
  }
  .hero-banner-10 .holder:before {
    width: 4%;
  }
  .hero-banner-10 .content-holder {
    padding: 46px 50px 85px;
    margin: 0;
  }
}

@media(min-width: 1200px) {
  .hero-banner-10 .content-holder {
    padding: 46px 100px 85px;
  }
}
@media(min-width: 1366px) {
  .hero-banner-10 .content-holder {
    padding: 46px 132px 85px;
  }
}
.hero-banner-11 {
  background-color: var(--light-blue);
  padding: 26px 0;
}
.hero-banner-11 .container {
  max-width: 960px;
  padding: 0 20px;
}
.hero-banner-11 .heading-box {
  background-color: var(--violet);
  border-radius: 15px;
  padding: 38px 14px 15px;
  max-width: 233px;
}
.hero-banner-11 .heading-box h1 {
  margin: 0;
}
.hero-banner-11 .text-box {
  background-color: var(--white-color);
  border-radius: 10px;
  color: var(--purple);
  padding: 20px;
  margin-left: 30px;
  max-width: 230px;
}
.hero-banner-11 .image-holder {
  display: flex;
  flex-flow: row wrap;
}
.hero-banner-11 .image-holder.desktop {
  display: none;
}
.hero-banner-11 .image-holder .first-image, .hero-banner-11 .image-holder .second-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.hero-banner-11 .image-holder.desktop .first-image {
  border-radius: 20px;
  width: 223px;
  height: 192px;
  margin-top: 34px;
}
.hero-banner-11 .image-holder.desktop .second-image {
  border-radius: 20px;
  width: 130px;
  height: 192px;
}
.hero-banner-11 .image-holder.mobile {
  margin-left: 30px;
}
.hero-banner-11 .image-holder.mobile .first-image {
  border-radius: 15px;
  width: 166px;
  height: 123px;
}
.hero-banner-11 .image-holder.mobile .second-image {
  border-radius: 15px;
  width: 107px;
  height: 86px;
}

@media(min-width: 768px) {
  .hero-banner-11 {
    padding: 50px 0;
  }
  .hero-banner-11 .container {
    display: flex;
    flex-flow: row wrap;
    padding: 0 30px;
  }
  .hero-banner-11 .holder {
    width: 460px;
  }
  .hero-banner-11 .image-holder.mobile .first-image {
    border-radius: 15px;
    width: 223px;
    height: 192px;
  }
  .hero-banner-11 .image-holder.mobile .second-image {
    border-radius: 15px;
    width: 130px;
    height: 192px;
  }
  .hero-banner-11 .heading-box {
    border-radius: 30px;
    max-width: 460px;
    padding: 72px 28px 30px;
  }
  .hero-banner-11 .text-box {
    border-radius: 20px;
    max-width: 230px;
    padding: 27px 25px;
  }
}
@media(min-width: 992px) {
  .hero-banner-11 .holder {
    width: 460px;
  }
  .hero-banner-11 .image-holder {
    width: calc(100% - 460px);
  }
  .hero-banner-11 .image-holder.desktop {
    display: flex;
  }
  .hero-banner-11 .image-holder.mobile {
    display: none;
  }
}
.hero-banner-12 {
  background-color: var(--blue);
  padding: 26px 0 40px;
}
.hero-banner-12 .container {
  padding: 0 20px;
  max-width: 100%;
}
.hero-banner-12 .holder {
  padding: 0;
  width: 100%;
}
.hero-banner-12 .content-holder {
  max-width: 408px;
}
.hero-banner-12 .heading-box {
  background-color: var(--purple);
  border-radius: 15px;
  display: flex;
  flex-flow: row wrap;
  overflow: hidden;
  max-width: 206px;
  padding: 46px 18px 14px;
}
.hero-banner-12 .heading-box h1 {
  color: var(--white-color);
  margin-bottom: 0;
}
.hero-banner-12 .text-box {
  background-color: var(--white-color);
  border-radius: 10px;
  color: var(--purple);
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  overflow: hidden;
  max-width: 215px;
  padding: 20px 17px 13px;
  margin: 0 0 0 auto;
}
.hero-banner-12 .image-holder {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  min-height: 196px;
}


@media(min-width: 768px) {
  .hero-banner-12 .heading-box {
    border-radius: 30px;
    max-width: 343px;
    padding: 55px 30px 25px;
  }
  .hero-banner-12 .text-box {
    max-width: 235px;
    border-radius: 20px;
    padding: 28px 26px 22px;
  }
  .hero-banner-12 .image-holder {
    min-height: 322px;
  }
}
@media (min-width: 992px) {
  .hero-banner-12 {
    padding: 0;
  }
  .hero-banner-12 .container {
    padding: 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
  .hero-banner-12 .holder {
    padding: 50px 65px;
    width: 50%;
  }
  .hero-banner-12 .image-holder {
    min-height: 440px;
    border-radius: 0;
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .hero-banner-12 .holder {
    padding: 50px 110px;
  }
  .hero-banner-12 .heading-box {
    padding: 67px 30px 30px;
  }
}
@media (min-width: 1280px) {
  .hero-banner-12 .holder {
    padding: 50px 132px;
  }
}
.info-bar {
  background-color: #F2F8F9;
  padding: 18px 0 16px;
  color: #006D85;
  font-size: 17px;
  line-height: 1;
  text-align: center;
}
.info-bar .container {
  max-width: 1440px;
  padding: 0 20px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .info-bar .container {
    padding: 0 30px;
  }
}

.info-bar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
}

.info-bar-placeholder {
  display: none;
}

.hero-banner-13 {
  background-color: var(--purple);
  padding: 24px 0 40px;
}
@media(min-width: 768px) {
  .hero-banner-13 {
    padding: 50px 0 110px;
  }
}

.hero-banner-13 .container {
  max-width: 955px;
  padding: 0 20px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .hero-banner-13 .container {
    padding: 0 30px;
  }
}

.hero-banner-13 .holder {
  display: flex;
  flex-flow: row wrap;
}
@media(min-width: 992px) {
  .hero-banner-13 .holder {
    padding-right: 60px;
  }
}

.hero-banner-13 .heading-box {
  background-color: #B55FEF;
  border-radius: 10px;
  padding: 30px 12px 22px;
  width: 84%;
  position: relative;
  z-index: 2;
}
@media(min-width: 768px) {
  .hero-banner-13 .heading-box {
    border-radius: 30px;
    padding: 30px 26px 22px;
    width: 60.3%;
  }
}
@media(min-width: 992px) {
  .hero-banner-13 .heading-box {
    padding-top: 40px;
  }
}

.hero-banner-13 .heading-box h1 {
  color: #481268;
  margin: 0;
}

.hero-banner-13 .image-holder {
  position: relative;
  margin: 0;
  width: 84%;
}
@media(min-width: 768px) {
  .hero-banner-13 .image-holder {
    margin: -110px 0 0 auto;
    width: 50%;
  }
}
@media(min-width: 992px) {
  .hero-banner-13 .image-holder {
    width: 43%;
  }
}

.hero-banner-13 .logo {
  background-color: #fff;
  border-radius: 15px;
  position: absolute;
  top: 0;
  left: 0;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  max-width: 128px;
}
@media(min-width: 768px) {
  .hero-banner-13 .logo {
    border-radius: 20px;
    top: 50%;
    transform: translateY(-50%);
    height: 89px;
    margin-top: 38px;
    left: -107px;
    max-width: 178px;
  }
}

.hero-banner-13 .image-wrap {
  margin: 30px 0 0 124px;
}
@media(min-width: 768px) {
  .hero-banner-13 .image-wrap {
    height: 231px;
    margin: 0 0 0 auto;
  }
}

.hero-banner-13 .image-wrap img {
  border-radius: 15px;
  overflow: hidden;
  display: block;
  height: 100% !important;
  object-fit: cover;
  object-position: top;
  width: 100%;
}
@media(min-width: 768px) {
  .hero-banner-13 .image-wrap img {
    border-radius: 20px;
  }
}

.hero-banner-13 .wrap {
  max-width: 100%;
  text-align: center;
  margin-top: 30px;
}
@media(min-width: 992px) {
  .hero-banner-13 .wrap {
    max-width: 350px;
    margin-top: -80px;
  }
}

.hero-banner-13 .short-text {
  color: var(--white-color);
  font-size: 16px;
  text-align: center;
  display: block;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .hero-banner-13 .short-text {
    margin-top: 20px;
  }
}
.key-points {
  background-color: var(--white-color);
}
.key-points .container {
  max-width: 1440px;
  padding: 0 20px;
}
.key-points .box {
  background-color: var(--white-color);
  text-align: left;
  max-width: 894px;
  margin: 0 auto;
  padding: 37px 5px;
}
.key-points h2 {
  margin-bottom: 28px;
}
.key-points .key-list li {
  position: relative;
  padding: 0 0 23px 29px;
}
.key-points .key-list li:last-child {
  padding-bottom: 0;
}
.key-points .key-list .icon-mobile {
  position: absolute;
  top: 0;
  left: 0;
}
.key-points .key-list .icon-desktop {
  display: none;
}
.key-points .box.large {
  max-width: 974px;
}
.key-points .key-list.five .text {
  max-width: inherit;
}


@media(min-width: 768px) {
  .key-points .container {
    padding: 0 30px;
  }
  .key-points.overlap {
    padding-top: 70px;
  }
  .key-points .box.overlap {
    margin-top: -140px;
    position: relative;
    z-index: 5;
  }
  .key-points .box { 
    border-radius: 15px;
    text-align: center;
    padding: 49px 30px 10px;
  }
  .key-points .key-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    margin: 0 -15px;
  }
  .key-points .key-list li {
    padding: 0 15px 30px;
    position: relative;
    text-align: left;
    width: 25%;
  }
  .key-points .key-list.five li {
    width: 20%;
  }
  .key-points .key-list li .text {
    max-width: 120px;
    margin: 0 auto;
    display: block;
  }
  .key-points .key-list .icon-desktop {
    display: block;
    margin-bottom: 14px;
    text-align: center;
    line-height: 0;
  }
  .key-points .key-list .icon-mobile {
    display: none;
  }
}
.services-module {
  background-color: var(--light-blue);
  padding: 35px 0 42px;
}
.services-module .container {
  max-width: 1440px;
  padding: 0 20px;
}
.services-module h2 {
  font-size: 27px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 18px;
}
.services-module .text {
  margin-bottom: 30px;
}
.services-module .column {
  margin-bottom: 20px;
}
.services-module .services-holder {
  margin-bottom: 46px;
}
.services-module .services-holder:last-child {
  margin-bottom: 0;
}
.services-module .more-services {
  line-height: 1;
  position: relative;
  padding-left: 10px;
  display: inline-block;
}
.services-module .more-services:hover {
  text-decoration: underline;
}
.services-module .more-services:after {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  height: 10px;
  width: 6px;
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='10' viewBox='0 0 6 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_99_1220)'%3E%3Cpath d='M4.32888 4.99979L0.203063 1.11312C-0.0670372 0.858678 -0.0670372 0.445345 0.203063 0.190901C0.473163 -0.0635433 0.911929 -0.0635434 1.18203 0.190901L5.79732 4.53868C5.93296 4.66646 6.00019 4.83312 6.00019 4.99979C6.00019 5.16646 5.93296 5.33312 5.79732 5.4609L1.18203 9.80868C0.911929 10.0631 0.473164 10.0631 0.203064 9.80868C-0.0670368 9.55423 -0.0670368 9.1409 0.203063 8.88646L4.32888 4.99979Z' fill='%23481268'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_99_1220'%3E%3Crect width='10' height='6' fill='white' transform='translate(0 10) rotate(-90)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.services-module .service {
  background-color: var(--light-blue);
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-flow: row nowrap;
  position: relative;
  min-height: 134px;
  height: 100%;
}
.services-module .service h3 {
  font-family: 'Calibre';
  font-weight: 500;
  margin-bottom: 0;
}
.services-module .service .short-text {
  color: var(--soft-black);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.services-module .service .price {
  color: var(--text-black);
}
.services-module .service .image-holder {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  width: 115px;
}
.services-module .service .content {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  padding: 22px 40px 16px 14px;
  width: calc(100% - 115px);
  position: relative;
}
.services-module .service .content:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  height: 17px;
  width: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='17' viewBox='0 0 10 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.9333 8.81864L0.324489 2.45864C-0.108164 2.04227 -0.108164 1.36591 0.324489 0.949545C0.757141 0.533182 1.45996 0.533182 1.89262 0.949545L9.28549 8.06409C9.50277 8.27318 9.61046 8.54591 9.61046 8.81864C9.61046 9.09136 9.50277 9.36409 9.28549 9.57318L1.89262 16.6877C1.45997 17.1041 0.757142 17.1041 0.324489 16.6877C-0.108163 16.2714 -0.108163 15.595 0.324489 15.1786L6.9333 8.81864Z' fill='%23481268'/%3E%3C/svg%3E%0A");
}

@media(min-width: 768px) {
  .services-module {
    padding: 50px 0 60px;
  }
  .services-module .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -10px;
  }
  .services-module .column {
    padding: 0 10px;
    width: 50%;
  }
  .services-module .services-holder {
    margin-bottom: 30px;
  }
}
@media(min-width: 992px) {
  .services-module .container {
    padding: 0 30px;
  }
  .services-module .column {
    width: 33.33%;
  }
}
@media(min-width: 1366px) {
  .services-module .container {
    padding: 0 46px;
  }
  .services-module .column {
    width: 25%;
  }
}
.services-02 {
  background-color: var(--white-color);
  padding: 37px 0 60px;
}
.services-02 .container {
  max-width: 1440px;
  padding: 0 20px;
}
.services-02 .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
}
.services-02 .column {
  padding: 0 15px;
  width: 100%;
}
.services-02 h2 {
  color: var(--purple);
  margin-bottom: 19px;
  max-width: 260px;
}
.services-02 .text {
  color: var(--text-color);
  font-weight: 500;
  max-width: 430px;
  margin-bottom: 34px;
}
.services-02 .title {
  border-bottom: 1px solid var(--blue);
  padding-bottom: 13px;
  display: block;
}
.services-02 .table-content li a {
  border-bottom: 1px solid var(--blue);
  font-weight: 500;
  display: block;
  position: relative;
  padding: 14px 19px 11px;
}
.services-02 .table-content li a .icon {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.services-02 .image-holder {
  text-align: center;
/*   max-width: 100px; */
  margin: auto;
}


@media(min-width: 768px) {
  .services-02 .container {
    padding: 0 30px;
  }
  .services-02 .row {
    flex-direction: row-reverse;
    align-items: flex-end;
  }
  .services-02 .column:nth-child(1) {
    width: 30%;
  }
  .services-02 .column:nth-child(2) {
    width: 70%;
  }
  .services-02 h2 {
    margin-bottom: 29px;
  }
  .services-02 .image-holder {
    max-width: 100%;
  }
}
@media(min-width: 992px) {
  .services-02 .container {
    max-width: 728px;
  }
}
.popular-services {
  background-color: var(--light-blue);
  padding: 46px 0;
}
.popular-services .container {
  max-width: 1440px;
  padding: 0 20px;
}
.popular-services h2 {
  margin-bottom: 18px;
}
.popular-services .text {
  margin-bottom: 30px;
}
.popular-services .column {
  margin-bottom: 20px;
}
.popular-services .link-holder {
  margin: 35px 0 0;
}
.popular-services .more-services {
  line-height: 1;
  position: relative;
  padding-left: 10px;
  display: inline-block;
}
.popular-services .more-services:hover {
  text-decoration: underline;
}
.popular-services .more-services:after {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  height: 10px;
  width: 6px;
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='10' viewBox='0 0 6 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_99_1220)'%3E%3Cpath d='M4.32888 4.99979L0.203063 1.11312C-0.0670372 0.858678 -0.0670372 0.445345 0.203063 0.190901C0.473163 -0.0635433 0.911929 -0.0635434 1.18203 0.190901L5.79732 4.53868C5.93296 4.66646 6.00019 4.83312 6.00019 4.99979C6.00019 5.16646 5.93296 5.33312 5.79732 5.4609L1.18203 9.80868C0.911929 10.0631 0.473164 10.0631 0.203064 9.80868C-0.0670368 9.55423 -0.0670368 9.1409 0.203063 8.88646L4.32888 4.99979Z' fill='%23481268'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_99_1220'%3E%3Crect width='10' height='6' fill='white' transform='translate(0 10) rotate(-90)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.popular-services .service {
  background-color: var(--white-color);
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-flow: row nowrap;
  position: relative;
  height: 100%;
  min-height: 134px;
}
.popular-services .service h3 {
  font-family: 'Calibre';
  font-weight: 500;
  margin-bottom: 0;
}
.popular-services .service .short-text {
  color: var(--soft-black);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.popular-services .service .price {
  color: var(--text-black);
}
.popular-services .service .image-holder {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  width: 115px;
}
.popular-services .service .content {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  padding: 22px 40px 16px 14px;
  width: calc(100% - 115px);
  position: relative;
}
.popular-services .service .content:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  height: 17px;
  width: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='17' viewBox='0 0 10 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.9333 8.81864L0.324489 2.45864C-0.108164 2.04227 -0.108164 1.36591 0.324489 0.949545C0.757141 0.533182 1.45996 0.533182 1.89262 0.949545L9.28549 8.06409C9.50277 8.27318 9.61046 8.54591 9.61046 8.81864C9.61046 9.09136 9.50277 9.36409 9.28549 9.57318L1.89262 16.6877C1.45997 17.1041 0.757142 17.1041 0.324489 16.6877C-0.108163 16.2714 -0.108163 15.595 0.324489 15.1786L6.9333 8.81864Z' fill='%23481268'/%3E%3C/svg%3E%0A");
}

@media(min-width: 768px) {
  .popular-services {
    padding: 50px 0;
  }
  .popular-services .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -10px;
  }
  .popular-services .column {
    padding: 0 10px;
    width: 50%;
  }
  .popular-services .link-holder {
    margin: 16px 0;
  }
}
@media(min-width: 992px) {
  .popular-services .container {
    padding: 0 30px;
  }
  .popular-services .column {
    width: 33.33%;
  }
}
@media(min-width: 1440px) {
  .popular-services .container {
    padding: 0 46px;
  }
  .popular-services .column {
    width: 25%;
  }
}
.content-with-image {
  background-color: var(--white-color);
  padding: 45px 0;
}
.content-with-image .container {
  max-width: 1182px;
  padding: 0 20px;
}
.content-with-image h2 {
  margin-bottom: 26px;
}
.content-with-image .image-holder {
  text-align: center;
}
.content-with-image .image-holder img {
  border-radius: 20px;
}
.content-with-image .text.order_list ol {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  counter-reset: my-awesome-counter;
}
.content-with-image .text.order_list ol li {
  counter-increment: my-awesome-counter;
  position: relative;
  padding: 0 0 23px 36px;
}
.content-with-image .text.order_list ol li::before {
  content: counter(my-awesome-counter);
  position: absolute;
  top: -3px;
  left: 0;
  background-color: var(--green);
  border-radius: 100%;
  color: var(--white-color);
  font-family: 'Degular Display';
  font-size: 18px;
  height: 25px;
  width: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content-with-image .text.unorder_list ul {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.content-with-image .text.unorder_list ul li {
  position: relative;
  padding: 0 0 24px 28px;
}
.content-with-image .text.unorder_list ul li:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='15' viewBox='0 0 20 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.023 0.000763351C17.5236 0.0157413 17.0512 0.221688 16.7016 0.573671C13.0218 4.16838 10.214 7.16772 6.79923 10.5677L3.16168 7.57213C2.3512 6.90561 1.14125 7.00297 0.453687 7.79305C-0.230033 8.58314 -0.130164 9.76266 0.680314 10.4329L0.687996 10.4404L5.68146 14.5594C6.442 15.1847 7.56745 15.1397 8.27422 14.4545C12.4111 10.4142 15.3573 7.18645 19.4135 3.22103C20.1779 2.50209 20.1971 1.31883 19.4596 0.573671C19.087 0.191733 18.5646 -0.0142146 18.023 0.000763351Z' fill='%23006D85'%3E%3C/path%3E%3C/svg%3E");
}
.content-with-image .button-holder {
  margin: 10px 0 0 18px;
  max-width: 315px;
  text-align: center;
}
.content-with-image .link {
  font-size: 16px;
  display: block;
  margin-top: 27px;
}
.content-with-image .link a {
  font-size: 18px;
}
.content-with-image .link a:hover {
  text-decoration: underline;
}
.content-with-image .link a .icon {
  display: inline-block;
  width: 8px;
  margin-right: 3px;
}

/* style02 */
.content-with-image.style02 {
  padding: 69px 0 28px;
}
.content-with-image.style02 .container {
  max-width: 1440px;
}
.content-with-image.style02 .image-holder {
  text-align: right;
  position: relative;
  padding-left: 60px;
  z-index: 1;
}
.content-with-image.style02 .image-holder::after {
  background-color: var(--light-blue);
  border-radius: 10px;
  content: "";
  height: 71.6%;
  left: 15px;
  position: absolute;
  top: -28px;
  width: 73.2%;
  z-index: -1;
}
.content-with-image.style02 .image-holder img {
  overflow: hidden;
}
.content-with-image.style02 .content {
  padding-top: 22px;
  position: relative;
  z-index: 2;
}
.content-with-image.style02 h2 {
  margin-bottom: 10px;
}

@media(max-width: 767px) {
  .content-with-image .column.hide-mobile {
    display: none;
  }
}
@media (min-width: 400px) {
  .content-with-image.style02 .image-holder img {
    height: auto !important;
  }
}
@media(min-width: 768px) {
  .content-with-image {
    padding: 52px 0;
  }
  .content-with-image .container {
    padding: 0 30px;
  }
  .content-with-image .image-holder img {
    border-radius: 50px;
  }
  .content-with-image .content {
    padding-top: 30px;
  }
  .content-with-image .text ol li {
    padding: 0 0 23px 33px;
  }
  .content-with-image.style02 {
    padding: 69px 0;
  }
  .content-with-image.style02 .row {
    align-items: flex-start;
  }
  .content-with-image.style02 .image-holder {
    padding-left: 30px;
  }
  .content-with-image.style02 .image-holder::after {
    border-radius: 30px;
    height: 71.6%;
    left: 0;
    top: -28px;
    width: 73.2%;
    z-index: -1;
  }
  .content-with-image.style02 h2 {
    margin-bottom: 26px;
  }
}
@media(min-width: 992px) {
  .content-with-image {
    padding: 65px 0 52px;
  }
  .content-with-image .row {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    margin: 0 -15px;
  }
  .content-with-image .column {
    padding: 0 15px;
    margin-bottom: 0;
    width: 50%;
  }
  .content-with-image .column:only-child {
    width: 100%;
  }
  .content-with-image .content {
    padding: 0;
  }
  .content-with-image .image-holder {
    text-align: left;
  }
  .content-with-image.style02 {
    padding: 80px 0 78px;
  }
  .content-with-image.style02 .column:nth-child(1) {
    width: 48.2%
  }
  .content-with-image.style02 .column:nth-child(2) {
    width: 51.8%
  }
  .content-with-image.style02 .content {
    padding-top: 0;
  }
  .content-with-image.style02 .image-holder::after {
    top: auto;
    bottom: -53px;
  }
}
@media(min-width: 1200px) {
  .content-with-image.style02 .content {
    padding: 0 40px 0 20px;
  }
  .content-with-image.style02 .image-holder {
    padding-left: 50px;
  }
}
@media(min-width: 1366px) {
  .content-with-image.style02 .image-holder {
    padding: 0;
  }
}
.testimonial-module {
  background-color: var(--blue);
  padding: 35px 0;
}
.testimonial-module .container {
  max-width: 1440px;
  padding: 0 20px;
}
.testimonial-module h2 {
  text-align: left;
  margin-bottom: 22px;
}
.testimonial {
  background-color: var(--light-blue);
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
}
.testimonial .image {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  min-height: 152px;
  position: relative;
}
.testimonial .ratings {
  color: var(--white-color);
  background-color: var(--purple);
  border-radius: 5px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  padding: 7px 14px;
  position: absolute;
  bottom: -17px;
  left: 19px;
  width: 160px;
}
.testimonial .ratings span {
  font-size: 16px;
  line-height: 19.2px;
  font-weight: 600;
  position: relative;
  top: 4px;
}
.testimonial .content {
  padding: 40px 17px 30px;
}
.testimonial .content .title {
  color: var(--purple);
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  display: block;
  margin-bottom: 7px;
}
.testimonial .content strong {
  color: var(--purple);
}

.testimonial-slider {
  padding: 0 50px;
  z-index: 1;
}
.testimonial-slider:before,
.testimonial-slider:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 297px;
  width: 55px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin-top: -16px;
  z-index: -1;
}
.testimonial-slider:before {
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='115' height='297' viewBox='0 0 115 297' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36 9.99999C36 4.47715 40.4772 0 46 0H115V297H46C40.4772 297 36 292.523 36 287V9.99999Z' fill='white' fill-opacity='0.5'/%3E%3Cpath d='M0 69C0 66.2386 2.23858 64 5 64H36V234H5C2.23858 234 0 231.761 0 229V69Z' fill='white' fill-opacity='0.25'/%3E%3C/svg%3E%0A");
}
.testimonial-slider:after {
  right: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='114' height='297' viewBox='0 0 114 297' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0H68C73.5229 0 78 4.47715 78 10V287C78 292.523 73.5229 297 68 297H0V0Z' fill='white' fill-opacity='0.5'/%3E%3Cpath d='M78 64H109C111.761 64 114 66.2386 114 69V229C114 231.761 111.761 234 109 234H78V64Z' fill='white' fill-opacity='0.25'/%3E%3C/svg%3E%0A");
}
.testimonial-slider .slick-list {
  margin: 0 -10px;
}
.testimonial-slider .slick-slide {
  padding: 0 10px;
}
.testimonial-slider .slick-arrow {
  cursor: pointer;
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 65px;
  width: 65px;
  transition: all 0.4s ease-in-out;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='65' height='65' viewBox='0 0 65 65' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='32.5' cy='32.5' r='32.5' transform='rotate(-180 32.5 32.5)' fill='white'/%3E%3Cg clip-path='url(%23clip0_99_1327)'%3E%3Cpath d='M26.4425 44.5532C26.8844 45.0802 27.6664 45.15 28.1959 44.7103C28.7254 44.2705 28.7955 43.4922 28.3537 42.9652C28.3046 42.9094 28.252 42.8536 28.1959 42.8082L19.2504 33.8945L48.8186 33.8945C49.5059 33.8596 50.0354 33.2733 50.0003 32.5892C49.9652 31.954 49.4568 31.448 48.8186 31.4131L19.2504 31.4131L28.2099 22.5099C28.6798 22.0213 28.6798 21.2535 28.2099 20.7648C27.726 20.2832 26.944 20.2832 26.4601 20.7648L15.379 31.797C14.8951 32.2612 14.8811 33.029 15.3475 33.5106C15.358 33.5211 15.3685 33.5316 15.379 33.542L26.4425 44.5532Z' fill='%23481268'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_99_1327'%3E%3Crect width='35' height='24.5946' fill='white' transform='translate(50 45) rotate(-180)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.testimonial-slider .slick-arrow.slick-next {
  right: 0;
  left: auto;
  background-image: url("data:image/svg+xml,%3Csvg width='65' height='65' viewBox='0 0 65 65' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='32.5' cy='32.5' r='32.5' fill='white'/%3E%3Cg clip-path='url(%23clip0_99_1231)'%3E%3Cpath d='M38.5575 20.4468C38.1156 19.9198 37.3336 19.85 36.8041 20.2897C36.2746 20.7295 36.2045 21.5078 36.6463 22.0348C36.6954 22.0906 36.748 22.1464 36.8041 22.1918L45.7496 31.1055H16.1814C15.4941 31.1404 14.9646 31.7267 14.9997 32.4108C15.0348 33.046 15.5432 33.552 16.1814 33.5869H45.7496L36.7901 42.4901C36.3202 42.9787 36.3202 43.7465 36.7901 44.2352C37.274 44.7168 38.056 44.7168 38.5399 44.2352L49.621 33.203C50.1049 32.7388 50.1189 31.971 49.6525 31.4894C49.642 31.4789 49.6315 31.4684 49.621 31.458L38.5575 20.4468Z' fill='%23481268'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_99_1231'%3E%3Crect width='35' height='24.5946' fill='white' transform='translate(15 20)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.testimonial-slider .slick-arrow:hover {
  width: 72px;
  height: 72px;
}
.testimonial-slider .slick-arrow.slick-disabled {
  opacity: 0;
  visibility: hidden;
}
.testimonial-slider .slick-dots {
  list-style: none;
  padding: 0;
  margin: 24px -5px 15px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
.testimonial-slider .slick-dots li {
  padding: 0 5px;
  line-height: 0;
}
.testimonial-slider .slick-dots li.slick-active button {
  background-color: var(--purple);
  height: 13px;
  width: 13px;
}
.testimonial-slider .slick-dots li.slick-active-prev button, .testimonial-slider .slick-dots li.slick-active-next button {
  height: 8px;
  width: 8px;
}
.testimonial-slider .slick-dots button {
  background-color: var(--light-blue);
  border-radius: 100%;
  height: 5px;
  width: 5px;
  outline: none;
  border: none;
  padding: 0;
  font-size: 0;
  line-height: 0;
}

@media(min-width: 768px) {
  .testimonial-module {
    padding: 60px 0 88px;
  }
  .testimonial-slider {
    padding: 0 70px;
  }
  .testimonial-module h2 {
    text-align: center;
    margin-bottom: 32px;
  }
  .testimonial .content {
    padding: 40px 20px 30px;
  }
  .testimonial-slider .slick-track {
    display: flex !important;
  }
  .testimonial-slider .slick-slide {
    height: inherit !important;
  }
  .testimonial-slider::after, .testimonial-slider::before {
    width: 115px;
    margin-top: 0;
  }
}
@media(min-width: 1366px) {
  .testimonial-slider {
    padding: 0 100px;
  }
  .testimonial-slider .slick-arrow {
    left: 20px;
  }
  .testimonial-slider .slick-arrow.slick-next {
    right: 20px;
  }
}
@media(min-width: 1440px) {
  .testimonial-slider {
    padding: 0 140px;
  }
  .testimonial-slider::before {
    left: 25px;
  }
  .testimonial-slider::after {
    right: 25px;
  }
  .testimonial-slider .slick-arrow {
    left: 50px;
  }
  .testimonial-slider .slick-arrow.slick-next {
    right: 50px;
  }
}
.image-gallery.overlap {
  margin-top: -180px;
  padding: 35px 0 0;
}
.image-gallery {
  padding: 35px 0;
  position: relative;
  z-index: 1;
}
.image-gallery .container {
  max-width: 1440px;
  padding: 0 20px;
}
.image-slider .image {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  border-radius: 20px;
  overflow: hidden;
  min-height: 279px;
  position: relative;
}

.image-slider {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 50px;
  z-index: 1;
}
.image-slider:before,
.image-slider:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 220px;
  width: 55px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin-top: -16px;
  z-index: -1;
}
.image-slider:before {
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='115' height='297' viewBox='0 0 115 297' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36 9.99999C36 4.47715 40.4772 0 46 0H115V297H46C40.4772 297 36 292.523 36 287V9.99999Z' fill='#006D85' fill-opacity='0.5'/%3E%3Cpath d='M0 69C0 66.2386 2.23858 64 5 64H36V234H5C2.23858 234 0 231.761 0 229V69Z' fill='#006D85' fill-opacity='0.25'/%3E%3C/svg%3E%0A");
}
.image-slider:after {
  right: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='114' height='297' viewBox='0 0 114 297' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0H68C73.5229 0 78 4.47715 78 10V287C78 292.523 73.5229 297 68 297H0V0Z' fill='#006D85' fill-opacity='0.5'/%3E%3Cpath d='M78 64H109C111.761 64 114 66.2386 114 69V229C114 231.761 111.761 234 109 234H78V64Z' fill='#006D85' fill-opacity='0.25'/%3E%3C/svg%3E%0A");
}
.image-slider .slick-arrow {
  cursor: pointer;
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 45px;
  width: 45px;
  margin-top: -20px;
  transition: all 0.4s ease-in-out;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='65' height='65' viewBox='0 0 65 65' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='32.5' cy='32.5' r='32.5' transform='rotate(-180 32.5 32.5)' fill='white'/%3E%3Cg clip-path='url(%23clip0_99_1327)'%3E%3Cpath d='M26.4425 44.5532C26.8844 45.0802 27.6664 45.15 28.1959 44.7103C28.7254 44.2705 28.7955 43.4922 28.3537 42.9652C28.3046 42.9094 28.252 42.8536 28.1959 42.8082L19.2504 33.8945L48.8186 33.8945C49.5059 33.8596 50.0354 33.2733 50.0003 32.5892C49.9652 31.954 49.4568 31.448 48.8186 31.4131L19.2504 31.4131L28.2099 22.5099C28.6798 22.0213 28.6798 21.2535 28.2099 20.7648C27.726 20.2832 26.944 20.2832 26.4601 20.7648L15.379 31.797C14.8951 32.2612 14.8811 33.029 15.3475 33.5106C15.358 33.5211 15.3685 33.5316 15.379 33.542L26.4425 44.5532Z' fill='%23481268'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_99_1327'%3E%3Crect width='35' height='24.5946' fill='white' transform='translate(50 45) rotate(-180)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.image-slider .slick-arrow.slick-next {
  right: 0;
  left: auto;
  background-image: url("data:image/svg+xml,%3Csvg width='65' height='65' viewBox='0 0 65 65' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='32.5' cy='32.5' r='32.5' fill='white'/%3E%3Cg clip-path='url(%23clip0_99_1231)'%3E%3Cpath d='M38.5575 20.4468C38.1156 19.9198 37.3336 19.85 36.8041 20.2897C36.2746 20.7295 36.2045 21.5078 36.6463 22.0348C36.6954 22.0906 36.748 22.1464 36.8041 22.1918L45.7496 31.1055H16.1814C15.4941 31.1404 14.9646 31.7267 14.9997 32.4108C15.0348 33.046 15.5432 33.552 16.1814 33.5869H45.7496L36.7901 42.4901C36.3202 42.9787 36.3202 43.7465 36.7901 44.2352C37.274 44.7168 38.056 44.7168 38.5399 44.2352L49.621 33.203C50.1049 32.7388 50.1189 31.971 49.6525 31.4894C49.642 31.4789 49.6315 31.4684 49.621 31.458L38.5575 20.4468Z' fill='%23481268'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_99_1231'%3E%3Crect width='35' height='24.5946' fill='white' transform='translate(15 20)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.image-slider .slick-arrow:hover {
  width: 52px;
  height: 52px;
}
.image-slider .slick-arrow.slick-disabled {
  opacity: 0;
  visibility: hidden;
}
.image-slider .slick-dots {
  list-style: none;
  padding: 0;
  margin: 31px -5px 15px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
.image-slider .slick-dots li {
  padding: 0 5px;
  line-height: 0;
}
.image-slider .slick-dots li.slick-active button {
  background-color: var(--purple);
  height: 13px;
  width: 13px;
}
.image-slider .slick-dots li.slick-active-prev button, .image-slider .slick-dots li.slick-active-next button {
  height: 8px;
  width: 8px;
}
.image-slider .slick-dots button {
  background-color: var(--medium-blue);
  border-radius: 100%;
  height: 5px;
  width: 5px;
  outline: none;
  border: none;
  padding: 0;
  font-size: 0;
  line-height: 0;
}

@media(min-width: 768px) {
  .image-gallery.overlap {
    margin-top: -230px;
    padding: 60px 0 0;
  }
  .image-gallery {
    padding: 60px 0;
  }
  .image-slider {
    padding: 0 70px;
  }
  .image-slider .slick-track {
    display: flex !important;
    align-items: center;
  }
  .image-slider .slick-slide {
    height: inherit !important;
  }
  .image-slider::after, .image-slider::before {
    width: 110px;
    margin-top: -20px;
  }
  .image-slider .image {
    border-radius: 40px;
    min-height: 339px;
  }
}
@media(min-width: 1366px) {
  .image-slider {
    padding: 0 80px;
  }
  .image-slider .slick-arrow {
    left: 17px;
  }
  .image-slider .slick-arrow.slick-next {
    right: 17px;
  }
}
@media(min-width: 1440px) {
  .image-slider::before {
    left: 0;
  }
  .image-slider::after {
    right: 0;
  }
  .image-slider .slick-arrow {
    left: 17px;
  }
  .image-slider .slick-arrow.slick-next {
    right: 17px;
  }
}

@media(max-width: 991px) {
  .image-slider .slick-arrow {
    display: none !important;
  }
}

@media(max-width: 640px) {
  .image-slider .image {
    min-height: 200px !important;
  }
  .image-gallery.overlap {
    margin-top: -125px !important;
  }
  .image-slider:after, 
  .image-slider:before {
    margin-top: -60px !important;
  }
  .image-slider .slick-list.draggable {
    max-height: 200px !important;
  }
}
.partners-module {
  background-color: var(--blue);
  padding: 35px 0;
}
.partners-module .container {
  max-width: 1440px;
  padding: 0 20px;
}
.partners-module h2 {
  text-align: left;
  margin-bottom: 22px;
}
.partners-module .text {
  text-align: left;
  margin-bottom: 22px;
}
.partners {
  background-color: var(--light-blue);
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
}
.partners .image-holder {
  min-height: 184px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners-slider {
  padding: 0 50px;
  z-index: 1;
}
.partners-slider:before,
.partners-slider:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 114px;
  width: 55px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin-top: -16px;
  z-index: -1;
}
.partners-slider:before {
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='115' height='297' viewBox='0 0 115 297' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36 9.99999C36 4.47715 40.4772 0 46 0H115V297H46C40.4772 297 36 292.523 36 287V9.99999Z' fill='white' fill-opacity='0.5'/%3E%3Cpath d='M0 69C0 66.2386 2.23858 64 5 64H36V234H5C2.23858 234 0 231.761 0 229V69Z' fill='white' fill-opacity='0.25'/%3E%3C/svg%3E%0A");
}
.partners-slider:after {
  right: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='114' height='297' viewBox='0 0 114 297' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0H68C73.5229 0 78 4.47715 78 10V287C78 292.523 73.5229 297 68 297H0V0Z' fill='white' fill-opacity='0.5'/%3E%3Cpath d='M78 64H109C111.761 64 114 66.2386 114 69V229C114 231.761 111.761 234 109 234H78V64Z' fill='white' fill-opacity='0.25'/%3E%3C/svg%3E%0A");
}
.partners-slider .slick-list {
  margin: 0 -10px;
}
.partners-slider .slick-slide {
  padding: 0 10px;
}
.partners-slider .slick-arrow {
  cursor: pointer;
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 55px;
  width: 55px;
  transition: all 0.4s ease-in-out;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='65' height='65' viewBox='0 0 65 65' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='32.5' cy='32.5' r='32.5' transform='rotate(-180 32.5 32.5)' fill='white'/%3E%3Cg clip-path='url(%23clip0_99_1327)'%3E%3Cpath d='M26.4425 44.5532C26.8844 45.0802 27.6664 45.15 28.1959 44.7103C28.7254 44.2705 28.7955 43.4922 28.3537 42.9652C28.3046 42.9094 28.252 42.8536 28.1959 42.8082L19.2504 33.8945L48.8186 33.8945C49.5059 33.8596 50.0354 33.2733 50.0003 32.5892C49.9652 31.954 49.4568 31.448 48.8186 31.4131L19.2504 31.4131L28.2099 22.5099C28.6798 22.0213 28.6798 21.2535 28.2099 20.7648C27.726 20.2832 26.944 20.2832 26.4601 20.7648L15.379 31.797C14.8951 32.2612 14.8811 33.029 15.3475 33.5106C15.358 33.5211 15.3685 33.5316 15.379 33.542L26.4425 44.5532Z' fill='%23481268'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_99_1327'%3E%3Crect width='35' height='24.5946' fill='white' transform='translate(50 45) rotate(-180)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.partners-slider .slick-arrow.slick-next {
  right: 0;
  left: auto;
  background-image: url("data:image/svg+xml,%3Csvg width='65' height='65' viewBox='0 0 65 65' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='32.5' cy='32.5' r='32.5' fill='white'/%3E%3Cg clip-path='url(%23clip0_99_1231)'%3E%3Cpath d='M38.5575 20.4468C38.1156 19.9198 37.3336 19.85 36.8041 20.2897C36.2746 20.7295 36.2045 21.5078 36.6463 22.0348C36.6954 22.0906 36.748 22.1464 36.8041 22.1918L45.7496 31.1055H16.1814C15.4941 31.1404 14.9646 31.7267 14.9997 32.4108C15.0348 33.046 15.5432 33.552 16.1814 33.5869H45.7496L36.7901 42.4901C36.3202 42.9787 36.3202 43.7465 36.7901 44.2352C37.274 44.7168 38.056 44.7168 38.5399 44.2352L49.621 33.203C50.1049 32.7388 50.1189 31.971 49.6525 31.4894C49.642 31.4789 49.6315 31.4684 49.621 31.458L38.5575 20.4468Z' fill='%23481268'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_99_1231'%3E%3Crect width='35' height='24.5946' fill='white' transform='translate(15 20)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.partners-slider .slick-arrow:hover {
  width: 72px;
  height: 72px;
}
.partners-slider .slick-arrow.slick-disabled {
  opacity: 0;
  visibility: hidden;
}
.partners-slider .slick-dots {
  list-style: none;
  padding: 0;
  margin: 24px -5px 15px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
.partners-slider .slick-dots li {
  padding: 0 5px;
  line-height: 0;
}
.partners-slider .slick-dots li.slick-active button {
  background-color: var(--purple);
  height: 13px;
  width: 13px;
}
.partners-slider .slick-dots li.slick-active-prev button, .partners-slider .slick-dots li.slick-active-next button {
  height: 8px;
  width: 8px;
}
.partners-slider .slick-dots button {
  background-color: var(--light-blue);
  border-radius: 100%;
  height: 5px;
  width: 5px;
  outline: none;
  border: none;
  padding: 0;
  font-size: 0;
  line-height: 0;
}

@media(min-width: 768px) {
  .partners-module {
    padding: 60px 0 82px;
  }
  .partners-slider {
    padding: 0 70px;
  }
  .partners-module h2 {
    text-align: center;
    margin-bottom: 22px;
  }
  .partners-module .text {
    text-align: center;
    margin-bottom: 32px;
  }
  .partners-slider .slick-track {
    display: flex !important;
  }
  .partners-slider .slick-slide {
    height: inherit !important;
  }
  .partners-slider::after, .partners-slider::before {
    width: 115px;
    margin-top: 0;
  }
  .partners-slider .slick-arrow {
    left: 20px;
  }
}
@media(min-width: 1200px) {
  .partners-slider {
    padding: 0 80px;
  }
  .partners-slider .slick-arrow {
    left: 20px;
    width: 65px;
    height: 65px;
  }
}
@media(min-width: 1366px) {
  .partners-slider {
    padding: 0 100px;
  }
  .partners-slider .slick-arrow {
    left: 20px;
  }
  .partners-slider .slick-arrow.slick-next {
    right: 20px;
  }
}
@media(min-width: 1440px) {
  .partners-slider {
    padding: 0 140px;
  }
  .partners-slider::before {
    left: 25px;
  }
  .partners-slider::after {
    right: 25px;
  }
  .partners-slider .slick-arrow {
    left: 50px;
  }
  .partners-slider .slick-arrow.slick-next {
    right: 50px;
  }
}
.call-to-action {
  background-color: var(--purple);
  color: var(--light-blue);
  padding: 34px 0 45px;
}
.call-to-action .container {
  padding: 0 20px;
}
.call-to-action h2 {
  color: var(--light-blue);
}
.call-to-action .button-holder {
  text-align: center;
  margin: 28px 0 18px;
}
.call-to-action .short-text {
  font-size: 16px;
  text-align: center;
  display: block;
}
.call-to-action .text {
  margin: 0 auto;
  max-width: 720px;
}
.call-to-action .cta_button {
  font-weight: 500;
}

.cta_button.outlined-purple {
  font-weight: 500;
}
.cta_button.outlined-white svg path {
  fill: var(--white-color);
}

@media(min-width: 768px) {
  .call-to-action {
    padding: 50px 0 58px;
    text-align: center;
  }
  .call-to-action .container {
    padding: 0 30px;
  }
}
@media(min-width: 1200px) {
  .call-to-action {
    padding: 67px 0 74px;
    text-align: center;
  }
}
.call-to-action-02 {
  background-color: var(--purple);
  color: var(--light-blue);
  padding: 47px 0 45px;
}
.call-to-action-02 .container {
  padding: 0 20px;
}
.call-to-action-02 h2 {
  color: var(--light-blue);
  max-width: 550px;
  margin: 0 auto 20px;
}
.call-to-action-02 .text {
  margin: 0 auto;
  max-width: 720px;
}
.call-to-action-02 .button-holder {
  text-align: center;
  margin: 28px -15px 18px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.call-to-action-02 .button-holder li {
  padding: 0 15px;
  margin-bottom: 20px;
}
.call-to-action-02 .button-holder li:last-child {
  margin: 0;
}
.call-to-action-02 .cta_button {
  font-weight: 500;
}

@media(min-width: 768px) {
  .call-to-action-02 {
    padding: 50px 0 36px;
    text-align: center;
  }
  .call-to-action-02 .container {
    padding: 0 30px;
  }
}
@media(min-width: 1200px) {
  .call-to-action-02 {
    padding: 67px 0 36px;
    text-align: center;
  }
}
.popular-jobs {
  position: relative;
}
.popular-jobs .holder {
  background-color: var(--blue);
  padding: 30px 0 40px;
  margin-left: 18%;
  border-radius: 15px;
  overflow: hidden;
}
.popular-jobs .container {
  max-width: 1440px;
  padding: 0 0 0 26px;
}
.popular-jobs h2 {
  margin-bottom: 23px;
}
.popular-jobs .jobs {
  background-color: var(--white-color);
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  position: relative;
  padding: 13px 45px 13px 22px;
  height: 100%;
  min-height: 88px;
}
.popular-jobs .jobs .title {
  color: var(--purple);
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
}
.popular-jobs .jobs .image {
  max-width: 22px;
  line-height: 0;
}
.popular-jobs .jobs .content {
  padding: 4px 0 0 19px;
  width: calc(100% - 22px);
}
.popular-jobs .jobs .content:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
  height: 17px;
  width: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='17' viewBox='0 0 10 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.9333 8.81864L0.324489 2.45864C-0.108164 2.04227 -0.108164 1.36591 0.324489 0.949545C0.757141 0.533182 1.45996 0.533182 1.89262 0.949545L9.28549 8.06409C9.50277 8.27318 9.61046 8.54591 9.61046 8.81864C9.61046 9.09136 9.50277 9.36409 9.28549 9.57318L1.89262 16.6877C1.45997 17.1041 0.757142 17.1041 0.324489 16.6877C-0.108163 16.2714 -0.108163 15.595 0.324489 15.1786L6.9333 8.81864Z' fill='%23481268'/%3E%3C/svg%3E%0A");
}

@media(max-width: 767px) {
  .popular-jobs:after, .popular-jobs:before {
    content: '';
    position: absolute;
    bottom: 0;
    top: 0;
  }
  .popular-jobs:before {
    left: 0;
    background-color: #73CCE640;
    border-radius: 5px;
    width: 4%;
  }
  .popular-jobs:after {
    left: 4%;
    background-color: #73CCE680;
    border-radius: 10px;
    width: 14%;
  }
  .popular-jobs .row {
    background-color: #fff;
    border-radius: 15px 0 0 15px;
    overflow: hidden;
  }
  .popular-jobs .jobs {
    min-height: inherit;
  }
}
@media(min-width: 768px) {
  .popular-jobs .holder {
    padding: 50px 0 60px;
    margin-left: 0;
    border-radius: 0;
  }
  .popular-jobs .container {
    padding: 0 20px;
  }
  .popular-jobs h2 {
    margin-bottom: 34px;
  }
  .popular-jobs .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -10px;
  }
  .popular-jobs .column {
    padding: 0 10px;
    margin-bottom: 20px;
    width: 50%;
  }
  .popular-jobs .jobs {
    border-radius: 15px;
    padding: 14px 45px 14px 25px;
  }
  .popular-jobs .jobs .image {
    max-width: 40px;
  }
  .popular-jobs .jobs .title {
    font-size: 19px;
    line-height: 23px;
  }
  .popular-jobs .jobs .content {
    width: calc(100% - 40px);
  }
}
@media(min-width: 992px) {
  .popular-jobs .container {
    padding: 0 30px;
  }
  .popular-jobs .column {
    width: 33.333%;
  }
}
@media(min-width: 1200px) {
  .popular-jobs .column {
    width: 25%;
  }
}
@media(min-width: 1440px) {
  .popular-jobs .container {
    padding: 0 46px;
  }
}
.how-it-works {
  padding: 30px 0 35px; 
}
.how-it-works .container {
  padding: 0 20px;
  max-width: 780px;
}
.how-it-works .image-holder {
  text-align: center;
}

.arrow-link {
  position: relative;
  padding-left: 16px; /* Zorg voor ruimte voor de pijl */
}

.arrow-link:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 10px;
  width: 6px;
  margin-top: -2px;
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='10' viewBox='0 0 6 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_99_1220)'%3E%3Cpath d='M4.32888 4.99979L0.203063 1.11312C-0.0670372 0.858678 -0.0670372 0.445345 0.203063 0.190901C0.473163 -0.0635433 0.911929 -0.0635434 1.18203 0.190901L5.79732 4.53868C5.93296 4.66646 6.00019 4.83312 6.00019 4.99979C6.00019 5.16646 5.93296 5.33312 5.79732 5.4609L1.18203 9.80868C0.911929 10.0631 0.473164 10.0631 0.203064 9.80868C-0.0670368 9.55423 -0.0670368 9.1409 0.203063 8.88646L4.32888 4.99979Z' fill='%23481268'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_99_1220'%3E%3Crect width='10' height='6' fill='white' transform='translate(0 10) rotate(-90)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

@media(min-width: 768px) {
  .how-it-works {
    padding: 66px 0 80px; 
  }
  .how-it-works .container {
    padding: 0 30px;
  }
  .how-it-works .row {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    margin: 0 -15px;
  }
  .how-it-works .column:nth-child(1) {
    width: 18.5%;
  }
  .how-it-works .column:nth-child(2) {
    width: 81.5%;
  }
  .how-it-works .content {
    padding-left: 18px;
  }
}
.contact-us {
  padding: 40px 0;
}
.contact-us .container {
  max-width: 995px;
  padding: 0 20px;
}
.contact-us h2 {
  margin-bottom: 30px;
  text-align: center;
}
.contact-us .row {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0 -15px;
}
.contact-us .column {
  padding: 0 15px;
  margin-bottom: 30px;
  width: 100%;
}
.contact-us .box-holder {
  background-color: var(--light-blue);
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  padding: 40px 20px;
}
.contact-us .box-holder .icon-holder {
  text-align: center;
  display: block;
  margin-bottom: 15px;
  min-height: 66px;
}
.contact-us .box-holder .button-holder {
  margin-top: 32px;
  text-align: center;
}
.contact-us .box-holder .cta_button {
  min-width: 182px;
  font-weight: 500;
}
.contact-us .box-holder .short-text {
  font-size: 16px;
  color: var(--purple);
  margin-top: 23px;
  text-align: center;
}

@media (min-width: 992px) {
  .contact-us .column {
    margin: 0;
    width: 33.33%;
  }
}
@media (min-width: 768px) {
  .contact-us .container {
    padding: 0 30px;
  }
  .contact-us .box-holder .cta_button {
    min-width: 193px;
  }
}
@media (max-width: 768px) {
  .contact-us .box-holder .cta_button {
    min-width: 100%;
    max-width: 100%;
    padding: 11px 0 7px;
  }
}
.contact-module {
  background-color: var(--light-blue);
  padding: 42px 0 55px;
}
.contact-module .container {
  max-width: 1440px;
  padding: 0 20px;
}
.contact-module h2 {
  margin-bottom: 12px;
}
.contact-module .text {
  margin-bottom: 30px;
}
.contact-module .contact-list {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -10px;
}
.contact-module .contact-list li {
  padding: 0 10px 20px;
}
.contact-module .contact-list .cta_button {
  min-width: 220px;
}
.contact-module .contact-list .cta_button.outlined-purple {
  font-weight: 500;
}
.contact-module .social {
  position: relative;
  margin-top: 3px;
}
.contact-module .social .title {
  color: var(--purple);
  font-size: 19px;
  font-weight: 500;
  line-height: 34px;
  display: block;
}
.contact-module .social-links {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -5px;
}
.contact-module .social-links li {
  padding: 0 5px;
}
.contact-module .social-links li a:hover .icon {
  background-color: var(--purple-hover);
}
.contact-module .social-links li .icon {
  align-items: center;
  background-color: var(--purple);
  border-radius: 100%;
  display: flex;
  height: 31px;
  justify-content: center;
  width: 31px;
  line-height: 0;
}
.contact-module .social-links .icon svg {
  height: 100%;
  max-width: 14px;
  width: 100%;
  fill: var(--light-blue);
}

@media(min-width: 360px) {
  .contact-module .contact-list .cta_button {
    min-width: 259px;
  }
}
@media(min-width: 768px) {
  .contact-module {
    padding: 42px 0;
  }
  .contact-module .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -10px;
  }
  .contact-module .column {
    padding: 0 10px;
    width: 50%;
  }
  .contact-module .contact-list .cta_button {
    min-width: 239px;
  }
}
@media(min-width: 992px) {
  .contact-module .container {
    padding: 0 30px;
  }
  .contact-module .column {
    width: 33.33%;
  }
}
@media(min-width: 1200px) {
  .contact-module .contact-info {
    display: flex;
    flex-flow: row wrap;
  }
  .contact-module .contact-list .cta_button {
    min-width: 263px;
  }
  .contact-module .social {
    position: relative;
    padding-left: 45px;
    margin-top: -25px;
  }
}
@media(min-width: 1440px) {
  .contact-module .container {
    padding: 0 46px;
  }
  .contact-module .column {
    width: 25%;
  }
}
.contact-02 {
  background-color: var(--purple);
  padding: 64px 0 40px;
}
.contact-02 .container {
  max-width: 1182px;
  padding: 0 20px;
}
.contact-02 h2 {
  color: var(--light-blue);
  margin-bottom: 19px;
}
.contact-02 .text {
  color: var(--white-color);
}
.contact-02 .image-holder {
  max-width: 497px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 0 38px 0 19px;
  z-index: 1;
}
.contact-02 .image-holder::after {
  background-color: var(--light-blue);
  border-radius: 15px;
  content: "";
  height: 59.6%;
  right: 8px;
  position: absolute;
  top: -28px;
  width: 58.1%;
  z-index: -1;
}
.contact-02 .image-holder img {
  border-radius: 20px;
}
.contact-02 .content {
  padding-top: 15px;
}
.contact-02 .button-list {
  margin-top: 30px;
  max-width: 320px;
}
.contact-02 .button-list li {
  padding-bottom: 22px;
}
.contact-02 .button-list .cta_button {
  display: block;
}
.contact-02 .button-list .cta_button.outlined-white {
  font-weight: 400;
}
.contact-02 .link {
  max-width: 320px;
  font-size: 16px;
  display: block;
  text-align: center;
}
.contact-02 .link a {
  font-size: 18px;
}
.contact-02 .link a:hover {
  text-decoration: underline;
}

@media(min-width: 768px) {
  .contact-02 .container {
    padding: 0 30px;
  }
  .contact-02 h2 {
    margin-bottom: 26px;
  }
  .contact-02 .content {
    padding-top: 30px;
  }
  .contact-02 .button-list {
    margin-top: 20px;
    text-align: left;
  }
  .contact-02 .image-holder img {
    border-radius: 50px;
  }
  .contact-02 .image-holder::after {
    border-radius: 30px;
    height: 68.6%;
    top: -30px;
    width: 61.2%;
    z-index: -1;
  }
}
@media(min-width: 992px) {
  .contact-02 {
    padding: 65px 0;
  }
  .contact-02 .row {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    margin: 0 -15px;
  }
  .contact-02 .column {
    padding: 0 15px;
    margin-bottom: 0;
    width: 50%;
  }
  .contact-02 .content {
    padding: 0;
  }
  .contact-02 .image-holder {
    text-align: right;
    padding: 0 0 0 40px;
  }
  .contact-02 .image-holder::after {
    top: -54px;
    left: 0;
    right: auto;
  }
}
@media(min-width: 1200px) {
  .contact-02 .image-holder {
    padding: 0 20px 0 0;
  }
}
.contact-03 {
  background-color: var(--purple);
  padding: 64px 0 40px;
}
.contact-03 .container {
  max-width: 1182px;
  padding: 0 20px;
}
.contact-03 h2 {
  color: var(--light-blue);
  margin-bottom: 19px;
}
.contact-03 .text {
  color: var(--white-color);
}
.contact-03 .image-holder {
  max-width: 497px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 0 0 0 50px;
  z-index: 1;
}
.contact-03 .image-holder::after {
  background-color: var(--light-blue);
  border-radius: 15px;
  content: "";
  height: 49%;
  left: 8px;
  position: absolute;
  top: -28px;
  width: 78%;
  z-index: -1;
}
.contact-03 .image-holder img {
  border-radius: 20px;
}
.contact-03 .content {
  padding-top: 15px;
}
.contact-03 .button-list {
  margin-top: 30px;
  max-width: 320px;
}
.contact-03 .button-list li {
  padding-bottom: 22px;
}
.contact-03 .button-list .cta_button {
  display: block;
}
.contact-03 .button-list .cta_button.outlined-white {
  font-weight: 400;
}
.contact-03 .link {
  max-width: 320px;
  font-size: 16px;
  display: block;
  text-align: center;
}
.contact-03 .link a {
  font-size: 18px;
}
.contact-03 .link a:hover {
  text-decoration: underline;
}

@media(min-width: 768px) {
  .contact-03 .container {
    padding: 0 30px;
  }
  .contact-03 h2 {
    margin-bottom: 26px;
  }
  .contact-03 .content {
    padding-top: 30px;
  }
  .contact-03 .button-list {
    margin-top: 20px;
    text-align: left;
  }
  .contact-03 .image-holder img {
    border-radius: 30px;
  }
  .contact-03 .image-holder::after {
    border-radius: 30px;
    height: 66.8%;
    top: -30px;
    width: 65.2%;
    z-index: -1;
  }
}
@media(min-width: 992px) {
  .contact-03 {
    padding: 66px 0 80px;
  }
  .contact-03 .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .contact-03 .column {
    padding: 0 15px;
    margin-bottom: 0;
  }
  .contact-03 .column:nth-child(1) {
    width: 41%;
  }
  .contact-03 .column:nth-child(2) {
    width: 59%;
  }
  .contact-03 .content {
    padding: 0;
    max-width: 430px;
  }
  .contact-03 .image-holder {
    text-align: right;
    padding: 0 0 0 40px;
  }
  .contact-03 .image-holder img {
    border-radius: 50px;
  }
  .contact-03 .image-holder::after {
    top: auto;
    bottom: -50px;
    left: 13px;
    right: auto;
    width: 75.2%;
  }
}
@media(min-width: 1200px) {
  .contact-03 .image-holder {
    padding: 8px 25px 0 0;
  }
}
.contact-04 {
  background-color: var(--white-color);
  padding: 40px 0;
}
.contact-04 .container {
  max-width: 1440px;
  padding: 0 20px;
}
.contact-04 h2 {
  color: var(--purple);
  margin-bottom: 19px;
}
.contact-04 .text {
  color: var(--text-black);
}
.contact-04 .image-holder {
  height: 229px;
  width: 100%;
  margin: 30px auto 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.contact-04 .image-holder .bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  height: inherit;
  border-radius: 15px;
}
.contact-04 .button-list {
  margin-top: 30px;
  max-width: 320px;
}
.contact-04 .button-list li {
  padding-bottom: 22px;
}
.contact-04 .button-list .cta_button {
  display: block;
  font-weight: 500;
}
.contact-04 .button-list .cta_button.outlined-white {
  font-weight: 400;
}
.contact-04 .link {
  max-width: 320px;
  font-size: 16px;
  display: block;
  text-align: center;
}
.contact-04 .link a {
  font-size: 18px;
}
.contact-04 .link a:hover {
  text-decoration: underline;
}
.contact-04 .cta_button {
  padding: 11px 8px 7px;
}

@media(min-width: 576px) {
  .contact-04 .image-holder {
    height: 300px;
  }
}
@media(min-width: 768px) {
  .contact-04 {
    padding: 50px 0 70px;
  }
  .contact-04 .container {
    padding: 0 30px;
  }
  .contact-04 h2 {
    margin-bottom: 26px;
  }
  .contact-04 .button-list {
    margin-top: 20px;
    text-align: left;
  }
  .contact-04 .image-holder {
    height: 400px;
  }
}
@media(min-width: 992px) {
  .contact-04 {
    padding: 61px 0 86px;
  }
  .contact-04 .container {
    max-width: 930px;
  }
  .contact-04 .row {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    margin: 0 -15px;
  }
  .contact-04 .column {
    padding: 0 15px;
    margin-bottom: 0;
  }
  .contact-04 .column:nth-child(1) {
    width: 65%;
  }
  .contact-04 .column:nth-child(2) {
    width: 35%;
  }
  .contact-04 .content {
    padding: 0 20px 0 0;
    max-width: 455px;
    margin: 0 0 0 auto;
  }
  .contact-04 .image-holder {
    margin: 0;
    width: 184px;
    height: 366px;
  }
  .contact-04 .image-holder::after {
    background-color: var(--light-blue);
    border-radius: 15px;
    content: "";
    height: 220px;
    right: -100px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 180px;
    z-index: -1;
  }
  .contact-04 .image-holder .bg {
    border-radius: 0 15px 15px 0;
  }
}
@media(min-width: 1200px) {
  .contact-04 .image-holder {

  }
}
.contact-05 {
  background-color: var(--light-blue);
  padding: 34px 0 45px;
}
.contact-05 .container {
  max-width: 1440px;
  padding: 0 20px;
}
.contact-05 h2 {
  color: var(--purple);
  margin-bottom: 19px;
}
.contact-05 .text {
  color: var(--text-color);
}
.contact-05 .image-holder {
  max-width: 266px;
  margin: 60px auto 0;
  padding-left: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.contact-05 .image-holder::after {
  background-color: var(--white-color);
  border-radius: 15px;
  content: "";
  height: 103px;
  left: -20px;
  position: absolute;
  top: -28px;
  width: 220px;
  z-index: -1;
}
.contact-05 .image-holder .bg {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  height: 167px;
  width: 265px;
}
.contact-05 .button-list {
  margin-top: 30px;
  max-width: 320px;
}
.contact-05 .button-list li {
  padding-bottom: 22px;
}
.contact-05 .button-list .cta_button {
  display: block;
}
.contact-05 .button-list .cta_button.outlined-white {
  font-weight: 400;
}
.contact-05 .link {
  max-width: 320px;
  font-size: 16px;
  display: block;
  text-align: center;
}
.contact-05 .link a {
  font-size: 18px;
}
.contact-05 .link a:hover {
  text-decoration: underline;
}
.contact-05 .content ul {
  margin: 22 0 0px;
}

@media(max-width: 767px) {
  .contact-05.hide-image .column:nth-child(2) {
    display: none;
  }
  .contact-05 .image-holder.hide-box {
    margin: 30px auto 0;
  }
  .contact-05 .image-holder.hide-box:after {
    display: none;
  }
}
@media(min-width: 768px) {
  .contact-05 {
    padding: 49px 0;
  }
  .contact-05 .container {
    padding: 0 30px;
  }
  .contact-05 .button-list {
    margin-top: 20px;
    text-align: left;
  }
  .contact-05 .image-holder img {
    border-radius: 30px;
  }
  .contact-05 .image-holder::after {
    top: -30px;
    left: -40px;
    z-index: -1;
  }
}
@media(min-width: 992px) {
  .contact-05 .container {
    max-width: 852px;
  }
  .contact-05 .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .contact-05 .row {
    flex-direction: row-reverse;
  }
  .contact-05 .column {
    padding: 0 15px;
    margin-bottom: 0;
  }
  .contact-05 .column:nth-child(1) {
    width: 64%;
  }
  .contact-05 .column:nth-child(2) {
    width: 36%;
  }
  .contact-05 h2 {
    margin-bottom: 26px;
  }
  .contact-05 .content {
    padding: 0;
    max-width: 430px;
  }
  .contact-05 .image-holder {
    text-align: right;
    margin: 0 0 0 auto;
    padding: 0 0 0 40px;
  }
  .contact-05 .image-holder::after {
    width: 227px;
    height: 155px;
    top: auto;
    bottom: -50px;
    left: 0;
    right: auto;
  }
  .contact-05 .image-holder .bg {
    height: 193px;
    width: 185px;
    margin: 0 0 0 auto;
  }
}
@media(min-width: 1200px) {
  .contact-05 .image-holder {
    padding: 8px 19px 0 0;
  }
}
.contact-06 {
  background-color: var(--white-color);
  padding: 40px 0;
}
.contact-06 .container {
  max-width: 930px;
  padding: 0 20px;
}
.contact-06 h2 {
  color: var(--purple);
  margin-bottom: 19px;
}
.contact-06 .top-text {
  font-weight: 500;
  margin-bottom: 38px;
}
.contact-06 .text {
  color: var(--text-color);
}
.contact-06 .content ul {
  margin: 21px 0;
}
.contact-06 .image-holder {
  height: 200px;
  width: 100%;
  margin: 30px auto 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.contact-06 .image-holder .bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  height: inherit;
  border-radius: 15px;
}
.contact-06 .button-list {
  margin: 30px 0 0 !important;
  max-width: 320px;
}
.contact-06 .button-list li {
  padding-bottom: 22px;
}
.contact-06 .button-list .cta_button {
  display: block;
  font-weight: 500;
}
.contact-06 .button-list .cta_button.outlined-white {
  font-weight: 400;
}
.contact-06 .link {
  max-width: 320px;
  font-size: 16px;
  display: block;
  text-align: center;
}
.contact-06 .link a {
  font-size: 18px;
}
.contact-06 .link a:hover {
  text-decoration: underline;
}
.contact-06 .link a .icon {
  display: inline-block;
  margin-right: 3px;
  width: 8px;
}
.contact-06 .cta_button {
  padding: 11px 8px 7px;
}

@media(min-width: 576px) {
  .contact-06 .image-holder {
    height: 300px;
  }
}
@media(min-width: 768px) {
  .contact-06 {
    padding: 54px 0;
  }
  .contact-06 .container {
    padding: 0 30px;
  }
  .contact-06 h2 {
    margin-bottom: 24px;
  }
  .contact-06 .button-list {
    margin: 20px 0 0 !important;
    text-align: left;
  }
  .contact-06 .image-holder {
    height: 400px;
  }
}
@media(min-width: 992px) {
  .contact-06 .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .contact-06 .column {
    padding: 0 15px;
    margin-bottom: 0;
  }
  .contact-06 .column:nth-child(1) {
    width: 65%;
  }
  .contact-06 .column:nth-child(2) {
    width: 35%;
  }
  .contact-06 h2 {
    max-width: 530px;
    padding-left: 82px;
  }
  .contact-06 .top-text {
    max-width: 530px;
    padding-left: 82px;
  }
  .contact-06 .content {
    padding: 0 20px 0 0;
    max-width: 472px;
    margin: 0 0 0 auto;
  }
  .contact-06 .image-holder {
    margin: 0;
    width: 184px;
    height: 226px;
  }
  .contact-06 .image-holder::after {
    background-color: var(--light-blue);
    border-radius: 15px;
    content: "";
    height: 135px;
    right: -100px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 180px;
    z-index: -1;
  }
  .contact-06 .image-holder .bg {
    border-radius: 0 15px 15px 0;
  }
}
@media(min-width: 1200px) {
  .contact-06 h2 {
    padding-left: 102px;
  }
  .contact-06 .top-text {
    padding-left: 102px;
  }
  .contact-06 .content {
    max-width: 455px;
  }
}
.contact-07 {
  background-color: var(--white-color);
  padding: 34px 0 45px;
}
.contact-07 .container {
  max-width: 1440px;
  padding: 0 20px;
}
.contact-07 h2 {
  color: var(--purple);
  margin-bottom: 19px;
}
.contact-07 .text {
  color: var(--text-color);
}
.contact-07 .image-holder {
  margin: 30px auto 0;
  text-align: center;
  width: 320px;
  height: 229px;
  position: relative;
  z-index: 1;
}
.contact-07 .image-holder .bg { 
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 15px;
  height: inherit;
}
.contact-07 .image-holder img {
  border-radius: 20px;
}
.contact-07 .button-list {
  margin-top: 30px;
  max-width: 320px;
}
.contact-07 .button-list li {
  padding-bottom: 22px;
}
.contact-07 .button-list .cta_button {
  display: block;
}
.contact-07 .button-list .cta_button.outlined-white {
  font-weight: 400;
}
.contact-07 .link {
  max-width: 320px;
  font-size: 16px;
  display: block;
  text-align: center;
}
.contact-07 .link a {
  font-size: 18px;
}
.contact-07 .link a:hover {
  text-decoration: underline;
}

@media(max-width: 767px) {
  .contact-07.hide-image .column:nth-child(2) {
    display: none;
  }
  .contact-07 .image-holder.hide-box {
    margin: 30px auto 0;
  }
  .contact-07 .image-holder.hide-box:after {
    display: none;
  }
}
@media(min-width: 768px) {
  .contact-07 {
    padding: 49px 0;
  }
  .contact-07 .container {
    padding: 0 30px;
  }
  .contact-07 .button-list {
    margin-top: 20px;
    text-align: left;
  }
}
@media(min-width: 992px) {
  .contact-07 .container {
    max-width: 852px;
  }
  .contact-07 .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .contact-07 .column {
    padding: 0 15px;
    margin-bottom: 0;
  }
  .contact-07 .column:nth-child(1) {
    width: 64%;
  }
  .contact-07 .column:nth-child(2) {
    width: 36%;
  }
  .contact-07 h2 {
    margin-bottom: 26px;
  }
  .contact-07 .content {
    padding: 0;
    max-width: 430px;
  }
  .contact-07 .image-holder {
    width: 226px;
    height: 256px;
    margin: 0;
  }
  .contact-07 .image-holder::after {
    content: "";
    background-color: var(--light-blue);
    border-radius: 15px;  
    position: absolute;
    width: 227px;
    height: 155px;
    top: auto;
    bottom: -50px;
    left: 60px;
    right: auto;
    z-index: -1;
  }
  .contact-07 .image-holder .bg {
    border-radius: 30px;
  }
}
@media(min-width: 1200px) {
  .contact-07 .image-holder {
    padding: 8px 0 0 0;
  }
}
.contact-08 {
  background-color: var(--white-color);
  padding: 34px 0 45px;
}
.contact-08 .container {
  max-width: 1440px;
  padding: 0 20px;
}
.contact-08 h2 {
  color: var(--purple);
  margin-bottom: 19px;
}
.contact-08 .text {
  color: var(--text-color);
}
.contact-08 .image-holder {
  margin: 30px auto 0;
  line-height: 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.contact-08 .image-holder img {
  border-radius: 20px;
}
.contact-08 .button-list {
  margin-top: 30px;
  max-width: 320px;
}
.contact-08 .button-list li {
  padding-bottom: 22px;
}
.contact-08 .button-list .cta_button {
  display: block;
}
.contact-08 .button-list .cta_button.outlined-white {
  font-weight: 400;
}
.contact-08 .link {
  max-width: 320px;
  font-size: 16px;
  display: block;
  text-align: center;
}
.contact-08 .link a {
  font-size: 18px;
}
.contact-08 .link a:hover {
  text-decoration: underline;
}

@media(min-width: 768px) {
  .contact-08 {
    padding: 49px 0;
  }
  .contact-08 .container {
    padding: 0 30px;
  }
  .contact-08 .button-list {
    margin-top: 20px;
    text-align: left;
  }
}
@media(min-width: 992px) {
  .contact-08 .container {
    max-width: 852px;
  }
  .contact-08 .row {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-end;
    margin: 0 -15px;
  }
  .contact-08 .column {
    padding: 0 15px;
    margin-bottom: 0;
  }
  .contact-08 .column:nth-child(1) {
    width: 60%;
  }
  .contact-08 .column:nth-child(2) {
    width: 40%;
  }
  .contact-08 h2 {
    margin-bottom: 26px;
  }
  .contact-08 .content {
    padding: 0;
    max-width: 438px;
  }
  .contact-08 .image-holder {
    margin: 0;
    margin-top: -160px;
  }
  .contact-08 .image-holder img {
    border-radius: 30px;
  }
}
@media(min-width: 1200px) {
  .contact-08 .image-holder {
    padding: 8px 0 0 0;
    margin-top: -170px;
  }
}
.conditions {
  background-color: var(--white-color);
  padding: 40px 0 60px;
}
.conditions .container {
  max-width: 930px;
  padding: 0 20px;
}
.conditions h2 {
  color: var(--purple);
  margin-bottom: 19px;
}
.conditions .top-text {
  font-weight: 500;
  margin-bottom: 38px;
}
.conditions .text {
  color: var(--text-color);
}
.conditions .content ul {
  margin: 21px 0;
}
.conditions .image-holder {
  text-align: center;
  margin: 0 auto 20px;
  max-width: 100px;
}
.conditions .column.desktop {
  display: none;
}
.conditions .tip-box {
  background-color: var(--blue);
  border-radius: 15px;
  color: var(--purple);
  max-width: 516px;
  margin: 40px 0 0 0;
  padding: 26px 20px;
}

@media(min-width: 768px) {
  .conditions {
    padding: 54px 0;
  }
  .conditions .container {
    padding: 0 30px;
  }
  .conditions h2 {
    margin-bottom: 20px;
  }
  .conditions .tip-box {
    padding: 26px;
  }
}
@media(min-width: 992px) {
  .conditions .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .conditions .column {
    padding: 0 15px;
    margin-bottom: 0;
  }
  .conditions .column:nth-child(1) {
    width: 65%;
  }
  .conditions .column:nth-child(2) {
    width: 35%;
  }
  .conditions h2 {
    max-width: 530px;
  }
  .conditions .top-text {
    max-width: 525px;
    padding-left: 82px;
  }
  .conditions .content {
    padding: 0 20px 0 0;  
    max-width: 472px;  
    margin: 0 0 0 auto;
  }
  .conditions .image-holder {
    text-align: left;
    margin: 0;
    max-width: 100%;
  }
  .conditions .image-holder.mobile {
    display: none;
  }
  .conditions .column.desktop {
    display: block;
  }
  .conditions .tip-box {
    border-radius: 30px;
    max-width: 516px;
    margin: 40px 0 0 66px;
    padding: 36px;
  }
}
@media(min-width: 1200px) {
  .conditions .top-text {
    max-width: 535px;
    padding-left: 100px;
  }
  .conditions .content {
    max-width: 455px;
  }
}
.intro-module {
  padding: 38px 0; 
}
.intro-module .container {
  padding: 0 20px;
  max-width: 954px;
}
.intro-module .column {
  margin-bottom: 30px;
}
.intro-module .column:last-child {
  margin-bottom: 0;
}
.intro-module .image-holder {
  text-align: center;
  overflow: hidden;
  border-radius: 20px;
}

@media(min-width: 768px) {
  .intro-module {
    padding: 38px 0 30px; 
  }
  .intro-module .container {
    padding: 0 30px;
  }
  .intro-module .content {
    padding: 0 12px 0 8px;
  }
}
@media(min-width: 992px) {
  .intro-module .row {
    display: flex;
    flex-flow: row wrap;
    flex-direction: row-reverse;
    align-items: center;
    margin: 0 -15px;
  }
  .intro-module .column:nth-child(1) {
    width: 62%;
  }
  .intro-module .column:nth-child(2) {
    width: 38%;
  }
}
.faq-module {
  background-color: var(--purple);
  padding: 38px 0;
}
.faq-module .container {
  max-width: 932px;
  padding: 0 20px;
}
.faq-module h2 {
  color: var(--light-blue);
  margin-bottom: 22px;
}
.faq-module .text {
  color: var(--white-color);
  max-width: 600px;
}
.faq-module .link {
  color: var(--light-blue);
  display: block;
  margin-top: 20px;
}
.faq-module .title {
  color: var(--light-blue);
  margin-top: 30px;
  font-family: 'Calibre';
  font-weight: normal;
}
.faq-module .link a {
  color: var(--light-blue);
}
.faq-module .link a .icon {
  display: inline-block;
  width: 8px;
  margin-right: 3px;
}
.faq-module .accordion {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 0 18px;
}
.faq-module .accordion .accordion__title {
  color: var(--purple);
  cursor: pointer;
  background-color: var(--white-color);
  font-size: 18px;
  line-height: 25px;
  font-weight: 500;
  display: block;
  padding: 19px 45px 13px 16px;
  text-decoration: none;
  transition: all 0.2s linear;
  position: relative;
  margin: 0;
}
.faq-module .accordion .accordion__title:hover {
  text-decoration: underline;
}
.faq-module .accordion .accordion__title .icon {
  content: '';
  position: absolute;
  width: 17px;
  height: 9px;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg width='17' height='9' viewBox='0 0 17 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_99_1561)'%3E%3Cpath d='M8.18185 6.49307L14.5419 0.304351C14.9582 -0.100799 15.6346 -0.100799 16.0509 0.304351C16.4673 0.709502 16.4673 1.36765 16.0509 1.7728L8.9364 8.69574C8.72731 8.8992 8.45458 9.00005 8.18185 9.00005C7.90913 9.00005 7.6364 8.8992 7.42731 8.69574L0.312761 1.7728C-0.103603 1.36765 -0.103603 0.709502 0.312761 0.304351C0.729125 -0.100799 1.40549 -0.100799 1.82185 0.304351L8.18185 6.49307Z' fill='%23481268'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_99_1561'%3E%3Crect width='16.3636' height='9' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.faq-module .accordion .accordion__title.active .icon { 
  transform: rotate(180deg) translateY(-50%);
  margin-top: -10px;
}
.faq-module .accordion .accordion__content {
  background-color: var(--white-color);
  display: none;
  padding: 0 17px 34px;
}

.faq-module .second-section {
  margin-top: 40px;
  border-top: 1px solid var(--light-blue);
}

.faq-module .second-section .h3.title {
  margin-top: 50px;
}

@media(min-width: 768px) {
  .faq-module {
    padding: 66px 0;
  }
  .faq-module h2 {
    margin-bottom: 32px;
  }
  .faq-module .link {
    margin-top: 40px;
  }
}
.help-module {
  background-color: var(--light-blue);
  padding: 45px 0;
}
.help-module .container {
  padding: 0 20px;
}
.help-module h2 {
  max-width: 450px;
  margin-bottom: 33px;
}
.help-module .text {
  max-width: 550px;
}
.help-module .button-holder {
  text-align: center;
  margin-top: 33px;
}
.help-module .column:nth-child(2) {
  display: none;
}
.help-module .holder .column {
  margin-bottom: 20px;
}
.help-module .holder .column:nth-child(2) {
  display: block;
}
.help-module .help {
  background-color: var(--white-color);
  border-radius: 15px;
  display: flex;
  flex-flow: row nowrap;
  height: 100%;
  min-height: 100px;
  overflow: hidden;
  position: relative;
}

.help-module .help .name {
  font-weight: 500;
}

.help-module .help .amount {
  margin-left: 4px;
  font-size: 12px;
}

.help-module .help .short-text {
  color: var(--soft-black);
}

.help-module .help .image {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 115px;
}

.help-module .help .content {
  display: flex;
  flex-flow: column wrap;
  padding: 13px 14px;
  position: relative;
  width: calc(100% - 115px);
}

.help-module .help .ratings {
  color: var(--soft-black);
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  font-size: 12px;
  line-height: 12px;
  margin-top: 6px;
  line-height: 16px;
}

.help-module .help .ratings .icon {
  margin-right: 6px;
  display: inline-block;
}

.help-module .help .ratings {
  line-height: 16px;
}

.help-module .help .ratings .score,
.help-module .help .ratings .new {
  font-size: 16px;
}

.help-module .help .ratings .score {
  font-weight: 600;
  color: var(--text-black);
}

@media(max-width: 991px) {
  .help-module .holder .column:nth-child(4), .help-module .holder .column:nth-child(5), .help-module .holder .column:nth-child(6) {
    display: none;
  }
}
@media(min-width: 768px) {
  .help-module {
    padding: 63px 0; 
  }
}
@media(min-width: 992px) {
  .help-module .container {
    padding: 0 30px;
  }
  .help-module .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .help-module .column {
    padding: 0 15px;
  }
  .help-module .column:nth-child(1) {
    width: 40%;
  }
  .help-module .column:nth-child(2) {
    width: 60%;
    display: block;
  }
  .help-module h2 {
    margin-bottom: 26px;
  }
  .help-module .button-holder {
    text-align: left;
  }
  .help-module .holder.mobile {
    display: none;
  }
  .help-module .holder .row {
    display: block;
    margin: 0;
    column-count: 2;
  }
  .help-module .holder .column {
    padding: 0;
    width: 100% !important;
  }
}
@media(min-width: 1200px) {
  .help-module .column:nth-child(1) {
    width: 50%;
  }
  .help-module .column:nth-child(2) {
    width: 50%;
  }
}
@media(min-width: 1440px) {
  .help-module .container {
    padding: 0 46px;
  }
}
.help-caregivers {
  padding: 36px 0 40px;
}
.help-caregivers .container {
  max-width: 1116px;
  padding: 0 20px;
}
.help-caregivers .image-holder {
  text-align: center;
  max-width: 551px;
  margin: 0 auto;
}
.help-caregivers .image-holder img {
  border-radius: 20px;
  overflow: hidden;
}
.help-caregivers .content {
  background-color: var(--white-color);
  max-width: 551px;
  margin: -59px auto 0;
}
.help-caregivers h2 {
  background-color: var(--white-color);
  border-radius: 0 15px 0 0;
  overflow: hidden;
  padding: 18px 0 5px 0;
  max-width: 287px;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .help-caregivers .container {
    padding: 0 30px;
  }
  .help-caregivers h2 {
    max-width: 450px;
  }
  .help-caregivers .image-holder img {
    border-radius: 30px;
  }
}
@media (min-width: 992px) {
  .help-caregivers .row {
    display: flex;
    flex-flow: row wrap;
    flex-direction: row-reverse;
    align-items: center;
  }
  .help-caregivers .column:nth-child(1) {
    width: 60%;
  }
  .help-caregivers .column:nth-child(2) {
    width: 40%;
  }
  .help-caregivers .image-holder {
    margin: 0;
    position: relative;
    z-index: 1;
  }
  .help-caregivers .image-holder:after {
    background-color: var(--light-blue);
    border-radius: 30px;
    bottom: auto;
    content: "";
    height: 65.2%;
    position: absolute;
    right: -15%;
    top: 50%;
    transform: translateY(-50%);
    width: 64.2%;
    z-index: -1;
  }
  .help-caregivers .image-holder img {
    border-radius: 40px;
  }
  .help-caregivers h2 {
    background-color: transparent;
    border-radius: 0;
    max-width: 100%;
    padding: 0;
  }
  .help-caregivers .content {
    margin: 0 -96px 0 auto;
    border-radius: 15px;
    max-width: 467px;
    padding: 45px 30px;
    position: relative;
    z-index: 2;
  }
}
@media (min-width: 1200px) {
  .help-caregivers .image-holder img {
    border-radius: 50px;
  }
}
.postcode-tool {
  appearance: none;
  background-color: var(--white-color);
  border: 1px solid var(--blue);
  border-radius: 10px;
  box-shadow: none;
  outline: none;
  padding: 16px 40px 10px 17px; 
  width: 100%;
}

}
.useful-links {
  padding: 42px 0 20px;
}
.useful-links .container {
  max-width: 1220px;
  padding: 0 30px;
}
.useful-links h2 {
  max-width: 700px;
  margin: 0 auto 24px;
  text-align: center;
}
.useful-links .links-list {
  column-count: 1;
  margin: 0 -10px;
}
.useful-links .links-list li {
  padding: 0 10px 24px 16px;
  position: relative;
}
.useful-links .links-list li .icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
}

@media (min-width: 768px) {
  .useful-links {
    padding: 50px 0 24px;
  }
  .useful-links .container {
    padding: 0 40px;
  }
  .useful-links h2 {
    margin-bottom: 33px;
  }
  .useful-links .links-list {
    column-count: 2;
  }
}
@media (min-width: 992px) {
  .useful-links .links-list {
    column-count: 3;
  }
}
@media (min-width: 1200px) {
  .useful-links {
    padding: 70px 0 48px;
  }
  .useful-links .links-list {
    column-count: 4;
  }
}
@media (min-width: 1440px) {
  .useful-links .container {
    padding: 0 46px;
  }
}
.custom-richtext {
  padding: 26px 0 15px;
}
.custom-richtext .container {
  padding: 0 20px;
  max-width: 760px;
}
.custom-richtext h2 {
  margin-bottom: 10px;
}
.custom-richtext h3, .custom-richtext h4, .custom-richtext h5, .custom-richtext h6 {
  margin-bottom: 6px;
}
.custom-richtext p {
  margin-bottom: 20px;
}
.custom-richtext ul, .custom-richtext ol {
  margin: 14px 0;
}

@media(min-width: 768px) {
  .custom-richtext {
    padding: 42px 0;
  }
}
@media (min-width: 992px) {
  .custom-richtext .container {
    padding: 0 30px;
  }
}
@media(min-width: 1440px) {
  .custom-richtext .container {
    padding: 0 46px;
  }
}
.benefits-calculator {
  background-color: var(--light-blue);
  padding: 40px 0;
}
.benefits-calculator .container {
  max-width: 725px;
  padding: 0 20px;
}
.benefits-calculator h2 {
  margin-bottom: 25px;
}
.benefits-calculator .text {
  max-width: 450px;
  margin-bottom: 32px;
}
.benefits-calculator .calculator-form {
  max-width: 320px;
}
.benefits-calculator .calculator-form strong {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}
.benefits-calculator .calculator-form .select-holder {
  position: relative;
}
.benefits-calculator .calculator-form .select-holder:after {
  background-image: url("data:image/svg+xml,%3Csvg width='17' height='9' viewBox='0 0 17 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.18136 6.49258L14.5414 0.303863C14.9577 -0.101288 15.6341 -0.101288 16.0505 0.303863C16.4668 0.709013 16.4668 1.36716 16.0505 1.77231L8.93591 8.69525C8.72682 8.89871 8.45409 8.99956 8.18136 8.99956C7.90864 8.99956 7.63591 8.89871 7.42682 8.69525L0.312273 1.77231C-0.104091 1.36716 -0.104091 0.709013 0.312273 0.303863C0.728636 -0.101288 1.405 -0.101288 1.82136 0.303863L8.18136 6.49258Z' fill='%23481268'/%3E%3C/svg%3E%0A");
  content: "";
  height: 9px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
}
.benefits-calculator .calculator-form select, .benefits-calculator .calculator-form input[type='number'] {
  appearance: none;
  background-color: var(--white-color);
  border: 1px solid var(--blue);
  border-radius: 10px;
  box-shadow: none;
  outline: none;
  padding: 16px 40px 10px 17px; 
  width: 100%;
}

.benefits-calculator .calculator-form select, .benefits-calculator .calculator-form input[type='text'] {
  appearance: none;
  background-color: var(--white-color);
  border: 1px solid var(--blue);
  border-radius: 10px;
  box-shadow: none;
  outline: none;
  padding: 16px 40px 10px 17px; 
  width: 100%;
}

select:has(option:disabled:checked[hidden]) {
  color: #B6B6B6;
}

select option {
  color: #1E1E1E;
}

::placeholder {
  color: #909090;
}

/* Chrome, Safari, Edge, Opera */
.benefits-calculator .calculator-form input[type='number']::-webkit-outer-spin-button,
.benefits-calculator .calculator-form input[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.benefits-calculator .calculator-form input[type='number'] {
  -moz-appearance: textfield;
}
.benefits-calculator .calculator-form #resultaat strong {
  display: inline;
}

@media(min-width: 768px) {
  .benefits-calculator {
    padding: 50px 0;
  }
  .benefits-calculator .container {
    padding: 0 30px;
  } 
}
@media(min-width: 992px) {
  .benefits-calculator {
    padding: 69px 0;
  }
}
.branches-module {
  background-color: var(--light-blue);
  padding: 40px 0;
}
.branches-module .container {
  max-width: 1440px;
  padding: 0 20px;
}
.branches-module h2 {
  margin-bottom: 25px;
}
.branches-module .text {
  margin-bottom: 30px;
}
.branches-module .column {
  margin-bottom: 20px;
}
.branches-module .branch {
  background-color: var(--white-color);
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-flow: row nowrap;
  position: relative;
  height: 100%;
  min-height: 100px;
}
.branches-module .branch h3 {
  font-family: 'Calibre';
  font-weight: 500;
  margin-bottom: 0;
}
.branches-module .branch .short-text {
  color: var(--soft-black);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.branches-module .branch .price {
  color: var(--text-black);
}
.branches-module .branch .image-holder {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  width: 117px;
}
.branches-module .branch .content {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  padding: 16px 40px 16px 14px;
  width: calc(100% - 117px);
  position: relative;
}
.branches-module .branch .content:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  height: 17px;
  width: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='17' viewBox='0 0 10 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.9333 8.81864L0.324489 2.45864C-0.108164 2.04227 -0.108164 1.36591 0.324489 0.949545C0.757141 0.533182 1.45996 0.533182 1.89262 0.949545L9.28549 8.06409C9.50277 8.27318 9.61046 8.54591 9.61046 8.81864C9.61046 9.09136 9.50277 9.36409 9.28549 9.57318L1.89262 16.6877C1.45997 17.1041 0.757142 17.1041 0.324489 16.6877C-0.108163 16.2714 -0.108163 15.595 0.324489 15.1786L6.9333 8.81864Z' fill='%23481268'/%3E%3C/svg%3E%0A");
}

@media(min-width: 768px) {
  .branches-module {
    padding: 60px 0;
  }
  .branches-module h2 {
    margin-bottom: 40px;
  }
  .branches-module .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -10px;
  }
  .branches-module .column {
    padding: 0 10px;
    width: 50%;
  }
  .branches-module .branch .image-holder {
    width: 148px;
  }
  .branches-module .branch .content {
    width: calc(100% - 148px);
  }
  .branches-module .branch .content:after {
    right: 25px;
  }
}
@media(min-width: 992px) {
  .branches-module .container {
    padding: 0 30px;
  }
}
@media(min-width: 1200px) {
  .branches-module .column {
    width: 33.33%;
  }
}
@media(min-width: 1440px) {
  .branches-module .container {
    padding: 0 46px;
  }
}
.map-module {
  padding: 46px 0;
}
.map-module .text {
  max-width: 560px;
  font-weight: 500;
  margin-bottom: 40px;
}
.map-module #googleMap {
  min-height: 334px;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
}
.map-module #googleMap .gm-style .gm-style-iw-c {
  padding: 22px;
  max-width: 300px !important;
}
.map-module #googleMap .gm-ui-hover-effect {
  top: 0 !important;
  right: 0 !important;
}
.map-module #googleMap .gm-ui-hover-effect span {
  width: 20px !important;
  height: 20px !important;
  margin: 5px !important;
}
.map-module #googleMap .location-info {
  font-family: Calibre;
  font-size: 18px;
  line-height: 1.33;
  color: #1E1E1E;
  font-weight: 500;
} 
.map-module #googleMap .location-info .address {
  margin-bottom: 10px;
}
.map-module #googleMap .location-info .address span {
  display: block;
}
.map-module #googleMap .location-info .phone_number, .map-module #googleMap .location-info .email {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.map-module #googleMap .location-info .phone_number svg, .map-module #googleMap .location-info .email svg {
  margin-right: 5px;
  position: relative;
  top: -3px;
}
.map-module #googleMap .location-info .cta_button {
  display: block;
  min-width: inherit;
}

@media(min-width: 768px) {
  .map-module #googleMap {
    border-radius: 30px;
    min-height: 434px;
  }
}
@media(min-width: 992px) {
  .map-module #googleMap {
    min-height: 534px;
  }
}
@media(min-width: 1200px) {
  .map-module #googleMap {
    min-height: 634px;
  }
}
.blog-recent-post {
  background-color: var(--light-blue);
  padding: 35px 0;
}
.blog-recent-post .container {
  max-width: 1440px;
  padding: 0 20px;
}
.blog-recent-post h2 {
  text-align: left;
  margin-bottom: 22px;
}
.recent-post {
  background-color: var(--white-color);
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
}
.recent-post .post-article__image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  min-height: 150px;
  display: block;
  position: relative;
}
.recent-post .post-article__tag {  
  background-color: var(--purple);
  border-radius: 5px;
  color: var(--light-blue);
  font-size: 17px;
  line-height: 22px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  padding: 8px 22px 4px;
  text-transform: capitalize;
  text-decoration: none;
  position: absolute;
  bottom: -22px;
  left: 20px;
}
.recent-post .post-article__content {
  padding: 40px 20px 26px;
}
.recent-post .post-article__title {
  font-family: 'Degular Display';
  color: var(--purple);
  font-size: 27px;
  font-weight: 600;
  line-height: 32px;
  text-decoration: none;
  display: block;
  margin-bottom: 20px;
  position: relative;
}
.recent-post .post-article__title:hover {
  color: var(--purple);
}

.recent-post-slider {
  padding: 0 36px;
  z-index: 1;
}
.recent-post-slider:before,
.recent-post-slider:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 240px;
  width: 36px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin-top: -16px;
  z-index: -1;
}
.recent-post-slider:before {
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='79' height='297' viewBox='0 0 79 297' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 9.99999C0 4.47715 4.47715 0 10 0H79V297H10C4.47715 297 0 292.523 0 287V9.99999Z' fill='%2373CCE6' fill-opacity='0.3'/%3E%3C/svg%3E%0A");
}
.recent-post-slider:after {
  right: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='78' height='297' viewBox='0 0 78 297' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0H68C73.5229 0 78 4.47715 78 10V287C78 292.523 73.5229 297 68 297H0V0Z' fill='%2373CCE6' fill-opacity='0.3'/%3E%3C/svg%3E%0A");
}
.recent-post-slider .slick-list {
  margin: 0 -10px;
}
.recent-post-slider .slick-slide {
  padding: 0 10px;
}
.recent-post-slider .slick-arrow {
  cursor: pointer;
  content: '';
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  height: 55px;
  width: 55px;
  transition: all 0.4s ease-in-out;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='65' height='65' viewBox='0 0 65 65' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='32.5' cy='32.5' r='32.5' transform='rotate(-180 32.5 32.5)' fill='white'/%3E%3Cg clip-path='url(%23clip0_99_1327)'%3E%3Cpath d='M26.4425 44.5532C26.8844 45.0802 27.6664 45.15 28.1959 44.7103C28.7254 44.2705 28.7955 43.4922 28.3537 42.9652C28.3046 42.9094 28.252 42.8536 28.1959 42.8082L19.2504 33.8945L48.8186 33.8945C49.5059 33.8596 50.0354 33.2733 50.0003 32.5892C49.9652 31.954 49.4568 31.448 48.8186 31.4131L19.2504 31.4131L28.2099 22.5099C28.6798 22.0213 28.6798 21.2535 28.2099 20.7648C27.726 20.2832 26.944 20.2832 26.4601 20.7648L15.379 31.797C14.8951 32.2612 14.8811 33.029 15.3475 33.5106C15.358 33.5211 15.3685 33.5316 15.379 33.542L26.4425 44.5532Z' fill='%23481268'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_99_1327'%3E%3Crect width='35' height='24.5946' fill='white' transform='translate(50 45) rotate(-180)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.recent-post-slider .slick-arrow.slick-next {
  right: -10px;
  left: auto;
  background-image: url("data:image/svg+xml,%3Csvg width='65' height='65' viewBox='0 0 65 65' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='32.5' cy='32.5' r='32.5' fill='white'/%3E%3Cg clip-path='url(%23clip0_99_1231)'%3E%3Cpath d='M38.5575 20.4468C38.1156 19.9198 37.3336 19.85 36.8041 20.2897C36.2746 20.7295 36.2045 21.5078 36.6463 22.0348C36.6954 22.0906 36.748 22.1464 36.8041 22.1918L45.7496 31.1055H16.1814C15.4941 31.1404 14.9646 31.7267 14.9997 32.4108C15.0348 33.046 15.5432 33.552 16.1814 33.5869H45.7496L36.7901 42.4901C36.3202 42.9787 36.3202 43.7465 36.7901 44.2352C37.274 44.7168 38.056 44.7168 38.5399 44.2352L49.621 33.203C50.1049 32.7388 50.1189 31.971 49.6525 31.4894C49.642 31.4789 49.6315 31.4684 49.621 31.458L38.5575 20.4468Z' fill='%23481268'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_99_1231'%3E%3Crect width='35' height='24.5946' fill='white' transform='translate(15 20)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.recent-post-slider .slick-arrow:hover {
  width: 72px;
  height: 72px;
}
.recent-post-slider .slick-arrow.slick-disabled {
  opacity: 0;
  visibility: hidden;
}
.recent-post-slider .slick-dots {
  list-style: none;
  padding: 0;
  margin: 24px -5px 15px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
.recent-post-slider .slick-dots li {
  padding: 0 5px;
  line-height: 0;
}
.recent-post-slider .slick-dots li.slick-active button {
  background-color: var(--purple);
  height: 13px;
  width: 13px;
}
.recent-post-slider .slick-dots li.slick-active-prev button, .recent-post-slider .slick-dots li.slick-active-next button {
  height: 8px;
  width: 8px;
}
.recent-post-slider .slick-dots button {
  background-color: var(--blue);
  border-radius: 100%;
  height: 5px;
  width: 5px;
  outline: none;
  border: none;
  padding: 0;
  font-size: 0;
  line-height: 0;
}

@media(min-width: 768px) {
  .blog-recent-post {
    padding: 60px 0 88px;
  }
  .recent-post-slider {
    padding: 0 60px;
  }
  .blog-recent-post h2 {
    text-align: center;
    margin-bottom: 32px;
  }
  .recent-post-slider .slick-track {
    display: flex !important;
  }
  .recent-post-slider .slick-slide {
    height: inherit !important;
  }
  .recent-post-slider::after, .recent-post-slider::before {
    width: 79px;
    margin-top: 0;
  }
}
@media(min-width: 1200px) {
  .recent-post-slider .slick-arrow {
    left: -10px;
    height: 65px;
    width: 65px;
  }
  .recent-post-slider .slick-arrow.slick-next {
    right: -10px;
  }
}
@media(min-width: 1366px) {
  .recent-post-slider {
    padding: 0 140px;
  }
  .recent-post-slider::before {
    left: 62px;
  }
  .recent-post-slider::after {
    right: 62px;
  }
  .recent-post-slider .slick-arrow {
    left: 50px;
  }
  .recent-post-slider .slick-arrow.slick-next {
    right: 50px;
  }
}
/* vacancy-details style */
@media(min-width: 992px) {
  .vacancy-cleaner .useful-links .links-list {
    column-count: 3;
  }
  .vacancy-caretaker .useful-links .links-list {
    column-count: 4;
  }
}


/* vacancy-listing style */
.vacancy-listing {
  background-color: #E1FFFD;
  padding: 46px 0;
}
.vacancy-listing .container {
  max-width: 1440px;
  padding: 0 20px;
}
.vacancy-listing .jobs {
  align-items: center;
  background-color: var(--white-color);
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-flow: row nowrap;
  height: 100%;
  min-height: 78px;
  overflow: hidden;
  padding: 13px 45px 13px 22px;
  position: relative;
}
.vacancy-listing .jobs::after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='17' fill='none' viewBox='0 0 10 17'%3E%3Cpath fill='%23481268' d='M6.933 8.819.324 2.459a1.04 1.04 0 0 1 0-1.51 1.14 1.14 0 0 1 1.569 0l7.392 7.115a1.043 1.043 0 0 1 0 1.51l-7.392 7.114a1.14 1.14 0 0 1-1.569 0 1.04 1.04 0 0 1 0-1.51z'/%3E%3C/svg%3E");
  content: "";
  height: 17px;
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  margin-top: -2px;
}

@media (min-width: 768px) {
  .vacancy-listing {
    padding: 50px 0;
  }
  .vacancy-listing .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -10px;
  }
  .vacancy-listing .column {
    margin-bottom: 20px;
    padding: 0 10px;
    width: 50%;
  }
}
@media (min-width: 992px) {
  .vacancy-listing .container {
    padding: 0 30px;
  }
  .vacancy-listing .column {
    width: 33.333%;
  }
}
@media (min-width: 1200px) {
  .vacancy-listing .column {
    width: 25%;
  }
}
@media (min-width: 1440px) {
  .vacancy-listing .container {
    padding: 0 46px;
  }
}
.complaint {
  padding: 30px 0 68px;
}
.complaint .container {
  max-width: 955px;
  padding: 0 20px;
}
.complaint h2 {
  margin-bottom: 28px;
}
.complaint .text {
  color: var(--text-black);
  max-width: 600px;
}
.complaint .button-list {
  display: flex;
  flex-flow: row wrap;
  margin: 30px 0 0;
}
.complaint .button-list li {
  padding: 0 25px 0 0;
}
.complaint .button-list li:first-of-type {
  margin-bottom: 25px;
}
.complaint .button-list .cta_button {
  min-width: auto;
}
.complaint .button-list .cta_button .icon {
  display: inline-block;
  margin: 0 7px 0 0;
  line-height: 1;
  position: relative;
  top: 3px;
  width: 22px;
}
.complaint .button-list .cta_button.complaint_button .icon {
  top: 5px;
}

@media (min-width: 768px) {
  .complaint .container {
    padding: 0 30px;
  }
}
.impact {
  background-color: var(--white-color);
}
.impact .container {
  max-width: 1440px;
  padding: 0 20px;
}
.impact .box {
  background-color: var(--white-color);
  text-align: left;
  max-width: 894px;
  margin: 0 auto;
  padding: 37px 0;
}
.impact h2 {
  margin-bottom: 18px;
}
.impact .text {
  max-width: 555px;
  margin: 0 auto;
}


@media(min-width: 768px) {
  .impact .container {
    padding: 0 30px;
  }
  .impact .box { 
    border-radius: 15px;
    padding: 49px 30px;
  }
  .impact h2 {
    margin-bottom: 38px;
    text-align: center;
  }
}
@media(min-width: 992px) {
  .impact.overlap {
    padding-top: 70px;
  }
  .impact .box.overlap {
    margin-top: -140px;
    position: relative;
    z-index: 5;
  }
  .impact .box { 
    padding: 49px 30px 66px;
  }
}
.content-block {
  background-color: var(--light-blue);
  padding: 40px 0 65px;
}
.content-block .container {
  max-width: 995px;
  padding: 0 20px;
}
.content-block h2 {
  color: var(--purple);
  margin-bottom: 19px;
  max-width: 330px;
}
.content-block .text {
  color: var(--text-black);
}
.content-block .text p {
  margin-bottom: 2.2rem;
}
.content-block .text p:last-child {
  margin-bottom: 0;
}
.content-block .image-holder {
  height: 199px;
  max-width: 269px;
  width: 100%;
  margin: 30px 0 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.content-block .image-holder::after {
  background-color: var(--white-color);
  border-radius: 20px;
  content: "";
  height: 130px;
  right: -55px;
  position: absolute;
  bottom: -40px;
  transform: none;
  width: 180px;
  z-index: -1;
}
.content-block .image-holder .bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  height: inherit;
  border-radius: 20px;
  overflow : hidden;
}


@media(min-width: 768px) {
  .content-block {
    padding: 50px 0 70px;
  }
  .content-block .container {
    padding: 0 30px;
  }
  .content-block h2 {
    margin-bottom: 26px;
  }
  .content-block .image-holder {
    height: 329px;
    max-width: 409px;
    width: 100%;
    margin: 22px 0 0;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .content-block .image-holder::after {
    border-radius: 30px;
    width: 180px;
    height: 220px;
    right: -85px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
  }
  .content-block .image-holder .bg {
    border-radius: 30px;
  }
}
@media(min-width: 992px) {
  .content-block {
    padding: 61px 0 66px;
  }
  .content-block .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .content-block .column {
    padding: 0 15px;
    margin-bottom: 0;
  }
  .content-block .column:nth-child(1) {
    width: 47.2%;
  }
  .content-block .column:nth-child(2) {
    width: 52.8%;
  }
  .content-block .text {
    color: var(--text-black);
    max-width: 395px;
  }
  .content-block .text p {
    margin-bottom: 2.5rem;
  }
  .content-block .image-holder {
    margin: 22px 0 0;
  }
  .content-block .image-holder .bg {
    border-radius: 50px;
  }
}
.proud-moments {
  background-color: var(--purple);
  padding: 42px 0 20px;
}
.proud-moments .container {
  max-width: 995px;
  padding: 0 20px;
}
.proud-moments h2 {
  color: var(--light-blue);
  text-align: left;
}
.proud-moments .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
}
.proud-moments .column {
  padding: 0 15px;
  margin-bottom: 20px;
  width: 100%;
}
.proud-moments .proud-box {
  background-color: var(--light-blue);
  border-radius: 15px;
  overflow: hidden;
  padding: 35px 17px;
  height: 100%;
}
.proud-moments .proud-box .icon-holder {
  text-align: center;
  min-height: 76px;
}

@media (min-width: 768px) {
  .proud-moments .container {
    padding: 0 30px;
  }
}
@media (min-width: 992px) {
  .proud-moments {
    padding: 62px 0 40px;
  }
  .proud-moments h2 {
    margin-bottom: 42px;
    text-align: center;
  }
  .proud-moments .column {
    width: 33.33%;
  }
}
@media (min-width: 1200px) {
  .proud-moments .proud-box h3 {
    padding-right: 15px;
  }
}
.request-form {
  background-color: var(--light-blue);
  padding: 46px 0 60px;
}
@media (min-width: 768px) {
  .request-form {
    padding: 62px 0 80px;
  }
}
@media (min-width: 1200px) {
  .request-form {
    padding-bottom: 100px;
  }
}

.request-form .container {
  padding: 0 20px;
  max-width: 956px;
}
@media (min-width: 768px) {
  .request-form .container {
    padding: 0 30px;
  }
}

.request-form h2 {
  margin-bottom: 30px;
}
.request-form .text {
  color: var(--purple);
  max-width: 580px;
}

.request-form .form-holder {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
  padding-top: 38px;
}
@media(min-width: 768px) {
  .request-form .form-holder {
    flex-wrap: nowrap;
  }
}
.request-form .form {
  background-color: #fff;
  border-radius: 10px;
  padding: 23px 20px 35px;
  width: 100%;
}
@media(min-width: 768px) {
  .request-form .form {
    width: 68%;
  }
}

.request-form .form .form-title {
  margin-bottom: 22px;
}
.request-form .form .text {
  display: block;
  text-align: center;
  color: var(--purple);
  padding-top: 20px;
  font-size: 16px;
}
.request-form form .inputs-list.multi-container {
  margin-top: 15px;
}
.request-form form .hs-submit {
  text-align: center;
}
.request-form form .hs-button {
  background-color: transparent;
  border-color: var(--purple);
  padding: 11px 40px 7px 28px;
  background-repeat: no-repeat;
  background-position: 92% 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='12' viewBox='0 0 8 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2489_1053)'%3E%3Cpath d='M5.47947 5.99984L0.666025 1.33585C0.350908 1.03051 0.350908 0.534513 0.666025 0.229179C0.981142 -0.0761538 1.49303 -0.0761538 1.80815 0.229179L7.19266 5.44651C7.35091 5.59984 7.42934 5.79984 7.42934 5.99984C7.42934 6.19985 7.35091 6.39985 7.19266 6.55318L1.80815 11.7705C1.49304 12.0758 0.981142 12.0758 0.666025 11.7705C0.350908 11.4652 0.350908 10.9692 0.666025 10.6638L5.47947 5.99984Z' fill='%23481268'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2489_1053'%3E%3Crect width='12' height='7' fill='white' transform='translate(0.429688 12) rotate(-90)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.request-form form .hs-button:hover {
  text-decoration: underline;
}

.request-form .logo {
  display: none;
}
@media(min-width: 768px) {
  .request-form .logo {
    display: block;
    width: 32%;
  }
}
.footer .container {
  max-width: 955px;
  padding: 0 20px;
}
.footer .footer-holder {
  background-color: var(--blue);
  padding: 40px 0 42px;
}
.footer .footer-holder .column {
  border-bottom: 1px solid var(--white-color);
  padding-bottom: 30px;
  margin-bottom: 38px;
}
.footer .footer-holder .column:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.footer .title {
  color: var(--purple);
  font-size: 18px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}
.footer .footer-links li {
  padding-bottom: 10px;
}
.footer .footer-links li .tag {
  display: inline-block;
  background-color: var(--purple);
  border-radius: 5px;
  color: var(--white-color);
  padding: 1px 9px;
  font-family: 'Degular Display';
  font-size: 16px;
  font-weight: 600;
  line-height: 17px;
  text-align: center;
  margin-left: 3px;
}
.footer .social-links {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -5px;
}
.footer .social-links li {
  padding: 0 5px;
}
.footer .social-links li .icon {
  background-color: var(--purple); 
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 31px;
  width: 31px;
}
.footer .social-links li .icon svg {
  width: 100%;
  height: 100%;
  max-width: 14px;
  fill: var(--blue);
}
.footer .social-links li .icon .hs_cos_wrapper_type_icon {
  line-height: 0;
}
.footer .social-links li a:hover .icon {
  background-color: var(--purple-hover);
}
.footer .footer-bar {
  padding: 50px 0;
}
.footer .footer-bar .logos-list {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin: 0 -8px;
}
.footer .footer-bar .logos-list li {
  padding: 0 8px 15px;
}
.footer .footer-bar .logos-list li:nth-child(1) {
  width: 100%;
}
.footer .footer-bar .additional-links li {
  padding: 0 0 10px;
}
.footer .footer-bar .additional-links li a {
  color: var(--text-black);
}

@media(min-width: 768px) {
  .footer .container {
    padding: 0 30px;
  }
  .footer .footer-holder {
    padding: 50px 0 23px;
  }
  .footer .footer-holder .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .footer .footer-holder .column {
    padding: 0 15px;
    border-bottom: 0;
    width: 25%;
  }
  .footer .footer-bar {
    padding: 25px 0;
  }
  .footer .footer-bar .container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 865px;
  }
  .footer .footer-bar .logos-list {
    margin: 0 -10px;
  }
  .footer .footer-bar .logos-list li {
    padding: 0 10px;
  }
  .footer .footer-bar .logos-list li:first-child {
    width: auto;
  }
  .footer .footer-bar .additional-links {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end;
    margin: 0 -10px
  }
  .footer .footer-bar .additional-links li {
    padding: 0 10px;
    position: relative;
  }
  .footer .footer-bar .additional-links li:after {
    content: '-';
    position: absolute;
    top: 0;
    right: -1px;
  }
  .footer .footer-bar .additional-links li:last-child:after {
    display: none;
  }
}
@media(min-width: 992px) {
  .footer .footer-holder .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .footer .footer-holder .column {
    padding: 0 15px;
    width: 25%;
  }
  .footer .footer-bar .logos-list {
    margin: 0 -14px;
  }
  .footer .footer-bar .logos-list li {
    padding: 0 14px;
  }
  .footer .footer-bar .additional-links {
    margin: 0 -15px
  }
  .footer .footer-bar .additional-links li {
    padding: 0 15px;
  }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}