@media (min-width: 575px) {
  :root {
    --container-width: 540px;
  }
}
@media (min-width: 768px) {
  :root {
    --container-width: 720px;
  }
}
@media (min-width: 992px) {
  :root {
    --container-width: 960px;
  }
}
@media (min-width: 1200px) {
  :root {
    --container-width: 1140px;
  }
}
@media (min-width: 1600px) {
  :root {
    --container-width: 1420px;
  }
}
@media (min-width: 1850px) {
  :root {
    --container-width: 1650px;
  }
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: calc(var(--container-gap) * 0.5) !important;
  padding-right: calc(var(--container-gap) * 0.5) !important;
}
@media (min-width: 575px) {
  .container {
    max-width: calc(var(--container-width) + var(--container-gap));
  }
}

/*
Usage:
@include font-clamp((base: 15px, sm: 20px, lg: 25px));
@include font-clamp((xs: 10px, md: 18px, xl: 30px));
@include font-clamp((base: 14px, xs: 12px, sm: 16px, md: 20px, lg: 24px, xl: 28px, xxl: 32px));

Available breakpoint keys: base, xs, sm, md, lg, xl, xxl
- 'base' or 'xs' sets the base font-size (no media query)
- Other keys generate media queries for their respective breakpoints
*/
.ff-fraunces {
  font-family: var(--font-eugene) !important;
}
.ff-fraunces p,
.ff-fraunces li,
.ff-fraunces a {
  font-family: inherit !important;
}

