         /* Get rid of top margin on first element in any rich text element */
          .w-richtext> :not(div):first-child,
          .w-richtext>div:first-child> :first-child {
            margin-top: 0 !important;
          }

          /* Get rid of bottom margin on last element in any rich text element */
          .w-richtext>:last-child,
          .w-richtext ol li:last-child,
          .w-richtext ul li:last-child {
            margin-bottom: 0 !important;
          }


          /* Prevent all click and hover interaction with an element */
          .pointer-events-off {
            pointer-events: none;
          }

          /* Enables all click and hover interaction with an element */
          .pointer-events-on {
            pointer-events: auto;
          }

          /* Snippet enables you to add class of div-square which creates and maintains a 1:1 dimension of a div.*/
          .div-square::after {
            content: "";
            display: block;
            padding-bottom: 100%;
          }

          /*Hide focus outline for main content element*/
          main:focus-visible {
            outline: -webkit-focus-ring-color auto 0px;
          }

          /* Make sure containers never lose their center alignment*/
          .container-medium,
          .container-small,
          .container-large {
            margin-right: auto !important;
            margin-left: auto !important;
          }

          /*Reset selects, buttons, and links styles*/
          .w-input,
          .w-select,
          a {
            color: inherit;
            text-decoration: inherit;
            font-size: inherit;
          }

          /*Apply "..." after 3 lines of text */
          .text-style-3lines {
            display: -webkit-box;
            overflow: hidden;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
          }

          /* Apply "..." after 2 lines of text */
          .text-style-2lines {
            display: -webkit-box;
            overflow: hidden;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
          }

          /* Apply "..." at 100% width */
          .truncate-width {
            width: 100%;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
          }

          /* Removes native scrollbar */
          .no-scrollbar {
            -ms-overflow-style: none; // IE 10+
            overflow: -moz-scrollbars-none; // Firefox
          }

          .no-scrollbar::-webkit-scrollbar {
            display: none; // Safari and Chrome
          }

          /* Adds inline flex display */
          .display-inlineflex {
            display: inline-flex;
          }

          /* These classes are never overwritten */
          .hide {
            display: none !important;
          }

          @media screen and (max-width: 991px) {

            .hide,
            .hide-tablet {
              display: none !important;
            }
          }

          @media screen and (max-width: 767px) {
            .hide-mobile-landscape {
              display: none !important;
            }
          }

          @media screen and (max-width: 479px) {
            .hide-mobile {
              display: none !important;
            }
          }

          .margin-0 {
            margin: 0rem !important;
          }

          .padding-0 {
            padding: 0rem !important;
          }

          .spacing-clean {
            padding: 0rem !important;
            margin: 0rem !important;
          }

          .margin-top {
            margin-right: 0rem !important;
            margin-bottom: 0rem !important;
            margin-left: 0rem !important;
          }

          .padding-top {
            padding-right: 0rem !important;
            padding-bottom: 0rem !important;
            padding-left: 0rem !important;
          }

          .margin-right {
            margin-top: 0rem !important;
            margin-bottom: 0rem !important;
            margin-left: 0rem !important;
          }

          .padding-right {
            padding-top: 0rem !important;
            padding-bottom: 0rem !important;
            padding-left: 0rem !important;
          }

          .margin-bottom {
            margin-top: 0rem !important;
            margin-right: 0rem !important;
            margin-left: 0rem !important;
          }

          .padding-bottom {
            padding-top: 0rem !important;
            padding-right: 0rem !important;
            padding-left: 0rem !important;
          }

          .margin-left {
            margin-top: 0rem !important;
            margin-right: 0rem !important;
            margin-bottom: 0rem !important;
          }

          .padding-left {
            padding-top: 0rem !important;
            padding-right: 0rem !important;
            padding-bottom: 0rem !important;
          }

          .margin-horizontal {
            margin-top: 0rem !important;
            margin-bottom: 0rem !important;
          }

          .padding-horizontal {
            padding-top: 0rem !important;
            padding-bottom: 0rem !important;
          }

          .margin-vertical {
            margin-right: 0rem !important;
            margin-left: 0rem !important;
          }

          .padding-vertical {
            padding-right: 0rem !important;
            padding-left: 0rem !important;
          }
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: transparent;
  text-decoration: none !important;
  cursor: pointer;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: 700;
}
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;
}
li {
  display: block;
}
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: 700;
}
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: 400;
  font-style: normal;
}
.flex {
  display: flex;
}
[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: 400;
  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: transparent !important;
}

.display-flex{
  display: flex;
}
.flex-1{
  flex: 1;
}
.flex-2{
  flex: 2;
}
.flex-3{
  flex: 3;
}
.flex-4{
  flex: 4;
}

.gradient-span
{
  background-image: url("/public/images/craft/color.jpg");
  background-position: 50% 50%;
  background-size: 120%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#moreloadButton {
  margin: auto;
  width: 173px;
}

.load-more-button {
  background: #222;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 45px;
  margin: auto;
}

.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: 0 0;
  border: 0 transparent;
  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;
}
.log_in
{
  padding: 0px 22px;
}
.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 8px 6px 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: 700;
}
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: 30px;
}
.hidden {
  display: none;
}
.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;
}
.show-hide {
  display: none;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
.flex {
  display: flex;
}
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: 700;
  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: 400;
  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: 400;
  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: 400;
  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: 400;
  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%;
  }
  .mobile_sidebar{
    display: block !important;
  }
  .but_navvv{
    margin-bottom: 3em;
  }

}
@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 transparent;
  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 transparent;
  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: transparent;
  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: transparent;
  tap-highlight-color: transparent;
  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: transparent;
  tap-highlight-color: transparent;
  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: transparent;
  tap-highlight-color: transparent;
  -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: 50%;
  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: translate(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: translateY(-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 transparent;
  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: transparent;
  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;
  margin: auto;
}
[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%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  bottom: 0;
  height: auto;
  z-index: 9999;
  background: #222;
  display: none;
}
.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: transparent;
  tap-highlight-color: transparent;
  -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;
}

.mobile_sidebar{
  display: none;
}
.navclose-button.navicon {
  background: transparent;
  border: 3px solid rgba(255, 255, 255, 0.15);
  font-size: 15px;
  padding: 3px 11px;
}

@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;
  }
  .home_banner_section{
    margin-top: 65px !important;
  width: 89% !important;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  border-bottom-right-radius: 27px;
  border-bottom-left-radius: 27px;
  }
}
@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;
    margin-left: 12px;
  }
  .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);
  }
  to {
    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;
}
.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}
.w-backgroundvideo-backgroundvideoplaypausebutton:focus-visible {
  outline-offset: 2px;
  border-radius: 50%;
  outline: 2px solid #3b79c3;
}
body {
  color: #f1f0ee;
  background-color: #161616;
  font-family: Relative, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
h1 {
  letter-spacing: -0.04em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 5.5rem;
  font-weight: 400;
  line-height: 1.1;
}
h2 {
  letter-spacing: -0.04em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.1;
}
h3 {
  letter-spacing: -0.04em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Relative, sans-serif;
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.2;
}
h4 {
  letter-spacing: -0.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.2;
}
h5 {
  letter-spacing: -0.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
}
h6 {
  letter-spacing: -0.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
}

p {
  color: rgba(216, 213, 209, 0.8);
  margin-bottom: 0;
}
a {
  color: #8874ff;
  border-color: #fff;
}
/*ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}*/
ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
/*li {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  padding-left: 0.5rem;
}*/
img {
  max-width: 100%;
  display: inline-block;
}
label {
  margin-bottom: 0.25rem;
  font-weight: 500;
}
blockquote {
  border-left: 0.1875rem solid #fff;
  margin-bottom: 0;
  padding: 0.75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}
figure {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
figcaption {
  text-align: center;
  margin-top: 0.25rem;
}
.noneButton {
  background: none;
  border: none;
}
.z-index-2 {
  z-index: 2;
  position: relative;
}
.max-width-full {
  width: 100%;
  max-width: none;
}
.layer {
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}
.overflow-hidden {
  overflow: hidden;
}
.global-styles {
  display: block;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}
.z-index-1 {
  z-index: 1;
  position: relative;
}
.hide {
  display: none;
}
.text-style-link {
  text-decoration: underline;
}
.max-width-xlarge {
  width: 100%;
  max-width: 64rem;
}
.max-width-medium {
  width: 100%;
  max-width: 35rem;
}
.max-width-xsmall {
  width: 100%;
  max-width: 25rem;
}
.max-width-xxsmall {
  width: 100%;
  max-width: 20rem;
}
.page-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
}
.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 2px solid #2c2c2c;
}
.max-width-xxlarge {
  width: 100%;
  max-width: 80rem;
}
.align-center {
  margin-left: auto;
  margin-right: auto;
}
.spacing-clean {
  margin: 0;
  padding: 0;
}
.max-width-large {
  width: 100%;
  max-width: 48rem;
}
.max-width-small {
  width: 100%;
  max-width: 30rem;
}
.form-message-error {
  margin-top: 0.75rem;
  padding: 0.75rem;
}
.utility_component {
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}
.utility_form-block {
  max-width: 20rem;
  text-align: center;
  flex-direction: column;
  display: flex;
}
.utility_form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}
.utility_image {
  margin-bottom: 0.5rem;
  margin-left: auto;
  margin-right: auto;
}
.main-wrapper {
  width: 100%;
}
.container-medium {
  width: 100%;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}
