@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,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&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
body {
  font-family: "Roboto", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

form {
  font-family: "Roboto", sans-serif;
}

/********************************************************* 
*** THEME COLOURS
*********************************************************/
/* Background Colors */
/********************************************************* 
*** MEDIA BREAKPOINTS 
**********************************************************
For Mobile Devices – 320px — 480px
iPads and Tablets – 481px — 768px
Laptops and small screen – 769px — 1024px
Large screens and Desktops – 1025px — 1200px
TV and Extra Large Screens – 1201px and more
**********************************************************/
.button {
  text-decoration: none;
  display: inline-block;
  font-family: inherit;
  text-align: center;
  font-weight: 500;
  font-style: normal;
  line-height: 1;
  background-color: transparent;
  cursor: pointer;
  outline: 0;
  border: 0;
  padding: 14px 22px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  -moz-box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  -ms-box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  -o-box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  transition: border-radius 0.3s;
  position: relative;
  overflow: hidden;
}
.button:hover {
  -webkit-border-radius: 45px;
  -moz-border-radius: 45px;
  -ms-border-radius: 45px;
  -o-border-radius: 45px;
  border-radius: 45px;
}
.button.button-large {
  padding: 18px 24px;
  font-size: 20px;
}
@media (max-width: 575.98px) {
  .button.button-large {
    padding: 16px 22px;
    font-size: 16px;
  }
}
.button.button-small {
  font-size: 14px;
  line-height: 8px;
  padding: 12px 16px;
}
.button.button-outline.button-outline-primary-50 {
  color: #344054;
  border: 1px solid #d0d5dd;
}
.button.button-outline.button-default {
  border: 1px solid var(--Gray-300, #d0d5dd);
  background: #ffffff;
  color: #14142B;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
.button.button-filled.button-primary {
  background-color: #1d195f;
  color: #ffffff;
}
.button.button-filled.button-secondary {
  background-color: #F77321;
  color: #ffffff;
}
.button.button-filled.button-tertiary {
  background-color: #1499FA;
  color: #ffffff;
}
.button.button-with-icon {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.button.button-with-icon > svg {
  max-width: 18px;
  max-height: 18px;
  fill: currentColor;
}
.button.button-with-link {
  color: #1d195f;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  text-decoration-line: underline;
  border: 1px solid var(--gray-300, #d1d5db);
}
.button.button-full {
  width: 100%;
}
.button.button-auto {
  width: auto;
}
.button.button-rounded {
  -webkit-border-radius: 45px;
  -moz-border-radius: 45px;
  -ms-border-radius: 45px;
  -o-border-radius: 45px;
  border-radius: 45px;
}

.button-group.button-group-row {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  flex-direction: row;
  gap: 0.8rem;
}

.button {
  overflow: hidden;
}

.ripple {
  position: absolute;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background: #ffffff;
  animation: ripple-animation 5s;
}

.button-animated .button-inner {
  position: relative;
  display: block;
  -webkit-transition: translate 160ms ease-out;
  transition: translate 160ms ease-out;
}
.button-animated .button-inner > .button-icon {
  width: 21px;
  height: 21px;
  display: inline-block;
  position: absolute;
  inset: 50% auto auto -23px;
  -webkit-translate: 0 -50%;
  -moz-translate: 0 -50%;
  -ms-translate: 0 -50%;
  translate: 0 -50%;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 160ms ease-out;
  transition: opacity 160ms ease-out;
}
.button-animated:hover, .button-animated:focus, .button-animated:focus-within {
  -webkit-text-decoration: none;
  text-decoration: none;
  border-radius: 0;
}
.button-animated:hover .button-inner:not(.no-arrow), .button-animated:focus .button-inner:not(.no-arrow), .button-animated:focus-within .button-inner:not(.no-arrow) {
  -webkit-translate: 0.5625rem;
  -moz-translate: 0.5625rem;
  -ms-translate: 0.5625rem;
  translate: 0.5625rem;
}
.button-animated:hover .button-inner:not(.no-arrow) > .button-icon, .button-animated:focus .button-inner:not(.no-arrow) > .button-icon, .button-animated:focus-within .button-inner:not(.no-arrow) > .button-icon {
  opacity: 1;
}

@keyframes ripple-animation {
  from {
    transform: scale(1);
    opacity: 0.4;
  }
  to {
    transform: scale(100);
    opacity: 0;
  }
}
form .form-row {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;
}
form .form-row:last-child .form-group {
  margin-bottom: 0;
}
form .form-row .form-group {
  position: relative;
  margin-bottom: 1.2rem;
  width: 100%;
}
form .form-row .form-group.flex-column {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 0.5rem;
}
form .form-row .form-group.input-checkbox-group .field-error {
  position: relative;
  top: unset;
  bottom: unset;
  left: unset;
  padding-top: 0;
  padding-bottom: 0;
}
form .form-row .form-group .field-error {
  position: absolute;
  width: -moz-max-content;
  width: max-content;
  margin-top: 0.25rem;
  font-size: 0.8em;
  color: #dc3545;
  display: inline;
  padding-left: 14px;
  line-height: 1;
  top: -14px;
  z-index: 1;
  left: 10px;
  padding: 4px 6px;
  background-color: #ffffff;
}
form .form-row .form-group .form-label {
  position: absolute;
  width: max-content;
  margin-top: 0.25rem;
  font-size: 0.8em;
  color: #424674;
  display: inline;
  line-height: 1;
  top: -14px;
  z-index: 1;
  left: 10px;
  padding: 4px 6px;
  background-color: #ffffff;
  visibility: visible;
  opacity: 0;
  transform: scale(1.1);
  transition: 0.3s ease-in-out;
  transition-property: opacity, transform;
}
form .form-row .form-group .form-label.enable {
  opacity: 1;
  transform: scale(1);
}
form .form-row .form-group .form-label sup {
  position: relative;
  top: 2px;
  left: -2px;
  opacity: 0.8;
}
form .form-row .form-group .form-control {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  align-items: center;
  gap: 8.948px;
  flex: 1 0 0;
  width: 100%;
  box-sizing: border-box;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  border: 0;
  border: 1.118px solid #d0d5dd;
  background-color: #ffffff;
  font-family: inherit;
  color: #424674;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: inherit;
}
form .form-row .form-group .form-control:not(.form-control-lg) {
  padding: 10px 14px 10px 14px;
}
form .form-row .form-group .form-control.form-control-lg {
  padding: 12px 14px 12px 14px;
}
form .form-row .form-group .form-control:focus:not(.has-error) {
  -webkit-box-shadow: 0 0 0 1px #1499FA;
  -moz-box-shadow: 0 0 0 1px #1499FA;
  -ms-box-shadow: 0 0 0 1px #1499FA;
  -o-box-shadow: 0 0 0 1px #1499FA;
  box-shadow: 0 0 0 1px #1499FA;
}
form .form-row .form-group .form-control.has-error {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.575rem) calc(0.75em + 0.575rem);
}
form .form-row .form-group .form-control.has-error:focus {
  -webkit-box-shadow: 0 0 0 0.5px #dc3545;
  -moz-box-shadow: 0 0 0 0.5px #dc3545;
  -ms-box-shadow: 0 0 0 0.5px #dc3545;
  -o-box-shadow: 0 0 0 0.5px #dc3545;
  box-shadow: 0 0 0 0.5px #dc3545;
}
form .form-row .form-group .form-control:focus {
  outline: 0;
}
form .form-row .form-group textarea {
  resize: none;
}
form .form-row .form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjEycHgiIHZpZXdCb3g9IjAgMCA2IDEyIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPjx0aXRsZT5zZWxlY3RhcnJvdzwvdGl0bGU+PGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+PGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIj48ZyBpZD0ic2VsZWN0YXJyb3ciIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAuMDAwMDAwLCAxLjAwMDAwMCkiIHN0cm9rZT0iIzg2OEU5NiI+PHBvbHlsaW5lIGlkPSJQYXRoIiBwb2ludHM9IjAgMyAzLjA1NTA4NDkzIDAgNiAyLjg5MTgxNjU3Ii8+PHBvbHlsaW5lIGlkPSJQYXRoLUNvcHkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDMuMDAwMDAwLCA4LjUwMDAwMCkgc2NhbGUoMSwgLTEpIHRyYW5zbGF0ZSgtMy4wMDAwMDAsIC04LjUwMDAwMCkgIiBwb2ludHM9IjAgMTAgMy4wNTUwODQ5MyA3IDYgOS44OTE4MTY1NyIvPjwvZz48L2c+PC9zdmc+);
  background-position: right 18px center;
  background-repeat: no-repeat;
  background-color: #fff;
}
form .form-row .form-group select.has-error {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.575rem) calc(0.75em + 0.575rem);
}
form .form-row .form-group option:not(:first-of-type) {
  color: #424674 !important;
  font-weight: 500 !important;
}
form .form-row .form-group label.error {
  font-size: 14px;
  color: #ff0000;
  font-style: italic;
}
form .form-row .form-group input:-webkit-autofill,
form .form-row .form-group input:-webkit-autofill:hover,
form .form-row .form-group input:-webkit-autofill:focus,
form .form-row .form-group input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #e9f6ff inset !important;
}

