/* Vars */
:root {
  --color-primary: #8b9eac;
  --color-primary-lighter: #b9c3ca;
  --color-primary-darker: #678295;
  --color-secondary: #cdb89b;
  --color-secondary-lighter: #d9cfc1;
  --color-secondary-darker: #bba483;
  --color-tertiary: #aec5c1;
  --color-tertiary-lighter: #c9d6d4;
  --color-tertiary-darker: #96b5b0;
  --color-accent: var(--color-primary);
  --color-accent-lighter: var(--color-primary-lighter);
  --color-muted: #e5eaec;
  --color-red: #d0533a;
  --color-orange: #ee7f00;
  --color-green: #9dcd65;
  --text-color: #222;
  --text-muted-color: #999;
  --gutter-section: 30px;
}
@media (min-width: 769px) {
  :root {
    --gutter-section: 40px;
  }
}
@media (min-width: 1025px) {
  :root {
    --gutter-section: 60px;
  }
}
@media (min-width: 1280px) {
  :root {
    --gutter-section: 120px;
  }
}

/* Globals */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: Gordita, sans-serif;
  background: url(images/page-bg.jpg) no-repeat center top/cover;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  color: var(--text-color);
}

p,
ul,
ol,
dl,
address,
fieldset,
figure {
  font-style: normal;
}
p:not(:first-child),
ul:not(:first-child),
ol:not(:first-child),
dl:not(:first-child),
address:not(:first-child),
fieldset:not(:first-child),
figure:not(:first-child) {
  margin-top: 15px;
}

