@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* Global styles */
:root {
  --site-purple: #6d3b5d;
  --site-purple-dark: #522742;
  --site-blue: #adc4e3;
  --site-blue-light: #ebf2fc;
  --site-dark: #282b32;
  --site-text: #484e55;
  --site-muted: #66707a;
  --button-background: var(--site-purple);
  --bs-link-color: var(--site-purple);
  --bs-link-color-rgb: 117, 55, 96;
  --bs-link-hover-color-rgb: 82, 39, 66;
  --bs-border-radius: 0;
  --bs-border-width: 0;
  --bs-body-font-size: 16px;
  --bs-body-font-family: "Poppins", Arial, sans-serif;
  --bs-body-color: var(--site-text);
  --bs-body-bg: #fff;
  scroll-padding-top: 86px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1320px;
  padding-left: 0;
  padding-right: 0;
}

a {
  color: var(--site-purple);
  text-decoration: none;
}

a:hover {
  color: var(--site-purple-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: inherit;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

h1 {
  font-size: 66px;
}

h2 {
  font-size: 52px;
}

h3 {
  font-size: 16px;
}

p {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
}

.row {
  --bs-gutter-x: 30px;
}

.btn {
  --bs-btn-bg: var(--site-purple);
  --bs-btn-hover-bg: var(--site-purple-dark);
  --bs-btn-active-bg: var(--site-purple-dark);
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  --bs-btn-active-color: #fff;
  --bs-btn-font-size: 12px;
  --bs-btn-line-height: 1;
  --bs-btn-font-weight: 500;
  --bs-btn-padding-x: 38px;
  --bs-btn-padding-y: 26px;
  --bs-btn-border-radius: 0;
  --bs-btn-border-width: 0;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-border-color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 150px;
  min-height: 37px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.btn i {
  font-size: 12px;
}

.btn-outline {
  --bs-btn-bg: transparent;
  --bs-btn-hover-bg: rgba(255, 255, 255, .1);
  --bs-btn-active-bg: rgba(255, 255, 255, .1);
  --bs-btn-border-color: rgba(255, 255, 255, .8);
  --bs-btn-hover-border-color: #fff;
  border-width: 2px;
}

.btn-dark {
  --bs-btn-bg: #1f2228;
  --bs-btn-hover-bg: #111318;
}

.form-control {
  min-height: 60px;
  border: 0;
  border-radius: 0;
  color: var(--site-text);
  font-size: 14px;
  line-height: 1.3;
  padding: 8px 20px;
  box-shadow: none;
}

.form-control:focus {
  box-shadow: 0 0 0 2px rgba(117, 55, 96, 0.25);
}

textarea.form-control {
  resize: vertical;
}

label.error {
  color: #f00;
  display: block;
  font-size: 10px;
  line-height: 1.2;
  margin-top: 4px;
}

.form-control.error {
  background-color: #ffc8c8;
  background-image: url("/images/error-field.png");
  background-position: right 8px center;
  background-repeat: no-repeat;
  background-size: 16px;
}

#gdpr-error {
  display: none !important;
}

.form-check-group {
  position: relative;
}

.form-check-group .checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form-check-group label {
  cursor: pointer;
  display: block;
  line-height: 1.35;
  min-height: 20px;
  padding-left: 29px;
  position: relative;
}

.form-check-group label::before {
  background: #fff;
  content: "";
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  top: 0;
  width: 20px;
}

.form-check-group .checkbox:checked + label::after {
  color: var(--site-purple);
  content: "\f00c";
  font-family: "Font Awesome 6 Pro";
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  left: 5px;
  top: 5px;
}

.form-check-group .checkbox.error + label::before {
  background-color: #ffc8c8;
}

.advansys {
  color: #ab4f8e;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  letter-spacing: -0.025em;
  font-weight: 700;
}

.modal-header {
  justify-content: space-between;
}

.close {
  border: none;
  background: no-repeat;
  font-size: 26px;
  color: inherit;
}

@media (max-width: 1399.98px) {
  .container {
    max-width: 1140px;
  }
}
@media (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }
  .row {
    --bs-gutter-x: 20px;
  }
  h1 {
    font-size: 55px;
  }
  h2 {
    font-size: 46px;
  }
}
@media (max-width: 767.98px) {
  .container {
    max-width: 540px;
  }
}
@media (max-width: 575.98px) {
  .container {
    padding-right: 30px;
    padding-left: 30px;
  }
  h2 {
    font-size: 36px;
  }
}
.nav-01 {
  --bs-navbar-padding-y: 0;
}
.nav-01 .container {
  position: relative;
  height: 100%;
}
.nav-01 .navbar-collapse {
  flex-grow: 0;
}
.nav-01 .logo {
  height: 143px;
  width: auto;
  margin-top: 25px;
  background: #fff;
  padding-top: 0;
  transition: all 1s;
}
.nav-01 .logo.scrolled-show {
  display: none;
}
.nav-01 .navbar {
  padding: 0;
  min-height: 70px;
  max-height: 110px;
  width: 100%;
  background-color: transparent;
  transition: padding 0.3s ease, min-height 0.3s ease, max-height 0.3s ease, width 0.3s ease;
}
.nav-01 .navbar-brand {
  display: block;
}
.nav-01 .navbar .navbar-container,
.nav-01 .navbar .navbar-header {
  height: 100%;
  padding: 0;
}
.nav-01 .nav-buttons {
  height: 70px;
  display: flex;
  position: absolute;
  right: 0;
  top: 30px;
  background: #fff;
  transition: all 0.05s ease;
  font-size: 12px;
}
.nav-01 .nav-button {
  letter-spacing: 0.2em;
  padding: 0 30px;
  background-color: #6d3b5d;
  border: unset;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.nav-01 .nav-button span {
  margin: auto;
  text-decoration: none;
}
.nav-01 .nav-button:hover {
  color: #fff;
}
.nav-01 .nav-button-portal {
  background-color: var(--site-blue);
  height: 100%;
}
.nav-01 .nav-button-portal i {
  padding-right: 10px;
}
.nav-01 .nav-button-portal i:last-child {
  padding-right: 0px;
  padding-left: 10px;
}
.nav-01 .nav-button-phone {
  background: transparent;
  color: var(--site-purple-dark);
  font-weight: 600;
  font-size: 14px;
  width: auto;
  padding: 0;
  letter-spacing: 0.1em;
}
.nav-01 .nav-button.nav-button-phone:hover {
  color: var(--site-purple-dark);
}
.nav-01 .nav-button-phone > span {
  margin-right: 35px;
}
.nav-01 .hamburger {
  height: 70px;
  width: 70px;
  margin: 0;
  padding: 0;
  background-color: #3c2735;
  color: #fff;
  border-radius: 0;
  position: relative;
  font-size: 19px;
  box-shadow: none;
}
.nav-01 .navbar-nav {
  background-color: var(--site-blue);
  width: auto;
}
.nav-01 .nav-link {
  color: var(--site-purple-dark);
  padding-left: 10px;
}
.nav-01 .item-dropdown {
  position: relative;
}
.nav-01 .item-dropdown .dropdown-item-menu {
  display: none;
}
.nav-01 .item-dropdown.show > .dropdown-item-menu {
  display: block;
  background: var(--site-blue);
}
.nav-01 .nav-phone {
  position: absolute;
  color: var(--site-purple-dark);
  text-align: right;
  right: 15px;
  top: 20px;
  z-index: 99999;
}
.nav-01 .dropdown-menu {
  margin: 0;
  border: none;
  border-radius: 0;
  background: var(--site-blue);
}
.nav-01 .nav-dropdown {
  position: relative;
}
.nav-01 .dropdown-menu {
  width: 100%;
  padding: 0;
  background-color: var(--site-blue);
  margin-top: 0;
  font-size: inherit;
  text-transform: uppercase;
  font-weight: 500;
  min-width: fit-content;
}
.nav-01 .dropdown-menu .dropdown-item {
  text-align: center;
  height: 70px;
  display: block;
  align-content: center;
  border-top: 1px solid #8ca6c8;
  transition: 0.3s all;
  font-weight: 500;
  letter-spacing: 2px;
  min-width: fit-content;
  color: #fff;
  padding: 10px;
}
.nav-01 .dropdown-menu .dropdown-item:hover {
  background-color: #ecf2fa;
  color: var(--site-text);
}
.nav-01 .dropdown-toggle::after {
  content: unset;
}
.nav-01.fixed-top.scrolled {
  background-color: #fff;
  height: 70px;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.2);
}
.nav-01.fixed-top.scrolled .nav-buttons {
  top: 0;
}
.nav-01.fixed-top.scrolled .nav-phone {
  display: none;
}
.nav-01.fixed-top.scrolled .logo {
  margin-top: 0;
  max-height: 34px;
  display: none;
  margin-left: 0;
}
.nav-01.fixed-top.scrolled .logo.scrolled-show {
  display: flex;
}
.nav-01.fixed-top.scrolled .nav-link {
  color: var(--site-text);
}
.nav-01 .navbar .container-fluid {
  padding: 0;
  overflow: unset;
}
.nav-01 #navbar-menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vw;
  z-index: 999;
  background-color: var(--site-blue);
}
.nav-01 .offcanvas {
  left: -100vw;
  transition: 0.3s all;
}
.nav-01 .offcanvas {
  height: 100vh;
  color: var(--site-text);
  background-color: var(--site-blue);
  display: block;
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 20;
}
.nav-01 .offcanvas-backdrop {
  display: none !important;
}
.nav-01 #offcanvasTop {
  justify-content: center;
  padding: 0;
  overflow: hidden;
}
.nav-01 .copy-featurettes .lvl1 > .nav-link {
  font-size: 72px;
  line-height: 70px;
  margin-bottom: 0;
  color: #fff;
  font-weight: 500;
  padding: 25px 0;
}
.nav-01 .header-link-container a {
  font-size: 36px;
  line-height: 72px;
  font-weight: 500;
  margin: 0;
  text-decoration: none;
  color: #fff;
  font-family: var(--bs-body-font-family);
}
.nav-01 .col-right-footer-links {
  padding-top: 16px;
}
.nav-01 .col-right-footer-links::after {
  content: "";
  display: flex;
  width: 100%;
  max-width: 120px;
  border-bottom: 5px #8ca6c8 solid;
  margin-top: 20px;
  margin-bottom: 20px;
}
.nav-01 #offcanvasTop .col-right-footer-links i {
  font-size: 32px;
  font-weight: 600;
  padding-left: 26px;
}
.nav-01 #offcanvasTop .col-right-footer-links i::before {
  font-weight: 600 !important;
}
.nav-01 #offcanvasTop .nav-button {
  width: 100%;
  background-color: transparent;
  padding: 0;
}
.nav-01 #offcanvasTop .nav-button span {
  margin: 0;
  font-size: 36px;
  line-height: 72px;
  letter-spacing: normal;
  text-transform: capitalize;
  font-weight: 500;
}
.nav-01 #offcanvasTop .nav-button span i::before {
  font-size: 30px;
}
.nav-01 #offcanvasTop .container {
  display: flex;
  flex-flow: column;
}
.nav-01 #offcanvasTop .row {
  margin: auto 0;
}
.nav-01 #offcanvasTop .navbar-toggler .navbar-toggler-icon {
  margin: auto;
  margin-top: auto;
  font-family: "Font Awesome 5 Pro";
  font-weight: 100;
  color: var(--site-purple-dark);
  font-size: 48px;
  height: 48px;
  width: 48px;
  margin-top: 30px;
}
.nav-01 #offcanvasTop .navbar-toggler {
  display: flex !important;
  padding: 0;
  border-style: none;
  position: absolute;
  top: 50px;
  right: 50px;
  height: 120px;
  width: 122px;
  scale: 100%;
  justify-content: center;
  align-items: center;
  box-shadow: none;
  padding-bottom: 10px;
}
.nav-01 #close-menu {
  line-height: 1;
  font-size: 50px;
  padding: 0;
}
.nav-01 .navbar-toggler {
  position: relative;
}
.nav-01 .navbar-toggler-bg {
  z-index: -1;
}
.nav-01 .nav-banner {
  position: absolute;
  height: 2000px;
  width: 2000px;
  display: flex;
  transform: translate(-50%, -50%);
  z-index: -5;
}
.nav-01 .offcanvas-top .nav-banner {
  left: -330%;
  top: 623%;
}
.nav-01 #offcanvasTop .navbar-toggler .navbar-toggler-icon {
  left: -150vw;
  transition: 0.7s all;
  position: relative;
}
.nav-01 .nav-banner.arrow-right {
  transition: 0.7s all;
  background: url(../images/arrowRight.webp) no-repeat;
  transition: 0.7s all;
  left: -150vw;
}
.nav-01 .nav-banner.arrow-top {
  transition: 0.5s all;
  top: 150vh;
  z-index: 3;
  background: url(../images/arrowTop.webp) no-repeat;
  transition: 0.5s all;
  z-index: 3;
}
.nav-01 #offcanvasTop.show .navbar-toggler .navbar-toggler-icon {
  left: 0;
}
.nav-01 .offcanvas-top.show .nav-banner {
  left: -330% !important;
  top: 623%;
}
.nav-01 .container-nav-blur::before {
  content: "";
  position: absolute;
  display: block;
  left: -600px;
  height: 100vh;
  width: 500px;
  background: linear-gradient(270deg, rgba(173, 196, 227, 0) 0%, rgba(173, 196, 227, 0.4471989479) 10%, rgb(173, 196, 227) 22%);
}
.nav-01 .container-nav-blur::after {
  content: "";
  position: absolute;
  display: block;
  right: -750px;
  height: 100vh;
  width: 500px;
  background: linear-gradient(90deg, rgba(173, 196, 227, 0) 0%, rgba(173, 196, 227, 0.4471989479) 10%, rgb(173, 196, 227) 22%);
}