/*  ===============
  1. Reset
===============  */
*,
*::before,
*::after {
  box-sizing: border-box;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

input,
button,
textarea,
select {
  font-family: inherit;
}

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

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

blockquote,
q {
  quotes: none;
}

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

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
  cursor: pointer;
  text-decoration: none;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

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

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

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

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

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

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

input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-ms-expand {
  display: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
html {
  font-optical-sizing: auto;
  overflow: auto !important;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background-color: var(--global--body-bg) !important;
  color: var(--global--color-text) !important;
  font-optical-sizing: auto;
  margin-top: 0 !important;
  padding-right: 0 !important;
  scroll-behavior: smooth;
  text-align: left;
  text-rendering: optimizeSpeed;
}
body p,
body li {
  color: inherit !important;
  margin: 0;
  padding: 0;
  text-align: inherit;
}
body p a,
body li a {
  color: var(--global--color-link);
  display: inline;
  text-decoration: none;
}
body p a:hover,
body li a:hover {
  color: var(--global--color-link-alt);
  text-decoration: none;
}
body p,
body li,
body .form-elements,
body select,
body textarea,
body label {
  font-family: inherit;
  font-optical-sizing: auto;
  font-size: inherit;
  font-weight: inherit;
}
body ::-webkit-input-placeholder {
  font-size: inherit;
}
body :-moz-placeholder {
  font-size: inherit;
}
body ::-moz-placeholder {
  font-size: inherit;
}
body :-ms-input-placeholder {
  font-size: inherit;
}

p:not(:last-child),
blockquote:not(:last-child),
ul:not(:last-child),
ol:not(:last-child) {
  margin-bottom: 15px;
}
p + h1, p + h2, p + h3, p + h4, p + h5, p + h6,
blockquote + h1,
blockquote + h2,
blockquote + h3,
blockquote + h4,
blockquote + h5,
blockquote + h6,
ul + h1,
ul + h2,
ul + h3,
ul + h4,
ul + h5,
ul + h6,
ol + h1,
ol + h2,
ol + h3,
ol + h4,
ol + h5,
ol + h6 {
  margin: 0;
  margin-top: 20px;
}
@media (min-width: 1600px) {
  p:not(:last-child),
  blockquote:not(:last-child),
  ul:not(:last-child),
  ol:not(:last-child) {
    margin-bottom: 15px;
  }
  p + h1, p + h2, p + h3, p + h4, p + h5, p + h6,
  blockquote + h1,
  blockquote + h2,
  blockquote + h3,
  blockquote + h4,
  blockquote + h5,
  blockquote + h6,
  ul + h1,
  ul + h2,
  ul + h3,
  ul + h4,
  ul + h5,
  ul + h6,
  ol + h1,
  ol + h2,
  ol + h3,
  ol + h4,
  ol + h5,
  ol + h6 {
    margin-top: 30px;
  }
}

address {
  font-style: normal;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

svg {
  transition: all ease 0.4s;
  -o-transition: all ease 0.4s;
  -webkit-transition: all ease 0.4s;
}
svg :focus {
  appearance: none;
  -moz-appearance: none;
  outline: none;
}

a,
button,
input[type=submit],
input[type=reset],
input[type=button] {
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  -webkit-box-shadow: none;
  outline: none;
  text-shadow: none;
  -webkit-text-shadow: none;
  transition: all ease 0.4s;
  -o-transition: all ease 0.4s;
  -webkit-transition: all ease 0.4s;
}
a:focus, a:hover,
button:focus,
button:hover,
input[type=submit]:focus,
input[type=submit]:hover,
input[type=reset]:focus,
input[type=reset]:hover,
input[type=button]:focus,
input[type=button]:hover {
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  text-decoration: none;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
.site textarea:focus {
  color: var(--global--color-text) !important;
  outline: none !important;
}

button {
  border: 0;
}

a {
  border: none;
  color: inherit;
  display: inline-block;
}

a[href^=tel] {
  color: inherit;
  cursor: default;
  text-decoration: none !important;
}
a[href^=tel]:hover, a[href^=tel]:active, a[href^=tel]:focus {
  outline: none;
  text-decoration: none !important;
}

b,
strong {
  font-weight: var(--font-weight-700);
}

img {
  height: auto !important;
  max-height: 100%;
  max-width: 100%;
  position: relative;
  width: auto !important;
  z-index: 2;
}

.tw-logo {
  display: inline-block;
  margin-top: 10px;
}
.tw-logo svg {
  fill: #c3c9cf;
  height: 34px;
  width: 34px;
}
.tw-logo:hover svg {
  fill: var(--global--color-primary);
}

/* Ensure main scrollbar is visible */
html {
  scrollbar-width: auto;
  /* Firefox */
  scrollbar-color: auto;
}

/* Restore default scrollbar styles for Webkit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 12px;
  /* Adjust as needed */
}

::-webkit-scrollbar-thumb {
  background-color: rgba(33, 35, 49, 0.95);
  border-radius: 0px;
  cursor: grab;
  transition: 0.3s;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #212331;
}

::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  cursor: pointer;
}

[class*=fs-] h1,
[class*=fs-] h2,
[class*=fs-] h3,
[class*=fs-] h4,
[class*=fs-] h5,
[class*=fs-] h6,
[class*=fs-] p,
[class*=fs-] li,
[class*=fs-] span,
[class*=fs-] a,
[class*=fs-] div {
  font-size: inherit !important;
}

.fs-16 {
  font-size: 14px  !important;
}
@media (min-width: 768px) {
  .fs-16 {
    font-size: 14px  !important;
  }
}
@media (min-width: 1200px) {
  .fs-16 {
    font-size: 13px  !important;
  }
}
@media (min-width: 1600px) {
  .fs-16 {
    font-size: 15px  !important;
  }
}
@media (min-width: 1850px) {
  .fs-16 {
    font-size: 16px  !important;
  }
}

.fs-17 {
  font-size: 15px  !important;
}
@media (min-width: 768px) {
  .fs-17 {
    font-size: 15px  !important;
  }
}
@media (min-width: 1200px) {
  .fs-17 {
    font-size: 14px  !important;
  }
}
@media (min-width: 1600px) {
  .fs-17 {
    font-size: 16px  !important;
  }
}
@media (min-width: 1850px) {
  .fs-17 {
    font-size: 17px  !important;
  }
}

.fs-18 {
  font-size: 16px  !important;
}
@media (min-width: 768px) {
  .fs-18 {
    font-size: 15px  !important;
  }
}
@media (min-width: 1200px) {
  .fs-18 {
    font-size: 14px  !important;
  }
}
@media (min-width: 1600px) {
  .fs-18 {
    font-size: 17px  !important;
  }
}
@media (min-width: 1850px) {
  .fs-18 {
    font-size: 18px  !important;
  }
}

.fs-19 {
  font-size: 16px  !important;
}
@media (min-width: 768px) {
  .fs-19 {
    font-size: 15px  !important;
  }
}
@media (min-width: 1200px) {
  .fs-19 {
    font-size: 15px  !important;
  }
}
@media (min-width: 1600px) {
  .fs-19 {
    font-size: 18px  !important;
  }
}
@media (min-width: 1850px) {
  .fs-19 {
    font-size: 19px  !important;
  }
}

.fs-20 {
  font-size: 17px  !important;
}
@media (min-width: 768px) {
  .fs-20 {
    font-size: 15px  !important;
  }
}
@media (min-width: 1200px) {
  .fs-20 {
    font-size: 15px  !important;
  }
}
@media (min-width: 1600px) {
  .fs-20 {
    font-size: 18px  !important;
  }
}
@media (min-width: 1850px) {
  .fs-20 {
    font-size: 20px  !important;
  }
}

.fs-21 {
  font-size: 17px  !important;
}
@media (min-width: 768px) {
  .fs-21 {
    font-size: 15px  !important;
  }
}
@media (min-width: 1200px) {
  .fs-21 {
    font-size: 16px  !important;
  }
}
@media (min-width: 1600px) {
  .fs-21 {
    font-size: 20px  !important;
  }
}
@media (min-width: 1850px) {
  .fs-21 {
    font-size: 21px  !important;
  }
}

.fs-22 {
  font-size: 17px  !important;
}
@media (min-width: 768px) {
  .fs-22 {
    font-size: 17px  !important;
  }
}
@media (min-width: 1200px) {
  .fs-22 {
    font-size: 20px  !important;
  }
}
@media (min-width: 1600px) {
  .fs-22 {
    font-size: 20px  !important;
  }
}
@media (min-width: 1850px) {
  .fs-22 {
    font-size: 22px  !important;
  }
}

.fs-23 {
  font-size: 18px  !important;
}
@media (min-width: 768px) {
  .fs-23 {
    font-size: 15px  !important;
  }
}
@media (min-width: 1200px) {
  .fs-23 {
    font-size: 16px  !important;
  }
}
@media (min-width: 1600px) {
  .fs-23 {
    font-size: 22px  !important;
  }
}
@media (min-width: 1850px) {
  .fs-23 {
    font-size: 23px  !important;
  }
}

.fs-24 {
  font-size: 20px  !important;
}
@media (min-width: 768px) {
  .fs-24 {
    font-size: 18px  !important;
  }
}
@media (min-width: 1200px) {
  .fs-24 {
    font-size: 15px  !important;
  }
}
@media (min-width: 1600px) {
  .fs-24 {
    font-size: 20px  !important;
  }
}
@media (min-width: 1850px) {
  .fs-24 {
    font-size: 24px  !important;
  }
}

.fs-25 {
  font-size: 19px  !important;
}
@media (min-width: 768px) {
  .fs-25 {
    font-size: 15px  !important;
  }
}
@media (min-width: 1200px) {
  .fs-25 {
    font-size: 16px  !important;
  }
}
@media (min-width: 1600px) {
  .fs-25 {
    font-size: 24px  !important;
  }
}
@media (min-width: 1850px) {
  .fs-25 {
    font-size: 25px  !important;
  }
}

.fs-26 {
  font-size: 19px  !important;
}
@media (min-width: 768px) {
  .fs-26 {
    font-size: 15px  !important;
  }
}
@media (min-width: 1200px) {
  .fs-26 {
    font-size: 16px  !important;
  }
}
@media (min-width: 1600px) {
  .fs-26 {
    font-size: 24px  !important;
  }
}
@media (min-width: 1850px) {
  .fs-26 {
    font-size: 26px  !important;
  }
}

.fs-27 {
  font-size: 20px  !important;
}
@media (min-width: 768px) {
  .fs-27 {
    font-size: 18px  !important;
  }
}
@media (min-width: 1200px) {
  .fs-27 {
    font-size: 20px  !important;
  }
}
@media (min-width: 1600px) {
  .fs-27 {
    font-size: 26px  !important;
  }
}
@media (min-width: 1850px) {
  .fs-27 {
    font-size: 27px  !important;
  }
}

.fs-28 {
  font-size: 20px  !important;
}
@media (min-width: 768px) {
  .fs-28 {
    font-size: 19px  !important;
  }
}
@media (min-width: 1200px) {
  .fs-28 {
    font-size: 20px  !important;
  }
}
@media (min-width: 1600px) {
  .fs-28 {
    font-size: 24px  !important;
  }
}
@media (min-width: 1850px) {
  .fs-28 {
    font-size: 28px  !important;
  }
}

.fs-29 {
  font-size: 20px  !important;
}
@media (min-width: 768px) {
  .fs-29 {
    font-size: 15px  !important;
  }
}
@media (min-width: 992px) {
  .fs-29 {
    font-size: 19px  !important;
  }
}
@media (min-width: 1200px) {
  .fs-29 {
    font-size: 20px  !important;
  }
}
@media (min-width: 1600px) {
  .fs-29 {
    font-size: 24px  !important;
  }
}
@media (min-width: 1850px) {
  .fs-29 {
    font-size: 29px  !important;
  }
}

.fs-30 {
  font-size: 21px  !important;
}
@media (min-width: 768px) {
  .fs-30 {
    font-size: 18px  !important;
  }
}
@media (min-width: 1200px) {
  .fs-30 {
    font-size: 22px  !important;
  }
}
@media (min-width: 1600px) {
  .fs-30 {
    font-size: 27px  !important;
  }
}
@media (min-width: 1850px) {
  .fs-30 {
    font-size: 30px  !important;
  }
}

.fs-31 {
  font-size: 21px  !important;
}
@media (min-width: 768px) {
  .fs-31 {
    font-size: 20px  !important;
  }
}
@media (min-width: 1200px) {
  .fs-31 {
    font-size: 23px  !important;
  }
}
@media (min-width: 1600px) {
  .fs-31 {
    font-size: 30px  !important;
  }
}
@media (min-width: 1850px) {
  .fs-31 {
    font-size: 31px  !important;
  }
}

.fs-32 {
  font-size: 21px  !important;
}
@media (min-width: 768px) {
  .fs-32 {
    font-size: 20px  !important;
  }
}
@media (min-width: 1200px) {
  .fs-32 {
    font-size: 23px  !important;
  }
}
@media (min-width: 1600px) {
  .fs-32 {
    font-size: 31px  !important;
  }
}
@media (min-width: 1850px) {
  .fs-32 {
    font-size: 32px  !important;
  }
}

.fs-34 {
  font-size: 21px  !important;
}
@media (min-width: 768px) {
  .fs-34 {
    font-size: 20px  !important;
  }
}
@media (min-width: 1200px) {
  .fs-34 {
    font-size: 23px  !important;
  }
}
@media (min-width: 1600px) {
  .fs-34 {
    font-size: 32px  !important;
  }
}
@media (min-width: 1850px) {
  .fs-34 {
    font-size: 34px  !important;
  }
}

.fs-35 {
  font-size: 21px  !important;
}
@media (min-width: 768px) {
  .fs-35 {
    font-size: 22px  !important;
  }
}
@media (min-width: 1200px) {
  .fs-35 {
    font-size: 27px  !important;
  }
}
@media (min-width: 1600px) {
  .fs-35 {
    font-size: 33px  !important;
  }
}
@media (min-width: 1850px) {
  .fs-35 {
    font-size: 35px  !important;
  }
}

.fs-42 {
  font-size: 28px  !important;
}
@media (min-width: 768px) {
  .fs-42 {
    font-size: 29px  !important;
  }
}
@media (min-width: 1200px) {
  .fs-42 {
    font-size: 30px  !important;
  }
}
@media (min-width: 1600px) {
  .fs-42 {
    font-size: 40px  !important;
  }
}
@media (min-width: 1850px) {
  .fs-42 {
    font-size: 42px  !important;
  }
}

.fs-45 {
  font-size: 28px  !important;
}
@media (min-width: 768px) {
  .fs-45 {
    font-size: 29px  !important;
  }
}
@media (min-width: 1200px) {
  .fs-45 {
    font-size: 30px  !important;
  }
}
@media (min-width: 1600px) {
  .fs-45 {
    font-size: 41px  !important;
  }
}
@media (min-width: 1850px) {
  .fs-45 {
    font-size: 45px  !important;
  }
}

.fs-50 {
  font-size: 23px  !important;
}
@media (min-width: 768px) {
  .fs-50 {
    font-size: 27px  !important;
  }
}
@media (min-width: 1200px) {
  .fs-50 {
    font-size: 31px  !important;
  }
}
@media (min-width: 1600px) {
  .fs-50 {
    font-size: 48px  !important;
  }
}
@media (min-width: 1850px) {
  .fs-50 {
    font-size: 50px  !important;
  }
}

.fs-54 {
  font-size: 23px  !important;
}
@media (min-width: 768px) {
  .fs-54 {
    font-size: 27px  !important;
  }
}
@media (min-width: 1200px) {
  .fs-54 {
    font-size: 31px  !important;
  }
}
@media (min-width: 1600px) {
  .fs-54 {
    font-size: 49px  !important;
  }
}
@media (min-width: 1850px) {
  .fs-54 {
    font-size: 54px  !important;
  }
}

.fs-57 {
  font-size: 23px  !important;
}
@media (min-width: 768px) {
  .fs-57 {
    font-size: 27px  !important;
  }
}
@media (min-width: 1200px) {
  .fs-57 {
    font-size: 35px  !important;
  }
}
@media (min-width: 1600px) {
  .fs-57 {
    font-size: 48px  !important;
  }
}
@media (min-width: 1850px) {
  .fs-57 {
    font-size: 57px  !important;
  }
}

.fs-58 {
  font-size: 23px  !important;
}
@media (min-width: 768px) {
  .fs-58 {
    font-size: 27px  !important;
  }
}
@media (min-width: 1200px) {
  .fs-58 {
    font-size: 35px  !important;
  }
}
@media (min-width: 1600px) {
  .fs-58 {
    font-size: 48px  !important;
  }
}
@media (min-width: 1850px) {
  .fs-58 {
    font-size: 58px  !important;
  }
}

.fs-58-banner {
  font-size: 35px  !important;
}
@media (min-width: 768px) {
  .fs-58-banner {
    font-size: 40px  !important;
  }
}
@media (min-width: 1200px) {
  .fs-58-banner {
    font-size: 45px  !important;
  }
}
@media (min-width: 1600px) {
  .fs-58-banner {
    font-size: 50px  !important;
  }
}
@media (min-width: 1850px) {
  .fs-58-banner {
    font-size: 58px  !important;
  }
}

.fs-60 {
  font-size: 31px  !important;
}
@media (min-width: 768px) {
  .fs-60 {
    font-size: 32px  !important;
  }
}
@media (min-width: 1200px) {
  .fs-60 {
    font-size: 35px  !important;
  }
}
@media (min-width: 1600px) {
  .fs-60 {
    font-size: 54px  !important;
  }
}
@media (min-width: 1850px) {
  .fs-60 {
    font-size: 60px  !important;
  }
}

.fs-64 {
  font-size: 31px  !important;
}
@media (min-width: 768px) {
  .fs-64 {
    font-size: 32px  !important;
  }
}
@media (min-width: 1200px) {
  .fs-64 {
    font-size: 35px  !important;
  }
}
@media (min-width: 1600px) {
  .fs-64 {
    font-size: 60px  !important;
  }
}
@media (min-width: 1850px) {
  .fs-64 {
    font-size: 64px  !important;
  }
}

.fs-71 {
  font-size: 27px  !important;
}
@media (min-width: 768px) {
  .fs-71 {
    font-size: 30px  !important;
  }
}
@media (min-width: 1200px) {
  .fs-71 {
    font-size: 35px  !important;
  }
}
@media (min-width: 1600px) {
  .fs-71 {
    font-size: 66px  !important;
  }
}
@media (min-width: 1850px) {
  .fs-71 {
    font-size: 71px  !important;
  }
}

.fs-73 {
  font-size: 27px  !important;
}
@media (min-width: 768px) {
  .fs-73 {
    font-size: 32px  !important;
  }
}
@media (min-width: 1200px) {
  .fs-73 {
    font-size: 38px  !important;
  }
}
@media (min-width: 1600px) {
  .fs-73 {
    font-size: 68px  !important;
  }
}
@media (min-width: 1850px) {
  .fs-73 {
    font-size: 73px  !important;
  }
}

.fs-74 {
  font-size: 27px  !important;
}
@media (min-width: 768px) {
  .fs-74 {
    font-size: 32px  !important;
  }
}
@media (min-width: 1200px) {
  .fs-74 {
    font-size: 38px  !important;
  }
}
@media (min-width: 1600px) {
  .fs-74 {
    font-size: 68px  !important;
  }
}
@media (min-width: 1850px) {
  .fs-74 {
    font-size: 74px  !important;
  }
}

.fs-76 {
  font-size: 30px  !important;
}
@media (min-width: 768px) {
  .fs-76 {
    font-size: 34px  !important;
  }
}
@media (min-width: 1200px) {
  .fs-76 {
    font-size: 39px  !important;
  }
}
@media (min-width: 1600px) {
  .fs-76 {
    font-size: 69px  !important;
  }
}
@media (min-width: 1850px) {
  .fs-76 {
    font-size: 76px  !important;
  }
}

.fs-83 {
  font-size: 32px  !important;
}
@media (min-width: 768px) {
  .fs-83 {
    font-size: 35px  !important;
  }
}
@media (min-width: 1200px) {
  .fs-83 {
    font-size: 40px  !important;
  }
}
@media (min-width: 1600px) {
  .fs-83 {
    font-size: 74px  !important;
  }
}
@media (min-width: 1850px) {
  .fs-83 {
    font-size: 83px  !important;
  }
}

.fs-91 {
  font-size: 32px  !important;
}
@media (min-width: 768px) {
  .fs-91 {
    font-size: 36px  !important;
  }
}
@media (min-width: 1200px) {
  .fs-91 {
    font-size: 43px  !important;
  }
}
@media (min-width: 1600px) {
  .fs-91 {
    font-size: 70px  !important;
  }
}
@media (min-width: 1850px) {
  .fs-91 {
    font-size: 91px  !important;
  }
}

.tt-up {
  text-transform: uppercase !important;
}
.tt-up > * {
  text-transform: inherit;
}

.tt-cap {
  text-transform: capitalize !important;
}
.tt-cap > * {
  text-transform: inherit;
}

.tt-none {
  text-transform: none !important;
}
.tt-none > * {
  text-transform: inherit;
}

.lh-0 {
  line-height: 0% !important;
}
.lh-0 * {
  line-height: 0% !important;
}

.lh-50 {
  line-height: 50% !important;
}
.lh-50 * {
  line-height: 50% !important;
}

.lh-75 {
  line-height: 75% !important;
}
.lh-75 * {
  line-height: 75% !important;
}

.lh-100 {
  line-height: 100% !important;
}
.lh-100 * {
  line-height: 100% !important;
}

.lh-110 {
  line-height: 110% !important;
}
.lh-110 * {
  line-height: 110% !important;
}

.lh-115 {
  line-height: 115% !important;
}
.lh-115 * {
  line-height: 115% !important;
}

.lh-120 {
  line-height: 120% !important;
}
.lh-120 * {
  line-height: 120% !important;
}

.lh-130 {
  line-height: 130% !important;
}
.lh-130 * {
  line-height: 130% !important;
}

.lh-140 {
  line-height: 140% !important;
}
.lh-140 * {
  line-height: 140% !important;
}

.lh-150 {
  line-height: 150% !important;
}
.lh-150 * {
  line-height: 150% !important;
}

.lh-160 {
  line-height: 160% !important;
}
.lh-160 * {
  line-height: 160% !important;
}

.lh-170 {
  line-height: 170% !important;
}
.lh-170 * {
  line-height: 170% !important;
}

.lh-180 {
  line-height: 180% !important;
}
.lh-180 * {
  line-height: 180% !important;
}

.fw-900 {
  font-weight: bolder;
  font-weight: 900 !important;
}
.fw-900 * {
  font-weight: inherit !important;
}

.fw-800 {
  font-weight: bolder;
  font-weight: 800 !important;
}
.fw-800 * {
  font-weight: inherit !important;
}

.fw-700 {
  font-weight: bold;
  font-weight: 700 !important;
}
.fw-700 * {
  font-weight: inherit !important;
}

.fw-600 {
  font-weight: bold;
  font-weight: 600 !important;
}
.fw-600 * {
  font-weight: inherit !important;
}

.fw-500 {
  font-weight: normal;
  font-weight: 500 !important;
}
.fw-500 * {
  font-weight: inherit !important;
}

.fw-400 {
  font-weight: normal;
  font-weight: 400 !important;
}
.fw-400 * {
  font-weight: inherit !important;
}

.fw-300 {
  font-weight: lighter;
  font-weight: 300 !important;
}
.fw-300 * {
  font-weight: inherit !important;
}

.fw-200 {
  font-weight: lighter;
  font-weight: 200 !important;
}
.fw-200 * {
  font-weight: inherit !important;
}

.fw-100 {
  font-weight: lighter;
  font-weight: 100 !important;
}
.fw-100 * {
  font-weight: inherit !important;
}

/* // ie 11 & above
_:-ms-fullscreen,
:root .yourClass {
	property: value;
}

// ie 10 & above
_:-ms-lang(x),
.yourClass {
	property: value;
}*/
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  select {
    padding-right: 0;
  }
  summary {
    display: block;
  }
  .hm_blog .hm_blog_cols {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
}
/*
// ie 10 only
_:-ms-lang(x),
.yourClass {
	property: value\9;
}*/
@media screen and (min-width: 0\0 ) {
  select {
    padding-right: 0\9 ;
  }
  .btn {
    display: inline-block\9 ;
    line-height: 1\9 ;
    padding-top: 10px\9 ;
  }
  .modal-open {
    z-index: 99999\9 ;
  }
  .modal {
    z-index: 100001\9 ;
  }
  input[type=submit],
  input[type=reset],
  input[type=button],
  button[type=submit] {
    line-height: 1\9 ;
    padding-top: 0\9 ;
  }
  ::-webkit-input-placeholder {
    font-size: 1rem\9 ;
    font-weight: 400\9 ;
  }
  :-moz-placeholder {
    font-size: 1rem\9 ;
    font-weight: 400\9 ;
  }
  ::-moz-placeholder {
    font-size: 1rem\9 ;
    font-weight: 400\9 ;
  }
  :-ms-input-placeholder {
    font-size: 1rem\9 ;
    font-weight: 400\9 ;
  }
}
/* ================================================================*/
/*@media screen and (min-width:0\0) and (min-resolution: +72dpi) {
	// IE9+ CSS
  	.yourClass {
  		property: value;
  	}
}*/
/* ================================================================*/
/* // ie 9 only
@media screen and (min-width:0\0) and (min-resolution: .001dpcm) { 
	// IE9 CSS
 	.yourClass {
 		property: value;
 	}
}

// ie 8,9 & 10
@media screen\0 {
	.yourClass {
		property: value;
	}
}

// IE 8 Standards Mode Only

.yourClass {
	property \*: value\9
}

// IE 8

html>body .yourClass {
	property: value;
}
@media \0screen {
	.yourClass {
		property: value;
	}
}

// IE 6, 7 and 8

@media \0screen\,screen\9 {
    .yourClass {
    	property: value;
    }
}

// IE 6 and 7

@media screen\9 {
    .yourClass {
    	property: value;
    }
}
.yourClass {
	*property: value;
}
.yourClass {
	#property: value;
}

// IE 7

*+html .yourClass {
	property: value;
}
*:first-child+html .yourClass {
	property: value;
}

// IE 6

* html .yourClass {
	property: value;
}
.yourClass {
	_property: value;
} */
:root {
  --font-marcellus: "Marcellus", serif;
  --font-mulish: "Mulish", sans-serif;
  --global--font-primary: var(--font-marcellus, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif);
  --global--font-secondary: var(--font-mulish, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif);
  --global--color-black: #000;
  --global--color-white: #fff;
  --global--color-primary: #BAACDD;
  --global--color-primary-alt: #6D1472;
  --global--color-secondary: #F8F5FF;
  --global--color-secondary-alt: #CB87CF;
  --global--color-text: #000;
  --global--color-text-alt: #424242;
  --global--color-border: #BAACDD;
  --global--color-from: #000000;
  --global--body-bg: #ffffff;
  --global--custom-bg: #F5F5F5;
  --global--custom-bg-alt: #F9F6FF;
  --global--color-svg-dark: #6D1472;
  --global--color-svg-light: #BAACDD;
  --global--color-svg-white: #FFFFFF;
  --global--color-svg-black: #000000;
  --global--color-button: #BAACDD;
  --global--color-button-alt: #6D1472;
  --global--color-button-alt2: #CB87CF;
  --global--color-button-text: #000;
  --global--color-button-text-alt: #fff;
  --global--color-icon: #6D1472;
  --global--color-link: #6D1472;
  --global--color-link-alt: #000;
  --transform-title: uppercase;
  --global--box-shadow: 0px 0px 40px 0px #00000026;
  --global--box-shadow-alt: 0px 4px 20px 0px #00000040;
  --global--bg-gradient: linear-gradient(180deg, #FCFBFF 0%, #E8E1F9 100%);
  --tw-gutter-x: 30px;
  --tw-gutter-sm: 20px;
  --font-weight-100: 100;
  --font-weight-200: 200;
  --font-weight-300: 300;
  --font-weight-400: 400;
  --font-weight-500: 500;
  --font-weight-600: 600;
  --font-weight-700: 700;
  --font-weight-800: 800;
  --font-weight-900: 900;
}

body {
  font-family: var(--global--font-secondary);
  font-weight: var(--font-weight-300);
  line-height: 1.5;
  font-size: 16px  !important;
}
@media (min-width: 768px) {
  body {
    font-size: 15px  !important;
  }
}
@media (min-width: 1200px) {
  body {
    font-size: 14px  !important;
  }
}
@media (min-width: 1600px) {
  body {
    font-size: 17px  !important;
  }
}
@media (min-width: 1850px) {
  body {
    font-size: 18px  !important;
  }
}
body p,
body li {
  line-height: 1.7;
}
body p a:hover,
body li a:hover {
  text-decoration: underline;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--global--font-primary);
  font-weight: var(--font-weight-400);
  line-height: 1.15;
}

.font-primary {
  font-family: var(--global--font-primary) !important;
}

.font-secondary {
  font-family: var(--global--font-secondary) !important;
}

.tw-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: calc(-0.5 * var(--tw-gutter-sm));
  margin-right: calc(-0.5 * var(--tw-gutter-sm));
}
.tw-row > * {
  flex-shrink: 0;
  margin-bottom: calc(var(--tw-gutter-sm) * 0.5);
  margin-top: calc(var(--tw-gutter-sm) * 0.5);
  max-width: 100%;
  min-height: 1px;
  padding-left: calc(var(--tw-gutter-sm) * 0.5);
  padding-right: calc(var(--tw-gutter-sm) * 0.5);
  position: relative;
  width: 100%;
}
.tw-row .auto-width {
  flex: 0 0 auto;
  width: auto;
}
.tw-row.no-gap {
  margin-left: 0;
  margin-right: 0;
}
.tw-row.no-gap > * {
  padding-left: 0;
  padding-right: 0;
}
.tw-row.no-v-gap > * {
  margin-bottom: 0;
  margin-top: 0;
}
.tw-row.xs_row {
  margin-left: -6px;
  margin-right: -6px;
}
.tw-row.xs_row > * {
  margin-bottom: 6px;
  margin-top: 6px;
  padding-left: 6px;
  padding-right: 6px;
}

.owl-theme .owl-dots,
.container,
.custom_container,
.e-con > .e-con-inner,
.container-fluid {
  box-sizing: border-box !important;
  -webkit-box-sizing: border-box !important;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  width: 100%;
}

.owl-theme .owl-dots,
.container,
.custom_container,
.e-con > .e-con-inner {
  padding-right: calc(var(--tw-gutter-sm) * 0.5) !important;
  padding-left: calc(var(--tw-gutter-sm) * 0.5) !important;
}
@media (min-width: 575px) {
  .owl-theme .owl-dots,
  .container,
  .custom_container,
  .e-con > .e-con-inner {
    max-width: var(--container-width) !important;
  }
}

.container-fluid {
  padding-left: calc(var(--tw-gutter-sm) * 0.5) !important;
  padding-right: calc(var(--tw-gutter-sm) * 0.5) !important;
}
@media (min-width: 575px) {
  .container-fluid {
    max-width: var(--container-width) !important;
  }
}
@media (min-width: 1200px) {
  .container-fluid {
    max-width: 1950px !important;
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
}
@media (min-width: 1600px) {
  .container-fluid {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}

[class*=custom_container-] {
  box-sizing: border-box !important;
  -webkit-box-sizing: border-box !important;
  padding-right: calc(var(--tw-gutter-sm) * 0.5) !important;
  padding-left: calc(var(--tw-gutter-sm) * 0.5) !important;
  position: relative;
  width: 100% !important;
  margin: auto;
  max-width: 100% !important;
}

@media (min-width: 575px) and (max-width: 767px) {
  .custom_container-left-sm {
    margin-left: calc((100vw - var(--container-width)) / 2) !important;
    margin-right: calc((100vw - var(--container-width)) / 2) !important;
    max-width: var(--container-width) !important;
  }
}
@media (min-width: 768px) {
  .custom_container-left-sm {
    margin-right: unset;
    margin-left: calc((100vw - var(--container-width)) / 2 - var(--tw-gutter-sm) * 0.5) !important;
    width: auto !important;
  }
}

@media (min-width: 575px) and (max-width: 767px) {
  .custom_container-right-sm {
    margin-left: calc((100vw - var(--container-width)) / 2) !important;
    margin-right: calc((100vw - var(--container-width)) / 2) !important;
    max-width: var(--container-width) !important;
  }
}
@media (min-width: 768px) {
  .custom_container-right-sm {
    margin-left: unset;
    margin-right: calc((100vw - var(--container-width)) / 2 - var(--tw-gutter-sm) * 0.5) !important;
    width: auto !important;
  }
}

@media (min-width: 575px) and (max-width: 991px) {
  .custom_container-left-md {
    margin-left: calc((100vw - var(--container-width)) / 2) !important;
    margin-right: calc((100vw - var(--container-width)) / 2) !important;
    max-width: var(--container-width) !important;
  }
}
@media (min-width: 992px) {
  .custom_container-left-md {
    margin-right: unset;
    margin-left: calc((100vw - var(--container-width)) / 2 - var(--tw-gutter-sm) * 0.5) !important;
    width: auto !important;
  }
}

@media (min-width: 575px) and (max-width: 991px) {
  .custom_container-right-md {
    margin-left: calc((100vw - var(--container-width)) / 2) !important;
    margin-right: calc((100vw - var(--container-width)) / 2) !important;
    max-width: var(--container-width) !important;
  }
}
@media (min-width: 992px) {
  .custom_container-right-md {
    margin-left: unset;
    margin-right: calc((100vw - var(--container-width)) / 2 - var(--tw-gutter-sm) * 0.5) !important;
    width: auto !important;
  }
}

@media (min-width: 575px) and (max-width: 1199px) {
  .custom_container-left-lg {
    margin-left: calc((100vw - var(--container-width)) / 2) !important;
    margin-right: calc((100vw - var(--container-width)) / 2) !important;
    max-width: var(--container-width) !important;
  }
}
@media (min-width: 1200px) {
  .custom_container-left-lg {
    margin-right: unset;
    margin-left: calc((100vw - var(--container-width)) / 2 - var(--tw-gutter-sm) * 0.5) !important;
    width: auto !important;
  }
}

@media (min-width: 575px) and (max-width: 1199px) {
  .custom_container-right-lg {
    margin-left: calc((100vw - var(--container-width)) / 2) !important;
    margin-right: calc((100vw - var(--container-width)) / 2) !important;
    max-width: var(--container-width) !important;
  }
}
@media (min-width: 1200px) {
  .custom_container-right-lg {
    margin-left: unset;
    margin-right: calc((100vw - var(--container-width)) / 2 - var(--tw-gutter-sm) * 0.5) !important;
    width: auto !important;
  }
}

.anime-pulse {
  animation: anime-pulse 2s infinite;
}

.anime-pulse-wave {
  animation: anime-pulse-wave 2s infinite;
}

.anime-pulse-wave-alternate {
  animation: anime-pulse-wave-alternate 2s infinite;
}

.anime-slide-in {
  animation: anime-slide-in 2s infinite;
}

.anime-fade-in {
  animation: anime-fade-in 2s infinite;
}

.anime-fade-out {
  animation: anime-fade-out 2s infinite;
}

.anime-fade-in-half {
  animation: anime-fade-in-half 2s infinite;
}

.anime-shiver {
  animation: anime-shiver 1s infinite;
}

.anime-shiver-short {
  animation: anime-shiver-short 1s infinite;
}

.anime-pulse-blur {
  animation: anime-pulse-blur 1s infinite;
}

.anime-gradient-move {
  animation: anime-gradient-move 1s infinite;
}

.anime-move-dashes-horizontal {
  animation: anime-move-dashes-horizontal 1s infinite;
}

.anime-move-dashes-vertical {
  animation: anime-move-dashes-vertical 1s infinite;
}

.anime-bounce {
  animation: anime-bounce 2s ease infinite;
}

.anime-bounce-fast {
  animation: anime-bounce-fast 2s ease infinite;
}

.anime-flip {
  animation: anime-flip 2s ease infinite;
}

@keyframes anime-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes anime-pulse-wave {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}
@keyframes anime-pulse-wave-alternate {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
@keyframes anime-slide-in {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes anime-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes anime-fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes anime-fade-in-half {
  0% {
    opacity: 100%;
  }
  50% {
    opacity: 50%;
  }
  100% {
    opacity: 100%;
  }
}
@keyframes anime-shiver {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(8deg);
  }
  40% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-8deg);
  }
  60% {
    transform: rotate(0deg);
  }
  70% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(0deg);
  }
  90% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes anime-shiver-short {
  30% {
    transform: rotate(0deg);
  }
  32% {
    transform: rotate(8deg);
  }
  35% {
    transform: rotate(0deg);
  }
  37% {
    transform: rotate(-8deg);
  }
  40% {
    transform: rotate(0deg);
  }
  42% {
    transform: rotate(5deg);
  }
  45% {
    transform: rotate(0deg);
  }
  47% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(0deg);
  }
}
@keyframes anime-pulse-blur {
  0% {
    width: 100%;
    height: 100%;
    filter: blur(0px);
    opacity: 20%;
  }
  100% {
    width: 300%;
    height: 300%;
    filter: blur(3px);
    opacity: 10%;
  }
}
@keyframes anime-gradient-move {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 150% 100%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes anime-move-dashes-horizontal {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 15px;
  }
}
@keyframes anime-move-dashes-vertical {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 15px 0px;
  }
}
@keyframes anime-bounce {
  0% {
    transform: translateY(0%);
  }
  30% {
    transform: translateY(-15%);
  }
  60% {
    transform: translateY(0%);
  }
  70% {
    transform: translateY(-7%);
  }
  85% {
    transform: translateY(0%);
  }
  95% {
    transform: translateY(-3%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes anime-bounce-fast {
  70% {
    transform: translateY(0%);
  }
  80% {
    transform: translateY(-15%);
  }
  90% {
    transform: translateY(0%);
  }
  95% {
    transform: translateY(-7%);
  }
  97% {
    transform: translateY(0%);
  }
  99% {
    transform: translateY(-3%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes anime-flip {
  80% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(180deg);
  }
}
.no-padding {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.no-padding > * {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

:root {
  --cmn-space-padding: 30px;
  --cmn-space-padding-60: 20px;
  --cmn-space-padding-30: 15px;
}
@media (min-width: 768px) {
  :root {
    --cmn-space-padding: 40px;
    --cmn-space-padding-60: 30px;
    --cmn-space-padding-30: 20px;
  }
}
@media (min-width: 1200px) {
  :root {
    --cmn-space-padding: 55px;
    --cmn-space-padding-60: 50px;
  }
}
@media (min-width: 1600px) {
  :root {
    --cmn-space-padding: 75px;
    --cmn-space-padding-60: 60px;
    --cmn-space-padding-30: 30px;
  }
}
@media (min-width: 1850px) {
  :root {
    --cmn-space-padding: 100px;
  }
}

.cmn-space {
  padding-bottom: var(--cmn-space-padding) !important;
  padding-top: var(--cmn-space-padding) !important;
}

.bottom-space {
  padding-bottom: var(--cmn-space-padding) !important;
}

.top-space {
  padding-top: var(--cmn-space-padding) !important;
}

.cmn-space-60 {
  padding-bottom: var(--cmn-space-padding-60) !important;
  padding-top: var(--cmn-space-padding-60) !important;
}

.bottom-space-60 {
  padding-bottom: var(--cmn-space-padding-60) !important;
}

.top-space-60 {
  padding-top: var(--cmn-space-padding-60) !important;
}

.cmn-space-30 {
  padding-bottom: var(--cmn-space-padding-30) !important;
  padding-top: var(--cmn-space-padding-30) !important;
}

.bottom-space-30 {
  padding-bottom: var(--cmn-space-padding-30) !important;
}

.top-space-30 {
  padding-top: var(--cmn-space-padding-30) !important;
}

.clear {
  display: block;
}

.inline-block {
  display: inline-block !important;
}

@media (min-width: 768px) {
  .tab-block {
    display: block !important;
  }
}

.m-b-0 {
  margin-bottom: 0 !important;
}

.m-b-5 {
  margin-bottom: 5px !important;
}

.m-b-10 {
  margin-bottom: 10px !important;
}

.m-b-20 {
  margin-bottom: 10px !important;
}
@media (min-width: 768px) {
  .m-b-20 {
    margin-bottom: 15px !important;
  }
}
@media (min-width: 1600px) {
  .m-b-20 {
    margin-bottom: 20px !important;
  }
}

.m-b-30 {
  margin-bottom: 10px !important;
}
@media (min-width: 768px) {
  .m-b-30 {
    margin-bottom: 20px !important;
  }
}
@media (min-width: 1600px) {
  .m-b-30 {
    margin-bottom: 30px !important;
  }
}

.m-t-0 {
  margin-top: 0 !important;
}

.p-b-0 {
  padding-bottom: 0 !important;
}

.p-b-10 {
  padding-bottom: 10px !important;
}

.p-b-20 {
  padding-bottom: 10px !important;
}
@media (min-width: 768px) {
  .p-b-20 {
    padding-bottom: 15px !important;
  }
}
@media (min-width: 1600px) {
  .p-b-20 {
    padding-bottom: 20px !important;
  }
}

.p-b-30 {
  padding-bottom: 10px !important;
}
@media (min-width: 768px) {
  .p-b-30 {
    padding-bottom: 20px !important;
  }
}
@media (min-width: 1600px) {
  .p-b-30 {
    padding-bottom: 30px !important;
  }
}

.p-t-0 {
  padding-top: 0 !important;
}

.p-t-10 {
  padding-top: 10px !important;
}

.p-t-20 {
  padding-top: 20px !important;
}

.p-l-0 {
  padding-left: 0 !important;
}

.p-l-30 {
  padding-left: 30px !important;
}

.p-r-0 {
  padding-right: 0 !important;
}

.no-border {
  border: 0 !important;
}

.text-white {
  color: var(--global--color-white) !important;
}
.text-white p,
.text-white li,
.text-white a,
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white blockquote {
  color: inherit !important;
}
.text-white a {
  color: inherit !important;
  text-decoration: underline !important;
}
.text-white a:hover {
  color: var(--global--color-secondary) !important;
  text-decoration: none !important;
}
.text-white a[href^=tel]:hover {
  color: var(--global--color-white) !important;
}

.text-black {
  color: var(--global--color-black) !important;
}
.text-black p,
.text-black li,
.text-black a,
.text-black h1,
.text-black h2,
.text-black h3,
.text-black h4,
.text-black h5,
.text-black h6,
.text-black blockquote {
  color: inherit !important;
}
.text-black a {
  color: inherit !important;
}
.text-black a:hover {
  color: var(--global--color-primary) !important;
  text-decoration: none !important;
}
.text-black a[href^=tel]:hover {
  color: var(--global--color-black) !important;
}

.text-primary,
.primary-color {
  color: var(--global--color-primary) !important;
}
.text-primary a:hover,
.primary-color a:hover {
  color: var(--global--color-secondary) !important;
}
.text-primary p,
.text-primary li,
.text-primary a,
.text-primary h1,
.text-primary h2,
.text-primary h3,
.text-primary h4,
.text-primary h5,
.text-primary h6,
.text-primary blockquote,
.primary-color p,
.primary-color li,
.primary-color a,
.primary-color h1,
.primary-color h2,
.primary-color h3,
.primary-color h4,
.primary-color h5,
.primary-color h6,
.primary-color blockquote {
  color: inherit !important;
}
.text-primary a,
.primary-color a {
  color: inherit !important;
}
.text-primary a:hover,
.primary-color a:hover {
  color: var(--global--color-secondary) !important;
  text-decoration: none !important;
}
.text-primary a[href^=tel]:hover,
.primary-color a[href^=tel]:hover {
  color: var(--global--color-primary) !important;
}

.text-secondary,
.secondary-color {
  color: var(--global--color-secondary) !important;
}
.text-secondary p,
.text-secondary li,
.text-secondary a,
.text-secondary h1,
.text-secondary h2,
.text-secondary h3,
.text-secondary h4,
.text-secondary h5,
.text-secondary h6,
.text-secondary blockquote,
.secondary-color p,
.secondary-color li,
.secondary-color a,
.secondary-color h1,
.secondary-color h2,
.secondary-color h3,
.secondary-color h4,
.secondary-color h5,
.secondary-color h6,
.secondary-color blockquote {
  color: inherit !important;
}
.text-secondary a,
.secondary-color a {
  color: inherit !important;
}
.text-secondary a:hover,
.secondary-color a:hover {
  color: var(--global--color-primary) !important;
  text-decoration: none !important;
}
.text-secondary a[href^=tel]:hover,
.secondary-color a[href^=tel]:hover {
  color: var(--global--color-secondary) !important;
}

.text-base {
  color: var(--global--color-base-text) !important;
}
.text-base p,
.text-base li,
.text-base a,
.text-base h1,
.text-base h2,
.text-base h3,
.text-base h4,
.text-base h5,
.text-base h6,
.text-base blockquote {
  color: inherit !important;
}
.text-base a {
  color: inherit !important;
}
.text-base a:hover {
  color: var(--global--color-primary) !important;
  text-decoration: none !important;
}
.text-base a[href^=tel]:hover {
  color: var(--global--color-secondary) !important;
}

.bg-primary {
  background-color: var(--global--color-primary);
}

.bg-primary-alt {
  background-color: var(--global--color-primary-alt);
}

.bg-secondary {
  background-color: var(--global--color-secondary);
}

.resp-tabs-list li {
  display: inline-block;
  cursor: pointer;
}

.resp-tabs-container {
  clear: left;
}

.resp-accordion {
  cursor: pointer;
  display: none;
}

.resp-tab-content {
  display: none;
}

.resp-content-active,
.resp-accordion-active {
  display: block;
}

/*-----------Vertical tabs-----------*/
.resp-vtabs ul.resp-tabs-list {
  float: left;
  width: 30%;
}

.resp-vtabs .resp-tabs-list li {
  display: block;
  cursor: pointer;
  float: none;
}

.resp-vtabs .resp-tabs-container {
  float: left;
  width: 68%;
  clear: none;
}

.resp-vtabs .resp-tab-content {
  border: none;
}

.resp-vtabs li.resp-tab-active {
  position: relative;
  z-index: 1;
}

.resp-arrow {
  width: 0;
  height: 0;
  float: right;
  margin-top: 3px;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid #ffffff;
}

.resp-tab-active span.resp-arrow {
  border: none;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #ffffff;
}

/*-----------Accordion styles-----------*/
.resp-easy-accordion .resp-accordion {
  display: block;
}

.resp-jfit {
  width: 100%;
}

.resp-tab-content-active {
  display: block;
}

/*Here your can change the breakpoint to set the accordion, when screen resolution changed*/
@media only screen and (max-width: 991px) {
  ul.resp-tabs-list {
    display: none;
  }
  .resp-accordion {
    display: block;
  }
  .resp-vtabs .resp-tabs-container {
    border: none;
    float: none;
    width: 100%;
    min-height: initial;
    clear: none;
  }
  .resp-accordion-closed {
    display: none !important;
  }
}
@media (max-width: 1199px) {
  .elementor-widget-text-editor img.visible-xl {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .elementor-widget-text-editor img.hide-xl {
    display: none !important;
  }
}
.elementor-widget-text-editor img.alignright {
  display: inline;
  float: right;
  margin: 12px 0 12px 20px;
}
.elementor-widget-text-editor img.alignleft {
  display: inline;
  float: left;
  margin: 12px 20px 12px 0;
}
.elementor-widget-text-editor img.aligncenter {
  clear: both;
  display: block;
  margin: 10px auto;
}
.elementor-widget-text-editor img.alignnone {
  display: inline;
  margin: 10px;
}
@media (min-width: 1200px) {
  .elementor-widget-text-editor img.alignright {
    margin-left: 35px;
  }
  .elementor-widget-text-editor img.alignleft {
    margin-right: 35px;
  }
}
@media (min-width: 1600px) {
  .elementor-widget-text-editor img.alignright {
    margin-left: 45px;
  }
  .elementor-widget-text-editor img.alignleft {
    margin-right: 45px;
  }
}
@media (min-width: 1850px) {
  .elementor-widget-text-editor img.alignright {
    margin-left: 65px;
  }
  .elementor-widget-text-editor img.alignleft {
    margin-right: 65px;
  }
}
@media (min-width: 992px) and (max-width: 1198px) {
  .elementor-widget-text-editor img {
    max-width: 500px !important;
  }
}
@media (min-width: 768px) and (max-width: 990px) {
  .elementor-widget-text-editor img {
    max-width: 350px !important;
  }
}
@media (max-width: 767px) {
  .elementor-widget-text-editor img.alignleft, .elementor-widget-text-editor img.alignright, .elementor-widget-text-editor img.aligncenter, .elementor-widget-text-editor img.alignnone {
    clear: both;
    display: block !important;
    float: none !important;
    margin: 10px auto !important;
    padding: 10px;
  }
}

.elementor-widget-heading .elementor-heading-title {
  font-size: 30px;
  color: inherit !important;
  font-family: var(--global--font-primary);
  font-weight: var(--font-weight-400);
}
@media (min-width: 768px) {
  .elementor-widget-heading .elementor-heading-title {
    font-size: 40px;
  }
}
@media (min-width: 1200px) {
  .elementor-widget-heading .elementor-heading-title {
    font-size: 43px;
  }
}
@media (min-width: 1600px) {
  .elementor-widget-heading .elementor-heading-title {
    font-size: 54px;
  }
}
@media (min-width: 1850px) {
  .elementor-widget-heading .elementor-heading-title {
    font-size: 60px;
  }
}
.elementor-widget-heading .elementor-heading-title span {
  display: inline-block;
}

.elementor-widget-heading + .elementor-element,
.elementor-widget-text-editor + .elementor-element,
.elementor-widget-button + .elementor-element {
  margin-top: 15px;
}

.elementor-widget-image img {
  height: auto !important;
  max-width: 100% !important;
}

body.elementor-editor-active .resp-tabs-container {
  overflow: hidden !important;
  max-height: 1000px !important;
}

.e-con .elementor-widget {
  font-family: inherit !important;
}

.elementor-widget-heading .elementor-heading-title {
  font-family: inherit !important;
  font-weight: inherit !important;
}

.elementor-widget-heading,
.e-con .elementor-widget.elementor-widget-heading {
  font-family: var(--global--font-primary) !important;
  font-weight: 400;
}

.modal-form {
  visibility: hidden;
  opacity: 0;
  scale: 0;
  transition: 0.3s;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-form .modal-content {
  position: relative;
  background: #fff;
  border-radius: 15px;
  width: 100%;
  margin: auto;
  max-width: 700px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  overflow: auto;
  max-height: 100dvh;
}
.modal-form .close-btn {
  position: absolute;
  top: 0px;
  right: 15px;
  font-size: 50px;
  cursor: pointer;
  line-height: 1;
  color: var(--global--color-white);
}
.modal-form .title {
  font-size: 24px  !important;
  line-height: 110%;
}
@media (min-width: 1200px) {
  .modal-form .title {
    font-size: 30px  !important;
  }
}
@media (min-width: 1850px) {
  .modal-form .title {
    font-size: 35px  !important;
  }
}
.modal-form .title.fw-600 {
  font-weight: 600 !important;
}
.modal-form .form_outer_wrapper {
  padding: 30px 50px;
  text-align: center;
}
@media (max-width: 767px) {
  .modal-form .form_outer_wrapper {
    padding: 40px 20px;
  }
}
.modal-form .form-group {
  padding-bottom: 25px;
}
.modal-form .form-group.submit {
  text-align: right;
}
.modal-form.block {
  visibility: visible;
  opacity: 1;
  scale: 1;
}

#modalReview .review_item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#modalReview .review_item .title {
  font-size: 21px  !important;
}
@media (min-width: 768px) {
  #modalReview .review_item .title {
    font-size: 18px  !important;
  }
}
@media (min-width: 1200px) {
  #modalReview .review_item .title {
    font-size: 22px  !important;
  }
}
@media (min-width: 1600px) {
  #modalReview .review_item .title {
    font-size: 27px  !important;
  }
}
@media (min-width: 1850px) {
  #modalReview .review_item .title {
    font-size: 30px  !important;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  cursor: pointer;
  width: 20px;
  z-index: 1;
  display: flex;
}
.slick-arrow.slick-disabled {
  opacity: 50%;
  cursor: default;
}
.slick-arrow.slick-disabled:hover:before {
  width: 0px;
  height: 0px;
}

.slick_next {
  right: 10px;
}
@media (max-width: 991px) {
  .slick_next {
    right: -3px;
  }
}
@media (max-width: 574px) {
  .slick_next {
    right: 5px;
  }
}

.slick_prev {
  left: -30px;
}
@media (max-width: 991px) {
  .slick_prev {
    left: -15px;
  }
}
@media (max-width: 574px) {
  .slick_prev {
    left: -5px;
  }
}

.slick-track {
  display: flex !important;
}

.slick-slide {
  height: inherit !important;
}

.slick-slide > div {
  height: 100% !important;
}

.slick_nav:before {
  content: "" !important;
  border: 1px solid var(--global--color-icon);
  border-width: 3px 3px 0px 0px;
  width: 15px;
  height: 15px;
  rotate: 45deg;
  position: absolute;
  left: 15px;
  top: 18px;
  transition: 0.35s ease all;
}
@media (max-width: 991px) {
  .slick_nav:before {
    border-width: 2px 2px 0px 0px;
    width: 10px;
    height: 10px;
    left: 8px;
    top: 11px;
  }
}

.slick_nav:hover:before {
  border-color: var(--global--color-white);
}

.slick_nav:after {
  content: "" !important;
  display: inline-flex;
  min-width: 50px;
  width: 50px;
  height: 50px;
  background-color: var(--global--color-white);
  border-radius: 50%;
  box-shadow: 0px 4px 68px 0px rgba(0, 0, 0, 0.368627451);
  transition: 0.35s ease all;
}
@media (max-width: 991px) {
  .slick_nav:after {
    min-width: 30px;
    width: 30px;
    height: 30px;
  }
}

.slick_nav:hover:after {
  background-color: var(--global--color-primary);
  box-shadow: 0px 4px 68px 0px rgba(0, 0, 0, 0.5215686275);
}

.slick_nav.slick_prev:before {
  rotate: 225deg;
  left: 20px;
  top: 17px;
}
@media (max-width: 991px) {
  .slick_nav.slick_prev:before {
    left: 12px;
    top: 11px;
  }
}

.slick_nav > svg {
  display: none !important;
}

.slick-dots {
  display: flex;
  gap: 5px;
}
.slick-dots button {
  font-size: 0px;
  padding: 0;
  width: 10px;
  height: 10px;
  background-color: var(--global--color-border);
  border-radius: 50%;
}
.slick-dots .slick-active button {
  background-color: var(--global--color-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  display: block;
  line-height: 1.2;
  margin: 0;
  padding: 0;
}
h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
  font-weight: inherit !important;
}
h1 + p, h1 + ul, h1 + ol, h1 + blockquote,
h2 + p,
h2 + ul,
h2 + ol,
h2 + blockquote,
h3 + p,
h3 + ul,
h3 + ol,
h3 + blockquote,
h4 + p,
h4 + ul,
h4 + ol,
h4 + blockquote,
h5 + p,
h5 + ul,
h5 + ol,
h5 + blockquote,
h6 + p,
h6 + ul,
h6 + ol,
h6 + blockquote {
  margin-bottom: 0;
  margin-top: 10px;
}
h1 + h2, h1 + h3, h1 + h4, h1 + h5, h1 + h6,
h2 + h2,
h2 + h3,
h2 + h4,
h2 + h5,
h2 + h6,
h3 + h2,
h3 + h3,
h3 + h4,
h3 + h5,
h3 + h6,
h4 + h2,
h4 + h3,
h4 + h4,
h4 + h5,
h4 + h6,
h5 + h2,
h5 + h3,
h5 + h4,
h5 + h5,
h5 + h6,
h6 + h2,
h6 + h3,
h6 + h4,
h6 + h5,
h6 + h6 {
  margin-bottom: 0;
  margin-top: 8px;
}
@media (min-width: 1600px) {
  h1 + p, h1 + ul, h1 + ol, h1 + blockquote,
  h2 + p,
  h2 + ul,
  h2 + ol,
  h2 + blockquote,
  h3 + p,
  h3 + ul,
  h3 + ol,
  h3 + blockquote,
  h4 + p,
  h4 + ul,
  h4 + ol,
  h4 + blockquote,
  h5 + p,
  h5 + ul,
  h5 + ol,
  h5 + blockquote,
  h6 + p,
  h6 + ul,
  h6 + ol,
  h6 + blockquote {
    margin-bottom: 0;
    margin-top: 20px;
  }
  h1 + h2, h1 + h3, h1 + h4, h1 + h5, h1 + h6,
  h2 + h2,
  h2 + h3,
  h2 + h4,
  h2 + h5,
  h2 + h6,
  h3 + h2,
  h3 + h3,
  h3 + h4,
  h3 + h5,
  h3 + h6,
  h4 + h2,
  h4 + h3,
  h4 + h4,
  h4 + h5,
  h4 + h6,
  h5 + h2,
  h5 + h3,
  h5 + h4,
  h5 + h5,
  h5 + h6,
  h6 + h2,
  h6 + h3,
  h6 + h4,
  h6 + h5,
  h6 + h6 {
    margin-bottom: 0;
    margin-top: 15px;
  }
}
h1.text-heading,
h2.text-heading,
h3.text-heading,
h4.text-heading,
h5.text-heading,
h6.text-heading {
  color: var(--global--color-heading) !important;
}

.elementor-widget-heading.h1 .elementor-heading-title,
.elementor-widget-heading.h2 .elementor-heading-title,
.elementor-widget-heading.h3 .elementor-heading-title,
.elementor-widget-heading.h4 .elementor-heading-title {
  font-size: inherit !important;
}

.home h1 {
  font-size: 35px;
}
@media (min-width: 768px) {
  .home h1 {
    font-size: 40px;
  }
}
@media (min-width: 1200px) {
  .home h1 {
    font-size: 50px;
  }
}
@media (min-width: 1600px) {
  .home h1 {
    font-size: 70px;
  }
}
@media (min-width: 1850px) {
  .home h1 {
    font-size: 91px;
  }
}
.home .h1 {
  font-size: 35px  !important;
}
@media (min-width: 768px) {
  .home .h1 {
    font-size: 40px  !important;
  }
}
@media (min-width: 1200px) {
  .home .h1 {
    font-size: 50px  !important;
  }
}
@media (min-width: 1600px) {
  .home .h1 {
    font-size: 70px  !important;
  }
}
@media (min-width: 1850px) {
  .home .h1 {
    font-size: 91px  !important;
  }
}
.home h2 {
  font-size: 30px;
}
@media (min-width: 768px) {
  .home h2 {
    font-size: 40px;
  }
}
@media (min-width: 1200px) {
  .home h2 {
    font-size: 43px;
  }
}
@media (min-width: 1600px) {
  .home h2 {
    font-size: 54px;
  }
}
@media (min-width: 1850px) {
  .home h2 {
    font-size: 60px;
  }
}
.home .h2 {
  font-size: 30px  !important;
}
@media (min-width: 768px) {
  .home .h2 {
    font-size: 40px  !important;
  }
}
@media (min-width: 1200px) {
  .home .h2 {
    font-size: 43px  !important;
  }
}
@media (min-width: 1600px) {
  .home .h2 {
    font-size: 54px  !important;
  }
}
@media (min-width: 1850px) {
  .home .h2 {
    font-size: 60px  !important;
  }
}
.home h3 {
  font-size: 25px;
}
@media (min-width: 768px) {
  .home h3 {
    font-size: 30px;
  }
}
@media (min-width: 1200px) {
  .home h3 {
    font-size: 33px;
  }
}
@media (min-width: 1600px) {
  .home h3 {
    font-size: 37px;
  }
}
@media (min-width: 1850px) {
  .home h3 {
    font-size: 45px;
  }
}
.home .h3 {
  font-size: 25px  !important;
}
@media (min-width: 768px) {
  .home .h3 {
    font-size: 30px  !important;
  }
}
@media (min-width: 1200px) {
  .home .h3 {
    font-size: 33px  !important;
  }
}
@media (min-width: 1600px) {
  .home .h3 {
    font-size: 37px  !important;
  }
}
@media (min-width: 1850px) {
  .home .h3 {
    font-size: 45px  !important;
  }
}

h1 {
  font-size: 35px;
}
@media (min-width: 992px) {
  h1 {
    font-size: 46px;
  }
}
@media (min-width: 1200px) {
  h1 {
    font-size: 50px;
  }
}
@media (min-width: 1600px) {
  h1 {
    font-size: 55px;
  }
}
@media (min-width: 1850px) {
  h1 {
    font-size: 65px;
  }
}

.h1 {
  font-size: 35px  !important;
}
@media (min-width: 992px) {
  .h1 {
    font-size: 46px  !important;
  }
}
@media (min-width: 1200px) {
  .h1 {
    font-size: 50px  !important;
  }
}
@media (min-width: 1600px) {
  .h1 {
    font-size: 55px  !important;
  }
}
@media (min-width: 1850px) {
  .h1 {
    font-size: 65px  !important;
  }
}

h2 {
  font-size: 30px;
}
@media (min-width: 992px) {
  h2 {
    font-size: 40px;
  }
}
@media (min-width: 1200px) {
  h2 {
    font-size: 38px;
  }
}
@media (min-width: 1600px) {
  h2 {
    font-size: 44px;
  }
}
@media (min-width: 1850px) {
  h2 {
    font-size: 50px;
  }
}

.h2 {
  font-size: 30px  !important;
}
@media (min-width: 992px) {
  .h2 {
    font-size: 40px  !important;
  }
}
@media (min-width: 1200px) {
  .h2 {
    font-size: 38px  !important;
  }
}
@media (min-width: 1600px) {
  .h2 {
    font-size: 44px  !important;
  }
}
@media (min-width: 1850px) {
  .h2 {
    font-size: 50px  !important;
  }
}

h3 {
  font-size: 25px;
}
@media (min-width: 992px) {
  h3 {
    font-size: 30px;
  }
}
@media (min-width: 1200px) {
  h3 {
    font-size: 33px;
  }
}
@media (min-width: 1600px) {
  h3 {
    font-size: 35px;
  }
}
@media (min-width: 1850px) {
  h3 {
    font-size: 42px;
  }
}

.h3 {
  font-size: 25px  !important;
}
@media (min-width: 992px) {
  .h3 {
    font-size: 30px  !important;
  }
}
@media (min-width: 1200px) {
  .h3 {
    font-size: 33px  !important;
  }
}
@media (min-width: 1600px) {
  .h3 {
    font-size: 35px  !important;
  }
}
@media (min-width: 1850px) {
  .h3 {
    font-size: 42px  !important;
  }
}

h4,
h5,
h6 {
  font-size: 23px;
}
@media (min-width: 992px) {
  h4,
  h5,
  h6 {
    font-size: 27px;
  }
}
@media (min-width: 1200px) {
  h4,
  h5,
  h6 {
    font-size: 30px;
  }
}
@media (min-width: 1600px) {
  h4,
  h5,
  h6 {
    font-size: 33px;
  }
}
@media (min-width: 1850px) {
  h4,
  h5,
  h6 {
    font-size: 37px;
  }
}

.h4,
.h5,
.h6 {
  font-size: 23px  !important;
}
@media (min-width: 992px) {
  .h4,
  .h5,
  .h6 {
    font-size: 27px  !important;
  }
}
@media (min-width: 1200px) {
  .h4,
  .h5,
  .h6 {
    font-size: 30px  !important;
  }
}
@media (min-width: 1600px) {
  .h4,
  .h5,
  .h6 {
    font-size: 33px  !important;
  }
}
@media (min-width: 1850px) {
  .h4,
  .h5,
  .h6 {
    font-size: 37px  !important;
  }
}

.special-title,
.special-title .elementor-heading-title {
  font-size: 21px;
  color: var(--global--color-primary-alt) !important;
  font-weight: var(--font-weight-500) !important;
  font-family: var(--global--font-secondary) !important;
}
@media (min-width: 768px) {
  .special-title,
  .special-title .elementor-heading-title {
    font-size: 23px;
  }
}
@media (min-width: 1200px) {
  .special-title,
  .special-title .elementor-heading-title {
    font-size: 25px;
  }
}
@media (min-width: 1600px) {
  .special-title,
  .special-title .elementor-heading-title {
    font-size: 27px;
  }
}
@media (min-width: 1850px) {
  .special-title,
  .special-title .elementor-heading-title {
    font-size: 29px;
  }
}
.special-title *,
.special-title .elementor-heading-title * {
  font-size: inherit !important;
  color: inherit !important;
  font-family: inherit !important;
}
.special-title.text-white,
.special-title .elementor-heading-title.text-white {
  color: var(--global--color-white) !important;
}
.special-title.text-white *,
.special-title .elementor-heading-title.text-white * {
  color: inherit !important;
}

.title {
  font-family: var(--font-family-title) !important;
}
.title * {
  font-family: inherit !important;
}

.cnt {
  font-family: var(--font-family-text) !important;
}
.cnt * {
  font-family: inherit !important;
}

body {
  counter-reset: heading-counter;
}

ul,
ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

ol li::marker {
  font-weight: var(--font--weight-regular);
}

.titled_ol {
  counter-increment: heading-counter;
}
.titled_ol:before {
  color: var(--global--color-primary);
  content: counter(heading-counter) ". ";
}

[class*=rg_list-] ol {
  padding-left: 18px;
}
[class*=rg_list-] ol ::marker {
  content: counter(list-item) ". ";
}
[class*=rg_list-] li a {
  color: inherit !important;
  display: inline;
  text-decoration: underline !important;
}
[class*=rg_list-] li a:hover {
  color: var(--global--color-primary) !important;
  text-decoration: none !important;
}
[class*=rg_list-] li:not(:last-child) {
  margin-bottom: 8px;
}
@media (min-width: 1600px) {
  [class*=rg_list-] li:not(:last-child) {
    margin-bottom: 10px;
  }
}
[class*=rg_list-] li p:not(:last-child) {
  margin-bottom: 6px !important;
}
@media (min-width: 1600px) {
  [class*=rg_list-] li p:not(:last-child) {
    margin-bottom: 10px !important;
  }
}
[class*=rg_list-] ul {
  display: block;
}
[class*=rg_list-] ul li {
  padding-left: 23px;
  position: relative;
}
[class*=rg_list-] ul li:before {
  background-color: var(--global--color-primary);
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: 6px;
  width: 6px;
}
@media (min-width: 1600px) {
  [class*=rg_list-] ul li {
    padding-left: 30px;
  }
  [class*=rg_list-] ul li:before {
    height: 8px;
    top: 10px;
    width: 8px;
  }
}

@media (min-width: 992px) {
  ul.cntList-2-cols {
    columns: 2 auto;
  }
}

@media (min-width: 992px) {
  ul.cntList-3-cols {
    columns: 2 auto;
  }
}
@media (min-width: 1200px) {
  ul.cntList-3-cols {
    columns: 3 auto;
  }
}

@media (min-width: 992px) {
  ul.cntList-4-cols {
    columns: 2 auto;
  }
}
@media (min-width: 1200px) {
  ul.cntList-4-cols {
    columns: 3 auto;
  }
}

.styled_u_list {
  --st-list-spacing: 14px;
}
@media (min-width: 768px) {
  .styled_u_list {
    --st-list-spacing: 11px;
  }
}
@media (min-width: 1200px) {
  .styled_u_list {
    --st-list-spacing: 13px;
  }
}
@media (min-width: 1600px) {
  .styled_u_list {
    --st-list-spacing: 14px;
  }
}
@media (min-width: 1850px) {
  .styled_u_list {
    --st-list-spacing: 16px;
  }
}
.styled_u_list.site-map ul {
  padding-top: 10px;
}
@media (max-width: 767px) {
  .styled_u_list.site-map ul li {
    padding-bottom: 15px;
  }
}
.styled_u_list ul {
  list-style: none;
}
.styled_u_list ul li {
  padding-left: calc(var(--st-list-spacing) * 2);
  padding-bottom: calc(var(--st-list-spacing) * 0.75);
  position: relative;
}
@media (max-width: 767px) {
  .styled_u_list ul li {
    padding-bottom: 25px;
  }
}
.styled_u_list ul li:before {
  content: "";
  position: absolute;
  top: calc(var(--st-list-spacing) / 2.5);
  left: 0px;
  width: var(--st-list-spacing);
  height: var(--st-list-spacing);
  background-color: var(--global--color-primary-alt);
  border: 4px solid var(--global--color-primary);
  border-radius: 50%;
}

.styled_tick_list li {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: 0;
  gap: 10px;
  padding-bottom: 4px;
}
.styled_tick_list li svg {
  width: fit-content;
}

table {
  border-collapse: collapse;
  width: 100%;
}
table tr,
table th,
table td {
  vertical-align: middle;
}
table thead tr th {
  color: inherit;
  font-weight: var(--font--weight-regular);
  text-transform: uppercase;
}
table thead tr th a {
  color: inherit !important;
  text-decoration: underline !important;
}
table thead tr th a:hover {
  text-decoration: none !important;
}
table td,
table th {
  height: auto !important;
  padding: 12px 15px;
}
table td.none,
table th.none {
  height: 10px !important;
  padding: 0 10px;
}
table td a,
table th a {
  color: var(--global--color-primary) !important;
  display: inline;
}
table td a:hover,
table th a:hover {
  color: var(--global--color-secondary) !important;
  text-decoration: underline !important;
}
table th {
  font-weight: var(--font--weight-semi-bold);
}

.table-mat_info table {
  font-size: 17px  !important;
}
@media (min-width: 768px) {
  .table-mat_info table {
    font-size: 17px  !important;
  }
}
@media (min-width: 1200px) {
  .table-mat_info table {
    font-size: 20px  !important;
  }
}
@media (min-width: 1600px) {
  .table-mat_info table {
    font-size: 20px  !important;
  }
}
@media (min-width: 1850px) {
  .table-mat_info table {
    font-size: 22px  !important;
  }
}
.table-mat_info table td,
.table-mat_info table th {
  font-size: inherit !important;
  line-height: 1.2;
  padding: 8px 10px;
}
@media (min-width: 1600px) {
  .table-mat_info table td,
  .table-mat_info table th {
    padding: 12px 15px;
  }
}
.table-mat_info table th {
  padding-left: 0;
  text-align: left;
}
.table-mat_info table td {
  padding-right: 0;
  text-align: right;
}

table:not([class]),
table[class=""] {
  border-collapse: collapse;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
table:not([class]) td,
table[class=""] td {
  min-height: 30px;
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 30px;
  padding-top: 30px;
}
.table-responsive table td,
.table-responsive table th {
  border: 1px solid var(--global--color-border);
}
.table-responsive table th {
  padding-left: 15px;
}

.table-responsive > .table-bordered {
  border: 0;
}

.ui-datepicker-calendar td,
.ui-datepicker-calendar th {
  padding: 8px 10px;
}
.ui-datepicker-calendar thead tr {
  background-color: var(--global--color-secondary);
}
.ui-datepicker-calendar thead tr th {
  font-size: 15px !important;
  font-size: 0.9375rem !important;
}
.ui-datepicker-calendar tbody tr {
  background: var(--global--color-white) !important;
}

.ui-datepicker .ui-datepicker-header {
  background-color: var(--global--color-secondary);
  color: var(--global--color-white);
  height: 42px;
  -ms-flex-align: center;
  align-items: center;
  display: flex !important;
  -ms-flex-pack: center;
  justify-content: center;
}
.ui-datepicker .ui-datepicker-prev {
  -ms-flex-order: 1;
  order: 1;
  margin-right: auto;
  padding-left: 15px;
}
.ui-datepicker .ui-datepicker-prev:hover {
  opacity: 0.7;
}
.ui-datepicker .ui-datepicker-title {
  -ms-flex-order: 2;
  order: 2;
}
.ui-datepicker .ui-datepicker-next {
  -ms-flex-order: 3;
  order: 3;
  margin-left: auto;
  padding-right: 15px;
}
.ui-datepicker .ui-datepicker-next:hover {
  opacity: 0.7;
}

.btn-w-100 .elementor-widget-button .elementor-button,
.btn-w-100 .btn,
.btn-w-100 input[type=submit]:not(.adminbar-button) {
  width: 100% !important;
}

.elementor-widget-button .elementor-button,
.btn,
input[type=submit]:not(.adminbar-button) {
  width: max-content;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  outline: none;
  transition: all 0.3s ease;
  font-family: var(--global--font-secondary) !important;
  background-color: var(--global--color-button) !important;
  color: var(--global--color-button-text) !important;
  border-radius: 8px;
  font-weight: 700 !important;
  text-transform: uppercase;
}
.elementor-widget-button .elementor-button:hover,
.btn:hover,
input[type=submit]:not(.adminbar-button):hover {
  background-color: var(--global--color-button-alt) !important;
  color: var(--global--color-button-text-alt) !important;
}

.elementor-widget-button .elementor-button,
.btn,
input[type=submit]:not(.adminbar-button) {
  font-size: 15px  !important;
  padding: 10px 20px;
  height: 48px;
}
@media (min-width: 1200px) {
  .elementor-widget-button .elementor-button,
  .btn,
  input[type=submit]:not(.adminbar-button) {
    font-size: 17px  !important;
  }
}
@media (min-width: 1600px) {
  .elementor-widget-button .elementor-button,
  .btn,
  input[type=submit]:not(.adminbar-button) {
    font-size: 19px  !important;
  }
}
@media (min-width: 1850px) {
  .elementor-widget-button .elementor-button,
  .btn,
  input[type=submit]:not(.adminbar-button) {
    font-size: 20px  !important;
  }
}
@media (min-width: 1200px) {
  .elementor-widget-button .elementor-button,
  .btn,
  input[type=submit]:not(.adminbar-button) {
    height: 58px;
    padding: 10px 30px;
  }
}
@media (min-width: 1850px) {
  .elementor-widget-button .elementor-button,
  .btn,
  input[type=submit]:not(.adminbar-button) {
    padding: 10px 30px;
    height: 72px;
  }
}

.btn.btn-small,
.elementor-widget-button.btn-small .elementor-button,
.btn.btn-sm,
.elementor-widget-button.btn-sm .elementor-button {
  border-radius: 8px;
  height: 40px;
  font-size: 14px  !important;
  padding: 10px 20px;
}
@media (min-width: 1200px) {
  .btn.btn-small,
  .elementor-widget-button.btn-small .elementor-button,
  .btn.btn-sm,
  .elementor-widget-button.btn-sm .elementor-button {
    font-size: 13px  !important;
  }
}
@media (min-width: 1600px) {
  .btn.btn-small,
  .elementor-widget-button.btn-small .elementor-button,
  .btn.btn-sm,
  .elementor-widget-button.btn-sm .elementor-button {
    font-size: 15px  !important;
  }
}
@media (min-width: 1850px) {
  .btn.btn-small,
  .elementor-widget-button.btn-small .elementor-button,
  .btn.btn-sm,
  .elementor-widget-button.btn-sm .elementor-button {
    font-size: 17px  !important;
  }
}
@media (min-width: 1200px) {
  .btn.btn-small,
  .elementor-widget-button.btn-small .elementor-button,
  .btn.btn-sm,
  .elementor-widget-button.btn-sm .elementor-button {
    height: 48px;
  }
}
@media (min-width: 1850px) {
  .btn.btn-small,
  .elementor-widget-button.btn-small .elementor-button,
  .btn.btn-sm,
  .elementor-widget-button.btn-sm .elementor-button {
    height: 62px;
    padding: 10px 30px;
  }
}

.btn.btn-large,
.elementor-widget-button.btn-large .elementor-button,
.btn.btn-lg,
.elementor-widget-button.btn-lg .elementor-button {
  height: 50px;
  font-size: 15px  !important;
  padding: 10px 30px;
}
@media (min-width: 768px) {
  .btn.btn-large,
  .elementor-widget-button.btn-large .elementor-button,
  .btn.btn-lg,
  .elementor-widget-button.btn-lg .elementor-button {
    font-size: 17px  !important;
  }
}
@media (min-width: 1200px) {
  .btn.btn-large,
  .elementor-widget-button.btn-large .elementor-button,
  .btn.btn-lg,
  .elementor-widget-button.btn-lg .elementor-button {
    font-size: 20px  !important;
  }
}
@media (min-width: 1600px) {
  .btn.btn-large,
  .elementor-widget-button.btn-large .elementor-button,
  .btn.btn-lg,
  .elementor-widget-button.btn-lg .elementor-button {
    font-size: 22px  !important;
  }
}
@media (min-width: 1850px) {
  .btn.btn-large,
  .elementor-widget-button.btn-large .elementor-button,
  .btn.btn-lg,
  .elementor-widget-button.btn-lg .elementor-button {
    font-size: 24px  !important;
  }
}
@media (min-width: 1200px) {
  .btn.btn-large,
  .elementor-widget-button.btn-large .elementor-button,
  .btn.btn-lg,
  .elementor-widget-button.btn-lg .elementor-button {
    height: 62px;
  }
}
@media (min-width: 1850px) {
  .btn.btn-large,
  .elementor-widget-button.btn-large .elementor-button,
  .btn.btn-lg,
  .elementor-widget-button.btn-lg .elementor-button {
    height: 82px;
    padding: 10px 60px;
  }
}

.btn.btn-white,
.elementor-widget-button.btn-white .elementor-button {
  background: var(--global--color-white) !important;
  color: var(--global--color-black) !important;
}
.btn.btn-white:hover,
.elementor-widget-button.btn-white .elementor-button:hover {
  background-color: var(--global--color-black) !important;
  color: var(--global--color-white) !important;
}

.btn.btn-dark,
.elementor-widget-button.btn-dark .elementor-button,
.btn-dark input[type=submit]:not(.adminbar-button) {
  background-color: var(--global--color-button-alt) !important;
  color: var(--global--color-button-text-alt) !important;
  font-weight: 600 !important;
}
.btn.btn-dark:hover,
.elementor-widget-button.btn-dark .elementor-button:hover,
.btn-dark input[type=submit]:not(.adminbar-button):hover {
  background-color: var(--global--color-button) !important;
  color: var(--global--color-button-text) !important;
}

.btn.btn-light,
.elementor-widget-button.btn-light .elementor-button {
  background-color: var(--global--color-button-alt2) !important;
  color: var(--global--color-button-text-alt) !important;
}
.btn.btn-light:hover,
.elementor-widget-button.btn-light .elementor-button:hover {
  background-color: var(--global--color-button-alt) !important;
  color: var(--global--color-button-text-alt) !important;
}

.btn.btn-wired,
.elementor-widget-button.btn-wired .elementor-button {
  background-color: transparent !important;
  border: 1px solid var(--global--color-button-alt) !important;
  color: var(--global--color-button-text) !important;
}
.btn.btn-wired:hover,
.elementor-widget-button.btn-wired .elementor-button:hover {
  background-color: var(--global--color-button-alt) !important;
  color: var(--global--color-button-text-alt) !important;
}

.btn-review.btn,
.btn-review .elementor-button {
  background-color: #4285F4 !important;
  border-radius: 5px !important;
  text-transform: capitalize !important;
  font-weight: 300 !important;
  padding: 10px 60px 10px 20px !important;
  --btn-size-height: 55px;
}
.btn-review.btn:hover,
.btn-review .elementor-button:hover {
  background-color: var(--global--color-secondary) !important;
}
.btn-review.btn:after,
.btn-review .elementor-button:after {
  border: none;
  background: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-45%);
  rotate: 0deg;
  width: auto;
  height: auto;
}
@media (max-width: 1199px) {
  .btn-review.btn:after,
  .btn-review .elementor-button:after {
    right: 12px;
    transform: translateY(-60%);
    scale: 0.8;
  }
}
@media (max-width: 1199px) {
  .btn-review.btn:after,
  .btn-review .elementor-button:after {
    right: 15px;
  }
}

#back-to-top {
  align-items: center;
  background-color: var(--global--color-primary);
  bottom: 0;
  color: var(--global--color-white);
  display: inline-flex;
  font-size: 0;
  flex-direction: column;
  justify-content: center;
  height: 42px;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  right: 15px;
  text-align: center;
  transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  -webkit-transform: translateY(20px);
  width: 38px;
  z-index: 99;
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  -webkit-transform: translateY(0);
}
#back-to-top:before {
  content: "";
  border-left: 1px solid var(--global--color-white);
  border-top: 1px solid var(--global--color-white);
  height: 15px;
  left: 30%;
  position: absolute;
  top: 70%;
  transform: rotate(45deg) translate(-50%, -50%);
  -webkit-transform: rotate(45deg) translate(-50%, -50%);
  -moz-transform: rotate(45deg) translate(-50%, -50%);
  -ms-transform: rotate(45deg) translate(-50%, -50%);
  -o-transform: rotate(45deg) translate(-50%, -50%);
  width: 15px;
}
#back-to-top:hover {
  background-color: var(--global--color-secondary);
  text-decoration: none;
}
@media (max-width: 1199px) {
  #back-to-top {
    display: none;
  }
}

.back-btn {
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--global--color-primary);
  border: 1px solid var(--global--color-white);
  border-radius: 0;
  -webkit-border-radius: 0;
  bottom: 20%;
  color: var(--global--color-white) !important;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 14px !important;
  font-size: 0.875rem !important;
  font-weight: var(--font-weight-500);
  height: 32px;
  margin: -42px 0 0;
  opacity: 0;
  padding: 0 10px;
  position: fixed;
  right: -20px;
  text-transform: uppercase;
  transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  width: auto;
  z-index: 99;
}
.back-btn:hover {
  background-color: var(--global--color-secondary);
}
.back-btn.back-open {
  opacity: 1;
  right: 0;
}
.back-btn:focus {
  outline: none !important;
}
@media (max-width: 1199px) {
  .back-btn {
    display: none !important;
  }
}