.container-small {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.margin-tiny {
  margin: 0.25rem;
}
.margin-xxsmall {
  margin: 0.5rem;
}
.margin-xsmall {
  margin: 1rem;
}
.margin-small {
  margin: 1.5rem;
}
.margin-medium {
  margin: 2rem;
}
.margin-large {
  margin: 3rem;
}
.margin-xlarge {
  margin: 4rem;
}
.margin-xxlarge {
  margin: 5rem;
}
.margin-huge {
  margin: 6rem;
}
.margin-xhuge {
  margin: 7rem;
}
.margin-xxhuge {
  margin: 10rem;
}
.margin-0 {
  margin: 0;
}
.padding-0 {
  padding: 0;
}
.padding-tiny {
  padding: 0.25rem;
}
.padding-xxsmall {
  padding: 0.5rem;
}
.padding-xsmall {
  padding: 1rem;
}
.padding-small {
  padding: 1.5rem;
}
.padding-medium {
  padding: 2rem;
}
.padding-large {
  padding: 3rem;
}
.padding-xlarge {
  padding: 4rem;
}
.padding-xxlarge {
  padding: 5rem;
}
.padding-huge {
  padding: 6rem;
}
.padding-xhuge {
  padding: 7rem;
}
.padding-xxhuge {
  padding: 10rem;
}
.margin-top,
.margin-top.margin-custom1,
.margin-top.margin-huge,
.margin-top.margin-small,
.margin-top.margin-tiny,
.margin-top.margin-custom3,
.margin-top.margin-medium,
.margin-top.margin-xxsmall,
.margin-top.margin-xxhuge,
.margin-top.margin-custom2,
.margin-top.margin-xsmall,
.margin-top.margin-large,
.margin-top.margin-xxlarge,
.margin-top.margin-xlarge,
.margin-top.margin-0,
.margin-top.margin-xhuge {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}
.margin-bottom,
.margin-bottom.margin-xxlarge,
.margin-bottom.margin-medium,
.margin-bottom.margin-custom3,
.margin-bottom.margin-custom1,
.margin-bottom.margin-tiny,
.margin-bottom.margin-small,
.margin-bottom.margin-large,
.margin-bottom.margin-0,
.margin-bottom.margin-xlarge,
.margin-bottom.margin-xhuge,
.margin-bottom.margin-xxhuge,
.margin-bottom.margin-huge,
.margin-bottom.margin-xxsmall,
.margin-bottom.margin-custom2,
.margin-bottom.margin-xsmall {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}
.margin-left,
.margin-left.margin-tiny,
.margin-left.margin-xxlarge,
.margin-left.margin-0,
.margin-left.margin-small,
.margin-left.margin-xsmall,
.margin-left.margin-large,
.margin-left.margin-huge,
.margin-left.margin-xlarge,
.margin-left.margin-custom3,
.margin-left.margin-xxsmall,
.margin-left.margin-custom1,
.margin-left.margin-custom2,
.margin-left.margin-xhuge,
.margin-left.margin-xxhuge,
.margin-left.margin-medium {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}
.margin-right,
.margin-right.margin-huge,
.margin-right.margin-xsmall,
.margin-right.margin-xxhuge,
.margin-right.margin-small,
.margin-right.margin-medium,
.margin-right.margin-xlarge,
.margin-right.margin-custom3,
.margin-right.margin-custom2,
.margin-right.margin-xxsmall,
.margin-right.margin-xhuge,
.margin-right.margin-custom1,
.margin-right.margin-large,
.margin-right.margin-0,
.margin-right.margin-xxlarge,
.margin-right.margin-tiny {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}
.margin-vertical,
.margin-vertical.margin-medium,
.margin-vertical.margin-xlarge,
.margin-vertical.margin-xxsmall,
.margin-vertical.margin-xxlarge,
.margin-vertical.margin-huge,
.margin-vertical.margin-0,
.margin-vertical.margin-xxhuge,
.margin-vertical.margin-tiny,
.margin-vertical.margin-xsmall,
.margin-vertical.margin-custom1,
.margin-vertical.margin-small,
.margin-vertical.margin-large,
.margin-vertical.margin-xhuge,
.margin-vertical.margin-custom2,
.margin-vertical.margin-custom3 {
  margin-left: 0;
  margin-right: 0;
}
.margin-horizontal,
.margin-horizontal.margin-medium,
.margin-horizontal.margin-tiny,
.margin-horizontal.margin-custom3,
.margin-horizontal.margin-0,
.margin-horizontal.margin-xxlarge,
.margin-horizontal.margin-xhuge,
.margin-horizontal.margin-huge,
.margin-horizontal.margin-xlarge,
.margin-horizontal.margin-custom1,
.margin-horizontal.margin-xxsmall,
.margin-horizontal.margin-xsmall,
.margin-horizontal.margin-large,
.margin-horizontal.margin-custom2,
.margin-horizontal.margin-small,
.margin-horizontal.margin-xxhuge {
  margin-top: 0;
  margin-bottom: 0;
}
.padding-top,
.padding-top.padding-xhuge,
.padding-top.padding-xxhuge,
.padding-top.padding-0,
.padding-top.padding-large,
.padding-top.padding-custom2,
.padding-top.padding-xlarge,
.padding-top.padding-huge,
.padding-top.padding-xxsmall,
.padding-top.padding-custom3,
.padding-top.padding-tiny,
.padding-top.padding-medium,
.padding-top.padding-xxlarge,
.padding-top.padding-small,
.padding-top.padding-xsmall,
.padding-top.padding-custom1 {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.padding-bottom,
.padding-bottom.padding-xlarge,
.padding-bottom.padding-small,
.padding-bottom.padding-xxhuge,
.padding-bottom.padding-large,
.padding-bottom.padding-xhuge,
.padding-bottom.padding-custom2,
.padding-bottom.padding-xxsmall,
.padding-bottom.padding-xxlarge,
.padding-bottom.padding-custom3,
.padding-bottom.padding-custom1,
.padding-bottom.padding-xsmall,
.padding-bottom.padding-huge,
.padding-bottom.padding-tiny,
.padding-bottom.padding-medium,
.padding-bottom.padding-0 {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}
.padding-left,
.padding-left.padding-xhuge,
.padding-left.padding-xlarge,
.padding-left.padding-0,
.padding-left.padding-small,
.padding-left.padding-xsmall,
.padding-left.padding-medium,
.padding-left.padding-xxhuge,
.padding-left.padding-huge,
.padding-left.padding-custom1,
.padding-left.padding-tiny,
.padding-left.padding-xxsmall,
.padding-left.padding-custom3,
.padding-left.padding-custom2,
.padding-left.padding-xxlarge,
.padding-left.padding-large {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}
.padding-right,
.padding-right.padding-xxhuge,
.padding-right.padding-custom2,
.padding-right.padding-large,
.padding-right.padding-xlarge,
.padding-right.padding-tiny,
.padding-right.padding-custom3,
.padding-right.padding-custom1,
.padding-right.padding-xsmall,
.padding-right.padding-xxlarge,
.padding-right.padding-xxsmall,
.padding-right.padding-medium,
.padding-right.padding-xhuge,
.padding-right.padding-huge,
.padding-right.padding-0,
.padding-right.padding-small {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}
.padding-vertical,
.padding-vertical.padding-0,
.padding-vertical.padding-xxhuge,
.padding-vertical.padding-large,
.padding-vertical.padding-custom3,
.padding-vertical.padding-medium,
.padding-vertical.padding-tiny,
.padding-vertical.padding-xxlarge,
.padding-vertical.padding-custom1,
.padding-vertical.padding-xsmall,
.padding-vertical.padding-xhuge,
.padding-vertical.padding-xlarge,
.padding-vertical.padding-custom2,
.padding-vertical.padding-xxsmall,
.padding-vertical.padding-huge,
.padding-vertical.padding-small {
  padding-left: 0;
  padding-right: 0;
}
.padding-horizontal,
.padding-horizontal.padding-xxsmall,
.padding-horizontal.padding-0,
.padding-horizontal.padding-custom3,
.padding-horizontal.padding-huge,
.padding-horizontal.padding-xsmall,
.padding-horizontal.padding-medium,
.padding-horizontal.padding-xxlarge,
.padding-horizontal.padding-large,
.padding-horizontal.padding-xhuge,
.padding-horizontal.padding-custom1,
.padding-horizontal.padding-tiny,
.padding-horizontal.padding-custom2,
.padding-horizontal.padding-xxhuge,
.padding-horizontal.padding-small,
.padding-horizontal.padding-xlarge {
  padding-top: 0;
  padding-bottom: 0;
}
.overflow-scroll {
  overflow: scroll;
}
.overflow-auto {
  overflow: auto;
}
.text-weight-medium {
  font-weight: 500;
}
.text-size-medium {
  font-size: 1.125rem;
}
.text-size-medium.text-color-darkgrey {
  color: rgba(22, 22, 22, 0.75);
}
.margin-top-auto {
  margin-top: auto;
}
.text-style-quote {
  border-left: 0.1875rem solid #000;
  margin-bottom: 0;
  padding: 0.75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}
.icon-embed-small {
  width: 2rem;
  height: 2rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}
.heading-style-h2 {
  letter-spacing: -0.04em;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.1;
}
.rl-styleguide_tutorial-callout {
  grid-column-gap: 2rem;
  background-color: #fff;
  border: 1px solid #000;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0.75rem 0.75rem 1rem;
  display: flex;
}
.rl-styleguide_callout-link-wrapper {
  width: 100%;
  background-image: linear-gradient(
      135deg,
      rgba(255, 116, 72, 0.15),
      rgba(255, 72, 72, 0.15) 50%,
      rgba(98, 72, 255, 0.15)
    ),
    linear-gradient(#fff, #fff);
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  display: flex;
}
.rl-styleguide_heading {
  z-index: 4;
  color: #fff;
  background-color: #000;
  padding: 0.25rem 0.5rem;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
.styleguide_grid-colours {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}
.background-color-gray {
  background-color: #d8d5d1;
}
.heading-style-h6 {
  letter-spacing: -0.02em;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
}
.rl-styleguide_item-row {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 15rem 1fr;
  align-items: center;
}
.icon-1x1-xsmall {
  width: 1.5rem;
  height: 1.5rem;
}
.rl-styleguide_empty-space {
  z-index: -1;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem;
  display: flex;
  position: relative;
}
.shadow-xxlarge {
  box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.14);
}
.rl-styleguide_icons-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: grid;
}
.icon-embed-medium {
  width: 3rem;
  height: 3rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}
.form-radio {
  align-items: center;
  margin-bottom: 0;
  padding-left: 1.125rem;
  display: flex;
}
.heading-style-h5 {
  letter-spacing: -0.02em;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
}
.text-style-strikethrough {
  text-decoration: line-through;
}
.heading-style-h1 {
  letter-spacing: -0.04em;
  font-size: 6rem;
  font-weight: 400;
  line-height: 1.1;
}
.form-checkbox-icon {
  width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  min-width: 1.125rem;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  margin-top: 0;
  margin-left: -1.25rem;
  margin-right: 0.5rem;
  transition: all 0.2s;
}
.form-checkbox-icon.w--redirected-checked {
  box-shadow: none;
  background-color: #000;
  background-size: 16px 16px;
  border-width: 1px;
  border-color: #000;
}
.form-checkbox-icon.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
}
.form-checkbox-label {
  margin-bottom: 0;
}
.text-size-tiny {
  font-size: 0.75rem;
}
.field-label {
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.button {
  color: #161616;
  text-align: center;
  background-color: #d8d5d1;
  border: 1px solid #d8d5d1;
  border-radius: 0.6rem;
  padding: 0.75rem 1.5rem;
  font-family: Relative, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  transition: all 0.5s;
}
.button:hover {
  background-color: #fff;
  border-color: #fff;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.5);
}
.button.is-link {
  color: #d8d5d1;
  background-color: transparent;
  border-style: none;
  padding: 0.25rem 0;
  line-height: 1;
  text-decoration: none;
}
.button.is-link:hover {
  color: #fff;
}
.button.is-link.is-alternate {
  color: #222;
  background-color: transparent;
}
.button.is-link.is-alternate:hover {
  color: #161616;
  background-color: transparent;
}
.button.is-link.is-icon {
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
}
.button.is-icon {
  grid-column-gap: 0.75rem;
  grid-row-gap: 0.75rem;
  justify-content: center;
  align-items: center;
  padding-left: 1.3rem;
  display: flex;
}
.button.is-secondary {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  color: #ebe7e3;
  background-color: transparent;
  background-image: none;
  border-color: rgba(255, 255, 255, 0.15);
}
.button.is-secondary:hover {
  box-shadow: none;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}
.button.is-secondary.is-alternate {
  color: #161616;
  background-color: transparent;
  background-image: none;
  border-color: rgba(22, 22, 22, 0.15);
}
.button.is-secondary.is-alternate:hover {
  background-color: rgba(0, 0, 0, 0.05);
  background-image: linear-gradient(transparent, transparent);
  border-color: rgba(22, 22, 22, 0.2);
}
.button.is-secondary.is-small.is-icon {
  padding-left: 1rem;

}
.button.is-small {
  padding: 0.6rem 1.25rem;
  font-size: 1rem;
}
.button.is-alternate {
  color: #f1f0ee;
  background-color: #161616;
  border-color: #161616;
}
.button.is-alternate:hover {
  background-color: #161616;
  border-color: #161616;
}
.button.is-alternate.is-icon:hover {
  color: #fff;
  background-color: rgba(34, 34, 34, 0.9);
  border-color: #222;
}
.button.dont-shrink {
  flex: none;
}
.text-weight-normal {
  font-weight: 400;
}
.heading-style-h4 {
  letter-spacing: -0.02em;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
}
.heading-style-h4.is-larger {
  font-size: 2.25rem;
}
.text-style-italic {
  font-style: italic;
}
.icon-1x1-xxsmall {
  width: 1rem;
  height: 1rem;
}
.form-radio-label {
  margin-bottom: 0;
}
.rl-styleguide_item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  justify-content: start;
  align-items: start;
  justify-items: start;
  padding-bottom: 1rem;
  display: grid;
}
.rl-styleguide_item.is-stretch {
  grid-row-gap: 1rem;
  justify-items: stretch;
}
.icon-1x1-xlarge {
  width: 6.5rem;
  height: 6.5rem;
}
.shadow-xlarge {
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.18);
}
.text-weight-light {
  font-weight: 300;
}
.rl-styleguide_label {
  color: #161616;
  white-space: nowrap;
  cursor: context-menu;
  background-color: #0073e6;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  display: inline-block;
}
.rl-styleguide_label.is-html-tag {
  background-color: #be4aa5;
}
.text-size-regular {
  font-size: 1rem;
}
.text-weight-xbold {
  font-weight: 800;
}
.text-align-right {
  text-align: right;
}
.text-weight-bold {
  font-weight: 700;
}
.icon-height-xlarge {
  height: 6.5rem;
}
.heading-style-h3 {
  letter-spacing: -0.03em;
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.2;
}
.icon-1x1-large {
  width: 5rem;
  height: 5rem;
}
.form-input {
  height: auto;
  min-height: 2.75rem;
  color: #fff;
  background-color: #161616;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  margin-bottom: 0;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
}
.form-input:focus {
  border-color: #000;
}
.form-input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.form-input::placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.form-input.is-text-area {
  height: auto;
  min-height: 11.25rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  overflow: auto;
}
.form-input.is-select-input {
  background-image: none;
}
.rl-styleguide_paste-text {
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
  border: 1px dashed rgba(0, 0, 0, 0.15);
  padding: 1rem;
}
.rl-styleguide_button-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1.5rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: max-content;
  grid-auto-flow: row;
  align-items: center;
  justify-items: start;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: grid;
}
.rl-styleguide_button-list.background-color-black {
  background-color: #fff;
}
.rl-styleguide_list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  padding-bottom: 4rem;
}
.icon-embed-custom1 {
  width: 1.25rem;
  height: 1.25rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}
.rl-styleguide_color {
  padding-bottom: 8rem;
}
.rl-styleguide_color.is-white {
  background-color: #fff;
}
.rl-styleguide_color.is-gray {
  background-color: #d8d5d1;
}
.rl-styleguide_color.is-black {
  background-color: #161616;
}
.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}
.button-group.is-center {
  justify-content: center;
}
.text-color-black {
  color: #161616;
}
.background-color-black {
  background-color: #161616;
}
.text-weight-semibold {
  font-weight: 500;
}
.text-style-muted {
  opacity: 0.6;
}
.text-style-nowrap {
  white-space: nowrap;
}
.text-align-left {
  text-align: left;
}
.icon-embed-large {
  width: 5rem;
  height: 5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}