@media (min-width: 767px) {
  .nav-01 .navbar-nav {
    background: transparent;
  }
  .nav-01 .dropdown-item {
    color: #fff;
  }
}
@media (min-width: 768px) {
  .nav-01 .nav-item.item-dropdown.lvl2 > .dropdown-switch:after {
    content: "\f0da";
  }
  .nav-01 .nav-item.item-dropdown.show.lvl2 > .dropdown-switch:after {
    content: "\f0d9";
  }
  .nav-01 .nav-item .nav-link {
    padding: 5px 15px;
  }
  .nav-01 .item-dropdown.show.lvl1 > .dropdown-item-menu {
    position: absolute;
    left: 15px;
    top: 100%;
    margin-top: 0px;
    border-radius: 0px;
    min-width: 240px;
    background-color: var(--site-blue);
    z-index: 1;
  }
  .nav-01 .nav-item.lvl2 {
    padding-top: 40px;
  }
  .nav-01 .item-dropdown.show.lvl2 > .dropdown-item-menu {
    position: absolute;
    left: 100%;
    top: 0;
    min-height: 100%;
    min-width: 180px;
    border-radius: 0px;
    z-index: 1000;
  }
}
@media (max-width: 991.98px) {
  .nav-01 .logo {
    margin-top: 20px;
  }
  .nav-01 .nav-buttons {
    top: 20px;
  }
  .nav-01 #offcanvasTop .col-right-footer-buttons {
    position: absolute;
    bottom: 40px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-flow: column;
    gap: 15px;
    display: none;
  }
  .nav-01 #offcanvasTop .nav-button {
    display: flex;
    background: #fff;
    height: 86px;
    color: var(--site-blue);
    text-align: center;
  }
  .nav-01 #offcanvasTop .nav-button span {
    display: inline;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 2px;
    margin: auto;
    text-transform: uppercase;
    order: 2;
    display: flex;
    flex-flow: row;
  }
  .nav-01 #offcanvasTop .nav-button span i::before {
    font-size: 20px;
  }
  .nav-01 #offcanvasTop .nav-button span i {
    order: 1;
    height: 36px;
    margin: auto;
    padding-right: 20px;
  }
  .nav-01 .copy-featurettes .lvl1 > .nav-link {
    font-size: 48px;
    line-height: 48px;
    padding: 20px 0;
  }
  .nav-01 .header-link-container a {
    font-size: 28px;
    line-height: 80px;
  }
  .nav-01 .col-right-footer-links {
    padding-top: 0;
  }
  .nav-01 .col-right-footer-links::after {
    content: unset;
  }
  .nav-01 #offcanvasTop .nav-scroll-container {
    height: calc(100% - 160px);
  }
}
@media (max-width: 767.98px) {
  .nav-01 .nav-button-portal {
    padding: 0;
  }
  .nav-01 #offcanvasTop .col-right-footer-buttons {
    display: flex;
    width: calc(100% - var(--bs-gutter-x));
  }
  .nav-01 #offcanvasTop .row {
    margin-top: 20px;
  }
  .nav-01 .nav-button-portal i {
    padding-right: 0px;
  }
  .nav-01 .nav-button-portal i::before {
    font-size: 17px;
  }
  .nav-01 .nav-button-portal .nav-button-inner {
    display: none;
  }
  .nav-01 .nav-button-portal {
    width: 64px;
  }
  .nav-01 #offcanvasTop .navbar-toggler {
    top: -80px;
    right: -5px;
  }
  .nav-01 #offcanvasTop .navbar-row {
    margin-top: 120px;
    margin-bottom: 0;
    height: calc(100vh - 120px);
    flex-flow: column;
    position: relative;
  }
  .nav-01 #offcanvasTop .nav-scroll-container {
    padding: 0;
    height: calc(100% - 210px);
    overflow-y: scroll;
    padding-bottom: 40px;
  }
  .nav-01 .dropdown-menu .dropdown-item {
    min-width: 240px;
  }
}
@media (max-width: 575.98px) {
  .nav-01 .logo {
    height: 116px;
  }
  .nav-01 .nav-buttons {
    top: 24px;
    right: 30px;
    height: 64px;
  }
  .nav-01 .hamburger {
    height: 64px;
    width: 64px;
  }
  .nav-01 .nav-button-portal {
    width: 64px;
  }
  .nav-01 #offcanvasTop .col-right-footer-buttons {
    bottom: 0;
  }
  .nav-01 .navbar .navbar-container {
    margin-left: 30px;
    margin-right: 30px;
  }
  .nav-01 .nav-button-touch {
    display: none;
  }
  .nav-01 #offcanvasTop .navbar-toggler {
    top: -80px;
    right: -24px;
    scale: 80%;
  }
  .nav-01 .copy-featurettes .lvl1 > .nav-link {
    font-size: 30px;
    line-height: 30px;
    padding: 15px 0;
  }
  .nav-01 .header-link-container {
    padding: 12px 0;
  }
  .nav-01 .header-link-container a {
    font-size: 20px;
    line-height: 1;
  }
  .nav-01 #offcanvasTop .nav-button {
    height: 66px;
    bottom: 20px;
  }
  .nav-01 #offcanvasTop .col-right-footer-links i {
    font-size: 23px;
    padding-left: 18px;
  }
  .nav-01 #offcanvasTop .navbar-row {
    margin-top: 90px;
  }
  .nav-01 #offcanvasTop .nav-button span {
    font-size: 14px;
    font-weight: 500;
  }
  .nav-01 #offcanvasTop .nav-button span i::before {
    font-size: 18px;
  }
  .nav-01 #offcanvasTop .nav-button span i {
    height: 21px;
    padding-right: 8px;
  }
  .nav-01 .navbar-brand {
    width: auto;
    flex: 1;
  }
  .nav-01 .navbar .navbar-header {
    display: flex;
    width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
    justify-content: space-between;
  }
  .nav-01 .dropdown-menu {
    left: unset;
    right: 0;
  }
  .nav-01 .dropdown-menu li .dropdown-item {
    border: 1px solid #8ca6c8;
    border-top: 0;
    min-width: unset;
  }
  .nav-01 .dropdown-menu li:first-child .dropdown-item {
    border-top: 1px solid #8ca6c8;
  }
  .nav-01 .navbar .navbar-header {
    overflow-x: unset;
  }
  .nav-01.fixed-top.scrolled {
    height: 64px;
  }
}
.main-banner {
  isolation: isolate;
  overflow: hidden;
  padding: 130px 0 0;
  position: relative;
}
.main-banner .main-banner-image {
  opacity: 0.77;
  pointer-events: none;
  position: absolute;
  bottom: -110px;
  right: calc(50% - 50dvw);
  top: -100px;
  z-index: 2;
  left: 19%;
}
.main-banner .main-banner-image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
  clip-path: polygon(30% 0%, 30% 20%, 100% 20%, 100% 85%, 30% 85%, 30% 100%, 0% 50%);
}
.main-banner .main-banner-row {
  --bs-gutter-y: 30px;
  position: relative;
  z-index: 2;
}
.main-banner .credentials-strip {
  position: relative;
  z-index: 2;
}
.main-banner h1 {
  color: #343844;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
  max-width: 565px;
}
.main-banner .main-banner-copy p {
  color: #5d6874;
  font-size: 22px;
  line-height: 1.35;
  max-width: 435px;
}
.main-banner .consultation-panel {
  color: #fff;
  margin: 0;
  padding: 50px 0 0;
  position: relative;
}
.main-banner .consultation-panel::before {
  background: rgba(168, 197, 231, 0.8);
  content: "";
  display: none;
  inset: 0;
  position: absolute;
  z-index: -1;
}
.main-banner .consultation-panel h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 21px;
}
.main-banner .consultation-fields {
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr 1fr;
}
.main-banner .consultation-email {
  grid-column: 1/-1;
}
.main-banner .form-check-group {
  color: #fff;
  margin: 20px 0 15px;
}
.main-banner .btn {
  width: 100%;
}
.main-banner .main-banner-row {
  align-items: start;
}
.main-banner .main-banner-copy {
  padding-top: 105px;
  padding-bottom: 65px;
}
.main-banner .container {
  position: relative;
  z-index: 5;
}
.main-banner .form-check-group label {
  font-size: 14px;
}
@media (min-width: 1400px) {
  .main-banner .main-banner-image img {
    clip-path: polygon(370px 0%, 370px 20%, 100% 20%, 100% 85%, 370px 85%, 370px 100%, 0% 50%);
  }
}
@media (max-width: 1199.98px) {
  .main-banner {
    padding-top: 120px;
  }
  .main-banner .consultation-panel {
    padding-top: 48px;
  }
  .main-banner .consultation-panel h2 {
    font-size: 30px;
    margin-bottom: 18px;
  }
  .main-banner .form-check-group {
    margin: 18px 0 14px;
  }
  .main-banner .consultation-panel .btn {
    min-height: 60px;
  }
  .main-banner .consultation-fields {
    gap: 12px;
  }
  .main-banner h1 {
    font-size: 52px;
    line-height: 0.96;
    margin-bottom: 8px;
    max-width: 460px;
  }
  .main-banner .main-banner-copy p {
    font-size: 20px;
    max-width: 360px;
  }
  .main-banner .main-banner-copy {
    padding-bottom: 36px;
    padding-top: 84px;
  }
  .main-banner .main-banner-image {
    left: 10%;
    top: -90px;
  }
  .main-banner .main-banner-image img {
    clip-path: polygon(36% 0%, 36% 20%, 100% 20%, 100% 85%, 36% 85%, 36% 100%, 0% 50%);
  }
}
@media (max-width: 991.98px) {
  .main-banner {
    padding-top: 186px;
  }
  .main-banner .main-banner-image {
    display: none;
  }
  .main-banner .main-banner-copy {
    padding-top: 0;
    padding-bottom: 0;
  }
  .main-banner h1 {
    font-size: 50px;
    line-height: 1;
    margin-bottom: 8px;
    max-width: 560px;
  }
  .main-banner .main-banner-copy p {
    font-size: 19px;
    max-width: 560px;
  }
  .main-banner .consultation-panel {
    margin-left: calc(50% - 50dvw);
    margin-right: calc(50% - 50dvw);
    padding: 42px calc((100dvw - 720px) / 2) 58px;
  }
  .main-banner .consultation-panel::before {
    background: url("/images/main-banner.webp") center no-repeat;
    background-size: cover;
    display: block;
  }
  .main-banner .consultation-panel h2 {
    font-size: 34px;
    margin-bottom: 14px;
  }
  .main-banner .consultation-fields {
    gap: 12px;
  }
  .main-banner .consultation-panel .form-control {
    min-height: 56px;
  }
  .main-banner .consultation-panel .btn {
    min-height: 60px;
  }
  .main-banner .main-banner-row {
    --bs-gutter-y: 22px;
    align-items: stretch;
  }
}
@media (max-width: 767.98px) {
  .main-banner {
    padding-top: 180px;
  }
  .main-banner .consultation-panel {
    padding-left: calc((100dvw - 540px) / 2);
    padding-right: calc((100dvw - 540px) / 2);
    padding-top: 34px;
    padding-bottom: 42px;
  }
  .main-banner h1 {
    font-size: 44px;
    max-width: 500px;
  }
  .main-banner .main-banner-copy p {
    font-size: 18px;
  }
  .main-banner .consultation-panel h2 {
    font-size: 30px;
    margin-bottom: 12px;
  }
  .main-banner .consultation-fields {
    gap: 10px;
  }
  .main-banner .consultation-panel .form-control {
    min-height: 54px;
    padding: 8px 18px;
  }
  .main-banner .consultation-panel .btn {
    min-height: 56px;
  }
  .main-banner .form-check-group {
    margin-top: 16px;
  }
  .main-banner #hero-gdpr + label {
    font-size: 14px;
  }
}
@media (max-width: 575.98px) {
  .main-banner {
    padding-top: 168px;
  }
  .main-banner .main-banner-row {
    --bs-gutter-y: 0;
  }
  .main-banner .main-banner-copy p {
    display: none;
  }
  .main-banner .consultation-panel {
    margin-top: 18px;
    padding-bottom: 40px;
    padding-top: 34px;
    padding-left: calc((100dvw - 320px) / 2);
    padding-right: calc((100dvw - 320px) / 2);
  }
  .main-banner .consultation-panel h2 {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 13px;
    max-width: 230px;
  }
  .main-banner .form-check-group label {
    font-size: 14px;
    line-height: 1.5;
    padding-left: 29px;
  }
  .main-banner .form-check-group label::before {
    height: 20px;
    width: 20px;
  }
  .main-banner .form-check-group .checkbox:checked + label::after {
    left: 5px;
    top: 5px;
  }
  .main-banner .form-check-group {
    margin-top: 18px;
  }
  .main-banner .consultation-fields {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .main-banner .consultation-email {
    grid-column: auto;
  }
  .main-banner .consultation-panel .form-control {
    min-height: 54px;
    font-size: 14px;
    padding: 8px 18px;
  }
  .main-banner .consultation-panel .btn {
    min-height: 56px;
  }
  .main-banner h1 {
    font-size: 40px;
    line-height: 1;
    max-width: none;
  }
  .main-banner .consultation-panel {
    padding-bottom: 40px;
    padding-left: calc((100dvw - 320px) / 2);
    padding-right: calc((100dvw - 320px) / 2);
    padding-top: 34px;
  }
  .main-banner .consultation-panel h2 {
    font-size: 30px;
    max-width: 200px;
  }
  .main-banner .consultation-fields {
    gap: 10px;
  }
  .main-banner .consultation-panel .form-control {
    min-height: 54px;
  }
  .main-banner .consultation-panel .btn {
    min-height: 56px;
  }
  .main-banner .form-check-group {
    margin-top: 18px;
  }
  .main-banner .form-check-group label {
    font-size: 14px;
    line-height: 1.5;
  }
}

.credentials-strip {
  background: var(--site-blue-light);
  padding: 54px 0 44px;
}
.credentials-strip .credentials-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 40% 50%;
  justify-content: space-between;
}
.credentials-strip p {
  color: #7696b8;
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  margin: 0;
}
.credentials-strip .credential-logos {
  align-items: center;
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(4, 1fr);
}
.credentials-strip .credential-logos img {
  display: block;
  height: auto;
  margin: 0 auto;
  max-height: 48px;
  max-width: 100%;
  object-fit: contain;
}