/* =====     Forms     ===== */
input {
  box-sizing: border-box !important;
  -webkit-box-sizing: border-box !important;
}
input:focus {
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  -webkit-box-shadow: none;
  outline: 0;
}

form::after {
  content: "";
  display: table;
  clear: both;
}

.fs-form_elements {
  color: var(--global--color-text) !important;
}

::-webkit-input-placeholder {
  opacity: 1 !important;
  color: var(--global--color-text) !important;
}

:-moz-placeholder {
  opacity: 1 !important;
  color: var(--global--color-text) !important;
}

::-moz-placeholder {
  opacity: 1 !important;
  color: var(--global--color-text) !important;
}

:-ms-input-placeholder {
  opacity: 1 !important;
  color: var(--global--color-text) !important;
}

label {
  line-height: 1;
  color: var(--global--color-text) !important;
  font-weight: 400 !important;
}

.form-elements,
textarea,
select {
  appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #c7c6c4 !important;
  border-radius: 0;
  -webkit-border-radius: 0;
  color: var(--global--color-text) !important;
  display: block;
  outline: none !important;
  outline-offset: 0;
  padding: 0 !important;
  text-transform: none;
  width: 100%;
}

.form-elements,
select {
  height: 46px;
}
@media (min-width: 768px) {
  .form-elements,
  select {
    height: 50px;
  }
}
@media (min-width: 1200px) {
  .form-elements,
  select {
    height: 38px;
  }
}
@media (min-width: 1600px) {
  .form-elements,
  select {
    height: 54px;
  }
}
@media (min-width: 1850px) {
  .form-elements,
  select {
    height: 58px;
  }
}

