/* Theme base styles */
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
/* 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;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * 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
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 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
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, 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;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* 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 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 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;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

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

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * 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, IE 10+, and Firefox.
 */

details {
  display: block;
}

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

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}
/* Transition box */
.transition{
  transition: all .3s cubic-bezier(0.645,0.045,0.355,1);
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-delay: 0s !important;
}
.transition:hover{
  transform: translateY(-10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.17);
}
/* Transition no shadow */
.transition_no_shadow{
  transition: all .3s cubic-bezier(0.645,0.045,0.355,1);
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-delay: 0s !important;
}
.transition_no_shadow:hover{
  transform: translateY(-10px);
}






/* Read more */

.read_more {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.read_more svg {
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  margin-left: 10px;
  fill:#4E4B6C;
}


.content_read_more:hover .read_more{
  color: #4E4B6C;
}
.content_read_more:hover .read_more svg {
  -webkit-animation: slide 1s ease-in-out infinite;
  animation: slide 1s ease-in-out infinite;
  margin-left: 9px;
  fill:#4E4B6C;
}





/*  for hover efect img */
/* .read-more img {
-webkit-animation: slide 1s ease-in-out infinite;
animation: slide 1s ease-in-out infinite;
margin-left: 9px;
} */

@-webkit-keyframes slide {
  0%,
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(10px, 0);
    transform: translate(10px, 0);
  }
}

@keyframes slide {
  0%,
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(10px, 0);
    transform: translate(10px, 0);
  }
}






.flex-grow{
  justify-content: space-between;
  flex-direction: column;
  flex-grow: 1;
  display: flex;
}

.column-reverse{
  display: flex;
  flex-direction: row-reverse;
}


.text--center {
  text-align: center;
}

.text--right {
  text-align: right;
}
.text--float_right{
  float: right;
}
.text--left {
  text-align: left;
}
.generic_text--padd{
  padding:35px;
}
.generic_text__number {
  font-family: 'Circular Std';
  font-style: normal;
  font-weight: 900;
  font-size: 200px;
  line-height: initial;
  text-align: left;
  letter-spacing: -0.03em;
  color: #F7F0FF;
}

.generic_text__title_full {
  font-family: 'Circular Std';
  font-style: normal;
  font-weight: 900;
  font-size: 50px;
  line-height: initial;
  letter-spacing: 0.04em;
}

.generic_text__title_full--white {
  color: #FFFFFF;
}

.generic_text__title_mid,.generic_text__title_mid h2 {
  font-family: 'Circular Std';
  font-style: normal;
  font-weight: 900;
  font-size: 35px;
  line-height: initial;
}

.generic_text__title_mind--mtop {
  margin-top: -12%;
}

.generic_text__title_mind--pdleft {
  padding-left: 55px;
}

.generic_text__title_mid--default,.generic_text__title_mid--default h2 {
  color: #5D378D;
}
.generic_text__title_mid--white,.generic_text__title_mid--white h2 {
  color: #fff;
}

.generic_text__title_child, .generic_text__title_child h2 {
  font-family: 'Circular Std';
  font-style: normal;
  font-weight: 900;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.generic_text__title_child--default,.generic_text__title_child--default h2 {
  color: #5D378D;
}

.generic_text__description,.generic_text__description p {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.04em;
}

.generic_text__description--default {
  color: #58506B;
}

.generic_text__description--white {
  color: #FFFFFF;
}

.generic_text__cta{
  padding-top:15px;
  padding-bottom:15px;
}
.number__title {
  padding-top: 50px;
  padding-bottom: 50px;
}

.block--padding {
  padding: 60px 15px 60px 60px;
}

.block--padding .generic_text__title_child {
  margin-bottom: 25px;
}

.block_image--content_box {
  background: #393089;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 93px;
}
.block_image{
  height: 100%;
  display: flex;
}
.block_image img {
  display: block;
  height: auto;
  width: auto;
  margin: auto;
}


.generic_text__testimonial_text__comillas{
  font-family: 'Circular Std';
  font-style: normal;
  font-weight: 900;
  font-size: 100px;
  color: #B5B4B4;
  line-height: initial;
  text-align:left;
}

.generic_text__testimonial_text,.generic_text__testimonial_text p{
  font-family: 'Circular Std';
  font-style: normal;
  font-weight: 900;
  font-size: 45px;
  text-align: center;
  color: #B5B4B4;
  line-height: initial;
}

.generic_text__testimonial_text{
  margin-bottom: 50px;
}



.link_all_post__generic_buttom{
  width: 230px;
  margin: -75px 0 0 auto;
}
.link_all_post__generic_buttom a{
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 95%;
  /* or 11px */
  text-align: right;
  letter-spacing: 0.135em;
  text-transform: uppercase;
  color: #5D378D;
  text-decoration: none;
}

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

  .block_image--content_box{
    padding: 30px;
  }
  .block--padding{
    padding: 25px 15px 25px 15px;
  }
  .block--padding_only_movil{
    padding: 25px 15px 25px 15px;
  }
  .number__title{
    padding-left:15px;
    padding-right:15px;
  }

  .generic_text__number{
    font-size: 100px;
  }
  .generic_text__title_full{
    font-size: 35px;
  }
  .generic_text__title_mid, .generic_text__title_mid h2{
    font-size: 25px;
  }

  .generic_text__description, .generic_text__description p{
    font-size: 14px;
  }

  .generic_text__testimonial_text__comillas{
    font-size: 50px;
  }
  .generic_text__testimonial_text, .generic_text__testimonial_text p{
    font-size: 25px;
  }


  .link_all_post__generic_buttom {
    width: auto;
    margin: 0 15px;
    text-align: left;
  }
}
/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/

/* Responsive grid */

.row-fluid {
  width: 100%;
}

.row-fluid:before, .row-fluid:after {
  display: table;
  content: '';
}

.row-fluid:after {
  clear: both;
}

.row-fluid [class*='span'] {
  display: block;
  float: left;
  width: 100%;
  min-height: 1px;
  margin-left: 2.127659574%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.row-fluid [class*='span']:first-child {
  margin-left: 0;
}

.row-fluid .span12 {
  width: 99.99999998999999%;
}

.row-fluid .span11 {
  width: 91.489361693%;
}

.row-fluid .span10 {
  width: 82.97872339599999%;
}

.row-fluid .span9 {
  width: 74.468085099%;
}

.row-fluid .span8 {
  width: 65.95744680199999%;
}

.row-fluid .span7 {
  width: 57.446808505%;
}

.row-fluid .span6 {
  width: 48.93617020799999%;
}

.row-fluid .span5 {
  width: 40.425531911%;
}

.row-fluid .span4 {
  width: 31.914893614%;
}

.row-fluid .span3 {
  width: 23.404255317%;
}

.row-fluid .span2 {
  width: 14.89361702%;
}

.row-fluid .span1 {
  width: 6.382978723%;
}

.container-fluid:before, .container-fluid:after {
  display: table;
  content: '';
}

.container-fluid:after {
  clear: both;
}

@media (max-width: 767px) {
  .row-fluid {
    width: 100%;
  }

  .row-fluid [class*='span'] {
    display: block;
    float: none;
    width: auto;
    margin-left: 0;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {
  .row-fluid {
    width: 100%;
  }

  .row-fluid:before, .row-fluid:after {
    display: table;
    content: '';
  }

  .row-fluid:after {
    clear: both;
  }

  .row-fluid [class*='span'] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    margin-left: 2.762430939%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }

  .row-fluid [class*='span']:first-child {
    margin-left: 0;
  }

  .row-fluid .span12 {
    width: 99.999999993%;
  }

  .row-fluid .span11 {
    width: 91.436464082%;
  }

  .row-fluid .span10 {
    width: 82.87292817100001%;
  }

  .row-fluid .span9 {
    width: 74.30939226%;
  }

  .row-fluid .span8 {
    width: 65.74585634900001%;
  }

  .row-fluid .span7 {
    width: 57.182320438000005%;
  }

  .row-fluid .span6 {
    width: 48.618784527%;
  }

  .row-fluid .span5 {
    width: 40.055248616%;
  }

  .row-fluid .span4 {
    width: 31.491712705%;
  }

  .row-fluid .span3 {
    width: 22.928176794%;
  }

  .row-fluid .span2 {
    width: 14.364640883%;
  }

  .row-fluid .span1 {
    width: 5.801104972%;
  }
}

@media (min-width: 1280px) {
  .row-fluid {
    width: 100%;
  }

  .row-fluid:before, .row-fluid:after {
    display: table;
    content: '';
  }

  .row-fluid:after {
    clear: both;
  }

  .row-fluid [class*='span'] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    margin-left: 2.564102564%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }

  .row-fluid [class*='span']:first-child {
    margin-left: 0;
  }

  .row-fluid .span12 {
    width: 100%;
  }

  .row-fluid .span11 {
    width: 91.45299145300001%;
  }

  .row-fluid .span10 {
    width: 82.905982906%;
  }

  .row-fluid .span9 {
    width: 74.358974359%;
  }

  .row-fluid .span8 {
    width: 65.81196581200001%;
  }

  .row-fluid .span7 {
    width: 57.264957265%;
  }

  .row-fluid .span6 {
    width: 48.717948718%;
  }

  .row-fluid .span5 {
    width: 40.170940171000005%;
  }

  .row-fluid .span4 {
    width: 31.623931624%;
  }

  .row-fluid .span3 {
    width: 23.076923077%;
  }

  .row-fluid .span2 {
    width: 14.529914530000001%;
  }

  .row-fluid .span1 {
    width: 5.982905983%;
  }
}

/* Clearfix */

.clearfix:before, .clearfix:after {
  display: table;
  content: '';
}

.clearfix:after {
  clear: both;
}

/* Visibilty classes */

.hide {
  display: none;
}

.show {
  display: block;
}

.invisible {
  visibility: hidden;
}

.hidden {
  display: none;
  visibility: hidden;
}

/* Responsive visibilty classes */

.visible-phone {
  display: none !important;
}

.visible-tablet {
  display: none !important;
}

.hidden-desktop {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-phone {
    display: inherit !important;
  }

  .hidden-phone {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {
  .visible-tablet {
    display: inherit !important;
  }

  .hidden-tablet {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important;
  }
}
.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 {
  line-height: 1.4;
  word-break: break-word;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  word-break: break-all;
}

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

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

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

ul.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 {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

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

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}

.cta_dark p{
  font-family: 'Circular Std';
  font-style: normal;
  font-weight: 900;
  font-size: 18px;
  line-height: 23px;
  text-decoration: none;
  position: relative;
  z-index: 1;
  display: block;
  max-width: 100%;
  width: max-content;
  padding-left: 10px;
}

.cta_portfolio:hover p{
  font-family: 'Circular Std';
  font-style: normal;
  font-weight: 900;
  font-size: 18px;
  line-height: 23px;
}
/* Fields */

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

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

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;
}

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

/* 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 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: #EF6B51;
}

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

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* 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;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}
/* 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;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* Header DND sections */

.header .dnd-section {
  padding: 0;
}

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
}

.header__row-1 {
  padding-top: 1rem;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

.header__logo--main {
  padding-top: 1rem;
}

/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}

.header__search .hs-search-field__input {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
  background-position: center right 15px;
  background-repeat: no-repeat;
  height: 45px;
  padding: 0 0.7rem;
}

.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

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

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }
}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}
/* 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%;
}

/* 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;
}

.flex-center {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

@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;
  }
}

/* 3th party*/
/* @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    */
/*****************************************/