@media (max-width: 1199.98px) {
  .credentials-strip {
    padding-bottom: 48px;
    padding-top: 48px;
  }
  .credentials-strip .credentials-grid {
    grid-template-columns: 36% 50%;
  }
  .credentials-strip p {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (max-width: 991.98px) {
  .credentials-strip {
    padding-bottom: 44px;
    padding-top: 34px;
  }
  .credentials-strip .credentials-grid {
    align-items: center;
    grid-template-columns: 1fr;
  }
  .credentials-strip p {
    font-size: 18px;
    line-height: 1.42;
  }
  .credentials-strip .credential-logos {
    gap: 18px;
  }
}
@media (max-width: 767.98px) {
  .credentials-strip {
    padding-bottom: 34px;
    padding-top: 30px;
  }
  .credentials-strip .credentials-grid {
    gap: 18px;
  }
  .credentials-strip p {
    max-width: 400px;
  }
  .credentials-strip .credential-logos {
    gap: 16px;
  }
}
@media (max-width: 575.98px) {
  .credentials-strip {
    padding: 32px 0 48px;
  }
  .credentials-strip .credentials-grid {
    align-items: stretch;
    gap: 16px;
    grid-template-columns: none;
  }
  .credentials-strip p {
    font-size: 18px;
    line-height: 1.38;
    max-width: unset;
  }
  .credentials-strip .credential-logos {
    gap: 12px;
  }
  .credentials-strip .credential-logos img {
    max-height: 30px;
  }
}
.services-overview {
  overflow: visible;
  padding: 75px 0 0px;
  position: relative;
  z-index: 1;
}
.services-overview::after {
  content: "";
  background: var(--site-purple);
  bottom: 0;
  height: 95px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: -1;
}
.services-overview .services-arrow {
  background: var(--site-blue-light);
  clip-path: polygon(55% 0, 100% 50%, 55% 100%, 55% 84%, 0 84%, 0 20%, 55% 20%);
  height: 588px;
  left: 0;
  position: absolute;
  top: 275px;
  width: calc((100vw - 1320px) / 2 + 560px);
  z-index: 0;
}
.services-overview .services-intro {
  padding-top: 0;
}
.services-overview .services-intro h2 {
  margin-bottom: 25px;
}
.services-overview .services-intro p {
  color: #4e5660;
  line-height: 1.5;
  margin-bottom: 25px;
  max-width: 560px;
}
.services-overview .services-intro p:last-child {
  margin-bottom: 0;
}
.services-overview .service-card-list {
  display: grid;
  gap: 21px;
}
.services-overview .service-card {
  color: #fff;
  display: block;
  height: 218px;
  overflow: hidden;
  position: relative;
}
.services-overview .service-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  width: 100%;
}
.services-overview .service-card:hover img,
.services-overview .service-card:focus-visible img {
  transform: scale(1.025);
}
.services-overview .service-card:focus-visible {
  outline: 3px solid var(--site-purple);
  outline-offset: 3px;
}
.services-overview .service-card::after {
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62) 0, rgba(0, 0, 0, 0.08) 68%);
  inset: 0;
  pointer-events: none;
  position: absolute;
}
.services-overview .service-card-number,
.services-overview .service-card-title,
.services-overview .service-card i {
  position: absolute;
  z-index: 1;
}
.services-overview .service-card-number {
  font-size: 14px;
  font-weight: 400;
  left: 35px;
  line-height: 1;
  top: 45px;
}
.services-overview .service-card-title {
  bottom: 30px;
  font-size: 35px;
  font-weight: 500;
  left: 35px;
  line-height: 1;
}
.services-overview .service-card i {
  bottom: 28px;
  font-size: 21px;
  right: 27px;
}
@media (max-width: 1199.98px) {
  .services-overview .services-arrow {
    height: 565px;
    top: 290px;
    clip-path: polygon(34% 0px, 100% 50%, 34% 100%, 34% 84%, 0px 84%, 0px 16%, 34% 16%);
    width: calc((100vw - 960px) / 2 + 410px);
  }
  .services-overview .services-intro {
    padding-top: 0;
  }
  .services-overview .service-card-number {
    left: 31px;
    top: 40px;
  }
  .services-overview .service-card-title {
    bottom: 27px;
    font-size: 33px;
    left: 31px;
  }
  .services-overview .service-card i {
    bottom: 25px;
    right: 24px;
  }
  .services-overview .services-intro p {
    max-width: 410px;
  }
}
@media (max-width: 991.98px) {
  .services-overview {
    padding-top: 60px;
  }
  .services-overview .services-arrow {
    width: calc((100vw - 720px) / 2 + 628px);
    top: 60px;
    clip-path: polygon(58% 0%, 100% 50%, 58% 100%, 58% 80%, 0% 80%, 0% 20%, 58% 20%);
  }
  .services-overview .services-intro {
    padding-top: 0;
  }
  .services-overview .services-intro h2 {
    margin-bottom: 18px;
  }
  .services-overview .services-intro p {
    max-width: none;
    line-height: 1.45;
    margin-bottom: 18px;
  }
  .services-overview .service-card-list {
    gap: 18px;
  }
  .services-overview .service-card {
    height: 212px;
  }
  .services-overview .service-card-number {
    left: 35px;
    top: 45px;
  }
  .services-overview .service-card-title {
    bottom: 30px;
    font-size: 36px;
    left: 35px;
  }
  .services-overview .service-card i {
    bottom: 28px;
    right: 27px;
  }
}
@media (max-width: 767.98px) {
  .services-overview .services-intro h2 {
    margin-bottom: 16px;
  }
  .services-overview .services-intro p {
    font-size: 16px;
    line-height: 1.48;
    margin-bottom: 16px;
  }
  .services-overview .row {
    --bs-gutter-y: 16px;
  }
  .services-overview .service-card-list {
    gap: 16px;
  }
  .services-overview .services-arrow {
    width: calc((100vw - 540px) / 2 + 465px);
    clip-path: polygon(40% 0%, 100% 50%, 40% 100%, 40% 80%, 0% 80%, 0% 20%, 40% 20%);
  }
}
@media (max-width: 575.98px) {
  .services-overview::after {
    height: 68px;
  }
  .services-overview .services-arrow {
    display: block;
    height: 390px;
    left: 0;
    top: 195px;
    width: calc((100vw - 320px) / 2 + 320px);
  }
  .services-overview .services-intro h2 {
    margin-bottom: 14px;
  }
  .services-overview .services-intro p {
    font-size: 15px;
    line-height: 1.44;
    margin-bottom: 18px;
  }
  .services-overview .row {
    --bs-gutter-y: 14px;
  }
  .services-overview .service-card-list {
    gap: 14px;
  }
  .services-overview .service-card {
    height: 208px;
  }
  .services-overview .service-card-number {
    font-size: 14px;
    left: 34px;
    top: 45px;
  }
  .services-overview .service-card-title {
    bottom: 31px;
    font-size: 27px;
    left: 34px;
    max-width: 240px;
  }
  .services-overview .service-card i {
    bottom: 29px;
    font-size: 19px;
    right: 28px;
  }
}