textarea {
  height: 100px;
  padding-bottom: 5px !important;
  padding-top: 10px !important;
  resize: none;
}
@media (min-width: 768px) {
  textarea {
    height: 100px;
  }
}
@media (min-width: 1200px) {
  textarea {
    height: 90px;
  }
}
@media (min-width: 1600px) {
  textarea {
    height: 100px;
  }
}
@media (min-width: 1850px) {
  textarea {
    height: 100px;
  }
}

select {
  background-position: right 15px center;
  background-repeat: no-repeat;
  background-size: 10px 6px;
  outline: none;
  /* &:invalid {
    color: #9d9d9d;
  }
  [disabled] {
    color: #9d9d9d;
  } */
}
select option {
  color: var(--global--color-text);
  text-transform: none;
}
select:focus, select:active {
  outline: none;
}
@media (min-width: 1600px) {
  select {
    background-size: 18px 9px;
  }
}

input[type=date]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  display: none;
}

input[type=date]::-webkit-calendar-picker-indicator {
  background-color: #3a6596;
  display: block;
  color: #fff;
}

.input-holder {
  position: relative;
  margin-bottom: 20px !important;
  width: 100%;
}
@media (max-width: 1600px) {
  .input-holder {
    margin-bottom: 15px !important;
  }
}
.input-holder.error input,
.input-holder.error textarea {
  border-color: var(--global--color-red) !important;
}
.input-holder.dFlex .error {
  left: 5px !important;
}
.input-holder .error {
  background-color: var(--global--color-red);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  color: var(--global--color-white);
  display: inline-block;
  font-size: 12px !important;
  font-size: 0.75rem !important;
  left: 0;
  padding: 2px 3px;
  position: absolute !important;
  top: -20px;
  width: auto !important;
  z-index: 3;
}
@media (min-width: 1600px) {
  .input-holder .error {
    font-size: 12px !important;
    font-size: 0.75rem !important;
  }
}
.input-holder .error:after {
  border-bottom: none;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--global--color-red);
  bottom: -5px;
  content: "";
  left: 10px;
  position: absolute;
}
.input-holder:not(:last-child) {
  margin-bottom: 20px;
  text-align: right;
}
@media (max-width: 1600px) {
  .input-holder:not(:last-child) {
    margin-bottom: 15px;
  }
}

.modal-dialog {
  max-width: 700px;
}

.modal-body {
  padding: 30px;
}

/* == Radio buttons == */
.custom-radio input[type=radio] {
  display: none;
}
.custom-radio input[type=radio] + label {
  color: var(--global--color-black);
  font-size: 16px !important;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .custom-radio input[type=radio] + label {
    font-size: 14px !important;
  }
}
@media (min-width: 1600px) {
  .custom-radio input[type=radio] + label {
    font-size: 17px !important;
  }
}
@media (min-width: 1850px) {
  .custom-radio input[type=radio] + label {
    font-size: 18px !important;
  }
}
.custom-radio input[type=radio] + label i {
  background-color: var(--global--color-white);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  border: 1px solid #ED1C24;
  display: inline-block;
  margin: -5px 7px 0 0;
  position: relative;
  vertical-align: middle;
  height: 14px;
  width: 14px;
}
@media (min-width: 1600px) {
  .custom-radio input[type=radio] + label i {
    height: 16px;
    width: 16px;
  }
}
.custom-radio input[type=radio] + label i:before {
  background-color: transparent;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  content: "";
  display: block;
  height: 70%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  width: 70%;
}
.custom-radio input[type=radio]:checked + label {
  color: var(--global--color-primary);
}
.custom-radio input[type=radio]:checked + label i {
  border-color: #ED1C24;
}
.custom-radio input[type=radio]:checked + label i:before {
  background-repeat: no-repeat;
  width: 9px;
  height: 7px;
  background-size: 9px;
}
.custom-radio input[type=radio]:checked + label span {
  color: var(--global--color-primary);
}
.custom-radio input[type=radio]:disabled, .custom-radio input[type=radio]:disabled + label {
  cursor: not-allowed;
  opacity: 0.6;
  text-decoration: line-through;
}
@media (max-width: 1199px) {
  .custom-radio input[type=radio] + label i {
    height: 12px;
    width: 12px;
  }
}

.form_white {
  --global--color-text: #ffffff;
  font-weight: 300 !important;
  color: #fff !important;
}
.form_white *:not(input[type=submit]) {
  font-weight: 300 !important;
}
.form_white ::-webkit-input-placeholder {
  color: var(--global--color-white) !important;
}
.form_white :-moz-placeholder {
  color: var(--global--color-white) !important;
}
.form_white ::-moz-placeholder {
  color: var(--global--color-white) !important;
}
.form_white :-ms-input-placeholder {
  color: var(--global--color-white) !important;
}
.form_white .form-elements,
.form_white textarea,
.form_white select {
  border-bottom-color: var(--global--color-white) !important;
  color: var(--global--color-white) !important;
}
.form_white select {
  background-image: url(assets/images/dropdown-arrow-white.png);
  font-size: 14px  !important;
}
@media (min-width: 1200px) {
  .form_white select {
    font-size: 16px  !important;
  }
}
.form_white select option {
  color: #ffffff;
  background: var(--global--color-primary-alt);
}

.cnt-form-stl input[type=text],
.cnt-form-stl input[type=email],
.cnt-form-stl input[type=tel] {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2901960784) !important;
}
.cnt-form-stl textarea {
  height: 120px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2901960784) !important;
}
@media (max-width: 1199px) {
  .cnt-form-stl textarea {
    height: 80px;
  }
}
@media (min-width: 1850px) {
  .cnt-form-stl .form-group {
    padding-bottom: 30px;
  }
}

input[type=text],
input[type=email],
input[type=tel] {
  line-height: normal;
  width: 100%;
  height: 30px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--global--color-text);
  font-size: 14px  !important;
  position: relative;
  font-weight: 400 !important;
  padding: 0;
  padding-bottom: 13px;
  color: var(--global--color-text);
}
@media (min-width: 1200px) {
  input[type=text],
  input[type=email],
  input[type=tel] {
    font-size: 16px  !important;
  }
}

textarea {
  line-height: normal;
  width: 100%;
  height: 70px;
  background-color: transparent;
  color: var(--global--color-text);
  border: none !important;
  border-bottom: 1px solid var(--global--color-text) !important;
  font-size: 14px  !important;
  position: relative;
  font-weight: 400 !important;
  padding-bottom: 13px !important;
}
@media (min-width: 1200px) {
  textarea {
    font-size: 16px  !important;
  }
}

span.wpcf7-not-valid-tip {
  position: absolute;
  top: 0;
  transform: translateY(-100%);
  right: 0;
  background-color: #a90000;
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  line-height: 100%;
  border-radius: 5px;
  animation: anime-fade-in-half 2.5s infinite;
}

.wpcf7-checkbox span.wpcf7-list-item.first {
  margin: 0;
}

.fs-18 .wpcf7-list-item-label {
  font-size: 16px;
}

.form-group {
  padding-bottom: 20px;
}
@media (min-width: 1850px) {
  .form-group {
    padding-bottom: 25px;
  }
}

:root {
  --width-custom-gap: 10px;
}

@media (min-width: 768px) {
  *.width-50-sm {
    width: calc(50% - var(--width-custom-gap));
  }
}
*.width-100 {
  width: 100%;
}

.footer-form-wrap form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: left;
}

input[type=checkbox] {
  display: none;
  /* hide native box */
}
input[type=checkbox] + span {
  position: relative;
  padding-left: 20px;
  display: flex;
  cursor: pointer;
  font-weight: 200;
  line-height: 150%;
}
input[type=checkbox] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border: 1px solid #ffffff;
  border-radius: 4px;
  background: transparent;
  transition: all 0.2s ease;
}
input[type=checkbox]:checked + span::after {
  content: "";
  position: absolute;
  border: 1px solid #fff;
  border-width: 0px 0px 1px 1px;
  width: 7px;
  height: 4px;
  rotate: 315deg;
  left: 5px;
  top: 10px;
  transform: translateY(-50%);
  font-size: 9px;
  color: #fff;
}

.custom-font-theme label {
  font-size: 17px  !important;
  font-weight: 400;
}
@media (min-width: 1200px) {
  .custom-font-theme label {
    font-size: 18px  !important;
  }
}
@media (min-width: 1850px) {
  .custom-font-theme label {
    font-size: 20px  !important;
  }
}
.custom-font-theme .wpcf7-list-item label {
  font-size: 16px  !important;
  font-weight: 500;
}
@media (min-width: 1200px) {
  .custom-font-theme .wpcf7-list-item label {
    font-size: 17px  !important;
  }
}
@media (min-width: 1850px) {
  .custom-font-theme .wpcf7-list-item label {
    font-size: 18px  !important;
  }
}
.custom-font-theme .wpcf7-list-item .wpcf7-list-item-label {
  font-weight: 500;
}
.custom-font-theme .wpcf7-checkbox {
  padding-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
}
.custom-font-theme .wpcf7-list-item {
  margin: 0;
}

.wpcf7-spinner {
  position: absolute;
  left: 0;
  bottom: 0;
}

.form-group.submit {
  padding-bottom: 0;
}

/* Wrapper */
.form-group input[type=file].wpcf7-file,
.gform_wrapper input[type=file] {
  width: 100%;
  padding: 10px;
  background: var(--global--color-secondary);
  border: 1px solid var(--global--color-primary);
  border-radius: 6px;
  font-size: 14px;
  color: var(--global--color-black);
  cursor: pointer;
}

/* Chrome / Edge / Safari button */
.form-group input[type=file]::file-selector-button,
.gform_wrapper input[type=file]::file-selector-button {
  padding: 8px 14px;
  margin-right: 12px;
  background: var(--global--color-primary-alt);
  color: var(--global--color-white);
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.25s ease;
}

/* Hover */
.form-group input[type=file]:hover::file-selector-button,
.gform_wrapper input[type=file]:hover::file-selector-button {
  background: var(--global--color-secondary-alt);
}

/* Focus */
.form-group input[type=file]:focus,
.gform_wrapper input[type=file]:focus {
  outline: none;
  border-color: var(--global--color-primary-alt);
}

/* Disabled */
.form-group input[type=file]:disabled::file-selector-button {
  opacity: 0.5;
  cursor: not-allowed;
}

.site-main {
  padding: 0 !important;
}

.m-t-10 {
  margin-top: 10px;
}

.grecaptcha-badge {
  display: none !important;
}

.bg-primary {
  background-color: var(--global--color-primary);
}

.bg-secondary {
  background-color: var(--global--color-secondary);
}

.bg-alternate {
  background-color: var(--global--custom-bg);
}

.text-primary {
  color: var(--global--color-primary) !important;
}
.text-primary * {
  color: inherit !important;
}

.text-light-blue {
  color: #66C3FD !important;
}
.text-light-blue * {
  color: inherit !important;
}

.text-secondary {
  color: var(--global--color-secondary) !important;
}
.text-secondary * {
  color: inherit !important;
}

.bg-primary-overlay {
  position: relative !important;
}
.bg-primary-overlay:before {
  content: "" !important;
  position: absolute !important;
  height: 100% !important;
  width: 100% !important;
  background-color: #0c0147;
  opacity: 90% !important;
  filter: contrast(0.9);
}

.bg-primary-gradient-overlay {
  position: relative !important;
}
.bg-primary-gradient-overlay:before {
  content: "" !important;
  position: absolute !important;
  height: 100% !important;
  width: 100% !important;
  background-image: var(--global--color-primary-gradient);
  opacity: 80% !important;
}

.bg-primary-gradient-overlay.dark:before {
  background-image: linear-gradient(258.34deg, #08204a -4.39%, #091527 79.92%);
  opacity: 70% !important;
}

.img-blue {
  position: relative;
}
.img-blue:before {
  content: "";
  background-color: #172C64;
  opacity: 20%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
}

.background-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}

.white-border {
  border: 1px solid var(--global--color-border);
}

.white-bg {
  --global--color-icon: var(--global--color-primary);
  background-color: var(--global--color-white);
}

.height-100 {
  height: 100%;
}

.psuedo-none:before {
  content: none;
}
.psuedo-none:after {
  content: none;
}

.psuedo-none-all *:before {
  content: none;
}
.psuedo-none-all *:after {
  content: none;
}

@media (max-width: 768px) {
  .mobile-none {
    display: none !important;
  }
}

@media (max-width: 1199px) {
  .i-pad-none {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .desktop-none {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .desktop-break {
    display: block;
  }
}

.display-none,
.popformname {
  display: none !important;
}

.bg-img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.height-100-all * {
  height: 100%;
}

.position-top-05 {
  top: 5px;
  position: relative;
}

.text-shadow-blue {
  text-shadow: 0 0 10px var(--global--color-primary);
}

.text-shadow-black {
  text-shadow: 0 0 10px var(--global--color-black);
}

@media (min-width: 1200px) {
  .break-desktop {
    display: block !important;
  }
}

.ico_txt_wrap {
  font-size: 18px;
  line-height: 100%;
  font-weight: var(--font-weight-400);
  display: flex;
  gap: 15px;
}
@media (min-width: 768px) {
  .ico_txt_wrap {
    font-size: 21px;
  }
}
@media (min-width: 1600px) {
  .ico_txt_wrap {
    font-size: 23px;
  }
}
@media (min-width: 1600px) {
  .ico_txt_wrap {
    gap: 20px;
  }
}
.ico_txt_wrap .icon_wrap {
  display: flex;
  align-items: baseline;
}
.ico_txt_wrap .icon_wrap svg,
.ico_txt_wrap .icon_wrap img {
  --ico-size-icon: 40px;
  min-width: var(--ico-size-icon);
  width: var(--ico-size-icon);
  fill: var(--global--color-icon);
}
@media (min-width: 768px) {
  .ico_txt_wrap .icon_wrap svg,
  .ico_txt_wrap .icon_wrap img {
    --ico-size-icon: 37px;
  }
}
@media (min-width: 1600px) {
  .ico_txt_wrap .icon_wrap svg,
  .ico_txt_wrap .icon_wrap img {
    --ico-size-icon: 42px;
  }
}
.ico_txt_wrap #callArrow {
  padding-top: 12%;
}
.ico_txt_wrap .text_wrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ico_txt_wrap .txt_large {
  font-size: 25px;
  font-weight: var(--font-weight-700);
}
@media (min-width: 768px) {
  .ico_txt_wrap .txt_large {
    font-size: 27px;
  }
}
@media (min-width: 1600px) {
  .ico_txt_wrap .txt_large {
    font-size: 30px;
  }
}
.ico_txt_wrap .txt_large span {
  display: block;
}
.ico_txt_wrap .txt_alt {
  font-size: 20px;
  font-weight: var(--font-weight-700);
  text-transform: uppercase;
  line-height: 150%;
}
@media (min-width: 768px) {
  .ico_txt_wrap .txt_alt {
    font-size: 24px;
  }
}
@media (min-width: 1600px) {
  .ico_txt_wrap .txt_alt {
    font-size: 27px;
  }
}
.ico_txt_wrap .txt_alt span {
  display: block;
}
.ico_txt_wrap.ico-small {
  gap: 10px;
  font-size: 15px;
  font-weight: 200;
}
.ico_txt_wrap.ico-small .icon_wrap svg,
.ico_txt_wrap.ico-small .icon_wrap img {
  --ico-size-icon: 32px;
}
@media (min-width: 768px) {
  .ico_txt_wrap.ico-small .icon_wrap svg,
  .ico_txt_wrap.ico-small .icon_wrap img {
    --ico-size-icon: 38px;
  }
}
@media (min-width: 1600px) {
  .ico_txt_wrap.ico-small .icon_wrap svg,
  .ico_txt_wrap.ico-small .icon_wrap img {
    --ico-size-icon: 45px;
  }
}
@media (min-width: 768px) {
  .ico_txt_wrap.ico-small {
    font-size: 17px;
  }
}
@media (min-width: 1600px) {
  .ico_txt_wrap.ico-small {
    font-size: 19px;
  }
}
.ico_txt_wrap.ico-small .txt_large {
  font-size: 20px;
}
@media (min-width: 768px) {
  .ico_txt_wrap.ico-small .txt_large {
    font-size: 23px;
  }
}
@media (min-width: 1600px) {
  .ico_txt_wrap.ico-small .txt_large {
    font-size: 26px;
  }
}
.ico_txt_wrap.ico-small #callArrow {
  padding-top: 12%;
}
.ico_txt_wrap.ico-large {
  font-weight: var(--font-weight-500);
  font-size: 16px;
}
.ico_txt_wrap.ico-large .icon_wrap {
  width: 48px;
}
.ico_txt_wrap.ico-large .icon_wrap svg,
.ico_txt_wrap.ico-large .icon_wrap img {
  --ico-size-icon: 30px;
}
.ico_txt_wrap.ico-large .icon_wrap svg#locationCircle, .ico_txt_wrap.ico-large .icon_wrap svg#timeClock,
.ico_txt_wrap.ico-large .icon_wrap img#locationCircle,
.ico_txt_wrap.ico-large .icon_wrap img#timeClock {
  --ico-size-icon: 26px;
}
@media (min-width: 768px) {
  .ico_txt_wrap.ico-large .icon_wrap svg,
  .ico_txt_wrap.ico-large .icon_wrap img {
    --ico-size-icon: 35px;
  }
  .ico_txt_wrap.ico-large .icon_wrap svg#locationCircle,
  .ico_txt_wrap.ico-large .icon_wrap img#locationCircle {
    --ico-size-icon: 28px;
  }
  .ico_txt_wrap.ico-large .icon_wrap svg#timeClock,
  .ico_txt_wrap.ico-large .icon_wrap img#timeClock {
    --ico-size-icon: 30px;
  }
}
@media (min-width: 1200px) {
  .ico_txt_wrap.ico-large .icon_wrap svg,
  .ico_txt_wrap.ico-large .icon_wrap img {
    --ico-size-icon: 40px;
  }
  .ico_txt_wrap.ico-large .icon_wrap svg#locationCircle,
  .ico_txt_wrap.ico-large .icon_wrap img#locationCircle {
    --ico-size-icon: 33px;
  }
  .ico_txt_wrap.ico-large .icon_wrap svg#timeClock,
  .ico_txt_wrap.ico-large .icon_wrap img#timeClock {
    --ico-size-icon: 36px;
  }
}
@media (min-width: 1850px) {
  .ico_txt_wrap.ico-large .icon_wrap svg,
  .ico_txt_wrap.ico-large .icon_wrap img {
    --ico-size-icon: 48px;
  }
  .ico_txt_wrap.ico-large .icon_wrap svg#locationCircle,
  .ico_txt_wrap.ico-large .icon_wrap img#locationCircle {
    --ico-size-icon: 40px;
  }
  .ico_txt_wrap.ico-large .icon_wrap svg#timeClock,
  .ico_txt_wrap.ico-large .icon_wrap img#timeClock {
    --ico-size-icon: 44px;
  }
}
@media (min-width: 768px) {
  .ico_txt_wrap.ico-large {
    font-size: 19px;
  }
}
@media (min-width: 1600px) {
  .ico_txt_wrap.ico-large {
    font-size: 21px;
  }
}
.ico_txt_wrap.ico-large .txt_large {
  font-size: 24px;
  line-height: 100%;
}
@media (min-width: 768px) {
  .ico_txt_wrap.ico-large .txt_large {
    font-size: 27px;
  }
}
@media (min-width: 1600px) {
  .ico_txt_wrap.ico-large .txt_large {
    font-size: 30px;
  }
}
@media (min-width: 1850px) {
  .ico_txt_wrap.ico-large .txt_large {
    font-size: 34px;
  }
}
.ico_txt_wrap.ico-footer {
  font-weight: var(--font-weight-400);
  font-size: 15px;
}
.ico_txt_wrap.ico-footer .icon_wrap svg,
.ico_txt_wrap.ico-footer .icon_wrap img {
  --ico-size-icon: 30px;
}
.ico_txt_wrap.ico-footer .icon_wrap svg#locationCircle, .ico_txt_wrap.ico-footer .icon_wrap svg#timeClock,
.ico_txt_wrap.ico-footer .icon_wrap img#locationCircle,
.ico_txt_wrap.ico-footer .icon_wrap img#timeClock {
  --ico-size-icon: 26px;
}
@media (min-width: 1850px) {
  .ico_txt_wrap.ico-footer .icon_wrap svg,
  .ico_txt_wrap.ico-footer .icon_wrap img {
    --ico-size-icon: 35px;
  }
  .ico_txt_wrap.ico-footer .icon_wrap svg#locationCircle,
  .ico_txt_wrap.ico-footer .icon_wrap img#locationCircle {
    --ico-size-icon: 30px;
  }
  .ico_txt_wrap.ico-footer .icon_wrap svg#timeClock,
  .ico_txt_wrap.ico-footer .icon_wrap img#timeClock {
    --ico-size-icon: 32px;
  }
}
@media (min-width: 1200px) {
  .ico_txt_wrap.ico-footer {
    font-size: 16px;
  }
}
@media (min-width: 1600px) {
  .ico_txt_wrap.ico-footer {
    font-size: 20px;
  }
}
@media (min-width: 1850px) {
  .ico_txt_wrap.ico-footer {
    font-size: 22px;
  }
}
.ico_txt_wrap.ico-footer .txt_large {
  font-size: 18px;
  font-weight: var(--font-weight-600);
  line-height: 120%;
}
@media (min-width: 768px) {
  .ico_txt_wrap.ico-footer .txt_large {
    font-size: 19px;
  }
}
@media (min-width: 1200px) {
  .ico_txt_wrap.ico-footer .txt_large {
    font-size: 20px;
  }
}
@media (min-width: 1600px) {
  .ico_txt_wrap.ico-footer .txt_large {
    font-size: 23px;
  }
}
@media (min-width: 1850px) {
  .ico_txt_wrap.ico-footer .txt_large {
    font-size: 26px;
  }
}
.ico_txt_wrap.ico-footer .txt_alt {
  width: max-content;
  font-size: 16px;
  font-weight: var(--font-weight-600);
  line-height: 160%;
  padding-top: 10px;
}
@media (min-width: 768px) {
  .ico_txt_wrap.ico-footer .txt_alt {
    font-size: 17px;
  }
}
@media (min-width: 1600px) {
  .ico_txt_wrap.ico-footer .txt_alt {
    font-size: 18px;
  }
}
@media (min-width: 1850px) {
  .ico_txt_wrap.ico-footer .txt_alt {
    font-size: 20px;
  }
}

