/**
 * Breakpoint mixins
 */
/**
 * Long content fade mixin
 *
 * Creates a fading overlay to signify that the content is longer
 * than the space allows.
 */
:root {
  --wp-admin-theme-color: #007cba;
  --wp-admin-theme-color--rgb: hex-to-rgb(#007cba);
  --wp-admin-theme-color-darker-10: rgb(0, 107, 160.5);
  --wp-admin-theme-color-darker-10--rgb: hex-to-rgb(rgb(0, 107, 160.5));
  --wp-admin-theme-color-darker-20: #005a87;
  --wp-admin-theme-color-darker-20--rgb: hex-to-rgb(#005a87);
  --wp-admin-border-width-focus: 2px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  :root {
    --wp-admin-border-width-focus: 1.5px;
  }
}

.icon-box:hover img {
	animation: MoveUpDown 1.5s ease-in-out infinite;
}

.wp-block-cover {
  position: relative;
	color: #fff;
	justify-content: left;
	margin-left: 0;
	margin-right: 0;
}

.wp-block-cover .wp-block-cover__inner-container, .wp-block-cover-image .wp-block-cover__inner-container {
	position: relative;
	z-index: 1;
	width: 60%;
	}

			
	

.wp-block-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, 
  #06283d 0%, 
  rgba(6, 40, 61, 0.8) 34.96%, 
  rgba(6, 40, 61, 0.75) 42.08%, 
  rgba(6, 40, 61, 0.7) 49.85%, 
  rgba(6, 40, 61, 0.55) 57.62%, 
  rgba(6, 40, 61, 0.4) 62.15%, 
  rgba(6, 40, 61, 0.0) 65%);
  z-index: 1;
  pointer-events: none;
}

.wp-block-cover__image-background img {
  position: relative;
  z-index: 1;
}


/**
 * Focus styles.
 */
/**
 * Applies editor left position to the selector passed as argument
 */
/**
 * Styles that are reused verbatim in a few places
 */
/**
 * Allows users to opt-out of animations via OS-level preferences.
 */
/**
 * Reset default styles for JavaScript UI based pages.
 * This is a WP-admin agnostic reset
 */
/**
 * Reset the WP Admin page styles for Gutenberg-like pages.
 */
/**
*  Converts a hex value into the rgb equivalent.
*
* @param {string} hex - the hexadecimal value to convert
* @return {string} comma separated rgb values
*/
/** @format */
/**
 * Deprecated colors.
 * Please avoid using these.
 */
/**
 * Colors
 */
/**
 * Breakpoints & Media Queries
 */
/**
 * SCSS Variables.
 *
 * Please use variables from this sheet to ensure consistency across the UI.
 * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
 * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
 */
/**
 * Fonts & basic variables.
 */
/**
 * Grid System.
 * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
 */
/**
 * Dimensions.
 */
/**
 * Shadows.
 */
/**
 * Editor widths.
 */
/**
 * Block & Editor UI.
 */
/**
 * Block paddings.
 */
/**
 * React Native specific.
 * These variables do not appear to be used anywhere else.
 */
.dashicon-light,
.components-toolbar__control-light {
  color: #7b9ab1;
  fill: currentColor;
}

.dashicon-dark,
.components-toolbar__control-dark {
  color: #a7aaad;
  fill: currentColor;
}

.dashicon-active,
.is-pressed {
  color: #fff;
  fill: currentColor;
}

.dashicons-insert {
  color: #87a6bc;
  fill: currentColor;
}

.unsupported-icon-light {
  color: rgb(46.2909090909, 67.7090909091, 82.9090909091);
  fill: currentColor;
}

.unsupported-icon-dark {
  color: #fff;
  fill: currentColor;
}

.warning-icon-light {
  color: rgb(46.2909090909, 67.7090909091, 82.9090909091);
  fill: currentColor;
}

.warning-icon-dark {
  color: #fff;
  fill: currentColor;
}

.wpBlockQuoteDark, .wpBlockQuoteLight {
  border-left-width: 4px;
  border-left-style: solid;
  padding-left: 16px;
  padding-top: 6px;
  margin-left: 0;
}

.wpBlockQuoteLight {
  border-left-color: #000;
}

.wpBlockQuoteDark {
  border-left-color: #fff;
}

.wpBlockQuoteCitation {
  margin-top: 16px;
  font-size: 14px;
}

.paddingWithBackground {
  padding-top: 13px;
}

.line {
  background-color: rgb(200.4545454545, 214.5454545455, 224.5454545455);
  height: 2;
}

