@charset "UTF-8";
/*
 Theme Path
========================================================================== */
/*
 Font Family
========================================================================== */
/*
 Font Size
========================================================================== */
/*
 Colors
========================================================================== */
/*
 Helpers
========================================================================== */
/*
 Sizes
========================================================================== */
/*
 Columns
========================================================================== */
/*
 Buttons – @include button();
========================================================================== */
/* Fluid Type - Responsive fonts sizing
https://chriskirknielsen.com/blog/modern-fluid-typography-with-clamp/
usage: @include fluid-type(min viewport size, max viewport, min font size, max font size);
========================================================================== */
/*
 Tint (adds white) – @include tint(red, 10%);
========================================================================== */
/*
 Shade (adds black) – @include shade(red, 10%);
========================================================================== */
/*
 Hex to RGB – hextorgb(#000); //returns 0, 0, 0,
========================================================================== */
/*
 Object Fit – @include object-fit(cover);
========================================================================== */
/*
 Rows – @include rows(4,10px); px or % support
========================================================================== */
/*
 Aspect Ratio – @include aspect-ratio(9,16) 0r @include aspect-ratio(70%,30%)
========================================================================== */
/*
 Align Full – @include alignfull;
========================================================================== */
/*
 Min Width Query – @include media($desktop);
========================================================================== */
/*
 Max Width Query – @include media-height($tablet);
========================================================================== */
/*
 Min Width and Max Width Query – @include media-between($tablet, $desktop);
========================================================================== */
/*
 Min Height Query – @include media-height($tablet);
========================================================================== */
/*
 Truncate – @include truncate-text(ellipsis);
========================================================================== */
/*
 Rem to Pix Calculate for fonts
========================================================================== */
/*
 Font Size rem to pix – @include font-size(30px);
========================================================================== */
/*
 Rem Calculate – @include rem(padding, 30px);
========================================================================== */
/*
 Column width with margin
========================================================================== */
/*
 SCSS variable in background image with SVG image data URI
 usage – style="fill: friendly-color(var(--wp--preset--color--tertiary));"
========================================================================== */
/* -------------------------------------------------------------------------- */
/*                                   Resets                                   */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*                                    Utils                                   */
/* -------------------------------------------------------------------------- */
.hero {
  max-height: 800px;
  padding: 0 0 0 30px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 853px) {
  .hero {
    padding: 0;
    max-height: 950px;
  }
}
.hero__watermark {
  position: absolute;
  bottom: 50px;
  right: 95px;
  height: 60px;
  width: 177px;
  object-fit: contain;
  z-index: 10;
}
@media screen and (max-width: 853px) {
  .hero__watermark {
    right: 35px;
    bottom: 35px;
  }
}
.hero__inner {
  height: 100%;
  display: flex;
  align-items: center;
  max-width: 1390px;
  margin: 0 auto;
  gap: 40px;
}
@media screen and (max-width: 1199px) {
  .hero__inner {
    gap: 0px;
  }
}
@media screen and (max-width: 853px) {
  .hero__inner {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
}
@media screen and (max-width: 649px) {
  .hero__inner {
    gap: 5px;
  }
}
.hero__inner-blocks {
  max-width: 550px;
  min-width: 550px;
  flex-shrink: 1;
}
@media screen and (max-width: 1199px) {
  .hero__inner-blocks {
    min-width: 400px;
  }
}
@media screen and (max-width: 1011px) {
  .hero__inner-blocks {
    min-width: 300px;
  }
}
@media screen and (max-width: 853px) {
  .hero__inner-blocks {
    padding: 62px 30px 38px 30px;
    max-width: 700px;
  }
}
.hero__image {
  object-fit: contain;
  object-position: left;
  display: flex;
  align-items: flex-end;
  height: 100%;
}
.hero__image img {
  max-width: 100%;
  display: block;
}
@media screen and (max-width: 1011px) {
  .hero h2 {
    font-size: 36px !important;
  }
  .hero p {
    font-size: 16px !important;
  }
}