.contact_detail_wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact_detail_wrap .ico_txt_wrap {
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.7019607843);
  border-radius: 8px;
  border: 1px solid #fff;
}
@media (max-width: 1599px) {
  .contact_detail_wrap .ico_txt_wrap {
    padding: 10px;
  }
}

.coming_soon.center {
  text-align: center;
  font-size: 21px  !important;
  text-transform: capitalize;
  font-weight: 600;
}
@media (min-width: 768px) {
  .coming_soon.center {
    font-size: 18px  !important;
  }
}
@media (min-width: 1200px) {
  .coming_soon.center {
    font-size: 22px  !important;
  }
}
@media (min-width: 1600px) {
  .coming_soon.center {
    font-size: 27px  !important;
  }
}
@media (min-width: 1850px) {
  .coming_soon.center {
    font-size: 30px  !important;
  }
}

:root {
  --site-header-height: 100px;
  --site-header-slim-height: 80px;
  --header-menu-item-gap: 20px;
}

@media (min-width: 768px) {
  :root {
    --site-header-height: 130px;
    --site-header-slim-height: 90px;
  }
}
@media (min-width: 1200px) {
  :root {
    --site-header-height: 140px;
    --site-header-slim-height: 130px;
    --header-menu-item-gap: 30px;
  }
}
@media (min-width: 1600px) {
  :root {
    --site-header-height: 160px;
    --header-menu-item-gap: 50px;
  }
}
@media (min-width: 1850px) {
  :root {
    --site-header-height: 180px;
    --site-header-slim-height: 140px;
    --header-menu-item-gap: 80px;
  }
}
:target {
  scroll-margin-top: var(--site-header-slim-height);
}

body.no-banner {
  padding-top: var(--site-header-height);
}
body.no-banner .project_header {
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.3294117647);
}

.project_header {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  transition: 0.3s ease all;
  height: var(--site-header-height);
  background-color: transparent;
  padding: 10px 0px;
}
.project_header * {
  transition: 0.3s ease all;
}
.project_header .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 1199px) {
  .project_header .container {
    align-items: center;
  }
}
.project_header .logo_wrap {
  max-width: max-content;
  display: flex;
  height: 100%;
}
.project_header .content_wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1199px) {
  .project_header .content_wrap {
    align-items: center;
    flex-direction: row;
  }
}
@media (max-width: 767px) {
  .project_header .content_wrap {
    gap: 15px;
  }
}
.project_header .content_wrap svg {
  animation: anime-shiver-interval 1.5s infinite;
}
@media (max-width: 991px) {
  .project_header .content_wrap .text_wrap {
    display: none;
  }
}
@media (max-width: 767px) {
  .project_header .content_wrap .header_menu {
    height: -webkit-fill-available;
    overflow: auto;
    scrollbar-width: none;
  }
}
.project_header .contact_wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  gap: 40px;
}
@media (max-width: 991px) {
  .project_header .contact_wrap {
    gap: 25px;
  }
}
@media (max-width: 767px) {
  .project_header .contact_wrap {
    gap: 15px;
  }
}
.project_header .header_menu ul {
  display: flex;
  gap: var(--header-menu-item-gap);
}
.project_header .header_menu ul li {
  position: relative;
}
.project_header .header_menu ul li a:not(.btn) {
  text-decoration: none;
  text-transform: capitalize;
  font-weight: 500;
  color: var(--global--color-black) !important;
  font-size: 20px;
}
@media (min-width: 1600px) {
  .project_header .header_menu ul li a:not(.btn) {
    font-size: 18px;
  }
}
@media (min-width: 1850px) {
  .project_header .header_menu ul li a:not(.btn) {
    font-size: 19px;
  }
}
@media (min-width: 1200px) {
  .project_header .header_menu ul li a:not(.btn) {
    position: relative;
  }
  .project_header .header_menu ul li a:not(.btn):before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 3px;
    border-radius: 3px;
    background-color: var(--global--color-primary-alt);
    transition: cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s;
  }
  .project_header .header_menu ul li a:not(.btn):hover {
    color: var(--global--color-primary-alt) !important;
  }
  .project_header .header_menu ul li a:not(.btn):hover:before {
    width: 100%;
  }
}
.project_header .header_menu ul li.current-menu-parent > a, .project_header .header_menu ul li.current-menu-item > a {
  font-weight: var(--font-weight-700);
}
.project_header .header_menu ul li.current-menu-parent > a:before, .project_header .header_menu ul li.current-menu-item > a:before {
  width: 100%;
}
.project_header .header_menu ul li.menu-item-has-children {
  padding-right: 20px;
}
.project_header .header_menu ul li.menu-item-has-children .menu-icon {
  position: absolute;
  right: 0px;
  top: calc(50% - 4px);
  width: 10px;
  height: 10px;
}
@media (min-width: 1200px) {
  .project_header .header_menu ul li.menu-item-has-children .menu-icon {
    right: 5px;
  }
}
@media (min-width: 1600px) {
  .project_header .header_menu ul li.menu-item-has-children .menu-icon {
    right: 0px;
  }
}
.project_header .header_menu ul li.menu-item-has-children .menu-icon:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: transparent;
  border: 1px solid;
  border-color: var(--global--color-white) var(--global--color-white) transparent transparent;
  rotate: 45deg;
}
@media (min-width: 1200px) {
  .project_header .header_menu ul li.menu-item-has-children .menu-icon:after {
    border-color: transparent var(--global--color-black) var(--global--color-black) transparent;
    margin-top: -2px;
  }
}
.project_header .header_menu ul li.menu-item-has-children > a:hover:before {
  width: 0%;
}
.project_header .header_menu ul li.menu-item-has-children > a:hover:after {
  opacity: 0;
}
@media (min-width: 1200px) {
  .project_header .header_menu ul li ul.sub-menu {
    visibility: hidden;
    opacity: 0;
    display: flex;
    flex-direction: column;
    background-color: var(--global--color-primary);
    border-radius: 7px;
    overflow: hidden;
    padding: 0px;
    position: absolute;
    left: 0;
    top: calc(100% - 3px);
    gap: 0px;
    height: auto !important;
    width: max-content;
    min-width: 280px;
    max-width: 400px;
    transition: 0.3s ease all;
  }
  .project_header .header_menu ul li ul.sub-menu li {
    background-color: var(--global--color-primary);
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2784313725);
  }
  .project_header .header_menu ul li ul.sub-menu li a {
    color: var(--global--color-black) !important;
    padding: 5px 15px;
    width: 100%;
    font-size: 16px !important;
    font-size: 1rem !important;
  }
}
@media (min-width: 1200px) and (min-width: 1600px) {
  .project_header .header_menu ul li ul.sub-menu li a {
    font-size: 18px !important;
    font-size: 1.125rem !important;
  }
}
@media (min-width: 1200px) {
  .project_header .header_menu ul li ul.sub-menu li:hover {
    background-color: var(--global--color-primary-alt) !important;
  }
  .project_header .header_menu ul li ul.sub-menu li:hover a {
    color: var(--global--color-white) !important;
  }
  .project_header .header_menu ul li:hover ul.sub-menu {
    visibility: visible;
    opacity: 1;
  }
}
@media (max-width: 1199px) {
  .project_header .header_menu {
    display: block !important;
    position: fixed;
    right: -100%;
    top: 0;
    height: 100dvh;
    overflow-y: auto;
    z-index: 4;
    width: 100%;
    background-color: var(--global--color-primary);
    max-width: 300px;
  }
  .project_header .header_menu ul {
    transition: 0.3s ease all;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
  }
  .project_header .header_menu ul li {
    background-color: var(--global--color-primary);
  }
  .project_header .header_menu ul li .sub-menu {
    height: 0;
    opacity: 0;
  }
  .project_header .header_menu ul li .sub-menu li a {
    backdrop-filter: brightness(1.2);
  }
  .project_header .header_menu ul li.opened-child .sub-menu, .project_header .header_menu ul li.opened .sub-menu {
    height: 100%;
    opacity: 1;
  }
  .project_header .header_menu ul li.menu-item-has-children {
    padding-right: 0px;
  }
  .project_header .header_menu ul li.menu-item-has-children a:not(.btn) {
    padding-right: 35px;
  }
  .project_header .header_menu ul li.menu-item-has-children .menu-icon {
    z-index: 1;
    top: 0px;
    right: 0px;
    width: 35px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .project_header .header_menu ul li.menu-item-has-children .menu-icon:after {
    rotate: 135deg;
  }
  .project_header .header_menu ul li.current-menu-parent i, .project_header .header_menu ul li.current-page-ancestor i, .project_header .header_menu ul li.current-menu-item i {
    --global--color-white: var(--global--color-primary);
  }
  .project_header .header_menu ul li.current-menu-parent > a, .project_header .header_menu ul li.current-page-ancestor > a, .project_header .header_menu ul li.current-menu-item > a {
    font-weight: var(--font-weight-500);
    background-color: var(--global--color-primary-alt);
    color: var(--global--color-white) !important;
    border-top: 1px solid rgba(83, 178, 236, 0.231372549);
  }
  .project_header .header_menu ul li:last-child {
    border: none;
  }
  .project_header .header_menu ul li a:not(.btn) {
    display: block;
    padding: 10px 20px;
    font-weight: 500;
    color: var(--global--color-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2784313725);
    font-size: 15px !important;
    font-size: 0.9375rem !important;
  }
}
.project_header .header_menu.mob-open {
  right: 0;
}
.project_header .header_menu.mob-open ul {
  right: 0;
}
.project_header .mob-menu {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0px;
  background-color: transparent;
}
.project_header .mob-menu span {
  width: 30px;
  height: 3px;
  background-color: var(--global--color-primary-alt);
  border-radius: 3px;
}
.project_header #mobMenuTriggerOverlay.mob-open {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.4705882353);
}
.project_header.slim {
  padding: 10px 0px !important;
  height: var(--site-header-slim-height);
  background-color: var(--global--color-white);
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.3294117647);
  --header-menu-item-gap: 30px;
}
@media (min-width: 1200px) {
  .project_header.slim {
    --header-menu-item-gap: 50px;
  }
}
.project_header.slim .header_menu ul li a:not(.btn) {
  font-size: 16px;
}
@media (min-width: 1600px) {
  .project_header.slim .header_menu ul li a:not(.btn) {
    font-size: 17px;
  }
}
@media (min-width: 1850px) {
  .project_header.slim .header_menu ul li a:not(.btn) {
    font-size: 20px;
  }
}

@media (min-width: 1200px) {
  .project_header {
    --mega-menu-position-top: 30px;
  }
  .project_header .header-menu-wrap {
    position: relative;
  }
  .project_header.slim {
    --mega-menu-position-top: 22px;
  }
  .project_header .mega-menu-head {
    display: flex;
    align-items: center;
    gap: 10px;
    position: unset !important;
  }
  .project_header .mega-menu-head > .menu-icon {
    top: 2px !important;
    position: relative !important;
  }
  .project_header .mega-menu-head .mega-menu-body {
    display: none !important;
    opacity: 0;
    transition: 0.3s ease opacity;
    transition-delay: 0.2s;
  }
  .project_header .mega-menu-head:hover .mega-menu-body {
    display: flex !important;
    opacity: 1;
  }
  .project_header .mega-menu-head .mega-menu-body {
    position: absolute;
    right: 0px;
    left: unset;
    top: calc(var(--mega-menu-position-top) * 2);
    display: flex;
    flex-direction: row;
    width: 1100px;
    background-color: var(--global--color-white);
    border-radius: 8px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  }
}
@media (min-width: 1200px) and (min-width: 1600px) {
  .project_header .mega-menu-head .mega-menu-body {
    width: 1200px;
  }
}
@media (min-width: 1200px) {
  .project_header .mega-menu-head .mega-menu-body:before {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: var(--mega-menu-position-top);
    transform: translateY(-100%);
    position: absolute;
  }
  .project_header .mega-menu-head .mega-menu-body > .sub-menu {
    opacity: 1 !important;
    visibility: visible !important;
    width: 50%;
    max-width: none;
    column-count: 2;
    display: block;
    background-color: var(--global--color-white);
    position: relative;
  }
  .project_header .mega-menu-head .mega-menu-body > .sub-menu:before {
    content: "";
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #fff;
    position: absolute;
    z-index: 1;
  }
  .project_header .mega-menu-head .mega-menu-body > .sub-menu li {
    background-color: transparent;
  }
  .project_header .mega-menu-head .mega-menu-body > .sub-menu li .icon_image {
    height: 35px;
    display: flex;
    max-width: 40px;
    min-width: 60px;
  }
}
@media (min-width: 1200px) and (min-width: 1600px) {
  .project_header .mega-menu-head .mega-menu-body > .sub-menu li .icon_image {
    height: 40px;
    max-width: 50px;
    min-width: 70px;
  }
}
@media (min-width: 1200px) {
  .project_header .mega-menu-head .mega-menu-body > .sub-menu li a {
    padding: 10px 15px;
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 14px !important;
    font-weight: 600;
  }
}
@media (min-width: 1200px) and (min-width: 1600px) {
  .project_header .mega-menu-head .mega-menu-body > .sub-menu li a {
    padding: 15px 15px;
    font-size: 16px !important;
  }
}
@media (min-width: 1200px) {
  .project_header .mega-menu-head .mega-menu-body > .sub-menu li a::before {
    content: "";
    bottom: 0px;
    left: auto;
    right: 0;
    width: calc(100% - 30px);
    height: 1px;
    background-color: var(--global--color-primary);
  }
  .project_header .mega-menu-head .mega-menu-body > .sub-menu li:hover, .project_header .mega-menu-head .mega-menu-body > .sub-menu li.current-menu-parent, .project_header .mega-menu-head .mega-menu-body > .sub-menu li.current-page-ancestor, .project_header .mega-menu-head .mega-menu-body > .sub-menu li.current-menu-item {
    --global--color-svg-dark: #fff;
    --global--color-svg-white: #6D1472;
    border-radius: 8px;
    background-color: var(--global--color-primary-alt);
  }
  .project_header .mega-menu-head .mega-menu-body > .sub-menu li:hover a, .project_header .mega-menu-head .mega-menu-body > .sub-menu li.current-menu-parent a, .project_header .mega-menu-head .mega-menu-body > .sub-menu li.current-page-ancestor a, .project_header .mega-menu-head .mega-menu-body > .sub-menu li.current-menu-item a {
    color: var(--global--color-white) !important;
  }
  .project_header .mega-menu-head .mega-menu-body > .sub-menu li:hover a::before, .project_header .mega-menu-head .mega-menu-body > .sub-menu li.current-menu-parent a::before, .project_header .mega-menu-head .mega-menu-body > .sub-menu li.current-page-ancestor a::before, .project_header .mega-menu-head .mega-menu-body > .sub-menu li.current-menu-item a::before {
    width: 0px;
  }
  .project_header .mega-menu-head .mega-menu-body > .sub-menu li:last-child a:before {
    content: none;
  }
  .project_header .mega-menu-head .menu-bg-section {
    width: 50%;
    padding: 20px;
  }
  .project_header .mega-menu-head .menu-bg-section .image-fold {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .project_header .mega-menu-head .menu-bg-section .image-item {
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background-size: cover;
  }
  .project_header .mega-menu-head .menu-bg-section .section-content {
    position: relative;
    max-width: 45%;
  }
}
@media (min-width: 1200px) and (min-width: 1600px) {
  .project_header .mega-menu-head .menu-bg-section .section-content {
    max-width: 40%;
  }
  .project_header .mega-menu-head .menu-bg-section .section-content .btn {
    height: 50px;
    padding: 10px 30px;
  }
}
@media (min-width: 1200px) {
  .project_header .mega-menu-head .menu-bg-section .section-content .title-sec {
    font-size: 20px;
    color: #fff;
    line-height: 130%;
    margin-bottom: 10px;
  }
  .project_header .mega-menu-head .menu-bg-section .section-content .title-sec span {
    display: block;
    font-size: 32px;
    line-height: 110%;
  }
}
@media (max-width: 1199px) {
  .project_header .mega-menu-head .mega-menu-body {
    background-color: var(--global--color-white);
  }
  .project_header .mega-menu-head .mega-menu-body > .sub-menu {
    background-color: var(--global--color-white);
  }
  .project_header .mega-menu-head .mega-menu-body > .sub-menu li .icon_image {
    height: 30px;
    display: flex;
    max-width: 50px;
    min-width: 50px;
  }
  .project_header .mega-menu-head .mega-menu-body > .sub-menu li a {
    padding: 10px 15px;
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 14px !important;
    font-weight: 600;
  }
  .project_header .mega-menu-head .mega-menu-body > .sub-menu li:hover, .project_header .mega-menu-head .mega-menu-body > .sub-menu li.current-menu-parent, .project_header .mega-menu-head .mega-menu-body > .sub-menu li.current-page-ancestor, .project_header .mega-menu-head .mega-menu-body > .sub-menu li.current-menu-item {
    --global--color-svg-dark: #fff;
    --global--color-svg-white: #6D1472;
  }
  .project_header .mega-menu-head .mega-menu-body > .sub-menu li:hover a::before, .project_header .mega-menu-head .mega-menu-body > .sub-menu li.current-menu-parent a::before, .project_header .mega-menu-head .mega-menu-body > .sub-menu li.current-page-ancestor a::before, .project_header .mega-menu-head .mega-menu-body > .sub-menu li.current-menu-item a::before {
    width: 0px;
  }
  .project_header .mega-menu-head .menu-bg-section {
    max-height: 0px;
    opacity: 0;
  }
  .project_header .mega-menu-head .menu-bg-section .image-fold {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .project_header .mega-menu-head .menu-bg-section .image-item {
    position: absolute;
    background-size: cover;
    width: 100%;
    height: 100%;
  }
  .project_header .mega-menu-head .menu-bg-section .image-item:after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #000;
    opacity: 50%;
  }
  .project_header .mega-menu-head .menu-bg-section .section-content {
    position: relative;
    padding: 20px;
  }
  .project_header .mega-menu-head .menu-bg-section .section-content .title-sec {
    font-size: 20px;
    color: #fff;
    line-height: 130%;
    margin-bottom: 10px;
  }
  .project_header .mega-menu-head .menu-bg-section .section-content .title-sec span {
    display: block;
    font-size: 32px;
    line-height: 110%;
  }
  .project_header .mega-menu-head.opened .menu-bg-section {
    max-height: 500px;
    opacity: 1;
  }
}
.site-map .icon_image {
  display: none;
}

.project_banner {
  position: relative;
  padding-top: var(--site-header-height);
}
.project_banner .banner_bg_image {
  position: absolute;
  z-index: 0;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-image: var(--global--bg-gradient);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  margin: 0;
}
@media (min-width: 768px) {
  .project_banner .main_title span {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .project_banner .description {
    padding-bottom: 15px;
  }
}
@media (min-width: 1200px) {
  .project_banner .btn_wrap {
    padding-top: 10px;
  }
}
@media (min-width: 1600px) {
  .project_banner .btn_wrap {
    padding-top: 20px;
  }
}
@media (min-width: 1850px) {
  .project_banner .btn_wrap {
    padding-top: 30px;
  }
}
.project_banner .item {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 350px;
  padding-bottom: 50px;
  padding-top: 50px;
}
@media (max-width: 767px) {
  .project_banner .item {
    background-color: #041f38;
    text-align: center;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .project_banner .item {
    min-height: 475px;
  }
}
@media (min-width: 1200px) {
  .project_banner .item {
    min-height: 600px;
  }
}
@media (min-width: 1350px) {
  .project_banner .item {
    min-height: 700px;
  }
}
@media (min-width: 1600px) {
  .project_banner .item {
    min-height: 800px;
  }
}
@media (min-width: 1850px) {
  .project_banner .item {
    min-height: 1000px;
  }
}
.project_banner .container {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 30px;
}
@media (max-width: 1199px) {
  .project_banner .container {
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .project_banner .container {
    padding: 30px;
    flex-direction: column;
    gap: 10px;
  }
}
.project_banner .banner_content_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .project_banner .banner_content_wrap {
    padding: 0 !important;
  }
}
@media (min-width: 768px) {
  .project_banner .banner_content_wrap {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .project_banner .banner_content_wrap {
    text-align: center;
  }
}
.project_banner .image-sec {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media (min-width: 768px) {
  .project_banner .image-sec {
    width: 50%;
  }
}
.project_banner .image-sec .image-sec-inner {
  position: relative;
  height: 525px;
  --width-banner-icon-plus: 100px;
  --width-banner-icon-love: 60px;
}
@media (max-width: 1849px) {
  .project_banner .image-sec .image-sec-inner {
    height: 430px;
    --width-banner-icon-plus: 70px;
    --width-banner-icon-love: 40px;
  }
}
@media (max-width: 1599px) {
  .project_banner .image-sec .image-sec-inner {
    height: 330px;
    --width-banner-icon-plus: 50px;
    --width-banner-icon-love: 30px;
  }
}
@media (max-width: 767px) {
  .project_banner .image-sec .image-sec-inner {
    height: 250px;
  }
}
.project_banner .image-sec #banner-icon-plus {
  position: absolute;
  left: 5%;
  bottom: 0%;
  max-width: var(--width-banner-icon-plus);
  max-height: var(--width-banner-icon-plus);
  pointer-events: none;
  display: flex;
  align-items: end;
  justify-content: flex-start;
}
@media (max-width: 1199px) {
  .project_banner .image-sec #banner-icon-plus {
    left: 0px;
    bottom: 0px;
    width: 60px;
  }
}
@media (max-width: 767px) {
  .project_banner .image-sec #banner-icon-plus {
    width: 50px;
    display: flex;
    align-items: flex-start;
  }
}
.project_banner .image-sec .banner-svg-fill {
  position: absolute;
  transform-origin: center;
  animation: svg-wave-4 9s ease-in-out infinite;
  z-index: 0;
  width: 90%;
  left: 0;
  top: 0;
  height: 100%;
}
.project_banner .image-sec .banner-svg-fill svg {
  width: 100%;
  height: 100%;
}
.project_banner .image-sec .btn-image {
  padding: 30px;
  height: 100%;
}
@media (max-width: 767px) {
  .project_banner .image-sec .btn-image {
    margin: auto;
    min-width: auto;
    padding: 10px;
  }
}
.project_banner .image-sec .banner-svg-stroke {
  position: absolute;
  transform-origin: center;
  animation: svg-wave-2 6s ease-in-out infinite;
  z-index: 2;
  width: 80%;
  right: 0;
  top: 0;
  height: 100%;
}
.project_banner .image-sec .banner-svg-stroke svg {
  width: 100%;
  height: 100%;
}
.project_banner .image-sec #banner-icon-love {
  position: absolute;
  right: 7%;
  top: 7%;
  max-width: var(--width-banner-icon-love);
  max-height: var(--width-banner-icon-love);
  pointer-events: none;
  display: flex;
  align-items: baseline;
  justify-content: end;
}
@media (max-width: 767px) {
  .project_banner .image-sec #banner-icon-love {
    right: 0px;
    top: 0px;
  }
}

.project_banner.inner_banner {
  --banner-padding: 30px;
  min-height: 350px;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .project_banner.inner_banner .banner_bg_image {
    z-index: 0;
  }
  .project_banner.inner_banner .banner_bg_image:before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #fff;
    opacity: 0.65;
    z-index: -1;
  }
}
@media (max-width: 767px) {
  .project_banner.inner_banner .banner_bg_image {
    background-position: top right;
  }
}
@media (min-width: 768px) {
  .project_banner.inner_banner {
    min-height: 400px;
  }
}
@media (min-width: 992px) {
  .project_banner.inner_banner {
    --banner-padding: 50px;
  }
}
@media (min-width: 1200px) {
  .project_banner.inner_banner {
    min-height: 520px;
  }
}
@media (min-width: 1600px) {
  .project_banner.inner_banner {
    min-height: 620px;
  }
}
.project_banner.inner_banner .banner_slide {
  width: 100%;
}
.project_banner.inner_banner .banner_content_wrap {
  width: 100%;
}
@media (min-width: 1600px) {
  .project_banner.inner_banner .banner_content_wrap {
    gap: 0px;
  }
}
@media (min-width: 1200px) {
  .project_banner.inner_banner .banner_content_wrap {
    width: 60%;
  }
}