.delivery-section {
  background: var(--site-purple);
  color: #fff;
  margin-top: 0;
  min-height: 630px;
  overflow: hidden;
  padding: 100px 0 125px;
  position: relative;
}
.delivery-section .delivery-image {
  bottom: 0;
  clip-path: polygon(50% 15%, 100% 70%, 78% 70%, 78% 100%, 22% 100%, 22% 70%, 0% 70%);
  height: 670px;
  position: absolute;
  right: 110px;
  width: 45%;
  background: #000;
  mix-blend-mode: multiply;
}
.delivery-section .delivery-image img {
  filter: grayscale(0.2);
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.delivery-section .delivery-copy {
  max-width: 630px;
  position: relative;
  z-index: 1;
}
.delivery-section h2 {
  font-size: 66px;
  line-height: 68px;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.delivery-section p {
  font-size: 22px;
  text-wrap: balance;
  margin-bottom: 26px;
}
.delivery-section .delivery-actions {
  display: flex;
  flex-direction: row;
  width: auto;
}

@media (max-width: 1199.98px) {
  .delivery-section {
    min-height: 600px;
    padding-top: 80px;
    padding-bottom: 135px;
  }
  .delivery-section .delivery-image {
    height: 590px;
    right: 18%;
    width: 590px;
  }
  .delivery-section h2 {
    font-size: 55px;
    line-height: 56px;
  }
  .delivery-section .delivery-actions {
    display: grid;
    justify-content: start;
    gap: 12px;
  }
}
@media (max-width: 991.98px) {
  .delivery-section {
    min-height: 530px;
    padding: 90px 0 120px;
  }
  .delivery-section .delivery-image {
    bottom: 0;
    height: 100%;
    right: 0;
    width: 715px;
    transform: translateX(50%);
  }
}
@media (max-width: 767.98px) {
  .delivery-section {
    min-height: 500px;
  }
  .delivery-section .delivery-image {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .delivery-section {
    padding: 120px 0 120px;
    min-height: unset;
  }
  .delivery-section h2 {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 12px;
  }
  .delivery-section .delivery-actions {
    justify-content: normal;
    margin-bottom: 0px;
  }
  .delivery-section p {
    margin-bottom: 18px;
  }
}
.additional-services {
  padding: 130px 0 45px;
}
.additional-services .additional-card {
  color: #fff;
  padding: 60px 75px 65px;
  position: relative;
  z-index: 1;
  background: var(--site-blue);
  border-bottom-right-radius: 50px;
}
.additional-services .additional-card::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 35%;
  background-color: #a0b8d9;
  pointer-events: none;
  clip-path: polygon(32% 72%, 100% 13%, 75% 13%, 75% 0%, 0% 0%, 0% 13%, -32% 13%);
  z-index: -1;
}
.additional-services h2 {
  margin-bottom: 25px;
  font-size: 52px;
  max-width: 470px;
  text-wrap: balance;
  letter-spacing: -0.03em;
}
.additional-services h3 {
  color: var(--site-purple);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 3px;
}
.additional-services p {
  color: #31506c;
  line-height: 1.45;
  font-size: 18px;
}

@media (max-width: 1199.98px) {
  .additional-services {
    padding-top: 95px;
  }
  .additional-services .additional-card {
    padding: 64px 56px 58px;
  }
  .additional-services .additional-card::before {
    width: 43%;
    clip-path: polygon(32% 66%, 100% 13%, 75% 13%, 75% 0%, 0% 0%, 0% 13%, -32% 13%);
  }
  .additional-services h2 {
    font-size: 48px;
  }
}
@media (max-width: 991.98px) {
  .additional-services {
    padding-top: 65px;
    padding-bottom: 45px;
  }
  .additional-services .additional-card {
    padding: 58px 42px 70px;
  }
  .additional-services h2 {
    margin-bottom: 18px;
    max-width: 100%;
  }
  .additional-services .additional-card::before {
    width: 57%;
    clip-path: polygon(32% 58%, 100% 13%, 75% 13%, 75% 0%, 0% 0%, 0% 13%, -32% 13%);
  }
}
@media (max-width: 575.98px) {
  .additional-services {
    padding-bottom: 20px;
  }
  .additional-services .additional-card {
    padding-left: 36px;
    padding-right: 36px;
  }
  .additional-services h2 {
    font-size: 33px;
  }
  .additional-services .additional-card::before {
    width: 100%;
    clip-path: polygon(24% 35%, 100% 10%, 76% 10%, 76% 0%, 0% 0%, 0% 10%, -24% 10%);
  }
}
.service-details {
  padding: 25px 0 50px;
}
.service-details .service-detail-item h2,
.service-details .service-accordion-button {
  color: #4f545c;
  font-size: 55px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.025em;
}
.service-details .service-detail-item p,
.service-details .service-accordion-body p {
  color: #4e5660;
  line-height: 1.5;
  margin-bottom: 26px;
}
.service-details .service-detail-item h2 {
  margin-bottom: 20px;
}
.service-details .service-accordion-item {
  border-bottom: 1px solid #e5e7ec;
}
.service-details .service-accordion-button {
  align-items: center;
  background: transparent;
  border: 0;
  display: flex;
  justify-content: space-between;
  padding: 42px 0;
  text-align: left;
  width: 100%;
}
.service-details .service-accordion-button::after {
  content: "-";
  font-size: 30px;
  line-height: 1;
  font-family: "Font Awesome 6 Pro";
}
.service-details .service-accordion-button.collapsed::after {
  content: "+";
}
@media (max-width: 1199.98px) {
  .service-details .service-detail-item h2,
  .service-details .service-accordion-button {
    font-size: 48px;
  }
}
@media (max-width: 991.98px) {
  .service-details {
    padding-top: 48px;
    padding-bottom: 105px;
  }
  .service-details .service-accordion-button {
    padding: 30px 0;
  }
}
@media (max-width: 767.98px) {
  .service-details {
    padding-top: 55px;
    padding-bottom: 120px;
  }
  .service-details .service-accordion-button {
    padding: 30px 0;
  }
}
@media (max-width: 575.98px) {
  .service-details {
    padding-top: 20px;
    padding-bottom: 70px;
  }
  .service-details .service-detail-item h2,
  .service-details .service-accordion-button {
    font-size: 36px;
  }
  .service-details .service-accordion-button {
    padding: 26px 0;
  }
}

.faq-benefits-section {
  background: var(--site-blue-light);
  overflow: hidden;
  padding: 70px 0 85px;
  position: relative;
}
.faq-benefits-section .faq-arrow {
  position: absolute;
  right: 0px;
  top: 17%;
  background: #dae4f2;
  display: block;
  width: 73%;
  clip-path: polygon(26% 0%, 26% 18%, 100% 18%, 100% 77%, 26% 77%, 26% 91%, 0% 45%);
  bottom: 17%;
  pointer-events: none;
}
.faq-benefits-section .benefits-col::before {
  content: "";
  position: absolute;
  left: calc(var(--bs-gutter-x) / 2);
  right: calc(var(--bs-gutter-x) / 2);
  top: calc(17% + 56px);
  bottom: calc(17% + 70px);
  background: #633354;
  display: block;
  pointer-events: none;
}
.faq-benefits-section .faq-block {
  padding: 45px 0 20px;
}
.faq-benefits-section #faq-accordion {
  margin: 40px 0 0;
  border: none;
}
.faq-benefits-section #faq-accordion .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(99, 51, 84, 0.2);
  padding: 0;
  margin: 0;
}
.faq-benefits-section #faq-accordion .accordion-button {
  background: transparent;
  color: var(--site-purple);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  padding: 20px 40px 20px 0;
  box-shadow: none;
  border: none;
  position: relative;
}
.faq-benefits-section #faq-accordion .accordion-button:not(.collapsed) {
  color: var(--site-purple);
  background: transparent;
}
.faq-benefits-section #faq-accordion .accordion-button:focus {
  box-shadow: none;
  border: none;
}
.faq-benefits-section #faq-accordion .accordion-button::after {
  display: none;
}
.faq-benefits-section #faq-accordion .accordion-button i {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.faq-benefits-section #faq-accordion .accordion-button:not(.collapsed) i {
  transform: translateY(-50%) rotate(180deg);
}
.faq-benefits-section #faq-accordion .accordion-body {
  padding: 0 0 20px;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}