@font-face {
    font-family: 'Circular Std';
    src: url('https://5407411.fs1.hubspotusercontent-na1.net/hubfs/5407411/raw_assets/public/Market_Design_Co-February_2022/assets/custom-fonts/CircularStd-Black.woff2') format('woff2'),
        url('https://5407411.fs1.hubspotusercontent-na1.net/hubfs/5407411/raw_assets/public/Market_Design_Co-February_2022/assets/custom-fonts/CircularStd-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Circular Std';
    src: url('https://5407411.fs1.hubspotusercontent-na1.net/hubfs/5407411/raw_assets/public/Market_Design_Co-February_2022/assets/custom-fonts/CircularStd-BlackItalic.woff2') format('woff2'),
        url('https://5407411.fs1.hubspotusercontent-na1.net/hubfs/5407411/raw_assets/public/Market_Design_Co-February_2022/assets/custom-fonts/CircularStd-BlackItalic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}
/* @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    */
/*****************************************/
.container {
  max-width: 1140px!important;
  margin: auto;
  width: 100%;
}
.footer{
  padding: 0 30px;
}

@media (max-width: 480px){
  .is-reverse{
    display: flex;
    flex-direction: column-reverse;
  }
}
.cta_text{
  display: flex;
}
.services__slider_items:hover .cta_text{
  color: #E82F85;
}
.cta_text2{
  font-family: 'Circular Std';
  font-style: normal;
  font-weight: 900;
  font-size: 18px;
  line-height: 23px;
  /* identical to box height */
  color: #fff;
  text-decoration: none;
  position: relative;
  z-index: 1;
  padding: 0 5px 0 10px;
  display: flex;
  width: 280px;
}
.cta_text2 img{
  margin-left: 10px;
}
.cta_text2::after{
  content: '';
  width: 100%;
  height: 35%;
  background: #393089;
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: -1;
}
.cta_text2:hover{
  font-family: 'Circular Std';
  font-style: normal;
  font-weight: 900;
  font-size: 18px;
  line-height: 23px;
  color: #E82F85;
}
/* cta block*/
.cta_text_block{
  font-family: 'Circular Std';
  font-style: normal;
  font-weight: 900;
  font-size: 18px;
  line-height: 23px;
  /* identical to box height */
  color: #fff;
  text-decoration: none;
  position: relative;
  z-index: 1;
  padding: 0 5px 0 10px;
  display: flex;
  width: 180px;
}
.cta_text_block img{
  margin-left: 10px;
}
.cta_text_block::after{
  content: '';
  width: 100%;
  height: 35%;
  background: #393089;
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: -1;
}
.cta_text_block:hover{
  font-family: 'Circular Std';
  font-style: normal;
  font-weight: 900;
  font-size: 18px;
  line-height: 23px;
  color: #E82F85;
}
.block_image img{
width:100%!important;
}
/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

/*blog post*/
.banner_blog_post{
  min-height: 40px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position:relative;
}
.banner_blog_post_overlay {
  background: linear-gradient(147.22deg, rgba(232, 47, 133, 0.8) 0%, rgba(57, 48, 137, 0.8) 103.59%);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.banner_blog_post_content{
  padding: 160px 0 90px;
  position: relative;
  z-index: 2;
}
.banner_blog_post_content__breadcrum{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.banner_blog_post_content__breadcrum a{
  margin-right: 15px;
  font-family: 'Circular Std';
  font-style: normal;
  font-weight: 900;
  font-size: 12px;
  line-height: 130%;
  /* identical to box height, or 16px */
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.5);
}
.banner_blog_post_content__breadcrum a:hover{
  font-family: 'Circular Std';
  font-style: normal;
  font-weight: 900;
  font-size: 12px;
  line-height: 130%;
  /* identical to box height, or 16px */
  letter-spacing: -0.03em;
  color: #FFFFFF;
}
.active_breadcrum span{
  font-family: 'Circular Std';
  font-style: normal;
  font-weight: 900;
  font-size: 12px;
  line-height: 130%;
  /* identical to box height, or 16px */
  letter-spacing: -0.03em;
  color: #FFFFFF;
}
.banner_blog_post_content__breadcrum_icon{
  margin-top: -10px;
  margin-right: 15px;
}
.banner_blog_post_content_tags{
  margin-top: 25px;
}
.banner_blog_post_content_tags_items{

}
.banner_blog_post_content_tags_items_badge{
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid #FFFFFF;
  box-sizing: border-box;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  margin: 10px 5px 0 0;
}
.banner_blog_post_content_tags_items_badge a{
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 145.5%;
  /* identical to box height, or 15px */
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FFFFFF;
} 
.banner_blog_post_content__title h1 {
  margin-top: 15px;
  margin-bottom: 0px;
}
.banner_blog_post_content__title h1 span{
  font-family: 'Circular Std';
  font-style: normal;
  font-weight: 900;
  font-size: 50px;
  line-height: 55px;
  /* identical to box height, or 103px */
  color: #FFFFFF;
  margin-bottom: 0px;
}
.divider_banner{
  width: 80%;
  position: absolute;
  right: 0;
  z-index: 6;
  bottom: 130px;
}
.banner_blog_post__date{
  position: relative;
  z-index: 6;
}
.banner_blog_post__date time{
  font-family: 'Circular Std';
  font-style: normal;
  font-weight: 900;
  font-size: 20px;
  line-height: 130%;
  /* identical to box height, or 26px */
  letter-spacing: -0.03em;
  color: #FFFFFF;
}
.banner_blog_post__date{
  display: flex;
  align-items: center;
}
.banner_blog_post__date svg{
  margin-right: 15px;
}
.date_post p{
  font-family: 'Circular Std';
  font-style: normal;
  font-weight: 900;
  font-size: 20px;
  line-height: 130%;
  /* identical to box height, or 26px */
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 0;
}
.banner_blog_post__read{
  display: flex;
  align-items: center;
  position: relative;
  z-index: 6;
  margin-left: 50px;
}
.banner_blog_post__read svg{
  margin-right: 15px;
}
.min_read p{
  font-family: 'Circular Std';
  font-style: normal;
  font-weight: 900;
  font-size: 20px;
  line-height: 130%;
  /* identical to box height, or 26px */
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 0;
}
.content_of_data{
  display: flex;
  align-items: center;
  padding-bottom: 60px;
}

/*icons*/
/*icons*/
.icons__blog{
}
.icons__blog a{
  text-align: right;
  display: block;
  padding: 15px;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
}
.icons__blog a:hover{
  color: #E32B5F;
}
.rose{
  color: #E32B5F;
  font-weight: 700;
}
.orange{
  color: #F17D47;
  font-weight: 700;
}
.bluelight{
  color: #258DC7;
  font-weight: 700;
}
.description{
  color: #fff;
  text-align: center;
  line-height: 26px;
}
.content_of_data_author{
  position:relative;
  z-index: 6;
}
.content_of_data_author p{
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 145.5%;
  /* or 25px */
  letter-spacing: 0.04em;
  color: #FFFFFF;
  position:relative;
  z-index: 6;
  margin-bottom: 10px;
}
@media (max-width: 768px){
  .content__banner__blog{
    padding: 160px 0px 40px
  }
  .content__banner__blog h1{
    max-width: 80%;
    font-size: 35px;
    line-height: 45px;
  }
  .clip__path__banner{
    background: #fff;
  }
}

ul.resours{
  list-style:none;
  margin:0px;
  padding:0px;
  position: absolute;
  z-index: 9;
  top: 140px;
  right: 100px;
  width: 290px;
}
ul.resours li{
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width:100%;
}

a.learn-more {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}

a.learn-more {
  width: 13rem;
  height: 42px;
  right: 0px;
  margin: 15px;
}

a.learn-more .circle {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 6px;
  float: right;
  background: #ffffff7a;
}

a.learn-more .circle .icon {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}

a.learn-more .circle img {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  background: none;
  position: absolute;
  top: -4px;
  bottom: 4px;
  left: -4px;
  display: flex;
  align-items: center;
  padding: 15px;
}

a.learn-more .button-text {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 4px;
  /*left: 80px;*/
  right: 0;
  bottom: 0;
  padding: 0.25rem 0;
  margin: 0px 50px 0 0;
  color: transparent;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
  font-family: Circular Std;
  font-style: normal;
  font-weight: 900;
  font-size: 20px;
  line-height: 30px;
}

a.learn-more:hover .circle {
  width: 100%;
  background: #ffffff78;
}

a.learn-more:hover .circle .icon.arrow {
  background: #fff;
  -webkit-transform: translate(1rem, 0);
  transform: translate(1rem, 0);
}

a.learn-more:hover .button-text {
  color: #fff;
}
@media only screen and (max-width: 992px){
  .resours-descktop{
    display:none;
  }
  .resours-movil{
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 992px){
  .resours-movil{
    display:none;
  }
}
.scroll_down img{
  position: absolute;
  right: 90px;
  bottom: 50px;
}
@-webkit-keyframes swing {
  15% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  30% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  50% {
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
  }
  65% {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
  }
  80% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes swing {
  15% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  30% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  50% {
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
  }
  65% {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
  }
  80% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.swing:hover
{
  -webkit-animation: swing 1s ease;
  animation: swing 1s ease;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

@media (max-width: 460px){
  .content_banner h2 {
    font-family: Circular Std;
    font-style: normal;
    font-weight: 900;
    font-size: 60px;
    line-height: 126px;
    margin-bottom: 0px;
    color: #fff;
    text-align: right;
    padding-right: 10px;
    position: relative;
    z-index: 2;
  }
  .content_banner {
    padding: 170px 0;
  }
  .content_banner h1 {
    font-family: Circular Std;
    font-style: normal;
    font-weight: 900;
    font-size: 60px;
    line-height: 60px;
    color: #e82f85;
    margin-top: -5px;
    opacity: .4;
  }
  .icons__blog {
    position: inherit;
    top: auto;
    left: auto;
    z-index: 50;
  }
  .resours-movil {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
  }
  .divider {
    position: absolute;
    right: 0;
    margin-top: -50px;
    max-width: 290px;
  }  
  .divider img{
    max-width: 350px;
    width: 100%;
  }
  .content_banner {
    padding: 0px 0;
  }
  .scroll_down img {
    position: absolute;
    right: 30px;
    bottom: 160px;
  }
  .icons__blog a {
    text-align: right;
    display: block;
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    background: #ffffff6b;
    border-radius: 5px;
    margin: 10px;
  }
}

.internal_banner_content_blog h1{
  font-family: Circular Std;
  font-style: normal;
  font-weight: 900;
  font-size: 100px;
  line-height: 102.5%;
  /* identical to box height, or 103px */
  color: #FFFFFF;
  margin-bottom: 0px;
  width: 700px;
  text-align: right;
  margin-top: 90px;
}
.transparent_title h2{
  font-family: Circular Std;
  font-style: normal;
  font-weight: 900;
  font-size: 210px;
  line-height: 220px;
  background: -webkit-linear-gradient(357.23deg, rgba(232, 47, 133, 0.5) -60.54%, rgba(57, 48, 137, 0.5) 141.82%, rgba(93, 55, 141, 0.5) 279.82%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.4;
  text-align: right;
}
.blog_banner_tags{
  background: rgba(255, 255, 255, 0.38);
  /* Card effect 1 */
  backdrop-filter: blur(51px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 4px;
  border: 1px solid #ffffff75;
  padding: 30px 20px;
  margin: 10px;
}
.blog_banner_tags:hover{
  transform: translateY(-10px);
  transition: .3s;
}
.blog-post__body p{
  font-family: 'Lato';
  font-style: normal;
  font-size: 16px;
  line-height: 145.5%;
  /* or 23px */
  letter-spacing: 0.04em;
  color: #58506B;
  margin-bottom: 20px;
}
.blog-post__body a span{
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 145.5%;
  /* or 23px */
  letter-spacing: 0.04em;
  color: #5D378D!important;
  text-decoration: none!important;
}
.blog-post__body p a{
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 145.5%;
  /* or 23px */
  letter-spacing: 0.04em;
  color: #e82f85;
  text-decoration: none;
}
.blog-post__body ul li a{
  color: #e82f85;
}
.blog-post__body h1{
  font-family: 'Circular Std';
  font-style: normal;
  font-weight: 900;
  font-size: 40px!important;
  line-height: 130%;
  /* or 45px */
  letter-spacing: 0.02em;
  color: #4E4B6C;
  margin-bottom: 25px;
}
.blog-post__body h2{
  font-family: 'Circular Std';
  font-style: normal;
  font-weight: 900;
  font-size: 35px;
  line-height: 130%;
  /* or 45px */
  letter-spacing: 0.02em;
  color: #4E4B6C;
  margin-top: 35px;
  margin-bottom: 25px;
}
.blog-post__body h3{
  font-family: 'Circular Std';
  font-style: normal;
  font-weight: 900;
  font-size: 24px!important;
  line-height: 130%;
  /* identical to box height, or 39px */
  letter-spacing: 0.02em;
  color: #85bc25!important;
  margin-top: 35px;
  margin-bottom: 10px;
}
.blog-post__body h4{
  font-family: 'Circular Std';
  font-style: normal;
  font-weight: 900;
  font-size: 24px!important;
  line-height: 130%;
  /* or 45px */
  letter-spacing: 0.02em;
  color: #4E4B6C;
  margin-top: 35px;
  margin-bottom: 25px;
}
.blog-post__body h5{
  font-family: 'Circular Std';
  font-style: normal;
  font-weight: 900;
  font-size: 18px!important;
  line-height: 130%;
  /* or 23px */
  letter-spacing: 0.02em;
  color: #85bc25!important;
  margin-top: 35px;
}
.blog-post__body h6{
  font-family: 'Circular Std';
  font-style: normal;
  font-weight: 900;
  font-size: 16px!important;
  line-height: 130%;
  /* or 23px */
  letter-spacing: 0.02em;
  color: #5D378D;
  margin-top: 35px;
}
.blog-post__body blockquote{
  background: #94CB34;
  padding: 40px;
  border: 0px;
  position: relative;
}
.blog-post__body blockquote p{
  font-family: 'Lato';
  font-style: normal;
  font-weight: 900;
  font-size: 18px;
  line-height: 130%;
  /* or 23px */
  letter-spacing: 0.02em;
  color: #FFFFFF;
  margin-top: 50px;
}
.blog-post__body blockquote p::before {
  content: '';
  background: url(https://5407411.fs1.hubspotusercontent-na1.net/hubfs/5407411/signo.svg);
  position: absolute;
  top: 40px;
  left: 40px;
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
}
.blog-post__body ul li{
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 145.5%;
  /* or 23px */
  letter-spacing: 0.04em;
  color: #58506B;
  margin-bottom: 15px;
}
.blog-post__body ol li{
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 145.5%;
  /* or 23px */
  letter-spacing: 0.04em;
  color: #58506B;
  margin-bottom: 15px;
}
.blog_banner_tags_content h3{
  font-family: Circular Std;
  font-style: normal;
  font-weight: 900;
  font-size: 20px;
  line-height: 130%;
  /* identical to box height, or 26px */
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 0px;
  margin-top: 10px;
}
.blog_banner_tags_content p{
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 145.5%;
  /* or 20px */
  letter-spacing: 0.04em;
  color: #FFFFFF;
  margin-bottom: 0px;
  margin-top: 10px;
}
.tag_link{
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
.transparent_title{
  margin-top: -100px;
}
.divider_our_blog{
  position: absolute;
  width: 60%;
  margin-top: -40px;
  right: 0;
  z-index: 9;
}
.internal_banner_content_image {
  margin: 10px;
  position: absolute;
  top: 90px;
  width: 350px;
}
.internal_banner_content_image img{
  width: 100%;
}
.internal_banner_content_description p {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  color: #FFFFFF;
  margin-bottom: 0px;
  margin-top: 40px;
  position: relative;
  z-index: 7;
}
.internal_banner_content_divider {
  position: absolute;
  bottom: 300px;
  width: 50%;
  left: 0;
}
.internal_banner_content_divider hr{
  border-bottom: 1px solid #FFFFFF;
}
.internal_banner_content_cta{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 70px;
}
.cta_two{
  margin-left: 25px;
}
.internal_banner_content_overview h2{
  font-family: Circular Std;
  font-style: normal;
  font-weight: 900;
  line-height: 208px;
  font-size: 208px;
  background: -webkit-linear-gradient(359.88deg, rgba(57, 48, 137, 0.3) -33.78%, rgba(232, 47, 133, 0.3) 88.15%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0px;
  position: absolute;
  bottom: 35px;
  left: 20px;
}
.internal_banner_content_image {
  margin: 10px;
  position: absolute;
  top: 90px;
  width: 350px;
}
.related_post{
  min-height: 200px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.blog-related-posts__content h3 a{
  font-family: 'Circular Std';
  font-style: normal;
  font-weight: 900;
  font-size: 30px;
  line-height: 40px;
  /* identical to box height, or 52px */
  color: #5D378D;
}
.blog-related-posts__content h3 a:hover{
  font-family: 'Circular Std';
  font-style: normal;
  font-weight: 900;
  font-size: 30px;
  line-height: 40px;
  /* identical to box height, or 52px */
  color: #CD2895;
}
.banner_blog_post_content_tags_items_badge_dark{
  background: rgba(255,255,255,0.25);
  border: 1px solid #AFACCE;
  box-sizing: border-box;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  margin: 10px 5px 0 0;
  text-align: center;
}
.banner_blog_post_content_tags_items_badge_dark a {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 145.5%;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #58506B;
}
.blog-related-posts{
  background: #fff!important;
}
.read_more_related{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 30px;
}
.read_more_related a{
  font-family: Circular Std;
  font-style: normal;
  font-weight: 900;
  font-size: 18px;
  line-height: 23px;
  color: #4e4b6c;
  position: relative;
  z-index: 2;
}
.read_more_related a:after{
  content: '';
  width: 100%;
  height: 35%;
  background: #94cb34;
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: -1;
}
.title_related_post h2{
  font-family: 'Circular Std';
  font-style: normal;
  font-weight: 900;
  font-size: 144px;
  line-height: 95%;
  /* or 137px */
  letter-spacing: -0.02em;
  color: #F7F0FF;
  margin-bottom: 0px;
}
.blog-related-posts{
  padding: 20px 0px 80px!important;
}
.title_related_post{
  width: 820px;
}
.title_related_post_button{
  text-align:right;
}
.shared_title h2{
  font-family: 'Circular Std';
  font-style: normal;
  font-weight: 900;
  font-size: 35px;
  line-height: 130%;
  /* or 45px */
  letter-spacing: 0.02em;
  color: #4E4B6C;
}

@media (min-width: 1920px){
  .internal_banner_content_overview h2 {
    font-family: Circular Std;
    font-style: normal;
    font-weight: 900;
    line-height: 248px;
    font-size: 248px;
    background: -webkit-linear-gradient(359.88deg, rgba(57, 48, 137, 0.3) -33.78%, rgba(232, 47, 133, 0.3) 88.15%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0px;
    position: absolute;
    bottom: 35px;
    left: 20px;
  }
  .internal_banner_content_image {
    margin: 10px;
    position: absolute;
    top: 130px;
    width: 370px;
  }
}
.container_tags{
  margin-top: -70px;
}
@media (min-width: 1500px){
  .internal_banner_content_divider {
    position: absolute;
    bottom: 305px;
    width: 58%;
    left: 0;
  }
}
@media (min-width: 481px){
  .internal_banner_content_image_content{
    display: none!important;
  }
  .divider_mobile{
    display: none!important;
  }
  .icons_mobile{
    display: none!important;
  }
  .tag_mobile{
    display: none!important;
  }
}
@media (max-width: 480px){
  .internal_banner_content h1 {
    font-family: Circular Std;
    font-style: normal;
    font-weight: 900;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 0px;
    margin-top: 30px;
    padding: 0 20px;
  }
  .internal_banner_content_image{
    display: none!important;
  }
  .internal_banner_content_image_content img{
    width: 100%;
    margin-top: 30px;
    padding: 20px;
  }
  .internal_banner_content_cta, .internal_banner_content_description{
    padding: 0 20px;
  }
  .internal_banner_content_divider {
    position: absolute;
    top: 28%;
    width: 85%;
    left: 0;
  }
  .internal_banner_content_divider{
    display: none;
  } 
  .divider_mobile{
    width: 80%;
    margin: 0 auto;
  }
  .icons_mobile{
    text-align: center;
    margin: 0 auto;
    margin-top: 205px;
  }
  .icons_desktop{
    display: none!important;
  }
  .internal_banner_content_overview h2{
    display: none;
  }
  .internal_banner_content_blog h1{
    font-family: Circular Std;
    font-style: normal;
    font-weight: 900;
    font-size: 40px;
    line-height: 102.5%;
    color: #FFFFFF;
    margin-bottom: 0px;
    width: auto;
    text-align: center;
    margin-top: 90px;
    padding: 0 20px;
    position: relative;
    z-index: 6;
  }
  .transparent_title h2 {
    font-family: Circular Std;
    font-style: normal;
    font-weight: 900;
    font-size: 155px;
    line-height: 160px;
    background: -webkit-linear-gradient(357.23deg, rgba(232, 47, 133, 0.5) -60.54%, rgba(57, 48, 137, 0.5) 141.82%, rgba(93, 55, 141, 0.5) 279.82%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 1;
    text-align: left;
    position: absolute;
    top: 155px;
    z-index: 0;
  }  
  .container_tags{
    margin-top: 170px;
  }
  .tag_desk{
    display: none!important;
  }
  .blog_banner_tags_content_mobile{
    background: rgba(255, 255, 255, 0.8);
    /* Card effect 1 */
    backdrop-filter: blur(51px);
    /* Note: backdrop-filter has minimal browser support */
    border-radius: 4px;
    padding: 10px 15px;
    margin: 10px 20px;
  }
  .blog_banner_tags_content_mobile{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .blog_banner_tags_icon_mobile{
    width: 20%;
  }
  .blog_banner_tags_title_mobile{
    width: 80%;
  }
  .blog_banner_tags_title_mobile h3{
    font-family: Circular Std;
    font-style: normal;
    font-weight: 900;
    font-size: 18px;
    line-height: 130%;
    /* or 23px */
    letter-spacing: -0.03em;
    color: #5D378D;
    margin-bottom: 0px;
  }
  .icons__blog{
    position: relative;
    z-index: 6;
  }
  .icons_mobile {
    text-align: center;
    margin: 0 auto;
    margin-top: 160px;
  }
  .banner_blog_post_content {
    padding: 20px 20px 60px;
  }
  .banner_blog_post_content__breadcrum{
    display: block;
  }
  .banner_blog_post_content__breadcrum_icon {
    margin-top: -20px;
  }
  .banner_blog_post_content__title h1{
    font-size: 30px;
    line-height: 38px;
    padding-top: 30px;
  }
  .banner_blog_post_content__title h1 span{
    font-family: 'Circular Std';
    font-style: normal;
    font-weight: 900;
    font-size: 30px;
    line-height: 38px;
    /* identical to box height, or 41px */
    color: #FFFFFF;
  }
  .content_of_data{
    display: block;
    padding: 0 20px 20px;
  }
  .banner_blog_post__read{
    margin-top: 10px;
    margin-left: 0px;
    padding-bottom: 40px;
  }
  .divider_banner {
    width: 80%;
    position: absolute;
    right: 0;
    z-index: 6;
    bottom: 145px;
  }
}
/* @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    */
/*****************************************/


.column {
  display: block;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
  padding: 0.75rem;
}

.columns.is-mobile > .column.is-narrow {
  flex: none;
}

.columns.is-mobile > .column.is-full {
  flex: none;
  width: 100%;
}

.columns.is-mobile > .column.is-three-quarters {
  flex: none;
  width: 75%;
}

.columns.is-mobile > .column.is-two-thirds {
  flex: none;
  width: 66.6666%;
}

.columns.is-mobile > .column.is-half {
  flex: none;
  width: 50%;
}

.columns.is-mobile > .column.is-one-third {
  flex: none;
  width: 33.3333%;
}

.columns.is-mobile > .column.is-one-quarter {
  flex: none;
  width: 25%;
}

.columns.is-mobile > .column.is-one-fifth {
  flex: none;
  width: 20%;
}

.columns.is-mobile > .column.is-two-fifths {
  flex: none;
  width: 40%;
}

.columns.is-mobile > .column.is-three-fifths {
  flex: none;
  width: 60%;
}

.columns.is-mobile > .column.is-four-fifths {
  flex: none;
  width: 80%;
}

.columns.is-mobile > .column.is-offset-three-quarters {
  margin-left: 75%;
}

.columns.is-mobile > .column.is-offset-two-thirds {
  margin-left: 66.6666%;
}

.columns.is-mobile > .column.is-offset-half {
  margin-left: 50%;
}

.columns.is-mobile > .column.is-offset-one-third {
  margin-left: 33.3333%;
}

.columns.is-mobile > .column.is-offset-one-quarter {
  margin-left: 25%;
}

.columns.is-mobile > .column.is-offset-one-fifth {
  margin-left: 20%;
}

.columns.is-mobile > .column.is-offset-two-fifths {
  margin-left: 40%;
}

.columns.is-mobile > .column.is-offset-three-fifths {
  margin-left: 60%;
}

.columns.is-mobile > .column.is-offset-four-fifths {
  margin-left: 80%;
}

.columns.is-mobile > .column.is-0 {
  flex: none;
  width: 0%;
}

.columns.is-mobile > .column.is-offset-0 {
  margin-left: 0%;
}

.columns.is-mobile > .column.is-1 {
  flex: none;
  width: 8.3333333333%;
}

.columns.is-mobile > .column.is-offset-1 {
  margin-left: 8.3333333333%;
}

.columns.is-mobile > .column.is-2 {
  flex: none;
  width: 16.6666666667%;
}

.columns.is-mobile > .column.is-offset-2 {
  margin-left: 16.6666666667%;
}

.columns.is-mobile > .column.is-3 {
  flex: none;
  width: 25%;
}

.columns.is-mobile > .column.is-offset-3 {
  margin-left: 25%;
}

.columns.is-mobile > .column.is-4 {
  flex: none;
  width: 33.3333333333%;
}

.columns.is-mobile > .column.is-offset-4 {
  margin-left: 33.3333333333%;
}

.columns.is-mobile > .column.is-5 {
  flex: none;
  width: 41.6666666667%;
}

.columns.is-mobile > .column.is-offset-5 {
  margin-left: 41.6666666667%;
}

.columns.is-mobile > .column.is-6 {
  flex: none;
  width: 50%;
}

.columns.is-mobile > .column.is-offset-6 {
  margin-left: 50%;
}

.columns.is-mobile > .column.is-7 {
  flex: none;
  width: 58.3333333333%;
}

.columns.is-mobile > .column.is-offset-7 {
  margin-left: 58.3333333333%;
}

.columns.is-mobile > .column.is-8 {
  flex: none;
  width: 66.6666666667%;
}

.columns.is-mobile > .column.is-offset-8 {
  margin-left: 66.6666666667%;
}

.columns.is-mobile > .column.is-9 {
  flex: none;
  width: 75%;
}

.columns.is-mobile > .column.is-offset-9 {
  margin-left: 75%;
}

.columns.is-mobile > .column.is-10 {
  flex: none;
  width: 83.3333333333%;
}

.columns.is-mobile > .column.is-offset-10 {
  margin-left: 83.3333333333%;
}

.columns.is-mobile > .column.is-11 {
  flex: none;
  width: 91.6666666667%;
}

.columns.is-mobile > .column.is-offset-11 {
  margin-left: 91.6666666667%;
}

.columns.is-mobile > .column.is-12 {
  flex: none;
  width: 100%;
}

.columns.is-mobile > .column.is-offset-12 {
  margin-left: 100%;
}

@media screen and (max-width: 768px) {
  .column.is-narrow-mobile {
    flex: none;
  }

  .column.is-full-mobile {
    flex: none;
    width: 100%;
  }

  .column.is-three-quarters-mobile {
    flex: none;
    width: 75%;
  }

  .column.is-two-thirds-mobile {
    flex: none;
    width: 66.6666%;
  }

  .column.is-half-mobile {
    flex: none;
    width: 50%;
  }

  .column.is-one-third-mobile {
    flex: none;
    width: 33.3333%;
  }

  .column.is-one-quarter-mobile {
    flex: none;
    width: 25%;
  }

  .column.is-one-fifth-mobile {
    flex: none;
    width: 20%;
  }

  .column.is-two-fifths-mobile {
    flex: none;
    width: 40%;
  }

  .column.is-three-fifths-mobile {
    flex: none;
    width: 60%;
  }

  .column.is-four-fifths-mobile {
    flex: none;
    width: 80%;
  }

  .column.is-offset-three-quarters-mobile {
    margin-left: 75%;
  }

  .column.is-offset-two-thirds-mobile {
    margin-left: 66.6666%;
  }

  .column.is-offset-half-mobile {
    margin-left: 50%;
  }

  .column.is-offset-one-third-mobile {
    margin-left: 33.3333%;
  }

  .column.is-offset-one-quarter-mobile {
    margin-left: 25%;
  }

  .column.is-offset-one-fifth-mobile {
    margin-left: 20%;
  }

  .column.is-offset-two-fifths-mobile {
    margin-left: 40%;
  }

  .column.is-offset-three-fifths-mobile {
    margin-left: 60%;
  }

  .column.is-offset-four-fifths-mobile {
    margin-left: 80%;
  }

  .column.is-0-mobile {
    flex: none;
    width: 0%;
  }

  .column.is-offset-0-mobile {
    margin-left: 0%;
  }

  .column.is-1-mobile {
    flex: none;
    width: 8.3333333333%;
  }

  .column.is-offset-1-mobile {
    margin-left: 8.3333333333%;
  }

  .column.is-2-mobile {
    flex: none;
    width: 16.6666666667%;
  }

  .column.is-offset-2-mobile {
    margin-left: 16.6666666667%;
  }

  .column.is-3-mobile {
    flex: none;
    width: 25%;
  }

  .column.is-offset-3-mobile {
    margin-left: 25%;
  }

  .column.is-4-mobile {
    flex: none;
    width: 33.3333333333%;
  }

  .column.is-offset-4-mobile {
    margin-left: 33.3333333333%;
  }

  .column.is-5-mobile {
    flex: none;
    width: 41.6666666667%;
  }

  .column.is-offset-5-mobile {
    margin-left: 41.6666666667%;
  }

  .column.is-6-mobile {
    flex: none;
    width: 50%;
  }

  .column.is-offset-6-mobile {
    margin-left: 50%;
  }

  .column.is-7-mobile {
    flex: none;
    width: 58.3333333333%;
  }

  .column.is-offset-7-mobile {
    margin-left: 58.3333333333%;
  }

  .column.is-8-mobile {
    flex: none;
    width: 66.6666666667%;
  }

  .column.is-offset-8-mobile {
    margin-left: 66.6666666667%;
  }

  .column.is-9-mobile {
    flex: none;
    width: 75%;
  }

  .column.is-offset-9-mobile {
    margin-left: 75%;
  }

  .column.is-10-mobile {
    flex: none;
    width: 83.3333333333%;
  }

  .column.is-offset-10-mobile {
    margin-left: 83.3333333333%;
  }

  .column.is-11-mobile {
    flex: none;
    width: 91.6666666667%;
  }

  .column.is-offset-11-mobile {
    margin-left: 91.6666666667%;
  }

  .column.is-12-mobile {
    flex: none;
    width: 100%;
  }

  .column.is-offset-12-mobile {
    margin-left: 100%;
  }
}
@media screen and (min-width: 769px), print {
  .column.is-narrow, .column.is-narrow-tablet {
    flex: none;
  }

  .column.is-full, .column.is-full-tablet {
    flex: none;
    width: 100%;
  }

  .column.is-three-quarters, .column.is-three-quarters-tablet {
    flex: none;
    width: 75%;
  }

  .column.is-two-thirds, .column.is-two-thirds-tablet {
    flex: none;
    width: 66.6666%;
  }

  .column.is-half, .column.is-half-tablet {
    flex: none;
    width: 50%;
  }

  .column.is-one-third, .column.is-one-third-tablet {
    flex: none;
    width: 33.3333%;
  }

  .column.is-one-quarter, .column.is-one-quarter-tablet {
    flex: none;
    width: 25%;
  }

  .column.is-one-fifth, .column.is-one-fifth-tablet {
    flex: none;
    width: 20%;
  }

  .column.is-two-fifths, .column.is-two-fifths-tablet {
    flex: none;
    width: 40%;
  }

  .column.is-three-fifths, .column.is-three-fifths-tablet {
    flex: none;
    width: 60%;
  }

  .column.is-four-fifths, .column.is-four-fifths-tablet {
    flex: none;
    width: 80%;
  }

  .column.is-offset-three-quarters, .column.is-offset-three-quarters-tablet {
    margin-left: 75%;
  }

  .column.is-offset-two-thirds, .column.is-offset-two-thirds-tablet {
    margin-left: 66.6666%;
  }

  .column.is-offset-half, .column.is-offset-half-tablet {
    margin-left: 50%;
  }

  .column.is-offset-one-third, .column.is-offset-one-third-tablet {
    margin-left: 33.3333%;
  }

  .column.is-offset-one-quarter, .column.is-offset-one-quarter-tablet {
    margin-left: 25%;
  }

  .column.is-offset-one-fifth, .column.is-offset-one-fifth-tablet {
    margin-left: 20%;
  }

  .column.is-offset-two-fifths, .column.is-offset-two-fifths-tablet {
    margin-left: 40%;
  }

  .column.is-offset-three-fifths, .column.is-offset-three-fifths-tablet {
    margin-left: 60%;
  }

  .column.is-offset-four-fifths, .column.is-offset-four-fifths-tablet {
    margin-left: 80%;
  }

  .column.is-0, .column.is-0-tablet {
    flex: none;
    width: 0%;
  }

  .column.is-offset-0, .column.is-offset-0-tablet {
    margin-left: 0%;
  }

  .column.is-1, .column.is-1-tablet {
    flex: none;
    width: 8.3333333333%;
  }

  .column.is-offset-1, .column.is-offset-1-tablet {
    margin-left: 8.3333333333%;
  }

  .column.is-2, .column.is-2-tablet {
    flex: none;
    width: 16.6666666667%;
  }

  .column.is-offset-2, .column.is-offset-2-tablet {
    margin-left: 16.6666666667%;
  }

  .column.is-3, .column.is-3-tablet {
    flex: none;
    width: 25%;
  }

  .column.is-offset-3, .column.is-offset-3-tablet {
    margin-left: 25%;
  }

  .column.is-4, .column.is-4-tablet {
    flex: none;
    width: 33.3333333333%;
  }

  .column.is-offset-4, .column.is-offset-4-tablet {
    margin-left: 33.3333333333%;
  }

  .column.is-5, .column.is-5-tablet {
    flex: none;
    width: 41.6666666667%;
  }

  .column.is-offset-5, .column.is-offset-5-tablet {
    margin-left: 41.6666666667%;
  }

  .column.is-6, .column.is-6-tablet {
    flex: none;
    width: 50%;
  }

  .column.is-offset-6, .column.is-offset-6-tablet {
    margin-left: 50%;
  }

  .column.is-7, .column.is-7-tablet {
    flex: none;
    width: 58.3333333333%;
  }

  .column.is-offset-7, .column.is-offset-7-tablet {
    margin-left: 58.3333333333%;
  }

  .column.is-8, .column.is-8-tablet {
    flex: none;
    width: 66.6666666667%;
  }

  .column.is-offset-8, .column.is-offset-8-tablet {
    margin-left: 66.6666666667%;
  }

  .column.is-9, .column.is-9-tablet {
    flex: none;
    width: 75%;
  }

  .column.is-offset-9, .column.is-offset-9-tablet {
    margin-left: 75%;
  }

  .column.is-10, .column.is-10-tablet {
    flex: none;
    width: 83.3333333333%;
  }

  .column.is-offset-10, .column.is-offset-10-tablet {
    margin-left: 83.3333333333%;
  }

  .column.is-11, .column.is-11-tablet {
    flex: none;
    width: 91.6666666667%;
  }

  .column.is-offset-11, .column.is-offset-11-tablet {
    margin-left: 91.6666666667%;
  }

  .column.is-12, .column.is-12-tablet {
    flex: none;
    width: 100%;
  }

  .column.is-offset-12, .column.is-offset-12-tablet {
    margin-left: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .column.is-narrow-touch {
    flex: none;
  }

  .column.is-full-touch {
    flex: none;
    width: 100%;
  }

  .column.is-three-quarters-touch {
    flex: none;
    width: 75%;
  }

  .column.is-two-thirds-touch {
    flex: none;
    width: 66.6666%;
  }

  .column.is-half-touch {
    flex: none;
    width: 50%;
  }

  .column.is-one-third-touch {
    flex: none;
    width: 33.3333%;
  }

  .column.is-one-quarter-touch {
    flex: none;
    width: 25%;
  }

  .column.is-one-fifth-touch {
    flex: none;
    width: 20%;
  }

  .column.is-two-fifths-touch {
    flex: none;
    width: 40%;
  }

  .column.is-three-fifths-touch {
    flex: none;
    width: 60%;
  }

  .column.is-four-fifths-touch {
    flex: none;
    width: 80%;
  }

  .column.is-offset-three-quarters-touch {
    margin-left: 75%;
  }

  .column.is-offset-two-thirds-touch {
    margin-left: 66.6666%;
  }

  .column.is-offset-half-touch {
    margin-left: 50%;
  }

  .column.is-offset-one-third-touch {
    margin-left: 33.3333%;
  }

  .column.is-offset-one-quarter-touch {
    margin-left: 25%;
  }

  .column.is-offset-one-fifth-touch {
    margin-left: 20%;
  }

  .column.is-offset-two-fifths-touch {
    margin-left: 40%;
  }

  .column.is-offset-three-fifths-touch {
    margin-left: 60%;
  }

  .column.is-offset-four-fifths-touch {
    margin-left: 80%;
  }

  .column.is-0-touch {
    flex: none;
    width: 0%;
  }

  .column.is-offset-0-touch {
    margin-left: 0%;
  }

  .column.is-1-touch {
    flex: none;
    width: 8.3333333333%;
  }

  .column.is-offset-1-touch {
    margin-left: 8.3333333333%;
  }

  .column.is-2-touch {
    flex: none;
    width: 16.6666666667%;
  }

  .column.is-offset-2-touch {
    margin-left: 16.6666666667%;
  }

  .column.is-3-touch {
    flex: none;
    width: 25%;
  }

  .column.is-offset-3-touch {
    margin-left: 25%;
  }

  .column.is-4-touch {
    flex: none;
    width: 33.3333333333%;
  }

  .column.is-offset-4-touch {
    margin-left: 33.3333333333%;
  }

  .column.is-5-touch {
    flex: none;
    width: 41.6666666667%;
  }

  .column.is-offset-5-touch {
    margin-left: 41.6666666667%;
  }

  .column.is-6-touch {
    flex: none;
    width: 50%;
  }

  .column.is-offset-6-touch {
    margin-left: 50%;
  }

  .column.is-7-touch {
    flex: none;
    width: 58.3333333333%;
  }

  .column.is-offset-7-touch {
    margin-left: 58.3333333333%;
  }

  .column.is-8-touch {
    flex: none;
    width: 66.6666666667%;
  }

  .column.is-offset-8-touch {
    margin-left: 66.6666666667%;
  }

  .column.is-9-touch {
    flex: none;
    width: 75%;
  }

  .column.is-offset-9-touch {
    margin-left: 75%;
  }

  .column.is-10-touch {
    flex: none;
    width: 83.3333333333%;
  }

  .column.is-offset-10-touch {
    margin-left: 83.3333333333%;
  }

  .column.is-11-touch {
    flex: none;
    width: 91.6666666667%;
  }

  .column.is-offset-11-touch {
    margin-left: 91.6666666667%;
  }

  .column.is-12-touch {
    flex: none;
    width: 100%;
  }

  .column.is-offset-12-touch {
    margin-left: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .column.is-narrow-desktop {
    flex: none;
  }

  .column.is-full-desktop {
    flex: none;
    width: 100%;
  }

  .column.is-three-quarters-desktop {
    flex: none;
    width: 75%;
  }

  .column.is-two-thirds-desktop {
    flex: none;
    width: 66.6666%;
  }

  .column.is-half-desktop {
    flex: none;
    width: 50%;
  }

  .column.is-one-third-desktop {
    flex: none;
    width: 33.3333%;
  }

  .column.is-one-quarter-desktop {
    flex: none;
    width: 25%;
  }

  .column.is-one-fifth-desktop {
    flex: none;
    width: 20%;
  }

  .column.is-two-fifths-desktop {
    flex: none;
    width: 40%;
  }

  .column.is-three-fifths-desktop {
    flex: none;
    width: 60%;
  }

  .column.is-four-fifths-desktop {
    flex: none;
    width: 80%;
  }

  .column.is-offset-three-quarters-desktop {
    margin-left: 75%;
  }

  .column.is-offset-two-thirds-desktop {
    margin-left: 66.6666%;
  }

  .column.is-offset-half-desktop {
    margin-left: 50%;
  }

  .column.is-offset-one-third-desktop {
    margin-left: 33.3333%;
  }

  .column.is-offset-one-quarter-desktop {
    margin-left: 25%;
  }

  .column.is-offset-one-fifth-desktop {
    margin-left: 20%;
  }

  .column.is-offset-two-fifths-desktop {
    margin-left: 40%;
  }

  .column.is-offset-three-fifths-desktop {
    margin-left: 60%;
  }

  .column.is-offset-four-fifths-desktop {
    margin-left: 80%;
  }

  .column.is-0-desktop {
    flex: none;
    width: 0%;
  }

  .column.is-offset-0-desktop {
    margin-left: 0%;
  }

  .column.is-1-desktop {
    flex: none;
    width: 8.3333333333%;
  }

  .column.is-offset-1-desktop {
    margin-left: 8.3333333333%;
  }

  .column.is-2-desktop {
    flex: none;
    width: 16.6666666667%;
  }

  .column.is-offset-2-desktop {
    margin-left: 16.6666666667%;
  }

  .column.is-3-desktop {
    flex: none;
    width: 25%;
  }

  .column.is-offset-3-desktop {
    margin-left: 25%;
  }

  .column.is-4-desktop {
    flex: none;
    width: 33.3333333333%;
  }

  .column.is-offset-4-desktop {
    margin-left: 33.3333333333%;
  }

  .column.is-5-desktop {
    flex: none;
    width: 41.6666666667%;
  }

  .column.is-offset-5-desktop {
    margin-left: 41.6666666667%;
  }

  .column.is-6-desktop {
    flex: none;
    width: 50%;
  }

  .column.is-offset-6-desktop {
    margin-left: 50%;
  }

  .column.is-7-desktop {
    flex: none;
    width: 58.3333333333%;
  }

  .column.is-offset-7-desktop {
    margin-left: 58.3333333333%;
  }

  .column.is-8-desktop {
    flex: none;
    width: 66.6666666667%;
  }

  .column.is-offset-8-desktop {
    margin-left: 66.6666666667%;
  }

  .column.is-9-desktop {
    flex: none;
    width: 75%;
  }

  .column.is-offset-9-desktop {
    margin-left: 75%;
  }

  .column.is-10-desktop {
    flex: none;
    width: 83.3333333333%;
  }

  .column.is-offset-10-desktop {
    margin-left: 83.3333333333%;
  }

  .column.is-11-desktop {
    flex: none;
    width: 91.6666666667%;
  }

  .column.is-offset-11-desktop {
    margin-left: 91.6666666667%;
  }

  .column.is-12-desktop {
    flex: none;
    width: 100%;
  }

  .column.is-offset-12-desktop {
    margin-left: 100%;
  }
}
@media screen and (min-width: 1216px) {
  .column.is-narrow-widescreen {
    flex: none;
  }

  .column.is-full-widescreen {
    flex: none;
    width: 100%;
  }

  .column.is-three-quarters-widescreen {
    flex: none;
    width: 75%;
  }

  .column.is-two-thirds-widescreen {
    flex: none;
    width: 66.6666%;
  }

  .column.is-half-widescreen {
    flex: none;
    width: 50%;
  }

  .column.is-one-third-widescreen {
    flex: none;
    width: 33.3333%;
  }

  .column.is-one-quarter-widescreen {
    flex: none;
    width: 25%;
  }

  .column.is-one-fifth-widescreen {
    flex: none;
    width: 20%;
  }

  .column.is-two-fifths-widescreen {
    flex: none;
    width: 40%;
  }

  .column.is-three-fifths-widescreen {
    flex: none;
    width: 60%;
  }

  .column.is-four-fifths-widescreen {
    flex: none;
    width: 80%;
  }

  .column.is-offset-three-quarters-widescreen {
    margin-left: 75%;
  }

  .column.is-offset-two-thirds-widescreen {
    margin-left: 66.6666%;
  }

  .column.is-offset-half-widescreen {
    margin-left: 50%;
  }

  .column.is-offset-one-third-widescreen {
    margin-left: 33.3333%;
  }

  .column.is-offset-one-quarter-widescreen {
    margin-left: 25%;
  }

  .column.is-offset-one-fifth-widescreen {
    margin-left: 20%;
  }

  .column.is-offset-two-fifths-widescreen {
    margin-left: 40%;
  }

  .column.is-offset-three-fifths-widescreen {
    margin-left: 60%;
  }

  .column.is-offset-four-fifths-widescreen {
    margin-left: 80%;
  }

  .column.is-0-widescreen {
    flex: none;
    width: 0%;
  }

  .column.is-offset-0-widescreen {
    margin-left: 0%;
  }

  .column.is-1-widescreen {
    flex: none;
    width: 8.3333333333%;
  }

  .column.is-offset-1-widescreen {
    margin-left: 8.3333333333%;
  }

  .column.is-2-widescreen {
    flex: none;
    width: 16.6666666667%;
  }

  .column.is-offset-2-widescreen {
    margin-left: 16.6666666667%;
  }

  .column.is-3-widescreen {
    flex: none;
    width: 25%;
  }

  .column.is-offset-3-widescreen {
    margin-left: 25%;
  }

  .column.is-4-widescreen {
    flex: none;
    width: 33.3333333333%;
  }

  .column.is-offset-4-widescreen {
    margin-left: 33.3333333333%;
  }

  .column.is-5-widescreen {
    flex: none;
    width: 41.6666666667%;
  }

  .column.is-offset-5-widescreen {
    margin-left: 41.6666666667%;
  }

  .column.is-6-widescreen {
    flex: none;
    width: 50%;
  }

  .column.is-offset-6-widescreen {
    margin-left: 50%;
  }

  .column.is-7-widescreen {
    flex: none;
    width: 58.3333333333%;
  }

  .column.is-offset-7-widescreen {
    margin-left: 58.3333333333%;
  }

  .column.is-8-widescreen {
    flex: none;
    width: 66.6666666667%;
  }

  .column.is-offset-8-widescreen {
    margin-left: 66.6666666667%;
  }

  .column.is-9-widescreen {
    flex: none;
    width: 75%;
  }

  .column.is-offset-9-widescreen {
    margin-left: 75%;
  }

  .column.is-10-widescreen {
    flex: none;
    width: 83.3333333333%;
  }

  .column.is-offset-10-widescreen {
    margin-left: 83.3333333333%;
  }

  .column.is-11-widescreen {
    flex: none;
    width: 91.6666666667%;
  }

  .column.is-offset-11-widescreen {
    margin-left: 91.6666666667%;
  }

  .column.is-12-widescreen {
    flex: none;
    width: 100%;
  }

  .column.is-offset-12-widescreen {
    margin-left: 100%;
  }
}
@media screen and (min-width: 1408px) {
  .column.is-narrow-fullhd {
    flex: none;
  }

  .column.is-full-fullhd {
    flex: none;
    width: 100%;
  }

  .column.is-three-quarters-fullhd {
    flex: none;
    width: 75%;
  }

  .column.is-two-thirds-fullhd {
    flex: none;
    width: 66.6666%;
  }

  .column.is-half-fullhd {
    flex: none;
    width: 50%;
  }

  .column.is-one-third-fullhd {
    flex: none;
    width: 33.3333%;
  }

  .column.is-one-quarter-fullhd {
    flex: none;
    width: 25%;
  }

  .column.is-one-fifth-fullhd {
    flex: none;
    width: 20%;
  }

  .column.is-two-fifths-fullhd {
    flex: none;
    width: 40%;
  }

  .column.is-three-fifths-fullhd {
    flex: none;
    width: 60%;
  }

  .column.is-four-fifths-fullhd {
    flex: none;
    width: 80%;
  }

  .column.is-offset-three-quarters-fullhd {
    margin-left: 75%;
  }

  .column.is-offset-two-thirds-fullhd {
    margin-left: 66.6666%;
  }

  .column.is-offset-half-fullhd {
    margin-left: 50%;
  }

  .column.is-offset-one-third-fullhd {
    margin-left: 33.3333%;
  }

  .column.is-offset-one-quarter-fullhd {
    margin-left: 25%;
  }

  .column.is-offset-one-fifth-fullhd {
    margin-left: 20%;
  }

  .column.is-offset-two-fifths-fullhd {
    margin-left: 40%;
  }

  .column.is-offset-three-fifths-fullhd {
    margin-left: 60%;
  }

  .column.is-offset-four-fifths-fullhd {
    margin-left: 80%;
  }

  .column.is-0-fullhd {
    flex: none;
    width: 0%;
  }

  .column.is-offset-0-fullhd {
    margin-left: 0%;
  }

  .column.is-1-fullhd {
    flex: none;
    width: 8.3333333333%;
  }

  .column.is-offset-1-fullhd {
    margin-left: 8.3333333333%;
  }

  .column.is-2-fullhd {
    flex: none;
    width: 16.6666666667%;
  }

  .column.is-offset-2-fullhd {
    margin-left: 16.6666666667%;
  }

  .column.is-3-fullhd {
    flex: none;
    width: 25%;
  }

  .column.is-offset-3-fullhd {
    margin-left: 25%;
  }

  .column.is-4-fullhd {
    flex: none;
    width: 33.3333333333%;
  }

  .column.is-offset-4-fullhd {
    margin-left: 33.3333333333%;
  }

  .column.is-5-fullhd {
    flex: none;
    width: 41.6666666667%;
  }

  .column.is-offset-5-fullhd {
    margin-left: 41.6666666667%;
  }

  .column.is-6-fullhd {
    flex: none;
    width: 50%;
  }

  .column.is-offset-6-fullhd {
    margin-left: 50%;
  }

  .column.is-7-fullhd {
    flex: none;
    width: 58.3333333333%;
  }

  .column.is-offset-7-fullhd {
    margin-left: 58.3333333333%;
  }

  .column.is-8-fullhd {
    flex: none;
    width: 66.6666666667%;
  }

  .column.is-offset-8-fullhd {
    margin-left: 66.6666666667%;
  }

  .column.is-9-fullhd {
    flex: none;
    width: 75%;
  }

  .column.is-offset-9-fullhd {
    margin-left: 75%;
  }

  .column.is-10-fullhd {
    flex: none;
    width: 83.3333333333%;
  }

  .column.is-offset-10-fullhd {
    margin-left: 83.3333333333%;
  }

  .column.is-11-fullhd {
    flex: none;
    width: 91.6666666667%;
  }

  .column.is-offset-11-fullhd {
    margin-left: 91.6666666667%;
  }

  .column.is-12-fullhd {
    flex: none;
    width: 100%;
  }

  .column.is-offset-12-fullhd {
    margin-left: 100%;
  }
}
.columns {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  margin-top: -0.75rem;
}

.columns:last-child {
  margin-bottom: -0.75rem;
}

.columns:not(:last-child) {
  margin-bottom: calc(1.5rem - 0.75rem);
}

.columns.is-centered {
  justify-content: center;
}

.columns.is-gapless {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
}

.columns.is-gapless > .column {
  margin: 0;
  padding: 0 !important;
}

.columns.is-gapless:not(:last-child) {
  margin-bottom: 1.5rem;
}

.columns.is-gapless:last-child {
  margin-bottom: 0;
}

.columns.is-mobile {
  display: flex;
}

.columns.is-multiline {
  flex-wrap: wrap;
}

.columns.is-vcentered {
  align-items: center;
}

@media screen and (min-width: 769px), print {
  .columns:not(.is-desktop) {
    display: flex;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-desktop {
    display: flex;
  }
}
.columns.is-variable {
  --columnGap: 0.75rem;
  margin-left: calc(-1 * var(--columnGap));
  margin-right: calc(-1 * var(--columnGap));
}

.columns.is-variable .column {
  padding-left: var(--columnGap);
  padding-right: var(--columnGap);
}

.columns.is-variable.is-0 {
  --columnGap: 0rem;
}

@media screen and (max-width: 768px) {
  .columns.is-variable.is-0-mobile {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-0-tablet {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-0-tablet-only {
    --columnGap: 0rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-0-touch {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-0-desktop {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .columns.is-variable.is-0-desktop-only {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 1216px) {
  .columns.is-variable.is-0-widescreen {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .columns.is-variable.is-0-widescreen-only {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-0-fullhd {
    --columnGap: 0rem;
  }
}
.columns.is-variable.is-1 {
  --columnGap: 0.25rem;
}

@media screen and (max-width: 768px) {
  .columns.is-variable.is-1-mobile {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-1-tablet {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-1-tablet-only {
    --columnGap: 0.25rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-1-touch {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-1-desktop {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .columns.is-variable.is-1-desktop-only {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 1216px) {
  .columns.is-variable.is-1-widescreen {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .columns.is-variable.is-1-widescreen-only {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-1-fullhd {
    --columnGap: 0.25rem;
  }
}
.columns.is-variable.is-2 {
  --columnGap: 0.5rem;
}

@media screen and (max-width: 768px) {
  .columns.is-variable.is-2-mobile {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-2-tablet {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-2-tablet-only {
    --columnGap: 0.5rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-2-touch {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-2-desktop {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .columns.is-variable.is-2-desktop-only {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 1216px) {
  .columns.is-variable.is-2-widescreen {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .columns.is-variable.is-2-widescreen-only {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-2-fullhd {
    --columnGap: 0.5rem;
  }
}
.columns.is-variable.is-3 {
  --columnGap: 0.75rem;
}

@media screen and (max-width: 768px) {
  .columns.is-variable.is-3-mobile {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-3-tablet {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-3-tablet-only {
    --columnGap: 0.75rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-3-touch {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-3-desktop {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .columns.is-variable.is-3-desktop-only {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 1216px) {
  .columns.is-variable.is-3-widescreen {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .columns.is-variable.is-3-widescreen-only {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-3-fullhd {
    --columnGap: 0.75rem;
  }
}
.columns.is-variable.is-4 {
  --columnGap: 1rem;
}

@media screen and (max-width: 768px) {
  .columns.is-variable.is-4-mobile {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-4-tablet {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-4-tablet-only {
    --columnGap: 1rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-4-touch {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-4-desktop {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .columns.is-variable.is-4-desktop-only {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 1216px) {
  .columns.is-variable.is-4-widescreen {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .columns.is-variable.is-4-widescreen-only {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-4-fullhd {
    --columnGap: 1rem;
  }
}
.columns.is-variable.is-5 {
  --columnGap: 1.25rem;
}

@media screen and (max-width: 768px) {
  .columns.is-variable.is-5-mobile {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-5-tablet {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-5-tablet-only {
    --columnGap: 1.25rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-5-touch {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-5-desktop {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .columns.is-variable.is-5-desktop-only {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 1216px) {
  .columns.is-variable.is-5-widescreen {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .columns.is-variable.is-5-widescreen-only {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-5-fullhd {
    --columnGap: 1.25rem;
  }
}
.columns.is-variable.is-6 {
  --columnGap: 1.5rem;
}

@media screen and (max-width: 768px) {
  .columns.is-variable.is-6-mobile {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-6-tablet {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-6-tablet-only {
    --columnGap: 1.5rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-6-touch {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-6-desktop {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .columns.is-variable.is-6-desktop-only {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 1216px) {
  .columns.is-variable.is-6-widescreen {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .columns.is-variable.is-6-widescreen-only {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-6-fullhd {
    --columnGap: 1.5rem;
  }
}
.columns.is-variable.is-7 {
  --columnGap: 1.75rem;
}

@media screen and (max-width: 768px) {
  .columns.is-variable.is-7-mobile {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-7-tablet {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-7-tablet-only {
    --columnGap: 1.75rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-7-touch {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-7-desktop {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .columns.is-variable.is-7-desktop-only {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 1216px) {
  .columns.is-variable.is-7-widescreen {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .columns.is-variable.is-7-widescreen-only {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-7-fullhd {
    --columnGap: 1.75rem;
  }
}
.columns.is-variable.is-8 {
  --columnGap: 2rem;
}

@media screen and (max-width: 768px) {
  .columns.is-variable.is-8-mobile {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-8-tablet {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-8-tablet-only {
    --columnGap: 2rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-8-touch {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-8-desktop {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .columns.is-variable.is-8-desktop-only {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 1216px) {
  .columns.is-variable.is-8-widescreen {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .columns.is-variable.is-8-widescreen-only {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-8-fullhd {
    --columnGap: 2rem;
  }
}
/* @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    */
/*****************************************/

/**
 * Settings
 */
/**
  * Easings
  */
/**
  * Core
  */
[data-sal] {
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-duration: var(--sal-duration, 0.2s);
          transition-duration: var(--sal-duration, 0.2s);
  -webkit-transition-delay: var(--sal-delay, 0s);
          transition-delay: var(--sal-delay, 0s);
  -webkit-transition-timing-function: var(--sal-easing, ease);
          transition-timing-function: var(--sal-easing, ease);
}

[data-sal][data-sal-duration='200'] {
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

[data-sal][data-sal-duration='250'] {
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
}

[data-sal][data-sal-duration='300'] {
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

[data-sal][data-sal-duration='350'] {
  -webkit-transition-duration: 0.35s;
          transition-duration: 0.35s;
}

[data-sal][data-sal-duration='400'] {
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

[data-sal][data-sal-duration='450'] {
  -webkit-transition-duration: 0.45s;
          transition-duration: 0.45s;
}

[data-sal][data-sal-duration='500'] {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

[data-sal][data-sal-duration='550'] {
  -webkit-transition-duration: 0.55s;
          transition-duration: 0.55s;
}

[data-sal][data-sal-duration='600'] {
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
}

[data-sal][data-sal-duration='650'] {
  -webkit-transition-duration: 0.65s;
          transition-duration: 0.65s;
}

[data-sal][data-sal-duration='700'] {
  -webkit-transition-duration: 0.7s;
          transition-duration: 0.7s;
}

[data-sal][data-sal-duration='750'] {
  -webkit-transition-duration: 0.75s;
          transition-duration: 0.75s;
}

[data-sal][data-sal-duration='800'] {
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
}

[data-sal][data-sal-duration='850'] {
  -webkit-transition-duration: 0.85s;
          transition-duration: 0.85s;
}

[data-sal][data-sal-duration='900'] {
  -webkit-transition-duration: 0.9s;
          transition-duration: 0.9s;
}

[data-sal][data-sal-duration='950'] {
  -webkit-transition-duration: 0.95s;
          transition-duration: 0.95s;
}

[data-sal][data-sal-duration='1000'] {
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
}

[data-sal][data-sal-duration='1050'] {
  -webkit-transition-duration: 1.05s;
          transition-duration: 1.05s;
}

[data-sal][data-sal-duration='1100'] {
  -webkit-transition-duration: 1.1s;
          transition-duration: 1.1s;
}

[data-sal][data-sal-duration='1150'] {
  -webkit-transition-duration: 1.15s;
          transition-duration: 1.15s;
}

[data-sal][data-sal-duration='1200'] {
  -webkit-transition-duration: 1.2s;
          transition-duration: 1.2s;
}

[data-sal][data-sal-duration='1250'] {
  -webkit-transition-duration: 1.25s;
          transition-duration: 1.25s;
}

[data-sal][data-sal-duration='1300'] {
  -webkit-transition-duration: 1.3s;
          transition-duration: 1.3s;
}

[data-sal][data-sal-duration='1350'] {
  -webkit-transition-duration: 1.35s;
          transition-duration: 1.35s;
}

[data-sal][data-sal-duration='1400'] {
  -webkit-transition-duration: 1.4s;
          transition-duration: 1.4s;
}

[data-sal][data-sal-duration='1450'] {
  -webkit-transition-duration: 1.45s;
          transition-duration: 1.45s;
}

[data-sal][data-sal-duration='1500'] {
  -webkit-transition-duration: 1.5s;
          transition-duration: 1.5s;
}

[data-sal][data-sal-duration='1550'] {
  -webkit-transition-duration: 1.55s;
          transition-duration: 1.55s;
}

[data-sal][data-sal-duration='1600'] {
  -webkit-transition-duration: 1.6s;
          transition-duration: 1.6s;
}

[data-sal][data-sal-duration='1650'] {
  -webkit-transition-duration: 1.65s;
          transition-duration: 1.65s;
}

[data-sal][data-sal-duration='1700'] {
  -webkit-transition-duration: 1.7s;
          transition-duration: 1.7s;
}

[data-sal][data-sal-duration='1750'] {
  -webkit-transition-duration: 1.75s;
          transition-duration: 1.75s;
}

[data-sal][data-sal-duration='1800'] {
  -webkit-transition-duration: 1.8s;
          transition-duration: 1.8s;
}

[data-sal][data-sal-duration='1850'] {
  -webkit-transition-duration: 1.85s;
          transition-duration: 1.85s;
}

[data-sal][data-sal-duration='1900'] {
  -webkit-transition-duration: 1.9s;
          transition-duration: 1.9s;
}

[data-sal][data-sal-duration='1950'] {
  -webkit-transition-duration: 1.95s;
          transition-duration: 1.95s;
}

[data-sal][data-sal-duration='2000'] {
  -webkit-transition-duration: 2s;
          transition-duration: 2s;
}

[data-sal][data-sal-delay='50'] {
  -webkit-transition-delay: 0.05s;
          transition-delay: 0.05s;
}

[data-sal][data-sal-delay='100'] {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

[data-sal][data-sal-delay='150'] {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

[data-sal][data-sal-delay='200'] {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

[data-sal][data-sal-delay='250'] {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}

[data-sal][data-sal-delay='300'] {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

[data-sal][data-sal-delay='350'] {
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
}

[data-sal][data-sal-delay='400'] {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

[data-sal][data-sal-delay='450'] {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}

[data-sal][data-sal-delay='500'] {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

[data-sal][data-sal-delay='550'] {
  -webkit-transition-delay: 0.55s;
          transition-delay: 0.55s;
}

[data-sal][data-sal-delay='600'] {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

[data-sal][data-sal-delay='650'] {
  -webkit-transition-delay: 0.65s;
          transition-delay: 0.65s;
}

[data-sal][data-sal-delay='700'] {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

[data-sal][data-sal-delay='750'] {
  -webkit-transition-delay: 0.75s;
          transition-delay: 0.75s;
}

[data-sal][data-sal-delay='800'] {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

[data-sal][data-sal-delay='850'] {
  -webkit-transition-delay: 0.85s;
          transition-delay: 0.85s;
}

[data-sal][data-sal-delay='900'] {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

[data-sal][data-sal-delay='950'] {
  -webkit-transition-delay: 0.95s;
          transition-delay: 0.95s;
}

[data-sal][data-sal-delay='1000'] {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

[data-sal][data-sal-easing='linear'] {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

[data-sal][data-sal-easing='ease'] {
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

[data-sal][data-sal-easing='ease-in'] {
  -webkit-transition-timing-function: ease-in;
          transition-timing-function: ease-in;
}

[data-sal][data-sal-easing='ease-out'] {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

[data-sal][data-sal-easing='ease-in-out'] {
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}

[data-sal][data-sal-easing='ease-in-cubic'] {
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

[data-sal][data-sal-easing='ease-out-cubic'] {
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

[data-sal][data-sal-easing='ease-in-out-cubic'] {
  -webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
          transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

[data-sal][data-sal-easing='ease-in-circ'] {
  -webkit-transition-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335);
          transition-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

[data-sal][data-sal-easing='ease-out-circ'] {
  -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
          transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

[data-sal][data-sal-easing='ease-in-out-circ'] {
  -webkit-transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
          transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

[data-sal][data-sal-easing='ease-in-expo'] {
  -webkit-transition-timing-function: cubic-bezier(0.95, 0.05, 0.795, 0.035);
          transition-timing-function: cubic-bezier(0.95, 0.05, 0.795, 0.035);
}

[data-sal][data-sal-easing='ease-out-expo'] {
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

[data-sal][data-sal-easing='ease-in-out-expo'] {
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
          transition-timing-function: cubic-bezier(1, 0, 0, 1);
}

[data-sal][data-sal-easing='ease-in-quad'] {
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
          transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-sal][data-sal-easing='ease-out-quad'] {
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
          transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-sal][data-sal-easing='ease-in-out-quad'] {
  -webkit-transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
          transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-sal][data-sal-easing='ease-in-quart'] {
  -webkit-transition-timing-function: cubic-bezier(0.895, 0.03, 0.685, 0.22);
          transition-timing-function: cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

[data-sal][data-sal-easing='ease-out-quart'] {
  -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
          transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-sal][data-sal-easing='ease-in-out-quart'] {
  -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
          transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

[data-sal][data-sal-easing='ease-in-quint'] {
  -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
          transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}

[data-sal][data-sal-easing='ease-out-quint'] {
  -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
          transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

[data-sal][data-sal-easing='ease-in-out-quint'] {
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
          transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

[data-sal][data-sal-easing='ease-in-sine'] {
  -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
          transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

[data-sal][data-sal-easing='ease-out-sine'] {
  -webkit-transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
          transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

[data-sal][data-sal-easing='ease-in-out-sine'] {
  -webkit-transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
          transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

[data-sal][data-sal-easing='ease-in-back'] {
  -webkit-transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
          transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

[data-sal][data-sal-easing='ease-out-back'] {
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
          transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-sal][data-sal-easing='ease-in-out-back'] {
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
          transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/**
  * Animations
  */
[data-sal|='fade'] {
  opacity: 0;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

[data-sal|='fade'].sal-animate,
body.sal-disabled [data-sal|='fade'] {
  opacity: 1;
}

[data-sal|='slide'] {
  opacity: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}

[data-sal='slide-up'] {
  -webkit-transform: translateY(20%);
          transform: translateY(20%);
}

[data-sal='slide-down'] {
  -webkit-transform: translateY(-20%);
          transform: translateY(-20%);
}

[data-sal='slide-left'] {
  -webkit-transform: translateX(20%);
          transform: translateX(20%);
}

[data-sal='slide-right'] {
  -webkit-transform: translateX(-20%);
          transform: translateX(-20%);
}

[data-sal|='slide'].sal-animate,
body.sal-disabled [data-sal|='slide'] {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

[data-sal|='zoom'] {
  opacity: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}

[data-sal='zoom-in'] {
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}

[data-sal='zoom-out'] {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

[data-sal|='zoom'].sal-animate,
body.sal-disabled [data-sal|='zoom'] {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

[data-sal|='flip'] {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

[data-sal='flip-left'] {
  -webkit-transform: perspective(2000px) rotateY(-91deg);
          transform: perspective(2000px) rotateY(-91deg);
}

[data-sal='flip-right'] {
  -webkit-transform: perspective(2000px) rotateY(91deg);
          transform: perspective(2000px) rotateY(91deg);
}

[data-sal='flip-up'] {
  -webkit-transform: perspective(2000px) rotateX(-91deg);
          transform: perspective(2000px) rotateX(-91deg);
}

[data-sal='flip-down'] {
  -webkit-transform: perspective(2000px) rotateX(91deg);
          transform: perspective(2000px) rotateX(91deg);
}

[data-sal|='flip'].sal-animate,
body.sal-disabled [data-sal|='flip'] {
  -webkit-transform: none;
          transform: none;
}
/*# sourceMappingURL=sal.css.map */
/* @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    */
/*****************************************/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

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

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

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

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

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

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

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

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

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  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;
}
/*# sourceMappingURL=slick.css.map */
/* @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    */
/*****************************************/

@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('./ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}