.project_breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  font-family: var(--global--font-primary);
}
.project_breadcrumb ul li {
  position: relative;
  padding-right: 25px;
  font-weight: 400;
  color: var(--global--color-primary-alt) !important;
}
.project_breadcrumb ul li a {
  color: var(--global--color-black) !important;
}
.project_breadcrumb ul li a:hover {
  color: var(--global--color-primary-alt) !important;
}
.project_breadcrumb ul li:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 7px;
  width: 7px;
  height: 7px;
  background-color: transparent;
  border: 1px solid;
  border-color: var(--global--color-black) var(--global--color-black) transparent transparent;
  rotate: 45deg;
}
@media (min-width: 1600px) {
  .project_breadcrumb ul li:after {
    top: 12px;
  }
}
@media (max-width: 1199px) {
  .project_breadcrumb ul li:after {
    top: 10px;
  }
}
.project_breadcrumb ul li:last-child:after {
  content: none;
}

@keyframes svg-wave {
  0% {
    transform: skew(1deg, 2deg) translate(0, 0) scale(1);
  }
  20% {
    transform: skew(4deg, 3.5deg) translate(-4px, 3px) scale(1.01);
  }
  40% {
    transform: skew(1.5deg, 2deg) translate(3px, -2px) scale(0.995);
  }
  60% {
    transform: skew(0deg, 0deg) translate(0, 0) scale(1);
  }
  80% {
    transform: skew(3.5deg, 3.5deg) translate(-2px, 2px) scale(1.005);
  }
  100% {
    transform: skew(1deg, 2deg) translate(0, 0) scale(1);
  }
}
@keyframes svg-wave-1 {
  0% {
    transform: skew(1deg, 2deg) translate(0, 0) scale(1);
  }
  10% {
    transform: skew(2.5deg, 2.8deg) translate(-2px, 1px) scale(1.008);
  }
  20% {
    transform: skew(4deg, 3.5deg) translate(-4px, 3px) scale(1.01);
  }
  30% {
    transform: skew(2deg, 2.5deg) translate(2px, -1px) scale(1.003);
  }
  40% {
    transform: skew(1.5deg, 2deg) translate(3px, -2px) scale(0.995);
  }
  50% {
    transform: skew(0.8deg, 1.2deg) translate(1px, 1px) scale(1);
  }
  60% {
    transform: skew(0deg, 0deg) translate(0, 0) scale(1);
  }
  70% {
    transform: skew(2deg, 2.5deg) translate(-1px, 2px) scale(1.004);
  }
  80% {
    transform: skew(3.5deg, 3.5deg) translate(-2px, 2px) scale(1.005);
  }
  90% {
    transform: skew(1.8deg, 2.2deg) translate(1px, -1px) scale(1.002);
  }
  100% {
    transform: skew(1deg, 2deg) translate(0, 0) scale(1);
  }
}
@keyframes svg-wave-2 {
  0% {
    transform: skew(1deg, 2deg) translate(0, 0) scale(1);
  }
  10% {
    transform: skew(2.5deg, 2.8deg) translate(-2px, 1px) scale(1.008);
  }
  20% {
    transform: skew(4deg, 3.5deg) translate(-4px, 3px) scale(1.01);
  }
  30% {
    transform: skew(2deg, 2.5deg) translate(2px, -1px) scale(1.003);
  }
  40% {
    transform: skew(1.5deg, 2deg) translate(3px, -2px) scale(0.995);
  }
  50% {
    transform: skew(0.8deg, 1.2deg) translate(1px, 1px) scale(1);
  }
  60% {
    transform: skew(0deg, 0deg) translate(0, 0) scale(1);
  }
  70% {
    transform: skew(2deg, 2.5deg) translate(-1px, 2px) scale(1.004);
  }
  80% {
    transform: skew(3.5deg, 3.5deg) translate(-2px, 2px) scale(1.005);
  }
  90% {
    transform: skew(1.8deg, 2.2deg) translate(1px, -1px) scale(1.002);
  }
  100% {
    transform: skew(1deg, 2deg) translate(0, 0) scale(1);
  }
}
@keyframes svg-wave-3 {
  0% {
    transform: skew(0.5deg, 1deg) translate(0, 0) scale(1);
  }
  15% {
    transform: skew(1.5deg, 2deg) translate(-1px, 2px) scale(1.006);
  }
  30% {
    transform: skew(2.5deg, 2deg) translate(2px, -1px) scale(1.01);
  }
  45% {
    transform: skew(1deg, 1.5deg) translate(1px, 1px) scale(1.004);
  }
  60% {
    transform: skew(0deg, 0deg) translate(0, 0) scale(1);
  }
  75% {
    transform: skew(2deg, 2.5deg) translate(-2px, 1px) scale(1.008);
  }
  90% {
    transform: skew(1deg, 1.5deg) translate(1px, -1px) scale(1.003);
  }
  100% {
    transform: skew(0.5deg, 1deg) translate(0, 0) scale(1);
  }
}
@keyframes svg-wave-4 {
  0% {
    transform: skew(2deg, 3deg) translate(0, 0) scale(1);
  }
  10% {
    transform: skew(4.5deg, 3deg) translate(-3px, 2px) scale(1.012);
  }
  25% {
    transform: skew(3deg, 4.5deg) translate(3px, -2px) scale(0.998);
  }
  40% {
    transform: skew(1deg, 2deg) translate(1px, 1px) scale(1.006);
  }
  55% {
    transform: skew(5deg, 3deg) translate(-2px, 3px) scale(1.01);
  }
  70% {
    transform: skew(2deg, 1deg) translate(2px, -1px) scale(0.995);
  }
  85% {
    transform: skew(4deg, 4deg) translate(-1px, 2px) scale(1.008);
  }
  100% {
    transform: skew(2deg, 3deg) translate(0, 0) scale(1);
  }
}
.banner_cta_section {
  --cta-btn-padding: 20px 40px;
  --cta-btn-icon: 65px;
  --cta-btn-font: 32px;
}
@media (max-width: 1849px) {
  .banner_cta_section {
    --cta-btn-padding: 15px 30px;
    --cta-btn-icon: 50px;
    --cta-btn-font: 26px;
  }
}
@media (max-width: 1599px) {
  .banner_cta_section {
    --cta-btn-padding: 10px 25px;
    --cta-btn-icon: 40px;
    --cta-btn-font: 20px;
  }
}
@media (max-width: 1199px) {
  .banner_cta_section {
    --cta-btn-icon: 35px;
    --cta-btn-font: 22px;
  }
}
.banner_cta_section .container {
  display: flex;
  gap: 20px;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .banner_cta_section .container {
    gap: 15px;
    transform: none;
    flex-direction: column;
    padding: 30px 0px;
  }
}
.banner_cta_section .cta-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: var(--cta-btn-padding);
  border-radius: 8px;
  font-size: var(--cta-btn-font);
  cursor: pointer;
}
.banner_cta_section .cta-item .icon {
  display: flex;
  width: var(--cta-btn-icon);
}
.banner_cta_section .cta-item.light {
  background-color: var(--global--color-primary);
  color: var(--global--color-black);
}
.banner_cta_section .cta-item.light:hover {
  background-color: var(--global--color-secondary-alt);
}
.banner_cta_section .cta-item.dark {
  background-color: var(--global--color-black);
  color: var(--global--color-white);
}
.banner_cta_section .cta-item.dark:hover {
  background-color: var(--global--color-primary-alt);
}

/* ==============================
   Services Section
================================ */
.service_section {
  /* CSS Variables (section scoped) */
  --service-primary: #b16ad8;
  --service-accent: #d28ad6;
  --service-radius: 12px;
  --service-title-size: 28px;
  --service-arrow-size: 12px;
  --service-icon-size: 60px;
  /* ------------------------------
     Left Tabs
  -------------------------------- */
  /* ------------------------------
     Right Content Panel
  -------------------------------- */
  /* ------------------------------
     Responsive
  -------------------------------- */
}
@media (max-width: 1849px) {
  .service_section {
    --service-title-size: 24px;
    --service-icon-size: 50px;
  }
}
@media (max-width: 1599px) {
  .service_section {
    --service-title-size: 20px;
    --service-icon-size: 45px;
  }
}
@media (max-width: 1199px) {
  .service_section {
    --service-title-size: 18px;
    --service-icon-size: 40px;
  }
}
.service_section .service_tabs {
  display: flex;
  gap: 50px;
}
.service_section .service_tab_list {
  width: 40% !important;
  list-style: none;
  padding: 0;
  margin: 0;
}
.service_section .resp-arrow {
  order: 2;
  margin-left: auto;
  margin-right: 10px;
  align-self: baseline;
  top: 13px;
  position: relative;
}
@media (min-width: 992px) {
  .service_section .resp-arrow {
    display: none;
  }
}
.service_section .resp-tab-item,
.service_section .resp-accordion {
  display: flex !important;
  align-items: center;
  gap: 20px;
  padding: 15px 15px 15px 50px;
  background: var(--global--color-white) !important;
  border-radius: 8px;
  margin-bottom: 14px;
  cursor: pointer;
  box-shadow: var(--global--box-shadow);
  transition: all 0.3s ease;
}
@media (max-width: 1599px) {
  .service_section .resp-tab-item,
  .service_section .resp-accordion {
    padding: 15px 15px 15px 30px;
  }
}
@media (max-width: 1199px) {
  .service_section .resp-tab-item,
  .service_section .resp-accordion {
    padding: 10px 10px 10px 20px;
  }
}
@media (max-width: 991px) {
  .service_section .resp-tab-item,
  .service_section .resp-accordion {
    margin-bottom: 5px;
  }
  .service_section .resp-tab-item::before, .service_section .resp-tab-item:after,
  .service_section .resp-accordion::before,
  .service_section .resp-accordion:after {
    display: none;
  }
}
@media (max-width: 991px) {
  .service_section .resp-tab-item,
  .service_section .resp-accordion {
    background-color: var(--global--color-primary) !important;
  }
}
.service_section .resp-tab-item:hover,
.service_section .resp-accordion:hover {
  transform: translateY(-2px);
  background-color: var(--global--color-primary) !important;
}
.service_section .resp-tab-item.resp-tab-active,
.service_section .resp-accordion.resp-tab-active {
  border: 1px solid #6D1472 !important;
  position: relative;
  background-color: var(--global--color-secondary) !important;
}
@media (max-width: 991px) {
  .service_section .resp-tab-item.resp-tab-active,
  .service_section .resp-accordion.resp-tab-active {
    background-color: var(--global--color-primary-alt) !important;
    color: #fff;
    --global--color-svg-dark: #fff;
  }
}
.service_section .resp-tab-item.resp-tab-active::after,
.service_section .resp-accordion.resp-tab-active::after {
  content: "";
  position: absolute;
  right: calc(-1 * var(--service-arrow-size));
  top: 50%;
  transform: translateY(-50%);
  border-top: var(--service-arrow-size) solid transparent;
  border-bottom: var(--service-arrow-size) solid transparent;
  border-left: var(--service-arrow-size) solid var(--global--color-primary-alt);
}
.service_section .resp-tab-item.resp-tab-active::before,
.service_section .resp-accordion.resp-tab-active::before {
  content: "";
  position: absolute;
  right: calc(-1 * var(--service-arrow-size) + 1px);
  top: 50%;
  transform: translateY(-50%);
  border-top: var(--service-arrow-size) solid transparent;
  border-bottom: var(--service-arrow-size) solid transparent;
  border-left: var(--service-arrow-size) solid var(--global--color-secondary);
  z-index: 1;
}
.service_section .resp-tab-item .service_tab_icon,
.service_section .resp-accordion .service_tab_icon {
  display: flex;
  color: var(--service-primary);
  flex-shrink: 0;
  height: var(--service-icon-size);
  width: var(--service-icon-size);
}
.service_section .resp-tab-item .service_tab_icon svg,
.service_section .resp-accordion .service_tab_icon svg {
  height: 100%;
  width: 100%;
}
.service_section .resp-tab-item .service_tab_title,
.service_section .resp-accordion .service_tab_title {
  font-size: var(--service-title-size);
  font-weight: 600;
}
@media (min-width: 992px) {
  .service_section .resp-accordion {
    display: none !important;
  }
}
.service_section .service_tab_content {
  width: 60% !important;
}
@media (max-width: 991px) {
  .service_section .service_tab_content {
    width: 100% !important;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
.service_section .service_tab_content .service_panel {
  height: 100%;
}
.service_section .service_tab_content .service_panel_inner {
  background: var(--global--color-white);
  padding: 50px;
  border-radius: 8px;
  box-shadow: var(--global--box-shadow);
  height: 100%;
}
@media (max-width: 767px) {
  .service_section .service_tab_content .service_panel_inner {
    padding: 20px;
  }
}
.service_section .service_tab_content .service_image {
  margin-bottom: 24px;
}
.service_section .service_tab_content .service_image img {
  width: 100%;
  display: block;
  border-radius: var(--service-radius);
}
.service_section .service_tab_content .service_content .service_title {
  font-size: 26px;
  margin-bottom: 12px;
  color: #111;
}
.service_section .service_tab_content .service_content .service_text {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .service_section .service_tabs {
    flex-direction: column;
  }
  .service_section .service_tab_list,
  .service_section .service_tab_content {
    width: 100%;
  }
  .service_section .service_tab_list li.resp-tab-active::after {
    display: none;
  }
}

/* ==============================
   Support Roles Section
================================ */
.support_section {
  --support-primary: #8e44ad;
  --support-bg: #ffffff;
  --support-radius: 8px;
  position: relative;
  /* ------------------------------
     Main Image
  -------------------------------- */
  /* ------------------------------
     Floating Cards
  -------------------------------- */
  /* ------------------------------
     Responsive
  -------------------------------- */
}
.support_section .support_media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: auto;
}
@media (max-width: 767px) {
  .support_section .support_media {
    margin: 0;
  }
}
.support_section .support_image {
  position: relative;
  border-radius: var(--support-radius);
  box-shadow: var(--support-shadow);
  z-index: 1;
}
@media (max-width: 767px) {
  .support_section .support_image {
    display: none;
  }
}
.support_section .support_image img {
  display: block;
  width: 100%;
  border-radius: var(--support-radius);
}
.support_section .support_image:before {
  content: "";
  position: absolute;
  background-color: #BAACDD;
  width: 50%;
  height: 50%;
  bottom: -10px;
  left: -10px;
  border-radius: 8px;
  z-index: 0;
}
.support_section .support_image:after {
  content: "";
  position: absolute;
  background-color: #BAACDD;
  width: 50%;
  height: 50%;
  top: -10px;
  right: -10px;
  border-radius: 8px;
  z-index: 0;
}
.support_section .support_card {
  position: absolute;
  background: var(--support-bg);
  border-radius: var(--support-radius);
  padding: 30px 35px;
  text-align: center;
  box-shadow: var(--support-shadow);
  max-width: 205px;
  border: 1px solid #6D1472;
  z-index: 2;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s all;
}
@media (max-width: 1849px) {
  .support_section .support_card {
    padding: 20px 30px;
  }
}
@media (max-width: 1599px) {
  .support_section .support_card {
    max-width: 180px;
  }
}
@media (max-width: 767px) {
  .support_section .support_card {
    max-width: 160px;
    padding: 20px 25px;
  }
}
.support_section .support_card:hover {
  background: var(--global--color-secondary);
}
.support_section .support_card .support_card_icon {
  width: 70px;
  margin: auto;
  color: var(--support-primary);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1599px) {
  .support_section .support_card .support_card_icon {
    width: 50px;
  }
}
@media (max-width: 1599px) {
  .support_section .support_card .support_card_icon {
    width: 45px;
  }
}
.support_section .support_card .support_card_title {
  font-weight: 400;
  line-height: 1.4;
}
.support_section .support_card-left {
  top: 0px;
  left: 0px;
}
@media (min-width: 768px) {
  .support_section .support_card-left {
    transform: translate(-30%, -30%);
  }
}
.support_section .support_card-right {
  bottom: 0px;
  right: 0px;
}
@media (min-width: 768px) {
  .support_section .support_card-right {
    transform: translate(35%, 25%);
  }
}
@media (max-width: 767px) {
  .support_section .support_card-left,
  .support_section .support_card-right {
    position: static;
    margin: 0;
  }
  .support_section .support_media {
    gap: 20px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
  }
}

/* ==============================
   Location Tabs Section
================================ */
.location_section {
  --location-primary: #6c4fbf;
  --location-bg: #c5b8e6;
  --location-radius: 18px;
  position: relative;
  /* ------------------------------
     Tab Content
  -------------------------------- */
  /* ------------------------------
     Tab Navigation
  -------------------------------- */
  /* ------------------------------
     Responsive
  -------------------------------- */
}
@media (max-width: 991px) {
  .location_section {
    --location-radius: 8px;
  }
}
.location_section:before {
  content: "";
  position: absolute;
  background-color: #BAACDD;
  width: 21%;
  height: 25%;
  top: -15px;
  left: -15px;
  border-radius: 8px;
  z-index: -1;
}
.location_section:after {
  content: "";
  position: absolute;
  background-color: transparent;
  border: 1px solid #6D1472;
  width: 26%;
  height: 29%;
  bottom: -15px;
  right: -15px;
  border-radius: 8px;
  z-index: -1;
}
@media (max-width: 991px) {
  .location_section:before, .location_section:after {
    display: none;
  }
}
.location_section .location_tabs {
  position: relative;
  border-radius: var(--location-radius);
  overflow: hidden;
}
.location_section .location_tab_content {
  position: relative;
  overflow: hidden;
}
.location_section .location_media {
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 991px) {
  .location_section .location_media {
    max-height: 400px;
  }
}
.location_section .location_media img {
  width: 100%;
  display: block;
}
@media (max-width: 991px) {
  .location_section .location_media img {
    position: absolute;
    object-fit: cover;
    width: 100% !important;
    height: 100% !important;
  }
}
.location_section .location_overlay {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  bottom: 0px;
  color: #fff;
  padding: 20px 30px 10px;
  background: linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, 0));
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 1199px) {
  .location_section .location_overlay {
    background: linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, 0.48));
  }
}
.location_section .location_overlay p {
  line-height: 1.5;
}
@media (max-width: 767px) {
  .location_section .location_overlay {
    padding: 20px;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.91), rgba(0, 0, 0, 0.43));
    width: 100%;
    height: 100%;
    position: relative;
  }
}
.location_section .location_tab_list {
  display: flex;
  justify-content: space-evenly;
  background: var(--location-bg);
  padding: 20px 24px;
  gap: 24px;
  margin: 0;
  list-style: none;
}
.location_section .location_tab_list li {
  cursor: pointer;
  padding-bottom: 6px;
  position: relative;
  background-color: transparent !important;
}
@media (min-width: 992px) {
  .location_section .location_tab_list li {
    font-size: 13px;
  }
}
@media (min-width: 1200px) {
  .location_section .location_tab_list li {
    font-size: 17px;
  }
}
@media (min-width: 1600px) {
  .location_section .location_tab_list li {
    font-size: 24px;
  }
}
@media (min-width: 1850px) {
  .location_section .location_tab_list li {
    font-size: 28px;
  }
}
.location_section .location_tab_list li::before {
  content: "";
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 1px;
  height: 100%;
  background: #000;
}
.location_section .location_tab_list li:last-child::before {
  display: none;
}
.location_section .location_tab_list li.resp-tab-active {
  font-weight: 600;
}
.location_section .location_tab_list li.resp-tab-active::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background: #000;
  border-radius: 2px;
}
@media (max-width: 991px) {
  .location_section .location_tab_list {
    flex-wrap: wrap;
    gap: 16px;
  }
  .location_section .location_tab_list {
    display: none;
  }
  .location_section .resp-accordion {
    background-color: #c5b8e6 !important;
    padding: 10px 20px;
    font-size: 18px !important;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3803921569) !important;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}

.border-icon-boxes {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0px -20px;
}
@media (max-width: 1199px) {
  .border-icon-boxes {
    margin: 0px;
    gap: 15px;
  }
  .border-icon-boxes .elementor-widget-icon-box {
    width: calc(50% - 8px) !important;
    background-color: var(--global--color-primary);
    border-radius: 8px;
  }
}
.border-icon-boxes .elementor-widget-icon-box {
  width: 50%;
  position: relative;
  padding: 20px;
}
@media (min-width: 1850px) {
  .border-icon-boxes .elementor-widget-icon-box {
    padding: 30px 20px;
  }
}
.border-icon-boxes .elementor-widget-icon-box::before {
  content: "";
  position: absolute;
  left: 5%;
  bottom: 0;
  width: 90%;
  height: 1px;
  background-color: var(--global--color-primary);
  opacity: 50%;
}
.border-icon-boxes .elementor-widget-icon-box::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 15%;
  width: 1px;
  height: 70%;
  background-color: var(--global--color-primary);
  opacity: 50%;
}
.border-icon-boxes .elementor-widget-icon-box:nth-child(even)::after {
  content: none;
}
.border-icon-boxes .elementor-widget-icon-box:nth-last-child(-n+2)::before {
  content: none;
}
@media (max-width: 767px) {
  .border-icon-boxes .elementor-widget-icon-box {
    width: 100% !important;
  }
}
@media (min-width: 1850px) {
  .border-icon-boxes .elementor-icon {
    font-size: 56px;
    padding-right: 10px;
  }
}
.border-icon-boxes .elementor-icon-box-title {
  font-size: 18px  !important;
  color: #000 !important;
}
@media (min-width: 768px) {
  .border-icon-boxes .elementor-icon-box-title {
    font-size: 19px  !important;
  }
}
@media (min-width: 1200px) {
  .border-icon-boxes .elementor-icon-box-title {
    font-size: 20px  !important;
  }
}
@media (min-width: 1600px) {
  .border-icon-boxes .elementor-icon-box-title {
    font-size: 21px  !important;
  }
}
@media (min-width: 1850px) {
  .border-icon-boxes .elementor-icon-box-title {
    font-size: 24px  !important;
  }
}
@media (min-width: 1200px) {
  .border-icon-boxes .elementor-icon-box-title span {
    display: block;
  }
}

.counter-sec-wrap > .e-con-inner {
  display: flex;
  justify-content: space-evenly;
  gap: 20px;
}
@media (max-width: 767px) {
  .counter-sec-wrap > .e-con-inner {
    gap: 20px 0;
  }
}
@media (max-width: 574px) {
  .counter-sec-wrap > .e-con-inner {
    flex-direction: column !important;
  }
}
@media (max-width: 767px) {
  .counter-sec-wrap .elementor-widget-counter {
    width: 50%;
  }
}
@media (max-width: 574px) {
  .counter-sec-wrap .elementor-widget-counter {
    width: 100%;
  }
}
.counter-sec-wrap .elementor-widget-divider {
  width: 1px;
  max-width: 1px !important;
  min-height: 100%;
  display: flex;
  background: #b6aad5;
}
.counter-sec-wrap .elementor-widget-divider .elementor-divider {
  display: none;
}
@media (max-width: 767px) {
  .counter-sec-wrap .elementor-widget-divider {
    display: none;
  }
}
.counter-sec-wrap .elementor-counter-number-wrapper {
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  color: var(--global--color-primary-alt);
}
@media (min-width: 992px) {
  .counter-sec-wrap .elementor-counter-number-wrapper {
    font-size: 50px;
  }
}
@media (min-width: 1200px) {
  .counter-sec-wrap .elementor-counter-number-wrapper {
    font-size: 57px;
  }
}
@media (min-width: 1600px) {
  .counter-sec-wrap .elementor-counter-number-wrapper {
    font-size: 65px;
  }
}
@media (min-width: 1850px) {
  .counter-sec-wrap .elementor-counter-number-wrapper {
    font-size: 74px;
  }
}
.counter-sec-wrap .elementor-counter-title {
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  color: var(--global--color-black);
  font-family: var(--global--font-secondary);
}
@media (min-width: 992px) {
  .counter-sec-wrap .elementor-counter-title {
    font-size: 17px;
  }
}
@media (min-width: 1200px) {
  .counter-sec-wrap .elementor-counter-title {
    font-size: 19px;
  }
}
@media (min-width: 1600px) {
  .counter-sec-wrap .elementor-counter-title {
    font-size: 21px;
  }
}
@media (min-width: 1850px) {
  .counter-sec-wrap .elementor-counter-title {
    font-size: 23px;
  }
}