.shadow-xxsmall {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.text-color-white {
  color: #ebe7e3;
}
.icon-embed-xxsmall {
  width: 1rem;
  height: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}
.icon-embed-xsmall {
  width: 1.5rem;
  height: 1.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}
.icon-height-xxsmall {
  height: 1rem;
}
.background-color-white {
  color: #161616;
  background-color: #fff;
}
.shadow-xsmall {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}
.icon-1x1-custom1 {
  width: 1.25rem;
  height: 1.25rem;
}
.rl-styleguide_header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
}
.rl-styleguide_subheading {
  z-index: 3;
  color: #000;
  background-color: #d3d3d3;
  padding: 0.25rem 0.5rem;
  position: -webkit-sticky;
  position: sticky;
  top: 2rem;
}
.form-radio-icon {
  width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  min-width: 1.125rem;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  margin-top: 0;
  margin-left: -1.125rem;
  margin-right: 0.5rem;
}
.form-radio-icon.w--redirected-checked {
  background-color: #fff;
  background-image: none;
  border-width: 6px;
  border-color: #000;
}
.form-radio-icon.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
  margin-top: 0;
}
.rl-styleguide_shadows-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: start;
}
.form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}
.text-style-allcaps {
  text-transform: uppercase;
}
.rl-styleguide_callout-link {
  background-color: #fff;
  background-image: linear-gradient(135deg, #ff7448, #ff4848 50%, #6248ff);
  justify-content: space-between;
  align-items: center;
  padding: 1px;
  display: flex;
}
.icon-height-custom1 {
  height: 1.25rem;
}
.text-align-center {
  text-align: center;
}
.text-size-small {
  font-size: 0.875rem;
}
.class-label-column {
  grid-column-gap: 0.75rem;
  grid-row-gap: 0.75rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}
.form-field-wrapper {
  position: relative;
}
.icon-height-small {
  height: 2rem;
}
.icon-height-large {
  height: 5rem;
}
.shadow-large {
  box-shadow: 0 20px 24px -4px rgba(0, 0, 0, 0.08),
    0 8px 8px -4px rgba(0, 0, 0, 0.03);
}
.icon-embed-xlarge {
  width: 6.5rem;
  height: 6.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}
.icon-1x1-small {
  width: 2rem;
  height: 2rem;
}
.class-label-row {
  grid-column-gap: 0.25rem;
  grid-row-gap: 0.25rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}
.text-rich-text h1 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.text-rich-text blockquote {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.text-rich-text h2,
.text-rich-text h3,
.text-rich-text h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.text-rich-text h5,
.text-rich-text h6 {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}
.text-rich-text p {
  margin-bottom: 1rem;
}
.text-rich-text a {
  text-decoration: underline;
}
.text-rich-text figcaption {
  text-align: left;
  border-left: 2px solid #fff;
  margin-top: 0.5rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}
.icon-height-medium {
  height: 3rem;
}
.form-checkbox {
  align-items: center;
  margin-bottom: 0;
  padding-left: 1.25rem;
  display: flex;
}
.shadow-small {
  box-shadow: 0 4px 8px -2px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.06);
}
.icon-1x1-medium {
  width: 3rem;
  height: 3rem;
}
.rl-styleguide_button-row {
  grid-column-gap: 1rem;
  display: flex;
}
.shadow-medium {
  box-shadow: 0 12px 16px -4px rgba(0, 0, 0, 0.08),
    0 4px 6px -2px rgba(0, 0, 0, 0.03);
}
.text-sii
{
  font-size: 1.5rem !important;
  width: 74%;
  margin: auto;
  font-weight: 800;
}
.text-size-large {
  font-size: 1.25rem;
}
.icon-height-xsmall {
  height: 1.5rem;
}
.rl-styleguide_spacing-all {
  display: none;
}
.padding-section-small {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.rl-styleguide_empty-box {
  z-index: -1;
  height: 3rem;
  min-width: 3rem;
  background-color: #eee;
  position: relative;
}
.rl-styleguide_spacing {
  border: 1px dashed #d3d3d3;
}
.padding-global {
  padding-left: 5%;
  padding-right: 5%;
}
.padding-section-medium {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.padding-section-large {
  padding-top: 7rem;
  padding-bottom: 4rem;
  position: relative;
}
.main-input {
  width: 100%;
  padding: 13px;
  border-radius: 7px;
  font-size: 14px;
  color: black;
  border: 1px solid #474747;
  background: #d8d5d1;
}
.section_header26 {
  -webkit-text-fill-color: inherit;
  background-image: linear-gradient(
      #161616,
      #161616 13%,
      rgba(22, 22, 22, 0) 89%,
      #161616
    ),
    url(https://assets.website-files.com/63f5d36e1bfb159570f6408c/63feed1d49df0b0ba2f037d8_Grid.svg);
  background-position: 0 0, 50%;
  background-size: auto, auto;
  background-clip: padding-box;
  position: relative;
}
.header26_component {
  flex-direction: column;
  align-items: center;
  padding-top: 5rem;
  display: flex;
  position: relative;
}
.header26_image-wrapper {
  z-index: 1;
  width: 100%;
  cursor: none;
  background-color: #161616;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 56%;
  display: flex;
  position: relative;
  overflow: hidden;
}
.layout239_component {
  flex-direction: column;
  align-items: center;
  display: flex;
}
.layout239_list {
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  justify-items: center;
  display: grid;
}
.layout239_item {
  width: 100%;
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}
.layout239_image-wrapper {
  width: 100%;
  background-image: linear-gradient(
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  border-radius: 1.0625rem;
  justify-content: center;
  align-items: center;
  padding: 1px;
  display: flex;
  position: relative;
  overflow: hidden;
}
.layout239_image1 {
  z-index: 2;
  width: 100%;
  background-color: #161616;
  border-radius: 1rem;
  position: relative;
}
.layout358_component {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}
.layout358_card {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  background-color: #222;
  background-image: linear-gradient(90deg, #222 20%, rgba(34, 34, 34, 0)),
    url(https://assets.website-files.com/63f5d36e1bfb159570f6408c/63fef69fe9d846d532a5a36d_Grid-Light.svg),
    url(https://assets.website-files.com/63f5d36e1bfb159570f6408c/6402684921e67fe821b43aba_Noise_small.png);
  background-position: 0 0, 50%, 0 0;
  background-repeat: repeat, repeat, repeat;
  background-size: auto, auto, 100px 100px;
  background-attachment: scroll, scroll, scroll;
  border-radius: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
  position: relative;
  overflow: hidden;
}
.layout358_card-content {
  z-index: 3;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  display: flex;
  position: relative;
}
.layout358_image-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}
.layout358_image.is-feature1-before {
  z-index: 1;
  position: relative;
}
.layout358_image.is-feature1-after {
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}
.layout358_image.is-feature2-before {
  z-index: 1;
  position: relative;
}
.layout358_image.is-feature2-after,
.layout358_image.is-feature3-after {
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}
.layout358_image.is-feature3-before {
  z-index: 1;
  position: relative;
}
.cta39_component {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}
.cta39_card {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  background-color: #d8d5d1;
  border-radius: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
  overflow: hidden;
}
.cta39_card-content {
  background-color: #c5c2be;
  background-image: none;
  background-size: auto;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem;
  display: flex;
  position: relative;
}
.cta39_image-wrapper {
  background-color: #d8d5d1;
  background-image: url(https://assets.website-files.com/63f5d36e1bfb159570f6408c/6401a39a5499a5de4e7d756b_Noise_light.png);
  background-position: 50%;
  background-size: 500px;
  justify-content: center;
  align-items: flex-end;
  padding-top: 3.5rem;
  display: flex;
}
.section_testimonial18 {
  z-index: 1;
  background-color: #161616;
  background-image: linear-gradient(
      #161616,
      rgba(22, 22, 22, 0.6) 34%,
      rgba(22, 22, 22, 0.6) 80%,
      #161616
    ),
    url(https://assets.website-files.com/63f5d36e1bfb159570f6408c/63feed1d49df0b0ba2f037d8_Grid.svg);
  background-position: 0 0, 50% 0;
  background-size: auto, auto;
  border-bottom-right-radius: 4rem;
  border-bottom-left-radius: 4rem;
  position: relative;
}
.testimonial18_component {
  column-count: 3;
  column-gap: 2rem;
}
.testimonial18_content {
  width: 100%;
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  background-color: #222;
  background-image: url(https://assets.website-files.com/63f5d36e1bfb159570f6408c/6402684921e67fe821b43aba_Noise_small.png);
  background-position: 50%;
  background-size: 50px;
  border-radius: 16px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem;
  display: inline-block;
}
.testimonial18_client {
  text-align: left;
  align-items: center;
  display: flex;
}
.testimonial18_client-image-wrapper {
  margin-right: 1rem;
}
.testimonial18_customer-image {
  width: 2.5rem;
  height: 2.5rem;
  min-height: 2.5rem;
  min-width: 2.5rem;
  object-fit: cover;
  border-radius: 100%;
}
.footer3_component {
  width: 100%;
  background-color: #161616;
  border-radius: 4rem 4rem 0 0;
  position: relative;
  overflow: hidden;
}
.footer3_top-wrapper {
  grid-column-gap: 4vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr 0.5fr;
  align-items: start;
}
.footer3_logo-link {
  float: none;
  padding-left: 0;
}
.footer3_menu-wrapper {
  grid-column-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
.footer3_link-list {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  align-items: flex-start;
  justify-items: start;
  display: flex;
}
.footer3_link {
  color: rgba(216, 213, 209, 0.8);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.5s;
}
.footer3_link:hover {
  color: #fff;
}
.line-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}
.footer3_bottom-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}
.footer3_credit-text {
  color: rgba(216, 213, 209, 0.65);
  font-size: 0.875rem;
}
.footer3_legal-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: center;
  display: grid;
}
.footer3_legal-link {
  color: rgba(216, 213, 209, 0.65);
  font-size: 0.875rem;
  text-decoration: underline;
}
.section_faq4 {
  background-image: linear-gradient(
      #161616,
      rgba(22, 22, 22, 0.6) 40%,
      rgba(22, 22, 22, 0.6) 80%,
      #161616
    ),
    url(https://assets.website-files.com/63f5d36e1bfb159570f6408c/63feed1d49df0b0ba2f037d8_Grid.svg);
  background-position: 0 0, 50% 0;
  background-size: auto, auto;
  position: relative;
}
.faq4_list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  align-items: start;
  justify-items: stretch;
  display: grid;
}
.faq4_accordion {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: rgba(34, 34, 34, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  transition: all 0.5s;
}
.faq4_accordion:hover {
  color: #fff;
  background-color: rgba(59, 59, 59, 0.5);
}
.faq4_question {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  display: flex;
}
.faq-05_icon {
  width: 2rem;
  align-self: flex-start;
  margin-left: 1.5rem;
}
.faq4_answer {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  overflow: hidden;
}
.section_pricing25 {
  background-color: #161616;
  background-image: linear-gradient(transparent, #161616 45%);
  border-bottom-right-radius: 4rem;
  border-bottom-left-radius: 4rem;
  margin-top: -4rem;
  padding-top: 4rem;
  position: relative;
}
.pricing25_component {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
}
.pricing25_tabs-menu {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  align-self: center;
  margin-bottom: 3rem;
  padding: 0.5rem;
  display: flex;
}
.pricing25_tab-link {
  color: #d8d5d1;
  background-color: transparent;
  border-radius: 0.5rem;
  align-items: center;
  padding: 0.5rem 1rem;
  font-family: Relative, sans-serif;
  font-weight: 500;
  transition: all 0.5s;
  display: flex;
}
.pricing25_tab-link:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.pricing25_tab-link.w--current {
  color: #161616;
  background-color: #d8d5d1;
}
.pricing25_plans {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}
.pricing25_plan {
  background-color: #161616;
  background-image: linear-gradient(#161616 21%, rgba(22, 22, 22, 0)),
    url(https://assets.website-files.com/63f5d36e1bfb159570f6408c/6402684921e67fe821b43aba_Noise_small.png);
  background-position: 0 0, 0 0;
  background-size: auto, 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.5s;
}
.pricing25_plan:hover {
  background-color: #1b1b1b;
}
.pricing25_plan.most-popular {
  box-shadow: none;
  border: 2px #ff7448;
  position: relative;
}
.pricing25_free-plan-content {
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
  position: relative;
}
.pricing25_divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.cta39_card-logo {
  height: 2rem;
}
.image-2 {
  width: auto;
  height: 100%;
}
.text-highlight-orange {
  background-image: linear-gradient(
    90deg,
    rgba(255, 116, 72, 0.2),
    rgba(255, 116, 71, 0.05)
  );
  border-left: 4px solid #ff7448;
  border-radius: 0;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  line-height: 1;
  display: inline-block;
}
.text-highlight-orange.is-descender {
  padding-bottom: 0.75rem;
  display: inline-block;
}
/*.text-highlight-purple {
  background-image: linear-gradient(
    90deg,
    rgba(98, 72, 255, 0.2),
    rgba(98, 72, 255, 0.05)
  );
  border-left: 4px solid #6248ff;
  border-radius: 0;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  line-height: 1;
  display: inline-block;
}*/
.text-highlight-purple
{
  background-image: linear-gradient(90deg,rgba(98,72,255,.2),rgba(98,72,255,.05));
  border-left:4px solid #6248ff;
/*  background-image: linear-gradient(90deg,#42807b30,#273d4812);
  border-left: 4px solid #42807b;*/
  border-radius: 0;
  padding-left: .25rem;
  padding-right: .25rem;
  line-height: 1;
  display: inline-block;
}

.text-highlight-purple.is-descender {
  padding-bottom: 0.75rem;
}
.pricing25_tab-content {
  overflow: visible;
}
.pricing25_free-plan {
  background-color: #161616;
  background-image: linear-gradient(
      90deg,
      #161616,
      #161616 38%,
      rgba(22, 22, 22, 0)
    ),
    url(https://assets.website-files.com/63f5d36e1bfb159570f6408c/6402684921e67fe821b43aba_Noise_small.png),
    url(https://assets.website-files.com/63f5d36e1bfb159570f6408c/63feed1d49df0b0ba2f037d8_Grid.svg);
  background-position: 0 0, 0 0, 50%;
  background-size: auto, 50px, 100rem;
  border-radius: 16px;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  transition: all 0.5s;
  display: flex;
  overflow: hidden;
}
.pricing25_free-plan:hover {
  background-color: #222;
}
.navbar_component {
  min-height: 5rem;
  background-color: transparent;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: auto;
  right: auto;
}
.top-navbar_container {
  width: 18.25rem;
  height: auto;
  /*grid-column-gap: 1rem;*/
  grid-row-gap: 1rem;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background-color: rgba(22, 22, 22, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.75rem;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr auto;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 0.375rem;
  display: flex;
  overflow: hidden;
}
.top-navbar_menu {
  align-items: center;
  display: flex;
}
.top-navbar_menu-link-wrapper {
  display: flex;
}
.top-navbar_link {
  color: #ebe7e3;
  border-radius: 0.5rem;
  align-items: center;
  padding: 0.375rem 1.25rem;
  font-family: Relative, sans-serif;
  font-weight: 500;
  transition: all 0.3s;
  display: flex;
}
.top-navbar_link:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}
.top-navbar_link.w--current {
  color: #ebe7e3;
}
.top-navbar_link.is-primary {
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
  color: #161616;
  background-color: #ebe7e3;
  flex: none;
  margin-left: 1rem;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}
/*==================================== Home Navbar After Login ==========================*/
.pc_sidebar {
  width: 17rem;
  height: auto;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background-color: rgba(22, 22, 22, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.75rem;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr auto;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  padding: 0.3rem 10px;
  display: flex;
  align-items: center;
  z-index: 99;

}
.svg-profile {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
}
.hamburger-mob-sidebar {
  background: none;
  width: 45px;
}
.dropdown-text {
  display: block;
  width: 100%;
  padding: 4px;
  font-weight: 500;
  font-size: 17px;
  color: #e6e6e6;
}
.dropdown-text:hover {
  background: #2c2c2c;
  padding: 6px 14px;
  border-radius: 4px;
}
.plugin-modal_form_advanced-wrapper {
  padding: 24px;
  display: none;
  backdrop-filter: blur(16px);
  background-color: #222;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  position: fixed;
  top: 0;
  right: 0;
  margin: 70px 5% 0 0;
  z-index: 999;
}
.message-icon {
  margin: 4px -2px -3px -2px;
  border-radius: 50%;
  color: gray;
}
.svg-message {
  width: 2rem;
  height: 2rem;
}
.upload-button.create_upload_btn {
  color: white;
  background: #ff7448;
  padding: 6px 10px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  margin-left: 0px;
  width: auto;
}
.dropdown_navss {
  padding: 24px;
  backdrop-filter: blur(16px);
  background-color: #222;
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: absolute;
  margin-left: -3.7em;
  margin-top: 12px;
  border-radius: 14px;
  width: 100%;
}
.dropdown_searchh {
  padding: 15px;
  backdrop-filter: blur(16px);
  background-color: #222;
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: absolute;
  margin-left: -0.5em;
  margin-top: 12px;
  border-radius: 14px;
  width: 100%;
}
.search {
  display: flex;
}
.search-input {
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 12px;
  padding: 11px 10px;
  border-radius: 6px;
  width: 100%;
}
.search-button {
  background: transparent;
  font-size: 17px;
  border-radius: 9px;
  width: 35px;
  margin-left: -37px;
}
.search-input:focus {
  outline: none;
}
.search-button svg {
  width: 36px;
  fill: red;
  color: red;
  stroke: white;
  padding: 0px 9px;
  margin-top: 6px;
}
.search-button-icons {
  border: none;
  background: none;
}
.stroke-white {
  stroke: white;
}
.search-button-icons {
  border: none;
  background: #2c2c2c;
  padding: 7px 7px 2px;
  border-radius: 38px;
  margin-right: 0px;
}
.stroke-white {
  stroke: white;
  stroke-width: 3px;
}
/*==================================== End Home Navbar After Login ==========================*/
.top-navbar_link.is-primary:hover {
  background-color: #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}
.top-navbar_link.is-primary.w--current {
  width: 0;
  color: #fff;
  background-color: transparent;
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.navbar_logo.show-tablet {
  display: none;
}
.faq4_purpleglow
{
  width: 100%;
  height: 15rem;
  opacity: 0.7;
  filter: blur(50px);
  background-color: #6248ff;
  border-radius: 100%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: auto;
  bottom: auto;
  left: 0%;
  right: 0%;
  margin-top: -40px;
}
.header26_purple-glow {
  z-index: 0;
  width: 60rem;
  height: 20rem;
  opacity: 0.7;
  filter: blur(50px);
  background-color: #6248ff;
  border-radius: 100%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: auto;
  bottom: -2rem;
  left: 0%;
  right: 0%;
}
.section_topbar {
  width: 100%;
  min-height: 5rem;
  justify-content: space-between;
  align-items: center;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.section_topbar.is-center {
  justify-content: center;
}
.layout358_card1-overlay {
  z-index: 2;
  height: 50%;
  background-image: linear-gradient(rgba(34, 34, 34, 0), #222);
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}
.heading-fade-2lines {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(
    114deg,
    rgba(216, 213, 209, 0.6),
    #f1f0ee 44%,
    rgba(216, 213, 209, 0.6)
  );
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 600;
}
.heading-fade-1line {
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  background-image: linear-gradient(
    117deg,
    rgba(216, 213, 209, 0.6),
    #f1f0ee 30%,
    #f1f0ee 70%,
    rgba(216, 213, 209, 0.6)
  );
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 1em;
}
.heading-fade-1line.is-left {
  background-image: linear-gradient(
    138deg,
    #f1f0ee,
    #f1f0ee 20%,
    #f1f0ee 51%,
    rgba(216, 213, 209, 0.6) 89%
  );
}
.icon-figma {
  width: 1.5rem;
  height: 1.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}
.layout358_card2-overlay {
  z-index: 2;
  height: 100%;
  background-image: linear-gradient(
    #222,
    rgba(34, 34, 34, 0.8) 15%,
    rgba(34, 34, 34, 0) 29%,
    rgba(34, 34, 34, 0) 71%,
    rgba(34, 34, 34, 0.8) 80%,
    #222
  );
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}
.layout358_ui-card--wrapper {
  z-index: 99;
  width: 17rem;
  transform: scale3d(1none, 1none, 1none);
  color: #161616;
  transform-style: preserve-3d;
  background-color: #fff;
  border: 1px solid rgba(22, 22, 22, 0.15);
  border-radius: 8px;
  font-family: Inter, sans-serif;
  position: absolute;
  top: auto;
  bottom: 2.5rem;
  left: auto;
  right: 2.5rem;
  overflow: hidden;
}
.layout358_card3-overlay {
  z-index: 2;
  height: 100%;
  background-image: linear-gradient(
    #222,
    rgba(34, 34, 34, 0) 15%,
    rgba(34, 34, 34, 0) 73%,
    rgba(34, 34, 34, 0.8) 87%,
    #222
  );
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}
.layout358_plugin-modal_layer_component {
  width: 100%;
  height: 40px;
  min-height: 40px;
  border-bottom: 1px solid rgba(22, 22, 22, 0.15);
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  display: flex;
}
.layout358_plugin-modal_layer_name {
  width: 120px;
  align-items: center;
  display: flex;
}
.layout358_plugin-modal_layer_icon {
  margin-right: 8px;
}
.layout358_plugin-modal_icon-xsmall {
  width: 16px;
  height: 16px;
  min-height: 16px;
  min-width: 16px;
  display: block;
}
.layout358_plugin-modal_text-size-medium {
  font-size: 11px;
}
.layout358_plugin-modal_text-size-medium.text-weight-medium {
  font-weight: 500;
}
.layout358_plugin-modal_text-size-medium.text-weight-medium.text-color-grey {
  color: rgba(22, 22, 22, 0.65);
}
.layout358_plugin-modal_text-size-medium.text-weight-medium {
  font-weight: 500;
}
.layout358_plugin-modal_text-size-medium.text-weight-medium.text-color-grey {
  color: rgba(22, 22, 22, 0.65);
}
.layout358_plugin-modal_layer_usage-wrapper {
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  display: flex;
}
.layout358_plugin-modal_field-label {
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 600;
}
.layout358_plugin-modal_form-input {
  height: 32px;
  color: #161616;
  background-color: #fff;
  border: 1px solid rgba(22, 22, 22, 0.15);
  border-radius: 6px;
  margin-bottom: 0;
  padding-left: 8px;
  padding-right: 8px;
  font-size: 11px;
  line-height: 1.5;
  transition: all 0.2s;
}
.layout358_plugin-modal_form-input:hover {
  border-color: #161616;
}
.layout358_plugin-modal_form-input:focus {
  border-color: #161616;
  box-shadow: 0 0 0 3px rgba(22, 22, 22, 0.08);
}
.layout358_plugin-modal_form-input::-ms-input-placeholder {
  color: #161616;
  font-size: 11px;
}
.layout358_plugin-modal_form-input::placeholder {
  color: #161616;
  font-size: 11px;
}
.layout358_plugin-modal_form-input.is-text-area {
  height: auto;
  min-height: 104px;
  overflow: auto;
}
.layout358_plugin-modal_form-block {
  margin-top: 12px;
  margin-bottom: 0;
}
.layout358_plugin-modal_form-block-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}
.form-input-wrapper {
  width: 100%;
}
.layout358_plugin-modal_form_component {
  z-index: 1;
  height: auto;
  flex-direction: column;
  flex: 1;
  padding-bottom: 12px;
  padding-left: 12px;
  padding-right: 12px;
  position: relative;
  overflow: auto;
}
.layout358_plugin-modal_bottom-nav_component {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-top: 1px solid rgba(22, 22, 22, 0.15);
  align-items: center;
  padding: 12px;
  display: flex;
}
.layout358_plugin-modal_button {
  width: 100%;
  color: #fff;
  text-align: center;
  background-color: #161616;
  border: 1px solid rgba(22, 22, 22, 0.15);
  border-radius: 8px;
  flex: none;
  padding: 8px 24px;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  position: relative;
}
.layout358_plugin-modal_button:hover {
  background-color: #272727;
}
.layout358_plugin-modal_unlock_component {
  background-color: #f1f0ee;
  border-radius: 8px;
  flex-direction: row;
  align-items: center;
  margin-top: 12px;
  padding: 8px 12px;
  display: flex;
}
.layout358_plugin-modal_unlock_text-wrapper {
  flex-direction: column;
  align-items: flex-start;
  margin-right: 8px;
}
.layout358_plugin-modal_text-size-small {
  font-size: 10px;
}
.layout358_plugin-modal_text-size-small.text-color-grey {
  color: rgba(22, 22, 22, 0.65);
}
.layout358_plugin-modal_button-tertiary-small {
  text-align: center;
  border: 1px solid rgba(22, 22, 22, 0.15);
  border-radius: 8px;
  flex: none;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.layout358_plugin-modal_button-tertiary-small:hover {
  background-color: #e4e2df;
}
.layout358_plugin-modal_form_advanced,
.layout358_plugin-modal_form_advanced-wrapper {
  width: 100%;
}
.layout358_plugin-modal_suggestion_list {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 8px;
  display: flex;
  overflow: auto;
}
.layout358_plugin-modal_suggestion_button {
  border: 1px solid rgba(22, 22, 22, 0.15);
  border-radius: 6px;
  flex: none;
  padding: 2px 8px;
  font-size: 11px;
  text-decoration: none;
  transition: all 0.2s;
}
.layout358_plugin-modal_suggestion_button:hover {
  background-color: #f1f0ee;
}
.layout358_plugin-modal_suggestion_button:active {
  border-color: #f1f0ee;
}
.layout358_plugin-modal_suggestion_button:focus,
.layout358_plugin-modal_suggestion_button.active {
  background-color: #f1f0ee;
  border-color: #f1f0ee;
}
.text-color-gray {
  color: rgba(216, 213, 209, 0.8);
}
.pricing25_orange-glow {
  width: 60rem;
  height: 20rem;
  opacity: 0.7;
  filter: blur(50px);
  background-color: #ff7448;
  border-radius: 100%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: -15rem;
  left: 0%;
  right: 0%;
}
.layout358_icon {
  background-color: #222;
  border-radius: 10px;
}
.header26_mobile-image {
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  position: relative;
}
.header26_figma-navbar {
  z-index: 2;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}
.header26_ui-wrapper
{
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
  padding-left: 0rem;
  padding-right: 0rem;
  display: flex;
  position: absolute;
  top: 1%;
  bottom: -4em;
  left: 0%;
  right: auto;
  width: 100%;
}



@media screen and (max-width: 594px) {

.header26_ui-wrapper {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: absolute;
  top: 2%;
  bottom: -4em;
  left: 0%;
  right: auto;
  width: 100%;
}
.header26_image-wrapper{
  padding-top: 86%;
}
.creative-codes {
  width: 90%;
  margin: auto;
}

}

.plugin-modal_button-wrapper-relative {
  position: relative;
}
.button-loader-overlay {
  z-index: 1;
  background-color: #161616;
  justify-content: center;
  align-items: center;
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}
.plugin-modal_suggestion_component {
  margin-top: 12px;
}
.plugin-modal_page-wrapper {
  max-height: 560px;
  min-height: 560px;
  flex-direction: column;
  display: flex;
  position: relative;
  overflow: hidden;
}
.plugin-modal_page_content-wrapper {
  border-bottom: 1px solid rgba(22, 22, 22, 0.15);
  margin-top: 16px;
  padding-bottom: 16px;
}
.plugin-modal_page_content-wrapper.reverse-divider {
  border-top: 1px solid rgba(22, 22, 22, 0.15);
  border-bottom-style: none;
  padding-top: 16px;
  padding-bottom: 0;
}
.plugin-modal_upgrade-modal_footer {
  text-align: center;
  margin-top: 12px;
}
.plugin-modal_top-nav-figma_component {
  width: 100%;
  height: 40px;
  border-bottom: 1px solid rgba(22, 22, 22, 0.15);
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  display: flex;
}
.plugin-modal_page_loremipsum-wrapper {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  margin-top: 32px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
}
.plugin-modal_layer_icon {
  margin-right: 8px;
}
.plugin-modal_top-nav-content_component {
  width: 100%;
  height: 40px;
  border-bottom: 1px solid rgba(22, 22, 22, 0.15);
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  display: flex;
}
.plugin-modal_upgrade-modal_checkbox-icon-wrapper {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(22, 22, 22, 0.15);
  border-radius: 4px;
  margin-right: 8px;
}
.plugin-modal_upgrade-modal_innerwrapper {
  width: 368px;
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.plugin-modal_top-nav-content-right {
  justify-content: center;
  align-items: center;
  display: flex;
}
.plugin-modal_uo-list_text-size-medium {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 16px;
  font-size: 12px;
}
.plugin-modal_or-list_text-size-small {
  margin-top: 8px;
  margin-bottom: 8px;
  padding-left: 16px;
  font-size: 11px;
  list-style-type: decimal;
}
.plugin-modal_upgrade-modal_warning {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: #ffeded;
  border-radius: 8px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 12px 16px;
  display: flex;
}
.plugin-modal_field-label {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 600;
}
.plugin-modal_field-label.with-description {
  margin-bottom: 4px;
}
.plugin-modal_text-size-medium {
  font-size: 12px;
}
.plugin-modal_text-size-medium.text-weight-medium {
  font-weight: 500;
}
.plugin-modal_text-size-medium.text-weight-medium.text-color-grey {
  color: rgba(22, 22, 22, 0.65);
}
.plugin-modal_text-size-small {
  font-size: 11px;
}
.plugin-modal_text-size-small.text-color-grey {
  color: rgba(22, 22, 22, 0.65);
}
.plugin-modal_page_plan-wrapper {
  border: 1px solid rgba(22, 22, 22, 0.15);
  border-radius: 12px;
  margin-top: 16px;
  padding: 16px;
}
.plugin-modal_help-modal_component {
  z-index: 999;
  background-color: #fff;
  flex-direction: column;
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}
.plugin-modal_form_advanced-button {
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s;
  display: flex;
  width: 60px;
  /*margin-left: auto;*/
}
.plugin-modal_form_advanced-button.cursor-none {
  cursor: none;
}
.plugin-modal_top-nav-page_component {
  width: 100%;
  height: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  display: flex;
}
.header26_form-input {
  height: 32px;
  color: #161616;
  background-color: #fff;
  border: 1px solid rgba(22, 22, 22, 0.15);
  border-radius: 6px;
  margin-bottom: 0;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 12px;
  line-height: 1.5;
  transition: all 0.2s;
}
.header26_form-input:hover {
  border-color: #161616;
}
.header26_form-input:focus {
  border-color: #161616;
  box-shadow: 0 0 0 3px rgba(22, 22, 22, 0.08);
}
.header26_form-input::-ms-input-placeholder {
  color: #161616;
  font-size: 12px;
}
.header26_form-input::placeholder {
  color: #161616;
  font-size: 12px;
}
.header26_form-input.is-text-area {
  height: auto;
  min-height: 128px;
  overflow: auto;
}
.header26_form-input.is-text-area.is-placeholder {
  color: rgba(22, 22, 22, 0.65);
}
.header26_form-input.is-text-area.is-placeholder::-ms-input-placeholder {
  color: rgba(22, 22, 22, 0.65);
}
.header26_form-input.is-text-area.is-placeholder::placeholder {
  color: rgba(22, 22, 22, 0.65);
}
.header26_form-input.is-input {
  padding-top: 5px;
}
.plugin-modal_or-list_text-size-medium {
  margin-top: 8px;
  margin-bottom: 8px;
  padding-left: 16px;
  font-size: 12px;
  list-style-type: decimal;
}
.plugin-modal_text-size-large {
  font-size: 13px;
}
.plugin-modal_component {
  width: 400px;
  color: #161616;
  background-color: #fff;
  border: 1px solid rgba(22, 22, 22, 0.15);
  border-radius: 6px;
  font-family: Inter, sans-serif;
  transform: scale(0.88);
}
.plugin-modal_page_title-wrapper {
  margin-bottom: 8px;
}
.plugin-modal_loremipsum-modal_icon {
  width: 32px;
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
}
.plugin-modal_page_plan-title {
  background-color: #e4e2df;
  border-radius: 6px;
  padding: 2px 6px;
  font-size: 13px;
  font-weight: 600;
}
.plugin-modal_page_plan-title.is-pro {
  color: #ff6a48;
  background-color: transparent;
  border: 1px solid #ff6a48;
}
.plugin-modal_page_plan-title.is-free {
  background-color: transparent;
  border: 1px solid #161616;
}
.plugin-modal_page_plan-title.is-starter {
  color: #6248ff;
  background-color: transparent;
  border: 1px solid #6248ff;
}
.plugin-modal_page_rating-wrapper {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  background-color: #f1f0ee;
  border-radius: 8px;
  margin-top: 12px;
  display: flex;
}
.plugin-modal_suggestion_button {
  border: 1px solid rgba(22, 22, 22, 0.15);
  border-radius: 6px;
  flex: none;
  padding: 2px 8px;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.2s;
}
.plugin-modal_suggestion_button:hover {
  background-color: #f1f0ee;
}
.plugin-modal_suggestion_button:active {
  border-color: #f1f0ee;
}
.plugin-modal_suggestion_button:focus {
  background-color: #f1f0ee;
  border-color: #f1f0ee;
}
.plugin-modal_layer_component {
  width: 100%;
  height: 40px;
  min-height: 40px;
  border-bottom: 1px solid rgba(22, 22, 22, 0.15);
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  display: flex;
}
.plugin-modal_form-block {
  margin-top: 16px;
  margin-bottom: 0;
}
.plugin-modal_upgrade-modal_checkbox {
  cursor: pointer;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}
.plugin-modal_button {
  width: 100%;
  color: #fff;
  text-align: center;
  background-color: #161616;
  border: 1px solid rgba(22, 22, 22, 0.15);
  border-radius: 8px;
  flex: none;
  padding: 8px 24px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  position: relative;
}
.plugin-modal_button:hover {
  background-color: #272727;
}
.plugin-modal_button.cursor-none {
  cursor: none;
}
.plugin-modal_page_margin-top-small {
  margin-top: 24px;
}
.plugin-modal_form-block-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}
.plugin-modal_page_feedback-wrapper {
  background-color: #f1f0ee;
  border-radius: 8px;
  margin-top: 24px;
  padding: 12px;
}
.plugin-modal_top-nav-figma_logo-wrapper {
  align-items: center;
  display: flex;
}
.plugin-modal_bottom-nav_component {
  height: 68px;
  min-height: 68px;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-top: 1px solid rgba(22, 22, 22, 0.15);
  align-items: center;
  padding: 16px;
  display: flex;
}
.plugin-modal_upgrade-modal_stripe-logo {
  width: 42px;
}
.plugin-modal_settings-modal_component {
  z-index: 999;
  background-color: #fff;
  flex-direction: column;
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}
.plugin-modal_current-plan {
  color: rgba(22, 22, 22, 0.65);
  background-color: #f1f0ee;
  border: 1px solid #e4e2df;
  border-radius: 8px;
  flex: none;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}
.plugin-modal_page_tabs-menu {
  background-color: #f1f0ee;
  border-radius: 12px;
  padding: 4px;
}
.plugin-modal_icon-xsmall {
  width: 16px;
  height: 16px;
  min-height: 16px;
  min-width: 16px;
  display: block;
}
.plugin-modal_icon-xsmall.is-frame {
  display: none;
}
.plugin-modal_icon-xsmall.is-frame.is-active {
  display: block;
}
.plugin-modal_icon-xsmall.is-element,
.plugin-modal_icon-xsmall.is-group,
.plugin-modal_icon-xsmall.is-text,
.figma-to-stripe-step1 {
  display: none;
}
.plugin-modal_page_component {
  max-height: 560px;
  min-height: auto;
  flex: 1;
  padding-bottom: 24px;
  padding-left: 16px;
  padding-right: 16px;
  overflow: auto;
}
.plugin-modal_button-disabled-overlay {
  z-index: 1;
  cursor: not-allowed;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}
.plugin-modal_upgrade-modal_background-overlay {
  z-index: -1;
  cursor: pointer;
  background-color: rgba(22, 22, 22, 0.5);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}
.plugin-modal_form_advanced {
  width: 100%;
  border-top: 1px solid rgba(22, 22, 22, 0.15);
}
.plugin-modal_upgrade-modal_text-wrapper {
  padding-top: 8px;
}
.plugin-modal_page_loading-wrapper {
  flex-direction: column;
  align-items: flex-start;
  margin-top: 16px;
  padding-bottom: 16px;
}
.plugin-modal_form_advanced-wrapper {
  width: 100%;
  max-width: 212px;
}


.plugin-modal_list-item_text-size-medium-copy {
  margin-top: 4px;
  margin-bottom: 4px;
  padding-left: 4px;
}
.plugin-modal_upgrade-modal_payment-method {
  border-bottom: 1px solid rgba(22, 22, 22, 0.15);
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  padding-bottom: 16px;
  display: flex;
}
.plugin-modal_upgrade-modal_component {
  z-index: 999;
  justify-content: center;
  align-items: center;
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}
.plugin-modal_top-nav_menu-dropdown-button {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  margin-left: -4px;
  padding: 0;
  transition: all 0.2s;
  display: flex;
}
.plugin-modal_top-nav_menu-dropdown-button:hover {
  background-color: #f1f0ee;
}
.plugin-modal_top-nav_menu-dropdown-button.cursor-none {
  cursor: none;
}
.plugin-modal_upgrade-modal_footer-image {
  justify-content: center;
  align-items: center;
  margin-top: 12px;
  display: flex;
}
.plugin-modal_page_tabs-link {
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
}
.plugin-modal_page_tabs-link.w--current {
  background-color: #fff;
  border-color: rgba(22, 22, 22, 0.15);
}
.plugin-modal_unlock_text-wrapper {
  margin-right: 12px;
}
.plugin-modal_unlock_component {
  background-color: #f1f0ee;
  border-radius: 8px;
  align-items: center;
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 8px 12px;
  display: flex;
}
.plugin-modal_top-nav_menu-dropdown-list {
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}
.plugin-modal_top-nav_menu-dropdown-list.w--open {
  width: 200px;
  background-color: #fff;
  border: 1px solid rgba(22, 22, 22, 0.15);
  border-radius: 4px;
  padding-top: 4px;
  padding-bottom: 4px;
  top: 24px;
  bottom: auto;
  left: 0%;
  right: auto;
}
.plugin-modal_text-size-tiny {
  font-size: 10px;
}
.plugin-modal_form_component {
  z-index: 1;
  height: auto;
  flex-direction: column;
  flex: 1;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  overflow: auto;
}
.plugin-modal_top-nav_menu-divider {
  width: 198px;
  height: 1px;
  background-color: rgba(22, 22, 22, 0.15);
  margin: 4px auto;
}
.plugin-modal_top-nav_menu-dropdown-link {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  cursor: none;
  border-radius: 4px;
  align-items: center;
  margin-left: 4px;
  margin-right: 4px;
  padding: 6px 8px;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s;
  display: flex;
}
.plugin-modal_top-nav_menu-dropdown-link:hover {
  background-color: #f1f0ee;
}
.plugin-modal_logo {
  margin-right: 8px;
}
.plugin-modal_star {
  opacity: 0.25;
  cursor: pointer;
}
.plugin-modal_layer_name {
  width: 220px;
  align-items: center;
  display: flex;
}
.plugin-modal_upgrade-modal_plan-description {
  background-color: #f1f0ee;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 12px 16px;
  display: flex;
}
.plugin-modal_feedback-form-block {
  margin-top: 16px;
  margin-bottom: 0;
  display: none;
}
.plugin-modal_button-primary-small {
  color: #fff;
  background-color: #0f8eff;
  border: 1px solid #0f8eff;
  border-radius: 8px;
  flex: none;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.plugin-modal_button-primary-small:hover {
  background-color: #309dff;
  border-color: #309dff;
}
.plugin-modal_button-primary-small.is-black {
  background-color: #161616;
  border-color: #161616;
}
.plugin-modal_button-primary-small.is-black:hover {
  background-color: #272727;
  border-color: #272727;
}
.plugin-modal_top-nav-page_back-link {
  width: 24px;
  height: 24px;
  cursor: none;
  border-radius: 4px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: -4px;
  margin-right: 8px;
  transition: all 0.2s;
  display: flex;
}
.plugin-modal_top-nav-page_back-link:hover {
  background-color: #f1f0ee;
}
.plugin-modal_button-tertiary-small {
  border: 1px solid rgba(22, 22, 22, 0.15);
  border-radius: 8px;
  flex: none;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.plugin-modal_button-tertiary-small:hover {
  background-color: #e4e2df;
}
.plugin-modal_loremipsum-modal_component {
  z-index: 999;
  background-color: #fff;
  flex-direction: column;
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}
.plugin-modal_page_plan-title-wrapper {
  justify-content: space-between;
  margin-bottom: 8px;
  display: flex;
}
.plugin-modal_upgrade-modal_checkbox-icon {
  width: 14px;
  height: 14px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}
.plugin-modal_field-label-description {
  color: rgba(22, 22, 22, 0.65);
  margin-bottom: 8px;
  font-size: 11px;
}
.plugin-modal_suggestion_list {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 8px;
  display: flex;
  overflow: auto;
}
.stripe-to-stripe {
  display: none;
}
.stripe-to-stripe.show {
  display: block;
}
.plugin-modal_page_tabs-content {
  width: 100%;
}
.plugin-modal_top-nav-page_content-left {
  align-items: center;
  display: flex;
}
.plugin-modal_page_tabs {
  flex-direction: column;
  align-items: flex-start;
  margin-top: 16px;
  display: flex;
}
.button-loader {
  width: 120px;
  height: 64px;
  opacity: 0.5;
  filter: brightness(200%) invert();
}
.plugin-modal_button-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 12px;
  display: flex;
}
.plugin-modal_button-wrapper.is-loremipsum-button {
  margin-top: 24px;
}
.plugin-modal_button-wrapper.no-margin {
  margin-top: 0;
}
.plugin-modal_page_faq-wrapper {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 16px;
  margin-bottom: 16px;
  display: flex;
}
.plugin-modal_plans-modal_component {
  z-index: 999;
  background-color: #fff;
  flex-direction: column;
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}
.plugin-modal_layer_usage-wrapper {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  display: flex;
}
.figma-to-stripe-step2 {
  display: none;
}
.plugin-modal_top-nav_close-button {
  width: 16px;
  height: 16px;
}
.plugin-modal_text-link {
  color: rgba(22, 22, 22, 0.65);
  text-align: center;
  font-size: 12px;
}
.plugin-modal_text-link.plugin-modal_text-size-small {
  font-size: 11px;
}
.header26_website-wrapper
{
  z-index: 0;
  width: 53vw;
  border: 1px solid transparent;
  position: absolute;
  top: 9rem;
  bottom: auto;
  right: 2vw;
}
.header26_website-wrapper:hover {
  border-color: #0d8ce9;
}
.pricing25_popular-wrapper {
  background-image: linear-gradient(
    rgba(216, 213, 209, 0.5),
    rgba(255, 255, 255, 0.1)
  );
  border-radius: 1.0625rem;
  padding: 1px;
}
.pricing25_popular-wrapper.horizontal {
  background-image: linear-gradient(
    97deg,
    rgba(216, 213, 209, 0.5),
    rgba(255, 255, 255, 0.1)
  );
}
.button-pulse {
  z-index: -1;
  background-color: rgba(22, 22, 22, 0.5);
  border: 1px solid rgba(22, 22, 22, 0.2);
  border-radius: 8px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}
.max-width-custom {
  width: 100%;
  max-width: 44rem;
}
.button-shine {
  width: 120px;
  height: 400px;
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 6%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0) 95%
  );
  position: absolute;
  top: -200px;
  bottom: auto;
  left: -120px;
  right: auto;
}
.layout239_overlay {
  z-index: 2;
  height: 6rem;
  background-image: linear-gradient(rgba(22, 22, 22, 0), #161616);
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}
.layout358_card-wrapper {
  background-image: linear-gradient(
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.05)
  );
  border-radius: 1.5625rem;
  padding: 1px;
}
.layout358_card-overlay {
  z-index: 3;
  height: 6rem;
  background-image: linear-gradient(rgba(22, 22, 22, 0), rgba(22, 22, 22, 0.5));
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}
.testimonial18_content-wrapper {
  background-image: linear-gradient(
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.05)
  );
  border-radius: 1.0625rem;
  margin-bottom: 2rem;
  padding: 1px;
  display: inline-block;
}
.cursor-wrapper {
  position: fixed;
}
.cursor-wrapper.pointer-events-off {
  z-index: 9999999;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}
.cursor {
  flex: none;
  margin-top: 16px;
  margin-left: 13px;
}
.cursor-none {
  cursor: none;
}
.top-navbar_link-inner-wrapper {
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
  flex: none;
  padding-left: 0.5rem;
  padding-right: 0.75rem;
  display: flex;
}
.navbar_menu-button {
  padding: 0;
}
.layout358_card2-overlay-tablet {
  z-index: 1;
  height: 100%;
  background-image: linear-gradient(
    #222,
    rgba(34, 34, 34, 0.8) 15%,
    rgba(34, 34, 34, 0) 29%,
    rgba(34, 34, 34, 0) 71%,
    rgba(34, 34, 34, 0.8) 80%,
    #222
  );
  display: none;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}
.layout358_card3-overlay-tablet {
  z-index: 1;
  height: 100%;
  background-image: linear-gradient(
    #222,
    rgba(34, 34, 34, 0) 15%,
    rgba(34, 34, 34, 0) 73%,
    rgba(34, 34, 34, 0.8) 87%,
    #222
  );
  display: none;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}
.header26_website-before {
  z-index: 1;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}
.rl-footer_social-link-wrapper {
  margin-top: 1rem;
  display: flex;
}
.rl-footer_social-link {
  width: 2rem;
  height: 2rem;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  justify-content: center;
  align-items: center;
  margin-right: 0.75rem;
  padding: 0.25rem;
  transition: all 0.3s;
  display: flex;

}
.rl-footer_social-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.rl-footer_social-icon {
  filter: invert();
}
.rl-page-padding {
  padding-left: 2.5%;
  padding-right: 2.5%;
}
.heading-xsmall {
  letter-spacing: -0.02em;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
}
.heading-xhuge {
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.2;
}
.section-legal_component {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.cancel-subscription-video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}
.cancel-subscription-video-wrapper {
  width: 100%;
  border-radius: 0.5rem;
  padding-top: 60%;
  position: relative;
  overflow: hidden;
}
.save-label {
  color: #23d780;
  background-color: rgba(35, 215, 128, 0.15);
  border-radius: 2rem;
  padding: 0.25rem 0.75rem;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}
.save-label.is-button {
  color: rgba(22, 22, 22, 0.8);
  background-color: rgba(22, 22, 22, 0.15);
  margin-left: 0.75rem;
  font-size: 0.875rem;
  position: static;
}
.cta39_figma-stat {
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
  color: rgba(22, 22, 22, 0.65);
  font-weight: 500;
  display: flex;
}
.cta39_figma-stats-wrapper {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  border-radius: 0.6rem;
  align-self: stretch;
  align-items: center;
  margin-left: 0.5rem;
  display: flex;
}
.header26_callout {
  display: none;
  position: absolute;
  top: 5rem;
  bottom: auto;
  left: auto;
  right: 2rem;
}
.header26_callout-wrapper {
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 2rem;
  left: 0%;
  right: 0%;
}
.header26_callout-pointer {
  width: 20px;
  margin-right: 0.5rem;
  transform: rotate(90deg);
}
.header26_callout-v2 {
  mix-blend-mode: difference;
  position: absolute;
  top: auto;
  bottom: 15%;
  left: auto;
  right: -2rem;
}
.plugin-modal_button-secondary {
  z-index: -1;
  width: 100%;
  color: #161616;
  text-align: center;
  background-color: #fff;
  border: 1px solid rgba(22, 22, 22, 0.15);
  border-radius: 8px;
  flex: none;
  padding: 8px 24px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  display: none;
}
.plugin-modal_button-secondary:hover {
  background-color: #f1f0ee;
}
.plugin-modal_button-secondary.cursor-none {
  cursor: none;
}
.plugin-modal_bottom-nav_button-wrapper {
  width: 100%;
  position: relative;
}
.layout358_plugin-modal_button-secondary {
  width: 100%;
  color: #161616;
  text-align: center;
  background-color: #fff;
  border: 1px solid rgba(22, 22, 22, 0.15);
  border-radius: 8px;
  flex: none;
  padding: 8px 24px;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  display: none;
  position: relative;
}
.layout358_plugin-modal_button-secondary:hover {
  background-color: #f1f0ee;
}
.rl-footer_slack-cta {
  background-color: rgba(34, 34, 34, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
  padding: 2rem;
  display: flex;
}
.rl-footer_slack-text-wrapper {
  align-items: flex-start;
  margin-right: 1.5rem;
  display: flex;
}
.rl-footer_slack-icon {
  width: 3.5rem;
  height: 3.5rem;
  filter: invert();
  background-color: transparent;
  border: 1px solid rgba(22, 22, 22, 0.15);
  border-radius: 0.5rem;
  margin-right: 2rem;
  padding: 0.5rem;
}
.header1_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}
.header1_image {
  width: 100%;
  height: 100%;
}
.spacer-tiny {
  width: 100%;
  padding-top: 0.25rem;
}
.spacer-xxsmall {
  width: 100%;
  padding-top: 0.5rem;
}
.spacer-xsmall {
  width: 100%;
  padding-top: 1rem;
}
.spacer-small {
  width: 100%;
  padding-top: 1.5rem;
}
.spacer-medium {
  width: 100%;
  padding-top: 2rem;
}
.spacer-large {
  width: 100%;
  padding-top: 3rem;
}
.spacer-xlarge {
  width: 100%;
  padding-top: 4rem;
}
.spacer-xxlarge {
  width: 100%;
  padding-top: 5rem;
}
.spacer-huge {
  width: 100%;
  padding-top: 6rem;
}
.spacer-xhuge {
  width: 100%;
  padding-top: 7rem;
}
.spacer-xxhuge {
  width: 100%;
  padding-top: 10rem;
}
@media screen and (max-width: 991px) {
  h1 {
    font-size: 4rem;
  }
  h2 {
    font-size: 3.75rem;
  }
  h3 {
    font-size: 2.25rem;
  }
  h4 {
    font-size: 1.75rem;
  }
  .hide-tablet {
    display: none;
  }
  .max-width-full-tablet {
    width: 100%;
    max-width: none;
  }
  .margin-large {
    margin: 2.5rem;
  }
  .margin-xlarge {
    margin: 3.5rem;
  }
  .margin-xxlarge {
    margin: 4.5rem;
  }
  .margin-huge {
    margin: 5rem;
  }
  .margin-xhuge {
    margin: 6rem;
  }
  .margin-xxhuge {
    margin: 7.5rem;
  }
  .padding-large {
    padding: 2.5rem;
  }
  .padding-xlarge {
    padding: 3.5rem;
  }
  .padding-xxlarge {
    padding: 4.5rem;
  }
  .padding-huge {
    padding: 5rem;
  }
  .padding-xhuge {
    padding: 6rem;
  }
  .padding-xxhuge {
    padding: 7.5rem;
  }
  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }
  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }
  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }
  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }
  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }
  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }
  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }
  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }
  .heading-style-h2 {
    font-size: 2.75rem;
  }
  .rl-styleguide_icons-list {
    grid-auto-flow: row;
  }
  .heading-style-h1 {
    font-size: 3.25rem;
  }
  .heading-style-h4 {
    font-size: 1.75rem;
  }
  .heading-style-h4.is-larger {
    font-size: 2rem;
  }
  .heading-style-h3 {
    font-size: 2.25rem;
  }
  .padding-section-medium {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .header26_component {
    padding-top: 10rem;
  }

  .layout239_list {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }
  .layout358_card {
    background-image: linear-gradient(159deg, rgba(34, 34, 34, 0), #222 36%),
      url(https://assets.website-files.com/63f5d36e1bfb159570f6408c/63fef69fe9d846d532a5a36d_Grid-Light.svg),
      url(https://assets.website-files.com/63f5d36e1bfb159570f6408c/6402684921e67fe821b43aba_Noise_small.png);
    background-position: 0 0, 50%, 0 0;
    background-repeat: repeat, repeat, repeat;
    background-size: auto, auto, 100px 100px;
    background-attachment: scroll, scroll, scroll;
    grid-template-columns: 1fr;
  }
  .layout358_card-content {
    padding: 3rem 3rem 4rem;
  }
  .cta39_card {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }
  .cta39_card-content {
    padding: 3rem;
  }
 
  .testimonial18_component {
    column-count: 2;
  }
  .footer3_top-wrapper {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }
  .pricing25_plans {
    grid-template-columns: 1fr;
  }
  .text-highlight-orange.is-descender {
    padding-bottom: 0.5rem;
  }
  .pricing25_free-plan {
    background-size: auto, 80rem;
  }
  .navbar_component {
    width: 90%;
    min-height: auto;
    margin-top: 1rem;
  }
  .top-navbar_container {
    width: 100% !important;
    grid-template-columns: auto 1fr;
    padding-right: 0.75rem;
    overflow: visible;
  }
  .top-navbar_link {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .navbar_logo.show-tablet {
    max-width: 14rem;
    display: block;
  }
  .header26_purple-glow {
    width: 90%;
    height: 10rem;
  }
  .section_topbar,
  .layout358_card2-overlay,
  .layout358_card3-overlay {
    display: none;
  }
  .pricing25_orange-glow {
    width: 90%;
    top: -12rem;
  }
 
  .top-navbar_link-inner-wrapper {
    padding-left: 0.75rem;
    padding-right: 1rem;
  }
  .menu-icon1_line-middle {
    width: 24px;
    height: 1px;
    background-color: #fff;
    justify-content: center;
    align-items: center;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }
  .menu-icon1_line-bottom {
    width: 24px;
    height: 1px;
    background-color: #fff;
    padding-bottom: 0;
    padding-right: 0;
  }
  .navbar_menu-button.w--open {
    background-color: transparent;
  }
  .menu-icon1 {
    width: 48px;
    height: 48px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: -0.5rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }
  .menu-icon1_line-top {
    width: 24px;
    height: 1px;
    background-color: #fff;
    padding-bottom: 0;
    padding-right: 0;
  }
  .menu-icon_line-middle-inner {
    width: 4px;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }
  .layout358_card2-overlay-tablet,
  .layout358_card3-overlay-tablet {
    display: block;
  }
  .rl-page-padding {
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .heading-xhuge {
    font-size: 3.5rem;
  }
  .header26_callout-v2 {
    display: none;
  }
  .header1_component {
    min-height: auto;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 3.25rem;
  }
  h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }
  h5 {
    font-size: 1.25rem;
  }
  h6 {
    font-size: 1.125rem;
  }
  .button.is-secondary.editor_but {
    width: 50%;
  }
  .hide-mobile-landscape {
    display: none;
  }
  .max-width-full-mobile-landscape {
    width: 100%;
    max-width: none;
  }
  .margin-xsmall {
    margin: 0.75rem;
  }
  .margin-small {
    margin: 1.25rem;
  }
  .margin-medium {
    margin: 1.5rem;
  }
  .margin-large {
    margin: 2rem;
  }
  .margin-xlarge {
    margin: 2.5rem;
  }
  .margin-xxlarge {
    margin: 3rem;
  }
  .margin-huge {
    margin: 3.5rem;
  }
  .margin-xhuge {
    margin: 4rem;
  }
  .margin-xxhuge {
    margin: 5rem;
  }
  .padding-xsmall {
    padding: 0.75rem;
  }
  .padding-small {
    padding: 1.25rem;
  }
  .padding-medium {
    padding: 1.5rem;
  }
  .padding-large {
    padding: 2rem;
  }
  .padding-xlarge {
    padding: 2.5rem;
  }
  .padding-xxlarge {
    padding: 3rem;
  }
  .padding-huge {
    padding: 3.5rem;
  }
  .padding-xhuge {
    padding: 4rem;
  }
  .padding-xxhuge {
    padding: 5rem;
  }
  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }
  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }
  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }
  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }
  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }
  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }
  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }
  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }
  .plugin-modal_form_advanced-button {
    margin-left: auto;
  }
  .text-size-medium {
    font-size: 1rem;
  }
  .text-style-quote {
    font-size: 1.125rem;
  }
  .heading-style-h2 {
    font-size: 2.25rem;
  }
  .heading-style-h6 {
    font-size: 1.125rem;
  }
  .heading-style-h5 {
    font-size: 1.25rem;
  }
  .heading-style-h1 {
    font-size: 2.5rem;
  }
  .heading-style-h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }
  .heading-style-h4.is-larger {
    font-size: 1.5rem;
  }
  .heading-style-h3 {
    font-size: 2rem;
  }
  .text-style-nowrap {
    white-space: normal;
  }
  .text-size-large {
    font-size: 1.125rem;
  }
  .padding-section-small {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .padding-section-medium {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .padding-section-large {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .header26_component {
    padding-top: 7.5rem;
  }
  .layout239_list {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }
  .layout358_component {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }
  .layout358_card {
    background-position: 0 0, 50% 100%, 0 0;
    background-size: auto, auto, 100px 100px;
    background-attachment: scroll, scroll, scroll;
    border-radius: 1rem;
    grid-template-columns: 1fr;
  }
  .layout358_card-content {
    padding: 1.5rem;
  }
  .cta39_component {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }
  .cta39_card {
    border-radius: 1rem;
  }
  .cta39_card-content {
    padding: 2rem;
  }
  .cta39_image-wrapper {
    padding-top: 3rem;
  }

  .section_testimonial18 {
    border-bottom-right-radius: 3rem;
    border-bottom-left-radius: 3rem;
  }
  .testimonial18_component {
    column-count: 1;
  }
  .testimonial18_content {
    padding: 1.5rem;
  }
  .testimonial18_client {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .testimonial18_client-image-wrapper {
    margin-bottom: 1rem;
    margin-right: 0;
  }
  .footer3_component {
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
  }
  .footer3_top-wrapper {
    grid-row-gap: 3rem;
  }
  .footer3_menu-wrapper {
    grid-column-gap: 1.5rem;
  }
  .footer3_bottom-wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding-bottom: 1rem;
  }
  .footer3_credit-text {
    margin-top: 2rem;
  }
  .footer3_legal-list {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    grid-auto-flow: row;
  }
  .faq4_question {
    padding: 1rem 1.25rem;
  }
  .faq-05_icon {
    width: 1.75rem;
  }
  .faq4_answer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .section_pricing25 {
    border-radius: 2rem;
  }
  .pricing25_plans {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }
  .pricing25_plan {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .text-highlight-orange {
    border-left-width: 2px;
  }
  .text-highlight-orange.is-descender {
    padding-bottom: 0.375rem;
  }
  .text-highlight-purple {
    border-left-width: 2px;
  }
  .text-highlight-purple.is-descender {
    padding-bottom: 0.375rem;
  }
  .pricing25_free-plan {
    grid-row-gap: 1.5rem;
    background-image: linear-gradient(#161616, #161616 3%, rgba(22, 22, 22, 0)),
      url(https://assets.website-files.com/63f5d36e1bfb159570f6408c/63feed1d49df0b0ba2f037d8_Grid.svg);
    background-position: 0 0, 100%;
    background-size: auto, 80rem;
    flex-direction: column;
    align-items: stretch;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .top-navbar_container {
    padding-right: 1.25rem;
  }
  .top-navbar_menu {
    background-color: #222;
    border-radius: 1rem;
    margin-top: 2rem;
  }
  .top-navbar_menu-link-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding: 1.25rem;
  }
  .top-navbar_link {
    justify-content: center;
    margin-bottom: 1rem;
    margin-left: 0;
    margin-right: 0;
  }
  .top-navbar_link.is-primary {
    margin-bottom: 0;
    margin-left: 0;
  }
  .navbar_logo.show-tablet {
    max-width: 13rem;
  }
  .header26_purple-glow {
    height: 6rem;
    display: none;
    bottom: -3rem;
  }
  .layout358_ui-card--wrapper {
    bottom: 2rem;
    right: 2rem;
  }
  .layout358_card-wrapper {
    border-radius: 1.0625rem;
  }
  .testimonial18_content-wrapper {
    margin-bottom: 1.5rem;
  }
  .menu-icon1 {
    width: 40px;
    height: 40px;
  }
  .heading-xsmall {
    font-size: 1.125rem;
  }
  .heading-xhuge {
    font-size: 2.25rem;
  }
  .cta39_figma-stats-wrapper {
    display: none;
  }
  .rl-footer_slack-cta {
    flex-direction: column;
  }
  .rl-footer_slack-text-wrapper {
    text-align: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    margin-right: 0;
  }
  .rl-footer_slack-icon {
    margin-bottom: 1.5rem;
    margin-right: 0;
  }
  .header1_component {
    grid-row-gap: 3rem;
  }
}
@media screen and (max-width: 479px) {
  h1 {
    font-size: 2.75rem;
  }
  .hide-mobile-portrait {
    display: none;
  }
  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }
  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }
  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }
  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }
  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }
  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }
  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }
  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }
  .max-width-full-mobile-portrait {
    width: 100%;
    max-width: none;
  }
  .button-group {
    flex-direction: column;
    align-items: stretch;
  }
  .section_header26 {
    background-image: linear-gradient(
        #161616,
        #161616 40%,
        rgba(22, 22, 22, 0) 89%,
        #161616
      ),
      url(https://assets.website-files.com/63f5d36e1bfb159570f6408c/63feed1d49df0b0ba2f037d8_Grid.svg);
    background-position: 0 0, 0 0;
    background-size: auto, 80rem;
  }
  .layout239_list {
    grid-template-columns: 1fr;
  }
  .layout358_card {
    justify-items: center;
  }
  .layout358_image-wrapper {
    padding-bottom: 2rem;
  }
  .cta39_card {
    grid-template-columns: 1fr;
  }
  .cta39_card-content {
    padding: 1.5rem;
  }
  .cta39_image-wrapper {
    padding-top: 2.5rem;
  }
  .footer3_menu-wrapper {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }
  .layout358_ui-card--wrapper {
    width: 100%;
    bottom: 1rem;
    right: auto;
    transform: scale(0.9);
  }
  .rl-footer_slack-cta {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .header1_component {
    grid-template-columns: 1fr;
  }


}
#w-node-_56e71a25-8041-a42f-509b-1540b47b0c16-a5739249,
#w-node-_7d8546e6-ea84-9afe-de59-dc36ba90960c-a5739249,
#w-node-_7d8546e6-ea84-9afe-de59-dc36ba90963e-a5739249,
#w-node-_7d8546e6-ea84-9afe-de59-dc36ba90966e-a5739249,
#w-node-_7ab9d72f-0932-2dc5-bb21-19db60d8d09a-a5739249,
#w-node-_7ab9d72f-0932-2dc5-bb21-19db60d8d0d6-a5739249 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}
@font-face {
  font-family: "Relative";
  src: url("https://assets.website-files.com/63f5d36e1bfb159570f6408c/63f6063229e7aae370deaf9d_Relative-Bold.ttf")
    format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Relative";
  src: url("https://assets.website-files.com/63f5d36e1bfb159570f6408c/63f606328c4b9dd7c382ec95_Relative-Book.ttf")
    format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Relative";
  src: url("https://assets.website-files.com/63f5d36e1bfb159570f6408c/63f606323827b0538c432403_Relative-Medium.ttf")
    format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}






/*=============================== Footer ====================================*/


.home_banner_section {
  background: linear-gradient(27deg, rgb(255, 116, 72) 0%, rgb(22, 22, 22) 30%, rgb(98, 72, 255) 100%, rgb(25, 23, 22) 100%);
  width: 100%;
  color: white;
  padding: 14px 3px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.home_post_trend {
  margin-top: 4em;
}

.footer-social-m{
  margin-top: 1rem;
  display: flex;
}
.-mt-2 {
  margin-top: -.5rem;
}
.px-2 {
  padding-left: .5rem;
  padding-right: .5rem;
}
.upgrade-home-pro {
  position: absolute;
  right: 19px;
  width: 28px;
  height: 28px;
  padding: 4px 5px 5px 4px;
  cursor: pointer;
}

.footer-bottom-b{
  display: flex;
  width: 91.666667%;
  padding-bottom: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin: auto;
}
.top-upg-ban p {
  color: white !important;
  font-size: 14px;
}
.top-upg-ban a {
  color: #fff !important;
  background: #ff7448;
  padding: 5px 10px;
  margin: 6px;
  border-radius: 4px;
  font-weight: 800;
  
}

.footer-cont-b{
  flex: 1;
  text-align: left;
}

.footer-textc{
    --text-opacity: 1;
  color: #fff;
  border-bottom-width: 2px;
  text-align: left;
   font-size: .75rem;
   font-weight: 700;
}


.footer-layout{
  margin-top: 16px;
  width: 100%;

}
.top-footer{
  padding: 16px 0;
background: #151516;
border-radius: 4rem 4rem 0 0;
  position: relative;
  overflow: hidden;
}

.bottom-footer{
border-top: 1px solid rgba(255,255,255,.1);
}

.footer-text-c {
  font-size: 16px;
  padding: 4px 0px;
  color: white;
  white-space: nowrap;
  font-weight: 600;
}
.footer-heading {
  color: white;
  font-size: 16px;
  margin-right: 13px;
  border-bottom: 2px solid white;
  white-space: nowrap;
  margin-bottom: 0px;
  margin-top: 14px;
  font-weight: 800;
}

.footer-con{
  display: grid;
  margin-top: 16px;
}
.footer-display{
    width: 60%;
    display: grid;
    margin-left: auto;
    margin-right: auto;
    padding: 90px 0;
}

.address {
  float: right;
}
.footer-column {
  display: grid;
  margin-top: 2em;
}

.footer-card{
  display: grid;
  margin: 24px 0;
}
.bottom-footer-text {
  color: white;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  text-transform: uppercase;
}


/*lg*/
@media only screen and (min-width: 1024px) {

  .footer-text-c {
    font-size: 15px !important;
    padding: 0px 6px !important;
  }
  .footer-heading {
    font-size: 15px !important;
    margin-right: 8px !important;
    border-bottom: 2px solid white !important;
  }

}
/*md*/
@media only screen and (min-width: 768px) {

  .footer-display{
    display: flex;
    width: 94%;
  }
  .footer-heading {
    font-weight: 600;
  }
  .footer-column {
    margin-top: 0;
  }
  .footer-card{
    display: flex;
  }
  .footer-con {
    display: flex;
  }
  .footer-text-c {
    font-size: 13px;
    padding: 0px 5px;
    font-weight: 400;
  }
  .bottom-footer-text{
    font-size: 13px;
    line-height: 20px;
    width: 100%;
  }
}









/*=============================== Home Sidebar ====================================*/
.siteflex {
  width: 100%;
  display: flex;
}
.mainpost {
  width: 100%;
  float: right;
  margin-bottom: 6em;
}

.mainsidebar {
    width: 180px;
    float: right;
    max-width: 180px;
    display: none;
    height: auto;
}
.ads_sidebar {
  margin-top: 30px;
  border: 1px solid white;
}
.content-user-post {
  right: 0;
  left: 0;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
.sidebar_home {
  height: 100% !important;
  height: auto;
  width: 172px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: #161616;
  background-image: linear-gradient(#161616 21%,rgba(22,22,22,0)),url("/public/images/craft/backshade.png");
  background-position: 0 0,0 0;
}

.sidebar_button {
  padding: 7px 18px;
  width: 100%;
}
.sidebar_button li a {
  background: #222;
  color: white;
  padding: 10px 17px;
  margin: 8px 0px;
  border-radius: 5px;
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 2px solid #6248ff;
}
.sidebar_button li svg {
  margin-right: 6px;
  margin-top: 5px;
}

.logo_sidebar a {
  color: #c8c8c8;
  font-weight: 400;
  font-size: 16px;
}
.logo_sidebar {
  font-size: 16px;
  font-weight: 800;
  color: white;
  text-align: left;
  width: 100%;
  display: block;
  padding: 11px 20px;
}
.app_header_mob_sidebar {
  position: fixed;
  width: 50px;
  background: #2c2c2c;
  z-index: 10;
  margin-top: 2px;
  margin-left: 10.7em;
  padding: 5px 5px 0px;
  box-shadow: 4px 2px 5px black;
}
.sidebartras {
    transform: translateX(-171px);
    position: fixed;
    border-radius: 0 5px 5px 0;
    padding: 5px 3px 2px;
    margin-top: 75px;
}
.hamburger-mob-sidebar {
  fill: white;
}
.sidenone{
  display: none !important;
}


@media only screen and (min-width: 920px) {
  .mainsidebar {
    background: #161616;
  }
  .sidenone{
    display: block !important;
  }
  .mainpost {
    width: 90%;
  }
  .mainsidebar {
    display: block;
  }
  .app_header_mob_sidebar {
  display: none;
  }
  .sidebartras {
    display: none;
  }
  .sidebar_home {
  margin-top: 32px; 
  } 
}

@media only screen and (max-width: 920px) {

.mainsidebar {
  position: fixed;
  z-index: 9;
  height: 100%;
  top: 0px;
  display: block;
  
}
.sidebar_home{
  padding-top: 5em;
}
.app_header_mob_sidebar{
  margin-top: 5em;
}
}

/*=============================== End Home Sidebar ====================================*/



/*=================== Pagination ===================*/

.pagination {
  display: flex;
  margin-bottom: 2em;
}
.pagination li {
  padding: 8px 19px;
  margin: 7px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: bold;
  display: flex;
  background-color: #222;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.disabled {
  background: #161616 !important;
  cursor: no-drop;
}
.disabled span {
  color: #717d94;
}
.page-item{
  cursor: pointer;
}
.page-item a {
  color: white;
}
.page-item:hover {
  background: #2c2c2c;
}
.page-item a:hover {
  color: white;
}
.home_filter {
  width: 90%;
  margin: auto;
    display: flex;
}

.home_filter_drop {
  width: 100px !important;
  float: right;
  margin-left: auto;
  margin-right: 20px;
}
.home_post_ul {
  display: flex;
  color: white;
  width: 83%;
  margin-left: auto;
  margin-right: auto;
}
.home_post_button {
  background: none;
  color: white;
  cursor: pointer;
}

.home_post_li {
  margin: 26px;
  border-bottom: 2px solid white;
  width: 79px;
  text-align: center;
  list-style: none;
  padding-left: 0;
}

.top-upg-ban{
max-width: 72%;
margin-right: auto;
margin-left: auto;
}
.list-Nav.profile-list-profile {
  box-shadow: 0px 0px 3px rgb(120, 93, 148);
}
@media only screen and (max-width: 990px) {

.home_filter{
  display: grid;
}
}


@media only screen and (min-width: 990px) {

.blockpc{
  display: none;
}
}


/*============== Follow Button ====================*/
.hr {
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}
.follow-button svg,.saved-button svg,.hired-button svg {
   margin: 4px 2px;
}
.follow-button svg {
  fill: white;
}
.follow-button {
  position: relative;
  border-radius: 7px;
  color: #fff;
  fill: white;
  background-color: #ff7448;
  background-image: none;
  border: 1px solid rgb(255, 116, 72);
  padding: 9px 23px;
  display: flex;
}
.hired-button {
  position: relative;
  border-radius: 7px;
  color: #fff;
  fill: white;
  background-color: #222;
  background-image: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 9px 23px;
  display: flex;
}
.hired-button:hover {
background:transparent;
}
.noButton {
  background: none;
}
@media only screen and (max-width: 470px) {
   .follow-button{
    padding: 7px 11px;
  font-size: 12px;
  }
.hired-button {
  font-size: 10px;
  padding: 11px 9px;
}
.icons {
  width: 12px;
}
.button-editor {
  margin: 0px 2px !important;
}
.icons.svg-icon {
  margin-right: 2px !important;
}

}
@media only screen and (min-width: 470px) {
  .icons {
    width: 16px;
    font-weight: 800;
  }
}


.link.user-name-desi {
  color: #cfcfcf;
  font-weight: 400;
  font-size: 13px;
}
.profile_name {
  font-size: 17px;
  font-weight: 400 !important;
  color: white;
}
.alert_danger {
  font-size: 14px;
  color: #2fe32f;
  padding: 4px 0;
}
.saved-button {
  width: 100%;
  background: #222;
  border: 2px solid rgba(255, 255, 255, 0.15);
  margin-top: 9px;
  padding: 11px;
  border-radius: 12px;
  cursor: pointer;
}





/*===================================== Comment section ================================================*/

/*.commentSection{
margin-top: 50px;
margin-left: 58px;
}
.commentRow {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}*/

.text_font{
  font-family: "acumin-pro","Acumin Pro","Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 14px !important;
font-weight: normal !important;
letter-spacing: 1px;
}
.text_font_link{
  font-family: "acumin-pro","Acumin Pro","Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 12px !important;
font-weight: normal !important;
letter-spacing: 0px;
}
.text_font_link:hover{
color: #00ff7f !important;
}
.photo_profile {
    width: 40px;
    height: 40px !important;
    border-radius: 50%;
    margin-top: 0px;
    object-fit: cover;
}
.comment-box.panel .nav-pills > li > a,
.converstation .nav-pills > li > a {
  font-size: 20px;
  text-align: center;
  color: #2196f3;
}
.comment-box.panel .nav-pills > li > a .fa,
.converstation .nav-pills > li > a .fa {
  width: 24px;
}

.panel-footer.comment-button {
  position: relative;
  margin-top: -70px;
  float: right;
  margin-right: 12px;
}
.comment-box.panel {
  border: none;
  margin-bottom: 20px;
}
.dropdown.commnet-edit .commnet-editlist {
  display: none;
}
.dropdown.commnet-edit.open .commnet-editlist {
  display: block;
  z-index: 9;
}
.media-heading.pull-left {
  color: white !important;
}
.comment-box.panel textarea,
.comment-box.panel .btn-primary {
  outline: 0 !important;
}
.comment-box.panel textarea {
    width: 100%;
    min-height: 100px;
    padding: 30px;
    border: none;
    resize: none;

}

.comment-box.panel .panel-body {
  padding: 0;
}

.comment-box.panel .btn-primary {
  min-width: 100px;
  margin-top: 7px;

}


.converstation {
/*border: 1px solid #e8e8e8;*/
margin-top: 30px;
/*padding: 30px 30px 0;*/
}
.media {
  border-bottom: 1px solid #3d3d3d;
  margin-bottom: 5px;
  display: flex;
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  position: relative !important;
  padding-bottom: 10px;
}


.converstation .media .remove .fa {
  width: 16px;
}

.converstation .media-object {
width: 47px;
height: 47px;
    border-radius: 50%;
}
.converstation .media-left,
.converstation .media > .pull-left {
  padding-right: 15px;
}
.time.pull-right {
    margin-left: 18px;
    color: #939191;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
}


.media-heading.pull-left {
  text-transform: capitalize;
  font-weight: 600;
  width: 100%;
  display: flex;
  background: #222;
  padding: 9px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 17px;
}

.editor-footer-des{
    bottom: 0;
position: relative;
top: 49em;
}

.comment-list-edit li {
    font-size: 13px;
    font-weight: 400;
    margin: 0;
}

.comment-list-edit {
    display: flex;
    margin: 0;
    list-style-type: none;
}
.commentedit {
    margin-top: -15px;
    font-size: 15px;
    font-weight: 700;
}
.comment-list-delete {
    padding-left: 16px;
}

.media-body {
  -ms-flex: 1;
  flex: 1;
}
a.link.comment-pro-post-badge {
  margin-left: 3px;
}
.link {
  color: #ff7448 !important;
}
.comment-pro-post-badge .proicon-post-comment {
  width: 34px;
  margin-top: -1px;
  margin-right: 5px;
}
.time.pull-right {
  margin-left: 18px;
  color: #939191;
  font-weight: 600;
  font-family: Monaco, monospace !important;
  font-size: 10px;
  margin-left: auto;
  margin-right: 12px;
  margin-top: 6px;
}
.pull-right {
  float: right;
}

.commentDes {
  color: white;
  font-size: 14px;
  margin-top: 6px;
  background: #b7b7b71c;
  padding: 15px 18px;
  border-radius: 4px;
  border: 1px solid #3a3838;
}
.dropdown.commnet-edit {
  margin-left: 2px;
  cursor: pointer;
}

.comment-edit-button {
  width: 20px;
  padding: 0px;
  height: 20px;
  margin-top: 2px;
  margin-left: 3px;
}
.comment-edit-button svg {
  fill: white;
}

.commnet-editlist {
  background: #222;
  width: 7em !important;
  margin-right: 0;
  margin-left: -98px !important;
  margin-top: 12px;
  padding: 17px !important;
  border-radius: 13px 0px 12px 12px;
  position: absolute !important;
  border: 2px solid rgba(255, 255, 255, 0.15);
}
.commnet-editlist li {
  font-size: 12px;
}



/*============== Hired ==============*/
.collections.scrolling-selection-list.group {
  padding: 19px 25px 37px 25px !important;
  border-radius: 6px;
  height: 118px !important;
}
.group.unbucketed.current {
  float: left;
  display: flex;
}
.current {
  color: black;
  font-size: 16px;
  font-weight: 600;
}
.bucket-img {
  margin-right: 7px;
}
.bucket-meta.bucket-timestamp {
  color: #fff !important;
  font-size: 13px !important;

}
.account-unable-access {
  margin-top: 7em;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}