.lineDark {
  background-color: #646970;
}

.skip-link {
  position: absolute;
  transform: translateY(-300%);
  background-color: #06283d;
  padding: 0.5rem 1.5rem;
  border-bottom-right-radius: 0.5rem;
  transition: transform 300ms ease-in;
  color: #FFF;
  text-decoration: none;
  z-index: 9999;
}

.skip-link:focus {
  transform: translateY(0);
  outline-color: transparent;
}

.link-boxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 50rem) {
  .link-boxes {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 80rem) {
  .link-boxes {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

:root {
  --wp-admin-theme-color: #007cba;
  --wp-admin-theme-color--rgb: 0, 124, 186;
  --wp-admin-theme-color-darker-10: rgb(0, 107, 160.5);
  --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
  --wp-admin-theme-color-darker-20: #005a87;
  --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
  --wp-admin-border-width-focus: 2px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  :root {
    --wp-admin-border-width-focus: 1.5px;
  }
}
:root {
  --wp-block-synced-color: #7a00df;
  --wp-block-synced-color--rgb: 122, 0, 223;
}


.link-box {
  color: #fff;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 190px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 24px;
  font-weight: 600;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.3s ease;
  border-radius: 4px;
}
.link-box:hover {
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.5);
}

.icon-boxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10rem;
}
@media (min-width: 60rem) {
  .icon-boxes {
    grid-template-columns: 1fr 1fr;
  }
}
.icon-boxes-wrapper {
  padding-top: 5rem;
	margin-bottom: 6rem;
  margin-top: 6rem;
}
.icon-boxes-title {
  margin-bottom: 8rem;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.3s ease-out;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 5;
}

button {
  background-color: transparent;
  border: none;
}

.btn,
.button {
  display: inline-block;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border: 3px solid;
  border-radius: 40px;
  transition: opacity 0.4s;
  text-align: center;
  font-weight: 700;
  cursor: pointer;
}
.btn:hover,
.button:hover {
  opacity: 0.4;
}
.btn--sm,
.button--sm {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.btn--md,
.button--md {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
.btn--lg,
.button--lg {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  padding-left: 2.25rem;
  padding-right: 2.25rem;
}
.btn--primary,
.button--primary {
  color: #06283d;
  border-color: #06283d;
}
.btn--secondary,
.button--secondary {
  color: #1363df;
  border-color: #1363df;
}
.btn--lightblue,
.button--lightblue {
  color: #47b5ff;
  border-color: #47b5ff;
}
.btn--lightyellow,
.button--lightyellow {
  color: #f9f871;
  border-color: #f9f871;
}

.icon-box {
  position: relative;
  background-color: #06283d;
  color: #FFF;
  padding-top: 6rem;
  padding-bottom: 2.5rem;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
  border-radius: 4px;
}
@media (min-width: 50rem) {
  .icon-box {
    padding-bottom: 3.5rem;
    padding-right: 3.5rem;
    padding-left: 3.5rem;
  }
}
.icon-box:hover img {
  animation: MoveUpDown 1.5s ease-in-out infinite;
}
.icon-box > * + * {
  margin-top: 1rem;
}
@media (min-width: 60rem) {
  .icon-box > * + * {
    margin-top: 2rem;
  }
}
.icon-box img {
  position: absolute;
  top: -75px;
	aspect-ratio: 1 / 1;
	width: 150px;
	height: auto;
}

.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 24rem;
  padding: 9rem 1rem 4rem;
}
@media (min-width: 60rem) {
  .error-page {
    min-height: 32rem;
  }
}
.error-page > * + * {
  margin-top: 2rem;
}
.error-page svg {
  fill: #06283d;
}

.breadcrumbs {
  margin-bottom: 4rem;
  color: #fff;
}
@media (min-width: 60rem) {
  .breadcrumbs {
    margin-bottom: 8rem;
  }
}

.search-modal {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  background-color: white;
  z-index: 10;
  width: 100%;
  max-width: 1500px;
  overflow-y: auto;
  border-radius: 8px;
  margin: 3rem 0;
  padding-top: 2rem;
  padding-bottom: 5rem;
  min-height: 250px;
}
@media (min-width: 60rem) {
  .search-modal {
    padding-top: 3rem;
  }
}
.search-modal .controls {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
}
.search-modal .close-label {
  cursor: pointer;
}
.search-modal .close-label svg {
  fill: #06283d;
  transition: fill 0.3s ease;
}
.search-modal .close-label:hover svg {
  fill: #1363df;
}
.search-modal .search-input {
  width: 100%;
  max-width: 500px;
}
.search-modal .results-wrapper {
  margin: 2rem 0;
}
.search-modal .results-wrapper .title {
  font-size: 20px;
  margin: 0;
}
.search-modal .results-wrapper .loader {
  width: 100%;
  display: flex;
  justify-content: center;
  height: 300px;
  align-items: center;
}
.search-modal .results-wrapper .results-meta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 2rem 0;
}
@media (min-width: 60rem) {
  .search-modal .results-wrapper .results-meta {
    flex-direction: row;
  }
}
.search-modal .results-wrapper .result {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}
.search-modal .results-wrapper .result:hover {
  transform: translateY(-6px);
}
.search-modal .results-wrapper .result .image {
  width: 100%;
  height: auto;
}
.search-modal .results-wrapper .result .name {
  font-size: 14px;
  hyphens: auto;
  color: black;
}
.search-modal .results-wrapper .result .price ins,
.search-modal .results-wrapper .result .price del {
  display: block;
}
.search-modal .results-wrapper .result .price ins {
  font-weight: 700;
  color: #1363df;
}
.search-modal .results-wrapper .result .price del {
  color: black;
  font-size: 12px;
}
.search-modal .results-wrapper .result .availability {
  margin-top: 0.25rem;
}
.search-modal .results-wrapper .result .availability .shipping,
.search-modal .results-wrapper .result .availability .status {
  display: block;
  font-size: 12px;
}
.search-modal .results-wrapper .result .availability .shipping {
  font-weight: 600;
  color: black;
}
.search-modal .results-wrapper .result .availability .status {
  color: #707070;
}
.search-modal .results-wrapper .result .availability .status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.5rem;
}
.search-modal .results-wrapper .result .availability.instock .status::before {
  background-color: #22c55e;
}
.search-modal .results-wrapper .result .availability.outofstock .status::before {
  background-color: #ef4444;
}
.search-modal .results-wrapper .result .availability.onbackorder .status::before {
  background-color: #facc15;
}
.search-modal .results-wrapper .result .add-to-cart {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  padding: 0.5rem 0;
  margin-top: 1rem;
  width: 100%;
  background-color: #06283d;
  color: white;
  font-size: 14px;
}
.search-modal .results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 40rem) {
  .search-modal .results {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 80rem) {
  .search-modal .results {
    grid-template-columns: repeat(6, 1fr);
    gap: 3rem;
  }
}

.banner {
  min-height: 28rem;
  position: relative;
}
@media (min-width: 50rem) {
  .banner {
    min-height: 30rem;
  }
}
@media (min-width: 80rem) {
  .banner {
    min-height: 36rem;
  }
}
.banner--page {
  min-height: 16rem;
  margin-bottom: 4rem;
}
@media (min-width: 50rem) {
  .banner--page {
    min-height: 24rem;
  }
}
@media (min-width: 60rem) {
  .banner--page {
    margin-bottom: 6rem;
  }
}
.banner__image {
  position: absolute;
  right: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 60rem) {
  .banner__image {
    width: 80%;
  }
}
.banner__background {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(0deg, #06283d 0%, rgba(6, 40, 61, 0.8) 34.96%, rgba(6, 40, 61, 0.75) 42.08%, rgba(6, 40, 61, 0.7) 49.85%, rgba(6, 40, 61, 0.55) 57.62%, rgba(6, 40, 61, 0.4) 62.15%);
}
@media (min-width: 60rem) {
  .banner__background {
    background: linear-gradient(90deg, #06283d 31.77%, rgba(6, 40, 61, 0.9) 50.4%, rgba(6, 40, 61, 0.8) 55.21%, rgba(6, 40, 61, 0.735135) 59.9%, rgba(6, 40, 61, 0.4) 70.83%, rgba(6, 40, 61, 0.25) 81.25%, rgba(0, 153, 255, 0.25) 100%);
  }
}
.banner__content {
  height: 100%;
  width: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.banner__content > * {
  margin: 8px 0;
}
@media (min-width: 60rem) {
  .banner__content > * {
    width: 60%;
    margin: 1rem 0;
  }
}
.banner__content h1 {
  font-size: 20px;
  line-height: 32px;
}
@media (min-width: 60rem) {
  .banner__content h1 {
    font-size: 34px;
    line-height: 44px;
  }
}
@media (min-width: 60rem) {
  .banner__content p {
    font-size: 18px;
  }
}
.banner__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
@media (min-width: 60rem) {
  .banner__buttons {
    gap: 2rem;
  }
}
.banner__buttons .btn {
  padding: 12px 10px;
  font-size: 12px;
  border-width: 2px;
}
@media (min-width: 40rem) {
  .banner__buttons .btn {
    padding: 1rem 1.75rem;
    font-size: 16px;
    border-width: 3px;
  }
}
.banner__button_1 {
  color: #47b5ff;
  border-color: #47b5ff;
  transition: opacity .4s;
  cursor: pointer;
}
.banner__button_1:hover {
  opacity: 0.6;

}
.banner__button_2 {
  color: #f9f871;
  border-color: #f9f871;
  transition: opacity .4s;
  cursor: pointer;	
	padding-left: 1em;
	padding-right: 1em;	
}
.banner__button_2:hover {
  opacity: 0.6;

}


.wp-block-button__link {
  background-color: transparent;
  transition: opacity .4s;
  cursor: pointer;


}

.wp-block-button__link:hover {
  opacity: 0.6;

}




.hero {
  text-align: center;
  background-color: #06283d;
  color: #FFF;
  height: 400px;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
}
.footer-menu ul li {
  margin: 1rem 0;
}
.footer-menu ul li a {
  color: #FFF;
  padding: 0.25rem 0;
  font-size: 24px;
}
.footer-menu ul li a:hover {
  text-decoration: underline;
}

.development {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 24rem;
  padding: 9rem 1rem 4rem;
}
@media (min-width: 60rem) {
  .development {
    min-height: 32rem;
  }
}
.development > * + * {
  margin-top: 2rem;
}
.development svg {
  fill: #06283d;
}

.progress-bar {
  counter-reset: step;
  padding-top: 3rem;
  padding-bottom: 8rem;
  padding-left: 0;
  padding-right: 0;
  max-width: 850px;
  margin: 0 auto;
}
@media (min-width: 60rem) {
  .progress-bar {
    padding-top: 5rem;
    padding-bottom: 10rem;
  }
}
.progress-bar li {
  list-style-type: none;
  float: left;
  width: 33.33%;
  position: relative;
  text-align: center;
  font-weight: 400;
  color: rgb(119, 119, 119);
  font-size: 14px;
}
@media (min-width: 60rem) {
  .progress-bar li {
    font-size: 18px;
  }
}
.progress-bar li.current {
  color: black;
  font-weight: 600;
}
.progress-bar li.active:before {
  border-color: #1363df;
  background-color: #1363df;
  color: #FFF;
}
.progress-bar li.active:after {
  background-color: #1363df;
}
.progress-bar li:before {
  content: counter(step);
  counter-increment: step;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: 2px solid #ddd;
  display: block;
  text-align: center;
  margin: 0 auto 16px auto;
  border-radius: 50%;
  background-color: #FFF;
  font-size: 16px;
}
@media (min-width: 50rem) {
  .progress-bar li:before {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}
.progress-bar li:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #DDD;
  top: 20px;
  left: -50%;
  z-index: -1;
}
@media (min-width: 50rem) {
  .progress-bar li:after {
    top: 25px;
  }
}
.progress-bar li:first-child:after {
  content: none;
}

.faq {
  background-color: #06283d;
  max-width: 1000px;
}
.faq-wrapper {
  display: flex;
  justify-content: center;
}
.faq > * + * {
  border-top: 1px solid #FFF;
}
.faq-item.active .faq-question {
  background-color: #1363df;
}
.faq-item.active .faq-question:last-child {
  border: none;
}
.faq-item.active .faq-answer {
  max-height: 60rem;
}
.faq-question {
  color: #FFF;
  font-size: 20px;
  font-weight: 600;
  width: 100%;
  text-align: left;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.faq-question:hover {
  background-color: #1d4a66;
}
.faq-question.editor {
  cursor: auto;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  position: relative;
  color: #FFF;
  transition: max-height 0.6s ease;
}
.faq-answer p {
  padding: 3rem 2rem;
}
.faq-answer.editor {
  max-height: none;
  overflow: auto;
}

.vcard {
  border: solid 1px #ededed;
  transition: 0.3s ease;
  text-align: center;
  border-radius: 4px;
  width: 100%;
}

.vcards {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 60rem) {
  .vcards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 80rem) {
  .vcards {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 60rem) {
  .calculator-form {
    width: 70%;
  }
}
.calculator-form-row {
  margin-bottom: 4rem;
}
.calculator-form-row-title {
  margin-top: 0;
  margin-bottom: 2rem;
  font-size: 20px;
}
@media (min-width: 50rem) {
  .calculator-form-row-title {
    font-size: 26px;
  }
}
.calculator-form-row-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (min-width: 60rem) {
  .calculator-form-row-fields {
    gap: 3rem;
  }
}
.calculator-form-row-fields > * {
  flex: 1;
}

.calculator-map {
  width: 100%;
  height: 400px;
}
@media (min-width: 60rem) {
  .calculator-map {
    height: 600px;
  }
}

.calculator-source {
  margin-top: 2rem;
  text-align: center;
  font-size: 15px;
  margin-bottom: 0;
}

.calculator-financials {
  padding: 3rem 2rem;
  border: 1px solid #eaeaea;
}
@media (min-width: 60rem) {
  .calculator-financials {
    width: 30%;
    position: sticky;
    top: 16%;
  }
}
.calculator-financials-primary {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #ccc;
  text-align: right;
}
.calculator-financials-primary > * {
  display: block;
}
.calculator-financials-primary-value {
  font-size: 34px;
  font-weight: 700;
}
.calculator-financials-secondary > * + * {
  margin-top: 1.25rem;
}
.calculator-financials-secondary-item {
  text-align: right;
}
.calculator-financials-secondary-item > * {
  display: block;
}
.calculator-financials-secondary-item-value {
  font-size: 24px;
  font-weight: 600;
}
.calculator-financials-range {
  text-align: center;
  margin-top: 2rem;
}
.calculator-financials-powered {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.calculator-financials-powered span {
  font-size: 14px;
}
.calculator-financials-powered strong {
  color: #06283d;
}

.calculator-chart {
  height: 250px !important;
}
@media (min-width: 50rem) {
  .calculator-chart {
    height: 325px !important;
  }
}
@media (min-width: 60rem) {
  .calculator-chart {
    height: 400px !important;
  }
}

.calculator-button {
  cursor: pointer;
  background-color: #06283d;
  color: #fff;
  width: 100%;
  padding: 0.75rem 0;
  font-weight: 600;
}

.calculator {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (min-width: 60rem) {
  .calculator {
    flex-direction: row;
    gap: 4rem;
    align-items: flex-start;
  }
}

.calculator-field {
  max-width: 300px;
  min-width: 240px;
}
.calculator-field-label {
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}
.calculator-field-label.req:after {
  content: "*";
  margin-left: 0.25rem;
  color: red;
}
.calculator-field input,
.calculator-field select {
  padding-top: 0.75rem;
  padding-bottom: 0.7rem;
  padding-left: 1.5rem;
  flex: 1;
}
.calculator-field input {
  border: none;
}
.calculator-field select {
  width: 100%;
}
.calculator-field-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #eaeaea;
}
.calculator-field-input input::-webkit-outer-spin-button, .calculator-field-input input::-webkit-inner-spin-button {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
}
.calculator-field-input input[type=number] {
  appearance: none;
  -moz-appearance: textfield;
}
.calculator-field-input input:focus {
  outline: none;
}
.calculator-field-input-unit {
  color: #9ca3af;
  cursor: default;
  padding-right: 1.5rem;
  min-width: 60px;
  text-align: right;
}

.calculator-loader {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.calculator-loader-text {
  font-size: 24px;
  font-weight: 500;
}

.site-footer {
  margin-top: 12rem;
  background-color: #06283d;
  color: #fff;
}
@media (min-width: 60rem) {
  .site-footer {
    margin-top: 16rem;
  }
}
.site-footer-top {
  padding: 3rem 0;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-direction: column;
}
@media (min-width: 50rem) {
  .site-footer-top {
    align-items: center;
    flex-direction: row;
  }
}
.site-footer-contact > * + * {
  margin-top: 0.5rem;
}
.site-footer-contact span {
  display: block;
}
.site-footer-contact a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}
.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 0;
  flex-direction: column-reverse;
}
@media (min-width: 50rem) {
  .site-footer-bottom {
    align-items: flex-end;
    flex-direction: row;
  }
}
.site-footer-bottom a {
  color: #fff;
  font-weight: 600;
  transition: 0.3s ease;
  display: inline-block;
  margin-left: 4px;
  font-size: 18px;
}
.site-footer-bottom a:hover {
  animation: SivulabraAnimation 1s ease-in-out infinite;
  opacity: 0.6;
}

input {
  border: 1px solid #cccccc;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

select {
  border: 1px solid #cccccc;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 4px;
}

.entry-content > .block-gap {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
@media (min-width: 60rem) {
  .entry-content > .block-gap {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }
}

.woocommerce-Tabs-panel .woocommerce-Tabs-panel--description .panel .entry-content .wc-tab  > h1, h2, h3, h4, h5, h6, p {
  width: 100%;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 3rem;
  max-width: 100%;	
}


.entry-content > h1, .entry-content > h2, .entry-content > h3, .entry-content > h4, .entry-content > h5, .entry-content > h6, .entry-content > p, .entry-content > ul, .entry-content > ol {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 3rem;
  max-width: 45rem;
}
.entry-content > h1, .entry-content > h2, .entry-content > h3, .entry-content > h4, .entry-content > h5, .entry-content > h6, .entry-content > .wp-block-columns {
  margin-top: 4rem;
}
.entry-content > [class*=wp-block] {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 3rem;
  max-width: 62rem;
}
.entry-content > .wp-block-media-text {
  margin-top: 6rem;
  margin-bottom: 6rem;
}
.entry-content > .wp-block-media-text__content > * {
  margin-bottom: 2rem;
}
@media (min-width: 60rem) {
  .entry-content > .wp-block-media-text {
    margin-top: 10rem;
    margin-bottom: 10rem;
  }
}
.entry-content > .alignfull {
  max-width: 85rem;
}
.entry-content > iframe {
  width: 100%;
  display: block;
  max-width: 85rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

body.no-scroll {
  overflow: hidden;
}


.form-row label {
  display: block;
}
.form-row input.input-text {
  width: 100%;
  margin: 0;
  outline: 0;
}
.form-row .input-text {
  border: 1px solid #eaeaea;
  background-color: #FFF;
  width: 100%;
  padding-left: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.form-row textarea.input-text {
  height: 150px;
}


.required {
  color: #f00;
}

@media screen and (min-width: 768px) {
  .col2-set .form-row-first {
    float: left;
    margin-right: 3.8%;
  }
  .col2-set .form-row-last {
    float: right;
    margin-right: 0;
  }
  .col2-set .form-row-first,
  .col2-set .form-row-last {
    width: 48.1%;
  }
}

table.shop_table_responsive {
  border-collapse: collapse;
  width: 100%;
}
table.shop_table_responsive thead {
  display: none;
}
table.shop_table_responsive tbody > * + .cart_item {
  border-top: 1px solid #eaeaea;
  padding-top: 0.5rem;
  margin-top: 0.5rem;
}
table.shop_table_responsive tbody th {
  display: none;
}
table.shop_table_responsive tr {
  display: block;
}
table.shop_table_responsive tr > * + * {
  margin-top: 0.5rem;
}
table.shop_table_responsive tr td {
  display: block;
  text-align: right;
  clear: both;
}
table.shop_table_responsive tr td::before {
  float: left;
}
table.shop_table_responsive tr td[data-title]::before {
  content: attr(data-title) ": ";
}
table.shop_table_responsive tr td.product-remove a {
  text-align: left;
  font-size: 30px;
  color: #1363df;
  transition: 0.3s;
}
table.shop_table_responsive tr td.product-remove a:hover {
  opacity: 0.6;
}
table.shop_table_responsive tr td.product-remove::before {
  display: none;
}
table.shop_table_responsive tr td.product-thumbnail a {
  display: flex;
  justify-content: center;
}
table.shop_table_responsive tr td.product-name a {
  color: #06283d;
  font-weight: 600;
}
table.shop_table_responsive tr td.product-name p {
  font-size: 14px;
  line-height: 1.5rem;
  margin: 0;
}
table.shop_table_responsive tr td.product-name > a + p {
  margin-top: 0.5rem;
}
table.shop_table_responsive tr td.product-subtotal {
  padding: 0.5rem 0;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}
table.shop_table_responsive tr td.actions::before, table.shop_table_responsive tr td.download-actions::before {
  display: none;
}
table.shop_table_responsive tr td.download-actions .button {
  display: block;
  text-align: center;
}

@media screen and (min-width: 48em) {
  table.shop_table_responsive {
    width: 100%;
  }
  table.shop_table_responsive thead th,
  table.shop_table_responsive thead td,
  table.shop_table_responsive tbody th,
  table.shop_table_responsive tbody td {
    border: 1px solid #eaeaea;
    padding: 0.75rem;
  }
  table.shop_table_responsive thead {
    display: table-header-group;
  }
  table.shop_table_responsive tbody th {
    display: table-cell;
  }
  table.shop_table_responsive tr {
    display: table-row;
  }
  table.shop_table_responsive tr th,
  table.shop_table_responsive tr td {
    text-align: left;
  }
  table.shop_table_responsive tr td {
    display: table-cell;
  }
  table.shop_table_responsive tr td::before {
    display: none;
  }
  table.shop_table_responsive tr td.product-subtotal {
    border: 1px solid #eaeaea;
    padding: 0.75rem;
  }
}

ins {
  text-decoration: none;
}

@keyframes MoveUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes spin {
  0% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
@keyframes SivulabraAnimation {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
@keyframes ReadMore {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.text-link {
  color: #1363df;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus-within {
  background-color: var(--color-white);
  border-radius: 0;
  box-shadow: 0 0 2px 2px rgba(22, 22, 22, 0.6);
  clip: auto;
  clip-path: none;
  display: block;
  font-size: 1.7rem;
  font-weight: var(--font-weight-bold);
  height: auto;
  left: 0.5rem;
  line-height: normal;
  padding: 1.5rem 2.3rem 1.4rem;
  text-decoration: none;
  top: 0.5rem;
  width: auto;
  z-index: 100000;
}

.container {
  max-width: 85rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
	margin-top: 80px;
}

@media (min-width: 1024px) {
	.container {
margin-top: 0px;
	}
}

@media (max-width: 1024px) {
	.container {
		padding-left: 5px;
		padding-right: 5px;
	}
}

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

.font-regular {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}

.flex {
  display: flex;
}

.justify-start {
  justify-content: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: flex-end;
}
.justify-around {
  justify-content: space-around;
}
.justify-between {
  justify-content: space-between;
}
.justify-evenly {
  justify-content: space-evenly;
}

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

.wp-block-media-text img {
  border-radius: 4px;
}
.wp-block-media-text__content > * {
  margin-bottom: 1rem;
}

.placeholder-block {
  padding: 40px 0;
  border: 2px solid black;
  text-align: center;
  font-weight: 500;
  margin: 12px 0;
}

.edit-post-visual-editor__post-title-wrapper {
  margin-bottom: 4rem;
}

.is-root-container.block-editor-block-list__layout > * + * {
  margin: 8rem 0;
}

.block-featured-products .loop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1rem;
  row-gap: 2rem;
}
@media (min-width: 35rem) {
  .block-featured-products .loop {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 40rem) {
  .block-featured-products .loop {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (min-width: 80rem) {
  .block-featured-products .loop {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    column-gap: 2rem;
    row-gap: 3rem;
  }
}
@media (min-width: 100rem) {
  .block-featured-products .loop {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }
}
.block-featured-products .block-title {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 2rem;
}
@media (min-width: 50rem) {
  .block-featured-products .block-title {
    margin-bottom: 3rem;
    font-size: 30px;
  }
}
.block-featured-products img {
  width: 100%;
  height: auto;
}
.block-featured-products .product {
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.06);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  transition: 0.3s ease;
  background-color: #fff;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.06);
  min-height: 100%;
}
.block-featured-products .product:hover {
  transform: translateY(-6px);
}
.block-featured-products .product .title,
.block-featured-products .product .price {
  padding: 0 0.5rem;
}
.block-featured-products .product .title {
  font-size: 12px;
  color: black;
}
@media (min-width: 50rem) {
  .block-featured-products .product .title {
    font-size: 14px;
  }
}
@media (min-width: 60rem) {
  .block-featured-products .product .title {
    font-size: 16px;
  }
}
.block-featured-products .product .price > * {
  display: block;
}
.block-featured-products .product .add-to-cart {
  display: block;
  position: relative;
  font-size: 12px;
  color: #fff;
  background-color: #1363df;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border: none;
  border-radius: 0;
  width: 100%;
  margin-top: 0.75rem;
  text-align: center;
  font-weight: 600;
}
@media (min-width: 60rem) {
  .block-featured-products .product .add-to-cart {
    font-size: 14px;
    margin-top: 1rem;
  }
}
@media (min-width: 100rem) {
  .block-featured-products .product .add-to-cart {
    font-size: 16px;
  }
}
.block-featured-products .product .add-to-cart:hover {
  opacity: 0.7;
}

.block-steps-grid .title {
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 60rem) {
  .block-steps-grid .title {
    margin-bottom: 4rem;
  }
}
.block-steps-grid .steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  counter-reset: step;
  row-gap: 2.5rem;
}
@media (min-width: 80rem) {
  .block-steps-grid .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
  }
}
.block-steps-grid .step {
  position: relative;
  text-align: center;
  font-weight: 500;
}
.block-steps-grid .step::before {
  content: counter(step) ".";
  counter-increment: step;
  position: relative;
  color: #1363df;
  font-weight: 700;
  font-size: 36px;
  display: block;
  margin-bottom: 0.75rem;
}
@media (min-width: 60rem) {
  .block-steps-grid .step::before {
    font-size: 44px;
  }
}

.block-sales-contacts .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 50rem) {
  .block-sales-contacts .container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 80rem) {
  .block-sales-contacts .container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.block-sales-contacts .contact {
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.block-sales-contacts .contact .image {
  display: flex;
  justify-content: center;
  padding-top: 1rem;
}
.block-sales-contacts .contact .image img {
  border-radius: 50%;
  width: 180px;
  height: 180px;
  object-fit: cover;
}
.block-sales-contacts .contact .title,
.block-sales-contacts .contact .wysiwyg,
.block-sales-contacts .contact .info {
  padding: 0 1rem;
}
.block-sales-contacts .contact .title {
  text-align: center;
  margin: 2rem 0;
}
.block-sales-contacts .contact .wysiwyg {
  flex-grow: 1;
  hyphens: auto;
}
.block-sales-contacts .contact .wysiwyg p {
  margin: 0 0 1rem 0;
}
.block-sales-contacts .contact .info {
  margin-top: 1rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.block-sales-contacts .contact .info-item {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.block-sales-contacts .contact .info-item a {
  text-decoration: underline;
  color: black;
  transition: opacity 0.2s;
}
.block-sales-contacts .contact .info-item a:hover {
  opacity: 0.5;
}
.block-sales-contacts .contact .actions {
  display: flex;
}
.block-sales-contacts .contact .actions > * + * {
  border-left: 1px solid #fff;
}
.block-sales-contacts .contact .actions-item {
  width: 50%;
  display: flex;
  justify-content: center;
  color: #fff;
  padding: 0.75rem;
  background-color: #06283d;
  transition: background-color 0.2s ease;
}
.block-sales-contacts .contact .actions-item:hover {
  background-color: #1363df;
}

.block-split-text-image.image-right .col-image {
  order: 2;
}
.block-split-text-image.image-right .col-content {
  order: 1;
}
.block-split-text-image .cols {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1000px) {
  .block-split-text-image .cols {
    grid-template-columns: repeat(2, 1fr);
  }
}
.block-split-text-image .cols .col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block-split-text-image .cols .col-content {
  background-color: #06283d;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
}
@media (min-width: 60rem) {
  .block-split-text-image .cols .col-content {
    padding: 3rem;
  }
}
.block-split-text-image .cols .col-content .title {
  font-size: 20px;
}
@media (min-width: 80rem) {
  .block-split-text-image .cols .col-content .title {
    font-size: 32px;
  }
}
.block-split-text-image .cols .col-content .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.block-split-text-image .cols .col-content .button:nth-child(odd) {
  color: #47b5ff;
  border-color: #47b5ff;
}
.block-split-text-image .cols .col-content .button:nth-child(even) {
  color: #f9f871;
  border-color: #f9f871;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html,
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  text-rendering: optimizeSpeed;

}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: "Titillium Web", sans-serif;
	margin-left: 1px;
	margin-right: 1px;
}

h1 {
  font-size: 24px;
  line-height: 2rem;
}
@media (min-width: 1024px) {
  h1 {
    font-size: 36px;
  }
	body {
		margin-left: 20px;
		margin-right: 20px;
	}
}
@media (min-width: 1024px) {
  h1 {
    line-height: 50px;
  }
}

h2 {
  font-size: 24px;
}
@media (min-width: 80rem) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-size: 21px;
}
@media (min-width: 80rem) {
  h3 {
    font-size: 24px;
  }
}

h4 {
  font-size: 18px;
}
@media (min-width: 80rem) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 14px;
}
@media (min-width: 80rem) {
  h5 {
    font-size: 16px;
  }
}

h6 {
  font-size: 12px;
}
@media (min-width: 80rem) {
  h6 {
    font-size: 14px;
  }
}

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

p {
  font-size: 16px;
  line-height: 30px;
}

a {
  text-decoration: none;
}

p {
  margin: 0 0 1.25rem 0;
}
p a {
  text-decoration: none;
  font-weight: 600;
  color: #06283d;
  transition: opacity 0.3s ease;
}
p a:hover {
  text-decoration: underline;
  opacity: 0.6;
}

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