/* ==============================
   Testimonial Slider Section
================================ */
.testimonial_section {
  --testimonial-primary: #8e44ad;
  --testimonial-muted: #f4f4f6;
  --testimonial-radius: 8px;
  --testimonial-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  --testimonial-small-slide: 650px;
  /* Slides */
  /* Content */
  /* ------------------------------
     Avatar
  -------------------------------- */
  /* ------------------------------
     Arrows
  -------------------------------- */
  /* ------------------------------
     Responsive
  -------------------------------- */
}
@media (min-width: 992px) {
  .testimonial_section {
    padding: 30px 0px 20px;
  }
}
@media (max-width: 1599px) {
  .testimonial_section {
    --testimonial-small-slide: 500px;
  }
}
.testimonial_section .testimonial_slider {
  position: relative;
  overflow: hidden;
}
.testimonial_section .slick-list {
  overflow: visible;
  padding: 20px;
}
@media (max-width: 1199px) {
  .testimonial_section .slick-list {
    padding: 0;
  }
}
.testimonial_section .testimonial_card {
  background-color: #f5f5f5;
  border-radius: var(--testimonial-radius);
  border: 1px solid #BAACDD;
  padding: 40px 50px 60px;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  font-size: 18px;
}
.testimonial_section .slick-slide {
  padding: 15px;
  --testi-text-size: 16px;
  --testi-subtext-size: 15px;
  --testi-abbr-size: 35px;
  --testi-abbr-width: 70px;
  --testi-padding-inner: 30px 40px 60px;
}
@media (min-width: 1200px) {
  .testimonial_section .slick-slide,
  .testimonial_section .slick-active {
    width: calc((var(--container-width) - var(--testimonial-small-slide)) / 2) !important;
    --testi-text-size: 18px;
    --testi-subtext-size: 18px;
    --testi-abbr-size: 45px;
    --testi-abbr-width: 90px;
    --testi-padding-inner: 40px 50px 80px;
    padding: 50px 15px;
  }
}
@media (min-width: 1200px) and (max-width: 1599px) {
  .testimonial_section .slick-slide,
  .testimonial_section .slick-active {
    --testi-text-size: 16px;
    --testi-subtext-size: 15px;
    --testi-abbr-size: 35px;
    --testi-abbr-width: 70px;
    --testi-padding-inner: 30px 40px 60px;
  }
}
@media (min-width: 1200px) {
  .testimonial_section .slick-slide .testimonial_card,
  .testimonial_section .slick-active .testimonial_card {
    padding: var(--testi-padding-inner);
  }
  .testimonial_section .slick-current,
  .testimonial_section .pro_selected {
    width: var(--testimonial-small-slide) !important;
    --testi-text-size: 24px;
    --testi-subtext-size: 20px;
    --testi-abbr-size: 60px;
    --testi-abbr-width: 120px;
    --testi-padding-inner: 80px 50px 140px;
    padding: 0 15px;
  }
}
@media (min-width: 1200px) and (max-width: 1599px) {
  .testimonial_section .slick-current,
  .testimonial_section .pro_selected {
    --testi-text-size: 20px;
    --testi-subtext-size: 18px;
    --testi-abbr-size: 45px;
    --testi-abbr-width: 90px;
    --testi-padding-inner: 40px 50px 100px;
  }
}
@media (min-width: 1200px) {
  .testimonial_section .slick-current .testimonial_card,
  .testimonial_section .pro_selected .testimonial_card {
    background-color: #ffffff;
    box-shadow: var(--global--box-shadow-alt);
    padding: var(--testi-padding-inner);
    font-size: 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1199px) {
  .testimonial_section .slick-current .testimonial_card,
  .testimonial_section .pro_selected .testimonial_card {
    box-shadow: none;
  }
}
.testimonial_section .testimonial_text {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: var(--testi-text-size);
}
.testimonial_section .testimonial_name {
  font-weight: 600;
  margin-bottom: 4px;
  font-size: var(--testi-subtext-size);
}
.testimonial_section .testimonial_role {
  color: #777;
  font-size: var(--testi-subtext-size);
}
.testimonial_section .testimonial_avatar {
  position: absolute;
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--testi-abbr-size);
  width: var(--testi-abbr-width);
  height: var(--testi-abbr-width);
  padding: 15px;
  border-radius: 50%;
  color: #fff;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial_section .slick-slide:nth-child(3n+1) .testimonial_avatar {
  background-color: #d28ad6;
}
.testimonial_section .slick-slide:nth-child(3n+2) .testimonial_avatar {
  background-color: #000;
}
.testimonial_section .slick-slide:nth-child(3n) .testimonial_avatar {
  background-color: #6c1c7d;
}
.testimonial_section .slick_prev {
  left: calc(-20px + (var(--container-width) - var(--testimonial-small-slide)) / 2) !important;
}
@media (max-width: 1199px) {
  .testimonial_section .slick_prev {
    left: 10px !important;
  }
}
@media (max-width: 991px) {
  .testimonial_section .slick_prev {
    left: 5px !important;
  }
}
.testimonial_section .slick_next {
  right: calc(10px + (var(--container-width) - var(--testimonial-small-slide)) / 2) !important;
}
@media (max-width: 1199px) {
  .testimonial_section .slick_next {
    right: 40px !important;
  }
}
@media (max-width: 991px) {
  .testimonial_section .slick_next {
    right: 15px !important;
  }
}
.testimonial_section .slick_nav:not(:hover):after {
  border: 1px solid var(--global--color-secondary-alt) !important;
}
@media (max-width: 991px) {
  .testimonial_section .slick-prev {
    left: 10px;
  }
  .testimonial_section .slick-next {
    right: 10px;
  }
}

/* ==============================
   FAQ Section
================================ */
.faq_section {
  --faq-border: #d6d6db;
  --faq-text: #000;
  --faq-muted: #666;
  --faq-icon: #333;
}
.faq_section .faq_item {
  border-bottom: 1px solid var(--faq-border);
  transition: background 0.3s ease;
}
.faq_section .faq_item.is-active {
  border-bottom: 1px solid var(--faq-text);
}
.faq_section .faq_item.is-active .faq_answer {
  padding-bottom: 24px;
  max-height: 1000px;
}
.faq_section .faq_item.is-active .faq_icon {
  transform: rotate(45deg);
}
.faq_section .faq_question {
  width: 100%;
  background: none;
  border: 0;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
  text-align: left;
}
@media (max-width: 1599px) {
  .faq_section .faq_question {
    padding: 20px 0px;
  }
}
@media (max-width: 1199px) {
  .faq_section .faq_question {
    padding: 15px 0px;
  }
}
.faq_section .faq_title {
  font-size: 18px;
  font-weight: 500;
  color: var(--faq-text);
  text-transform: capitalize;
}
.faq_section .faq_icon {
  min-width: 12px;
  height: 12px;
  border-right: 2px solid var(--faq-icon);
  border-bottom: 2px solid var(--faq-icon);
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
  margin-left: 10px;
  position: relative;
  top: 10px;
}
@media (min-width: 1600px) {
  .faq_section .faq_icon {
    top: 15px;
  }
}
@media (max-width: 991px) {
  .faq_section .faq_icon {
    min-width: 10px;
    height: 10px;
    position: relative;
    top: 8px;
  }
}
.faq_section .faq_answer {
  display: grid;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--faq-muted);
}
.faq_section .faq_answer p {
  overflow: hidden;
  line-height: 1.6;
}
@media (min-width: 1200px) {
  .faq_section .faq_answer p {
    padding-right: 40px;
  }
}

/* ==============================
   Articles Section
================================ */
.article_section {
  --article-primary: #7a1fa2;
  --article-border: #e4d9f3;
  --article-bg: #ffffff;
  --article-items: 3;
  --article-gap: 30px;
  --article-radius: 14px;
  --article-anchor-width: 45px;
  --article-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  padding: 40px 0 0 0;
  background: #fff;
  /* ------------------------------
     Card
  -------------------------------- */
  /* ------------------------------
     Media
  -------------------------------- */
  /* ------------------------------
     Content
  -------------------------------- */
  /* ------------------------------
     Meta
  -------------------------------- */
  /* ------------------------------
     Responsive
  -------------------------------- */
}
@media (max-width: 1599px) {
  .article_section {
    --article-anchor-width: 35px;
  }
}
@media (max-width: 991px) {
  .article_section {
    --article-gap: 0px;
    padding: 0px;
  }
}
.article_section .article_grid {
  display: flex;
  flex-direction: row;
  gap: var(--article-gap);
}
@media (max-width: 991px) {
  .article_section .article_grid {
    flex-direction: column;
  }
}
.article_section .article_item {
  width: calc(100% / var(--article-items) - var(--article-gap) / 2);
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.article_section .article_item:hover {
  transform: translateY(-6px);
}
@media (min-width: 1200px) {
  .article_section .article_item:hover .article_content {
    box-shadow: var(--article-shadow);
  }
}
@media (max-width: 991px) {
  .article_section .article_item {
    width: 100%;
  }
}
.article_section .article_media {
  position: relative;
  border-radius: var(--article-radius);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 134/95;
}
@media (max-width: 991px) {
  .article_section .article_media {
    aspect-ratio: 12/5;
  }
}
.article_section .article_media img {
  width: 100%;
  display: block;
  min-width: 100% !important;
  min-height: 100% !important;
  object-fit: cover;
  object-position: bottom center;
}
@media (max-width: 991px) {
  .article_section .article_media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: auto;
  }
}
.article_section .article_content {
  padding: var(--article-anchor-width) 22px 24px 22px;
  text-align: center;
  width: 80%;
  margin: 0px auto;
  position: relative;
  top: -50px;
  z-index: 2;
  background: var(--article-bg);
  border-radius: var(--article-radius);
  border: 1px solid var(--global--color-primary);
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1599px) {
  .article_section .article_content {
    width: 90%;
  }
}
.article_section .article_action {
  position: absolute;
  top: 10px;
  right: 10px;
  width: var(--article-anchor-width);
}
.article_section .article_action:hover .dark-fill {
  fill: var(--global--color-black);
}
.article_section .article_action:hover .white-fill {
  animation: anime-fade-in 2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.article_section .article_tag {
  display: inline-block;
  color: var(--article-primary);
  font-size: 13px;
}
.article_section .article_tag:hover {
  color: var(--global--color-black);
  animation: anime-bounce 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.article_section .article_title {
  font-size: 20px;
}
.article_section .article_text {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 15px;
}
.article_section .article_meta {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding-top: 14px;
  border-top: 1px solid var(--global--color-primary);
  font-size: 13px;
  flex-wrap: wrap;
}
@media (min-width: 992px) and (max-width: 1599px) {
  .article_section .article_meta {
    flex-direction: column;
  }
}
.article_section .article_meta .meta_item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
}
@media (min-width: 768px) {
  .article_section .article_meta .meta_item {
    border-right: 1px solid var(--global--color-primary);
    padding-right: 15px;
  }
  .article_section .article_meta .meta_item:last-child {
    border-right: none;
    padding-right: 0;
  }
}
@media (min-width: 992px) and (max-width: 1599px) {
  .article_section .article_meta .meta_item {
    border-right: none;
    padding-right: 0;
  }
}
@media (max-width: 1199px) {
  .article_section .article_meta .meta_item svg {
    width: 20px;
  }
}
.article_section .article_meta a:hover {
  color: var(--article-primary);
  animation: anime-bounce 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.article_section .article_meta a:hover .black-fill {
  fill: var(--article-primary);
}
@media (max-width: 991px) {
  .article_section .article_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .article_section .article_grid {
    grid-template-columns: 1fr;
  }
}

.dark-fill {
  fill: var(--global--color-svg-dark);
}

.dark-stroke {
  stroke: var(--global--color-svg-dark);
}

.light-fill {
  fill: var(--global--color-svg-light);
}

.light-stroke {
  stroke: var(--global--color-svg-light);
}

.white-fill {
  fill: var(--global--color-svg-white);
}

.white-stroke {
  stroke: var(--global--color-svg-white);
}

.black-fill {
  fill: var(--global--color-svg-black);
}

.black-stroke {
  stroke: var(--global--color-svg-black);
}

.error-wrapper .elementor-widget-image img {
  width: 100%;
  height: auto !important;
  max-width: 515px !important;
  margin: 0 auto 20px;
  display: block;
}
.error-wrapper .elementor-widget-heading .elementor-heading-title {
  font-size: 67px;
  margin-top: 20px;
}
@media (max-width: 1200px) {
  .error-wrapper .elementor-widget-heading .elementor-heading-title {
    font-size: 50px;
  }
}
@media (max-width: 1024px) {
  .error-wrapper .elementor-widget-heading .elementor-heading-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .error-wrapper .elementor-widget-heading .elementor-heading-title {
    font-size: 32px;
  }
}
.error-wrapper p {
  margin-bottom: 10px !important;
}

.thankyou-wrap .elementor-widget-image img {
  width: 100%;
  height: auto !important;
  max-width: 515px !important;
  margin: 0 auto 20px;
  display: block;
}
.thankyou-wrap .elementor-widget-heading .elementor-heading-title {
  font-size: 67px;
  margin-top: 20px;
}
@media (max-width: 1200px) {
  .thankyou-wrap .elementor-widget-heading .elementor-heading-title {
    font-size: 50px;
  }
}
@media (max-width: 1024px) {
  .thankyou-wrap .elementor-widget-heading .elementor-heading-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .thankyou-wrap .elementor-widget-heading .elementor-heading-title {
    font-size: 32px;
  }
}

.bg-sec_loc {
  background-color: var(--global--custom-bg-alt);
  position: relative;
  z-index: 0;
  --before-after-size: 423px;
}
@media (max-width: 1199px) {
  .bg-sec_loc {
    --before-after-size: 323px;
  }
}
@media (max-width: 991px) {
  .bg-sec_loc {
    --before-after-size: 270px;
  }
}
@media (max-width: 767px) {
  .bg-sec_loc {
    --before-after-size: 223px;
  }
}
.bg-sec_loc::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("assets/icons/bg-before.svg");
  background-repeat: no-repeat;
  width: var(--before-after-size);
  background-size: contain;
  opacity: 10%;
  z-index: -1;
}
.bg-sec_loc::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url("assets/icons/bg-after.svg");
  background-repeat: no-repeat;
  width: var(--before-after-size);
  background-size: cover;
  aspect-ratio: 141/92;
  opacity: 10%;
  z-index: -1;
}
.bg-sec_loc.alternate::before {
  background-image: url("assets/icons/bg-before-alt.svg");
  opacity: 50%;
}
.bg-sec_loc.alternate::after {
  background-image: url("assets/icons/bg-after-alt.svg");
  opacity: 50%;
}
.bg-sec_loc.animate {
  overflow: hidden;
}
.bg-sec_loc.animate::before, .bg-sec_loc.animate::after {
  animation: svg-wave-4 9s ease-in-out infinite;
  scale: 1.2;
}

.contact-sec-one .contact_detail_wrap {
  padding-right: 50px;
}
@media (max-width: 991px) {
  .contact-sec-one .contact_detail_wrap {
    padding-right: 0px;
  }
}
.contact-sec-one .ico_txt_wrap {
  border: 1px solid #BAACDD !important;
}

.parent_wrap {
  --child-item-gap: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--child-item-gap);
}
.parent_wrap .child_item {
  width: 100%;
}
@media (min-width: 768px) {
  .parent_wrap .child_item {
    width: calc((100% - var(--child-item-gap) * (var(--child-column-count) - 1)) / var(--child-column-count));
  }
}
.parent_wrap.two-column {
  --child-column-count: 1;
}
@media (min-width: 992px) {
  .parent_wrap.two-column {
    --child-column-count: 2;
  }
}
.parent_wrap.two-column-blog {
  --child-column-count: 1;
}
@media (min-width: 768px) {
  .parent_wrap.two-column-blog {
    --child-column-count: 1;
  }
}
@media (min-width: 992px) {
  .parent_wrap.two-column-blog {
    --child-column-count: 1;
  }
}
@media (min-width: 1200px) {
  .parent_wrap.two-column-blog {
    --child-column-count: 2;
  }
}
.parent_wrap.three-column {
  --child-column-count: 1;
}
@media (min-width: 768px) {
  .parent_wrap.three-column {
    --child-column-count: 2;
  }
}
@media (min-width: 1200px) {
  .parent_wrap.three-column {
    --child-column-count: 3;
  }
}
.parent_wrap.three-column-service {
  --child-column-count: 1;
}
@media (min-width: 992px) {
  .parent_wrap.three-column-service {
    --child-column-count: 2;
  }
}
@media (min-width: 1200px) {
  .parent_wrap.three-column-service {
    --child-column-count: 3;
  }
}

.cnt_listing_v1 .child_item {
  border-bottom: 2px solid #6d1472;
  padding-bottom: 30px;
}
.cnt_listing_v1 .child_item:last-child {
  border-bottom: none;
  padding-bottom: 0px;
}

.cnt_listing_v2 {
  --child-item-gap: 10px;
}
.cnt_listing_v2 .child_item {
  box-shadow: var(--global--box-shadow);
  border-radius: 8px;
  padding: 30px 40px;
  background-color: var(--global--color-primary);
}

.location_listing .item_title {
  font-family: var(--global--font-secondary);
}
.location_listing .item_wrap {
  --item-title-height: 100px;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  text-align: center;
  color: var(--global--color-white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: background-color 0.4s ease;
}
@media (max-width: 1199px) {
  .location_listing .item_wrap {
    background-color: var(--global--color-black);
  }
  .location_listing .item_wrap .item_image {
    opacity: 0.2;
  }
}
.location_listing .item_wrap:hover {
  background-color: var(--global--color-black);
}
.location_listing .item_wrap:hover .item_image {
  opacity: 0.2;
}
.location_listing .item_wrap .item_image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -1;
  transition: opacity 0.4s ease;
}
.location_listing .item_wrap .item_title_main {
  background-color: #6D1472;
  height: var(--item-title-height);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transform: translateY(0);
  transition: transform 0.45s ease;
}
@media (max-width: 1199px) {
  .location_listing .item_wrap .item_title_main {
    transform: translateY(0);
    height: 100%;
  }
}
@media (max-width: 1199px) {
  .location_listing .item_wrap .item_title_main {
    transform: translateY(var(--item-title-height));
  }
}
.location_listing .item_wrap .item_cnt_wrap {
  height: calc(100% - var(--item-title-height));
  padding: 100px 50px;
  transform: translateY(-100%);
  transition: transform 0.45s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 1849px) {
  .location_listing .item_wrap .item_cnt_wrap {
    padding: 70px 40px;
  }
}
@media (max-width: 1599px) {
  .location_listing .item_wrap .item_cnt_wrap {
    padding: 50px 20px;
  }
}
@media (max-width: 1199px) {
  .location_listing .item_wrap .item_cnt_wrap {
    transform: translateY(0);
    height: 100%;
  }
}
.location_listing .item_wrap:hover .item_title_main {
  transform: translateY(-20px);
}
.location_listing .item_wrap:hover .item_cnt_wrap {
  transform: translateY(-20px);
  height: 100%;
}
.location_listing .item_wrap .item_anchor span {
  text-transform: uppercase;
}
.location_listing .item_wrap .item_anchor:hover {
  color: #cb87cf;
  --global--color-svg-white: #cb87cf;
  animation: anime-bounce 0.5s ease;
}

.service_listing {
  justify-content: center;
}
.service_listing .item_title {
  font-family: var(--global--font-secondary);
  margin-bottom: 10px;
}
.service_listing .item_wrap {
  position: relative;
  z-index: 0;
  border-radius: 10px;
  padding: 50px 60px;
  text-align: center;
  box-shadow: var(--global--box-shadow);
}
@media (max-width: 1599px) {
  .service_listing .item_wrap {
    padding: 50px;
  }
}
@media (max-width: 1199px) {
  .service_listing .item_wrap {
    padding: 30px;
    flex-grow: 1;
  }
}
@media (max-width: 767px) {
  .service_listing .item_wrap {
    padding: 20px;
  }
}
.service_listing .item_wrap .item_icon {
  height: 100px;
  justify-content: center;
  display: flex;
  margin-bottom: 10px;
}
@media (max-width: 1599px) {
  .service_listing .item_wrap .item_icon {
    height: 80px;
  }
}
@media (max-width: 1199px) {
  .service_listing .item_wrap .item_icon {
    height: 60px;
  }
}
.service_listing .item_wrap .item_icon svg {
  min-height: 100%;
  width: auto;
}
.service_listing .item_wrap:hover {
  background-color: var(--global--color-black);
  color: var(--global--color-white);
}
.service_listing .item_wrap:hover a {
  color: var(--global--color-white);
  text-decoration: underline;
}
.service_listing .item_wrap:hover a:hover {
  text-decoration: none;
}
@media (max-width: 1199px) {
  .service_listing .item_wrap {
    background-color: var(--global--color-black);
    color: var(--global--color-white);
    --global--color-svg-dark: #fff;
    --global--color-svg-white: #6D1472;
  }
  .service_listing .item_wrap a {
    color: var(--global--color-white);
    text-decoration: underline;
  }
  .service_listing .item_wrap a:hover {
    text-decoration: none;
  }
  .service_listing .item_wrap .item_image {
    opacity: 0.15 !important;
  }
}
.service_listing .item_wrap .item_image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.service_listing .item_wrap:hover {
  --global--color-svg-dark: #fff;
  --global--color-svg-white: #6D1472;
}
.service_listing .item_wrap:hover .item_image {
  opacity: 0.35;
}
.service_listing .item_wrap:hover .item_anchor {
  opacity: 1 !important;
}
.service_listing .item_wrap:hover .item_anchor:hover {
  --global--color-svg-dark: #6D1472;
  --global--color-svg-white: #fff;
}
.service_listing .item_anchor {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  opacity: 0;
}

.career_job_listing .child_item,
.career_listing .child_item {
  box-shadow: var(--global--box-shadow-alt);
  padding: 50px;
  gap: 20px;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .career_job_listing .child_item,
  .career_listing .child_item {
    padding: 30px 20px;
  }
}
.career_job_listing .btn_wrap,
.career_listing .btn_wrap {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-map-wrap {
  margin: 50px 0;
}
@media (max-width: 767px) {
  .site-map-wrap {
    margin: 20px 0;
  }
}
.site-map-wrap ul {
  display: inline-block !important;
  width: auto !important;
}
.site-map-wrap ul > li:last-child a {
  padding-bottom: 0px !important;
}
.site-map-wrap ul li {
  display: block !important;
  position: relative;
  background: transparent !important;
  border-inline-start: none !important;
}
.site-map-wrap ul li ul li:last-child a {
  padding-bottom: 13px !important;
}
.site-map-wrap ul li::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 18px;
  width: 10px;
  height: 10px;
  background-color: var(--global--color-primary-alt);
  border: 3px solid var(--global--color-primary);
  border-radius: 50%;
}
.site-map-wrap ul li:hover, .site-map-wrap ul li:focus {
  border: none !important;
  background: transparent !important;
}
.site-map-wrap ul li a {
  font-size: 16px !important;
  border-inline-start: none !important;
  color: #000;
  background: transparent !important;
  text-decoration: none !important;
}
.site-map-wrap ul li a:after, .site-map-wrap ul li a:before {
  display: none !important;
}
.site-map-wrap ul li a:hover, .site-map-wrap ul li a:focus {
  color: var(--global--color-primary-alt) !important;
  border: none !important;
  background: transparent !important;
}
.site-map-wrap ul li a:hover:after, .site-map-wrap ul li a:hover:before, .site-map-wrap ul li a:focus:after, .site-map-wrap ul li a:focus:before {
  display: none !important;
}
@media (max-width: 1024px) {
  .site-map-wrap ul li a {
    font-size: 16px;
  }
}
.site-map-wrap ul li a .sub-arrow {
  display: none !important;
}
.site-map-wrap ul li ul.sub-menu {
  display: inline-block !important;
  position: static !important;
  width: auto !important;
  margin-left: 15px;
}
.site-map-wrap ul li ul.sub-menu li {
  border-inline-start: none !important;
  position: relative;
}
.site-map-wrap ul li ul.sub-menu li:hover, .site-map-wrap ul li ul.sub-menu li:focus {
  border: none !important;
  background: transparent !important;
}
.site-map-wrap ul li ul.sub-menu li a {
  background: transparent !important;
  border-inline-start: none !important;
}
.site-map-wrap ul li ul.sub-menu li a:hover, .site-map-wrap ul li ul.sub-menu li a:focus {
  background: transparent !important;
  color: var(--global--color-primary-alt) !important;
  border: none !important;
  border-inline-start: none !important;
  background: transparent !important;
}
.site-map-wrap ul li ul.sub-menu li a:hover:after, .site-map-wrap ul li ul.sub-menu li a:hover:before, .site-map-wrap ul li ul.sub-menu li a:focus:after, .site-map-wrap ul li ul.sub-menu li a:focus:before {
  display: none !important;
}
@media (max-width: 1024px) {
  .site-map-wrap ul li ul li {
    font-size: 15px !important;
  }
}