ul, ol {
  padding-left: 25px;
}
ul li, ol li {
  margin: 4px 0;
  padding-left: 8px;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  line-height: 1.2 !important;
  text-rendering: optimizeLegibility;
  word-break: break-word;
  color: var(--color-primary);
  font-family: "warbler-deck", serif;
  font-weight: bold;
}
h1:not(:first-child), h2:not(:first-child), h3:not(:first-child), h4:not(:first-child), h5:not(:first-child), h6:not(:first-child),
.h1:not(:first-child), .h2:not(:first-child), .h3:not(:first-child), .h4:not(:first-child), .h5:not(:first-child), .h6:not(:first-child) {
  margin-top: 30px;
}
style + h1:not(:first-child), style + h2:not(:first-child), style + h3:not(:first-child), style + h4:not(:first-child), style + h5:not(:first-child), style + h6:not(:first-child),
style + .h1:not(:first-child), style + .h2:not(:first-child), style + .h3:not(:first-child), style + .h4:not(:first-child), style + .h5:not(:first-child), style + .h6:not(:first-child) {
  margin-top: 0;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
.h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a {
  color: var(--color-primary);
  border: none;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover,
.h1 a:hover, .h2 a:hover, .h3 a:hover, .h4 a:hover, .h5 a:hover, .h6 a:hover {
  color: var(--color-primary-darker);
  text-decoration: none;
}

h1, .h1 {
  line-height: 1;
  letter-spacing: 1px;
  font-size: 38px;
  margin-bottom: 30px;
}
@media (min-width: 769px) {
  h1, .h1 {
    font-size: 48px;
  }
}
h2, .h2 {
  font-size: 32px;
}
@media (min-width: 769px) {
  h2, .h2 {
    font-size: 38px;
  }
}

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

h4, .h4 {
  font-size: 24px;
  color: var(--text-color);
}

h5, .h5 {
  font-size: 21px;
  font-family: "Gordita", sans-serif;
  color: var(--color-primary-darker);
  font-weight: 400;
  line-height: 1.5;
}

/* h1, h2, h3 {
  &.elementor-heading-title:after {
    content: "";
    display: block;
    width: 125px;
    height: 3px;
    margin: 20px auto;
    background: var(--color-primary);
  }
} */
blockquote {
  margin: 20px 0;
  font-family: "Gordita";
  font-weight: normal;
  font-style: italic;
}

hr {
  border: 0;
  height: 1px;
  background: #e6e6e6;
}

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

a {
  color: var(--text-color);
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: var(--text-color);
}

::-moz-selection {
  background: var(--color-primary);
  color: #fff;
  text-shadow: none;
}

::selection, mark {
  background: var(--color-primary);
  color: #fff;
  text-shadow: none;
}

small {
  font-size: 16px;
}

strong, b {
  font-weight: 500;
}

abbr {
  text-decoration: none;
}

iframe {
  border: 0;
}

::-webkit-input-placeholder {
  color: #555;
}

::-moz-placeholder {
  color: #555;
}

:-ms-input-placeholder {
  color: #555;
}

:-moz-placeholder {
  color: #555;
}

/* Layout */
.container {
  padding: 0 15px;
  margin: 0 auto;
  max-width: 1280px;
}
.container.small {
  max-width: 960px;
}
.container.large {
  max-width: 1480px;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  margin: -7.5px;
}
.grid > * {
  width: 100%;
  padding: 7.5px;
}
@media (min-width: 769px) {
  .grid {
    margin: -15px;
  }
  .grid > * {
    padding: 15px;
  }
}
@media (min-width: 1025px) {
  .grid {
    margin: -30px;
  }
  .grid > * {
    padding: 30px;
  }
}
@media (min-width: 769px) {
  .grid.gutter-small {
    margin: -15px;
  }
  .grid.gutter-small > * {
    padding: 15px;
  }
}
@media (min-width: 1025px) {
  .grid.gutter-small {
    margin: -15px;
  }
  .grid.gutter-small > * {
    padding: 15px;
  }
}
.grid.center {
  align-items: center;
}

@media (min-width: 480px) {
  .w-1-2\@s {
    width: 50%;
  }
  .w-1-3\@s {
    width: 33.33333%;
  }
  .w-2-3\@s {
    width: 66.66666%;
  }
  .w-1-4\@s {
    width: 25%;
  }
  .w-3-4\@s {
    width: 75%;
  }
  .w-1-5\@s {
    width: 20%;
  }
  .w-2-5\@s {
    width: 40%;
  }
  .w-3-5\@s {
    width: 60%;
  }
  .w-4-5\@s {
    width: 80%;
  }
}
@media (min-width: 769px) {
  .w-1-2\@m {
    width: 50%;
  }
  .w-1-3\@m {
    width: 33.33333%;
  }
  .w-2-3\@m {
    width: 66.66666%;
  }
  .w-1-4\@m {
    width: 25%;
  }
  .w-3-4\@m {
    width: 75%;
  }
  .w-1-5\@m {
    width: 20%;
  }
  .w-2-5\@m {
    width: 40%;
  }
  .w-3-5\@m {
    width: 60%;
  }
  .w-4-5\@m {
    width: 80%;
  }
}
@media (min-width: 1025px) {
  .w-1-2\@l {
    width: 50%;
  }
  .w-1-3\@l {
    width: 33.33333%;
  }
  .w-2-3\@l {
    width: 66.66666%;
  }
  .w-1-4\@l {
    width: 25%;
  }
  .w-3-4\@l {
    width: 75%;
  }
  .w-1-5\@l {
    width: 20%;
  }
  .w-2-5\@l {
    width: 40%;
  }
  .w-3-5\@l {
    width: 60%;
  }
  .w-4-5\@l {
    width: 80%;
  }
}
@media (min-width: 1280px) {
  .w-1-2\@xl {
    width: 50%;
  }
  .w-1-3\@xl {
    width: 33.33333%;
  }
  .w-2-3\@xl {
    width: 66.66666%;
  }
  .w-1-4\@xl {
    width: 25%;
  }
  .w-3-4\@xl {
    width: 75%;
  }
  .w-1-5\@xl {
    width: 20%;
  }
  .w-2-5\@xl {
    width: 40%;
  }
  .w-3-5\@xl {
    width: 60%;
  }
  .w-4-5\@xl {
    width: 80%;
  }
}
/* Tools */
.inverse * {
  color: #fff;
}

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

.padding-vertical {
  padding: var(--gutter-section) 0;
}

.padding-small {
  padding: 15px;
}
@media (min-width: 769px) {
  .padding-small {
    padding: 30px;
  }
}

.margin-vertical, hr, .section {
  margin: var(--gutter-section) 0;
}

@media (max-width: 479px) {
  .visible\@s {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .visible\@m {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .visible\@l {
    display: none !important;
  }
}
@media (max-width: 1279px) {
  .visible\@xl {
    display: none !important;
  }
}
@media (min-width: 480px) {
  .hidden\@s {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .hidden\@m {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  .hidden\@l {
    display: none !important;
  }
}
@media (min-width: 1280px) {
  .hidden\@xl {
    display: none !important;
  }
}
/* Buttons */
.button, input[type=submit], .xxelementor-button, button, .elementor-button {
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  outline: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 4px;
  background: var(--color-primary);
  color: #fff;
  height: 50px;
  padding: 0 25px;
  transition: all ease-in-out 0.2s;
  position: relative;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25) !important;
}
.button i.fas, input[type=submit] i.fas, .xxelementor-button i.fas, button i.fas, .elementor-button i.fas {
  color: #fff;
  margin-left: 10px;
}
.button:hover, input[type=submit]:hover, .xxelementor-button:hover, button:hover, .elementor-button:hover {
  background: var(--color-primary-darker);
  color: #fff;
  transform: translateY(-2px);
}
.button.inverse, input.inverse[type=submit], .inverse.xxelementor-button, button.inverse, .elementor-button.inverse {
  background: #fff;
  color: var(--text-color);
}
@media (min-width: 1280px) {
  .button, input[type=submit], .xxelementor-button, button, .elementor-button {
    font-size: 18px;
  }
}
.button[disabled], input[disabled][type=submit], [disabled].xxelementor-button, button[disabled], .elementor-button[disabled] {
  opacity: 0.4;
}
.button.secondary, input.secondary[type=submit], .secondary.xxelementor-button, button.secondary, .elementor-button.secondary {
  background: var(--color-secondary);
}
.button.secondary:hover, input.secondary[type=submit]:hover, .secondary.xxelementor-button:hover, button.secondary:hover, .elementor-button.secondary:hover {
  background: var(--color-secondary-darker);
  color: #fff;
}
.button.tertiary, input.tertiary[type=submit], .tertiary.xxelementor-button, button.tertiary, .elementor-button.tertiary {
  background: var(--color-tertiary);
}
.button.tertiary:hover, input.tertiary[type=submit]:hover, .tertiary.xxelementor-button:hover, button.tertiary:hover, .elementor-button.tertiary:hover {
  background: var(--color-tertiary-darker);
  color: #fff;
}
.button.accent, input.accent[type=submit], .accent.xxelementor-button, button.accent, .elementor-button.accent {
  background: var(--color-accent) !important;
}
.button.accent:hover, input.accent[type=submit]:hover, .accent.xxelementor-button:hover, button.accent:hover, .elementor-button.accent:hover {
  background: var(--color-accent-lighter) !important;
}
.button.white, input.white[type=submit], .white.xxelementor-button, button.white, .elementor-button.white {
  background: #fff;
  color: var(--color-primary);
}
.button.small, input.small[type=submit], .small.xxelementor-button, button.small, .elementor-button.small {
  height: 40px;
  padding: 0 20px;
  font-size: 16px;
}
.button.xsmall, input.xsmall[type=submit], .xsmall.xxelementor-button, button.xsmall, .elementor-button.xsmall {
  height: 30px;
  border-radius: 15px;
  padding: 0 20px;
}
.button.large, input.large[type=submit], .large.xxelementor-button, button.large, .elementor-button.large {
  min-height: 60px;
  height: auto;
  border-radius: 30px;
  padding: 10px 50px;
  font-size: 19px;
}
.button.xl, input.xl[type=submit], .xl.xxelementor-button, button.xl, .elementor-button.xl {
  min-height: 80px !important;
  border-radius: 40px !important;
  padding: 10px 30px !important;
  font-size: 24px !important;
}
.button.ghost, input.ghost[type=submit], .ghost.xxelementor-button, button.ghost, .elementor-button.ghost {
  background: transparent;
  border: none;
  box-shadow: none !important;
  color: var(--text-color);
  font-weight: 400;
}
.button.ghost:hover, input.ghost[type=submit]:hover, .ghost.xxelementor-button:hover, button.ghost:hover, .elementor-button.ghost:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  transform: translateY(0);
}

.xxelementor-button {
  display: inline-flex !important;
  background: var(--color-primary) !important;
  font-size: 19px !important;
  min-height: 50px !important;
  height: auto;
  border-radius: 25px !important;
  padding: 10px 30px !important;
  font-weight: 400;
  line-height: 1.1;
}
.xxelementor-button:hover {
  background: var(--color-primary-darker) !important;
  color: #fff;
}
.xxelementor-button.elementor-size-xl {
  min-height: 80px !important;
  border-radius: 40px !important;
  padding: 10px 30px !important;
  font-size: 24px !important;
}
body.page-template-page-landingpage .xxelementor-button {
  background: var(--color-accent) !important;
}
@media (min-width: 769px) {
  .xxelementor-button.elementor-size-xl {
    padding: 10px 60px !important;
    font-size: 27px !important;
  }
}

table {
  margin-top: 20px;
  border-collapse: collapse;
  width: 100%;
  text-align: left;
  font-size: 17px;
  line-height: 1.3;
}
table:not(:first-child) {
  margin-top: 15px;
}
table tr {
  border-top: 1px solid #ddd;
}
table > tr:first-child, table > thead:first-child > tr:first-child, table > tbody:first-child > tr:first-child {
  border-top: none;
}
table th, table td {
  padding: 6px 12px 6px 0;
}
table th:last-child, table td:last-child {
  padding-right: 0;
}
table thead td, table th {
  font-weight: normal;
  color: var(--text-muted-color);
}
@media (min-width: 769px) {
  table {
    font-size: 19px;
  }
  table td, table th {
    padding: 8px 16px 8px 0;
  }
  table thead td, table th {
    font-size: 17px;
  }
}

.table-responsive {
  width: 100%;
  overflow-x: scroll;
}
.table-responsive > table {
  max-width: none;
  width: auto;
  min-width: 100%;
}

@media (max-width: 768px) {
  .table-collapse th, .table-collapse td {
    display: block;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }
  .table-collapse th:not(:first-child), .table-collapse td:not(:first-child) {
    padding-top: 0;
  }
}

/* Forms */
.input-base, select, textarea, input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=date],
input[type=tel] {
  font-family: inherit;
  font-size: 17px;
  font-weight: inherit;
  width: 100%;
  border: none;
  background: var(--color-muted-lighter);
  border-radius: 8px;
}
.input-base:focus, select:focus, textarea:focus, input[type=text]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=date]:focus,
input[type=tel]:focus {
  outline: none;
}
.input-base:focus:required, select:focus:required, textarea:focus:required, input[type=text]:focus:required,
input[type=email]:focus:required,
input[type=number]:focus:required,
input[type=password]:focus:required,
input[type=date]:focus:required,
input[type=tel]:focus:required {
  /* &:valid,
  &:placeholder-shown{ border-color: green; box-shadow: 0 0 8px green;} */
}
input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=date],
input[type=tel] {
  height: 50px;
  padding: 0 20px;
}

textarea {
  padding: 20px;
}

select {
  height: 50px;
  padding: 0 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted-color);
  font-size: 17px;
  max-width: 470px;
}