option,
::placeholder {
  font-family: inherit;
  color: #424674;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

.radio-group {
  position: relative;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 0.5rem;
}
.radio-group .radio-button {
  position: relative;
  display: inline-block;
  z-index: 0;
}
.radio-group .radio-button > input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  z-index: -1;
  position: absolute;
  left: -10px;
  top: -8px;
  display: block;
  margin: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
  outline: none;
  opacity: 0;
  transform: scale(1);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
}
.radio-group .radio-button > input:focus {
  opacity: 0.12;
}
.radio-group .radio-button > input:active {
  opacity: 1;
  transform: scale(0);
  transition: transform 0s, opacity 0s;
}
.radio-group .radio-button > input:disabled {
  opacity: 0;
}
.radio-group .radio-button > input:checked {
  background-color: #1499FA;
}
.radio-group .radio-button > span {
  display: inline-block;
  width: 100%;
  cursor: pointer;
  line-height: 24px;
}
.radio-group .radio-button > span::before {
  content: "";
  display: inline-block;
  box-sizing: border-box;
  margin: 2px 10px 2px 0;
  border: solid 2px;
  border-color: #a6a6a6;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  vertical-align: top;
  transition: border-color 0.2s;
}
.radio-group .radio-button > span::after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: #5c83bc;
  transform: translate(5px, 5px) scale(0);
  transition: transform 0.2s;
}
.radio-group .radio-button:hover > input {
  opacity: 0.04;
}
.radio-group .radio-button:hover > input:focus {
  opacity: 0.16;
}
.radio-group .radio-button > input:checked span::before {
  border-color: #5c83bc;
}
.radio-group .radio-button > input:checked + span::after {
  transform: translate(5px, 5px) scale(1);
}
.radio-group .radio-button > input:active + span::before {
  border-color: #5c83bc;
}
.radio-group .radio-button > input:disabled + span {
  color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
  cursor: initial;
}
.radio-group .radio-button > input:disabled + span::before {
  border-color: currentColor;
}
.radio-group .radio-button > input:disabled + span::after {
  background-color: currentColor;
}

.input-checkbox {
  z-index: 0;
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.87);
  font-size: 15px;
  line-height: 18px;
  padding-left: 30px;
}
.input-checkbox > input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  z-index: -1;
  position: absolute;
  left: -10px;
  top: -8px;
  display: block;
  margin: 0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
  box-shadow: none;
  outline: none;
  opacity: 0;
  transform: scale(1);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
}
.input-checkbox > input:indeterminate + span::after {
  border-left: none;
  transform: translate(4px, 3px);
}
.input-checkbox > input:focus {
  opacity: 0.12;
}
.input-checkbox > input:active {
  opacity: 1;
  transform: scale(0);
  transition: transform 0s, opacity 0s;
}
.input-checkbox > input:active + span::before {
  border-color: #1499FA;
}
.input-checkbox > input:checked:active + span::before {
  border-color: transparent;
  background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
}
.input-checkbox > input:disabled {
  opacity: 0;
}
.input-checkbox > input:disabled + span {
  color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
  cursor: initial;
}
.input-checkbox > input:disabled + span::before {
  border-color: currentColor;
}
.input-checkbox > span {
  color: #424674;
  text-wrap-style: pretty;
  display: inline-block;
  width: 100%;
  cursor: pointer;
  user-select: none;
}
.input-checkbox > span::before {
  position: absolute;
  content: "";
  display: inline-block;
  box-sizing: border-box;
  border: solid 2px;
  border-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
  border-radius: 2px;
  width: 18px;
  height: 18px;
  left: 2px;
  top: 3px;
  vertical-align: top;
  transition: border-color 0.2s, background-color 0.2s;
}
.input-checkbox > span::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 3px;
  width: 10px;
  height: 5px;
  border: solid 2px transparent;
  border-right: none;
  border-top: none;
  transform: translate(3px, 4px) rotate(-45deg);
}
.input-checkbox > span > a {
  font-size: inherit;
  line-height: inherit;
}
.input-checkbox > span > a:hover {
  color: #1499FA;
}
.input-checkbox:hover > input {
  opacity: 0.04;
}
.input-checkbox:hover > input:focus {
  opacity: 0.16;
}

.input-checkbox > input:checked,
.input-checkbox > input:indeterminate {
  background-color: #1499FA;
}

.input-checkbox > input:checked + span::before,
.input-checkbox > input:indeterminate + span::before {
  border-color: #1499FA;
  background-color: #1499FA;
}

.input-checkbox > input:checked + span::after,
.input-checkbox > input:indeterminate + span::after {
  border-color: #ffffff;
}

.input-checkbox > input:checked:disabled + span::before,
.input-checkbox > input:indeterminate:disabled + span::before {
  border-color: transparent;
  background-color: currentColor;
}

