/*!*******************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./app/public/wp-content/themes/webimpact/assets/scss/main.scss ***!
  \*******************************************************************************************************************************************************/
:root {
  --max-width: 144rem;
  --container-xxs: 72rem;
  --container-xs: 96rem;
  --container-s: 124rem;
  --container-m: 150rem;
  --default-space: 10rem;
  --grid-gap: 4rem;
  --padding-small: 4rem;
  --container-margin: 0;
}
@media only screen and (max-width: 767px) {
  :root {
    --default-space: 5rem;
    --container-margin: 6.25rem;
  }
}

.maincontainer > *:first-child {
  padding-top: calc(var(--default-space) * 2);
}
@media only screen and (max-width: 767px) {
  .maincontainer > *:first-child {
    padding-top: calc(var(--default-space) * 3);
  }
}

.container {
  margin-inline: auto;
  width: 100%;
  padding-left: calc(var(--container-margin, 6.25rem) * 0.5);
  padding-right: calc(var(--container-margin, 6.25rem) * 0.5);
}
@media only screen and (max-width: 767px) {
  .container {
    --container-margin: 0rem;
  }
}

section {
  position: relative;
  display: flex;
  width: 100%;
  padding-top: var(--default-space);
  padding-bottom: var(--default-space);
  z-index: 1;
}
section::before {
  content: "";
  left: 50%;
  max-width: 100.2vw;
  transform: var(--transform, translateX(-50%));
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
  width: 125.25vw;
  background-color: var(--backgroundColor, transparent);
}
section[style="--backgroundColor: var(--blue-600);"], section[style="--backgroundColor: var(--blue-500);"] {
  color: var(--white);
}

.block-grid {
  overflow: visible;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: var(--grid-margin, 1.875rem);
}
@media only screen and (max-width: 767px) {
  .block-grid {
    flex-direction: column;
  }
}
.block-grid > li {
  list-style: none;
  width: 100%;
}
.block-grid.one-up > li {
  width: 100%;
}
.block-grid.two-up > li {
  width: calc(50% - var(--grid-margin, 1.875rem) * 0.5);
}
.block-grid.three-up > li {
  width: calc(33.333% - var(--grid-margin, 1.875rem) * 0.667);
}
.block-grid.four-up > li {
  width: calc(25% - var(--grid-margin, 1.875rem) * 0.75);
}
.block-grid.five-up > li {
  width: calc(20% - var(--grid-margin, 1.875rem) * 0.8);
}
.block-grid.six-up > li {
  width: calc(16.666% - var(--grid-margin, 1.875rem) * 0.833);
}
@media only screen and (max-width: 767px) {
  .block-grid.one-up > li {
    width: 100%;
  }
  .block-grid.two-up > li {
    width: 100%;
  }
  .block-grid.three-up > li {
    width: 100%;
  }
  .block-grid.four-up > li {
    width: 100%;
  }
  .block-grid.five-up > li {
    width: 100%;
  }
  .block-grid.six-up > li {
    width: 100%;
  }
}

.Document.view.home .maincontainer {
  flex-direction: column;
  align-items: center;
}

:root {
  --font-text: 'Arimo', Arial, sans-serif;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 62.5%;
  font-family: var(--font-text);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  max-height: var(--vh, 100%);
  overflow-x: hidden;
  overflow-y: scroll;
  font-size: var(--font-size-base);
  color: var(--textcolor);
  transition: all 0.3s ease-in-out;
}
body.wp-admin {
  background: var(--white);
  color: var(--black);
}

@media only screen and (max-width: 767px) {
  .maincontainer {
    overflow: hidden;
  }
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}

.full-link {
  position: absolute;
  z-index: 5;
  inset: 0px;
}

img {
  width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

.ck-content ul {
  gap: 0.5rem;
  display: flex;
  flex-direction: column;
}
.ck-content ul > li {
  position: relative;
  padding-left: 2.5rem;
  line-height: 1.7;
}
.ck-content ul > li::marker {
  content: "";
}
.ck-content ul > li::before {
  content: "";
  position: absolute;
  border-radius: 100%;
  background: var(--textcolor);
  width: 0.6rem;
  height: 0.6rem;
  left: 1rem;
  top: 1ch;
}

p {
  line-height: 1.6;
}
p + p {
  margin-top: 1rem;
}

h1, .h1 {
  font-size: 8rem;
  line-height: 1.2;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  h1, .h1 {
    font-size: 3.5rem;
  }
}
h1 span, .h1 span {
  color: var(--orange-500);
}

h2, .h2 {
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  h2, .h2 {
    font-size: 3rem;
    max-width: 90%;
  }
}

h3, .h3 {
  font-size: 2.8rem;
  line-height: 1.4;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  h3, .h3 {
    font-size: 2.4rem;
  }
}

h5, .h5 {
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  h5, .h5 {
    font-size: 2rem;
  }
}

.heading .subtitle {
  text-transform: uppercase;
  color: var(--orange-500);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.heading .content {
  opacity: 0.6;
  margin-top: 1rem;
}

figure {
  position: relative;
  margin: 0;
  float: none;
  clear: both;
  overflow: hidden;
}
figure img {
  object-fit: cover;
  object-position: center;
  display: block;
}

:root {
  --nav-fontsize: 1.6rem;
  --nav-borderradius: 5rem;
  --button-vspace: 1.4rem;
  --button-hspace: 2.8rem;
  --nav_spacing: 1.5rem;
}

nav {
  display: flex;
  flex-direction: var(--nav_flex-direction, row);
  justify-content: var(--nav_justify-content, flex-start);
  flex-wrap: wrap;
  align-items: var(--nav_align-items, center);
  gap: var(--nav_spacing, 0.625rem);
  width: var(--nav_width, 100%);
  margin-top: var(--nav_topmargin, 1.875rem);
  user-select: none;
  cursor: default;
  width: fit-content;
}
@media only screen and (max-width: 767px) {
  nav {
    justify-content: center;
    width: 100%;
    text-align: center;
  }
}

.btn {
  padding: 1.4rem 2.4rem;
  border-radius: 0.8rem;
  font-weight: 600;
  font-size: 1.6rem;
}
.btn--whatsapp {
  background-color: var(--green-500);
  color: var(--white);
  border: none;
}
.btn--whatsapp:hover {
  opacity: 0.8;
}
.btn--secondary {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}
.btn--secondary:hover {
  background-color: var(--white);
  color: var(--blue-500);
}

@font-face {
  font-family: "Arimo";
  src: url(1d305db711c5b15c6b0a.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Arimo";
  src: url(5707037c950abc32bb51.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --font-heading: 'Arimo';
  --font-text: 'Arimo';
  --font-size-base: 1.6rem;
  --textcolor: #1C1A17;
  --border-radius-s: .8rem;
  --border-radius-m: 1rem;
  --border-radius-l: 1.2rem;
  --white: #ffffff;
  --black-700: #18191B;
  --black-800: #0D0D0D;
  --black-900: #000000;
  --green-500: #25D366;
  --grey-400: #EEF2F5;
  --grey-500: #E9E9E9;
  --grey-600: #E2E8F0;
  --blue-800: #1A1A2E;
  --border: #FFFFFF20;
}