fieldset {
  border: none;
}

/* Elements */
.menu-button {
  display: block;
  position: relative;
  height: 20px;
  width: 28px;
}
.menu-button > span, .menu-button:before, .menu-button:after {
  display: block;
  background: var(--color-primary);
  height: 2px;
  position: absolute;
  width: 100%;
}
.menu-button > span {
  top: 50%;
  margin-top: -1px;
}
.menu-button:before {
  content: "";
  top: -1px;
}
.menu-button:after {
  content: "";
  bottom: -1px;
}
.menu-button.close:before {
  transform: rotate(-135deg);
  top: 50%;
  margin-top: -1px;
}
.menu-button.close:after {
  transform: rotate(135deg);
  top: 50%;
  margin-top: -1px;
}
.menu-button.close > span {
  opacity: 0;
}

.elementor,
.e-con {
  /* --container-max-width: 1380px;

  // responsive horizontal padding
  --container-default-padding-inline-start: 15px;
  --container-default-padding-inline-end: 15px;
  --container-default-padding-block-start: 15px;
  --container-default-padding-block-end: 15px;

  @include respond-to($breakpoint-medium) {
    --container-default-padding-inline-start: 30px;
    --container-default-padding-inline-end: 30px;
  }

  @include respond-to($breakpoint-large) {
  }

  @include respond-to($breakpoint-xlarge) {
  } */
}

.e-con:not(.e-child) {
  --margin-top: var(--gutter-section);
  --margin-bottom: var(--gutter-section);
}

.elementor-widget-heading {
  margin: 30px 0 20px !important;
}
/* .elementor-column-gap-default > .elementor-column > .elementor-element-populated {
  padding: 15px;
}

.elementor-section {
  // margin: 30px 0;
  margin: var(--gutter-section) 0;

  @include respond-to($breakpoint-medium) {
    // margin: 50px 0;
  }

  @include respond-to($breakpoint-large) {
    // margin: 100px 0;
  }

  &:first-child {
    // margin-top: 0;
  }

  &:last-child {
    // margin-bottom: 0;
  }
}

.elementor-container {
  // margin: 0 -15px;
}

.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: 1380px;
}

.elementor-section.elementor-section-full_width .elementor-container {
  max-width: none;
} */

/*# sourceMappingURL=elementor.css.map */