.faq-benefits-section #faq-accordion .accordion-body h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 20px 0 10px;
  color: var(--site-purple);
}
.faq-benefits-section #faq-accordion .accordion-body ul {
  margin: 0 0 10px;
  padding-left: 20px;
}
.faq-benefits-section #faq-accordion .accordion-body ul li {
  margin-bottom: 8px;
}
.faq-benefits-section #faq-accordion .accordion-body p {
  margin-bottom: 10px;
}
.faq-benefits-section .benefits-card {
  background: rgba(117, 55, 96, 0.97);
  border-bottom-right-radius: 36px;
  color: #fff;
  margin: 0;
  max-width: none;
  padding: 60px 70px 50px;
  text-align: center;
  height: 100%;
}
.faq-benefits-section .benefits-card h2 {
  color: #fff;
  margin-bottom: 40px;
  font-size: 52px;
}
.faq-benefits-section .benefits-grid {
  display: grid;
  gap: 45px 16px;
  grid-template-columns: repeat(3, 1fr);
}
.faq-benefits-section .benefit-item {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 7px;
  justify-content: flex-start;
  min-height: 70px;
}
.faq-benefits-section .benefit-item i,
.faq-benefits-section .benefit-item strong {
  color: rgba(255, 255, 255, 0.45);
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
}
.faq-benefits-section .benefit-item span {
  font-weight: 500;
  line-height: 1.2;
  max-width: 100px;
  margin-top: 10px;
}
.faq-benefits-section .benefit-wide {
  grid-column: 1/-1;
}
.faq-benefits-section .benefit-card-icon-wrapper {
  height: 49px;
}
@media (max-width: 1199.98px) {
  .faq-benefits-section {
    padding: 70px 0px 85px;
  }
  .faq-benefits-section .benefits-card {
    padding: 65px 18px 50px;
  }
  .faq-benefits-section #faq-accordion .accordion-button {
    font-size: 20px;
  }
  .faq-benefits-section .benefits-card h2 {
    margin-bottom: 55px;
    font-size: 46px;
  }
  .faq-benefits-section .benefits-grid {
    gap: 45px 16px;
  }
  .faq-benefits-section .faq-block {
    padding: 45px 0 0px;
  }
}
@media (max-width: 991.98px) {
  .faq-benefits-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .faq-benefits-section .benefits-col::before {
    display: none;
  }
  .faq-benefits-section .benefits-card {
    margin-top: 95px;
    height: auto;
    padding: 65px 38px 78px;
  }
  .faq-benefits-section .benefits-card h2 {
    margin-bottom: 40px;
  }
  .faq-benefits-section .faq-block {
    padding: 0;
  }
  .faq-benefits-section #faq-accordion {
    margin: 30px 0 0;
  }
  .faq-benefits-section #our-benefits h2 br {
    display: none;
  }
  .faq-benefits-section .faq-arrow {
    position: absolute;
    right: 0px;
    top: 8%;
    background: #dae4f2;
    display: block;
    width: 57%;
    clip-path: polygon(66% 0%, 66% 17%, 100% 17%, 100% 75%, 66% 75%, 66% 87%, 0% 45%);
    bottom: unset;
    pointer-events: none;
    height: 50%;
  }
}
@media (max-width: 767.98px) {
  .faq-benefits-section .benefits-card {
    max-width: none;
    margin-top: 100px;
  }
  .faq-benefits-section .benefits-grid {
    gap: 34px 16px;
  }
  .faq-benefits-section #faq-accordion {
    margin: 25px 0 0;
  }
}
@media (max-width: 575.98px) {
  .faq-benefits-section {
    padding-bottom: 70px;
  }
  .faq-benefits-section .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-benefits-section .btn {
    width: 100%;
  }
  .faq-benefits-section #faq-accordion {
    margin: 25px 0 0;
  }
  .faq-benefits-section #faq-accordion .accordion-button {
    font-size: 18px;
  }
  .faq-benefits-section .benefits-card {
    margin-top: 92px;
    padding: 60px 38px 62px;
  }
  .faq-benefits-section .benefits-card h2 {
    font-size: 34px;
  }
  .faq-benefits-section .benefit-wide {
    grid-column: unset;
  }
  .faq-benefits-section .faq-arrow {
    width: 82%;
    clip-path: polygon(72% 3%, 72% 14%, 100% 14%, 100% 50%, 72% 50%, 72% 60%, 0% 32%);
  }
}
@media (min-width: 767.98px) and (max-width: 991.98px) {
  .faq-benefits-section .benefit-wide {
    grid-column: unset;
  }
  .faq-benefits-section .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 36px 5px;
  }
}

