html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, select, input, button, textarea,
dl, dt, dd,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, ul, ol, li {
  margin: 0;
  padding: 0;
  border: 0;
  line-height: inherit;
  font-size: inherit;
  font: inherit;
  color: inherit;
  vertical-align: baseline;
  outline: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

b, strong {
  font-weight: 700;
}

i, em {
  font-style: italic;
}

ol, ul {
  list-style: none;
}

html {
  margin: 0 !important;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.flex {
  display: flex;
}
.flex > * {
  position: relative;
}
.flex.space-between {
  justify-content: space-between;
}
.flex.space-around {
  justify-content: space-around;
}
.flex.flex-column {
  flex-direction: column;
}
.flex.wrap {
  flex-flow: row wrap;
}
.flex.flex-center {
  align-items: center;
}
.flex.flex-bottom {
  align-items: flex-end;
}
.flex.flex-text-center {
  justify-content: center;
}
.flex.flex-text-right {
  justify-content: flex-end;
}
.flex .flex-item-right {
  margin-left: auto !important;
}
.flex .flex-item-left {
  margin-right: auto !important;
}
.flex .flex-1 {
  flex: 1;
}
.flex .flex-2 {
  flex: 2;
}
.flex .flex-3 {
  flex: 3;
}
.flex .flex-4 {
  flex: 4;
}
.flex .flex-5 {
  flex: 5;
}
.flex .flex-6 {
  flex: 6;
}
.flex .flex-7 {
  flex: 7;
}
.flex .flex-8 {
  flex: 8;
}
.flex .flex-9 {
  flex: 9;
}
.flex .flex-10 {
  flex: 10;
}
.flex.fixed-columns-count {
  flex-wrap: wrap;
}
.flex.fixed-columns-count > * {
  width: calc( ( 100% - ( var(--bleed) * 2 * var(--columns-count) ) ) / var(--columns-count) );
  max-width: calc( ( 100% - ( var(--bleed) * 2 * var(--columns-count) ) ) / var(--columns-count) );
  min-width: calc( ( 100% - ( var(--bleed) * 2 * var(--columns-count) ) ) / var(--columns-count) );
}
.flex.fixed-columns-count.bleed {
  margin-left: calc( var(--bleed) * -1 );
  margin-right: calc( var(--bleed) * -1 );
}
.flex.fixed-columns-count.bleed > *:first-child {
  margin-left: var(--bleed);
}
.flex.fixed-columns-count.bleed > *:last-child {
  margin-right: var(--bleed);
}
.flex.bleed > * {
  margin-left: var(--bleed);
  margin-right: var(--bleed);
}
.flex.bleed > *:first-child {
  margin-left: 0;
}
.flex.bleed > *:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1660px) {
  .flex.break-laptop {
    flex-direction: column;
  }
  .flex.break-laptop.bleed {
    margin-left: 0px;
    margin-right: 0px;
  }
  .flex.break-laptop.bleed > * {
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: var(--bleed);
    width: 100%;
  }
  .flex.break-laptop.bleed > :first-child {
    margin-left: 0px;
  }
  .flex.break-laptop.bleed > :last-child {
    margin-right: 0px;
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 1280px) {
  .flex.break-tablet {
    flex-direction: column;
  }
  .flex.break-tablet.bleed {
    margin-left: 0px;
    margin-right: 0px;
  }
  .flex.break-tablet.bleed > * {
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: var(--bleed);
    width: 100%;
  }
  .flex.break-tablet.bleed > :first-child {
    margin-left: 0px;
  }
  .flex.break-tablet.bleed > :last-child {
    margin-right: 0px;
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 960px) {
  .flex.break-mobile {
    flex-direction: column;
  }
  .flex.break-mobile.bleed {
    margin-left: 0px;
    margin-right: 0px;
  }
  .flex.break-mobile.bleed > * {
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: var(--bleed);
    width: 100%;
  }
  .flex.break-mobile.bleed > :first-child {
    margin-left: 0px;
  }
  .flex.break-mobile.bleed > :last-child {
    margin-right: 0px;
    margin-bottom: 0px;
  }
}

.elementor-section.container > .elementor-container,
.container:not(.elementor-section) {
  margin-left: auto;
  margin-right: auto;
  max-width: 1920px;
  padding-left: 60px;
  padding-right: 60px;
}
@media screen and (max-width: 1280px) {
  .elementor-section.container > .elementor-container,
.container:not(.elementor-section) {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 960px) {
  .elementor-section.container > .elementor-container,
.container:not(.elementor-section) {
    padding-left: 20px;
    padding-right: 20px;
  }
}

html {
  color: black;
  line-height: 1.33;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
}
@media screen and (max-width: 1920px) {
  html {
    font-size: calc( 10px + ( 8 * ( 100vw - 960px ) / 960 ) );
  }
}
@media screen and (max-width: 960px) {
  html {
    font-size: 14px;
  }
}