/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

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

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

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

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

body {
  color: #040404;
  background: #fff;
  font: 16px/1.625 "Inter", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  min-width: 360px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 1023px) {
  body {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

.resize-active .nav-holder {
  transition: none;
}

body.menu-active {
  overflow: hidden;
}

.body-wrapper {
  position: relative;
  overflow: hidden;
}

/* Paragraphs */
p {
  margin: 0 0 1em;
}

strong, b {
  font-weight: 700;
}

/* Anchors */
a {
  color: #040404;
  transition: all 0.4s ease;
  text-decoration: none;
}
a:hover, a:focus {
  color: #E8E000;
  text-decoration: none;
}

/* Headings */
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: "Poppins", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  font-weight: 600;
  margin: 0 0 0.5em;
  color: #040404;
  line-height: 1.1;
}

h1, .h1 {
  font-size: 72px;
}

h2, .h2 {
  font-size: 48px;
}

h3, .h3 {
  font-size: 42px;
}

h4, .h4 {
  font-size: 24px;
}

h5, .h5 {
  font-size: 21px;
}

h6, .h6 {
  font-size: 15px;
}

@media (max-width: 1439px) {
  h1, .h1 {
    font-size: 65px;
  }
  h2, .h2 {
    font-size: 42px;
  }
  h3, .h3 {
    font-size: 36px;
  }
}
@media (max-width: 1199px) {
  h1, .h1 {
    font-size: 55px;
  }
  h2, .h2 {
    font-size: 36px;
  }
  h3, .h3 {
    font-size: 32px;
  }
  h4, .h4 {
    font-size: 21px;
  }
}
@media (max-width: 1023px) {
  h1, .h1 {
    font-size: 40px;
  }
  h3, .h3 {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  h1, .h1 {
    font-size: 36px;
  }
  h2, .h2 {
    font-size: 30px;
  }
  h4, .h4 {
    font-size: 18px;
  }
}

/* Lists */
ul,
ol {
  margin: 14px 0 0;
  padding: 0 0 0 26px;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list, ol.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */
pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */
blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */
hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.gm-style img {
  max-width: none;
}

/* container */
.container {
  max-width: 1322px;
  padding: 0 20px;
  margin: 0 auto;
}
.dnd-section > .row-fluid {
  max-width: 1322px;
  margin: 0 auto;
}
.dnd-section > .row-fluid .container {
  padding: 0;
}
[class*=full-width-section] > .row-fluid {
  padding: 0;
}
[class*=full-width-section] > .row-fluid .container {
  padding: 0 20px;
}
[class*=full-width-section] > .row-fluid .dnd-column {
  padding: 0;
}
@media (max-width: 767px) {
  .dnd-section > .row-fluid {
    padding: 0 15px;
  }
  [class*=full-width-section] > .row-fluid {
    padding: 0;
  }
  [class*=full-width-section] > .row-fluid .container {
    padding: 0 15px;
  }
}

@media(max-width: 767px) {
  .desktop {
    display: none;
  }
}
@media(min-width: 768px) {
  .mobile {
    display: none;
  }
}

/* Text Large Styles */
.text-large {
  margin: 0 0 20px;
}
@media (min-width: 1200px) {
  .text-large {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.16px;
  }
}

/* Section Header Styles */
.section-header {
  overflow: hidden;
  text-align: center;
  margin: 0 auto 45px;
  max-width: 600px;
}
@media (min-width: 1024px) {
  .section-header {
    max-width: 720px;
    margin-bottom: 80px;
  }
}
.section-header h2 {
  margin: 0 0 17px;
  letter-spacing: -1.4px;
}

/* Buttons Wrap Styles */
.buttons-wrap {
  display: flex;
  flex-flow: wrap;
  gap: 15px;
  padding: 20px 0 0;
}

/* Iframe styles */
iframe {
  width: 100%;
  height: 100%;
}

/* sale tag */
.sale-tag {
  display: inline-flex;
  align-items: center;
  color: #040404;
  font-size: 14px;
  line-height: 19.6px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 8px;
}
.sale-tag.white {
  background-color: #fff;
}
.sale-tag.blue_dark {
  background-color: #BDCFD1;
}
.sale-tag.light_dark {
  background-color: #EEF2F2;
}
.sale-tag.orange {
  background-color: #FF8D29;
}
.sale-tag.yellow {
  background-color: #FDEF00;
}
.sale-tag .icon {
  max-width: 18px;
  margin-right: 7px;
  line-height: 1;
}

/* Video Styles */
.video-container {
  position: relative;
}
.video-container > img,
.video-container > video {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  border: 0;
/*   border: 1px solid #eef2f2; */
}
.video-container .video-controls {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 5;
  background: rgba(4, 4, 4, 0.5607843137);
  width: 48px;
  height: 48px;
  border-radius: 100%;
}
.video-container .video-controls .play-button,
.video-container .video-controls .pause-button,
.video-container .video-controls .mute-button,
.video-container .video-controls .unmute-button {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  background: none;
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
}
.video-container .video-controls .play-button img,
.video-container .video-controls .pause-button img,
.video-container .video-controls .mute-button img,
.video-container .video-controls .unmute-button img {
  height: 12px;
  width: auto;
  position: relative;
}
.video-container .video-controls .play-button.hide,
.video-container .video-controls .pause-button.hide,
.video-container .video-controls .mute-button.hide,
.video-container .video-controls .unmute-button.hide {
  display: none;
}
.video-container .video-controls .play-button.show,
.video-container .video-controls .pause-button.show,
.video-container .video-controls .mute-button.show,
.video-container .video-controls .unmute-button.show {
  display: flex;
}
.video-container .video-controls .mute-button img,
.video-container .video-controls .unmute-button img {
  height: 20px;
}
.video-container .video-controls-wrap {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.video-container .video-controls-wrap .video-controls {
  position: relative;
  bottom: auto;
  right: auto;
}

/* Carousel Slider Styles */
.carousel-slider {
  position: relative;
  margin: 0 -8px 60px;
}
.carousel-slider .slick-list {
  padding-right: 40px;
  margin-right: -15px;
}
.carousel-slider .slick-track {
  display: flex;
}
.carousel-slider .slick-slide {
  padding: 0 8px;
  height: auto;
}
@media(min-width: 1024px) {
  .carousel-slider {
    margin: 60px -8px 0;
  }
  .carousel-slider .slick-list {
    padding-right: 100px;
  }
}
@media(min-width: 1200px) {
  .carousel-slider .slick-list {
    padding-right: 170px;
  }
}
@media(min-width: 1440px) {
  .carousel-slider .slick-list {
    margin: 0;
  }
}

/* Slock Arrows Styles */
.slick-arrow {
  position: absolute;
  bottom: -60px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  border-radius: 100%;
  z-index: 5;
  background: #eef2f2;
  transition: 0.3s;
}
.slick-arrow.slick-next {
  left: 55px;
}
.slick-arrow.slick-prev {
  left: 6px;
}
.slick-arrow.slick-prev svg {
  transform: rotate(180deg);
}
.slick-arrow:hover {
  background: #c4e0e0;
}
.slick-arrow.slick-disabled {
  background: transparent;
  opacity: 0.25;
}
@media (min-width: 768px) {
  .slick-arrow {
    top: -88px;
    bottom: auto;
  }
  .slick-arrow.slick-next {
    right: 6px;
    left: auto;
  }
  .slick-arrow.slick-prev {
    right: 55px;
    left: auto;
  }
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */
.hs-button, .cta_button {
  background: #e8e000;
  padding: 15px 15px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #040404;
  border-radius: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border: 0px solid #e8e000;
  cursor: pointer;
  position: relative;
}
@media (min-width: 1200px) {
  .hs-button, .cta_button {
    font-size: 16px;
    padding: 13px 20px;
  }
}

.hs-button:before, .cta_button:before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
  transform: translateY(100%);
  transition: 0.3s;
}

.hs-button:hover, .hs-button:focus,
.cta_button:hover, .cta_button:focus {
  color: #040404;
}

.hs-button:hover:before,
.cta_button:hover:before {
  transform: none;
}

.cta_button .icon {
  margin-left: 10px;
}

.cta_button.btn-outline {
  background: transparent;
  border-color: #040404;
  color: #040404;
}
.cta_button.btn-outline:hover, .cta_button.btn-outline:focus {
  color: #fff;
  background: #040404;
  border-color: #040404;
}
.cta_button.btn-white {
  background: #fff;
  border-color: #040404;
  color: #040404;
}
.cta_button.btn-white:hover, .cta_button.btn-white:focus {
  color: #fff;
  background: #040404;
  border-color: #040404;
}
.cta_button.btn-black {
  background: #040404;
  border-color: #040404;
  color: #fff;
}
.cta_button.btn-black:hover, .cta_button.btn-black:focus {
  color: #040404;
  background: transparent;
  border-color: #040404;
}

.cta_button.btn-green {
  background: #25D366;
  border-color: #25D366;
  color: #040404;
}

.cta_button.btn-link {
  background: #fff;
  border-color: #fff;
  color: #040404;
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  display: block;
  margin: 0 0 6px;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  width: 100%;
  height: 36px;
  color: #040404;
  font-size: 16px;
  line-height: 20px;
  padding: 8px 12px;
  border-radius: 8px;
  background: #FFFFFFB8;
  border: 1px solid transparent;
}

form input[type=text]:focus,
form input[type=search]:focus,
form input[type=email]:focus,
form input[type=password]:focus,
form input[type=tel]:focus,
form input[type=number]:focus,
form input[type=file]:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: #040404B8;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
  font-weight: 400;
}

form .hs-error-msgs li {
  margin: 0.5rem 0 0;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

form .inputs-list label {
  position: relative;
  cursor: pointer;
  padding-left: 25px;
  font-size: 12px; 
  margin: 0;
}
form .hsfc-CheckboxFieldGroup__Options .hsfc-FieldLabel {
  position: relative;
  cursor: pointer;
}
form input[type="checkbox"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
form input[type="checkbox"] + label::before, form input[type="checkbox"] + span::before {
  border: 1px solid #0404048F;
  border-radius: 4px;
  content: "";
  display: block;
  height: 16px;
  left: 0;
  position: absolute;
  top: 2px;
  width: 16px; 
}
form input[type="checkbox"] + label::after, form input[type="checkbox"] + span::after {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 10px auto;
  content: "";
  display: block;
  height: 16px;
  left: 0;
  position: absolute;
  top: 2px;
  transform: scale(0);
  transition: all .2s ease-out;
  width: 16px;
}
form input[type="checkbox"]:checked + label::before, form input[type="checkbox"]:checked + span::before {
  background-color: #0404048F;
}
form input[type="checkbox"]:checked + label::after, form input[type="checkbox"]:checked + span::after {
  transform: scale(1);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18.217' height='13.264'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' d='m.707 6.19 5.661 5.66L17.51.707'/%3E%3C/svg%3E");
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext a,
form .hs-richtext p a {
  color: #040404;
  text-decoration: underline;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #040404;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  font-size: 12px;
  padding: 0 !important;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  background: #040404;
  border-color: #040404;
  color: #fff;
}
form input[type=submit]:hover,
form .hs-button:hover {
  color: #040404;
  background: transparent;
  border-color: #040404;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}

form fieldset.form-columns-2 .hs-form-field {
  width: 100% !important;
}
form fieldset.form-columns-2 .input {
  margin-right: 0 !important;
}
@media(min-width: 768px) {
  form fieldset.form-columns-2 .hs-form-field {
    width: 50% !important;
  }
  form fieldset.form-columns-2 .hs-form-field:first-child .input {
    margin-right: 24px !important;
  }
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}
/* Slick slider styles */
.slick-slider {
  position: relative;
  user-select: none;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
}

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

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  outline: none;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

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

/* Components
Specific pieces of UI that are stylized.
*/

/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}
/* Top Bar Styles */
.top-bar {
  background: radial-gradient(72.78% 334.82% at 72.78% 38.06%, #FDEF00 0%, #FDF238 51.5%, #FFF59C 100%);
  width: 100%;
  overflow: hidden;
  font-weight: 600;
  font-size: 11px;
  padding: 8px 0;
  gap: 7px;
}
.top-bar.blue_light {
 background: #EEF2F2;
}
.top-bar.blue_dark {
  background: #BDCFD1;
}
.top-bar.orange {
  background: radial-gradient(72.78% 334.82% at 72.78% 38.06%, #FF8D29 0%, #FAC074 51.5%, #FFD9AB 100%);
}
.top-bar.green {
  background: radial-gradient(72.78% 334.82% at 72.78% 38.06%, #68CC8C 0%, #99EBB6 51.5%, #B9EBCB 100%);
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1350px;
}
.top-bar .top-bar__info {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-grow: 1;
  min-width: 0;
}
.top-bar .icon {
  width: 24px;
  flex-shrink: 0;
  margin-left: -5px;
}
.top-bar p {
  margin: 0;
  flex-grow: 1;
  min-width: 0;
}
.top-bar p .readmore {
  color: #040404;
  margin-left: 6px;
}
.top-bar .top-bar__close {
  width: 20px;
  flex-shrink: 0;
  margin: 0 -3px 0 0;
}

@media (max-width: 767px) {
  .nav-active .top-bar {
    display: none;
  }
}
@media (min-width: 768px) {
  .top-bar {
    padding: 12px 20px;
    font-size: 13px;
    gap: 10px;
  }
  .top-bar-bar .top-bar__info {
    gap: 7px;
  }
  .top-bar .icon {
    margin: 0;
  }
  .top-bar .top-bar__close {
    margin: 0 3px 0 0;
  }
}
@media (min-width: 1024px) {
  .top-bar {
    font-size: 14px;
  }
}
@media (min-width: 1440px) {
  .top-bar {
    padding: 12px 2.8%;
  }
}
/* Header Styles */
.header {
  padding: 16px 0;
  width: 100%;
  background: #040404;
  position: relative;
  z-index: 5;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1350px;
  gap: 10px;
}
.header .cta_button {
  padding: 5px 12px;
  color: #e8e000;
  background: transparent;
}
.header .cta_button:hover {
  color: #040404;
  background: #e8e000;
}

/* Logo Styles */
.logo {
  display: block;
  position: relative;
  width: 91px;
  z-index: 1;
}
.logo a {
  display: block;
  position: relative;
}
.logo a img {
  width: 100%;
  height: auto;
  display: block;
}
.icon-bars {
  flex-shrink: 0;
  width: 24px;
}
.icon-bars img {
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile Nav Opener Styles */
.nav-opener {
  position: absolute;
  right: 15px;
  width: 24px;
  height: 24px;
  transition: all 0.4s ease;
  display: none;
}
.nav-active .nav-opener {
  border-top: none;
}
.nav-active .nav-opener {
  z-index: 2;
}
.nav-opener:after, .nav-opener:before {
  background: #fff;
  width: 16px;
  left: 50%;
  transform: translateX(-50%);
  top: 8px;
  height: 2px;
  content: "";
  position: absolute;
  transition: all 0.4s ease;
}
.nav-active .nav-opener:after, .nav-active .nav-opener:before {
  top: 12px;
  transform: translateX(-50%) rotate(45deg);
  background: #fff;
}
.nav-opener:after {
  top: 14px;
}
.nav-active .nav-opener:after {
  transform: translateX(-50%) rotate(-45deg);
}

/* Nav Holder Styles */
.nav-holder {
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.nav-holder:before {
  position: absolute;
  left: 15px;
  right: 15px;
  height: 60px;
  top: 0;
  content: "";
  z-index: 1;
  background: #040404;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.resize-active .nav-holder {
  transition: none;
}
.nav-holder .btn-holder {
  padding: 30px 24px;
  width: 100%;
}
.nav-holder .btn-holder .cta_button {
/*   width: 100%; */
  font-size: 16px;
  padding: 13px 20px;
  display: block;
}

/* Menu Styles */
.nav-holder ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Poppins", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  font-size: 14px;
  line-height: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-holder ul li {
  padding: 0 12px;
  position: static !important;
}
.nav-holder ul li.active > a {
  color: #fdef00;
}
.nav-holder ul a {
  text-decoration: none;
  color: #fff;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 20px 0;
  position: relative;
}
/* .nav-holder ul a:before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.95);
  width: 0;
  transition: 0.3s;
} */
.nav-holder ul li.hs-item-has-children a {
  position: relative;
}
.nav-holder ul li.hs-item-has-children .hs-menu-children-wrapper {
  width: 100%;
  list-style: none;
  padding: 25px 0 0;
  margin: 0;
  font-size: 20px;
  font-weight: 500;
}
.nav-holder ul li.hs-item-has-children .hs-menu-children-wrapper li a:hover {
  color: #e8e000;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}


@media (max-width: 1023px) {
  .nav-holder ul li {
    padding: 0 5px;
  }
  .header-right .cta_button {
    font-size: 12px;
  }
}
@media (max-width: 1199px) {
  .icon-bars {
    display: none;
  }
  .nav-active {
    overflow: hidden;
  }
  .nav-opener {
    display: block;
  }
  .nav-active .nav-opener {
    border-top-color: #040404;
  }
  .nav-holder {
    width: 100%;
    right: 0;
    top: 0;
    bottom: 0;
    background: #040404;
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
  }
  .nav-active .nav-holder {
    opacity: 1;
    visibility: visible;
  }
  .nav-holder .nav-scroller {
    padding: 100px 0 30px;
    overflow: auto;
    width: 100%;
  }
  .nav-holder ul {
    display: block;
    font-size: 24px;
    font-weight: 600;
  }
  .nav-holder ul li {
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }
  .nav-holder ul li.active > a {
    color: #fdef00;
  }
  .nav-holder ul li.hs-item-has-children .hs-menu-children-wrapper > a {
    display: none;
  }
  .nav-holder ul a {
    color: #fff;
    padding: 10px 24px;
  }
  .nav-holder ul a:hover {
    color: #b3b3b3;
  }
  .nav-holder ul li.hs-item-has-children .hs-menu-children-wrapper li a {
    padding: 5px 24px;
  }
  .header-right .cta_button {
    display: none;
  }
}
@media (min-width: 1200px) {
  .header {
    padding: 0;
  }
  .nav-holder:before {
    display: none;
  }
  .nav-holder .btn-holder {
    display: none;
  }
  .nav-holder ul li.active > a:before {
    width: 100%;
  }
  .nav-holder ul li.hs-item-has-children:hover > a > .arrow {
    transform: rotate(180deg);
  }
  .nav-holder ul li.hs-item-has-children a:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -18px;
    transform: translateY(-50%);
    width: 11px;
    height: 7px;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='11' height='7' viewBox='0 0 11 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.5 4.875L9.4375 0.9375L10.5 2L5.5 7L0.5 2L1.5625 0.9375L5.5 4.875Z' fill='white'/%3E%3C/svg%3E%0A");
  }
  .nav-holder ul li.hs-item-has-children:hover a:after {
    transform: translateY(-50%) rotate(180deg);
  }
  .nav-holder ul li.hs-item-has-children:hover > .hs-menu-children-wrapper {
    max-height: 65px;
    border-color: #858585;
  }
  .nav-holder ul a:hover {
    width: 100%;
  }
  .nav-holder ul li.hs-item-has-children .hs-menu-children-wrapper {
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    background: #1d1d1d;
    border-top: 1px solid transparent;
    transition: 0.3s;
    max-height: 0;
    overflow: hidden;
    flex-direction: row !important;
  }
  .nav-holder ul li.hs-item-has-children .hs-menu-children-wrapper a:after {
    display: none;
  }
}
/* Visual Block Styles */
.visual-block {
  padding: 45px 0;
  overflow: hidden;
  background: #eef2f2;
}
.visual-block .textbox {
  width: 100%;
  margin: 0 0 30px;
}
.visual-block h1 {
  letter-spacing: -1px;
  margin: 0 0 15px;
}
.visual-block .buttons-wrap {
  margin: 0 0 30px;
}
.visual-block .btn:not(.btn-outline) {
  border-color: transparent;
  background: linear-gradient(to right, rgb(255, 245, 154) 0%, rgb(240, 233, 31) 50%, rgb(242, 235, 39) 100%);
}
.visual-block .btn:not(.btn-outline):hover {
  border-color: #e8e000;
}
.visual-block .image-holder {
  width: 100%;
  position: relative;
  padding-bottom: 19px;
  max-width: 400px;
  margin: 0 auto;
  z-index: 1;
}
.visual-block .image-holder:after {
  height: 20px;
  border-radius: 0 0 20px 20px;
  position: absolute;
  left: 3%;
  right: 3%;
  bottom: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(to left, rgb(255, 245, 154) 0%, rgb(240, 233, 31) 50%, rgb(242, 235, 39) 100%);
}
.visual-block .image-box {
  overflow: hidden;
  border-radius: 16px;
  position: relative;
/*   background: #fff; */
}
.visual-block .image-box:before {
  display: block;
  content: "";
  padding-top: 107.2%;
}
.visual-block .image-box > img,
.visual-block .image-box > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  border: 0;
  border: 1px solid #eef2f2;
}

.cards-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

@media (max-width: 767px) {
  .visual-block p br {
    display: none;
  }
}
@media (min-width: 768px) {
  .visual-block {
    padding: 60px 0;
  }
  .visual-block .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .visual-block .textbox {
    width: 48%;
    margin: 0;
  }
  .visual-block h1 {
    letter-spacing: -2.7px;
  }
  .visual-block .image-holder {
    max-width: inherit;
    margin: 0;
    width: 49.5%;
  }
}
@media (min-width: 1024px) {
  .visual-block {
    padding: 75px 0;
  }
  .visual-block .textbox {
    padding: 40px 0 0;
  }
  .visual-block h1 {
    margin: 0 0 23px;
  }
  .visual-block .buttons-wrap {
    margin: 0 0 45px;
  }
}
@media (min-width: 1200px) {
  .visual-block .textbox {
    width: 45%;
  }
  .visual-block .buttons-wrap {
    margin: 0 0 75px;
  }
}
@media (min-width: 1440px) {
  .visual-block .buttons-wrap {
    margin: 0 0 110px;
  }
}
/* Visual Block Styles */
.clean-hero {
  padding: 45px 0;
  overflow: hidden;
  background: #E9EFEF;
}
.clean-hero .textbox {
  width: 100%;
  margin: 0 0 30px;
}
.clean-hero h1 {
  letter-spacing: -1px;
  margin: 0 0 15px;
}
.clean-hero .btn:not(.btn-outline) {
  border-color: transparent;
  background: linear-gradient(to right, rgb(255, 245, 154) 0%, rgb(240, 233, 31) 50%, rgb(242, 235, 39) 100%);
}
.clean-hero .btn:not(.btn-outline):hover {
  border-color: #e8e000;
}
.clean-hero .image-holder {
  width: 100%;
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  z-index: 1;
}
.clean-hero .image-box {
  overflow: hidden;
  border-radius: 16px;
  position: relative;
  background: #fff;
}
.clean-hero .image-box:before {
  display: block;
  content: "";
  padding-top: 100%;
}
.clean-hero .image-box > img,
.clean-hero .image-box > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  border: 0;
  border: 1px solid #eef2f2;
}

@media (max-width: 767px) {
  .clean-hero p br {
    display: none;
  }
}
@media (min-width: 768px) {
  .clean-hero {
    padding: 60px 0;
  }
  .clean-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    align-items: center;
  }
  .clean-hero .textbox {
    width: 48%;
    margin: 0;
  }
  .clean-hero h1 {
    letter-spacing: -1.7px;
  }
  .clean-hero .image-holder {
    max-width: inherit;
    margin: 0;
    width: 41.2%;
  }
}
@media (min-width: 1024px) {
  .clean-hero {
    padding: 80px 0;
  }
  .clean-hero h1 {
    font-size: 52px;
  }
  .clean-hero h1 {
    margin: 0 0 23px;
  }
}
@media (min-width: 1200px) {
  .clean-hero .textbox {
    width: 45%;
  }
}
/* Product Visual Styles */
.product-visual {
  position: relative;
  overflow: hidden;
  padding: 15px;
}
.product-visual .holder {
  margin: 0 auto;
  max-width: 1400px;
}
.product-visual .image-wrap {
  position: relative;
  padding-bottom: 12px;
}
.product-visual .image-wrap:after {
  height: 12px;
  border-radius: 0 0 12px 12px;
  position: absolute;
  left: 2%;
  right: 2%;
  bottom: 0;
  z-index: 1;
  content: "";
  z-index: 1;
  background: linear-gradient(to right, rgb(255, 245, 154) 0%, rgb(240, 233, 31) 50%, rgb(242, 235, 39) 100%);
}
.product-visual .image-holder {
  overflow: hidden;
  position: relative;
  border-radius: 16px;
}
.product-visual .image-holder:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  bottom: 0;
  content: "";
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.89) 0%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
}
.product-visual .image-holder img {
  width: 100%;
  height: auto;
  min-height: 700px;
  object-fit: cover;
  display: block;
}
.product-visual .product-visual-content {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 27px;
  color: #fff;
  padding: 35px 0;
}
.product-visual .textbox {
  margin: 0 0 35px;
}
.product-visual h1 {
  color: #fff;
  margin: 0 0 15px;
}
.product-visual p {
  margin: 0 0 25px;
}
.product-visual .price-wrap strong {
  font-weight: 600;
}
.product-visual .subtext {
  margin: 0 0 10px;
  opacity: 0.72;
  font-size: 14px;
}
.product-visual .video-preview {
  max-width: inherit;
}


@media (max-width: 1023px) {
  .product-visual h1 {
    font-size: 42px;
  }
}
@media (min-width: 768px) {
  .product-visual .image-holder:before {
    width: 90%;
  }
  .product-visual .product-visual-content {
    padding: 60px 0;
  }
  .product-visual .container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  .product-visual .textbox {
    margin: 0;
    max-width: 450px;
  }
  .product-visual p {
    margin: 0 0 35px;
  }
  .product-visual .subtext {
    margin: 0 0 15px;
  }
  .product-visual .video-preview {
    max-width: 306px;
  }
}
@media (min-width: 1024px) {
  .product-visual {
    padding: 20px;
  }
  .product-visual .product-visual-content {
    left: 20px;
    right: 20px;
    bottom: 32px;
  }
}
@media (min-width: 1200px) {
  .product-visual h1 {
    font-size: 60px;
  }
}
/* Compaign Visual Styles */
.campaign-visual {
  position: relative;
  overflow: hidden;
  padding: 15px;
}
.campaign-visual .holder {
  margin: 0 auto;
  max-width: 1400px;
}
.campaign-visual .image-wrap {
  position: relative;
  padding-bottom: 12px;
}
.campaign-visual .image-wrap:after {
  height: 12px;
  border-radius: 0 0 12px 12px;
  position: absolute;
  left: 2%;
  right: 2%;
  bottom: 0;
  z-index: 1;
  content: "";
  z-index: 1;
  background: linear-gradient(to right, rgb(255, 245, 154) 0%, rgb(240, 233, 31) 50%, rgb(242, 235, 39) 100%);
}
.campaign-visual .image-holder {
  overflow: hidden;
  position: relative;
  border-radius: 16px;
}
.campaign-visual .image-holder:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  bottom: 0;
  content: "";
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.89) 0%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
}
.campaign-visual .image-holder img {
  width: 100%;
  height: auto;
  min-height: 700px;
  object-fit: cover;
  display: block;
}
.campaign-visual .campaign-visual-content {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 27px;
  color: #fff;
  padding: 35px 0;
}
.campaign-visual .textbox {
  margin: 0;
}
.campaign-visual h1 {
  color: #fff;
  margin: 0 0 15px;
}
.campaign-visual p {
  margin: 0 0 25px;
}
.campaign-visual .price-wrap strong {
  font-weight: 600;
}
.campaign-visual .subtext {
  margin: 0 0 10px;
  opacity: 0.72;
  font-size: 14px;
}
.campaign-visual .buttons-wrap {
  padding: 0;
}


@media (min-width: 768px) {
  .campaign-visual .campaign-visual-content {
    padding: 60px 0;
  }
  .campaign-visual .container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  .campaign-visual .textbox {
    max-width: 480px;
  }
  .campaign-visual p {
    margin: 0 0 35px;
  }
  .campaign-visual .subtext {
    margin: 0 0 15px;
  }
}
@media (min-width: 1024px) {
  .campaign-visual {
    padding: 20px;
  }
  .campaign-visual .campaign-visual-content {
    left: 20px;
    right: 20px;
    bottom: 32px;
  }
}
/* Services Block Styles */
.services-block {
  overflow: hidden;
  padding: 45px 0 25px;
}
.services-block .container {
  display: flex;
  flex-direction: column;
}

/* Columns Styles */
.columns-holder {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 20px;
}
.columns-holder .column {
  width: 100%;
}
.columns-holder .section-header {
  text-align: left;
  margin-bottom: 20px;
  max-width: 100%;
}

/* Services List Styles */
.services-list {
  list-style: none;
  padding: 0;
  margin: -7px;
  display: flex;
  flex-wrap: wrap;
}
.services-list li {
  width: 100%;
  padding: 7px;
}
.services-list .icon {
  width: 32px;
  height: 32px;
  margin: 0 0 15px;
}
.services-list .icon img {
  width: auto;
  height: auto;
  max-width: 100%;
}
.services-list p {
  color: rgba(4, 4, 4, 0.5607843137);
  line-height: 1.5;
}
.services-block .inline-banner {
  margin: 0 0 40px;
}


/* USP Large */
.services-block.large .section-holder {
  margin-bottom: 10px;
}
.services-block.large .section-holder .section-header {
  margin: 0 0 20px;
  text-align: left;
}
.services-block.large .services-list li {
  width: 50%;
}

/* USP SUbtle */
.services-block.subtle {
  padding: 40px 0; 
}
.services-block.subtle .container {
  display: block;
}
.services-block.subtle .section-header {
  margin: 0 0 30px;
  text-align: left;
}
.services-block.subtle .services-list {
  margin: 0 -6px;
}
.services-block.subtle .services-list li {
  padding: 6px;
  width: 100%;
}


@media (min-width: 480px) {
  .services-list li {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .services-block {
    padding: 60px 0;
  }
  .columns-holder .section-header {
    margin-bottom: 30px;
  }
  .services-block.subtle .services-list li {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .services-block {
    padding: 120px 0 60px;
  }
  .services-block .container {
    gap: 32px;
  }
  .columns-holder {
    margin: 0 0 60px;
  }
  .columns-holder .column {
    width: 55%;
  }
  .columns-holder .column:first-child {
    width: 40%;
  }
  .columns-holder .section-header {
    margin: 0 0 15px;
    max-width: 380px;
    text-align: left;
  }
  .services-list .icon {
    margin: 0 0 24px;
  }
  .services-block.large .section-holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
  }
  .services-block.large .section-holder .section-header {
    max-width: 600px;
    margin: 0;
  }
  .services-block.large .services-list li {
    width: 33.33%;
    margin-bottom: 15px;
  }
  .services-block.large .inline-banner {
    margin: 0;
  }
  .services-block.subtle {
    padding: 64px 0; 
  }
  .services-block.subtle .services-list li {
    width: 33.33%;
  }
}
@media (min-width: 1200px) {
  .columns-holder .column {
    width: 57.8%;
  }
  .columns-holder .column:first-child {
    width: 42%;
  }
  .services-list {
    margin: -12px -20px;
  }
  .services-list li {
    padding: 12px 20px;
  }
  .services-block .inline-banner {
    margin: 0;
  }
  .services-block.large .section-holder {
    margin-bottom: 60px;
  }
  .services-block.large .section-holder .section-header {
    max-width: 720px;
  }
  .services-block.large .services-list li {
    width: 25%;
  }
  .services-block.subtle .services-list.four li {
    width: 25%;
  }
}
/* Text Card Styles */
.usp-cards .text-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 8px;
  margin: 0 0 8px;
  border: 1px solid rgba(4, 4, 4, 0.1019607843);
}
.usp-cards .text-card:last-child {
  margin-bottom: 0;
}
.usp-cards .text-card .icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fdef00;
  flex-shrink: 0;
}
.usp-cards .text-card .textinfo {
  flex-grow: 1;
}
.usp-cards .text-card .subtitle {
  font-weight: 600;
  display: block;
  margin: 0 0 4px;
  line-height: 1.3;
}
.usp-cards .text-card .username {
  display: block;
  font-size: 14px;
  color: rgba(4, 4, 4, 0.5607843137);
}
.services-media {
  padding: 25px 0;
}
.services-media .services-image {
  width: 100%;
  position: relative;
  padding-bottom: 11px;
  z-index: 1;
}
.services-media .services-image:after {
  height: 12px;
  border-radius: 0 0 12px 12px;
  position: absolute;
  left: 3%;
  right: 3%;
  bottom: -1px;
  content: "";
  z-index: -1;
  background: linear-gradient(to right, rgb(255, 245, 154) 0%, rgb(240, 233, 31) 50%, rgb(242, 235, 39) 100%);
}
.services-media .image-box {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.services-media .image-box:before {
  display: block;
  content: "";
  padding-top: 59.3%;
}

@media (min-width: 768px) {
  .services-media {
    padding: 60px 0;
  }
}
/* Brands List Styles */
.brands-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}
@media (min-width: 768px) {
  .brands-list {
    gap: 12px;
  }
}

/* Products Block Styles */
.products-block {
  overflow: hidden;
  padding: 45px 0;
}
.products-block .products-holder {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.products-block .section-header {
  text-align: left;
  margin: 0 0 25px;
  max-width: 100%;
}
.products-block .section-header h2 {
  margin: 0 0 30px;
  max-width: 800px;
}

/* Product Box Styles */
.product-box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  justify-content: space-between;
  overflow: hidden;
  background: #e9e6db;
  border-radius: 16px;
}
.product-box.blue_light {
  background: #EEF2F2;
}
.product-box.green {
  background: #ccd7c8;
}
.product-box.gray {
  background: #0404041A;
}
.product-box .image-holder {
  width: 100%;
  display: flex;
  max-width: inherit;
}
.product-box .image-box {
  width: 100%;
  align-self: flex-end;
}
.product-box .image-box img {
  width: 100%;
  height: auto;
  display: block;
}
.product-box .textbox {
  width: 100%;
  display: flex;
  padding: 20px;
}
.product-box .text-wrap {
  width: 100%;
  align-self: center;
  margin: 0;
}
.product-box h3 {
  letter-spacing: -1.7px;
  margin: 0 0 3px;
}
.product-box .price-wrap {
  margin: 0 0 3px;
}
.product-box .price-wrap .price {
  font-family: "Poppins", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  font-weight: 600;
  font-size: 20px;
}
.product-box .subtext {
  color: rgba(4, 4, 4, 0.5607843137);
  margin: 0 0 19px;
}


@media (max-width: 767px) {
  .product-box p br {
    display: none;
  }
}
@media (min-width: 768px) {
  .products-block {
    padding: 60px 0;
  }
  .products-block .holder {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .products-block .text, .products-block .brands-list {
    width: 50%;
  }
  .products-block .brands-list {
    justify-content: flex-end;
  }
  .products-block .section-header h2 {
    margin: 0 0 60px;
  }
  .product-box {
    min-height: 300px;
    flex-direction: row;
  }
  .product-box .image-holder {
    width: 45%;
    padding-top: 20px;
  }
  .product-box .textbox {
    width: 51.6%;
  }
  .product-box .text-wrap {
    padding: 22px 0 0;
    margin: 0 0 20px;
  }
}
@media (min-width: 1024px) {
  .products-block {
    padding: 67px 0 80px;
  }
  .products-block .section-header h2 {
    max-width: 720px;
  }
  .product-box {
    min-height: 398px;
  }
  .product-box .image-holder {
    width: 40.8%;
  }
}
/* Product Description Styles */
.product-description {
  overflow: hidden;
  padding: 30px 0 50px;
}
.product-description .product-textcol {
  width: 100%;
}
.product-description .textbox {
  overflow: hidden;
  margin: 0 0 30px;
}
.product-description .read-more {
  color: #040404;
  font-style: 14px;
  text-decoration: underline;
}
.product-description .read-more:hover {
  opacity: 0.6;
}

/* USP Subtile */
.product-description .usp-cards, .product-description .cards-row {
  margin: 0 0 32px;
}
.product-description .cards-row .inline-banner {
  max-width: 450px;
}
.product-description .pricing-holder {
  display: flex;
  margin: 0 -25px 15px;
}
.product-description .price-box {
  overflow: hidden;
  padding: 0 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.product-description .price-box + .price-box {
  border-left: 1px solid rgba(4, 4, 4, 0.2);
}
.product-description .price-box .old-price {
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-description .price-box .price-crossed {
  font-size: 14px;
  color: rgba(4, 4, 4, 0.5607843137);
}
.product-description .price-box .offer-tag {
  color: #040404;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  padding: 1px 5px;
  border-radius: 10px;
  background: #ff8d29;
}
.product-description .price-box .new-price {
  font-size: 24px;
  font-weight: 600;
}
.product-description .price-note {
  margin: 0 0 30px;
  color: rgba(4, 4, 4, 0.7215686275);
}
.product-description .btn {
  width: 100%;
}
.product-description .product-gallery {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
}
.product-description .gallery-box {
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  background: #f3f3f3;
}
.product-description .gallery-box .tag,
.product-description .gallery-box .label-icon {
  position: absolute;
  left: 20px;
  z-index: 1;
  display: none;
}
.product-description .gallery-box .tag {
  top: 20px;
  background: #fff;
  padding: 4px 9px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}
.product-description .gallery-box .label-icon {
  bottom: 20px;
  width: 107px;
}
.product-description .gallery-box .image-holder {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.product-description .gallery-box .image-holder > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.product-description .gallery-box.half {
  flex: 1;
}
.product-description .gallery-box.image-centered .image-holder {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
}
.product-description .gallery-box.image-centered .image-holder > img {
  width: auto;
  height: auto;
  max-width: 100%;
}
.product-description .gallery-box.visible-info .tag,
.product-description .gallery-box.visible-info .label-icon {
  display: block;
}

@media (max-width: 1023px) {
  .product-description h2 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .product-description h2 {
    font-size: 28px;
  }
}
@media (min-width: 768px) {
  .product-description {
    padding: 60px 0 80px;
  }
  .product-description .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .product-description .product-textcol {
    width: 40%;
    max-width: 450px;
  }
  .product-description .product-gallery {
    width: 57.574%;
  }
  .product-description .gallery-box {
    height: 350px;
  }
}
@media (min-width: 1024px) {
  .product-description {
    padding: 80px 0;
  }
  .product-description .product-gallery {
    gap: 20px;
  }
  .product-description .gallery-box {
    height: 475px;
  }
  .product-description .gallery-box.half {
    height: 398px;
  }
}
@media (min-width: 1200px) {
  .product-description .gallery-box {
    height: 584px;
  }
}
/* Process Block Styles */
.process-block {
  padding: 25px 0 45px;
  overflow: hidden;
}
.process-block .section-header {
  text-align: left;
  margin: 0 0 30px;
}
.process-block .section-header .text {
  margin: 0 0 1em;
}

/* Process Box Styles */
.process-box {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.process-box .image-holder {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  margin: 0 0 30px;
}
.process-box .image-holder:before {
  display: block;
  content: "";
  padding-top: 121.4%;
}
.process-box .image-holder img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
}
.process-box .textbox {
  overflow: hidden;
  padding-right: 10px;
}
.process-box .tag {
  background: #e9efef;
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  display: inline-block;
  margin: 0 0 16px;
}
.process-box h4 {
  letter-spacing: -0.35px;
}
.process-box p {
  color: rgba(4, 4, 4, 0.7215686275);
}
.process-box.without_image {
  background: #EEF2F2;
  border-radius: 12px;
  padding: 32px;
  overflow: hidden;
}
.process-box.without_image .tag {
  background: #BDCFD1;
}


@media (min-width: 768px) {
  .process-block {
    padding: 35px 0 60px;
  }
  .carousel-slider {
    margin: 0 -6px;
  }
  .carousel-slider .slick-slide {
    padding: 0 6px;
  }
}
@media (min-width: 1024px) {
  .process-block {
    padding: 50px 0 90px;
  }
}
@media (min-width: 1200px) {
  .process-block {
    padding: 120px 0;
  }
}
/* Process Block Styles */
.discover-block {
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}
.discover-block .section-header {
  text-align: left;
  margin: 0 0 30px;
  max-width: 100%;
  position: relative;
}
.discover-block .section-header h2, .discover-block .section-header .text {
  max-width: 500px;
}
.discover-block .section-header .text {
  margin: 0 0 1em;
}
.discover-block .section-header .button-holder {
  margin-top: 20px;
}

/* Process Box Styles */
.discover-box {
  overflow: hidden;
  position: relative;
}
.discover-box .image-holder {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  margin: 0 0 30px;
}
.discover-box .image-holder:before {
  display: block;
  content: "";
  padding-top: 78.4%;
}
.discover-box .image-holder img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
}
.discover-box .textbox {
  overflow: hidden;
  padding-right: 10px;
}
.discover-box .textbox .text {
  color: #040404B8;
  font-size: 14px;
  line-height: 19.6px;
}
.discover-box .tag {
  background: #e9efef;
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  display: inline-block;
  margin: 0 0 16px;
}
.discover-box h4 {
  letter-spacing: -0.35px;
}
.discover-box p {
  color: rgba(4, 4, 4, 0.7215686275);
}
.discover-box .button-holder {
  margin-top: 20px;
}
.discover-box .button-holder .cta_button {
  font-size: 14px;
  line-height: 19.6px;
  padding: 8px 16px;
}
.discover-box.without_image {
  background: #EEF2F2;
  border-radius: 12px;
  padding: 32px;
  overflow: hidden;
}
.discover-box.without_image .tag {
  background: #BDCFD1;
}

.discover-slider .slick-arrow {
  top: auto;
  bottom: -65px;
}
.discover-slider .slick-arrow.slick-next {
  left: 55px;
}
.discover-slider .slick-arrow.slick-prev {
  left: 6px;
}


@media (min-width: 768px) {
  .discover-block.less-padding {
    padding-top: 40px;
  }
  .discover-block {
    padding: 60px 0;
  }
  .carousel-slider {
    margin: 0 -6px;
  }
  .carousel-slider .slick-slide {
    padding: 0 6px;
  }
  .discover-block .section-header .button-holder {
    position: absolute;
    top: 50px;
    right: 0;
  }
}
@media (min-width: 1024px) {
  .discover-block {
    padding: 80px 0;
  }
  .carousel-slider.discover-slider .slick-list {
    padding-right: 0;
  }
}
@media (min-width: 1200px) {
  .discover-block {
    padding: 120px 0;
  }
}
/* Logo Box Styles */
.logo-box {
  width: 100%;
  height: 200px;
  background: #eef2f2;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
}
/* Quotes Block Styles */
.quotes-block {
  overflow: hidden;
  background: #eef2f2;
  padding: 45px 0;
}
.quotes-block .columns-holder {
  margin: 0;
}
.quotes-block .section-header {
  max-width: inherit;
}
.quotes-block .section-header h2 {
  letter-spacing: -1.5px;
}
.quotes-block .image-holder {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
  background: #fff;
}
.quotes-block .image-holder:before {
  display: block;
  content: "";
  padding-top: 111.2%;
}
.quotes-block .image-box > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  border: 0;
  border: 1px solid #eef2f2;
}

/* Authors Slider Styles */
.authors-slider {
  width: 100%;
  max-width: 580px;
  margin-left: auto;
}


/* Avatars Slider Styles */
.avatars-slider .slick-list {
  padding-right: 30px;
}
.avatars-slider .slick-track {
  display: flex;
  gap: 10px;
  margin: 0 0 25px;
}
.avatars-slider .slick-slide.slick-current .authors-box {
  background: #bdcfd1;
}
.avatars-slider .authors-box {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  gap: 12px;
  font-size: 14px;
  cursor: pointer;
}
.avatars-slider .authors-box .authors-image {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s;
  flex-shrink: 0;
}
.avatars-slider .authors-box .authors-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.avatars-slider .authors-box .textbox {
  flex-grow: 1;
}
.avatars-slider .authors-box .title {
  display: block;
}
.avatars-slider .authors-box .name {
  color: rgba(4, 4, 4, 0.5607843137);
}


@media (min-width: 768px) {
  .quotes-block {
    padding: 60px 0;
  }
  .avatars-slider .slick-track {
    justify-content: flex-start;
    margin: 0;
  }
  .avatars-slider .slick-list {
    padding-right: 0;
  }
  .avatars-slider .slick-track {
    width: 100% !important;
    transform: none !important;
    flex-wrap: wrap;
    justify-content: center;
    justify-content: flex-start;
    flex-direction: column;
    margin: 0;
    gap: 16px;
  }
  .avatars-slider .slick-slide {
    max-width: 180px;
  }
  .avatars-slider .authors-box {
    width: 180px;
  }
}
@media (min-width: 1024px) {
  .quotes-block {
    padding: 120px 0 64px;
  }
}
@media (min-width: 1200px) {
  .quotes-block .section-header h2 {
    font-size: 52px;
    line-height: 1.05;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .quotes-block .columns-holder .column {
    width: 50%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .quotes-block .columns-holder .column:first-child {
    width: 45%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .quotes-block .columns-holder .section-header {
    text-align: left;
  }
}
/* Reviews Block Styles */
.reviews-block {
  background: #eef2f2;
  padding: 0 0 45px;
  width: 100%;
}
.reviews-block .reviews-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 0 0 25px;
  padding: 0 0 15px;
}
.reviews-block h3 {
  font-size: 36px;
  margin: 0;
  letter-spacing: -1px;
}
.reviews-block .google-ratings {
  display: flex;
  align-items: center;
  gap: 20px;
}
.reviews-block .rating-stars {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.reviews-block .ratings-text {
  font-size: 18px;
}
.reviews-block .reviews-slider .slick-arrow:not(:hover) {
  background: rgba(4, 4, 4, 0.0509803922);
}

/* Quote Box Styles */
.quote-box {
  background: #fff;
  border-radius: 12px;
  padding: 20px 15px;
  height: 100%;
  margin: 0;
}
.quote-box blockquote {
  border: none;
  padding: 0;
  margin: 0 0 5px;
  overflow: hidden;
}
.quote-box blockquote q {
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 18px;
  quotes: none;
}
.quote-box .auhore-info {
  display: block;
  font-style: normal;
  padding: 11px 0 0;
}
.quote-box .auhore-info .name {
  font-size: 20px;
  display: block;
  margin: 0 0 8px;
  font-family: "Poppins", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  letter-spacing: -0.4px;
}
.quote-box .auhore-info .date {
  display: block;
  font-size: 14px;
  color: rgba(4, 4, 4, 0.5607843137);
}

@media (min-width: 768px) {
  .reviews-block {
    padding: 0 0 60px;
  }
  .reviews-block .reviews-head {
    max-width: 600px;
    gap: 35px;
    padding: 0;
  }
  .reviews-block .slick-arrow {
    top: -65px;
  }
}
@media (min-width: 1024px) {
  .reviews-block {
    padding: 0 0 152px;
  }
  .quote-box blockquote {
    margin: 0 0 20px;
  }
}
@media (min-width: 1200px) {
  .quote-box {
    padding: 25px;
  }
}
@media (min-width: 1440px) {
  .quote-box {
    padding: 40px;
  }
}


#reviews-widget .cDHIQK {
  background: transparent;
  border-radius: 0 !important;
}
#reviews-widget .hjHKGU {
  gap: 20px;
}
#reviews-widget .ciCnpO a {
  display: none !important;
}
#reviews-widget .cVjgap svg {
  height: 51px;
}
#reviews-widget .AGaFi {
  font-size: 36px;
  letter-spacing: -1px;
  margin: 0;
  text-transform: lowercase !important;
  font-family: Poppins,Arial,Helvetica Neue,Helvetica,sans-serif;
  font-weight: 600;
}
#reviews-widget .nUbNv path, #reviews-widget .eEwxRy path {
  fill: #6DD693 !important;
}
#reviews-widget .eHezJm {
  background: #fff;
  border-radius: 12px !important;
  height: 100%;
  margin: 0;
  padding: 20px 15px !important;
}
#reviews-widget .YusbI {
  max-height: 189px;
  margin-bottom: 25px;
}
#reviews-widget .es-review-content-text {
  font-size: 18px;
  letter-spacing: .16px;
  line-height: 1.5;
}
@media (min-width: 1200px) {
  #reviews-widget .eHezJm {
    padding: 25px !important;
  }
}
/* sales banner Styles */
.sales-banner {
  padding: 45px 0;
  overflow: hidden;
}
.sales-banner .products-holder {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sales-banner .sales-box {
  background: #bdcfd1;
  border-radius: 16px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
.sales-banner .sales-box h3 {
  margin: 0 0 15px;
  line-height: 1.2;
  letter-spacing: -1.1px;
}
.sales-banner .sales-box p {
  margin: 0 0 20px;
}
.sales-banner .sales-box .image-holder {
  width: 100%;
}
.sales-banner .sales-box .image-holder img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.sales-banner .sales-box .text-wrap {
  align-self: center;
  margin: 0;
  width: 100%;
  max-width: 550px;
}
.sales-banner .sales-box .textbox {
  padding: 40px 20px;
}
.sales-banner .tags-list {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -5px 15px;
}
.sales-banner .tags-list li {
  padding: 0 5px;
}
.sales-banner .icon-holder {
  margin-bottom: 15px;
}

.sales-banner .sales-box.blue_dark {
  background: #bdcfd1;
}
.sales-banner .sales-box.blue_light {
  background: #EEF2F2;
}
.sales-banner .sales-box.yellow {
  background: radial-gradient(72.78% 334.82% at 72.78% 38.06%, #FDEF00 0%, #FDF238 51.5%, #FFF59C 100%);
}
.sales-banner .sales-box.beige {
  background: #F5F3ED;
}
.sales-banner .sales-box.beige:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: radial-gradient(72.78% 334.82% at 72.78% 38.06%, #FF7A34 0%, rgba(254, 181, 86, 0.8) 51.5%, rgba(255, 201, 136, 0.7) 100%);
  height: 14px;
}
.sales-banner .sales-box.green {
  background: #EBEFE9;
}
.sales-banner .sales-box.green:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: radial-gradient(72.78% 334.82% at 72.78% 38.06%, #68CC8C 0%, rgba(84, 222, 134, 0.6) 51.5%, rgba(83, 204, 127, 0.4) 100%);
  height: 14px;
}


.sales-banner-xs .textbox {
  position: relative;
  padding: 32px !important; 
  width: 100% !important;
}
.sales-banner-xs .textbox .link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.sales-banner-xs .buttons-wrap {
  padding: 0;
}

@media (min-width: 768px) {
  .sales-banner {
    padding: 60px 0;
  }
  .sales-banner .sales-box .textbox {
    width: 53.6%;
  }
  .sales-banner .sales-box .image-holder {
    padding: 0;
    margin: 0;
    width: 46.4%;
  }
  .sales-banner .sales-box .textbox {
    padding-left: 30px;
  }
  .sales-banner .sales-box .text-wrap {
    margin: 0 0 20px;
  }
  .sales-banner-m .sales-box .textbox, .sales-banner-s .sales-box .textbox {
    padding: 40px 30px;
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .sales-banner {
    padding: 80px 0;
  }
  .sales-banner .sales-box h3 {
    font-size: 36px;
  }
  .sales-banner .sales-box .textbox {
    padding-left: 40px;
  }
}
@media (min-width: 1200px) {
  .sales-banner {
    padding: 120px 0;
  }
  .sales-banner .sales-box .textbox {
    padding-left: 60px;
  }
  .sales-banner-m .sales-box .textbox, .sales-banner-s .sales-box .textbox {
    padding: 50px;
  }
}
@media (min-width: 1440px) {
  .sales-banner .sales-box .textbox {
    padding-left: 80px;
  }
  .sales-banner-m .sales-box .textbox, .sales-banner-s .sales-box .textbox {
    padding: 50px 60px;
  }
}
.contact-banner {
  padding: 40px 0;
}
.contact-banner .banner-holder {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-banner .banner-box {
  border-radius: 12px;
  background: #bdcfd1;
  position: relative;
}
.contact-banner .banner-box h3 {
  font-size: 28px;
  letter-spacing: -1px;
}
.contact-banner .banner-box .textbox {
  padding: 30px;
}
.contact-banner .banner-box .cta_button {
  cursor: not-allowed;
  pointer-events: none;
}
.contact-banner .banner-box .cta_button.activate {
  cursor: pointer;
  pointer-events: auto;
}
.contact-banner .banner-box .image-holder {
  text-align: center;
}

.contact-banner .banner-box.blue_dark {
  background: #bdcfd1;
}
.contact-banner .banner-box.blue_light {
  background: #EEF2F2;
}
.contact-banner .banner-box.yellow {
  background: radial-gradient(72.78% 334.82% at 72.78% 38.06%, #FDEF00 0%, #FDF238 51.5%, #FFF59C 100%);
}
.contact-banner .banner-box.beige {
  background: #F5F3ED;
}
.contact-banner .banner-box.beige:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: radial-gradient(72.78% 334.82% at 72.78% 38.06%, #FF7A34 0%, rgba(254, 181, 86, 0.8) 51.5%, rgba(255, 201, 136, 0.7) 100%);
  height: 14px;
  border-radius: 0 0 12px 12px;
}
.contact-banner .banner-box.green {
  background: #EBEFE9;
}
.contact-banner .banner-box.green:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: radial-gradient(72.78% 334.82% at 72.78% 38.06%, #68CC8C 0%, rgba(84, 222, 134, 0.6) 51.5%, rgba(83, 204, 127, 0.4) 100%);
  height: 14px;
  border-radius: 0 0 12px 12px;
}

.contact-banner .start-time.hide, .contact-banner .end-time.hide {
  display: none;
}

@media(min-width: 768px) {
  .contact-banner .banner-box h3 {
    font-size: 36px;
  }
  .contact-banner .banner-box {
    align-items: flex-end;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
  .contact-banner .banner-box .textbox {
    padding: 50px 40px;
    width: 60%;
  }
  .contact-banner .banner-box .image-holder {
    margin: -60px 0 0;
    width: 40%;
  }
}
@media(min-width: 1024px) {
  .contact-banner {
    padding: 64px 0;
  }
  .contact-banner .banner-box .textbox {
    padding: 50px;
    width: 60%;
  }
  .contact-banner .banner-box .image-holder {
    width: 40%;
  }
}
@media(min-width: 1200px) {
  .contact-banner .banner-box .textbox {
    padding: 64px;
  }
}
.page-intro {
  background: #EEF2F2;
  padding: 45px 0;
}
.page-intro .section-header {
  max-width: 790px;
}
.page-intro .row {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0 -15px;
}
.page-intro .column {
  padding: 0 15px;
  margin-bottom: 30px;
  width: 100%;
}
.page-intro .key-points {
  text-align: center;
  max-width: 240px;
  margin: 0 auto;
}
.page-intro .key-points .icon {
  margin-bottom: 20px;
}

/* Buttons Wrap Styles */
.page-intro .buttons-wrap {
  padding: 0;
  justify-content: center;
}


@media(min-width: 768px) {
  .page-intro {
    padding: 60px 0;
  }
  .page-intro .column {
    width: 33.33%;
  }
  .page-intro .buttons-wrap {
    margin: 50px 0 0;
  }
}
@media(min-width: 1024px) {
  .page-intro {
    padding: 80px 0;
  }
  .page-intro .section-header {
    max-width: 790px;
  }
}
@media(min-width: 1200px) {
  .page-intro {
    padding: 120px 0;
  }
  .page-intro .section-header {
    max-width: 790px;
  }
  .page-intro .section-header .text {
    font-size: 18px;
    line-height: 27px;
  }
  .page-intro .column {
    width: 25%;
  }
}
@media(min-width: 1440px) {
  .page-intro .section-header {
    max-width: 790px;
  }
}
.faq-block {
  padding: 45px 0;
}
.faq-block .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -15px;
}
.faq-block .column {
  padding: 0 15px;
  width: 100%;
}
.faq-block .section-header {
  text-align: left;
  margin: 0 0 30px;
}
.faq-block .inline-banner {
  margin-bottom: 40px;
}

/* accordion style */
.accordion {
  position: relative;
  border-bottom: 1px solid #04040433;
  margin-bottom: 27px;
  transition: all 0.3s ease-in-out;
}
.accordion:hover {
  border-color: #040404;
}
.accordion .accordion__title {
  font-family: "Poppins", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.02em;
  cursor: pointer;
  padding: 23px 35px 23px 0;
  position: relative;
  margin: 0;
}
.accordion .accordion__title.active .icon .plus {
  display: none;
}
.accordion .accordion__title.active .icon .minus {
  display: block;
}
.accordion .accordion__title .icon {
  position: absolute;
  top: 23px;
  right: 0;
}
.accordion .accordion__title .icon .minus {
  display: none;
}
.accordion .accordion__content {
  display: none;
  padding: 0 0 24px;
}
.accordion.specs .accordion__content {
  padding: 0;
}
.accordion .specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.accordion .specs-list li {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  border-bottom: 1px solid #04040433;
  padding: 15px 0;
}
.accordion .specs-list li:last-child {
  border-bottom: none;
}
.accordion .specs-list .value {
  display: inline-block;
  padding-left: 15px;
}

@media(min-width: 768px) {
  .faq-block {
    padding: 60px 0;
  }
}
@media(min-width: 1024px) {
  .faq-block {
    padding: 80px 0;
  }
  .faq-block .column:nth-child(1) {
    width: 40%;
  }
  .faq-block .column:nth-child(2) {
    width: 60%;
  }
  .faq-block .section-header {
    max-width: 300px;
  }
}
@media(min-width: 1200px) {
  .faq-block {
    padding: 120px 0;
  }
  .faq-block .column:nth-child(1) {
    width: 41.2%;
  }
  .faq-block .column:nth-child(2) {
    width: 58.8%;
  }
  .faq-block .section-header {
    max-width: 400px;
  }
}
/* Contact Block Styles */
.contact-block {
  overflow: hidden;
  padding: 25px 0 45px;
}
.contact-block .columns-holder {
  margin: 0;
  padding: 25px 15px;
  border-radius: 16px;
  background: linear-gradient(to right, rgb(255, 245, 154) 0%, rgb(240, 233, 31) 50%, rgb(242, 235, 39) 100%);
}
.contact-block h2 {
  line-height: 1.2;
  margin: 0 0 12px;
  letter-spacing: -1px;
}
.contact-block .image-holder {
  margin: 30px 0; 
}
.contact-block .section-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.contact-form .hs-button {
  margin-top: 16px;
}
.contact-block.yellow .columns-holder {
  background: radial-gradient(72.78% 334.82% at 72.78% 38.06%, #FDEF00 0%, rgba(253, 239, 0, 0.8) 51.5%, rgba(255, 239, 93, 0.6) 100%);
}
.contact-block.blue_light .columns-holder {
  background: #EEF2F2;
}
.contact-block.blue_light form .hs_submit .hs-button {
  color: #040404;
  background: #e8e000;
  border-color: #e8e000;
}
.contact-block.blue_light form .hs_submit .hs-button:hover {
  color: #040404;
  background: #ded600;
  border-color: #ded600;
}

@media (min-width: 768px) {
  .contact-block {
    padding: 35px 0 60px;
  }
  .contact-block .columns-holder {
    padding: 40px;
  }
  .contact-block .image-holder {
    margin: 30px 0 20px;
  }
}
@media (min-width: 1024px) {
  .contact-block {
    padding: 50px 0 80px; 
  }
  .contact-block .columns-holder {
    padding: 0 64px;
  }
  .contact-block .section-header {
    max-width: 315px;
    padding: 64px 0 0;
    margin: 0;
  }
  .contact-block h2 {
    font-size: 36px;
  }
  .contact-block .contact-form {
    padding: 64px 0;
  }
  .contact-block .image-holder {
    margin: 50px 0 0;
  }
  .contact-form form {
    max-width: 605px;
    margin-left: auto;
  }
}
@media (min-width: 1200px) {
  .contact-block {
    padding: 96px 0 80px;
  }
}
.inline-banner {
  background-color: #F5F3ED;
  border-radius: 12px;
  max-width: 355px;
  position: relative;
  z-index: 1;
  display: block;
}
.inline-banner:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 6px;
  right: 6px;
  background: radial-gradient(72.78% 334.82% at 72.78% 38.06%, #FF7A34 0%, rgba(254, 181, 86, 0.8) 51.5%, rgba(255, 201, 136, 0.7) 100%);
  border-radius: 0 0 4px 4px;
  height: 4px;
}
.inline-banner .banner {
  display: flex;
  flex-flow: row wrap;
  color: #040404;
}
.inline-banner .text {
  width: calc(100% - 85px);
  padding: 16px 0 16px 16px;
}
.inline-banner .image {
  width: 85px;
}
.inline-banner.inline_marianne .image {
  margin-top: -25px;
}
.inline-banner.inline_contact .image {
  margin-top: -10px;
}
.inline-banner.inline_promo .text {
  padding: 16px;
  width: 100%;
}
.inline-banner.inline_promo .text p {
  margin: 0;
}
.inline-banner.inline_promo .tag-list {
  display: flex;
  flex-flow: row wrap;
  padding: 16px 16px 0;
  margin: 0 -5px;
  width: 100%;
}
.inline-banner.inline_promo .tag-list li {
  padding: 0 5px;
}
.inline-banner.inline_promo .tag-list .tag-one, .inline-banner.inline_promo .tag-list .tag-two, .inline-banner.inline_promo .tag-list .date {
  font-size: 14px;
  line-height: 19.6px;
  display: inline-block;
}
.inline-banner.inline_promo .tag-list .tag-one,  .inline-banner.inline_promo .tag-list .tag-two {
  border-radius: 8px;
  padding: 4px 8px;
}
 .inline-banner.inline_promo .tag-list .tag-one {
  background-color: #fff;
}
.inline-banner.inline_promo .tag-list .tag-two {
  background-color: #FF8D29;
}
/* User Card Styles */
.video-preview {
  padding: 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 450px;
  background: #eef2f2;
}
.video-preview .user-image {
  flex-shrink: 0;
  position: relative;
  width: 64px;
  height: 64px;
}
.video-preview .user-avatar {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  overflow: hidden;
}
.video-preview .user-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.video-preview .btn-video {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  position: absolute;
  left: 55%;
  top: 52%;
  padding: 0 0 0 3px;
}
.video-preview .textinfo {
  flex-grow: 1;
}
.video-preview .subtitle {
  font-weight: 600;
  display: block;
  margin: 0 0 6px;
  line-height: 1.3;
}
.video-preview .username {
  display: block;
  font-size: 14px;
  color: rgba(4, 4, 4, 0.5607843137);
}
.video-preview.blured {
  color: #fff;
  background: rgba(4, 4, 4, 0.5607843137);
  backdrop-filter: blur(4px);
}
.video-preview.blured .textinfo {
  color: #fff;
}
.video-preview.blured .username {
  color: currentColor;
  opacity: 0.72;
}
/* Process Block Styles */
.image-gallery {
  padding: 25px 0 45px;
  overflow: hidden;
}
.image-gallery .section-header {
  text-align: left;
  margin: 0 0 30px;
}
.image-gallery .section-header .text {
  margin: 0 0 1em;
}

.image-gallery .gallery-slider {
  margin: 0 -6px 60px;
}
.image-gallery .gallery-slider .slick-list {
  padding-right: 40px;
  margin-right: -15px;
}
.image-gallery .gallery-slider .slick-slide {
  padding: 0 6px;
}

/* gallery Box Styles */
.image-gallery .gallery-box {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.image-gallery .gallery-box .image-holder {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  margin: 0 0 30px;
}
.image-gallery .gallery-box .image-holder:before {
  display: block;
  content: "";
  padding-top: 56.4%;
}
.image-gallery .gallery-box .image-holder img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
}
.image-gallery .gallery-box .textbox {
  overflow: hidden;
  padding-right: 10px;
}
.image-gallery .gallery-box h4 {
  letter-spacing: -0.35px;
}
.image-gallery .gallery-box p {
  color: rgba(4, 4, 4, 0.7215686275);
}


@media (min-width: 768px) {
  .image-gallery {
    padding: 35px 0 60px;
  }
  .image-gallery .gallery-slider {
    margin-bottom: 0;
  }
  .image-gallery .gallery-slider .slick-list {
    padding-right: 60px;
  }
}
@media (min-width: 1024px) {
  .image-gallery {
    padding: 50px 0 90px;
  }
}
@media (min-width: 1200px) {
  .image-gallery {
    padding: 120px 0;
  }
}
@media (min-width: 1440px) {
  .image-gallery .gallery-slider .slick-list {
    margin-right: 0;
  }
}
/* Gallery Section Styles */
.gallery-section {
  overflow: hidden;
  padding: 25px 0;
}
.gallery-section .img-holder {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  height: 100%;
}
.gallery-section .img-holder img,
.gallery-section .img-holder video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 8px;
  border: 0;
}
.gallery-section .img-holder img {
  position: static;
}

.gallery-holder {
  display: flex;
  flex-wrap: wrap;
  margin: -4px -15px;
}
.gallery-holder .img-col {
  padding: 4px;
}
.gallery-holder.gallery-slider .slick-track .slick-slide {
  height: 258px;
}

/* gallery carousel */
.gallery-carousel {
  margin: -4px -15px;
}
.gallery-carousel .img-col {
  padding: 4px;
}
.gallery-carousel .slick-slide {
  height: 240px;
}


@media (min-width: 768px) {
  .gallery-section {
    padding: 40px 0;
  }
  .gallery-holder {
    margin: -4px;
  }
  .gallery-holder .img-col {
    width: 30.95%;
    max-height: 265px;
    min-height: 265px;
  }
  .gallery-holder .img-col.small-height {
    max-height: 151px;
    min-height: 151px;
  }
  .gallery-holder .img-col.large-height {
    max-height: 380px;
    min-height: 380px;
  }
  .gallery-holder .img-col.small-size {
    width: 21.5%;
  }
  .gallery-holder .img-col.large-size {
    width: 47.4%;
  }
  .gallery-holder .img-col.medium-size {
    width: 38.075%;
  }
  .gallery-holder .img-col.extra-medium-size {
    width: 30.85%;
  }
  .gallery-holder .img-col.pull-up {
    margin-top: -114px;
  }
  .gallery-holder.gallery-slider .slick-track {
    width: 100% !important;
    transform: none !important;
    display: flex !important;
    flex-wrap: wrap;
  }
  .gallery-holder.gallery-slider .slick-track .slick-slide {
    display: flex;
    height: auto;
  }
  .gallery-carousel {
    margin: -4px;
  }
  .gallery-carousel .slick-slide {
    display: flex;
    height: auto;
  }
}
@media (min-width: 1024px) {
  .gallery-section {
    padding: 60px 0;
  }
  .gallery-holder .img-col {
    max-height: 316px;
    min-height: 316px;
  }
  .gallery-holder .img-col.small-height {
    max-height: 176px;
    min-height: 176px;
  }
  .gallery-holder .img-col.large-height {
    max-height: 456px;
    min-height: 456px;
  }
  .gallery-holder .img-col.pull-up {
    margin-top: -185px;
  }
}
@media (min-width: 1200px) {
  .gallery-section {
    padding: 80px 0;
  }
  .gallery-holder .img-col {
    max-height: 410px;
    min-height: 410px;
  }
  .gallery-holder .img-col.small-height {
    max-height: 225px;
    min-height: 225px;
  }
  .gallery-holder .img-col.large-height {
    max-height: 596px;
    min-height: 596px;
  }
}
/* Process Block Styles */
.team-block {
  padding: 25px 0 45px;
  overflow: hidden;
}
.team-block .section-header {
  text-align: left;
  margin: 0 0 30px;
}
.team-block .section-header .text {
  margin: 0 0 1em;
}

/* Process Box Styles */
.team-box {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.team-box .image-holder {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  margin: 0 0 30px;
}
.team-box .image-holder:before {
  display: block;
  content: "";
  padding-top: 121.4%;
}
.team-box .image-holder video {
  border: 1px solid #eef2f2;
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.team-box .textbox {
  overflow: hidden;
  padding-right: 10px;
}
.team-box h4 {
  letter-spacing: -0.35px;
}
.team-box p {
  color: rgba(4, 4, 4, 0.7215686275);
}
.team-box.without_image {
  background: #EEF2F2;
  border-radius: 12px;
  padding: 32px;
  overflow: hidden;
}
.team-box.without_image .tag {
  background: #BDCFD1;
}


@media (min-width: 768px) {
  .team-block {
    padding: 35px 0 60px;
  }
  .carousel-slider {
    margin: 0 -6px;
  }
  .carousel-slider .slick-slide {
    padding: 0 6px;
  }
}
@media (min-width: 1024px) {
  .team-block {
    padding: 50px 0 90px;
  }
}
@media (min-width: 1200px) {
  .team-block {
    padding: 120px 0;
  }
}
.about-block {
  padding: 45px 0;
}
.about-block .row {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin: 0 -15px;
}
.about-block .column {
  padding: 0 15px;
  width: 100%;
}
.about-block .image-holder {
  border-radius: 12px;
  max-width: 526px;
  margin: 0 auto 30px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.about-block .image-box::before {
  content: "";
  display: block;
  padding-top: 129.2%;
}

.about-block .inline-banner {
  max-width: 100%;
  margin-top: 30px;
}
.about-block .video-preview {
  max-width: 100%;
  margin-top: 30px;
}

@media(min-width: 768px) {
  .about-block {
    padding: 60px 0;
  }
  .about-block .column {
    width: 50%;
  }
  .about-block .image-holder {
    margin: 0;
  }
  .about-block .textbox {
    max-width: 562px;
  }
  .about-block.media-right .row {
    flex-direction: row-reverse;
  }
  .about-block.media-right .image-holder {
    margin: 0 0 0 auto;
  }
}
@media(min-width: 1024px) {
  .about-block {
    padding: 80px 0;
  }
}
@media(min-width: 1200px) {
  .about-block {
    padding: 120px 0;
  }
  .about-block .column:first-child {
    width: 55%;
  }
  .about-block .column:last-child {
    width: 45%;
  }
  .about-block.media-right .column:first-child {
    width: 42.6%;
  }
  .about-block.media-right .column:last-child {
    width: 57.4%;
  }
}
@media(min-width: 1440px) {
  .about-block .h3 {
    font-size: 36px;
  }
}
.headline-block {
  padding: 40px 0;
}
.headline-block .textbox {
  max-width: 560px;
}

@media(min-width: 1024px) {
  .headline-block {
    padding: 64px 0;
  }
}
/* Timed Visual Styles */
.timed-visual {
  padding: 30px 15px;
}
.timed-visual .holder {
  background-color: #040404;
  margin: 0 auto;
  max-width: 1280px;
  position: relative;
}
.timed-visual .holder.black {
  background-color: #040404;
}
.timed-visual .holder.blue_light {
  background: #EEF2F2;
}
.timed-visual .holder.blue_dark {
  background: #bdcfd1;
}
.timed-visual .holder.yellow {
  background: radial-gradient(72.78% 334.82% at 72.78% 38.06%, #FDEF00 0%, #FDF238 51.5%, #FFF59C 100%);
}
.timed-visual .holder.beige {
  background: #F5F3ED;
}
.timed-visual .holder.green {
  background: #EBEFE9;
}
.timed-visual .image-wrap {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  min-height: 382px;
}
.timed-visual .image-wrap:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  bottom: 0;
  content: "";
  background: linear-gradient(-270deg, rgba(0, 0, 0, 0.64) 36.56%, rgba(0, 0, 0, 0) 70.31%);
}
.timed-visual-content {
  color: #fff;
  position: relative;
  z-index: 1;
  padding: 40px 0;
}
.timed-visual-content .container {
  max-width: 1162px;
}
.timed-visual-content .h3 {
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.2;
}
.timed-visual-content .sale-tag {
  margin-bottom: 15px;
}
.timed-visual-content .textbox {
  max-width: 500px;
}
.timed-visual-content .textbox p {
  line-height: 26px;
}

.countdown-time {
  margin-top: 35px;
}
.countdown-time .title {
  font-size: 14px;
  line-height: 19.6px;
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}
.countdown-time .timer-list {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -5px;
}
.countdown-time .timer-list li {
  padding: 0 5px;
}
.countdown-time .timer-list .timer-box {
  color: #040404;
  background-color: #fff;
  border-radius: 12px;
  padding: 15px 12px;
  display: inline-block;
  text-align: center;
  min-width: 66px;
}
.countdown-time .timer-list .timer-box #days, .countdown-time .timer-list .timer-box #hours, .countdown-time .timer-list .timer-box #minutes, .countdown-time .timer-list .timer-box #seconds {
  font-size: 24px;
  font-weight: 600;
  line-height: 29.6px;
  color: #040404;
  display: block;
}

.timed-visual-content .buttons-wrap {
  padding: 39px 0 0;
}


@media (min-width: 768px) {
  .timed-visual {
    padding: 60px 20px;
  }
  .timed-visual-content {
    padding: 58px 0;
  }
  .timed-visual .image-wrap {
    min-height: 506px;
  }
}
@media (min-width: 1024px) {
  .timed-visual {
    padding: 80px 20px;
  }
  .timed-visual .image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 606px;
  }
  .timed-visual-content {
    padding: 78px 0;
  }
  .countdown-time .timer-list .timer-box {
    border-radius: 16px;
    padding: 15px 17px;
    min-width: 78px;
  }
  .countdown-time .timer-list .timer-box #days, .countdown-time .timer-list .timer-box #hours, .countdown-time .timer-list .timer-box #minutes, .countdown-time .timer-list .timer-box #seconds {
    font-size: 28px;
    line-height: 33.6px;
  }
}
@media (min-width: 1200px) {
  .timed-visual {
    padding: 120px 20px;
  }
}
@media (min-width: 1440px) {
  .timed-visual-content .h3 {
    font-size: 36px;
  }
}
.marianne-banner {
  padding: 40px 0;
}
.marianne-banner .banner-holder {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.marianne-banner .banner-box {
  border-radius: 12px;
  background: #bdcfd1;
  position: relative;
}
.marianne-banner .banner-box h3 {
  font-size: 28px;
  letter-spacing: -1px;
}
.marianne-banner .banner-box .textbox {
  padding: 30px 20px;
}
.marianne-banner .banner-box .cta_button {
  cursor: not-allowed;
  pointer-events: none;
}
.marianne-banner .banner-box .cta_button.activate {
  cursor: pointer;
  pointer-events: auto;
}
.marianne-banner .banner-box .image-holder {
  text-align: center;
}

.marianne-banner.blue_dark .banner-box {
  background: #bdcfd1;
}
.marianne-banner.blue_light .banner-box {
  background: #EEF2F2;
}
.marianne-banner.yellow .banner-box {
  background: radial-gradient(72.78% 334.82% at 72.78% 38.06%, #FDEF00 0%, #FDF238 51.5%, #FFF59C 100%);
}
.marianne-banner.beige .banner-box {
  background: #F5F3ED;
}
.marianne-banner.beige .banner-box:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: radial-gradient(72.78% 334.82% at 72.78% 38.06%, #FF7A34 0%, rgba(254, 181, 86, 0.8) 51.5%, rgba(255, 201, 136, 0.7) 100%);
  height: 14px;
  border-radius: 0 0 12px 12px;
}
.marianne-banner.green .banner-box {
  background: #EBEFE9;
}
.marianne-banner.green .banner-box:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: radial-gradient(72.78% 334.82% at 72.78% 38.06%, #68CC8C 0%, rgba(84, 222, 134, 0.6) 51.5%, rgba(83, 204, 127, 0.4) 100%);
  height: 14px;
  border-radius: 0 0 12px 12px;
}

.marianne-banner .start-time.hide, .marianne-banner .end-time.hide {
  display: none;
}

@media(min-width: 768px) {
  .marianne-banner .banner-box h3 {
    font-size: 36px;
  }
  .marianne-banner .banner-box {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-end;
  }
  .marianne-banner .banner-box .textbox {
    padding: 50px 40px;
    width: 60%;
  }
  .marianne-banner .banner-box .image-holder {
    margin: -60px 0 0;
    width: 40%;
  }
}
@media(min-width: 1024px) {
  .marianne-banner {
    padding: 64px 0;
  }
  .marianne-banner .banner-box .textbox {
    padding: 50px;
    width: 70%;
  }
  .marianne-banner .banner-box .image-holder {
    width: 30%;
  }
}
@media(min-width: 1200px) {
  .marianne-banner .banner-box .textbox {
    padding: 64px;
  }
}
/* Personal Section Styles */
.personal-section {
  padding: 25px 0;
}
/* Personal Block Styles */
.personal-block {
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.personal-block .videos-cols {
  position: relative;
  overflow: hidden;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}
.personal-block .tab-item {
  overflow: hidden;
  opacity: 0;
  height: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, height 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.personal-block .tab-item.selected {
  opacity: 1;
  height: auto;
  visibility: visible;
}
.personal-block .image-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 16px;
}
.personal-block .image-holder:before {
  display: block;
  content: "";
  padding-top: 123%;
}
.personal-block .image-holder > img,
.personal-block .image-holder > video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: 0;
}
.personal-block .textbox {
  width: 100%;
  padding: 30px 0 0;
}
.personal-block .textbox .text-holder {
  overflow: hidden;
  margin-bottom: 30px;
}
.personal-block .textbox .author {
  display: block;
  font-weight: 600;
}

.messages-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgba(4, 4, 4, 0.5607843137);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.messages-list li.selected .message-box {
  background: #bdcfd1;
}

.message-box {
  background: #eef2f2;
  display: inline-block;
  padding: 12px;
  border-radius: 12px;
  color: currentColor;
}
.message-box .title {
  display: block;
  color: #040404;
  font-weight: 600;
  margin: 0 0 2px;
}
.message-box p {
  color: #040404;
  margin: 0;
}


@media (min-width: 480px) {
  .personal-block .videos-cols {
    max-width: inherit;
  }
  .personal-block .textbox {
    padding: 40px 0 0;
  }
}
@media (min-width: 768px) {
  .personal-section {
    padding: 30px 0;
  }
  .personal-block {
    padding: 30px 0;
  }
  .personal-block .videos-cols {
    width: 50%;
    margin: 0;
  }
  .personal-block .textbox {
    width: 46%;
    padding: 0;
  }
  .personal-block.reverse {
    flex-direction: row-reverse;
  }
}
@media (min-width: 1024px) {
  .personal-section {
    padding: 40px 0;
  }
  .personal-block {
    padding: 40px 0;
  }
  .personal-block .videos-cols {
    width: 45%;
  }
  .personal-block .textbox {
    width: 45.5%;
  }
  .personal-block .textbox .text-holder {
    margin-bottom: 55px;
  }
}
@media (min-width: 1200px) {
  .personal-section {
    padding: 60px 0;
  }
  .personal-block {
    padding: 60px 0;
  }
  .personal-block .videos-cols {
    width: 40.6%;
  }
  .personal-block .textbox {
    padding-right: 5%;
    width: 45.5%;
  }
  .personal-block .textbox .text-holder {
    margin-bottom: 80px;
  }
/*   .personal-block.reverse .textbox {
    padding-right: 0;
    padding-left: 5%;
  } */
}
@media (min-width: 1440px) {
  .personal-block .textbox {
    padding-right: 8%;
  }
  .personal-block .textbox h3 {
    font-size: 36px;
  }
/*   .personal-block.reverse .textbox {
    padding-right: 0;
    padding-left: 8%;
  } */
}
.base-content {
  padding: 40px 0;
}
.base-content .row {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin: 0 -15px;
}
.base-content .column {
  padding: 0 15px;
  width: 100%;
}
.base-content .h3 {
  letter-spacing: -1px;
}
.base-content .textbox ul {
  list-style: none;
  margin: 0;
  padding: 16px 0 0 0;
}
.base-content .textbox ul li {
  position: relative;
  font-size: 16px;
  padding: 0 0 10px 24px;
}
.base-content .textbox ul li:before {
  content: '';
  position: absolute;
  top: 8px;
  left: 5px;
  height: 10px;
  width: 12px;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='10' viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.10417 9.4375L0.0625 5.41667L1.125 4.33333L4.10417 7.3125L10.875 0.5625L11.9375 1.625L4.10417 9.4375Z' fill='%23040404'/%3E%3C/svg%3E%0A");
}
.base-content .textbox .buttons-wrap {
  padding: 0;
  margin-bottom: 15px;
}
.base-content .cards-row, .base-content .sales-banner-xs {
  margin-bottom: 15px;
}
.base-content .video-preview, .base-content .inline-banner, .base-content .sales-banner-xs {
  max-width: 560px;
}
.base-content .sales-banner-xs {
  padding: 0;
}
.base-content .sales-banner-xs .buttons-wrap {
  margin: 0;
  padding: 13px 0 0;
}

.base-content .image-holder {
  margin-bottom: 30px;
}
.base-content .image-box {
  border-radius: 12px;
  overflow: hidden;
}
.base-content .image-box:before {
  display: block;
  content: "";
  padding-top: 135.2%;
}

@media(min-width: 768px) {
  .base-content {
    padding: 60px 0;
  }
  .base-content .textbox .buttons-wrap {
    margin-bottom: 34px;
  }
  .base-content .cards-row, .base-content .sales-banner-xs {
    margin-bottom: 32px;
  }
}
@media(min-width: 1024px) {
  .base-content {
    padding: 80px 0;
  }
  .base-content .row.right {
    flex-direction: row-reverse;
  }
  .base-content .column {
    width: 50%;
  }
  .base-content .textbox {
    max-width: 560px;
  }
  .base-content .left .textbox {
    margin: 0 0 0 auto;
  }
  .base-content .left .video-preview, .base-content .left .inline-banner, .base-content .left .sales-banner-xs {
    margin: 0 0 32px auto;
  }
}
@media(min-width: 1200px) {
  .base-content {
    padding: 120px 0;
  }
  .base-content .column:first-child {
    width: 42.5%;
  }
  .base-content .column:last-child {
    width: 57.5%;
  }
  .base-content .h3 {
    font-size: 36px;
  }
}
.fixed-bar {
  position: fixed;
  bottom: 20px;
  left: 15px;
  right: 15px;
  z-index: 5;
}
.fixed-bar .holder {
  border: 1px solid #04040433;
  background-color: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  max-width: 420px;
  padding: 8px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.fixed-bar .buttons-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.fixed-bar .buttons-list .cta_button {
  padding: 4px 12px;
}
.fixed-bar .cta_button .icon {
  position: relative;
  top: 2px;
}
.fixed-bar .btn-call {
  background: transparent;
  border-color: transparent;
}
.fixed-bar .btn-green {
  color: #fff;
}

.fixed-bar.yellow_bar .holder {
  max-width: 720px;
  padding: 8px 8px 8px 30px;
}
.fixed-bar.yellow_bar .textbox {
  font-size: 14px;
  width: 50%;
}
.fixed-bar.yellow_bar .buttons-list {
  width: 50%;
  justify-content: flex-end;
}
.fixed-bar.yellow_bar .btn-green {
  background-color: transparent;
  border-color: transparent;
  color: #040404;
}

@media(max-width: 480px) {
  .fixed-bar .btn-green .text {
    display: none;
  }
  .fixed-bar .btn-green .icon {
    margin: 0;
  }
}
@media(max-width: 768px) {
  .fixed-bar.yellow_bar .holder {
    padding: 8px 8px 8px 15px;
  }
  .fixed-bar.yellow_bar .textbox {
    font-size: 12px;
  }
  .fixed-bar.yellow_bar .btn-green .text {
    display: none;
  }
  .fixed-bar.yellow_bar .btn-green .icon {
    margin: 0;
  }
}
.compare-section {
  overflow: hidden;
  padding: 45px 0;
}
.compare-section .section-head {
  overflow: hidden;
  margin: 0 0 40px;
}

.compare-sticky-titles {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 0;
  background: #fff;
  opacity: 0;
  transition: 0.5;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  z-index: 999;
}
.compare-sticky-titles .compare-slider {
  padding: 0;
}
.compare-sticky-titles .compare-slider .slick-arrow,
.compare-sticky-titles .compare-slider .slick-dots {
  display: none !important;
}
.compare-sticky-titles .title {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 44px;
  width: 100%;
}
.compare-sticky-titles.stick-head {
  position: fixed;
  opacity: 1;
}

.compare-box {
  overflow: hidden;
  text-align: center;
  max-width: 333px;
  margin: 0 auto 65px;
  padding: 0 5px;
}
.compare-box .image-holder {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 150px;
  margin: 0 auto;
}
.compare-box .product-description {
  padding: 0;
}
.compare-box .product-description .cards-row {
  margin: 0;
}
.compare-box .product-description .pricing-holder {
  justify-content: center;
}
.compare-box .product-description .price-box .old-price {
  justify-content: center;
}
.compare-box .cards-row {
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.compare-box .cards-row p:last-child {
  margin-bottom: 0;
}
.compare-box .text-info {
  overflow: hidden;
  margin: 0 0 15px;
}
.compare-box h3 {
  margin: 0 0 8px;
}
.compare-box .button-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}
.compare-box .button-wrap .btn {
  width: auto;
}
.compare-box .button-wrap .btn.btn-white {
  border-color: #fff;
}
.compare-box .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgba(4, 4, 4, 0.5607843137);
}
.compare-box .info-list li {
  padding: 6px 0;
}
.compare-box .info-list span {
  color: #040404;
}
.compare-box .icons {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.compare-box .icons img {
  display: block;
}
.compare-box .partners {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  flex-direction: column;
}
.compare-box .partners .box {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.compare-table-holder {
  padding: 60px 0;
}
.compare-table-holder:last-child {
  padding-bottom: 0;
}
.compare-table-holder .compare-table-wrap {
  position: relative;
}
.compare-table-holder .compare-text {
  color: #040404;
  padding: 15px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  text-align: center;
  font-size: 16px;
}
.compare-table-holder .compare-text .subtitle {
  display: block;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 400;
}
.compare-table-holder .table-titles {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  list-style-type: none;
  padding: 0;
  margin: 0;
  background: #fff;
  z-index: 1;
  width: 105px;
  display: none;
}
.compare-table-holder .table-titles .compare-text {
  padding-left: 0;
  padding-right: 0;
  justify-content: flex-start;
  color: rgba(0, 0, 0, 0.5);
}
.compare-table .slick-dots {
  position: absolute;
  left: 0;
  top: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  top: -100px;
  width: calc(100% - 130px);
  display: flex;
  line-height: 0;
  font-size: 0;
}
.compare-table .slick-dots li {
  flex-grow: 1;
}
.compare-table .slick-dots li button {
  width: 100%;
  height: 2px;
  padding: 0;
  font-size: 0;
  line-height: 0;
  border: 0;
  background: rgba(4, 4, 4, 0.2);
}
.compare-table .slick-dots li:hover button, .compare-table .slick-dots li.slick-active button {
  background: #040404;
}

@media (max-width: 767px) {
  .compare-box .product-description .pricing-holder {
    flex-direction: column;
  }
  .compare-box .product-description .price-box + .price-box {
    border: 0;
    padding-top: 20px;
  }
  .compare-box .product-description .price-box .old-price {
    margin: 0 0 5px;
  }
  .compare-box .product-description .price-box .new-price {
    font-size: 18px;
  }
  .compare-box h3 {
    font-size: 20px;
  }
  .compare-slider {
    padding: 50px 0 0;
  }
  .compare-slider .slick-arrow {
    bottom: auto;
    top: -25px;
  }
  .compare-table .slick-arrow {
    bottom: auto;
    left: auto;
    top: -110px;
  }
  .compare-table .slick-arrow.slick-prev {
    left: auto;
    right: 55px;
  }
  .compare-table .slick-arrow.slick-next {
    left: auto;
    right: 0;
  }
  .compare-table .slick-dots {
    top: -92px;
  }
}
@media (min-width: 768px) {
  .compare-section {
    padding: 60px 0;
  }
  .compare-sticky-titles .title {
    font-size: 16px;
  }
  .compare-box {
    padding: 0 15px;
  }
  .compare-box .image-holder {
    max-width: inherit;
    margin: 0;
  }
  .compare-box .partners {
    flex-direction: row;
    gap: 24px;
  }
  .compare-box .partners .box {
    max-width: 45%;
  }
  .compare-table-holder .compare-text {
    height: 54px;
    padding: 0 105px;
    line-height: 1.2;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
  }
  .compare-table-holder .compare-text .subtitle {
    display: none;
  }
  .compare-table-holder .table-titles {
    display: block;
  }
  .compare-table .slick-arrow {
    top: -120px;
  }
}
@media (min-width: 1024px) {
  .compare-section {
    padding: 80px 0;
  }
  .compare-slider {
    padding: 50px 0 0;
  }
}
@media (min-width: 1200px) {
  .compare-box h3 {
    font-size: 36px;
  }
  .compare-table-holder .compare-text {
    font-size: 16px;
    padding: 0 115px;
  }
  .compare-table-holder .table-titles {
    width: 115px;
  }
}
/* Modal Popup Styles */
[data-modal-open] {
  cursor: pointer;
}
[data-modal-open] .btn-video {
  pointer-events: none;
}

.modal-popup {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: safe center;
  justify-content: safe center;
  padding: 15px;
  z-index: 99;
  overflow: hidden;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.modal-popup.modal-slideup {
  opacity: 1;
  visibility: visible;
}
.modal-popup.modal-slideup .modal-continer {
  transform: none;
}
.modal-popup .modal-close {
  width: 36px;
  height: 36px;
  background: #eef2f2;
  border-radius: 100%;
  position: absolute;
  right: 20px;
  top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-popup .modal-close:before {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  z-index: -1;
}
.modal-popup .modal-close:hover {
  background: #dde0e0;
}
.modal-popup .modal-continer {
  width: 100%;
  max-width: 865px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  position: relative;
  transform: translateY(100%);
  transition: 0.35s ease-in-out;
  overflow: hidden;
}
.modal-popup .modal-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-height: 90vh;
  overflow: auto;
}
.modal-popup .modal-image {
  position: relative;
  overflow: hidden;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}
.modal-popup .modal-image:before {
  display: block;
  content: "";
  padding-top: 122.4%;
}
.modal-popup .modal-image > img,
.modal-popup .modal-image > video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: 0;
}
.modal-popup .modal-textbox {
  width: 100%;
  padding: 15px;
}
.modal-popup .modal-textbox .author {
  display: block;
  font-weight: 600;
}


@media (min-width: 480px) {
  .modal-popup .modal-continer {
    padding: 16px;
    padding-right: 0;
  }
  .modal-popup .modal-content {
    padding-right: 16px;
  }
  .modal-popup .modal-image {
    max-width: inherit;
  }
  .modal-popup .modal-textbox {
    padding: 24px 10px;
  }
}
@media (min-width: 768px) {
  .modal-popup .modal-close {
    width: 48px;
    height: 48px;
  }
  .modal-popup .modal-content {
    max-height: 80vh;
  }
  .modal-popup .modal-image {
    width: 50.5%;
    margin: 0;
    border-radius: 16px;
  }
  .modal-popup .modal-textbox {
    width: 46%;
    padding: 0;
  }
  .modal-popup .modal-textbox .h4 {
    font-size: 28px;
  }
  .modal-popup .modal-textbox .author {
    padding-top: 15px;
  }
}
@media (min-width: 1024px) {
  .modal-popup .modal-textbox {
    width: 42%;
  }
}
.related-posts {
  padding: 40px 0; 
}
.related-posts .text {
  margin-bottom: 60px; 
}
.related-posts .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
}
.related-posts .column {
  padding: 0 15px;
  margin-bottom: 30px;
  width: 100%;
}
.related-posts .post-article .post-article__image {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  height: 240px;
  width: 100%;
  margin-bottom: 18px;
}
.related-posts .post-article .post-article__content {
  width: 100%;
}
.related-posts .post-article .post-article__text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
  font-size: 14px;
  margin-bottom: 10px;
}
.related-posts .post-article .post-article__meta {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.related-posts .post-article .tags {
  padding-right: 15px;
}
.related-posts .post-article .tags .topic {
  background-color: #EBEFE9;
  font-size: 12px;
  font-weight: 600;
  border-radius: 8px;
  padding: 6px 12px;
}
.related-posts .post-article .tags .topic:hover, .blog-listing .post-article .tags .topic:focus {
  background-color: #040404;
  color: #fff;
}
.related-posts .post-article .meta-info {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -10px;
}
.related-posts .post-article .meta-info li {
  padding: 0 10px;
  color: #0404048F;
  font-size: 14px;
  position: relative;
  text-transform: capitalize;
}
.related-posts .post-article .meta-info li:first-child:after {
  content: '';
  position: absolute;
  top: 10px;
  right: -2px;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: #0404048F;
}



@media(min-width: 768px) {
  .related-posts {
    padding: 60px 0;
  }
  .related-posts .column {
    width: 50%;
  }
}
@media(min-width: 1024px) {
  .related-posts {
    padding: 80px 0;
  }
  .related-posts .column {
    width: 33.33%;
  }
}
.sources {
  padding: 40px 0 80px;
}
.sources .container {
  max-width: 890px;
}
.sources .sources-box {
  background-color: #EEF2F2;
  border-radius: 24px;
  padding: 20px;
}
@media(min-width: 768px) {
  .sources .sources-box {
    padding: 30px;
  }
}
@media(min-width: 1024px) {
  .sources .sources-box {
    padding: 40px;
  }
}

.sources .sources-box ol {
  counter-reset: list;
  list-style: none;
  padding: 10px 0 0;
  margin: 0;
}
.sources .sources-box ol li {
  position: relative;
  padding-left: 30px;
  padding-bottom: 13px;
}
.sources .sources-box ol li:last-child {
  padding-bottom: 0;
}
.sources .sources-box ol li:before {
  counter-increment: list;
  content: counters(list,".") ".";
  position: absolute;
  top: 0;
  left: 0;
}
.sources .sources-box ol li strong {
  font-size: 14px;
}
.sources .sources-box ol li a {
  text-decoration: underline;
}
.faq-box {
  padding: 40px 0;
}
.faq-box .container {
  max-width: 890px;
}
.faq-box h4 {
  margin-bottom: 30px;
}
.faq-box .box {
  background-color: #EEF2F2;
  border-radius: 24px;
  padding: 20px;
}
@media(min-width: 768px) {
  .faq-box .box {
    padding: 30px;
  }
}
@media(min-width: 1024px) {
  .faq-box .box {
    padding: 40px;
  }
}

.faq-box .accordion {
  margin-bottom: 0;
}
.faq-box .accordion:last-child {
  border: 0;
}
.faq-box .accordion .accordion__title {
  font-size: 16px;
}
.faq-box .accordion .accordion__content {
  font-size: 14px;
}
.tabs-video {
  display: flex;
  flex-flow: row wrap;
  margin: 40px 0;
}
@media(min-width: 768px) {
  .tabs-video {
    margin: 60px 0;
  }
}
@media(min-width: 1024px) {
  .tabs-video {
    margin: 80px 0;
  }
}
.tabs-video .tabs-nav {
  list-style: none;
  margin: 0 -10px;
  padding: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  width: 100%;
}
.tabs-video .tabs-nav li {
  padding: 0 10px 10px;
  cursor: pointer;
}
.tabs-video .tabs-nav li.selected a {
  color: #fff;
  background-color: #040404;
}
.tabs-video .tabs-nav li a {
  background-color: #EEF2F2;
  border-radius: 30px;
  padding: 8px 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}
.tabs-video .tabs-nav li a:hover {
  color: #fff;
  background-color: #040404;
}
.tabs-video .tab-item {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity .3s ease-in-out,height .3s ease-in-out,visibility .3s ease-in-out;
  visibility: hidden;
}
.tabs-video .tab-item.selected {
  height: auto;
  opacity: 1;
  visibility: visible;
}
.tabs-video .tabs-content {
  margin-top: 24px;
  width: 100%;
}

/* video style */
.tabs-video .video {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.tabs-video .video::before {
  content: "";
  display: block;
  padding-top: 55.6%;
}
.tabs-video .video > video {
  border: 0;
  height: 100% !important;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.tabs-video .video-controls {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 5;
  background: rgba(4, 4, 4, 0.5607843137);
  width: 48px;
  height: 48px;
  border-radius: 100%;
}
.tabs-video .video-controls .play-button,
.tabs-video .video-controls .pause-button,
.tabs-video .video-controls .mute-button,
.tabs-video .video-controls .unmute-button {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  background: none;
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
}
.tabs-video .video-controls .play-button img,
.tabs-video .video-controls .pause-button img,
.tabs-video .video-controls .mute-button img,
.tabs-video .video-controls .unmute-button img {
  height: 12px;
  width: auto;
  position: relative;
}
.tabs-video .video-controls .play-button.hide,
.tabs-video .video-controls .pause-button.hide,
.tabs-video .video-controls .mute-button.hide,
.tabs-video .video-controls .unmute-button.hide {
  display: none;
}
.tabs-video .video-controls .play-button.show,
.tabs-video .video-controls .pause-button.show,
.tabs-video .video-controls .mute-button.show,
.tabs-video .video-controls .unmute-button.show {
  display: flex;
}
.tabs-video .video-controls .mute-button img,
.tabs-video .video-controls .unmute-button img {
  height: 20px;
}
.tabs-video .video-controls-wrap {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.tabs-video .video-controls-wrap .video-controls {
  position: relative;
  bottom: auto;
  right: auto;
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
.nav-active .language-switcher-wrapper {
  display: none;
}
.language-switcher-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 15px 0;
  position: absolute;
  top: 0;
  right: 70px;
}
@media(min-width: 1200px) {
  .language-switcher-wrapper {
    position: relative;
    top: auto;
    right: auto;
    padding: 20px 0;
  }
}
.language-switcher {
  color: #fff;
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.language-switcher svg {
  position: relative;
  top: 0px;
  left: 4px;
}
.language-switcher .flag {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  margin-right: 8px;
  display: flex;
}
.language-switcher .flag svg {
  position: static;
}
.language-switcher-dropdown {
  background: #1d1d1d;
  border-top: 1px solid transparent;
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  width: 100px;
}
.language-switcher-dropdown.open {
  display: block;
}
.language-switcher-dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.language-switcher-dropdown ul li {
  padding: 10px 12px;
}
.language-switcher-dropdown ul li.active {
  display: none;
}
.language-switcher-dropdown ul li a {
  color: #fff;
  font-size: 14px;
  line-height: 1;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.language-switcher-dropdown ul li .flag {
  border-radius: 100%;
  height: 20px;
  width: 20px;
  overflow: hidden;
  display: block;
  margin-right: 8px;
} 
.language-switcher-dropdown ul li .flag svg {
  height: 100%;
  width: 100%;
}
/* Footer Styles */
.footer {
  overflow: hidden;
  background: #040404;
  padding: 45px 0;
  color: rgba(255, 255, 255, 0.72);
}

/* Pri Footer Styles */
.pri-footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 30px;
}
.pri-footer .footer-info {
  width: 100%;
  margin: 0 0 40px;
}
.pri-footer .logo {
  width: 151px;
  margin: 0 0 15px;
}
.pri-footer .footer-links {
  width: 100%;
  gap: 25px;
}

/* Sec Footer Styles */
.sec-footer {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 0 0;
  gap: 20px;
}

.newsletter-box {
  border: 1px solid #FDEF00;
  border-radius: 20px; 
  padding: 20px;
  margin-top: 30px;
}
.newsletter-box .text {
  margin-bottom: 25px;
  color: #fff;
}
.newsletter-box form label {
  color: #fff;
}
.newsletter-box form .hs_email {
  margin-bottom: 10px;
}
.newsletter-box form input[type="email"] {
  background: #FFFFFF1A;
  color: #fff;
}
.newsletter-box form .hs_submit {
  text-align: right;
}
.newsletter-box form .hs-button {
  background: #e8e000;
  color: #040404;
  border-color: #e8e000;
  padding: 6px 10px;
  font-size: 14px;
  line-height: 19.6px;
}
.newsletter-box form .hs-button:hover {
  color: #040404;
  background: #ded600;
  border-color: #ded600;
}
.newsletter-box form label.hs-error-msg {
  color: #ef6b51;
}
.newsletter-box form .hs-richtext p, .newsletter-box form .hs-richtext a {
  color: #fff;
}

@media(min-width: 1200px) {
  .newsletter-box form {
    position: relative;
    margin: 0;
  }
  .newsletter-box form .hs_email {
    max-width: 235px;
    margin: 0;
  }
  .newsletter-box form .hs_submit {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 25px;
  }
}
@media(min-width: 1280px) {
  .newsletter-box form .hs_email {
    max-width: 265px;
  }
}
@media(min-width: 1366px) {
  .newsletter-box form .hs_email {
    max-width: 280px;
  }
}

/* Social Netwroks Styles */
.social-networks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.social-networks a:hover {
  opacity: 0.7;
}

/* Footer Nav Styles */
.footer-nav {
  overflow: hidden;
  margin-bottom: 20px;
}
.footer-nav .title {
  display: block;
  font-size: 14px;
  font-family: "Poppins", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 5px;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav ul li {
  margin: 0 0 4px;
}
.footer-nav ul li a {
  color: #fff;
}
.footer-nav ul li a:hover {
  color: #e8e000;
}

/* Address Box Styles */
.address-box {
  overflow: hidden;
  font-size: 14px;
  width: 100%;
}
.address-box .address-name {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 5px;
}
.address-box .icon {
  width: 20px;
  height: 20px;
}
.address-box .icon img {
  width: auto;
  height: 20px;
  max-width: 100%;
  display: block;
}
.address-box address {
  display: block;
  font-style: normal;
}
.address-box address a {
  color: rgba(255, 255, 255, 0.72);
}
.address-box address a:hover {
  color: #fff;
}

/* Additional Nav Styles */
.additonal-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 400;
  gap: 7px;
}
.additonal-nav li {
  display: flex;
  align-items: center;
  gap: 7px;
}
.additonal-nav li:after {
  height: 8px;
  width: 2px;
  content: "";
  display: block;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.25);
}
.additonal-nav li:last-child:after {
  display: none;
}
.additonal-nav li a {
  color: rgba(255, 255, 255, 0.72);
}
.additonal-nav li a:hover {
  color: #fff;
}

@media (min-width: 768px) {
  .footer {
    padding: 60px 0;
  }
  .pri-footer {
    margin-bottom: 50px;
  }
  .sec-footer {
    padding: 20px 0 0;
    border-color: rgba(255, 255, 255, 0.075);
  }
  .footer-nav {
    margin: 0;
  }
  .pri-footer .footer-links {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .footer {
    padding: 80px 0;
  }
  .pri-footer {
    flex-direction: row;
    min-height: 200px;
  }
  .pri-footer .footer-info {
    width: 35%;
    margin: 0;
  }
  .pri-footer .footer-links {
    width: 55%;
    gap: 15px;
  }
  .sec-footer {
    flex-direction: row;
  }
  .address-box {
    max-width: 288px;
  }
  .additonal-nav {
    padding: 13px 0 0;
  }
}
@media (min-width: 1200px) {
  .pri-footer {
    min-height: 260px;
  }
  .pri-footer .footer-links {
    width: 48.4%;
  }
}
@media (min-width: 1440px) {
  .pri-footer {
    min-height: 326px;
  }
}

/* Template
Specific pieces of UI that are stylized.
*/

/* Blog Hero Banner */
.blog-hero {
  background-color: #E9EFEF;
  padding: 40px 0;
}
.blog-hero .text {
  max-width: 540px;
}
@media(min-width: 768px) {
  .blog-hero {
    padding: 60px 0;
  }
}
@media(min-width: 1024px) {
  .blog-hero {
    padding: 80px 0;
  }
}
@media(min-width: 1440px) {
  .blog-hero .text {
    font-size: 18px;
  } 
}


.blog-listing-tags {
  padding: 40px 0 0;
}
.blog-listing-tags .tags-list {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -7px;
}
.blog-listing-tags .tags-list li {
  padding: 0 7px;
}
.blog-listing-tags .tags-list li.active .tag {
  background-color: #040404;
  color: #fff;
}
.blog-listing-tags .tags-list .tag {
  background-color: #EBEFE9;
  font-weight: 600;
  border-radius: 20px;
  padding: 8px 16px;
}
.blog-listing-tags .tags-list .tag:hover, .blog-listing-tags .tags-list .tag:focus {
  background-color: #040404;
  color: #fff;
}


/* blog listing */
.blog-listing {
  padding: 40px 0;
}
.blog-listing .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
}
.blog-listing .column {
  padding: 0 15px;
  margin-bottom: 30px;
  width: 100%;
}
.blog-listing .column.full-width {
  width: 100%;
}

.blog-listing .post-article {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.blog-listing .post-article .post-article__image {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  height: 122px;
  width: 122px;
  margin-bottom: 18px;
}
.blog-listing .post-article .post-article__content {
  width: calc(100% - 122px);
  padding-left: 15px;
}
.blog-listing .post-article .post-article__text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
  font-size: 14px;
  margin-bottom: 10px;
  display: none;
}
.blog-listing .post-article .post-article__meta {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.blog-listing .post-article .tags {
  padding-right: 15px;
  display: none;
}
.blog-listing .post-article .tags .topic {
  background-color: #EBEFE9;
  font-size: 12px;
  font-weight: 600;
  border-radius: 8px;
  padding: 6px 12px;
}
.blog-listing .post-article .tags .topic:hover, .blog-listing .post-article .tags .topic:focus {
  background-color: #040404;
  color: #fff;
}
.blog-listing .post-article .meta-info {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -10px;
}
.blog-listing .post-article .meta-info li {
  padding: 0 10px;
  color: #0404048F;
  font-size: 14px;
  position: relative;
/*   text-transform: capitalize; */
}
.blog-listing .post-article .meta-info li:first-child:after {
  content: '';
  position: absolute;
  top: 10px;
  right: -2px;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: #0404048F;
}

.blog-listing .post-article.large {
  display: block;
}
.blog-listing .post-article.large .post-article__image {
  height: 240px;
  width: 100%;
}
.blog-listing .post-article.large .post-article__content {
  padding: 0;
  width: 100%;
}
.blog-listing .post-article.large .post-article__text {
  display: -webkit-box;
}

@media(min-width: 768px) {
  .blog-listing {
    padding: 40px 0 60px;
  }
  .blog-listing .column {
    width: 50%;
  }
  .blog-listing-tags {
    padding: 60px 0 40px;
  }
  .blog-listing .post-article .post-article__image {
    height: 240px;
    width: 100%;
  }
  .blog-listing .post-article.large .post-article__image {
    height: 300px;
  }
  .blog-listing .post-article .post-article__content {
    width: 100%;
    padding: 0;
  }
  .blog-listing .post-article .post-article__text {
    display: -webkit-box;
  }
  .blog-listing .post-article .tags {
    display: block;
  }
}
@media(min-width: 1024px) {
  .blog-listing {
    padding: 40px 0 80px;
  }
  .blog-listing .column {
    width: 33.33%;
  }
  .blog-listing .post-article.large {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
  }
  .blog-listing .post-article.large .post-article__image, .blog-listing .post-article.large .post-article__content {
    width: 50%;
  }
  .blog-listing .post-article.large .post-article__image {
    height: 380px;
  }
  .blog-listing .post-article.large .post-article__content {
    padding-left: 32px;
    max-width: 500px;
  }
  .blog-listing .post-article.large .post-article__text {
    font-size: inherit;
  }
  .blog-listing .post-article.large .tags .topic {
    font-size: 14px;
    padding: 6px 12px;
  }
  .blog-listing-tags {
    padding: 80px 0 40px;
  }
}
@media(min-width: 1200px) {
  .blog-listing .row {
    margin: 0 -20px;
  }
  .blog-listing .column {
    padding: 0 20px;
    margin-bottom: 40px;
  }
  .blog-listing .post-article.large .post-article__image {
    height: 480px;
  }
}
@media(min-width: 1440px) {
  .blog-listing .post-article.large .h3 {
    font-size: 36px;
  }
}


/* pagincation */
.blog-pagination {
  padding: 40px 0;
}
.pagination-nav {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}
.pagination-nav .pagination-nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  background: #fff;
  border-radius: 100%;
  text-decoration: none;
  transition: all .15s ease-in-out;
  text-align: center;
  padding: 6px 12px;
  margin-right: 10px;
  width: 40px;
  height: 40px;
}
.pagination-nav .pagination-nav__link:last-child {
  margin-right: 0;
}
.pagination-nav .pagination-nav__number-link:hover {
  background: #E9EFEF;
  border-color: #E9EFEF;
}
.pagination-nav .pagination-nav__link--active {
  background: #E9EFEF;
  border-color: #E9EFEF;
}
.pagination-nav .pagination-nav__prev-link--disabled svg path, .pagination-nav .pagination-nav__next-link--disabled svg path {
  fill: #04040433;
}



/* Blog post */
.post-hero {
  background-color: #EBEFE9;
  padding: 120px 0 70px;
  position: relative;
}
.post-hero:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 37%;
  background-color: #fff;
}
.post-hero .container.container-small {
  max-width: 880px;
}
.post-hero .container {
  max-width: 1100px;
  position: relative;
  z-index: 2;
}
.post-hero .featured-image {
  margin-top: 20px;
  position: relative;
  padding-bottom: 12px;
}
.post-hero .featured-image::after {
  background: linear-gradient(90deg,#fff59a 0,#f0e91f 50%,#f2eb27);
  border-radius: 0 0 12px 12px;
  bottom: 0;
  content: "";
  height: 12px;
  left: 2%;
  position: absolute;
  right: 2%;
  z-index: 1;
}
.post-hero .featured-image .image-holder {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.post-hero .featured-image img {
  display: block;
  height: auto;
  min-height: 576px;
  object-fit: cover;
  width: 100%;
}

@media(min-width: 1024px) {
  .post-hero .post-info {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
}

/* meta info */
.post-hero .meta-info {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin-bottom: 10px;
}
.post-hero .meta-info ul {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin: 0 -10px;
  padding-right: 20px;
}
.post-hero .meta-info ul li {
  font-size: 14px;
  padding: 0 10px;
  position: relative;
  text-transform: capitalize;
}
.post-hero .meta-info ul li:first-child::after {
  background-color: #040404;
  border-radius: 100%;
  content: "";
  height: 4px;
  position: absolute;
  right: -2px;
  top: 10px;
  width: 4px;
}
.post-hero .tags .tag-link {
  background-color: #fff;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
}
.post-hero .tags .tag-link:hover {
  color: #040404;
}

/* post meta */
.post-hero .post-meta {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.post-hero .author, .post-hero .fact-check {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin-bottom: 10px;
  padding-right: 20px;
}
.post-hero .author .author__image, .post-hero .fact-check .fact-check__image {
  border-radius: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  height: 32px;
  width: 32px;
}
.post-hero .author .author__info, .post-hero .fact-check .fact-check__info {
  font-size: 14px;
  padding-left: 10px;
}

/* post template */
.post-template .container {
  max-width: 670px;
}



/* post addtional settings */
.post-additional-settings {
  padding: 60px 0 0;
}
.post-additional-settings .container {
  max-width: 670px;
}
.post-additional-settings .richtext, .post-additional-settings .image-holder, .post-additional-settings .video-container {
  margin-bottom: 30px;
}
.post-additional-settings .image-holder {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

/* video style */
.post-additional-settings .video-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.post-additional-settings .video-container::before {
  content: "";
  display: block;
  padding-top: 55.6%;
}
.post-additional-settings .video-container > video {
  border: 0;
  height: 100% !important;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

/* steps box */
.post-additional-settings .step-box {
  background-color: #EBEFE9;
  border-radius: 24px;
  padding: 30px;
  margin: 40px 0;
}
@media(min-width: 768px) {
  .post-additional-settings .step-box {
    padding: 30px;
    margin: 60px 0;
  }
}
@media(min-width: 1024px) {
  .post-additional-settings .step-box {
    padding: 40px;
    margin: 80px 0;
  }
}
.post-additional-settings .step-box ol {
  counter-reset: list;
  list-style: none;
  padding: 16px 0 0;
  margin: 0;
}
.post-additional-settings .step-box ol li {
  font-weight: 600;
  position: relative;
  padding-left: 45px;
  padding-bottom: 29px;
}
.post-additional-settings .step-box ol li:last-child {
  padding-bottom: 0;
}
.post-additional-settings .step-box ol li:before {
  counter-increment: list;
  content: counters(list,".") " ";
  background-color: #6DD693;
  border-radius: 8px;
  height: 32px;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -4px;
  left: 0;
}

/* benefits box */
.post-additional-settings .benefits-box {
  background-color: #F5F3ED;
  border-radius: 24px;
  padding: 30px;
  margin: 40px 0;
}
@media(min-width: 768px) {
  .post-additional-settings .benefits-box {
    padding: 30px;
    margin: 60px 0;
  }
}
@media(min-width: 1024px) {
  .post-additional-settings .benefits-box {
    padding: 40px;
    margin: 80px 0;
  }
}
.post-additional-settings .benefits-box ul {
  list-style: none;
  padding: 16px 0 0;
  margin: 0;
}
.post-additional-settings .benefits-box ul li {
  position: relative;
  padding-left: 45px;
  padding-bottom: 15px;
}
.post-additional-settings .benefits-box ul li strong {
  font-weight: 600;
}
.post-additional-settings .benefits-box ul li:last-child {
  padding-bottom: 0;
}
.post-additional-settings .benefits-box ul li:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  height: 32px;
  width: 32px;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='32' height='32' rx='8' fill='%23FF8D29'/%3E%3Cmask id='mask0_11598_8165' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='4' y='4' width='24' height='24'%3E%3Crect x='4' y='4' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_11598_8165)'%3E%3Cpath d='M10.5 18.9746V17.9746H8V15.9746H13V13.9746H8V7.97461H10.5V6.97461H12.5V7.97461H15V9.97461H10V11.9746H15V17.9746H12.5V18.9746H10.5ZM17.95 24.9746L13.7 20.7246L15.1 19.3246L17.95 22.1746L23.6 16.5246L25 17.9246L17.95 24.9746Z' fill='%23040404'/%3E%3C/g%3E%3C/svg%3E%0A");
  display: flex;
  align-items: center;
  justify-content: center;
}

/* table style */
.post-additional-settings .table-box {
  background-color: #EEF2F2;
  border-radius: 24px;
  padding: 20px;
  margin: 40px 0;
}
@media(min-width: 768px) {
  .post-additional-settings .table-box {
    margin: 50px 0;
  }
}
.post-additional-settings .table-box p {
  font-size: 14px;
  color: #0404048F;
}
.post-additional-settings .table-box table {
  border: none !important;
  width: 100% !important;
}
@media(max-width: 767px) {
  .post-additional-settings .table-box table {
    table-layout: auto !important;
    white-space: nowrap;
  }
}
.post-additional-settings .table-box table tr:first-child td {
  border-top: none;
}
.post-additional-settings .table-box table tr td {
  border-top: 1px solid #0404041A;
  font-size: 14px;
  vertical-align: middle;
  padding: 12px 6px !important;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}