.form-section {
  background: var(--site-dark);
  color: #fff;
  padding: 100px 0;
}
.form-section #contact-form {
  padding-top: 10px;
}
.form-section .contact-intro h2 {
  color: #fff;
  font-size: 55px;
  margin-bottom: 5px;
  text-wrap: balance;
}
.form-section .contact-intro p {
  color: #fff;
  line-height: 1.35;
  margin-bottom: 28px;
  font-size: 20px;
}
.form-section address {
  color: #fff;
  font-style: normal;
  line-height: 1.25;
  margin-bottom: 36px;
}
.form-section .contact-links {
  display: grid;
  gap: 4px;
  margin-bottom: 28px;
}
.form-section .contact-links a {
  color: #ab4f8e;
  font-weight: 600;
  line-height: 1.2;
}
.form-section .social-links {
  display: flex;
  gap: 10px;
}
.form-section .social-links a {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  height: 60px;
  width: 60px;
  font-size: 20px;
  line-height: 1;
  justify-content: center;
}
.form-section .contact-form .row {
  --bs-gutter-y: 25px;
}
.form-section .contact-form label {
  color: #fff;
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}
.form-section .contact-form .form-control {
  min-height: 60px;
}
.form-section .contact-form textarea.form-control {
  min-height: 230px;
}
.form-section .contact-form .form-check-group {
  margin-top: 4px;
}
.form-section .contact-form .form-check-group label {
  line-height: 1.3;
  margin: 0;
}
.form-section .contact-form .btn {
  margin-top: 5px;
  width: auto;
}
@media (max-width: 1199.98px) {
  .form-section .contact-form textarea.form-control {
    min-height: 245px;
  }
  .form-section .contact-intro h2 {
    font-size: 47px;
    margin-bottom: 10px;
  }
  .form-section .contact-links {
    margin-bottom: 36px;
  }
}
@media (max-width: 991.98px) {
  .form-section {
    padding: 90px 0 75px;
  }
  .form-section .contact-form textarea.form-control {
    min-height: 230px;
  }
  .form-section .contact-form .btn {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .form-section .contact-form label {
    font-size: 14px;
  }
}
@media (max-width: 575.98px) {
  .form-section {
    padding: 60px 0 60px;
  }
  .form-section .contact-form .btn {
    width: 100%;
  }
  .form-section .contact-intro h2 {
    font-size: 36px;
  }
}

.footer-block {
  background: #22252b;
  color: #fff;
  padding: 70px 0 55px;
  overflow: hidden;
}
.footer-block a {
  color: #fff;
  line-height: 1.2;
  font-size: 18px;
}
.footer-block .footer-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr auto;
}
.footer-block .footer-menu {
  display: flex;
  gap: 8px 20px;
  grid-column: 1/-1;
  justify-content: space-between;
}
.footer-block .footer-company,
.footer-block .website-design {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.2;
  font-size: 14px;
}
.footer-block .website-design img {
  height: 16px;
  width: auto;
}
.footer-block .website-design {
  text-align: right;
}
@media (max-width: 1199.98px) {
  .footer-block {
    padding-top: 50px;
    padding-bottom: 35px;
  }
  .footer-block a {
    font-size: 15px;
  }
}
@media (max-width: 991.98px) {
  .footer-block {
    padding-top: 75px;
    padding-bottom: 40px;
  }
  .footer-block .footer-grid {
    grid-template-columns: none;
    gap: 0px;
  }
  .footer-block .footer-menu {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 12px 0px;
    justify-content: normal;
    margin-bottom: 40px;
  }
  .footer-block .footer-company {
    margin-bottom: 8px;
  }
  .footer-block .website-design {
    text-align: left;
  }
  .footer-block a {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .footer-block .footer-menu {
    grid-template-columns: repeat(2, auto);
    gap: 12px 55px;
  }
}
@media (max-width: 575.98px) {
  .footer-block {
    padding-top: 60px;
  }
  .footer-block .footer-menu {
    grid-template-columns: 1fr;
    justify-content: center;
    text-align: center;
    gap: 18px 55px;
    margin-bottom: 32px;
  }
  .footer-block .footer-company {
    text-align: center;
  }
  .footer-block .website-design {
    text-align: center;
  }
}

.whatsapplink {
  background-color: #00c307;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 33px;
  text-decoration: none;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 99;
  box-shadow: 0 0 0 0 rgba(0, 195, 7, 0.7);
  animation: pulse 1.5s 1;
  z-index: 2001;
}

.whatsapplink:hover {
  text-decoration: none;
  color: #fff;
  animation: none;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 30px rgba(0, 195, 7, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(0, 195, 7, 0);
  }
}
@media (max-width: 575px) {
  .whatsapplink {
    left: auto;
    right: 15px;
    bottom: 5px;
    width: 50px;
    height: 50px;
  }
}
