.button-50-gradient {
  appearance: button;
  background: linear-gradient(135deg, #007bff, #0056b3); /* Gradient blue */
  border: 1px solid #0056b3;
  border-radius: 4px;
  box-shadow: #fff 4px 4px 0 0, #0056b3 4px 4px 0 1px;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: ITCAvantGardeStd-Bk, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  margin: 0 5px 10px 0;
  overflow: visible;
  padding: 12px 40px;
  text-align: center;
  text-transform: none;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  transition: background 0.3s ease-in-out;
}

.button-50-gradient:focus {
  text-decoration: none;
}

.button-50-gradient:hover {
  background: linear-gradient(
    135deg,
    #0056b3,
    #004494
  ); /* Darker gradient on hover */
  border-color: #004494;
  text-decoration: none;
}

.button-50-gradient:active {
  box-shadow: rgba(0, 0, 0, 0.125) 0 3px 5px inset;
  outline: 0;
}

.button-50-gradient:not([disabled]):active {
  box-shadow: #fff 2px 2px 0 0, #004494 2px 2px 0 1px;
  transform: translate(2px, 2px);
}

/* CSS */
.button-50 {
  appearance: button;
  background-color: #000;
  background-image: none;
  border: 1px solid #000;
  border-radius: 4px;
  box-shadow: #fff 4px 4px 0 0, #000 4px 4px 0 1px;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: ITCAvantGardeStd-Bk, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  margin: 0 5px 10px 0;
  overflow: visible;
  padding: 12px 40px;
  text-align: center;
  text-transform: none;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
  white-space: nowrap;
}

.button-50:focus {
  text-decoration: none;
}

.button-50:hover {
  text-decoration: none;
}

.button-50:active {
  box-shadow: rgba(0, 0, 0, 0.125) 0 3px 5px inset;
  outline: 0;
}

.button-50:not([disabled]):active {
  box-shadow: #fff 2px 2px 0 0, #000 2px 2px 0 1px;
  transform: translate(2px, 2px);
}

@media (min-width: 768px) {
  .button-50 {
    padding: 12px 50px;
  }
}

.hero-button {
  display: inline-block; /* button fits text */
  padding: 12px 28px;
  background-color: #000; /* solid black background */
  color: #fff; /* white text */
  font-family: Sora, sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border-radius: 6px;
  cursor: pointer;

  /* Shadow as black outline to bottom-left */
  box-shadow: -4px 4px 0 0 #000 inset, -4px 4px 0 0 #000;
  /* first inset fixes any transparency, second creates outer shadow */

  transition: transform 0.1s ease;
}

/* Hover effect: slight shift to simulate press */
.hero-button:hover {
  transform: translate(-2px, 2px);
}

.modal {
  display: none; /* <-- this keeps it hidden */
  position: fixed;
  z-index: 1000;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);

  /* Flexbox center when shown */
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Close button */
.close {
  float: right;
  font-size: 24px;
  cursor: pointer;
}

/* Inputs */
form input {
  width: 100%;
  padding: 8px;
  margin: 6px 0 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* Submit button */
form button {
  width: 100%;
  background: #007bff;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
}

form button:hover {
  background: #0056b3;
}

.contact-info {
  margin-top: 15px;
  font-size: 14px;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: sans-serif;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  vertical-align: baseline;
  display: inline-block;
}

audio:not([controls]) {
  height: 0;
  display: none;
}

[hidden],
template {
  display: none;
}

a {
  background-color: rgba(0, 0, 0, 0);
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  margin: 0.67em 0;
  font-size: 2em;
}

mark {
  color: #000;
  background: #ff0;
}

small {
  font-size: 80%;
}

sub,
sup {
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"] {
  -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"] {
  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: none;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid silver;
  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;
}

@font-face {
  font-family: webflow-icons;
  src: url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBiUAAAC8AAAAYGNtYXDpP+a4AAABHAAAAFxnYXNwAAAAEAAAAXgAAAAIZ2x5ZmhS2XEAAAGAAAADHGhlYWQTFw3HAAAEnAAAADZoaGVhCXYFgQAABNQAAAAkaG10eCe4A1oAAAT4AAAAMGxvY2EDtALGAAAFKAAAABptYXhwABAAPgAABUQAAAAgbmFtZSoCsMsAAAVkAAABznBvc3QAAwAAAAAHNAAAACAAAwP4AZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpAwPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAQAAAAAwACAACAAQAAQAg5gPpA//9//8AAAAAACDmAOkA//3//wAB/+MaBBcIAAMAAQAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEBIAAAAyADgAAFAAAJAQcJARcDIP5AQAGA/oBAAcABwED+gP6AQAABAOAAAALgA4AABQAAEwEXCQEH4AHAQP6AAYBAAcABwED+gP6AQAAAAwDAAOADQALAAA8AHwAvAAABISIGHQEUFjMhMjY9ATQmByEiBh0BFBYzITI2PQE0JgchIgYdARQWMyEyNj0BNCYDIP3ADRMTDQJADRMTDf3ADRMTDQJADRMTDf3ADRMTDQJADRMTAsATDSANExMNIA0TwBMNIA0TEw0gDRPAEw0gDRMTDSANEwAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFVz+fAGEAAAAAAL//f+9BAMDwwAEAAkAABcBJwEXAwE3AQdpA5ps/GZsbAOabPxmbEMDmmz8ZmwDmvxmbAOabAAAAgAA/8AEAAPAAB0AOwAABSInLgEnJjU0Nz4BNzYzMTIXHgEXFhUUBw4BBwYjNTI3PgE3NjU0Jy4BJyYjMSIHDgEHBhUUFx4BFxYzAgBqXV6LKCgoKIteXWpqXV6LKCgoKIteXWpVSktvICEhIG9LSlVVSktvICEhIG9LSlVAKCiLXl1qal1eiygoKCiLXl1qal1eiygoZiEgb0tKVVVKS28gISEgb0tKVVVKS28gIQABAAABwAIAA8AAEgAAEzQ3PgE3NjMxFSIHDgEHBhUxIwAoKIteXWpVSktvICFmAcBqXV6LKChmISBvS0pVAAAAAgAA/8AFtgPAADIAOgAAARYXHgEXFhUUBw4BBwYHIxUhIicuAScmNTQ3PgE3NjMxOAExNDc+ATc2MzIXHgEXFhcVATMJATMVMzUEjD83NlAXFxYXTjU1PQL8kz01Nk8XFxcXTzY1PSIjd1BQWlJJSXInJw3+mdv+2/7c25MCUQYcHFg5OUA/ODlXHBwIAhcXTzY1PTw1Nk8XF1tQUHcjIhwcYUNDTgL+3QFt/pOTkwABAAAAAQAAmM7nP18PPPUACwQAAAAAANciZKUAAAAA1yJkpf/9/70FtgPDAAAACAACAAAAAAAAAAEAAAPA/8AAAAW3//3//QW2AAEAAAAAAAAAAAAAAAAAAAAMBAAAAAAAAAAAAAAAAgAAAAQAASAEAADgBAAAwAQAAJ0EAP/9BAAAAAQAAAAFtwAAAAAAAAAKABQAHgAyAEYAjACiAL4BFgE2AY4AAAABAAAADAA8AAMAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADQAAAAEAAAAAAAIABwCWAAEAAAAAAAMADQBIAAEAAAAAAAQADQCrAAEAAAAAAAUACwAnAAEAAAAAAAYADQBvAAEAAAAAAAoAGgDSAAMAAQQJAAEAGgANAAMAAQQJAAIADgCdAAMAAQQJAAMAGgBVAAMAAQQJAAQAGgC4AAMAAQQJAAUAFgAyAAMAAQQJAAYAGgB8AAMAAQQJAAoANADsd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzUmVndWxhcgBSAGUAZwB1AGwAYQByd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==")
    format("truetype");
  font-weight: normal;
  font-style: normal;
}

[class^="w-icon-"],
[class*=" w-icon-"] {
  speak: none;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  font-family: webflow-icons !important;
}

.w-icon-slider-right:before {
  content: "î˜€";
}

.w-icon-slider-left:before {
  content: "î˜";
}

.w-icon-nav-menu:before {
  content: "î˜‚";
}

.w-icon-arrow-down:before,
.w-icon-dropdown-toggle:before {
  content: "î˜ƒ";
}

.w-icon-file-upload-remove:before {
  content: "î¤€";
}

.w-icon-file-upload-icon:before {
  content: "î¤ƒ";
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  color: #333;
  background-color: #fff;
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}

html.w-mod-touch * {
  background-attachment: scroll !important;
}

.w-block {
  display: block;
}

.w-inline-block {
  max-width: 100%;
  display: inline-block;
}

.w-clearfix:before,
.w-clearfix:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-clearfix:after {
  clear: both;
}

.w-hidden {
  display: none;
}

.w-button {
  color: #fff;
  line-height: inherit;
  cursor: pointer;
  background-color: #3898ec;
  border: 0;
  border-radius: 0;
  padding: 9px 15px;
  text-decoration: none;
  display: inline-block;
}

input.w-button {
  -webkit-appearance: button;
}

html[data-w-dynpage] [data-w-cloak] {
  color: rgba(0, 0, 0, 0) !important;
}

.w-code-block {
  margin: unset;
}

.w-webflow-badge,
.w-webflow-badge * {
  z-index: auto;
  visibility: visible;
  box-sizing: border-box;
  width: auto;
  height: auto;
  max-height: none;
  max-width: none;
  min-height: 0;
  min-width: 0;
  float: none;
  clear: none;
  box-shadow: none;
  opacity: 1;
  direction: ltr;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-style: inherit;
  font-variant: inherit;
  text-align: inherit;
  letter-spacing: inherit;
  -webkit-text-decoration: inherit;
  text-decoration: inherit;
  text-indent: 0;
  text-transform: inherit;
  text-shadow: none;
  font-smoothing: auto;
  vertical-align: baseline;
  cursor: inherit;
  white-space: inherit;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  background: none;
  border: 0 rgba(0, 0, 0, 0);
  border-radius: 0;
  margin: 0;
  padding: 0;
  list-style-type: disc;
  transition: none;
  display: block;
  position: static;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  overflow: visible;
  transform: none;
}

.w-webflow-badge {
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
  visibility: visible !important;
  z-index: 2147483647 !important;
  color: #aaadb0 !important;
  opacity: 1 !important;
  width: auto !important;
  height: auto !important;
  background-color: #fff !important;
  border-radius: 3px !important;
  margin: 0 !important;
  padding: 6px !important;
  font-size: 12px !important;
  line-height: 14px !important;
  text-decoration: none !important;
  display: inline-block !important;
  position: fixed !important;
  top: auto !important;
  bottom: 12px !important;
  left: auto !important;
  right: 12px !important;
  overflow: visible !important;
  transform: none !important;
}

.w-webflow-badge > img {
  visibility: visible !important;
  opacity: 1 !important;
  vertical-align: middle !important;
  display: inline-block !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 10px;
  font-weight: bold;
}

h1 {
  margin-top: 20px;
  font-size: 38px;
  line-height: 44px;
}

h2 {
  margin-top: 20px;
  font-size: 32px;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  font-size: 24px;
  line-height: 30px;
}

h4 {
  margin-top: 10px;
  font-size: 18px;
  line-height: 24px;
}

h5 {
  margin-top: 10px;
  font-size: 14px;
  line-height: 20px;
}

h6 {
  margin-top: 10px;
  font-size: 12px;
  line-height: 18px;
}

p {
  margin-top: 0;
  margin-bottom: 10px;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin: 0 0 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

figure {
  margin: 0 0 10px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

.w-list-unstyled {
  padding-left: 0;
  list-style: none;
}

.w-embed:before,
.w-embed:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-embed:after {
  clear: both;
}

.w-video {
  width: 100%;
  padding: 0;
  position: relative;
}

.w-video iframe,
.w-video object,
.w-video embed {
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

button,
[type="button"],
[type="reset"] {
  cursor: pointer;
  -webkit-appearance: button;
  border: 0;
}

.w-form {
  margin: 0 0 15px;
}

.w-form-done {
  text-align: center;
  background-color: #ddd;
  padding: 20px;
  display: none;
}

.w-form-fail {
  background-color: #ffdede;
  margin-top: 10px;
  padding: 10px;
  display: none;
}

label {
  margin-bottom: 5px;
  font-weight: bold;
  display: block;
}

.w-input,
.w-select {
  width: 100%;
  height: 38px;
  color: #333;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.42857;
  display: block;
}

.w-input:-moz-placeholder,
.w-select:-moz-placeholder {
  color: #999;
}

.w-input::-moz-placeholder,
.w-select::-moz-placeholder {
  color: #999;
  opacity: 1;
}

.w-input::-webkit-input-placeholder,
.w-select::-webkit-input-placeholder {
  color: #999;
}

.w-input:focus,
.w-select:focus {
  border-color: #3898ec;
  outline: 0;
}

.w-input[disabled],
.w-select[disabled],
.w-input[readonly],
.w-select[readonly],
fieldset[disabled] .w-input,
fieldset[disabled] .w-select {
  cursor: not-allowed;
}

.w-input[disabled]:not(.w-input-disabled),
.w-select[disabled]:not(.w-input-disabled),
.w-input[readonly],
.w-select[readonly],
fieldset[disabled]:not(.w-input-disabled) .w-input,
fieldset[disabled]:not(.w-input-disabled) .w-select {
  background-color: #eee;
}

textarea.w-input,
textarea.w-select {
  height: auto;
}

.w-select {
  background-color: #f3f3f3;
}

.w-select[multiple] {
  height: auto;
}

.w-form-label {
  cursor: pointer;
  margin-bottom: 0;
  font-weight: normal;
  display: inline-block;
}

.w-radio {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-radio:before,
.w-radio:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-radio:after {
  clear: both;
}

.w-radio-input {
  float: left;
  margin: 3px 0 0 -20px;
  line-height: normal;
}

.w-file-upload {
  margin-bottom: 10px;
  display: block;
}

.w-file-upload-input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  z-index: -100;
  position: absolute;
  overflow: hidden;
}

.w-file-upload-default,
.w-file-upload-uploading,
.w-file-upload-success {
  color: #333;
  display: inline-block;
}

.w-file-upload-error {
  margin-top: 10px;
  display: block;
}

.w-file-upload-default.w-hidden,
.w-file-upload-uploading.w-hidden,
.w-file-upload-error.w-hidden,
.w-file-upload-success.w-hidden {
  display: none;
}

.w-file-upload-uploading-btn {
  cursor: pointer;
  background-color: #fafafa;
  border: 1px solid #ccc;
  margin: 0;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: normal;
  display: flex;
}

.w-file-upload-file {
  background-color: #fafafa;
  border: 1px solid #ccc;
  flex-grow: 1;
  justify-content: space-between;
  margin: 0;
  padding: 8px 9px 8px 11px;
  display: flex;
}

.w-file-upload-file-name {
  font-size: 14px;
  font-weight: normal;
  display: block;
}

.w-file-remove-link {
  width: auto;
  height: auto;
  cursor: pointer;
  margin-top: 3px;
  margin-left: 10px;
  padding: 3px;
  display: block;
}

.w-icon-file-upload-remove {
  margin: auto;
  font-size: 10px;
}

.w-file-upload-error-msg {
  color: #ea384c;
  padding: 2px 0;
  display: inline-block;
}

.w-file-upload-info {
  padding: 0 12px;
  line-height: 38px;
  display: inline-block;
}

.w-file-upload-label {
  cursor: pointer;
  background-color: #fafafa;
  border: 1px solid #ccc;
  margin: 0;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: normal;
  display: inline-block;
}

.w-icon-file-upload-icon,
.w-icon-file-upload-uploading {
  width: 20px;
  margin-right: 8px;
  display: inline-block;
}

.w-icon-file-upload-uploading {
  height: 20px;
}

.w-container {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.w-container:before,
.w-container:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-container:after {
  clear: both;
}

.w-container .w-row {
  margin-left: -10px;
  margin-right: -10px;
}

.w-row:before,
.w-row:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-row:after {
  clear: both;
}

.w-row .w-row {
  margin-left: 0;
  margin-right: 0;
}

.w-col {
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}

.w-col .w-col {
  padding-left: 0;
  padding-right: 0;
}

.w-col-1 {
  width: 8.33333%;
}

.w-col-2 {
  width: 16.6667%;
}

.w-col-3 {
  width: 25%;
}

.w-col-4 {
  width: 33.3333%;
}

.w-col-5 {
  width: 41.6667%;
}

.w-col-6 {
  width: 50%;
}

.w-col-7 {
  width: 58.3333%;
}

.w-col-8 {
  width: 66.6667%;
}

.w-col-9 {
  width: 75%;
}

.w-col-10 {
  width: 83.3333%;
}

.w-col-11 {
  width: 91.6667%;
}

.w-col-12 {
  width: 100%;
}

.w-hidden-main {
  display: none !important;
}

@media screen and (max-width: 991px) {
  .w-container {
    max-width: 728px;
  }

  .w-hidden-main {
    display: inherit !important;
  }

  .w-hidden-medium {
    display: none !important;
  }

  .w-col-medium-1 {
    width: 8.33333%;
  }

  .w-col-medium-2 {
    width: 16.6667%;
  }

  .w-col-medium-3 {
    width: 25%;
  }

  .w-col-medium-4 {
    width: 33.3333%;
  }

  .w-col-medium-5 {
    width: 41.6667%;
  }

  .w-col-medium-6 {
    width: 50%;
  }

  .w-col-medium-7 {
    width: 58.3333%;
  }

  .w-col-medium-8 {
    width: 66.6667%;
  }

  .w-col-medium-9 {
    width: 75%;
  }

  .w-col-medium-10 {
    width: 83.3333%;
  }

  .w-col-medium-11 {
    width: 91.6667%;
  }

  .w-col-medium-12 {
    width: 100%;
  }

  .w-col-stack {
    width: 100%;
    left: auto;
    right: auto;
  }
}

@media screen and (max-width: 767px) {
  .w-hidden-main,
  .w-hidden-medium {
    display: inherit !important;
  }

  .w-hidden-small {
    display: none !important;
  }

  .w-row,
  .w-container .w-row {
    margin-left: 0;
    margin-right: 0;
  }

  .w-col {
    width: 100%;
    left: auto;
    right: auto;
  }

  .w-col-small-1 {
    width: 8.33333%;
  }

  .w-col-small-2 {
    width: 16.6667%;
  }

  .w-col-small-3 {
    width: 25%;
  }

  .w-col-small-4 {
    width: 33.3333%;
  }

  .w-col-small-5 {
    width: 41.6667%;
  }

  .w-col-small-6 {
    width: 50%;
  }

  .w-col-small-7 {
    width: 58.3333%;
  }

  .w-col-small-8 {
    width: 66.6667%;
  }

  .w-col-small-9 {
    width: 75%;
  }

  .w-col-small-10 {
    width: 83.3333%;
  }

  .w-col-small-11 {
    width: 91.6667%;
  }

  .w-col-small-12 {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .w-container {
    max-width: none;
  }

  .w-hidden-main,
  .w-hidden-medium,
  .w-hidden-small {
    display: inherit !important;
  }

  .w-hidden-tiny {
    display: none !important;
  }

  .w-col {
    width: 100%;
  }

  .w-col-tiny-1 {
    width: 8.33333%;
  }

  .w-col-tiny-2 {
    width: 16.6667%;
  }

  .w-col-tiny-3 {
    width: 25%;
  }

  .w-col-tiny-4 {
    width: 33.3333%;
  }

  .w-col-tiny-5 {
    width: 41.6667%;
  }

  .w-col-tiny-6 {
    width: 50%;
  }

  .w-col-tiny-7 {
    width: 58.3333%;
  }

  .w-col-tiny-8 {
    width: 66.6667%;
  }

  .w-col-tiny-9 {
    width: 75%;
  }

  .w-col-tiny-10 {
    width: 83.3333%;
  }

  .w-col-tiny-11 {
    width: 91.6667%;
  }

  .w-col-tiny-12 {
    width: 100%;
  }
}

.w-widget {
  position: relative;
}

.w-widget-map {
  width: 100%;
  height: 400px;
}

.w-widget-map label {
  width: auto;
  display: inline;
}

.w-widget-map img {
  max-width: inherit;
}

.w-widget-map .gm-style-iw {
  text-align: center;
}

.w-widget-map .gm-style-iw > button {
  display: none !important;
}

.w-widget-twitter {
  overflow: hidden;
}

.w-widget-twitter-count-shim {
  vertical-align: top;
  width: 28px;
  height: 20px;
  text-align: center;
  background: #fff;
  border: 1px solid #758696;
  border-radius: 3px;
  display: inline-block;
  position: relative;
}

.w-widget-twitter-count-shim * {
  pointer-events: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.w-widget-twitter-count-shim .w-widget-twitter-count-inner {
  text-align: center;
  color: #999;
  font-family: serif;
  font-size: 15px;
  line-height: 12px;
  position: relative;
}

.w-widget-twitter-count-shim .w-widget-twitter-count-clear {
  display: block;
  position: relative;
}

.w-widget-twitter-count-shim.w--large {
  width: 36px;
  height: 28px;
}

.w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 18px;
}

.w-widget-twitter-count-shim:not(.w--vertical) {
  margin-left: 5px;
  margin-right: 8px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large {
  margin-left: 6px;
}

.w-widget-twitter-count-shim:not(.w--vertical):before,
.w-widget-twitter-count-shim:not(.w--vertical):after {
  content: " ";
  height: 0;
  width: 0;
  pointer-events: none;
  border: solid rgba(0, 0, 0, 0);
  position: absolute;
  top: 50%;
  left: 0;
}

.w-widget-twitter-count-shim:not(.w--vertical):before {
  border-width: 4px;
  border-color: rgba(117, 134, 150, 0) #5d6c7b rgba(117, 134, 150, 0)
    rgba(117, 134, 150, 0);
  margin-top: -4px;
  margin-left: -9px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
  border-width: 5px;
  margin-top: -5px;
  margin-left: -10px;
}

.w-widget-twitter-count-shim:not(.w--vertical):after {
  border-width: 4px;
  border-color: rgba(255, 255, 255, 0) #fff rgba(255, 255, 255, 0)
    rgba(255, 255, 255, 0);
  margin-top: -4px;
  margin-left: -8px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
  border-width: 5px;
  margin-top: -5px;
  margin-left: -9px;
}

.w-widget-twitter-count-shim.w--vertical {
  width: 61px;
  height: 33px;
  margin-bottom: 8px;
}

.w-widget-twitter-count-shim.w--vertical:before,
.w-widget-twitter-count-shim.w--vertical:after {
  content: " ";
  height: 0;
  width: 0;
  pointer-events: none;
  border: solid rgba(0, 0, 0, 0);
  position: absolute;
  top: 100%;
  left: 50%;
}

.w-widget-twitter-count-shim.w--vertical:before {
  border-width: 5px;
  border-color: #5d6c7b rgba(117, 134, 150, 0) rgba(117, 134, 150, 0);
  margin-left: -5px;
}

.w-widget-twitter-count-shim.w--vertical:after {
  border-width: 4px;
  border-color: #fff rgba(255, 255, 255, 0) rgba(255, 255, 255, 0);
  margin-left: -4px;
}

.w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 22px;
}

.w-widget-twitter-count-shim.w--vertical.w--large {
  width: 76px;
}

.w-background-video {
  height: 500px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.w-background-video > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -100;
  background-position: 50%;
  background-size: cover;
  margin: auto;
  position: absolute;
  top: -100%;
  bottom: -100%;
  left: -100%;
  right: -100%;
}

.w-background-video > video::-webkit-media-controls-start-playback-button {
  -webkit-appearance: none;
  display: none !important;
}

.w-background-video--control {
  background-color: rgba(0, 0, 0, 0);
  padding: 0;
  position: absolute;
  bottom: 1em;
  right: 1em;
}

.w-background-video--control > [hidden] {
  display: none !important;
}

.w-slider {
  height: 300px;
  text-align: center;
  clear: both;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  background: #ddd;
  position: relative;
}

.w-slider-mask {
  z-index: 1;
  height: 100%;
  white-space: nowrap;
  display: block;
  position: relative;
  left: 0;
  right: 0;
  overflow: hidden;
}

.w-slide {
  vertical-align: top;
  width: 100%;
  height: 100%;
  white-space: normal;
  text-align: left;
  display: inline-block;
  position: relative;
}

.w-slider-nav {
  z-index: 2;
  height: 40px;
  text-align: center;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  margin: auto;
  padding-top: 10px;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
}

.w-slider-nav.w-round > div {
  border-radius: 100%;
}

.w-slider-nav.w-num > div {
  width: auto;
  height: auto;
  font-size: inherit;
  line-height: inherit;
  padding: 0.2em 0.5em;
}

.w-slider-nav.w-shadow > div {
  box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
}

.w-slider-nav-invert {
  color: #fff;
}

.w-slider-nav-invert > div {
  background-color: rgba(34, 34, 34, 0.4);
}

.w-slider-nav-invert > div.w-active {
  background-color: #222;
}

.w-slider-dot {
  width: 1em;
  height: 1em;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.4);
  margin: 0 3px 0.5em;
  transition: background-color 0.1s, color 0.1s;
  display: inline-block;
  position: relative;
}

.w-slider-dot.w-active {
  background-color: #fff;
}

.w-slider-dot:focus {
  outline: none;
  box-shadow: 0 0 0 2px #fff;
}

.w-slider-dot:focus.w-active {
  box-shadow: none;
}

.w-slider-arrow-left,
.w-slider-arrow-right {
  width: 80px;
  cursor: pointer;
  color: #fff;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: auto;
  font-size: 40px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

.w-slider-arrow-left [class^="w-icon-"],
.w-slider-arrow-right [class^="w-icon-"],
.w-slider-arrow-left [class*=" w-icon-"],
.w-slider-arrow-right [class*=" w-icon-"] {
  position: absolute;
}

.w-slider-arrow-left:focus,
.w-slider-arrow-right:focus {
  outline: 0;
}

.w-slider-arrow-left {
  z-index: 3;
  right: auto;
}

.w-slider-arrow-right {
  z-index: 4;
  left: auto;
}

.w-icon-slider-left,
.w-icon-slider-right {
  width: 1em;
  height: 1em;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.w-slider-aria-label {
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  border: 0;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.w-slider-force-show {
  display: block !important;
}

.w-dropdown {
  text-align: left;
  z-index: 900;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  position: relative;
}

.w-dropdown-btn,
.w-dropdown-toggle,
.w-dropdown-link {
  vertical-align: top;
  color: #222;
  text-align: left;
  white-space: nowrap;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  text-decoration: none;
  position: relative;
}

.w-dropdown-toggle {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  padding-right: 40px;
  display: inline-block;
}

.w-dropdown-toggle:focus {
  outline: 0;
}

.w-icon-dropdown-toggle {
  width: 1em;
  height: 1em;
  margin: auto 20px auto auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.w-dropdown-list {
  min-width: 100%;
  background: #ddd;
  display: none;
  position: absolute;
}

.w-dropdown-list.w--open {
  display: block;
}

.w-dropdown-link {
  color: #222;
  padding: 10px 20px;
  display: block;
}

.w-dropdown-link.w--current {
  color: #0082f3;
}

.w-dropdown-link:focus {
  outline: 0;
}

@media screen and (max-width: 767px) {
  .w-nav-brand {
    padding-left: 10px;
  }
}

.w-lightbox-backdrop {
  cursor: auto;
  letter-spacing: normal;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  color: #fff;
  text-align: center;
  z-index: 2000;
  opacity: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -webkit-tap-highlight-color: transparent;
  background: rgba(0, 0, 0, 0.9);
  outline: 0;
  font-family: Helvetica Neue, Helvetica, Ubuntu, Segoe UI, Verdana, sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.2;
  list-style: disc;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transform: translate(0);
}

.w-lightbox-backdrop,
.w-lightbox-container {
  height: 100%;
  -webkit-overflow-scrolling: touch;
  overflow: auto;
}

.w-lightbox-content {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.w-lightbox-view {
  width: 100vw;
  height: 100vh;
  opacity: 0;
  position: absolute;
}

.w-lightbox-view:before {
  content: "";
  height: 100vh;
}

.w-lightbox-group,
.w-lightbox-group .w-lightbox-view,
.w-lightbox-group .w-lightbox-view:before {
  height: 86vh;
}

.w-lightbox-frame,
.w-lightbox-view:before {
  vertical-align: middle;
  display: inline-block;
}

.w-lightbox-figure {
  margin: 0;
  position: relative;
}

.w-lightbox-group .w-lightbox-figure {
  cursor: pointer;
}

.w-lightbox-img {
  width: auto;
  height: auto;
  max-width: none;
}

.w-lightbox-image {
  float: none;
  max-width: 100vw;
  max-height: 100vh;
  display: block;
}

.w-lightbox-group .w-lightbox-image {
  max-height: 86vh;
}

.w-lightbox-caption {
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.5em 1em;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

.w-lightbox-embed {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.w-lightbox-control {
  width: 4em;
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
  transition: all 0.3s;
  position: absolute;
  top: 0;
}

.w-lightbox-left {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg==");
  display: none;
  bottom: 0;
  left: 0;
}

.w-lightbox-right {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+");
  display: none;
  bottom: 0;
  right: 0;
}

.w-lightbox-close {
  height: 2.6em;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
  background-size: 18px;
  right: 0;
}

.w-lightbox-strip {
  white-space: nowrap;
  padding: 0 1vh;
  line-height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-x: auto;
  overflow-y: hidden;
}

.w-lightbox-item {
  width: 10vh;
  box-sizing: content-box;
  cursor: pointer;
  padding: 2vh 1vh;
  display: inline-block;
  -webkit-transform: translate3d(0, 0, 0);
}

.w-lightbox-active {
  opacity: 0.3;
}

.w-lightbox-thumbnail {
  height: 10vh;
  background: #222;
  position: relative;
  overflow: hidden;
}

.w-lightbox-thumbnail-image {
  position: absolute;
  top: 0;
  left: 0;
}

.w-lightbox-thumbnail .w-lightbox-tall {
  width: 100%;
  top: 50%;
  transform: translate(0, -50%);
}

.w-lightbox-thumbnail .w-lightbox-wide {
  height: 100%;
  left: 50%;
  transform: translate(-50%);
}

.w-lightbox-spinner {
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  border: 5px solid rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  margin-top: -20px;
  margin-left: -20px;
  animation: 0.8s linear infinite spin;
  position: absolute;
  top: 50%;
  left: 50%;
}

.w-lightbox-spinner:after {
  content: "";
  border: 3px solid rgba(0, 0, 0, 0);
  border-bottom-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: -4px;
  bottom: -4px;
  left: -4px;
  right: -4px;
}

.w-lightbox-hide {
  display: none;
}

.w-lightbox-noscroll {
  overflow: hidden;
}

@media (min-width: 768px) {
  .w-lightbox-content {
    height: 96vh;
    margin-top: 2vh;
  }

  .w-lightbox-view,
  .w-lightbox-view:before {
    height: 96vh;
  }

  .w-lightbox-group,
  .w-lightbox-group .w-lightbox-view,
  .w-lightbox-group .w-lightbox-view:before {
    height: 84vh;
  }

  .w-lightbox-image {
    max-width: 96vw;
    max-height: 96vh;
  }

  .w-lightbox-group .w-lightbox-image {
    max-width: 82.3vw;
    max-height: 84vh;
  }

  .w-lightbox-left,
  .w-lightbox-right {
    opacity: 0.5;
    display: block;
  }

  .w-lightbox-close {
    opacity: 0.8;
  }

  .w-lightbox-control:hover {
    opacity: 1;
  }
}

.w-lightbox-inactive,
.w-lightbox-inactive:hover {
  opacity: 0;
}

.w-richtext:before,
.w-richtext:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-richtext:after {
  clear: both;
}

.w-richtext[contenteditable="true"]:before,
.w-richtext[contenteditable="true"]:after {
  white-space: initial;
}

.w-richtext ol,
.w-richtext ul {
  overflow: hidden;
}

.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:after,
.w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:after,
.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div,
.w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
  outline: 2px solid #2895f7;
}

.w-richtext figure.w-richtext-figure-type-video > div:after,
.w-richtext figure[data-rt-type="video"] > div:after {
  content: "";
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.w-richtext figure {
  max-width: 60%;
  position: relative;
}

.w-richtext figure > div:before {
  cursor: default !important;
}

.w-richtext figure img {
  width: 100%;
}

.w-richtext figure figcaption.w-richtext-figcaption-placeholder {
  opacity: 0.6;
}

.w-richtext figure div {
  color: rgba(0, 0, 0, 0);
  font-size: 0;
}

.w-richtext figure.w-richtext-figure-type-image,
.w-richtext figure[data-rt-type="image"] {
  display: table;
}

.w-richtext figure.w-richtext-figure-type-image > div,
.w-richtext figure[data-rt-type="image"] > div {
  display: inline-block;
}

.w-richtext figure.w-richtext-figure-type-image > figcaption,
.w-richtext figure[data-rt-type="image"] > figcaption {
  caption-side: bottom;
  display: table-caption;
}

.w-richtext figure.w-richtext-figure-type-video,
.w-richtext figure[data-rt-type="video"] {
  width: 60%;
  height: 0;
}

.w-richtext figure.w-richtext-figure-type-video iframe,
.w-richtext figure[data-rt-type="video"] iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.w-richtext figure.w-richtext-figure-type-video > div,
.w-richtext figure[data-rt-type="video"] > div {
  width: 100%;
}

.w-richtext figure.w-richtext-align-center {
  clear: both;
  margin-left: auto;
  margin-right: auto;
}

.w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div,
.w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
  max-width: 100%;
}

.w-richtext figure.w-richtext-align-normal {
  clear: both;
}

.w-richtext figure.w-richtext-align-fullwidth {
  width: 100%;
  max-width: 100%;
  text-align: center;
  clear: both;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-richtext figure.w-richtext-align-fullwidth > div {
  padding-bottom: inherit;
  display: inline-block;
}

.w-richtext figure.w-richtext-align-fullwidth > figcaption {
  display: block;
}

.w-richtext figure.w-richtext-align-floatleft {
  float: left;
  clear: none;
  margin-right: 15px;
}

.w-richtext figure.w-richtext-align-floatright {
  float: right;
  clear: none;
  margin-left: 15px;
}

.w-nav {
  z-index: 1000;
  background: #ddd;
  position: relative;
}

.w-nav:before,
.w-nav:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-nav:after {
  clear: both;
}

.w-nav-brand {
  float: left;
  color: #333;
  text-decoration: none;
  position: relative;
}

.w-nav-link {
  vertical-align: top;
  color: #222;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.w-nav-link.w--current {
  color: #0082f3;
}

.w-nav-menu {
  float: right;
  position: relative;
}

[data-nav-menu-open] {
  text-align: center;
  min-width: 200px;
  background: #c8c8c8;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: visible;
  display: block !important;
}

.w--nav-link-open {
  display: block;
  position: relative;
}

.w-nav-overlay {
  width: 100%;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
}

.w-nav-overlay [data-nav-menu-open] {
  top: 0;
}

.w-nav[data-animation="over-left"] .w-nav-overlay {
  width: auto;
}

.w-nav[data-animation="over-left"] .w-nav-overlay,
.w-nav[data-animation="over-left"] [data-nav-menu-open] {
  z-index: 1;
  top: 0;
  right: auto;
}

.w-nav[data-animation="over-right"] .w-nav-overlay {
  width: auto;
}

.w-nav[data-animation="over-right"] .w-nav-overlay,
.w-nav[data-animation="over-right"] [data-nav-menu-open] {
  z-index: 1;
  top: 0;
  left: auto;
}

.w-nav-button {
  float: right;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 18px;
  font-size: 24px;
  display: none;
  position: relative;
}

.w-nav-button:focus {
  outline: 0;
}

.w-nav-button.w--open {
  color: #fff;
  background-color: #c8c8c8;
}

.w-nav[data-collapse="all"] .w-nav-menu {
  display: none;
}

.w-nav[data-collapse="all"] .w-nav-button,
.w--nav-dropdown-open,
.w--nav-dropdown-toggle-open {
  display: block;
}

.w--nav-dropdown-list-open {
  position: static;
}

@media screen and (max-width: 991px) {
  .w-nav[data-collapse="medium"] .w-nav-menu {
    display: none;
  }

  .w-nav[data-collapse="medium"] .w-nav-button {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .w-nav[data-collapse="small"] .w-nav-menu {
    display: none;
  }

  .w-nav[data-collapse="small"] .w-nav-button {
    display: block;
  }

  .w-nav-brand {
    padding-left: 10px;
  }
}

@media screen and (max-width: 479px) {
  .w-nav[data-collapse="tiny"] .w-nav-menu {
    display: none;
  }

  .w-nav[data-collapse="tiny"] .w-nav-button {
    display: block;
  }
}

.w-tabs {
  position: relative;
}

.w-tabs:before,
.w-tabs:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-tabs:after {
  clear: both;
}

.w-tab-menu {
  position: relative;
}

.w-tab-link {
  vertical-align: top;
  text-align: left;
  cursor: pointer;
  color: #222;
  background-color: #ddd;
  padding: 9px 30px;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.w-tab-link.w--current {
  background-color: #c8c8c8;
}

.w-tab-link:focus {
  outline: 0;
}

.w-tab-content {
  display: block;
  position: relative;
  overflow: hidden;
}

.w-tab-pane {
  display: none;
  position: relative;
}

.w--tab-active {
  display: block;
}

@media screen and (max-width: 479px) {
  .w-tab-link {
    display: block;
  }
}

.w-ix-emptyfix:after {
  content: "";
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.w-dyn-empty {
  background-color: #ddd;
  padding: 10px;
}

.w-dyn-hide,
.w-dyn-bind-empty,
.w-condition-invisible {
  display: none !important;
}

.wf-layout-layout {
  display: grid;
}

a {
  text-decoration: none;
}

.body {
  color: #f7f5ed;
  background-color: #f7f5ed;
  padding-top: 10px;
  padding-left: 0;
  padding-right: 0;
}

.logo-kairn {
  width: 300px;
  padding-top: 11px;
  display: block;
}

.navbar {
  background-color: rgba(0, 0, 0, 0);
  border: 1px #000;
}

.container {
  min-width: 100%;
  text-align: left;
  object-fit: fill;
  border: 1px #000;
  border-bottom-style: solid;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 20px 40px;
  display: block;
}

.nav-link {
  font-family: Sora, sans-serif;
  text-decoration: none;
}

.nav-menu {
  color: #222325;
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 0 #f7f5ed;
  margin-right: 0;
  font-family: Sora, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

.nav-link-2 {
  font-weight: 600;
}

.nav-link-2.bouton-nav {
  z-index: 0;
  color: #fff;
  border: 1px #000;
  margin-top: 0;
  line-height: 20px;
  display: none;
}

.nav-link-3 {
  margin-right: 40px;
  text-decoration: none;
  display: none;
}

.heading {
  color: #222325;
  object-fit: contain;
  justify-content: flex-start;
  font-family: Fontfabric mont demo, sans-serif;
  font-size: 60px;
  font-weight: 900;
  line-height: 70px;
  display: block;
}

.main-header {
  max-width: 1200px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 53px;
  display: flex;
}

.image {
  margin-left: 38px;
  padding-top: 12px;
}

.columns {
  color: #fff;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.columns.columns-spaced {
  margin-bottom: 100px;
}

.purple-highlight {
  height: 0;
  color: #f7f5ed;
  object-fit: fill;
  background-color: #949cff;
  line-height: 65px;
  display: inline;
}

.paragraph {
  color: #222325;
  font-family: Sora, sans-serif;
  font-size: 22px;
  line-height: 38px;
}

.bouton-nav {
  float: none;
  clear: none;
  background-color: #000;
  border-radius: 6px;
  margin-top: 20px;
  font-family: Sora, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 36px;
  display: none;
  position: relative;
  overflow: visible;
}

.marquee-horizontal {
  z-index: 200;
  width: 100%;
  height: 40px;
  background-color: #fc7557;
  border: 1px #000;
  justify-content: flex-start;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.marquee-horizontal.marquee-3 {
  background-color: #ffc73a;
  margin-top: 36px;
}

.marquee-horizontal.marquee-2 {
  background-color: #7f9dff;
  border-style: none;
  margin-top: 36px;
}

.track-horizontal-alt {
  border: 1px #000;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.marquee-text {
  color: #222325;
  text-transform: capitalize;
  flex: none;
  margin-right: 8vw;
  font-family: Sora, sans-serif;
  font-size: 26px;
  font-style: normal;
  line-height: 34px;
}

.marquees-colour {
  max-width: 3500px;
  object-fit: fill;
  margin-top: 75px;
  overflow: visible;
}

.image-2 {
  width: 69px;
  white-space: normal;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  margin-left: -82px;
  padding-left: 0;
  padding-right: 14px;
}

.image-3 {
  width: 200px;
  margin-left: -82px;
  padding-left: 0;
  padding-right: 14px;
}

.image-4 {
  width: 69px;
  margin-left: -82px;
  padding-right: 14px;
}

.prioritize {
  text-align: left;
  flex-flow: wrap;
  justify-content: center;
  margin-top: 60px;
  display: flex;
}

.section {
  width: 100%;
  text-align: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 40px;
  display: inline-block;
}

.section.review-section {
  margin-top: 82px;
}

.heading-2 {
  color: #222325;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: Fontfabric mont demo, sans-serif;
  font-size: 45px;
}

.heading-2.head-white {
  color: #fff;
  margin-top: 40px;
  font-size: 45px;
}

.paragraph-2 {
  width: 80%;
  color: #222325;
  text-align: left;
  text-indent: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 49px;
  font-family: Sora, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 36px;
  display: inline-block;
  position: static;
  overflow: visible;
}

.paragraph-2.p-white {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.column {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 24px;
  flex: 0 auto;
  padding-top: 0;
  padding-left: 20px;
  padding-right: 20px;
  overflow: visible;
}

.quick-smart {
  max-width: 1040px;
}

.columns-2 {
  flex-flow: row;
  justify-content: flex-start;
  align-items: stretch;
  margin-right: 2px;
  display: flex;
}

.heading-3 {
  color: #f7f5ed;
  padding-left: 20px;
  font-family: Fontfabric mont, sans-serif;
  font-size: 35px;
  font-weight: 700;
}

.heading-3.header-black {
  color: #222325;
}

.paragraph-3 {
  color: #f7f5ed;
  padding-left: 20px;
  padding-right: 20px;
  font-family: Sora, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 35px;
}

.modal-wrapper {
  z-index: 2147483647;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.32);
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  font-family: Sora, sans-serif;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: visible;
}

.div-block-2 {
  width: 500px;
  height: 600px;
  opacity: 1;
  text-align: center;
  object-position: 5% 50%;
  background-color: #f7f5ed;
  border: 1px solid #000;
  border-radius: 20px;
  flex: 0 auto;
  order: 0;
  justify-content: center;
  align-self: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  padding-left: 20px;
  padding-right: 20px;
  display: inline-block;
  position: relative;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: auto;
}

.continue-with-button {
  width: 300px;
  height: 40px;
  clear: none;
  color: #2d384c;
  text-align: center;
  object-fit: fill;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 8px;
  flex: 0 auto;
  margin-bottom: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  text-decoration: none;
  display: inline-block;
}

.button-2 {
  width: 300px;
  height: 40px;
  color: #2d384c;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 8px;
  margin-bottom: 20px;
  display: inline-block;
}

.button-3 {
  display: block;
}

.heading-4 {
  margin-top: 0;
  margin-bottom: 39px;
}

.heading-4.headpop {
  height: 186px;
  color: #222325;
  margin-bottom: 10px;
  font-family: Fontfabric mont demo, sans-serif;
  line-height: 43px;
  display: block;
}

.image-5 {
  cursor: pointer;
  position: absolute;
  top: 5%;
  bottom: auto;
  left: auto;
  right: 5%;
}

.column-2 {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 24px;
  padding-top: 0;
  padding-left: 20px;
  padding-right: 20px;
}

.heading-5 {
  color: #222325;
  padding-left: 20px;
  font-family: Fontfabric mont, sans-serif;
  font-size: 35px;
  font-weight: 700;
}

.paragraph-4 {
  color: #222325;
  padding-left: 20px;
  font-family: Sora, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 34px;
}

.image-6 {
  padding: 20px 40px;
}

.image-6.image-connect {
  width: 950px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
}

.div-block-3 {
  background-color: #809dff;
  border-radius: 24px;
  padding-top: 40px;
  padding-left: 20px;
  padding-right: 20px;
}

.div-block-3.red-div {
  background-color: #fc7557;
}

.div-block-4 {
  background-color: #fdfdfd;
  border-radius: 24px;
  padding: 40px 20px 27px;
  display: block;
}

.div-block-5 {
  background-color: #ffc73a;
  border-radius: 24px;
  justify-content: space-around;
  padding-top: 40px;
  padding-left: 40px;
  display: flex;
}

.div-block-5.adapt-yellow {
  align-items: stretch;
  padding-right: 0;
  overflow: hidden;
}

.div-block-5.adapt-yellow.adapt-blue {
  max-height: 350px;
  min-height: 100px;
  background-color: #7f9dff;
  align-items: flex-start;
  margin-bottom: 0;
  padding-bottom: 0;
  position: relative;
  overflow: visible;
}

.div-block-5.adapt-white {
  color: #fc7557;
  background-color: #fff;
}

.div-block-5.adapt-red {
  color: #fc7557;
  background-color: #fb7557;
}

.div-block-5.adapt-yellow {
  color: #fc7557;
  background-color: #ffc73c;
  padding-bottom: 0;
  padding-right: 0;
}

.adapt-view {
  max-width: 1040px;
}

.adapt-view.adaptativeview.mobile-blue {
  margin-top: 163px;
  margin-bottom: 86px;
}

.adapt-view.professional {
  margin-top: 40px;
}

.heading-6 {
  color: #222325;
  font-family: Fontfabric mont, sans-serif;
  font-size: 35px;
  line-height: 36px;
}

.heading-6.white-text {
  color: #fff;
}

.task {
  width: 500px;
  padding-bottom: 0;
  padding-right: 40px;
  display: block;
}

.task.imagepro {
  padding-bottom: 26px;
  padding-left: 35px;
  padding-right: 35px;
}

.task.photo-iphone {
  width: 430px;
  position: relative;
  top: -147px;
  bottom: 0;
  overflow: hidden;
}

.task.project {
  border-radius: 0;
  margin-top: auto;
  margin-bottom: auto;
  padding-bottom: 0;
  padding-right: 0;
  display: block;
  position: absolute;
}

.paragraph-5 {
  color: #222325;
  margin-top: 19px;
  padding-left: 0;
  padding-right: 40px;
  font-family: Sora, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 34px;
}

.paragraph-5.white-p {
  color: #fff;
}

.button-4 {
  color: #000;
  background-color: #ffc73b;
  border: 1px solid #000;
  border-radius: 6px;
  margin-right: 20px;
  font-family: Sora, sans-serif;
  font-weight: 300;
}

.button-4:active,
.button-4:focus {
  display: block;
}

.button-5 {
  color: #000;
  background-color: #fff;
  border-radius: 6px;
  font-family: Sora, sans-serif;
  font-weight: 300;
}

.div-block-6 {
  justify-content: flex-start;
  margin-top: 20px;
  display: flex;
}

.div-block-7 {
  flex: 0 auto;
  margin-bottom: 25px;
  padding-left: 40px;
  padding-right: 81px;
}

.js-embed {
  display: none;
}

.continue-with-button-black {
  height: 50px;
  color: #fff;
  background-color: #222325;
  border: 1px solid #000;
  border-radius: 8px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  margin-left: 60px;
  margin-right: 60px;
  padding: 10px 24px;
  text-decoration: none;
  display: flex;
}

.continue-with-text-white {
  color: #fff;
  text-align: left;
  align-items: center;
  margin-bottom: 0;
  font-style: normal;
  text-decoration: none;
  display: block;
}

.div-block-8 {
  width: 21px;
  height: 0;
}

.image-8 {
  object-fit: fill;
}

.vertical-line-white {
  width: 1px;
  height: 25px;
  background-color: #fff;
  margin-left: 25px;
  margin-right: 25px;
}

.paragraph-7 {
  opacity: 0.5;
  color: #222325;
  margin-left: 82px;
  margin-right: 82px;
  font-size: 12px;
}

.continue-with-button-white {
  height: 50px;
  color: #222325;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 8px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  margin-left: 60px;
  margin-right: 60px;
  padding: 10px 24px;
  text-decoration: none;
  display: flex;
}

.continue-with-text-black {
  color: #222325;
  text-align: left;
  align-items: center;
  margin-bottom: 0;
  font-style: normal;
  text-decoration: none;
  display: block;
}

.vertical-line-black {
  width: 1px;
  height: 25px;
  background-color: #222325;
  margin-left: 25px;
  margin-right: 25px;
}

.dark-block {
  max-width: 2000px;
  color: #222325;
  background-color: #222325;
  margin-top: 78px;
  padding-bottom: 60px;
}

.section-2 {
  width: 100%;
}

.section-3 {
  width: 900px;
  min-width: 80%;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
}

.paragraph-8 {
  text-align: center;
  margin-bottom: 40px;
  font-family: Sora, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 36px;
}

.paragraph-8.darkp {
  color: #fff;
}

.column-3 {
  color: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  padding-left: 20px;
  padding-right: 20px;
}

.columns-3 {
  margin-left: 10px;
  margin-right: 10px;
}

.heading-7 {
  color: #222325;
  font-family: Fontfabric mont, sans-serif;
  font-size: 30px;
}

.div-block-9 {
  background-color: #fff;
  border-radius: 15px;
  margin-left: 20px;
  margin-right: 20px;
  padding: 20px 20px 0;
}

.div-block-9.offer-1 {
  margin-bottom: 0;
  padding-top: 40px;
  padding-bottom: 0;
}

.div-block-9.offer-two,
.div-block-9.offer-three {
  padding-top: 40px;
}

.heading-8 {
  color: #64c67e;
  margin-top: 13px;
  font-family: Fontfabric mont, sans-serif;
  font-size: 40px;
  line-height: 30px;
}

.heading-8.middle-text {
  color: #7f9dff;
}

.heading-8.middle-text.red-text {
  color: #fc7557;
}

.button-6 {
  min-width: 100%;
  display: block;
}

.button-kairn {
  display: flex; /* flex to center content */
  justify-content: center; /* horizontal center */
  align-items: center; /* vertical center */
  width: 100%; /* full width of parent */
  padding: 8px 0; /* vertical padding */
  background-color: #222325; /* dark background */
  color: #fff; /* white text */
  border-radius: 4px; /* rounded corners */
  text-decoration: none; /* remove underline */
  font-family: Sora, sans-serif; /* custom font */
  font-weight: 600; /* semi-bold */
  font-size: 14px; /* readable font size */
  cursor: pointer; /* pointer on hover */
  box-sizing: border-box; /* include padding in width */
  transition: background-color 0.3s; /* smooth hover effect */
}

/* Hover effect */
.button-kairn:hover {
  background-color: #444548; /* slightly lighter on hover */
}

.button-7 {
  cursor: pointer;
  background-color: #222325;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: Sora, sans-serif;
  font-weight: 600;
}

.button-7.coming-btn {
  color: #222325;
  cursor: default;
  background-color: rgba(34, 35, 37, 0.14);
}

.list-item {
  color: #000;
  background-image: url("https://assets-global.website-files.com/621e2f8a07e5ac72dc2748f4/622093afb190931330fff6b2_Star%203.svg");
  background-position: 0 4px;
  background-repeat: no-repeat;
  background-size: 15px;
  background-attachment: scroll;
  margin-top: 0;
  margin-bottom: 6px;
  padding-bottom: 8px;
  padding-left: 30px;
  font-family: Sora, sans-serif;
}

.list-item.list-feat-1 {
  text-transform: uppercase;
  background-image: url("https://assets-global.website-files.com/621e2f8a07e5ac72dc2748f4/6220992cb3dbfb2591d073a4_Union.svg");
  background-size: 15px;
  font-weight: 600;
}

.list-item.list-feat-1.list-feat-2 {
  background-image: url("https://assets-global.website-files.com/621e2f8a07e5ac72dc2748f4/62209f3a1b24267d98d461d9_UnionZ.svg");
  background-size: 15px;
}

.list-item.star-purple {
  background-image: url("https://assets-global.website-files.com/621e2f8a07e5ac72dc2748f4/62209f5524c0605441cccdba_Star%204.svg");
  background-size: 15px;
}

.list-item-2 {
  color: #000;
  margin-bottom: 8px;
  font-family: Sora, sans-serif;
}

.list-item-2.list-item.purple-list {
  background-image: url("https://assets-global.website-files.com/621e2f8a07e5ac72dc2748f4/62209a7e1aac4e711e8cc67b_Star%20purple.svg");
  background-size: 15px;
}

.list-item-3 {
  color: #000;
  margin-bottom: 8px;
  font-family: Sora, sans-serif;
}

.list-item-3.list-item.purple-list {
  background-image: url("https://assets-global.website-files.com/621e2f8a07e5ac72dc2748f4/62209a7e1aac4e711e8cc67b_Star%20purple.svg");
  background-size: 15px;
}

.list {
  margin-top: 40px;
  margin-bottom: 30px;
  padding-bottom: 23px;
  padding-left: 0;
  list-style-type: none;
}

.list.list-offer-2 {
  padding-bottom: 28px;
}

.list.list-offer-2.list-one {
  margin-top: 40px;
  padding-bottom: 13px;
}

.section-4 {
  max-width: 1200px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  padding-left: 20px;
  padding-right: 20px;
}

.span-middle {
  color: #222325;
  font-family: Sora, sans-serif;
  font-size: 18px;
  font-weight: 300;
}

.coming-soon {
  color: rgba(0, 0, 0, 0.5);
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  padding-left: 4px;
  font-size: 10px;
  display: inline-block;
}

.reviews {
  max-width: 1100px;
}

.bloc-review {
  background-color: snow;
  border: 1px solid #000;
  border-radius: 15px;
  padding: 20px;
}

.bloc-review.alan {
  margin-bottom: 20px;
}

.logo-review {
  width: 160px;
  min-height: 29px;
  padding-left: 0;
}

.review-p {
  color: #222325;
  padding-top: 10px;
  font-family: Sora, sans-serif;
  font-weight: 300;
  line-height: 21px;
}

.reviewer {
  justify-content: flex-start;
  align-items: center;
  margin-top: -5px;
  margin-bottom: -10px;
  display: flex;
}

.name-reviewer {
  color: #222325;
  font-family: Sora, sans-serif;
  font-weight: 500;
}

.job-title {
  color: rgba(34, 35, 37, 0.44);
  margin-top: -10px;
  font-family: Sora, sans-serif;
  font-size: 12px;
  font-weight: 300;
}

.div-block-10 {
  padding-top: 10px;
  padding-left: 10px;
}

.columns-4 {
  margin-top: 37px;
}

.column-4,
.column-5,
.column-6,
.column-7 {
  padding-left: 20px;
  padding-right: 20px;
}

.footer {
  max-width: 2000px;
  color: #222325;
  background-color: #222325;
  margin-top: 67px;
  padding-left: 20px;
  padding-right: 20px;
}

.section-5 {
  max-width: 1200px;
  justify-content: space-between;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.baseline {
  color: #fff;
  margin-top: 13px;
  padding-bottom: 15px;
  font-family: Sora, sans-serif;
  font-size: 16px;
  font-weight: 200;
}

.socials {
  display: block;
}

.image-9,
.image-10 {
  margin-right: 10px;
}

.crafted {
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.credits {
  color: rgba(255, 255, 255, 0.63);
  font-family: Sora, sans-serif;
  font-weight: 300;
}

.credits.links-legal {
  line-height: 22px;
}

.section-6 {
  max-width: 1200px;
  border-top: 1px solid rgba(255, 255, 255, 0.72);
  margin: -5px auto 34px;
  padding-top: 30px;
}

.column-8 {
  padding-left: 10px;
  padding-right: 10px;
}

.utility-page-wrap {
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.utility-page-content {
  width: 260px;
  text-align: center;
  flex-direction: column;
  display: flex;
}

.project-view {
  opacity: 0;
  object-fit: fill;
  display: block;
  position: absolute;
  overflow: visible;
}

.image-11 {
  font-size: 23px;
  line-height: 24px;
}

.div-block-11 {
  height: 1px;
  opacity: 0.15;
  color: #171819;
  background-color: #222325;
  margin-bottom: 16px;
  margin-left: 60px;
  margin-right: 60px;
  padding-left: 0;
  padding-right: 0;
}

.field-label {
  color: #222325;
  text-align: left;
  font-weight: 400;
}

.form {
  margin-left: 60px;
  margin-right: 60px;
}

.text-field {
  border-radius: 8px;
}

.form-block {
  height: 63px;
}

.paragraph-9 {
  color: #222325;
  text-align: center;
  margin-left: 60px;
  margin-right: 60px;
  display: none;
}

.js-close-modal {
  display: none;
}

.link-block {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 5%;
  right: 5%;
}

.image-14 {
  width: 500px;
  object-fit: contain;
  margin-right: 40px;
  padding-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
}

.image-15 {
  z-index: 9999;
  width: 300px;
  object-fit: contain;
  display: block;
  position: relative;
  top: -103px;
  bottom: 0;
  left: -69px;
  overflow: visible;
}

.html-embed {
  margin-left: 0;
  margin-right: 0;
  font-size: 15px;
}

.section-7 {
  padding-left: 20px;
  padding-right: 20px;
}

.div-block-12 {
  width: 500px;
  flex: none;
  position: relative;
  bottom: -16px;
}

.body-2 {
  background-color: #f7f5ed;
}

.container-2 {
  justify-content: center;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 150px;
  display: flex;
}

.section-8 {
  text-align: center;
  background-color: #ffc73a;
  border: 1px solid #000;
  border-radius: 25px;
  padding: 60px 40px 0;
  display: flex;
}

.paragraph-10 {
  color: #222325;
  font-family: Sora, sans-serif;
  font-size: 18px;
  line-height: 25px;
}

.heading-9 {
  color: #222325;
  font-family: Fontfabric mont, sans-serif;
  font-size: 30px;
  line-height: 40px;
}

.image-phoneos {
  width: 315px;
  height: 300px;
  max-width: 100%;
  position: static;
  bottom: -57px;
}

.div-block-13 {
  padding-top: 20px;
  padding-bottom: 60px;
  padding-left: 40px;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.html-embed-2,
.invisible,
.utm-filler.invisibile {
  display: none;
}

.grid {
  grid-template-areas: "Area";
}

.image-16 {
  border-radius: 14px;
}

.dropdown-list {
  background-color: #f7f5ed;
  border: 1px #000;
  text-decoration: none;
}

.dropdown-list.w--open {
  border: 1px solid #222325;
  border-radius: 7px;
}

.dropdown-link {
  text-decoration: underline;
}

.dropdown-link-2 {
  outline-offset: 0px;
  border: 43px solid #000;
  border-radius: 5px;
  outline: 3px #222;
  text-decoration: none;
}

.dropdown-link-3 {
  border: 1px solid #f7f5ed;
}

.no-underline {
  padding-bottom: 10px;
  text-decoration: none;
}

@media screen and (max-width: 991px) {
  .body {
    margin-left: 0;
    margin-right: 0;
  }

  .logo-kairn {
    width: 300px;

    left: 0;
  }

  .navbar {
    margin-left: 10px;
    margin-right: 10px;
  }

  .container {
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .main-header {
    padding-left: 20px;
    padding-right: 20px;
  }

  .image {
    display: none;
  }

  .columns {
    display: block;
  }

  .marquee-text {
    margin-right: 15vw;
    font-size: 20px;
  }

  .image-2 {
    width: 50px;
  }

  .image-3 {
    width: 150px;
  }

  .image-4 {
    width: 50px;
  }

  .heading-2.head-white {
    line-height: 54px;
  }

  .modal-wrapper {
    display: none;
  }

  .heading-4.headpop {
    font-size: 30px;
  }

  .image-6.image-connect {
    width: auto;
    margin-left: auto;
  }

  .div-block-5.adapt-yellow {
    display: block;
  }

  .div-block-5.adapt-yellow.adapt-blue {
    display: flex;
  }

  .div-block-5.adapt-white,
  .div-block-5.adapt-red,
  .div-block-5.adapt-yellow {
    display: block;
  }

  .adapt-view.adaptativeview,
  .adapt-view.professional {
    padding-left: 10px;
    padding-right: 10px;
  }

  .task.imagepro {
    width: 70%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .task.photo-iphone {
    width: 400px;
    margin-top: 0;
    top: 0;
  }

  .task.project {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .div-block-7 {
    padding-left: 0;
  }

  .section-3 {
    width: auto;
  }

  .column-3 {
    padding-left: 0;
    padding-right: 0;
  }

  .columns-3 {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .div-block-9.offer-two,
  .div-block-9.offer-three {
    margin-top: 26px;
  }

  .column-7 {
    display: none;
  }

  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .column-8 {
    padding-left: 0;
    padding-right: 0;
  }

  .column-10 {
    display: flex;
  }

  .icon {
    display: none;
  }

  .menu-button {
    color: #000;
    display: none;
  }

  .image-12 {
    max-width: 550px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .column-11 {
    padding-left: 0;
    padding-right: 0;
  }

  .image-15 {
    display: block;
  }

  .div-block-12 {
    width: auto;
    height: 300px;
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .logo-kairn {
    width: 300px;
    position: relative;
    left: -73px;
  }

  .container {
    flex-direction: row;
    padding-right: 0;
    display: block;
  }

  .marquee-horizontal.marquee-2 {
    border-style: none;
  }

  .columns-2 {
    display: block;
  }

  .div-block-4 {
    margin-top: 40px;
  }

  .div-block-5.adapt-yellow.adapt-blue {
    padding-bottom: 40px;
  }

  .adapt-view.adaptativeview.mobile-blue {
    margin-top: 40px;
  }

  .task.photo-iphone {
    display: none;
  }

  .project-view {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    position: static;
  }

  .icon,
  .image-15 {
    display: none;
  }

  .html-embed {
    margin-left: 0;
    display: flex;
  }

  .div-block-12 {
    height: 300px;
  }

  .section-8 {
    margin-left: 10px;
    margin-right: 10px;
    display: block;
  }

  .paragraph-10 {
    font-size: 14px;
    line-height: 21px;
  }

  .heading-9 {
    font-size: 20px;
    line-height: 31px;
  }

  .image-phoneos {
    width: 150px;
  }

  .div-block-13 {
    padding-left: 0;
  }
}

@media screen and (max-width: 479px) {
  .body {
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
  }

  .logo-kairn {
    width: 300px;
    margin-left: 0;
    position: relative;
    left: -6px;
  }

  .navbar {
    border-bottom-style: solid;
    margin-left: 10px;
    margin-right: 10px;
    display: block;
  }

  .container {
    width: auto;
    border-bottom-style: none;
    flex-flow: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-content: flex-start;
    justify-content: space-around;
    align-items: flex-start;
    padding: 10px 0;
    display: inline;
    overflow: visible;
  }

  .nav-menu {
    display: none;
  }

  .heading {
    font-size: 32px;
    line-height: 42px;
  }

  .main-header {
    padding-left: 10px;
    padding-right: 10px;
  }

  .image {
    display: none;
  }

  .columns {
    display: block;
  }

  .purple-highlight {
    line-height: 39px;
  }

  .paragraph {
    margin-top: 10px;
    font-size: 14px;
    line-height: 25px;
  }

  .bouton-nav {
    font-size: 15px;
  }

  .marquee-text {
    margin-right: 29vw;
    font-size: 15px;
  }

  .image-2 {
    width: 40px;
  }

  .image-3 {
    width: 100px;
  }

  .image-4 {
    width: 40px;
  }

  .prioritize,
  .section {
    margin-top: 20px;
  }

  .heading-2 {
    font-size: 30px;
    line-height: 36px;
  }

  .heading-2.head-white {
    font-size: 30px;
    line-height: 35px;
  }

  .paragraph-2 {
    font-size: 14px;
    line-height: 22px;
  }

  .column {
    padding-left: 0;
    padding-right: 0;
  }

  .columns-2 {
    display: block;
  }

  .heading-3 {
    font-size: 28px;
    line-height: 34px;
  }

  .paragraph-3 {
    font-size: 14px;
    line-height: 22px;
  }

  .modal-wrapper {
    display: none;
  }

  .div-block-2 {
    margin-top: 0;
    padding-top: 60px;
  }

  .heading-4.headpop {
    height: 134px;
    font-size: 26px;
    line-height: 28px;
  }

  .column-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .heading-5 {
    font-size: 28px;
    line-height: 34px;
  }

  .paragraph-4 {
    font-size: 14px;
    line-height: 22px;
  }

  .image-6.image-connect {
    margin-left: auto;
  }

  .div-block-3 {
    margin-left: 10px;
    margin-right: 10px;
  }

  .div-block-4 {
    margin-top: 24px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .div-block-5.adapt-yellow {
    padding-left: 20px;
    padding-right: 20px;
    display: block;
  }

  .div-block-5.adapt-yellow.adapt-blue {
    margin-bottom: 0;
    padding-bottom: 20px;
    display: block;
  }

  .div-block-5.adapt-white,
  .div-block-5.adapt-red,
  .div-block-5.adapt-yellow {
    padding-top: 20px;
    padding-left: 20px;
    display: block;
  }

  .adapt-view.adaptativeview {
    display: block;
  }

  .adapt-view.adaptativeview.mobile-blue {
    margin-top: 60px;
    display: block;
  }

  .adapt-view.professional {
    margin-top: 9px;
  }

  .heading-6 {
    font-size: 28px;
    line-height: 35px;
  }

  .task.imagepro {
    width: 100%;
  }

  .task.photo-iphone {
    display: none;
  }

  .task.project {
    width: 100%;
    padding-bottom: 20px;
  }

  .paragraph-5 {
    padding-right: 0;
    font-size: 14px;
    line-height: 20px;
  }

  .button-4,
  .button-5 {
    border-radius: 6px;
    font-family: Sora, sans-serif;
    font-weight: 300;
  }

  .div-block-7 {
    padding-right: 20px;
  }

  .continue-with-button-black {
    margin-left: 10px;
    margin-right: 10px;
  }

  .paragraph-7 {
    margin-left: 0;
    margin-right: 0;
    font-size: 9px;
    line-height: 13px;
  }

  .continue-with-button-white {
    margin-left: 10px;
    margin-right: 10px;
  }

  .section-3 {
    width: auto;
  }

  .paragraph-8.darkp {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 16px;
    line-height: 22px;
  }

  .heading-7 {
    font-size: 23px;
  }

  .div-block-9.offer-1,
  .div-block-9.offer-two,
  .div-block-9.offer-three {
    padding-top: 20px;
  }

  .heading-8,
  .heading-8.middle-text,
  .heading-8.middle-text.red-text {
    font-size: 30px;
  }

  .section-4 {
    padding-left: 0;
    padding-right: 0;
  }

  .section-5 {
    display: block;
  }

  .baseline {
    font-size: 13px;
    line-height: 17px;
  }

  .socials.logo-social {
    margin-top: 40px;
  }

  .image-9,
  .image-10 {
    margin-bottom: 20px;
  }

  .crafted {
    display: block;
  }

  .credits {
    font-size: 10px;
  }

  .credits.links-legal {
    margin-top: 10px;
  }

  .form {
    margin-left: 10px;
    margin-right: 10px;
  }

  .column-9 {
    flex: 0 auto;
    margin-top: -54px;
  }

  .column-10 {
    flex: 0 auto;
  }

  .brand {
    flex: 0 auto;
    position: static;
    left: -79px;
  }

  .icon {
    color: #000;
    display: none;
  }

  .menu-button {
    color: #000;
    flex: 0 auto;
    display: none;
    position: static;
    right: -73px;
  }

  .image-12 {
    max-width: 100%;
    margin-top: 45px;
  }

  .image-13 {
    margin-bottom: 20px;
  }

  .image-14 {
    margin-right: 0;
    padding-left: 0;
    padding-right: 20px;
  }

  .html-embed {
    margin-left: 3px;
    display: block;
  }

  .div-block-12 {
    width: 100%;
    height: 160px;
  }

  .paragraph-10 {
    font-size: 11px;
  }

  .heading-9 {
    font-size: 18px;
    line-height: 25px;
  }

  .image-phoneos {
    display: none;
  }
}

@font-face {
  font-family: "Fontfabric mont";
  src: url("https://uploads-ssl.webflow.com/621e2f8a07e5ac72dc2748f4/621e319b5c4d6b511a47f4a4_Fontfabric%20-%20Mont%20Black.otf")
      format("opentype"),
    url("https://uploads-ssl.webflow.com/621e2f8a07e5ac72dc2748f4/621e319b968902634f058bba_Fontfabric%20-%20Mont%20Heavy.otf")
      format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fontfabric mont";
  src: url("https://uploads-ssl.webflow.com/621e2f8a07e5ac72dc2748f4/621e319b5c4d6b329447f4a3_Fontfabric%20-%20Mont%20Black%20Italic.otf")
      format("opentype"),
    url("https://uploads-ssl.webflow.com/621e2f8a07e5ac72dc2748f4/621e319b5b6ece541182587a_Fontfabric%20-%20Mont%20Heavy%20Italic.otf")
      format("opentype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Fontfabric mont";
  src: url("https://uploads-ssl.webflow.com/621e2f8a07e5ac72dc2748f4/621e319add422f2547483bf0_Fontfabric%20-%20Mont%20Bold%20Italic.otf")
    format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Fontfabric mont";
  src: url("https://uploads-ssl.webflow.com/621e2f8a07e5ac72dc2748f4/621e319a5a47040a798c9aca_Fontfabric%20-%20Mont%20Bold.otf")
    format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fontfabric mont book";
  src: url("https://uploads-ssl.webflow.com/621e2f8a07e5ac72dc2748f4/621e319bc6ed6a7290baa644_Fontfabric%20-%20Mont%20Book%20Italic.otf")
    format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Fontfabric mont demo";
  src: url("https://uploads-ssl.webflow.com/621e2f8a07e5ac72dc2748f4/621e319bc4434e3a2e19af15_Fontfabric%20-%20Mont%20ExtraLight%20DEMO.otf")
    format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fontfabric mont hairline";
  src: url("https://uploads-ssl.webflow.com/621e2f8a07e5ac72dc2748f4/621e319b7ced8bd62fbfcaf7_Fontfabric%20-%20Mont%20Hairline.otf")
    format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fontfabric mont hairline";
  src: url("https://uploads-ssl.webflow.com/621e2f8a07e5ac72dc2748f4/621e319b4f40fcf7e6b37e11_Fontfabric%20-%20Mont%20Hairline%20Italic.otf")
    format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Fontfabric mont";
  src: url("https://uploads-ssl.webflow.com/621e2f8a07e5ac72dc2748f4/621e319b6a4f441652e5f995_Fontfabric%20-%20Mont%20ExtraLight.otf")
    format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fontfabric mont";
  src: url("https://uploads-ssl.webflow.com/621e2f8a07e5ac72dc2748f4/621e319bdd422f31ba483bfc_Fontfabric%20-%20Mont%20ExtraLight%20Italic.otf")
    format("opentype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Fontfabric mont demo";
  src: url("https://uploads-ssl.webflow.com/621e2f8a07e5ac72dc2748f4/621e319bb007ea8ccbb3aee9_Fontfabric%20-%20Mont%20Heavy%20DEMO.otf")
    format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fontfabric mont";
  src: url("https://uploads-ssl.webflow.com/621e2f8a07e5ac72dc2748f4/621e319b6c4d3ad63120c5d9_Fontfabric%20-%20Mont%20Light%20Italic.otf")
    format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Fontfabric mont";
  src: url("https://uploads-ssl.webflow.com/621e2f8a07e5ac72dc2748f4/621e319bc4927f100eed4a3d_Fontfabric%20-%20Mont%20Light.otf")
    format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fontfabric mont";
  src: url("https://uploads-ssl.webflow.com/621e2f8a07e5ac72dc2748f4/621e319b8ca6d150870a0774_Fontfabric%20-%20Mont%20SemiBold%20Italic.otf")
    format("opentype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Fontfabric mont";
  src: url("https://uploads-ssl.webflow.com/621e2f8a07e5ac72dc2748f4/621e319b0957c61564fcc08b_Fontfabric%20-%20Mont%20SemiBold.otf")
    format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fontfabric mont";
  src: url("https://uploads-ssl.webflow.com/621e2f8a07e5ac72dc2748f4/621e319bc6ed6a3007baa649_Fontfabric%20-%20Mont%20Thin%20Italic.otf")
    format("opentype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Fontfabric mont book";
  src: url("https://uploads-ssl.webflow.com/621e2f8a07e5ac72dc2748f4/621e319b97559475cb640a3b_Fontfabric%20-%20Mont%20Book.otf")
    format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fontfabric mont";
  src: url("https://uploads-ssl.webflow.com/621e2f8a07e5ac72dc2748f4/621e319b3b8dc92a0f35bf97_Fontfabric%20-%20Mont%20Regular%20Italic.otf")
    format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Fontfabric mont";
  src: url("https://uploads-ssl.webflow.com/621e2f8a07e5ac72dc2748f4/621e319b364db036b8ff12dd_Fontfabric%20-%20Mont%20Thin.otf")
    format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fontfabric mont";
  src: url("https://uploads-ssl.webflow.com/621e2f8a07e5ac72dc2748f4/621e319bc4927f2d3eed4a3e_Fontfabric%20-%20Mont%20Regular.otf")
    format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