/* FONT FAMILY */
/* COLORS */
/* FONTS */
html,
body {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

/* COLLECTIONS */
.container {
  max-width: 1150px;
  padding: 0 15px;
  margin: 0 auto;
}

.layout-gutter {
  padding: 80px 0;
}

[anim=ripple] {
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

[anim=ripple]:before {
  content: "";
  position: absolute;
  display: block;
  background: var(--ripple-background, white);
  border-radius: 50%;
  pointer-events: none;
  top: calc(var(--y) * 1px);
  left: calc(var(--x) * 1px);
  width: calc(var(--d) * 1px);
  height: calc(var(--d) * 1px);
  opacity: calc(var(--o, 1) * var(--ripple-opacity, 0.7));
  transition: calc(var(--t, 0) * var(--ripple-duration, 600ms)) var(--ripple-easing, linear);
  transform: translate(-50%, -50%) scale(var(--s, 1));
  transform-origin: center;
}

.button {
  display: inline-block;
  cursor: pointer;
  border: 0;
  outline: 0;
  opacity: 1;
  transition: 0.3s ease-in-out;
}
.button:hover {
  opacity: 0.9;
}
.button__lg {
  padding: 16px 70px;
  font: 500 18px/28px "Roboto";
}
.button__sm {
  padding: 16px 50px;
  font: 500 18px/28px "Roboto";
}
.button__rounded {
  border-radius: 45px;
}
.button__w100 {
  width: 100%;
}
.button__warning {
  background: #ff861a;
  color: #ffffff;
}

@media screen and (max-width: 980px) {
  .container {
    max-width: 768px;
  }
  main {
    transition: 0.3s ease-in-out;
  }
  .side-menu-opened main {
    position: relative;
  }
  .side-menu-opened main::before {
    position: absolute;
    content: "";
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 1;
  }
}
@media screen and (max-width: 768px) {
  .container {
    max-width: 600px;
  }
}
@media screen and (max-width: 600px) {
  .layout-gutter {
    padding: 50px 0;
  }
}
@media screen and (max-width: 375px) {
  .layout-gutter {
    padding: 50px 0;
  }
}
.whatsapp {
  background-color: #128c7e;
  position: fixed;
  right: -190px;
  top: 50%;
  display: flex;
  gap: 0.7rem;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  z-index: 1;
  text-decoration: none;
  padding: 6px 16px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  cursor: pointer;
  transition: right 0.3s cubic-bezier(0.35, -0.12, 0.25, 1.15);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
.whatsapp.loaded {
  right: -125px;
}
.whatsapp:hover, .whatsapp:focus {
  right: 0;
}
.whatsapp__icon--img {
  max-width: 100%;
  height: auto;
  transform: scale(1.15);
  animation: whatsappZoom 3s ease-out infinite;
}
.whatsapp__contact--text {
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  margin: 0 0 2px;
}
.whatsapp__contact--number {
  color: #fff;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}

@keyframes whatsappZoom {
  0% {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(1.13, 1.13);
    -ms-transform: scale(1.13, 1.13);
    transform: scale(1.13, 1.13);
  }
  100% {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
/* COOKIE CONTENT */
.cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  background: #fff;
  box-shadow: -1px -3px 10px 0 rgba(0, 0, 0, 0.13);
  color: #000;
  opacity: 1;
  width: 100%;
  z-index: 9;
}
.cookie .cookie__consent--text {
  max-width: 900px;
  color: #0a042f;
  padding: 15px 0;
  margin: 0;
  font-size: 15px;
  line-height: 26px;
}
.cookie .cookie__consent--text a {
  font-size: 15px;
  color: #100253;
  text-decoration: underline;
}
.cookie .cookie__consent--text a:hover {
  color: #ff861a;
}
.cookie .cookieDestop {
  display: none;
}
@media only screen and (min-width: 560px) {
  .cookie .cookieDestop {
    display: block;
  }
}
.cookie .cookieMobile {
  display: block;
  font-size: 14px;
  line-height: 20px;
  padding: 10px 0px;
}
@media only screen and (min-width: 560px) {
  .cookie .cookieMobile {
    display: none;
  }
}
@media only screen and (max-width: 560px) {
  .cookie .cookieMobile a {
    font-size: 14px;
    line-height: 20px;
  }
}
.cookie .ck-btn {
  background: #100253;
  border-radius: 4px;
  color: #fff;
  padding: 3px 13px;
  margin-left: 15px;
  cursor: pointer;
  border: 0;
  outline: 0;
  font-size: 12px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  font-family: "Roboto", sans-serif;
  line-height: 26px;
}
@media only screen and (max-width: 560px) {
  .cookie .ck-btn {
    padding: 0px 15px;
    margin-left: 4px;
  }
}

.cookies h1 {
  color: #045da9;
  font-weight: 700;
  font-size: 35px;
}
.cookies h5 {
  color: #045da9;
  font-weight: 500;
  font-size: 25px;
}

.field-error {
  font-size: 14px;
  line-height: 20px;
  color: #f51313;
  font-size: 14px;
  line-height: 1;
  margin: 8px 0 0;
  padding: 0;
  text-align: left;
}

/********************************************************* 
*** THEME COLOURS
*********************************************************/
/* Background Colors */
/********************************************************* 
*** MEDIA BREAKPOINTS 
**********************************************************
For Mobile Devices – 320px — 480px
iPads and Tablets – 481px — 768px
Laptops and small screen – 769px — 1024px
Large screens and Desktops – 1025px — 1200px
TV and Extra Large Screens – 1201px and more
**********************************************************/
@font-face {
  font-family: "Inter UI";
  src: url(../fonts/InterUI-MediumItalic.eot);
  src: url(../fonts/InterUI-MediumItalic.eot?#iefix) format("embedded-opentype"), url(../fonts/InterUI-MediumItalic.woff2) format("woff2"), url(../fonts/InterUI-MediumItalic.woff) format("woff"), url(../fonts/InterUI-MediumItalic.ttf) format("truetype"), url(../fonts/InterUI-MediumItalic.svg#InterUI-MediumItalic) format("svg");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter UI";
  src: url(../fonts/InterUI-Regular.eot);
  src: url(../fonts/InterUI-Regular.eot?#iefix) format("embedded-opentype"), url(../fonts/InterUI-Regular.woff2) format("woff2"), url(../fonts/InterUI-Regular.woff) format("woff"), url(../fonts/InterUI-Regular.ttf) format("truetype"), url(../fonts/InterUI-Regular.svg#InterUI-Regular) format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter UI";
  src: url(../fonts/InterUI-BoldItalic.eot);
  src: url(../fonts/InterUI-BoldItalic.eot?#iefix) format("embedded-opentype"), url(../fonts/InterUI-BoldItalic.woff2) format("woff2"), url(../fonts/InterUI-BoldItalic.woff) format("woff"), url(../fonts/InterUI-BoldItalic.ttf) format("truetype"), url(../fonts/InterUI-BoldItalic.svg#InterUI-BoldItalic) format("svg");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter UI";
  src: url(../fonts/InterUI-Bold.eot);
  src: url(../fonts/InterUI-Bold.eot?#iefix) format("embedded-opentype"), url(../fonts/InterUI-Bold.woff2) format("woff2"), url(../fonts/InterUI-Bold.woff) format("woff"), url(../fonts/InterUI-Bold.ttf) format("truetype"), url(../fonts/InterUI-Bold.svg#InterUI-Bold) format("svg");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter UI";
  src: url(../fonts/InterUI-Medium.eot);
  src: url(../fonts/InterUI-Medium.eot?#iefix) format("embedded-opentype"), url(../fonts/InterUI-Medium.woff2) format("woff2"), url(../fonts/InterUI-Medium.woff) format("woff"), url(../fonts/InterUI-Medium.ttf) format("truetype"), url(../fonts/InterUI-Medium.svg#InterUI-Medium) format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter UI";
  src: url(../fonts/InterUI-Black.eot);
  src: url(../fonts/InterUI-Black.eot?#iefix) format("embedded-opentype"), url(../fonts/InterUI-Black.woff2) format("woff2"), url(../fonts/InterUI-Black.woff) format("woff"), url(../fonts/InterUI-Black.ttf) format("truetype"), url(../fonts/InterUI-Black.svg#InterUI-Black) format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter UI";
  src: url(../fonts/InterUI-Italic.eot);
  src: url(../fonts/InterUI-Italic.eot?#iefix) format("embedded-opentype"), url(../fonts/InterUI-Italic.woff2) format("woff2"), url(../fonts/InterUI-Italic.woff) format("woff"), url(../fonts/InterUI-Italic.ttf) format("truetype"), url(../fonts/InterUI-Italic.svg#InterUI-Italic) format("svg");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter UI";
  src: url(../fonts/InterUI-BlackItalic.eot);
  src: url(../fonts/InterUI-BlackItalic.eot?#iefix) format("embedded-opentype"), url(../fonts/InterUI-BlackItalic.woff2) format("woff2"), url(../fonts/InterUI-BlackItalic.woff) format("woff"), url(../fonts/InterUI-BlackItalic.ttf) format("truetype"), url(../fonts/InterUI-BlackItalic.svg#InterUI-BlackItalic) format("svg");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: gibsonlight;
  src: url(../fonts/gibsonlight-webfont.woff2) format("woff2"), url(../fonts/gibsonlight-webfont.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: gibsonregular;
  src: url(../fonts/gibsonregular-webfont.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: gibsonsemibold;
  src: url(../fonts/gibsonsemibd-webfont.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.menu-container {
  width: 100%;
  margin: 0 auto;
  border-bottom: 1px solid #b6b4e0;
  position: sticky;
  z-index: 999;
  top: 0;
}
@media (min-width: 992px) {
  .menu-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
  }
}
@media (max-width: 991.98px) {
  .menu-container {
    background: #ffffff;
  }
}
.menu-container .header {
  width: 1150px;
  margin: 0 auto;
  padding: 10px 0;
}
.menu-container .header__contact {
  display: none;
  visibility: hidden;
  opacity: 0;
}
.menu-container .header .menu {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.menu-container .header .logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.menu-container .header .logo #menu_burger {
  display: none;
  color: #4f2399;
  font-size: 1.7rem;
  padding: 0.5rem;
}
.menu-container .header .logo #menu_burger > .fas {
  color: #4f2399;
}
.menu-container .header .logo > a {
  display: flex;
  text-decoration: none;
}
.menu-container .header .logo .logo-img {
  width: 138px;
  background: url(../images/logo.png);
  height: 51px;
}
@media screen and (min-width: 992px) {
  .menu-container .header .logo img {
    width: auto;
  }
}
.menu-container .menu .menuSec {
  display: flex;
  align-items: center;
  justify-content: center;
  position: static;
  margin-right: 0;
  padding-right: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.menu-mobile {
  display: none;
  padding: 20px;
  color: #ffffff;
}
.menu-mobile:after {
  background: url(../images/mobMenuIcon.png) no-repeat left top;
  content: "";
  font-family: Ionicons;
  font-size: 2.1rem;
  padding: 10px;
  float: right;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-25%);
  -ms-transform: translateY(-25%);
  transform: translateY(-25%);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}

.menu-mobile-icon {
  color: #7a71e1;
  font-size: 26px;
  line-height: 0;
}

.menu > ul {
  list-style: none;
  padding: 0;
  box-sizing: border-box;
}
.menu > ul:after {
  content: "";
  display: table;
  clear: both;
}
.menu > ul:before {
  content: "";
  display: table;
}
.menu > ul > li {
  padding: 0;
  margin: 0;
}
.menu > ul > li.active > a,
.menu > ul > li.active > .hDropdown-link {
  background: #f2f1fc;
  -webkit-border-radius: 45px;
  -moz-border-radius: 45px;
  -ms-border-radius: 45px;
  -o-border-radius: 45px;
  border-radius: 45px;
}
.menu > ul > li a,
.menu > ul > li .hDropdown-link {
  text-decoration: none;
  padding: 10px 20px;
  color: #424674;
  display: block;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}
.menu > ul > li .hDropdown-link {
  cursor: default;
}
.menu > ul > li .hDropdown-link > .fas {
  color: #7465b3;
  font-size: 12px;
  display: inline-block;
  margin-left: 2px;
}
.menu > ul > li:hover {
  background: #f2f1fc;
  -webkit-border-radius: 45px;
  -moz-border-radius: 45px;
  -ms-border-radius: 45px;
  -o-border-radius: 45px;
  border-radius: 45px;
}
.menu > ul > li:not(.open-dropdown) > ul {
  display: none;
}
.menu > ul > li > ul {
  width: 100%;
  background: #f2f1fc;
  padding: 40px 0;
  position: absolute;
  left: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
  border-bottom: 5px solid #d0ceeb;
  z-index: 0;
}
.menu > ul > li > ul:after {
  content: "";
  display: table;
  clear: both;
}
.menu > ul > li > ul:before {
  content: "";
  display: table;
}
.menu > ul > li > ul > li {
  margin: 0;
  padding-bottom: 0;
  list-style: none;
  width: 100%;
  background: 0 0;
}
.menu > ul > li > ul > li a {
  color: #777;
  padding: 1px 0;
  width: 95%;
  display: block;
  border-bottom: 1px solid #ccc;
}
.menu > ul > li > ul > li a:hover {
  text-decoration: underline;
}
.menu > ul > li > ul > li > ul {
  display: block;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
  box-sizing: border-box;
}
.menu > ul > li > ul > li > ul:after {
  content: "";
  display: table;
  clear: both;
}
.menu > ul > li > ul > li > ul:before {
  content: "";
  display: table;
}
.menu > ul > li > ul > li > ul > li {
  width: 100%;
  padding: 10px 0;
  margin: 0;
  font-size: 0.8em;
}
.menu > ul > li > ul > li > ul > li a {
  border: 0;
}
.menu > ul > li > ul.normal-sub {
  width: 300px;
  left: auto;
  padding: 10px 20px;
}
.menu > ul > li > ul.normal-sub > li {
  width: 100%;
}
.menu > ul > li > ul.normal-sub > li a {
  border: 0;
  padding: 1em 0;
}

.menuSec ul.smlMegaMenu {
  width: max-content;
  left: auto;
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .menuSec ul.smlMegaMenu {
    -webkit-border-bottom-left-radius: 8px;
    -moz-border-bottom-left-radius: 8px;
    -ms-border-bottom-left-radius: 8px;
    -o-border-bottom-left-radius: 8px;
    border-bottom-left-radius: 8px;
    -webkit-border-bottom-right-radius: 8px;
    -moz-border-bottom-right-radius: 8px;
    -ms-border-bottom-right-radius: 8px;
    -o-border-bottom-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }
}
.menuSec ul.smlMegaMenu .baseDd {
  width: 100%;
}
.menuSec ul.smlMegaMenu .baseDd .eachBase {
  width: 100%;
}

.baseDd {
  position: relative;
  display: flex;
  width: 1150px;
  margin: 0 auto;
}
.baseDd .eachBase {
  width: 30%;
  margin-right: 3%;
}
.baseDd .eachBase h2 {
  color: #424674;
  font: 700 16px/20px Roboto;
  padding-bottom: 3px;
  margin-bottom: 10px;
  margin-top: 0;
  border-bottom: 1px solid #bab8e8;
  display: inline-block;
}
.baseDd .eachBase ul {
  padding: 0;
  margin: 0;
  min-width: max-content;
}
.baseDd .eachBase ul li {
  list-style: none;
  overflow: hidden;
  margin: 4px 0;
}
.baseDd .eachBase ul li.active a.active {
  color: #4f2399;
  text-decoration: underline;
}
.baseDd .eachBase ul li a.compPack {
  color: #b82a2a;
  text-decoration: underline;
}
.baseDd .eachBase a {
  width: 95%;
  padding: 5px 0 5px 12px;
  background: url(../images/submenuArrow.png) no-repeat left 12px;
  border: none;
  font: 14px/20px Roboto;
  color: #424674;
}
.baseDd .eachBase h2.downSec {
  margin-top: 30px;
}

.clientLogin {
  background: transparent;
}
.clientLogin a {
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  color: #ffffff;
  padding: 0 0 0 0;
  text-decoration: none;
  font: 500 16px/20px Roboto;
  padding: 13px 30px;
  width: auto;
  height: 20px;
  display: flex;
  border-radius: 100px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
.clientLogin a .fas {
  color: #615cc3;
  margin-right: 8px;
  font-size: 17px;
}
.clientLogin a img {
  width: 16px;
  height: 16px;
  position: relative;
  top: 3px;
  margin-right: 5px;
}

@media only screen and (max-width: 1150px) {
  .menu-container .header {
    width: 980px;
  }
  .menu-container .menu .menuSec {
    margin-right: 0px;
    padding-right: 20px;
  }
  .menu-container .menu > ul > li a,
  .menu-container .menu > ul > li .hDropdown-link {
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    font: 500 14px/20px Roboto;
  }
}
@media screen and (max-width: 1150px) and (min-width: 1025px) {
  .menu > ul > li a {
    padding: 8px 18px;
  }
  .menu > ul > li .hDropdown-link {
    padding: 8px 18px;
  }
}
@media only screen and (min-width: 981px) {
  .menu > ul > li > ul {
    top: 72px;
    padding-top: 0 !important;
  }
  .menu > ul.navigation--bar .extra {
    display: none;
    visibility: hidden;
    opacity: 0;
  }
  .menu > ul.navigation--bar > .menu-dropdown-icon:hover > ul {
    display: block;
  }
  .menu-dropdown-icon > ul::before {
    position: relative !important;
    content: "" !important;
    background-color: transparent;
    width: 100%;
    height: 35px;
    top: -17px;
    left: 0;
    z-index: -1;
  }
  .menuSec ul.smlMegaMenu {
    padding-bottom: 0 !important;
  }
  .menuSec ul.smlMegaMenu > li {
    position: relative;
    top: -20px;
  }
  .menuSec > li.menu-dropdown-icon > ul::after {
    position: absolute;
    content: "";
    width: 13px;
    height: 13px;
    background-color: #f2f1fc;
    border-top: 1px solid #b6b4e0;
    border-right: 1px solid #b6b4e0;
    top: -7.5px;
    left: 44.5%;
    transform: rotate(-45deg);
    z-index: -1;
  }
  .menuSec > li.menu-dropdown-icon > ul.smlMegaMenu::after {
    left: 23%;
  }
}
@media only screen and (max-width: 980px) {
  .menu-container {
    width: 100%;
  }
  .menu-container .header {
    width: 768px;
    position: relative;
    padding-top: 15px;
  }
  .menu-container .header__mobiletopbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .menu-container .header__contact {
    display: block;
    visibility: visible;
    opacity: 1;
    padding-right: 4%;
  }
  .menu-container .header__contact--cta {
    background-color: #ff861a;
    color: #fff;
    padding: 0 0 0 0;
    text-decoration: none;
    font: 500 16px/20px Roboto;
    padding: 10px 20px;
    width: auto;
    height: 20px;
    display: flex;
    border-radius: 100px;
    gap: 5px;
    align-items: center;
  }
  .menu-container .header__contact--cta .fas {
    color: #ffffff;
  }
  .menu-container .header__contact--cta img {
    width: 16px;
    height: 16px;
    object-fit: contain;
  }
  .menu-container .header .logo #menu_burger {
    display: block;
    border: 1px solid transparent;
  }
  .menu-container .header .logo #menu_burger:focus, .menu-container .header .logo #menu_burger:hover {
    border: 1px solid rgba(31, 20, 100, 0.09);
  }
  .menu-container .menu {
    width: 768px;
    position: relative;
  }
  .menu-container .menu .navigation--bar.open > .menu-dropdown-icon.open-dropdown {
    background-color: #e86eb6;
    color: #ffffff;
  }
  .menu-container .menu .navigation--bar .extra {
    display: block;
    visibility: visible;
    opacity: 1;
    border-top: 1px solid #827bff;
    margin-top: 1rem;
  }
  .menu-container .menu .navigation--bar .extra:hover, .menu-container .menu .navigation--bar .extra:focus {
    outline: 0;
    background-color: transparent;
  }
  .menu-container .menu .navigation--bar .extra__link {
    font: 18px/26px "Roboto";
    color: #ffffff;
    padding: 10px 0 10px 20px;
    margin: 6px 0;
  }
  .menu-container .menu .navigation--bar .extra__link:focus, .menu-container .menu .navigation--bar .extra__link:hover {
    background-color: #e86eb6;
  }
  .menu-mobile {
    display: block;
    padding: 11px 0px 8px 0px;
    float: right;
  }
  .menu-dropdown-icon:before {
    display: block;
  }
  .menu .navigation--bar > .menu-dropdown-icon > .hDropdown-link > .fas {
    color: #ffffff;
    margin-left: 8px;
  }
  .menu > ul > li a {
    padding: 1.5em;
    width: 100%;
    display: block;
    padding: 10px 0 10px 20px;
    color: #ffffff;
    box-sizing: border-box;
  }
  .menu > ul > li a:hover {
    background-color: #e86eb6;
    color: #ffffff;
  }
  .menu > ul > li .hDropdown-link {
    padding: 1.5em;
    width: 100%;
    display: block;
    padding: 10px 0 10px 20px;
    color: #ffffff;
    box-sizing: border-box;
  }
  .menu > ul > li .hDropdown-link:hover {
    background-color: #e86eb6;
    color: #ffffff;
  }
  .menu > ul > li > ul {
    position: relative;
    background-color: #efefef;
    padding: 30px 20px;
  }
  .menu > ul > li > ul > li:first-child {
    margin: 0;
  }
  .menu > ul > li > ul > li > ul {
    position: relative;
  }
  .menu > ul > li > ul > li > ul > li {
    float: none;
  }
  .menu > ul > li > ul.normal-sub {
    width: 100%;
  }
  .menu > ul.show-on-mobile {
    visibility: visible;
    opacity: 1;
  }
  .menu .show-on-mobile {
    display: block;
  }
  .menu .menuSec ul.smlMegaMenu {
    width: 100%;
  }
  .baseDd {
    width: 100%;
    flex-direction: column;
  }
  .baseDd .eachBase {
    width: 100%;
    margin-bottom: 30px;
  }
  .baseDd .eachBase a {
    background: url(../images/submenuArrow.png) no-repeat left 12px;
  }
  .baseDd .eachBase ul > li > a:hover {
    background-color: transparent;
    color: #666;
  }
  .clientLogin {
    display: none;
    visibility: hidden;
    opacity: 0;
  }
  .side-menu-opened body {
    overflow-y: hidden;
  }
  .menu > ul > li.active > a,
  .menu > ul > li.active > .hDropdown-link {
    background-color: #e86eb6;
    color: #ffffff;
    border-radius: 0;
  }
  .menu > ul > li > a {
    color: #fff;
  }
  .menu .navigation--bar {
    position: fixed !important;
    left: -100%;
    top: 82px;
    bottom: 0;
    background: #726bff;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 9999;
    margin: 0 !important;
    padding: 25px 0 !important;
    transition: left 0.3s ease-in-out;
    overflow-y: auto;
  }
  .menu .navigation--bar.hide {
    left: -100%;
  }
  .menu .navigation--bar.open {
    left: 0;
  }
  .menu .navigation--bar > li {
    margin: 7px 0;
    border-radius: 0 !important;
  }
  .menu .navigation--bar > li:focus > a,
  .menu .navigation--bar > li:focus > .hDropdown-link, .menu .navigation--bar > li:hover > a,
  .menu .navigation--bar > li:hover > .hDropdown-link {
    background-color: #e86eb6;
    color: #ffffff;
  }
  .menu .navigation--bar > li > a,
  .menu .navigation--bar > li > .hDropdown-link {
    font: 18px/26px "Roboto";
  }
  .menu .navigation--bar > li > ul.smlMegaMenu {
    padding: 20px 20px !important;
  }
  .menu .navigation--bar > li.menu-dropdown-icon li {
    margin: 0 !important;
    padding: 0 !important;
  }
  .menu .navigation--bar > li.menu-dropdown-icon li > a {
    background: url(../images/submenuArrow.png) no-repeat left top 16px !important;
  }
  .menu .navigation--bar > li.menu-dropdown-icon > ul {
    border: 0 !important;
  }
  .menu .navigation--bar > li.menu-dropdown-icon > ul.smlMegaMenu .eachBase {
    margin-bottom: 0 !important;
  }
  .menu-container .menu > ul > li > a {
    color: #fff;
  }
  .menu-container .menu > ul > li > a {
    color: #fff;
  }
  .menu .navigation--bar > li.menu-dropdown-icon li > a {
    color: #424674;
    font-weight: 400;
  }
}
@media only screen and (max-width: 768px) {
  .baseDd .eachBase {
    width: 100%;
    margin-bottom: 30px;
  }
  .menu-container .menu {
    width: 600px;
  }
  .menu-container .header {
    width: 600px;
  }
}
@media only screen and (max-width: 600px) {
  .menu-container .menu {
    width: 100%;
    position: static;
  }
  .menu-container .header {
    width: 100%;
    padding-bottom: 0;
  }
  .menu-container .header .menu {
    background-color: #efeeff;
    margin-top: 15px;
    width: 100%;
  }
  .menu-container .header .logo {
    margin-left: 4%;
  }
  .menu-mobile {
    padding-left: 5%;
  }
}
@media screen and (min-width: 981px) {
  .menu-container .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (max-width: 981px) {
  .menu .navigation--bar.open {
    width: 80%;
    max-width: 340px;
    top: 78px;
  }
}
@media screen and (max-width: 600px) {
  .menu .navigation--bar.open {
    top: 82px;
  }
}
@media screen and (max-width: 375px) {
  .menu-container .header__mobiletopbar .logo #menu_burger {
    font-size: 1.4rem;
  }
  .menu-container .header__mobiletopbar .logo img {
    max-width: 93px;
  }
}
.footer {
  background-color: #ffffff;
  padding-bottom: 60px;
}
.footer__menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  place-items: start;
  gap: 1rem;
  margin-top: 70px;
}
.footer__menu--column .menuLine {
  height: 2px;
  background-color: #ad4482;
  background: linear-gradient(114.44deg, #624af2, #ad4482);
  width: 70px;
  margin-bottom: 20px;
}
.footer__menu_group {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.footer__menu_group li {
  list-style-type: none;
  margin-bottom: 5px;
}
.footer__menu_group li:last-child {
  margin-bottom: 0;
}
.footer__menu_group li a {
  font-size: 14px;
  line-height: 20px;
  color: #424674;
  text-decoration: none;
  position: relative;
}
.footer__menu_group li a:hover {
  text-decoration: underline;
}
.footer__menu_group li a:hover > .fas {
  padding: 0 6px 0 0;
}
.footer__menu_group li a > .fas {
  font-size: 12px;
  display: inline-block;
  padding: 0 4px 0 0;
  transition: 0.2s ease-in-out;
}
.footer__top--title {
  color: #100253;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 16px;
}
.footer__bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid #b6b4e0;
  padding-top: 25px;
  margin-top: 40px;
  gap: 2rem;
}
.footer__bottom--copyright {
  font-size: 14px;
  line-height: 20px;
  color: #424674;
  display: grid;
}
.footer__bottom--copyright span {
  color: #424674;
}
.footer__bottom--copyright a {
  font-size: 14px;
  line-height: 20px;
  color: #424674;
  text-decoration: underline;
  display: inline-block;
  margin-top: 10px;
}
.footer__social {
  display: flex;
  flex-direction: row-reverse;
  gap: 0.5rem;
}
.footer__social--item a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.footer__social--item a:hover {
  text-decoration: none;
}
.footer__social--item a .fab {
  font-size: 20px;
  color: #ffffff;
}
.footer__social--item a.fb {
  background-color: #3b5998;
}
.footer__social--item a.tw {
  background-color: #55acee;
}
.footer__social--item a.lin {
  background-color: #007bb5;
}
.footer__social--item a.yt {
  background-color: #cd201f;
}
.footer__social--item a.insta {
  background-color: #e1306c;
}

.exit_notification_popup .topNotification_popup #topNotification.modal {
  display: block;
  background-color: rgba(0, 0, 0, 0.89);
}

body.exit_notification_popup.modal-open .topNotification_popup #topNotification.modal.show {
  display: none;
}

.hero {
  width: 100%;
  display: inline-block;
  background: #F7F5FF;
  background-repeat: no-repeat;
}
@media (min-width: 992px) {
  .hero {
    background-position: center right;
    background-size: cover;
  }
}
@media (max-width: 991.98px) {
  .hero {
    background-position: left bottom;
    background-size: inherit;
    background: #f8f9fb;
  }
}
.hero__grid {
  display: grid;
}
@media (min-width: 992px) {
  .hero__grid {
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
    padding: 20px 0 60px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero__grid {
    grid-template-columns: 1fr;
    align-items: center;
    padding: 40px 0;
  }
}
@media (max-width: 767.98px) {
  .hero__grid {
    grid-template-columns: 1fr;
    padding: 40px 0;
  }
}
.hero__grid--content .title {
  color: #1d195f;
  font-weight: 700;
  text-wrap: balance;
  margin: 0;
}
@media (min-width: 1200px) {
  .hero__grid--content .title {
    font-size: 48px;
    line-height: 55px;
    max-width: 600px;
    margin-bottom: 5px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero__grid--content .title {
    font-size: 35px;
    line-height: 40px;
    text-wrap: balance;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero__grid--content .title {
    font-size: 35px;
    line-height: 40px;
    max-width: 500px;
    text-wrap: balance;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero__grid--content .title {
    max-width: 600px;
    font-size: 30px;
    line-height: 35px;
  }
}
@media (max-width: 575.98px) {
  .hero__grid--content .title {
    max-width: 600px;
    font-size: 30px;
    line-height: 35px;
    text-wrap: balance;
  }
}
@media (min-width: 768px) {
  .hero__grid--content .title span {
    display: block;
  }
}
.hero__grid--content > .subtitle {
  font-style: normal;
  color: #424674;
  font-weight: 500;
}
@media (min-width: 992px) {
  .hero__grid--content > .subtitle {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero__grid--content > .subtitle {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero__grid--content > .subtitle {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 767.98px) {
  .hero__grid--content > .subtitle {
    margin: 1rem 0 1rem;
  }
}
@media (max-width: 575.98px) {
  .hero__grid--content > .subtitle {
    font-size: 18px;
    line-height: 24px;
  }
}
.hero__grid--content .list {
  list-style: none;
  padding-left: 0;
  margin: 0rem 0 3rem;
}
@media (min-width: 992px) {
  .hero__grid--content .list {
    margin: 33px 0px 33px 0px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero__grid--content .list {
    margin: 25px 0px 30px 0px;
  }
}
@media (max-width: 767.98px) {
  .hero__grid--content .list {
    margin: 25px 0;
  }
}
.hero__grid--content .list .list-item {
  color: #424674;
  text-wrap: balance;
  background: url(../images/icon-check-tertiary.svg);
  background-repeat: no-repeat;
  padding: 0px 0 0px 25px;
  margin-bottom: 6px;
  background-size: 18px;
  font-weight: 400;
  background-position: 0 2px;
  line-height: 24px;
}
@media (max-width: 575.98px) {
  .hero__grid--content .list .list-item {
    text-wrap: unset;
    text-wrap-style: pretty;
  }
}
.hero__grid--image {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 991.98px) {
  .hero__grid--image {
    display: none;
  }
}
.hero__grid--image > img {
  max-width: 100%;
  max-height: 520px;
  padding-top: 20px;
}
.hero .cta {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  gap: 8px;
  flex-direction: column;
  align-items: flex-start;
  max-width: 250px;
}
@media (max-width: 575.98px) {
  .hero .cta {
    flex-direction: column;
  }
}
.hero .cta__quote p {
  color: #e2edf7;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 0.5rem;
}
.hero .cta .hint {
  color: #424674;
  font-size: 14px;
  opacity: 0.8;
}

.ai-receptionist .hero__grid--content .title {
  max-width: 700px;
}
@media (min-width: 992px) {
  .ai-receptionist .hero__grid--content .title > span {
    display: block;
  }
}

.services {
  background-color: #1d195f;
  position: relative;
  padding: 60px 0;
  z-index: 1;
}
.services::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: -24px;
  top: 0;
  background-image: url(../images/vector-left.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  z-index: -1;
}
@media (max-width: 575.98px) {
  .services::after {
    background-image: none;
  }
}
.services::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  background-image: url(../images/vector-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  z-index: -1;
}
@media (max-width: 575.98px) {
  .services::before {
    background-image: none;
  }
}
@media (min-width: 1400px) {
  .services__header--grid {
    -webkit-display: grid;
    -moz-display: grid;
    -ms-display: grid;
    -o-display: grid;
    display: grid;
    gap: 20px;
    grid-template-columns: 4.3fr 7fr;
    align-items: center;
  }
}
@media (min-width: 992px) and (max-width: 1399.98px) {
  .services__header--grid {
    -webkit-display: grid;
    -moz-display: grid;
    -ms-display: grid;
    -o-display: grid;
    display: grid;
    gap: 20px;
    grid-template-columns: 4.3fr 7fr;
    align-items: center;
  }
}
@media (max-width: 991.98px) {
  .services__header--grid {
    grid-template-columns: 1fr;
    max-width: 750px;
    margin: 0 auto;
    text-wrap-style: balance;
  }
}
@media (min-width: 1400px) {
  .services__header--grid > .headercolumn {
    max-width: 347px;
  }
}
@media (min-width: 992px) and (max-width: 1399.98px) {
  .services__header--grid > .headercolumn {
    max-width: 350px;
  }
}
.services__header--grid > .headercolumn .title {
  color: #F77321;
  font-weight: 600;
}
@media (min-width: 1400px) {
  .services__header--grid > .headercolumn .title {
    font-size: 38px;
    line-height: 45px;
  }
}
@media (min-width: 992px) and (max-width: 1399.98px) {
  .services__header--grid > .headercolumn .title {
    font-size: 38px;
    display: block;
    line-height: 45px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .services__header--grid > .headercolumn .title {
    font-size: 30px;
    line-height: 35px;
    max-width: 400px;
    margin: 0 0 22px;
  }
}
@media (max-width: 767.98px) {
  .services__header--grid > .headercolumn .title {
    font-size: 30px;
    line-height: 35px;
    max-width: 400px;
    margin: 0 0 22px;
  }
}
.services__header--grid > .headercolumn .title .text-white {
  color: #ffffff;
}
.services__header--grid > .contentcolumn {
  max-width: 650px;
}
.services__header--grid > .contentcolumn .description {
  color: #ffffff;
}
@media (min-width: 992px) {
  .services__header--grid > .contentcolumn .description {
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
  }
}
@media (max-width: 991.98px) {
  .services__header--grid > .contentcolumn .description {
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
  }
}
.services__header--grid > .contentcolumn .listen-to-the-ai-voice {
  margin-top: 1.5rem;
  -webkit-display: grid;
  -moz-display: grid;
  -ms-display: grid;
  -o-display: grid;
  display: grid;
  display: grid;
  grid-template-columns: 0.8fr 11.2fr;
  align-items: center;
  gap: 7px;
  border: 1px solid #856cff;
  padding: 7px 15px 7px 7px;
  border-radius: 50px;
}
.services__header--grid > .contentcolumn .listen-to-the-ai-voice #waveform-container {
  width: 100%;
}
.services__header--grid > .contentcolumn .listen-to-the-ai-voice audio {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  margin: 0 auto;
  z-index: 99;
}
.services__header--grid > .contentcolumn .listen-to-the-ai-voice .hint {
  font-size: 15px;
  font-weight: 400;
  opacity: 0.8;
  text-align: center;
}
.services__header--grid > .contentcolumn .listen-to-the-ai-voice .action {
  width: 35px;
  height: 35px;
  background-repeat: no-repeat;
  background-size: 100%;
  border: 0;
  outline: 0;
  display: block;
  cursor: pointer;
  background-color: transparent;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  align-items: center;
  background-image: url("../images/play-icon.svg");
  background-color: transparent;
  background-size: contain;
  background-color: #F77321;
  border-radius: 50%;
  position: relative;
  left: 7px;
}
.services__header--grid > .contentcolumn .listen-to-the-ai-voice .action:not(.playing):not(.finished) {
  animation: pulse 1.5s infinite ease-out;
}
.services__header--grid > .contentcolumn .listen-to-the-ai-voice .action.paused {
  background-image: url("../images/play-icon.svg");
}
.services__header--grid > .contentcolumn .listen-to-the-ai-voice .action.playing {
  background-image: url("../images/pause-icon.svg");
}
.services__header--grid > .contentcolumn .listen-to-the-ai-voice .action.finished {
  background-image: url("../images/play-icon.svg");
}
@media (max-width: 991.98px) {
  .services__header--grid > .contentcolumn .listen-to-the-ai-voice .action {
    left: 2px;
  }
}
.services__header--grid > .contentcolumn .listen-to-the-ai-voice .cursor {
  height: 35px;
}
.services__header--description {
  max-width: 850px;
  text-align: left;
  position: relative;
}
@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(247, 115, 33, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(247, 115, 33, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(247, 115, 33, 0);
  }
}
@keyframes pulseout {
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgb(247, 115, 33);
  }
}
.flex-card {
  background-color: #ffffff;
  padding: 60px 0;
}
.flex-card__group {
  -webkit-display: grid;
  -moz-display: grid;
  -ms-display: grid;
  -o-display: grid;
  display: grid;
  align-items: center;
}
@media (min-width: 992px) {
  .flex-card__group {
    grid-template-columns: 5.5fr 6.5fr;
    gap: 5rem;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .flex-card__group {
    grid-template-columns: 5fr 7fr;
    gap: 2rem;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .flex-card__group {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .flex-card__group {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 575.98px) {
  .flex-card__group {
    grid-template-columns: 1fr;
  }
}
.flex-card__group--column > .title {
  color: #1d195f;
  font-feature-settings: "liga" off, "clig" off;
  font-style: normal;
  font-weight: 700;
  max-width: 900px;
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .flex-card__group--column > .title {
    font-size: 42px;
    line-height: 48px;
    text-align: left;
  }
}
@media (min-width: 992px) and (max-width: 1399.98px) {
  .flex-card__group--column > .title {
    font-size: 38px;
    line-height: 45px;
    text-align: left;
  }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .flex-card__group--column > .title {
    text-wrap: balance;
    font-size: 30px;
    line-height: 34px;
    margin-bottom: 1rem;
  }
}
@media (max-width: 575.98px) {
  .flex-card__group--column > .title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 1rem;
  }
}
.flex-card__group--column > .title span {
  color: #F77321;
}
.flex-card__group--column > .texture {
  font-size: 16px;
  color: #424674;
  text-wrap-style: pretty;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 2rem;
}
.flex-card__group--column img {
  width: auto;
}
@media (max-width: 991.98px) {
  .flex-card__group--column img {
    display: none;
  }
}
.flex-card__group--column .cards {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.flex-card__group--column .cards .list {
  list-style: none;
  padding-left: 0;
}
.flex-card__group--column .cards .list .list-item {
  color: #424674;
  text-wrap-style: pretty;
  font-weight: 400;
  line-height: 24px;
  background: url(../images/icon-check-tertiary.svg);
  background-repeat: no-repeat;
  padding: 0px 0 0px 25px;
  background-size: 16px;
  background-position: 0 3px;
}
.flex-card__group--column .cards .list .list-item strong {
  font-weight: 500;
}
.flex-card__group--column .cards .list .list-item:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .flex-card__group--column .cards .list .list-item {
    margin-bottom: 10px;
  }
}
@media (max-width: 991.98px) {
  .flex-card__group--column .cards .list .list-item {
    margin-bottom: 10px;
  }
}
@media (max-width: 575.98px) {
  .flex-card__group--column .cards .list .list-item {
    text-wrap: unset;
  }
}
.flex-card__group--column .cta {
  margin-top: 1.5rem;
}
.flex-card__group--column .cta > a {
  padding: 16px 40px;
  text-decoration: none;
}

.reviews {
  background-color: #f4f4f4;
  padding: 60px 0;
}
.reviews__head {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .reviews__head {
    align-items: center;
    flex-wrap: nowrap;
  }
}
@media (max-width: 991.98px) {
  .reviews__head {
    flex-direction: column;
    align-items: flex-start;
  }
}
.reviews__head--title {
  color: #1d195f;
  font-style: normal;
  font-weight: 700;
  margin: 0;
}
.reviews__head--title span {
  color: #F77321;
}
.reviews__head--title > img {
  display: inline-block;
}
@media (min-width: 992px) {
  .reviews__head--title {
    font-size: 42px;
    line-height: 48px;
    max-width: 780px;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .reviews__head--title {
    text-align: left;
    font-size: 34px;
    line-height: 40px;
    margin: 0 auto;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .reviews__head--title {
    text-align: left;
    font-size: 34px;
    line-height: 40px;
  }
}
@media (max-width: 575.98px) {
  .reviews__head--title {
    font-size: 28px;
    line-height: 36px;
    max-width: 400px;
    margin: 0 auto;
  }
}
.reviews__head--description {
  color: #424674;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  flex-shrink: 0;
  margin: 0;
}
@media (min-width: 992px) {
  .reviews__head--description {
    text-align: center;
    max-width: 650px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .reviews__head--description {
    text-align: center;
    margin: 0 auto;
    max-width: 600px;
  }
}
@media (max-width: 767.98px) {
  .reviews__head--description {
    text-align: center;
    max-width: 600px;
    font-size: 16px;
    line-height: 22px;
  }
}
@media (min-width: 992px) {
  .reviews__grid {
    margin-top: 56px;
  }
}
@media (max-width: 991.98px) {
  .reviews__grid {
    margin-top: 2rem;
  }
}
.reviews__grid--card {
  background-color: #ffffff;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0px 4px -2px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -1px rgba(0, 0, 0, 0.06);
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 20px 0;
  height: 100%;
}
@media (max-width: 991.98px) {
  .reviews__grid--card > svg {
    width: 40px;
    height: 40px;
  }
}
.reviews__grid--card > .card-holder {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 20px 0;
  height: 100%;
}
.reviews__grid--card > .card-holder > .card-body > .title {
  color: #1d195f;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 1.2rem;
}
.reviews__grid--card > .card-holder > .card-body > .review {
  margin-bottom: 1.5rem;
  color: #424674;
  font-size: 16px;
  line-height: 24px;
}
.reviews__grid--card > .card-holder > .card-body > .review:last-child {
  margin-bottom: 0;
}
.reviews__grid--card > .card-holder > .card-foot {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 0.5rem;
  border-left: 3px solid #ff6604;
  padding-left: 10px;
  margin-top: 30px;
}
.reviews__grid--card > .card-holder > .card-foot > .card-foot--icon {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
}
.reviews__grid--card > .card-holder > .card-foot > .card-foot--details > img {
  position: relative;
  left: -3px;
  margin-bottom: 0;
  width: unset;
}
.reviews__grid--card > .card-holder > .card-foot > .card-foot--details > .name {
  color: #424674;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
}
.reviews__grid--card > .card-holder > .card-foot > .card-foot--details > .location {
  color: #424674;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 23px;
}
.reviews__grid .owl-nav button {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  background-color: #fff !important;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0px 4px 11px 1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 4px 11px 1px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0px 4px 11px 1px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0px 4px 11px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 4px 11px 1px rgba(0, 0, 0, 0.2);
}
@media (min-width: 1400px) {
  .reviews__grid .owl-nav button.owl-prev {
    left: -53px;
  }
}
@media (max-width: 1399.98px) {
  .reviews__grid .owl-nav button.owl-prev {
    left: -20px;
  }
}
.reviews__grid .owl-nav button.owl-prev.disabled {
  opacity: 0.5;
  cursor: initial;
}
@media (min-width: 1400px) {
  .reviews__grid .owl-nav button.owl-next {
    right: -53px;
  }
}
@media (max-width: 1399.98px) {
  .reviews__grid .owl-nav button.owl-next {
    right: -20px;
  }
}
.reviews__grid .owl-nav button.owl-next.disabled {
  opacity: 0.5;
  cursor: initial;
}
.reviews__grid .owl-nav button span {
  font-size: 24px;
}

.why {
  padding: 60px 0;
}
.why__header--title {
  color: #1d195f;
  font-style: normal;
  font-weight: 700;
}
@media (min-width: 992px) {
  .why__header--title {
    font-size: 42px;
    line-height: 48px;
    text-align: center;
    max-width: 590px;
    margin: 0 auto;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .why__header--title {
    font-size: 34px;
    line-height: 40px;
    text-align: left;
  }
}
@media (max-width: 767.98px) {
  .why__header--title {
    font-size: 28px;
    line-height: 36px;
    text-align: left;
  }
}
.why__header--title span {
  color: #F77321;
}
.why__grid {
  -webkit-display: grid;
  -moz-display: grid;
  -ms-display: grid;
  -o-display: grid;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 992px) {
  .why__grid {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    margin-top: 3.5rem;
  }
}
@media (max-width: 991.98px) {
  .why__grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    margin-top: 2rem;
  }
}
.why__grid .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
  flex-shrink: 0;
  padding: 20px 40px;
  border-radius: 30px;
  border: 1px solid #D6D8E7;
  background: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(18, 18, 23, 0.08);
}
.why__grid .card .card-content > .title {
  color: #1d195f;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 0.5rem;
}
.why__grid .card .card-content > .description {
  font-size: 16px;
  line-height: 24px;
  color: #424674;
  text-wrap-style: pretty;
}

.faqs {
  position: relative;
  background-color: #F9FAFB;
  padding: 60px 0;
  z-index: 1;
}
.faqs::before {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  width: 282px;
  height: 100%;
  left: 0;
  top: 5px;
  z-index: -1;
  opacity: 0.35;
}
.faqs__header--title {
  color: #1d195f;
  font-style: normal;
  font-weight: 700;
}
@media (min-width: 992px) {
  .faqs__header--title {
    font-size: 42px;
    line-height: 48px;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .faqs__header--title {
    font-size: 34px;
    line-height: 40px;
    text-align: left;
  }
}
@media (max-width: 767.98px) {
  .faqs__header--title {
    font-size: 28px;
    line-height: 36px;
    text-align: left;
  }
}
.faqs__header--description {
  text-align: left;
  position: relative;
  color: #424674;
}
.faqs__grid {
  margin-top: 4rem;
  max-width: 100vw;
}
@media (min-width: 992px) {
  .faqs__grid {
    column-gap: 6rem;
    columns: 2;
  }
}
@media (max-width: 991.98px) {
  .faqs__grid {
    column-gap: 2rem;
    columns: 1;
    margin-top: 2rem;
  }
}
.faqs__grid--column {
  width: 100%;
  display: inline-block;
  margin-bottom: 2rem;
}
@media (max-width: 767.98px) {
  .faqs__grid--column {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767.98px) {
  .faqs__grid--column.active > .answer-body {
    display: block;
  }
}
.faqs__grid--column.active > .question {
  color: #1d195f;
}
.faqs__grid--column.active > .question::before {
  transform: rotate(180deg);
}
.faqs__grid--column:last-child {
  margin-bottom: 0;
}
.faqs__grid--column > .question {
  color: #1d195f;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 8px;
}
@media (max-width: 767.98px) {
  .faqs__grid--column > .question {
    position: relative;
    padding-left: 1.5rem;
    z-index: 1;
    font-weight: 500;
    margin-bottom: 7px;
  }
  .faqs__grid--column > .question::before {
    position: absolute;
    content: "";
    width: 15px;
    height: 15px;
    background: #f0f9ff url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjEiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTUgOCA1IDUgNS01IiBzdHJva2U9IiMxMzMwNEYiIHN0cm9rZS13aWR0aD0iMS42NjciIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPjwvc3ZnPg==);
    background-repeat: no-repeat;
    background-size: 15px;
    background-origin: border-box;
    background-position: center center;
    left: 0;
    top: 4px;
    -webkit-border-radius: 45px;
    -moz-border-radius: 45px;
    -ms-border-radius: 45px;
    -o-border-radius: 45px;
    border-radius: 45px;
    transform: rotate(0deg);
    transition: 0.3s ease-in-out;
  }
}
.faqs__grid--column > .answer-body {
  position: relative;
  color: #424674;
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 767.98px) {
  .faqs__grid--column > .answer-body {
    display: none;
    padding-left: 2.2rem;
  }
}
.faqs__grid--column > .answer-body > .answer {
  margin-bottom: 1rem;
  color: #424674;
}
.faqs__grid--column > .answer-body > .answer:last-child {
  margin-bottom: 0;
}

.fQuote {
  background-color: #f0f3fc;
  padding: 60px 0;
}
.fQuote__grid {
  -webkit-display: grid;
  -moz-display: grid;
  -ms-display: grid;
  -o-display: grid;
  display: grid;
  align-items: center;
}
@media (min-width: 992px) {
  .fQuote__grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem 1rem;
  }
}
@media (max-width: 991.98px) {
  .fQuote__grid {
    grid-template-columns: 1fr;
    gap: 1rem 1rem;
  }
}
.fQuote__grid--column > .contents {
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .fQuote__grid--column > .contents {
    padding-left: 67px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .fQuote__grid--column > .contents {
    padding-left: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .fQuote__grid--column > .contents {
    -webkit-display: grid;
    -moz-display: grid;
    -ms-display: grid;
    -o-display: grid;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (min-width: 768px) {
  .fQuote__grid--column > .contents::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 100%;
    background-color: #1d195f;
    left: 0;
    top: 0;
    z-index: 1;
  }
}
.fQuote__grid--column > .contents > .title {
  color: #1d195f;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.9px;
}
@media (min-width: 992px) {
  .fQuote__grid--column > .contents > .title {
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
    max-width: 458px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .fQuote__grid--column > .contents > .title {
    font-size: 34px;
    line-height: 46px;
    text-wrap: balance;
    max-width: 608px;
    margin: 0 auto 14px;
  }
}
@media (max-width: 767.98px) {
  .fQuote__grid--column > .contents > .title {
    font-size: 28px;
    line-height: 36px;
    max-width: auto;
    text-align: left;
    text-wrap: balance;
    margin: 0 auto 14px;
  }
}
.fQuote__grid--column > .contents > .title span {
  color: #F77321;
}
@media (min-width: 992px) {
  .fQuote__grid--column > .contents > .title span {
    display: block;
    margin-top: 4rem;
  }
}
@media (max-width: 991.98px) {
  .fQuote__grid--column > .contents > .title span {
    display: inline-block;
    margin-top: 0rem;
  }
}
.fQuote__grid--column > .contents > .list {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}
@media (min-width: 992px) {
  .fQuote__grid--column > .contents > .list {
    margin-top: 40px;
  }
}
@media (max-width: 767.98px) {
  .fQuote__grid--column > .contents > .list {
    margin-top: 40px;
  }
}
.fQuote__grid--column > .contents > .list > .list-item > svg {
  fill: currentColor;
  margin-right: 14px;
  position: relative;
  top: 3px;
}
.fQuote__grid--column > .contents > img {
  margin-left: auto;
  margin-top: 1.5rem;
}
@media (min-width: 992px) {
  .fQuote__grid--column > .contents > img {
    display: block;
  }
}
@media (max-width: 991.98px) {
  .fQuote__grid--column > .contents > img {
    display: none;
  }
}
.fQuote__grid--column > .formouter {
  background-color: #dde2f1;
  padding: 30px 20px;
  -webkit-border-radius: 17.895px;
  -moz-border-radius: 17.895px;
  -ms-border-radius: 17.895px;
  -o-border-radius: 17.895px;
  border-radius: 17.895px;
}
@media (min-width: 992px) {
  .fQuote__grid--column > .formouter {
    max-width: 450px;
    margin: 0 auto;
  }
}
@media (max-width: 991.98px) {
  .fQuote__grid--column > .formouter {
    max-width: 450px;
    margin: 0 auto;
    padding: 20px;
  }
}
.fQuote__grid--column > .formouter > form {
  background-color: #ffffff;
  -webkit-border-radius: 17.895px;
  -moz-border-radius: 17.895px;
  -ms-border-radius: 17.895px;
  -o-border-radius: 17.895px;
  border-radius: 17.895px;
  border: 1.118px solid #d3e8ff;
  box-shadow: 0px 11.185px 16.777px -3.355px rgba(0, 0, 0, 0.1), 0px 4.474px 6.711px -2.237px rgba(0, 0, 0, 0.05);
  max-width: 472px;
}
@media (max-width: 991.98px) {
  .fQuote__grid--column > .formouter > form {
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .fQuote__grid--column > .formouter > form {
    padding: 34px 32px;
  }
}
@media (max-width: 767.98px) {
  .fQuote__grid--column > .formouter > form {
    padding: 34px 20px;
    max-width: 100%;
  }
}
.fQuote__grid--column > .formouter > form > .form-heading {
  color: #1d195f;
  text-align: center;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 2rem;
}/*# sourceMappingURL=ai-receptionist.css.map */