.project_footer {
  border-top: 1px solid var(--global--color-primary);
}
.project_footer .footer_credit {
  background-color: var(--global--color-primary);
  font-weight: 400;
  padding: 25px;
}
.project_footer .footer_credit .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
@media (min-width: 1200px) {
  .project_footer .footer_credit .container {
    flex-direction: row;
    justify-content: space-between;
  }
}
.project_footer .footer_credit a:hover {
  color: var(--global--color-white);
}
.project_footer .footer_wrap .container {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
@media (max-width: 1199px) {
  .project_footer .footer_wrap .container {
    flex-direction: column;
    gap: 30px;
  }
}
@media (min-width: 1200px) {
  .project_footer .footer_address {
    width: 35%;
  }
}
@media (max-width: 1199px) {
  .project_footer .footer_address {
    width: 90%;
    display: flex;
    align-items: center;
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .project_footer .footer_address {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .project_footer .footer_address {
    align-items: flex-start;
    flex-direction: column;
  }
}
.project_footer .footer_address .logo_wrap {
  max-width: 180px;
}
.project_footer .menu_wrap {
  --menu--gap: 70px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: var(--menu--gap);
}
@media (min-width: 1200px) {
  .project_footer .menu_wrap {
    width: 65%;
  }
}
@media (max-width: 1199px) {
  .project_footer .menu_wrap {
    --menu--gap: 30px;
  }
}
@media (max-width: 767px) {
  .project_footer .menu_wrap {
    flex-wrap: wrap;
  }
}
.project_footer .menu_item {
  width: 100%;
  width: calc(var(--menu-item-width) - var(--menu--gap) / 2);
}
@media (max-width: 767px) {
  .project_footer .menu_item {
    --menu-item-width: 50%;
  }
}
@media (min-width: 768px) {
  .project_footer .menu_item.menu-item-1, .project_footer .menu_item.menu-item-4 {
    --menu-item-width: 12%;
  }
}
@media (min-width: 768px) {
  .project_footer .menu_item.menu-item-2 {
    --menu-item-width: 25%;
  }
}
@media (min-width: 768px) {
  .project_footer .menu_item.menu-item-3 {
    --menu-item-width: 51%;
  }
}
@media (max-width: 767px) {
  .project_footer .menu_item.menu-item-3 {
    --menu-item-width: 100%;
  }
}
.project_footer .menu_item.menu-item-3 .sub-menu {
  columns: 2 auto;
}
.project_footer .menu_item ul {
  width: max-content;
}
.project_footer .menu_item ul li a {
  font-size: 15px;
  font-weight: 600;
  padding-bottom: 12px;
  display: block;
  color: var(--global--color-black) !important;
  transform: translateX(0px);
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
}
.project_footer .menu_item ul li a:hover {
  color: var(--global--color-primary-alt) !important;
  text-decoration: none;
  transform: translateX(5px);
}
@media (min-width: 1600px) {
  .project_footer .menu_item ul li a {
    font-size: 18px;
  }
}
@media (min-width: 1850px) {
  .project_footer .menu_item ul li a {
    font-size: 20px;
    padding-bottom: 15px;
  }
}
.project_footer .menu_item ul li .sub-menu li a {
  font-size: 13px;
  font-weight: 300;
}
@media (min-width: 1600px) {
  .project_footer .menu_item ul li .sub-menu li a {
    font-size: 17px;
  }
}
@media (min-width: 1850px) {
  .project_footer .menu_item ul li .sub-menu li a {
    font-size: 20px;
  }
}
.project_footer .menu_item ul .current-menu-item > a,
.project_footer .menu_item ul .current_page_item > a,
.project_footer .menu_item ul .current-menu-ancestor > a,
.project_footer .menu_item ul .current-menu-parent > a,
.project_footer .menu_item ul .current_page_parent > a,
.project_footer .menu_item ul .current_page_ancestor > a {
  color: var(--global--color-primary-alt) !important;
  font-weight: 800 !important;
}

.footer-icon-box {
  display: flex;
  gap: 10px;
  padding-top: 15px;
}
.footer-icon-box .icon {
  width: 30px;
  min-width: 30px;
}
@media (min-width: 1600px) {
  .footer-icon-box .icon {
    width: 37px;
    min-width: 37px;
  }
}
.footer-icon-box .icon svg {
  width: 100%;
  height: auto;
}
.footer-icon-box .footer-icon-box-text {
  display: flex;
  flex-direction: column;
  color: var(--global--color-white) !important;
  font-size: 22px;
  font-weight: 600;
}
.footer-icon-box .footer-icon-box-text span {
  font-size: 13px;
  font-weight: 400;
}
@media (min-width: 1600px) {
  .footer-icon-box .footer-icon-box-text span {
    font-size: 17px;
  }
}
@media (min-width: 1600px) {
  .footer-icon-box .footer-icon-box-text {
    font-size: 28px;
  }
}
.footer-icon-box.loc-wrap .footer-icon-box-text span {
  font-size: 15px;
  font-weight: 400;
}
@media (min-width: 1600px) {
  .footer-icon-box.loc-wrap .footer-icon-box-text span {
    font-size: 20px;
  }
}

.project_footer .menu_item div > ul > li + li {
  padding-top: 20px;
}

.blog_page_listing {
  --hm-blog-thumb-size: 324px;
  --hm-blog-content-spacing: 20px;
  --hm-blog-readMore-size: 30px;
  --blog-box-radius: 15px;
  --blog-listing-thumb-size: 300px;
  --blog-listing-readMore-size: 22px;
}
@media (min-width: 768px) {
  .blog_page_listing {
    --hm-blog-thumb-size: 210px;
    --hm-blog-content-spacing: 20px;
    --hm-blog-readMore-size: 28px;
    --blog-listing-thumb-size: 300px;
    --blog-listing-readMore-size: 22px;
  }
}
@media (min-width: 992px) {
  .blog_page_listing {
    --hm-blog-thumb-size: 270px;
    --hm-blog-content-spacing: 25px;
    --hm-blog-readMore-size: 30px;
    --blog-listing-thumb-size: 300px;
    --blog-listing-readMore-size: 24px;
  }
}
@media (min-width: 1200px) {
  .blog_page_listing {
    --hm-blog-thumb-size: 210px;
    --hm-blog-content-spacing: 25px;
    --hm-blog-readMore-size: 26px;
    --blog-listing-thumb-size: 250px;
    --blog-listing-readMore-size: 22px;
  }
}
@media (min-width: 1600px) {
  .blog_page_listing {
    --hm-blog-thumb-size: 290px;
    --hm-blog-content-spacing: 35px;
    --hm-blog-readMore-size: 38px;
    --blog-box-radius: 20px;
    --blog-listing-thumb-size: 280px;
    --blog-listing-content-spacing: 25px;
    --blog-listing-readMore-size: 30px;
    --blog-listing-icon-size: 15px;
  }
}
@media (min-width: 1850px) {
  .blog_page_listing {
    --hm-blog-thumb-size: 324px;
    --hm-blog-content-spacing: 40px;
    --hm-blog-readMore-size: 44px;
    --blog-listing-thumb-size: 300px;
    --blog-listing-content-spacing: 30px;
    --blog-listing-readMore-size: 34px;
    --blog-listing-icon-size: 17px;
  }
}

.blog_page_listing .elementor-heading-title {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .blog_page_listing .elementor-heading-title {
    margin-bottom: 25px;
  }
}

.blog-listing-wrap {
  display: flex;
  flex-wrap: wrap;
}

.blog-left {
  width: 70%;
}
@media (max-width: 1199px) {
  .blog-left {
    padding-right: 50px;
  }
}
@media (max-width: 991px) {
  .blog-left {
    padding-right: 0px;
  }
}

.blog-right {
  width: 30%;
  padding-left: 50px;
}
@media (max-width: 1199px) {
  .blog-right {
    width: 30%;
    padding-left: 0px;
  }
}

.blog-listing-wrap .blog-left .hm_blog_wrap {
  border: 1px solid #e4d9f3;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--global--box-shadow);
  height: 100%;
}
.blog-listing-wrap .blog-left .hm_blog_wrap .hm_blog_thumb {
  max-height: var(--blog-listing-thumb-size);
  display: flex;
  overflow: hidden;
}
.blog-listing-wrap .blog-left .hm_blog_wrap .hm_blog_thumb a {
  display: flex;
  width: 100%;
  aspect-ratio: 134/95;
}
.blog-listing-wrap .blog-left .hm_blog_wrap .hm_blog_thumb img {
  max-height: none;
  max-width: none;
  position: relative;
  min-width: 100% !important;
  min-height: 100% !important;
  width: 100% !important;
  height: auto !important;
  object-fit: cover;
  object-position: bottom center;
}
.blog-listing-wrap .blog-left .hm_blog_wrap .hm_blog_content {
  height: calc(100% - var(--blog-listing-thumb-size));
  padding: var(--blog-listing-content-spacing, 20px);
  display: flex;
  flex-direction: column;
}
.blog-listing-wrap .blog-left .hm_blog_wrap .hm_blog_content .blog_excerpt {
  margin: 0;
  margin-bottom: 15px;
}
.blog-listing-wrap .blog-left .hm_blog_wrap .hm_blog_content .post_title {
  color: var(--twgl--color-black);
  font-size: 21px  !important;
  font-weight: 600;
  margin: 0 !important;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .blog-listing-wrap .blog-left .hm_blog_wrap .hm_blog_content .post_title {
    font-size: 20px  !important;
  }
}
@media (min-width: 1200px) {
  .blog-listing-wrap .blog-left .hm_blog_wrap .hm_blog_content .post_title {
    font-size: 23px  !important;
  }
}
@media (min-width: 1600px) {
  .blog-listing-wrap .blog-left .hm_blog_wrap .hm_blog_content .post_title {
    font-size: 31px  !important;
  }
}
@media (min-width: 1850px) {
  .blog-listing-wrap .blog-left .hm_blog_wrap .hm_blog_content .post_title {
    font-size: 32px  !important;
  }
}
.blog-listing-wrap .blog-left .hm_blog_wrap .hm_blog_content .icon_wrap {
  align-items: center;
  color: var(--twgl--color-black);
  display: inline-flex;
  font-size: 16px  !important;
  line-height: 1;
  gap: 8px;
}
@media (min-width: 768px) {
  .blog-listing-wrap .blog-left .hm_blog_wrap .hm_blog_content .icon_wrap {
    font-size: 15px  !important;
  }
}
@media (min-width: 1200px) {
  .blog-listing-wrap .blog-left .hm_blog_wrap .hm_blog_content .icon_wrap {
    font-size: 14px  !important;
  }
}
@media (min-width: 1600px) {
  .blog-listing-wrap .blog-left .hm_blog_wrap .hm_blog_content .icon_wrap {
    font-size: 17px  !important;
  }
}
@media (min-width: 1850px) {
  .blog-listing-wrap .blog-left .hm_blog_wrap .hm_blog_content .icon_wrap {
    font-size: 18px  !important;
  }
}
.blog-listing-wrap .blog-left .hm_blog_wrap .hm_blog_content .icon_wrap a {
  color: currentColor;
}
.blog-listing-wrap .blog-left .hm_blog_wrap .hm_blog_content .icon_wrap a:hover {
  color: #6D1472;
}
.blog-listing-wrap .blog-left .hm_blog_wrap .hm_blog_content .icon_wrap svg {
  fill: var(--twgl--color-secondary);
  height: 21px;
  width: 21px;
}
.blog-listing-wrap .blog-left .hm_blog_wrap .hm_blog_content .readMore_btn {
  display: inline-flex;
  line-height: 1;
  margin-left: auto;
}
.blog-listing-wrap .blog-left .hm_blog_wrap .hm_blog_content .readMore_btn svg {
  fill: var(--twgl--color-secondary);
  height: var(--hm-blog-readMore-size);
  width: var(--hm-blog-readMore-size);
}
.blog-listing-wrap .blog-left .hm_blog_wrap .hm_blog_content .readMore_btn a:hover svg {
  fill: var(--twgl--color-primary);
}
.blog-listing-wrap .blog-left .hm_blog_wrap .hm_blog_content .bottom_info_wrap {
  align-items: center;
  display: flex;
  font-size: 16px  !important;
  flex-flow: row wrap;
  gap: 5px 15px;
  margin-top: auto;
}
@media (min-width: 768px) {
  .blog-listing-wrap .blog-left .hm_blog_wrap .hm_blog_content .bottom_info_wrap {
    font-size: 15px  !important;
  }
}
@media (min-width: 1200px) {
  .blog-listing-wrap .blog-left .hm_blog_wrap .hm_blog_content .bottom_info_wrap {
    font-size: 14px  !important;
  }
}
@media (min-width: 1600px) {
  .blog-listing-wrap .blog-left .hm_blog_wrap .hm_blog_content .bottom_info_wrap {
    font-size: 17px  !important;
  }
}
@media (min-width: 1850px) {
  .blog-listing-wrap .blog-left .hm_blog_wrap .hm_blog_content .bottom_info_wrap {
    font-size: 18px  !important;
  }
}
.blog-listing-wrap .blog-left .hm_blog_wrap .hm_blog_content .bottom_info_wrap .article_date,
.blog-listing-wrap .blog-left .hm_blog_wrap .hm_blog_content .bottom_info_wrap .article_source {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media (max-width: 991px) {
  .blog-listing-wrap .blog-left {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .blog-listing-wrap .blog-right,
  .blog-post-row .blog-right {
    margin-top: 30px;
  }
}
.blog-listing-wrap .blog-right .blog_widget_wrap:not(:last-child),
.blog-post-row .blog-right .blog_widget_wrap:not(:last-child) {
  margin-bottom: 30px;
}
.blog-listing-wrap .blog-right .blog_widget_wrap .blWidget_title,
.blog-post-row .blog-right .blog_widget_wrap .blWidget_title {
  color: #0c1b30;
  font-size: 20px  !important;
  font-weight: 400;
  margin-bottom: 15px;
  margin-bottom: 15px;
  background: #BAACDD;
  padding: 17px 15px;
  border-radius: 6px;
  align-items: center;
  line-height: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 768px) {
  .blog-listing-wrap .blog-right .blog_widget_wrap .blWidget_title,
  .blog-post-row .blog-right .blog_widget_wrap .blWidget_title {
    font-size: 18px  !important;
  }
}
@media (min-width: 1200px) {
  .blog-listing-wrap .blog-right .blog_widget_wrap .blWidget_title,
  .blog-post-row .blog-right .blog_widget_wrap .blWidget_title {
    font-size: 20px  !important;
  }
}
@media (min-width: 1600px) {
  .blog-listing-wrap .blog-right .blog_widget_wrap .blWidget_title,
  .blog-post-row .blog-right .blog_widget_wrap .blWidget_title {
    font-size: 26px  !important;
  }
}
@media (min-width: 1850px) {
  .blog-listing-wrap .blog-right .blog_widget_wrap .blWidget_title,
  .blog-post-row .blog-right .blog_widget_wrap .blWidget_title {
    font-size: 27px  !important;
  }
}
.blog-listing-wrap .blog-right .blog_widget_wrap ul,
.blog-post-row .blog-right .blog_widget_wrap ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.blog-listing-wrap .blog-right .blog_widget_wrap ul a,
.blog-post-row .blog-right .blog_widget_wrap ul a {
  color: #0c1b30;
  text-decoration: none !important;
}
.blog-listing-wrap .blog-right .blog_widget_wrap ul a:hover,
.blog-post-row .blog-right .blog_widget_wrap ul a:hover {
  color: #6D1472;
}
.blog-listing-wrap .blog-right .blog_widget_wrap ul > li,
.blog-post-row .blog-right .blog_widget_wrap ul > li {
  color: #0c1b30;
}
.blog-listing-wrap .blog-right .blog_widget_wrap ul > li:not(:last-child),
.blog-post-row .blog-right .blog_widget_wrap ul > li:not(:last-child) {
  border-bottom: 1px solid #6D1472;
  padding-bottom: 15px;
}
.blog-listing-wrap .blog-right .blog_widget_wrap .blWidget_rPost a,
.blog-post-row .blog-right .blog_widget_wrap .blWidget_rPost a {
  font-size: 17px  !important;
  font-weight: 500;
}
@media (min-width: 768px) {
  .blog-listing-wrap .blog-right .blog_widget_wrap .blWidget_rPost a,
  .blog-post-row .blog-right .blog_widget_wrap .blWidget_rPost a {
    font-size: 15px  !important;
  }
}
@media (min-width: 1200px) {
  .blog-listing-wrap .blog-right .blog_widget_wrap .blWidget_rPost a,
  .blog-post-row .blog-right .blog_widget_wrap .blWidget_rPost a {
    font-size: 15px  !important;
  }
}
@media (min-width: 1600px) {
  .blog-listing-wrap .blog-right .blog_widget_wrap .blWidget_rPost a,
  .blog-post-row .blog-right .blog_widget_wrap .blWidget_rPost a {
    font-size: 18px  !important;
  }
}
@media (min-width: 1850px) {
  .blog-listing-wrap .blog-right .blog_widget_wrap .blWidget_rPost a,
  .blog-post-row .blog-right .blog_widget_wrap .blWidget_rPost a {
    font-size: 20px  !important;
  }
}
.blog-listing-wrap .blog-right .blog_widget_wrap .blWidget_rPost li,
.blog-post-row .blog-right .blog_widget_wrap .blWidget_rPost li {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.blog-listing-wrap .blog-right .blog_widget_wrap .blWidget_rPost li .postDate,
.blog-post-row .blog-right .blog_widget_wrap .blWidget_rPost li .postDate {
  font-size: 16px  !important;
  font-weight: 400;
}
@media (min-width: 768px) {
  .blog-listing-wrap .blog-right .blog_widget_wrap .blWidget_rPost li .postDate,
  .blog-post-row .blog-right .blog_widget_wrap .blWidget_rPost li .postDate {
    font-size: 15px  !important;
  }
}
@media (min-width: 1200px) {
  .blog-listing-wrap .blog-right .blog_widget_wrap .blWidget_rPost li .postDate,
  .blog-post-row .blog-right .blog_widget_wrap .blWidget_rPost li .postDate {
    font-size: 14px  !important;
  }
}
@media (min-width: 1600px) {
  .blog-listing-wrap .blog-right .blog_widget_wrap .blWidget_rPost li .postDate,
  .blog-post-row .blog-right .blog_widget_wrap .blWidget_rPost li .postDate {
    font-size: 17px  !important;
  }
}
@media (min-width: 1850px) {
  .blog-listing-wrap .blog-right .blog_widget_wrap .blWidget_rPost li .postDate,
  .blog-post-row .blog-right .blog_widget_wrap .blWidget_rPost li .postDate {
    font-size: 18px  !important;
  }
}
.blog-listing-wrap .blog-right .blog_widget_wrap .blWidget_categories a,
.blog-post-row .blog-right .blog_widget_wrap .blWidget_categories a {
  font-size: 17px  !important;
  font-weight: 400;
}
@media (min-width: 768px) {
  .blog-listing-wrap .blog-right .blog_widget_wrap .blWidget_categories a,
  .blog-post-row .blog-right .blog_widget_wrap .blWidget_categories a {
    font-size: 15px  !important;
  }
}
@media (min-width: 1200px) {
  .blog-listing-wrap .blog-right .blog_widget_wrap .blWidget_categories a,
  .blog-post-row .blog-right .blog_widget_wrap .blWidget_categories a {
    font-size: 15px  !important;
  }
}
@media (min-width: 1600px) {
  .blog-listing-wrap .blog-right .blog_widget_wrap .blWidget_categories a,
  .blog-post-row .blog-right .blog_widget_wrap .blWidget_categories a {
    font-size: 18px  !important;
  }
}
@media (min-width: 1850px) {
  .blog-listing-wrap .blog-right .blog_widget_wrap .blWidget_categories a,
  .blog-post-row .blog-right .blog_widget_wrap .blWidget_categories a {
    font-size: 20px  !important;
  }
}
.blog-listing-wrap .blog-right .blog_widget_wrap .blWidget_archives,
.blog-post-row .blog-right .blog_widget_wrap .blWidget_archives {
  margin-top: 20px;
}
.blog-listing-wrap .blog-right .blog_widget_wrap .blWidget_archives a,
.blog-post-row .blog-right .blog_widget_wrap .blWidget_archives a {
  font-size: 17px  !important;
  font-weight: 400;
}
@media (min-width: 768px) {
  .blog-listing-wrap .blog-right .blog_widget_wrap .blWidget_archives a,
  .blog-post-row .blog-right .blog_widget_wrap .blWidget_archives a {
    font-size: 15px  !important;
  }
}
@media (min-width: 1200px) {
  .blog-listing-wrap .blog-right .blog_widget_wrap .blWidget_archives a,
  .blog-post-row .blog-right .blog_widget_wrap .blWidget_archives a {
    font-size: 15px  !important;
  }
}
@media (min-width: 1600px) {
  .blog-listing-wrap .blog-right .blog_widget_wrap .blWidget_archives a,
  .blog-post-row .blog-right .blog_widget_wrap .blWidget_archives a {
    font-size: 18px  !important;
  }
}
@media (min-width: 1850px) {
  .blog-listing-wrap .blog-right .blog_widget_wrap .blWidget_archives a,
  .blog-post-row .blog-right .blog_widget_wrap .blWidget_archives a {
    font-size: 20px  !important;
  }
}
.blog-listing-wrap .blog-right .blog_widget_wrap .elementor-widget-button .elementor-button:hover svg,
.blog-post-row .blog-right .blog_widget_wrap .elementor-widget-button .elementor-button:hover svg {
  fill: var(--global--color-white);
}
.blog-listing-wrap .blog-right .blog_widget_wrap .elementor-widget-button .elementor-button i,
.blog-post-row .blog-right .blog_widget_wrap .elementor-widget-button .elementor-button i {
  display: inline-flex;
  line-height: 1;
  padding-right: 10px;
}
.blog-listing-wrap .blog-right .blog_widget_wrap .elementor-widget-button .elementor-button svg,
.blog-post-row .blog-right .blog_widget_wrap .elementor-widget-button .elementor-button svg {
  fill: var(--global--color-black);
  height: 16px;
  width: auto !important;
}
@media (min-width: 1200px) and (max-width: 1598px) {
  .blog-listing-wrap .blog-right .blog_widget_wrap .elementor-widget-button .elementor-button,
  .blog-post-row .blog-right .blog_widget_wrap .elementor-widget-button .elementor-button {
    font-size: 13px !important;
  }
  .blog-listing-wrap .blog-right .blog_widget_wrap .elementor-widget-button .elementor-button svg,
  .blog-post-row .blog-right .blog_widget_wrap .elementor-widget-button .elementor-button svg {
    height: 12px;
  }
}
@media (min-width: 1600px) {
  .blog-listing-wrap .blog-right .blog_widget_wrap .elementor-widget-button .elementor-button,
  .blog-post-row .blog-right .blog_widget_wrap .elementor-widget-button .elementor-button {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
}
@media (min-width: 1600px) {
  .blog-listing-wrap .blog-right .blog_widget_wrap:not(:last-child),
  .blog-post-row .blog-right .blog_widget_wrap:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media (min-width: 1850px) {
  .blog-listing-wrap .blog-right .blog_widget_wrap:not(:last-child),
  .blog-post-row .blog-right .blog_widget_wrap:not(:last-child) {
    margin-bottom: 50px;
  }
}
@media (max-width: 991px) {
  .blog-listing-wrap .blog-right,
  .blog-post-row .blog-right {
    width: 100%;
    padding-left: 0px;
  }
}

.blog-post-row {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1199px) {
  .blog-post-row .blog-right {
    width: 100%;
    padding-left: 0px;
    padding-top: 30px;
  }
}
@media (max-width: 991px) {
  .blog-post-row .blog-right {
    padding-top: 10px;
  }
}
@media (max-width: 991px) {
  .blog-post-row {
    flex-direction: column;
  }
}
.blog-post-row .post_left {
  width: 70%;
  padding-right: 50px;
}
.blog-post-row .post_left .elementor-heading-title {
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .blog-post-row .post_left {
    padding-right: 30px;
  }
}
@media (max-width: 1024px) {
  .blog-post-row .post_left {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .blog-post-row .post_left {
    width: 100%;
    padding-right: 0;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .blog-post-row .post_left {
    margin-bottom: 20px;
  }
}
.blog-post-row .blog-details__meta {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  font-weight: 300;
}
.blog-post-row .blog-details__meta .blog-details__category {
  margin-left: 10px;
  color: #000 !important;
}
.blog-post-row .blog-details__meta .blog-details__category:hover {
  color: #BAACDD !important;
}
.blog-post-row .blog-details__meta .blog-details__separator {
  margin-left: 10px;
}
@media (max-width: 767px) {
  .blog-post-row .blog-details__meta {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 14px;
  }
}
.blog-post-row .blog-details__date {
  position: absolute;
  left: 0;
  bottom: 20px;
  background: #6D1472;
  opacity: 80%;
  padding: 14px 14px;
  border-radius: 0px 6px 6px 0px;
  font-size: 22px;
  color: #fff;
  z-index: 2;
  font-weight: 500;
}
@media (max-width: 991px) {
  .blog-post-row .blog-details__date {
    left: 10px;
    bottom: 15px;
  }
}
@media (max-width: 767px) {
  .blog-post-row .blog-details__date {
    left: 12px;
    bottom: 12px;
    padding: 6px 10px;
    font-size: 12px;
  }
}
.blog-post-row .blog-details__image-wrap {
  position: relative;
  background: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  height: 464px;
  width: 100%;
}
@media (max-width: 1799px) {
  .blog-post-row .blog-details__image-wrap {
    height: 350px;
  }
}
.blog-post-row .blog-details__image-wrap img {
  width: 100% !important;
  height: 100% !important;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .blog-post-row .blog-details__image-wrap img {
    border-radius: 6px;
  }
}
@media (max-width: 767px) {
  .blog-post-row .blog-details__image-wrap {
    margin-bottom: 20px;
    height: 250px;
  }
}
@media (max-width: 767px) {
  .blog-post-row .blog-details__content {
    font-size: 15px;
  }
}
.blog-post-row .blog-details__content a {
  font-weight: 600;
  color: var(--global--color-svg-dark) !important;
}
.blog-post-row .blog-details__content a:hover {
  color: #000;
  text-decoration: underline;
}
.blog-post-row .blog-details__content ul {
  margin: 0 0 20px;
  padding: 0;
}
@media (max-width: 767px) {
  .blog-post-row .blog-details__content ul {
    margin-bottom: 15px;
  }
}
.blog-post-row .blog-details__content ul a {
  color: #000;
  text-decoration: underline;
}
.blog-post-row .blog-details__content ul a:hover {
  color: #6D1472 !important;
}
.blog-post-row .blog-details__content ul ul {
  margin-bottom: 0 !important;
  margin-top: 7px !important;
}
@media (max-width: 767px) {
  .blog-post-row .blog-details__content ul ul {
    margin-top: 5px !important;
  }
}
@media (max-width: 767px) {
  .blog-post-row .blog-details__content ul {
    padding-left: 26px;
    font-size: 15px;
    line-height: 1.5;
  }
}
.blog-post-row ol {
  margin-left: 20px;
}
.blog-post-row ol li {
  padding: 7px 0 7px 10px;
  position: relative;
  color: #000;
}
.blog-post-row ol li a {
  color: #000;
  text-decoration: underline;
}
.blog-post-row ol li a:hover {
  color: #6D1472 !important;
}
.blog-post-row h2 {
  margin-top: 0 !important;
  margin-bottom: 15px !important;
}
.blog-post-row h3 {
  margin-bottom: 15px !important;
  font-size: 22px !important;
  font-size: 1.375rem !important;
  margin-top: 0px !important;
}
.blog-post-row h4 {
  margin-bottom: 15px !important;
  font-size: 18px !important;
  font-size: 1.125rem !important;
  margin-top: 0px !important;
}
.blog-post-row h5 {
  margin-bottom: 15px !important;
  font-size: 18px !important;
  font-size: 1.125rem !important;
  margin-top: 0px !important;
}
.blog-post-row h6 {
  margin-bottom: 15px !important;
  font-size: 17px !important;
  font-size: 1.0625rem !important;
  margin-top: 0px !important;
}
.blog-post-row h6 p {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .blog-post-row h6 p {
    font-size: 16px;
    line-height: 1.7;
  }
}
@media (max-width: 767px) {
  .blog-post-row h6 p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
  }
}

.project_pagination {
  margin-top: 40px;
  display: flex;
  justify-content: end;
  width: 100%;
}

.project_pagination .wp-paginate {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.project_pagination .wp-paginate a,
.project_pagination .wp-paginate span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0;
  text-decoration: none;
  color: #6b6b6b;
  background: transparent !important;
  transition: all 0.2s ease;
  border: none !important;
}

.project_pagination .wp-paginate a:hover {
  color: #000;
}

.project_pagination .wp-paginate .current {
  color: #000;
  font-weight: 600;
}

.project_pagination .wp-paginate .next {
  background: #6D1472 !important;
  color: #fff !important;
  padding: 0 16px;
  height: 32px;
  border-radius: 4px !important;
  font-weight: 600;
  text-transform: uppercase;
}

.project_pagination .wp-paginate .next:hover {
  background: #BAACDD;
}

.project_pagination .wp-paginate .prev {
  background: #6D1472 !important;
  color: #fff !important;
  padding: 0 16px;
  height: 32px;
  border-radius: 4px !important;
  font-weight: 600;
  text-transform: uppercase;
}

.project_pagination .wp-paginate .prev:hover {
  background: #BAACDD;
}/*# sourceMappingURL=custom.css.map */