/*!
Theme Name: splash-paradise
Theme URI: http://underscores.me/
Author: Petar Markovic
Author URI: https://petars.world
Description: Paradise Limited
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE 
Text Domain: splash-paradise
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

splash-paradise is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
/**
 * Main content containers
 * 1. Make the container full-width with a maximum width
 * 2. Center it in the viewport
 * 3. Leave some space on the edges, especially valuable on small screens
 */
.container {
  max-width: 1180px;
  /* 1 */
  margin-left: auto;
  /* 2 */
  margin-right: auto;
  /* 2 */
  padding-left: 1.25rem;
  /* 3 */
  padding-right: 1.25rem;
  /* 3 */
  width: 100%;
  /* 1 */
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.single-product-wrapper {
  padding: 0 24px;
}

.woocommerce {
  margin: auto;
}

.woocommerce-order {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/*--------------------------------------------------------------
# header
--------------------------------------------------------------*/
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px !important;
  position: relative;
  z-index: 10;
}
.site-header .site-branding {
  z-index: 15;
}
.site-header .site-branding a.custom-logo-link:focus {
  outline: none;
}
.site-header .site-branding a.custom-logo-link img.custom-logo {
  width: 75px;
  transition: transform 0.3s ease;
}
.site-header .site-branding a.custom-logo-link img.custom-logo:hover {
  transform: scale(1.05);
}
.site-header .main-navigation {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .site-header .main-navigation {
    gap: 48px;
  }
}
.site-header .main-navigation .primary-menu-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
}
@media (min-width: 768px) {
  .site-header .main-navigation .primary-menu-wrap {
    padding: unset;
    position: relative;
    height: auto;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.site-header .main-navigation #primary-menu li {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  transition-delay: 0s;
}
@media (min-width: 768px) {
  .site-header .main-navigation #primary-menu li {
    opacity: 1;
    transform: translateY(0);
  }
}
.site-header .main-navigation #primary-menu li a {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  position: relative;
  display: inline-block;
  overflow: hidden;
}
@media (min-width: 768px) {
  .site-header .main-navigation #primary-menu li a {
    font-size: 1rem;
  }
}
.site-header .main-navigation #primary-menu li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}
.site-header .main-navigation #primary-menu li a:hover::after {
  width: 100%;
}
.site-header .main-navigation #primary-menu li a:visited {
  color: white;
}
.site-header .main-navigation #cta-header {
  position: fixed;
  bottom: 2rem;
  left: 0;
  right: 0;
  width: max-content;
  margin: auto;
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  transition: opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: 0s;
  gap: 1rem;
}
@media (min-width: 768px) {
  .site-header .main-navigation #cta-header {
    position: relative;
    inset: unset;
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
  }
}
.site-header .main-navigation #cta-header li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  color: #01161B;
  padding: 16px 24px;
  background-color: #F2F2F2;
  border-radius: 40px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(1);
  justify-content: center;
}
.site-header .main-navigation #cta-header li a:hover {
  background-color: #e1e1e1;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.site-header .main-navigation #cta-header li a:hover img {
  transform: rotate(-45deg) scale(1.1);
}
.site-header .main-navigation #cta-header li a:active {
  transform: scale(0.98);
}
.site-header .main-navigation #cta-header li a:visited {
  color: #01161B;
}
.site-header .main-navigation #cta-header li a img {
  vertical-align: middle;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.site-header .main-navigation #cta-header li:first-child {
  margin-bottom: 16px;
}
@media (min-width: 601px) {
  .site-header .main-navigation #cta-header li:first-child {
    margin-bottom: 0;
  }
}
.site-header .main-navigation.toggled .primary-menu-wrap {
  height: 100dvh;
  padding-top: 100px;
  display: block;
  background-color: rgba(33, 32, 32, 0.6392156863);
  backdrop-filter: blur(4px);
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (min-width: 768px) {
  .site-header .main-navigation.toggled .primary-menu-wrap {
    backdrop-filter: unset;
    background-color: unset;
  }
}
.site-header .main-navigation.toggled #primary-menu li {
  opacity: 1;
  transform: translateY(0);
}
.site-header .main-navigation.toggled #primary-menu li:nth-child(1) {
  transition-delay: 0.2s;
}
.site-header .main-navigation.toggled #primary-menu li:nth-child(2) {
  transition-delay: 0.3s;
}
.site-header .main-navigation.toggled #primary-menu li:nth-child(3) {
  transition-delay: 0.4s;
}
.site-header .main-navigation.toggled #primary-menu li:nth-child(4) {
  transition-delay: 0.5s;
}
.site-header .main-navigation.toggled #primary-menu li:nth-child(5) {
  transition-delay: 0.6s;
}
.site-header .main-navigation.toggled #primary-menu li:nth-child(6) {
  transition-delay: 0.7s;
}
.site-header .main-navigation.toggled #cta-header {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.6s !important;
}

.menu-toggle {
  z-index: 20;
}

nav#site-navigation button.menu-toggle {
  padding: 0;
  margin: 0;
  background-color: transparent;
  outline: 0;
  border: 0;
  transition: transform 0.2s ease;
}
nav#site-navigation button.menu-toggle:hover {
  transform: scale(1.1);
}
nav#site-navigation button.menu-toggle:active {
  transform: scale(0.95);
}
nav#site-navigation button.menu-toggle .hamburger {
  display: block;
  height: 100%;
  position: relative;
  cursor: pointer;
  padding: 12px;
  width: 50px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: rgba(33, 32, 32, 0.4117647059);
  backdrop-filter: blur(6px);
  border-radius: 4px;
  transition: all 0.3s ease;
}
nav#site-navigation button.menu-toggle .hamburger:hover {
  background-color: rgba(33, 32, 32, 0.6666666667);
  backdrop-filter: blur(8px);
}
nav#site-navigation button.menu-toggle .hamburger span {
  max-width: 20px;
  border-radius: 4px;
}
nav#site-navigation button.menu-toggle .hamburger span.line-1 {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  top: 0;
  margin-bottom: 6px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none;
  margin-left: auto;
  margin-right: auto;
  transform-origin: center;
}
nav#site-navigation button.menu-toggle .hamburger span.line-2 {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  top: 0;
  margin-bottom: 6px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none;
  margin-left: auto;
  margin-right: auto;
  transform-origin: center;
}
nav#site-navigation button.menu-toggle .hamburger span.line-3 {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  top: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none;
  margin-left: auto;
  margin-right: auto;
  transform-origin: center;
}
nav#site-navigation button.menu-toggle .hamburger .cross {
  position: absolute;
  width: 0;
  height: 2px;
  background: white;
  top: 50%;
  left: 50%;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translate(-50%, -50%) rotate(45deg);
  transition-delay: 0.2s;
  border-radius: 4px;
}
nav#site-navigation button.menu-toggle .hamburger .cross:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: 0.1s;
  border-radius: 4px;
}

#site-navigation.toggled button.menu-toggle .hamburger {
  background-color: rgba(33, 32, 32, 0.8666666667);
  transform: rotate(180deg);
}
#site-navigation.toggled button.menu-toggle .hamburger .line-1 {
  width: 0;
  transition-delay: 0.1s;
  transform: scale(0);
}
#site-navigation.toggled button.menu-toggle .hamburger .line-2 {
  width: 0;
  transition-delay: 0.2s;
  transform: scale(0);
}
#site-navigation.toggled button.menu-toggle .hamburger .line-3 {
  width: 0;
  transition-delay: 0.3s;
  transform: scale(0);
}
#site-navigation.toggled button.menu-toggle .hamburger .cross {
  width: 25px;
  transition-delay: 0.4s;
}
#site-navigation.toggled button.menu-toggle .hamburger .cross:after {
  width: 25px;
  transition-delay: 0.5s;
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate-slide-in-top {
  animation: slideInFromTop 0.4s ease-out;
}

.animate-slide-in-bottom {
  animation: slideInFromBottom 0.4s ease-out;
}

.animate-fade-in-scale {
  animation: fadeInScale 0.3s ease-out;
}

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/* Normalize
--------------------------------------------- */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

@view-transition {
  navigation: auto;
}
/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* Box sizing
--------------------------------------------- */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

p {
  margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

.copy {
  text-align: center;
}

body,
button,
input,
select,
optgroup,
textarea {
  color: #404040;
  font-family: "Libre Franklin", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

p.desc {
  font-size: 18px;
}

/* Elements
--------------------------------------------- */
body {
  background: #fff;
}

#page {
  width: 100%;
  height: 100dvh;
}

.site-footer-coming-soon {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
}
.site-footer-coming-soon .site-info {
  text-align: center;
}
.site-footer-coming-soon .site-info a {
  text-decoration: none;
  color: #fff;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul,
ol {
  margin: 0 0 1.5em 1.5em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1em;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

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

figure {
  margin: 1em 0;
}

.woocommerce-product-attributes-item__value {
  margin: 0;
}
.woocommerce-product-attributes-item__value p {
  margin: 0;
}

/* Links
--------------------------------------------- */
a {
  color: #4169e1;
}
a:visited {
  color: #800080;
}
a:hover, a:focus, a:active {
  color: #01161B;
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}

#breadcrumbs a {
  font-size: 1rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
}
#breadcrumbs a:hover {
  text-decoration: underline;
}
#breadcrumbs a:visited {
  color: #fff;
}

/* Forms
--------------------------------------------- */
button,
input[type=button],
input[type=reset],
input[type=submit] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1;
  padding: 0.6em 1em 0.4em;
}
button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  border-color: #ccc #bbb #aaa;
}
button:active, button:focus,
input[type=button]:active,
input[type=button]:focus,
input[type=reset]:active,
input[type=reset]:focus,
input[type=submit]:active,
input[type=submit]:focus {
  border-color: #aaa #bbb #bbb;
}

.button {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  padding: 1rem 32px;
  border-radius: 40px;
  text-transform: uppercase;
  height: 60px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.button img {
  margin-left: 0.5rem;
  transition: all 0.2s ease;
}
.button:hover img {
  rotate: -45deg;
  transition: all 0.2s ease;
}
.button--one {
  color: #0b0b0b;
  background-color: #e69b42;
  border: 2px solid transparent;
}
.button--one:hover {
  background-color: #fba740;
  border-color: #ba6b0b;
  transition: all 0.2s ease;
}
.button--one:visited {
  color: inherit;
}
.button--two {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.2352941176);
  border: 2px solid white;
  backdrop-filter: blur(4px);
}
.button--two:hover {
  transition: all 0.2s ease;
  background-color: rgba(10, 10, 10, 0.2117647059);
  color: white;
}
.button--two:visited {
  color: white;
}
.button--two img {
  object-fit: contain;
  filter: invert(1) brightness(1);
}
.button--three {
  color: #ffffff;
  background-color: #0f9cb9;
  border: 2px solid transparent;
  backdrop-filter: blur(4px);
}
.button--three:hover {
  transition: all 0.2s ease;
  background-color: #1c364f;
  color: white;
}
.button--three:visited {
  color: white;
}
.button--three img {
  object-fit: contain;
  filter: invert(1) brightness(1);
}
.button--four {
  color: #0F9CB9;
  background-color: transparent;
  padding: 0;
  height: unset;
}
.button--four:hover {
  transition: all 0.2s ease;
  color: #0F9CB9;
}
.button--four:hover img {
  rotate: unset;
  transform: translateX(5px);
}
.button--four:visited {
  color: #0F9CB9;
}

.wc-block-components-button.wc-block-components-checkout-place-order-button {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  padding: 1rem 32px;
  border-radius: 40px;
  text-transform: uppercase;
  height: 60px;
  transition: all 0.2s ease;
  color: #0b0b0b;
  background-color: #e69b42;
  border: 2px solid transparent;
}
.wc-block-components-button.wc-block-components-checkout-place-order-button img {
  margin-left: 0.5rem;
  transition: all 0.2s ease;
}
.wc-block-components-button.wc-block-components-checkout-place-order-button:hover img {
  rotate: -45deg;
  transition: all 0.2s ease;
}
.wc-block-components-button.wc-block-components-checkout-place-order-button:hover {
  background-color: #fba740;
  border-color: #ba6b0b;
  transition: all 0.2s ease;
}
.wc-block-components-button.wc-block-components-checkout-place-order-button:visited {
  color: inherit;
}

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link) {
  min-height: unset !important;
}

.h-unset {
  min-height: unset !important;
  height: unset;
}
.h-unset a {
  color: #fff;
  text-decoration: none;
}

.woo-submit {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.wc-forward {
  padding: 0 1rem;
  height: unset;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
  color: #111;
}

select {
  border: 1px solid #ccc;
}

textarea {
  width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
.page-banner-blog {
  margin-top: -112px;
  display: flex;
  width: 100%;
  min-height: 450px;
  height: 500px;
  position: relative;
}
.page-banner-blog .banner-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  color: #fff;
  text-align: center;
}
.page-banner-blog .banner-wrapper .title {
  font-size: 48px;
  line-height: 64px;
  max-width: 756px;
  margin: 0 auto;
}
.page-banner-blog .bottom-pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  width: 100%;
  height: 144px;
}

.nav-links .nav-next, .nav-links .nav-previous {
  display: flex;
  padding: 12px;
}
.nav-links .nav-next a, .nav-links .nav-previous a {
  text-decoration: none;
  color: #1C1A19;
}
.nav-links .nav-next a:hover, .nav-links .nav-previous a:hover {
  text-decoration: underline;
}
.nav-links .nav-previous {
  border-right: 2px solid #1C1A19;
}
.nav-links .nav-next {
  border-left: 2px solid #1C1A19;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-radius: 8px;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Navigation
--------------------------------------------- */
.main-navigation {
  display: block;
}
.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.main-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 100%;
  left: -999em;
  z-index: 99999;
}
.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}
.main-navigation ul ul li:hover > ul, .main-navigation ul ul li.focus > ul {
  display: block;
  left: auto;
}
.main-navigation ul ul a {
  width: 200px;
}
.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: auto;
}
.main-navigation li {
  position: relative;
}
.main-navigation a {
  display: block;
  text-decoration: none;
}
/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
  .main-navigation ul {
    display: flex;
    gap: 48px;
    align-items: center;
  }
}
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
}
.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
  display: flex;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  flex: 1 0 50%;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  text-align: end;
  flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
  display: block;
}

.post,
.page {
  margin: 0 0 1.5em;
}

.updated:not(.published) {
  display: none;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

figure.wp-block-image {
  text-align: center;
}

article.post .entry-content {
  max-width: 900px;
  margin: 0 auto;
}

/* Comments
--------------------------------------------- */
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
  margin: 0 0 1.5em;
}
.widget select {
  max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

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

/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

figure {
  margin: 0;
}

.gmap--gmap-full {
  padding-left: 0;
  padding-right: 0;
}
.gmap--gmap-full iframe {
  display: block !important;
}

.contact-form {
  margin-top: 5.5rem !important;
  margin-bottom: 3.5rem;
}
.contact-form__form {
  padding: 1rem 0;
  margin-top: 1rem;
  display: grid;
  grid-row-gap: 1rem;
  grid-column-gap: 1rem;
}
.contact-form__form span.wpcf7-form-control-wrap {
  display: grid;
}
.contact-form__form #firstname {
  grid-row: 1/2;
  grid-column: 1/3;
  font-family: "Montserrat", sans-serif;
}
.contact-form__form #lastname {
  grid-row: 2/3;
  grid-column: 1/3;
  font-family: "Montserrat", sans-serif;
}
.contact-form__form #mail {
  grid-row: 3/4;
  grid-column: 1/3;
  font-family: "Montserrat", sans-serif;
}
.contact-form__form #number {
  grid-row: 4/5;
  grid-column: 1/3;
  font-family: "Montserrat", sans-serif;
}
.contact-form__form #message {
  grid-row: 5/8;
  grid-column: 1/3;
  height: 11.875rem;
  resize: none;
  line-height: 1.875rem;
  padding: 1.25rem 1.875rem;
  font-family: "Montserrat", sans-serif;
}
.contact-form__form input.wpcf7-submit {
  width: 100%;
  grid-area: 8/1/8/3;
  cursor: pointer;
}
@media (min-width: 601px) {
  .contact-form__form #firstname {
    grid-row: 1/2;
    grid-column: 1/2;
  }
  .contact-form__form #lastname {
    grid-row: 1/2;
    grid-column: 2/3;
  }
  .contact-form__form #mail {
    grid-row: 2/3;
    grid-column: 1/2;
  }
  .contact-form__form #number {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  .contact-form__form #message {
    grid-row: 3/6;
    grid-column: 1/3;
    height: 11.875rem;
    resize: none;
    line-height: 1.875rem;
    padding: 1.25rem 1.875rem;
  }
  .contact-form__form input.wpcf7-submit {
    padding: 1.3rem 2.5rem;
    grid-column: 1/3;
    margin: 0 auto;
    outline: 0;
    border: 0;
    grid-row: unset;
    width: auto;
  }
}
@media (max-width: 767px) {
  .contact-form__form #firstname {
    grid-row: 1/2;
    grid-column: 1/3;
  }
  .contact-form__form #lastname {
    grid-row: 2/3;
    grid-column: 1/3;
  }
  .contact-form__form #mail {
    grid-row: 3/4;
    grid-column: 1/3;
  }
  .contact-form__form #number {
    grid-row: 4/5;
    grid-column: 1/3;
  }
  .contact-form__form #message {
    grid-row: 5/8;
    grid-column: 1/3;
    height: 11.875rem;
    resize: none;
    line-height: 1.875rem;
    padding: 1.25rem 1.875rem;
  }
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/* Jetpack infinite scroll
--------------------------------------------- */
/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.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 !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

.grecaptcha-badge {
  visibility: hidden;
}

.input, #firstname, #lastname, #mail, #number, textarea {
  width: 100%;
  height: 4.375rem;
  background: #f0f0f0;
  border: none;
  text-align: left;
  padding: 0 1.875rem;
  font-size: 1.25rem;
  letter-spacing: 0.035rem;
  line-height: 4.375rem;
  color: #101010;
  margin: 0;
  outline: 0;
  border-radius: 8px !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  -webkit-border-radius: 8px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.input:focus, #firstname:focus, #lastname:focus, #mail:focus, #number:focus, textarea:focus {
  border-bottom: 0.25rem solid #e9a345;
  background: #fcfcfc;
}
.input--left, #firstname--left, #lastname--left, #mail--left, #number--left, textarea--left {
  border-left: 0.25rem solid transparent;
}
.input--left:focus, #firstname--left:focus, #lastname--left:focus, #mail--left:focus, #number--left:focus, textarea--left:focus {
  border-right: 0;
  border-left: 0.25rem solid #e9a345;
}

.wpcf7-response-output {
  text-align: center;
}

.m-auto {
  margin: 0 auto !important;
}

/* Alignments
--------------------------------------------- */
.alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/*--------------------------------------------------------------
# footer
--------------------------------------------------------------*/
.newsletter {
  background-color: #479ab6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 40px 24px !important;
  flex-direction: column;
  gap: 48px;
  margin-bottom: -90px !important;
  z-index: 999;
  position: relative;
  margin-inline: 24px !important;
}
@media (min-width: 1024px) {
  .newsletter {
    margin-inline: auto !important;
    flex-direction: row;
    padding: 40px 48px;
  }
}
.newsletter-info .title {
  font-size: 36px;
  line-height: 40px;
  font-weight: bold;
  color: #fff;
  padding: 0;
  margin: 0 0 8px 0;
}
.newsletter-info .desc {
  font-size: 18px;
  line-height: 26px;
  margin: 0;
  color: #fff;
}
.newsletter-form {
  flex: 1;
  width: 100%;
}
.newsletter-form form .sib_signup_box_inside_1 {
  display: flex;
  flex-direction: column;
}
.newsletter-form form .sib_signup_box_inside_1 .form-wrapper {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
@media (min-width: 768px) {
  .newsletter-form form .sib_signup_box_inside_1 .form-wrapper {
    flex-direction: row;
  }
}
.newsletter-form form .sib_signup_box_inside_1 .form-wrapper .sib-email-area {
  width: 100%;
}
.newsletter-form form .sib_signup_box_inside_1 p {
  margin: 0;
}
.newsletter-form form .sib_signup_box_inside_1 input {
  height: 60px;
  border-radius: 8px;
}
.newsletter-form form .sib_signup_box_inside_1 input[type=email] {
  padding: 0 12px;
}
.newsletter-form form .sib_signup_box_inside_1 input[type=submit] {
  background-color: transparent;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  line-height: 26px;
  border-radius: 8px;
  padding: 0 24px;
  cursor: pointer;
  border: 2px solid #fff;
  transition: all 0.2s ease;
  width: 100%;
}
.newsletter-form form .sib_signup_box_inside_1 input[type=submit]:hover {
  background-color: #d89b3c;
  border-color: #ba6b0b;
  transition: all 0.2s ease;
}

.site-footer {
  background-color: #1C364F;
  padding: 0 24px;
}
.site-footer .site-info .footer-top {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  margin-bottom: 20px;
  padding-top: 150px;
  gap: 48px;
  align-items: start;
}
@media (min-width: 601px) {
  .site-footer .site-info .footer-top {
    grid-template-columns: 2fr repeat(3, 1fr);
  }
}
.site-footer .site-info .footer-top .top-item {
  text-align: center;
}
@media (min-width: 601px) {
  .site-footer .site-info .footer-top .top-item {
    text-align: left;
  }
}
.site-footer .site-info .footer-top .top-item .title {
  color: #e9a345;
}
.site-footer .site-info .footer-top .top-item > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.site-footer .site-info .footer-top .top-item > ul li a {
  text-decoration: none;
  color: #B9B9B9;
}
.site-footer .site-info .footer-top .top-item > ul li a:hover {
  text-decoration: underline;
}
.site-footer .site-info .footer-top .logo {
  margin: 0;
  text-align: center;
}
@media (min-width: 601px) {
  .site-footer .site-info .footer-top .logo {
    text-align: left;
  }
}
.site-footer .site-info .footer-top .logo img {
  width: 100px;
}
.site-footer .site-info .footer-top .desc {
  color: #B9B9B9;
  text-align: center;
}
@media (min-width: 601px) {
  .site-footer .site-info .footer-top .desc {
    text-align: left;
  }
}
.site-footer .site-info .footer-top .social-icons {
  display: flex;
  gap: 12px;
  justify-content: center;
}
@media (min-width: 601px) {
  .site-footer .site-info .footer-top .social-icons {
    justify-content: unset;
  }
}
.site-footer .site-info .footer-bottom {
  display: flex;
  justify-content: center;
  color: #B9B9B9;
}

/* Blocks
--------------------------------------------- */
/* Typography
--------------------------------------------- */
.page-banner-1 {
  display: flex;
  width: 100%;
  height: 900px;
  position: relative;
}
.page-banner-1 .banner-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 48px;
  color: #fff;
  padding: 0 24px;
}
.page-banner-1 .banner-wrapper .title {
  font-size: 58px;
  line-height: 64px;
  max-width: 756px;
  margin: 0;
}
@media (min-width: 601px) {
  .page-banner-1 .banner-wrapper .title {
    font-size: 64px;
    line-height: 64px;
  }
}
.page-banner-1 .banner-wrapper .description {
  font-size: 1.125rem;
  line-height: 1.5;
  max-width: 746px;
  margin: 0;
}
.page-banner-1 .banner-wrapper .cta-wrapper {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 601px) {
  .page-banner-1 .banner-wrapper .cta-wrapper {
    flex-direction: row;
    width: max-content;
  }
}
.page-banner-1 .banner-wrapper .cta-wrapper a {
  width: 100%;
  text-align: center;
}
@media (min-width: 601px) {
  .page-banner-1 .banner-wrapper .cta-wrapper a {
    flex-direction: row;
    width: max-content;
  }
}
.page-banner-1 .bottom-pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  width: 100%;
  height: 144px;
}

/* Typography
--------------------------------------------- */
.page-banner-2 {
  display: flex;
  width: 100%;
  min-height: 450px;
  height: 500px;
  position: relative;
}
.page-banner-2 .banner-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  color: #fff;
}
.page-banner-2 .banner-wrapper .title {
  font-size: 64px;
  line-height: 64px;
  max-width: 756px;
  margin: 0;
}
.page-banner-2 .bottom-pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  width: 100%;
  height: 144px;
}

.block-1 {
  position: relative;
  height: 100dvh;
  object-fit: cover;
}
.block-1 video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block-1 img.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 350px;
  height: auto;
}

/* Typography
--------------------------------------------- */
.block-2 {
  padding-block: 50px;
}
.block-2-wrapper {
  display: grid;
  align-items: center;
  gap: 48px;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  padding: 0 24px;
}
@media (min-width: 601px) {
  .block-2-wrapper {
    grid-template-columns: 4fr 3fr;
    grid-template-rows: 1fr;
  }
}
.block-2-wrapper figure {
  position: relative;
  margin: 0;
}
.block-2-wrapper figure .main-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: middle;
  border-radius: 8px;
}
.block-2-wrapper figure .pattern {
  position: absolute;
  bottom: 40px;
  right: -10px;
  width: 100px;
  object-fit: contain;
}
@media (min-width: 601px) {
  .block-2-wrapper figure .pattern {
    bottom: 40px;
    right: -35px;
  }
}
.block-2-wrapper .item-info {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.block-2-wrapper .item-info .info-top-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.block-2-wrapper .item-info .info-top-wrap .top-subtitle {
  display: inline-flex;
  gap: 8px;
  color: #1F58AE;
  align-items: center;
  text-transform: uppercase;
}
.block-2-wrapper .item-info .info-top-wrap .top-subtitle-p {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
}
.block-2-wrapper .item-info .info-top-wrap .top-subtitle img {
  height: 1rem;
  width: auto;
  object-fit: contain;
}
.block-2-wrapper .item-info .info-top-wrap .title {
  font-size: 64px;
  line-height: 68px;
  font-weight: bold;
  margin: 0;
  color: #01161B;
}
.block-2-wrapper .item-info .desc {
  margin: 0;
}

.rtl {
  direction: rtl;
}
.rtl > * {
  direction: ltr;
}

/* Typography
--------------------------------------------- */
.block-3-wrapper {
  display: grid;
  grid-template-rows: auto;
  column-gap: 48px;
  row-gap: 70px;
  padding-bottom: 70px;
  padding: 0 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .block-3-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
.block-3-wrapper .block-item {
  position: relative;
}
.block-3-wrapper .block-item figure {
  height: 400px;
  background-color: aliceblue;
}
.block-3-wrapper .block-item figure .block-img {
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.block-3-wrapper .block-item-info {
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  background-color: rgba(255, 255, 255, 0.6509803922);
  border-radius: 8px;
  padding: 32px;
  position: absolute;
  width: 70%;
  right: 24px;
  bottom: -40px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(5px) saturate(0.5);
}
.block-3-wrapper .block-item-info .block-title {
  color: #01161B;
  font-size: 36px;
  line-height: 40px;
  margin: 0 0 21px 0;
}
.block-3-wrapper .block-item-info .block-desc {
  margin: 0 0 32px 0;
  font-size: 18px;
  line-height: 26px;
}
.block-3-wrapper .block-item-info .block-desc:last-child {
  margin: 0;
}

/* Typography
--------------------------------------------- */
.block-4 {
  padding: 0 24px 100px 24px;
}
.block-4-wrapper {
  position: relative;
  border-radius: 8px;
}
.block-4-wrapper .block-info {
  max-width: 745px;
  margin: 0 auto;
  padding: 72px 24px;
  text-align: center;
}
.block-4-wrapper .block-info .top-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 1rem 0;
}
.block-4-wrapper .block-info .top-subtitle-p {
  font-size: 1rem;
  font-weight: bold;
  color: #f59f27;
  margin: 0;
}
.block-4-wrapper .block-info .title {
  color: #fff;
  margin: 0 0 2rem 0;
  font-size: 64px;
  line-height: 68px;
  font-weight: bold;
}
.block-4-wrapper .block-info .desc {
  color: #fff;
  font-size: 18px;
  line-height: 26px;
  margin: 0 0 2rem 0;
}
.block-4-wrapper .block-info .cta-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
@media (min-width: 601px) {
  .block-4-wrapper .block-info .cta-wrapper {
    flex-direction: row;
  }
}
.block-4-wrapper .block-info .cta-wrapper a {
  width: 100%;
  text-align: center;
}
@media (min-width: 601px) {
  .block-4-wrapper .block-info .cta-wrapper a {
    flex-direction: row;
    width: max-content;
  }
}
.block-4-wrapper .pattern {
  position: absolute;
}
.block-4-wrapper .pattern--1 {
  top: 24px;
  left: -8px;
}
.block-4-wrapper .pattern--2 {
  bottom: 24px;
  right: -8px;
}

/* Typography
--------------------------------------------- */
.block-5 {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .block-5 {
    gap: 48px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.block-5 figure {
  position: relative;
  margin: 0;
}
.block-5 figure .main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
}
.block-5 figure .pattern {
  position: absolute;
  bottom: 40px;
  right: -10px;
  width: 100px;
  object-fit: contain;
}
.block-5-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  gap: 48px;
  max-width: 600px;
  margin: 0;
  padding-block: 2rem;
  padding-inline: 24px;
}
.block-5-wrapper .item-info {
  display: flex;
  flex-direction: column;
  gap: 48px;
  color: #fff;
}
.block-5-wrapper .item-info .info-top-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.block-5-wrapper .item-info .info-top-wrap .top-subtitle {
  display: inline-flex;
  gap: 8px;
  color: #1F58AE;
  align-items: center;
  text-transform: uppercase;
}
.block-5-wrapper .item-info .info-top-wrap .top-subtitle-p {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
}
.block-5-wrapper .item-info .info-top-wrap .top-subtitle img {
  height: 1rem;
  width: auto;
  object-fit: contain;
}
.block-5-wrapper .item-info .info-top-wrap .title {
  font-size: 64px;
  line-height: 68px;
  font-weight: bold;
  margin: 0;
}
.block-5-wrapper .item-info .desc {
  margin: 0;
}
.block-5.rtl figure .pattern {
  right: auto;
  left: -10px;
}

.rtl {
  direction: rtl;
}
.rtl > * {
  direction: ltr;
}

.block-6 {
  overflow: hidden;
  position: relative;
}
.block-6-wrapper {
  padding-block: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.block-6-wrapper .top-subtitle {
  display: inline-flex;
  gap: 8px;
  color: black;
  align-items: center;
  justify-content: center;
}
.block-6-wrapper .top-subtitle-p {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
  color: black;
}
.block-6-wrapper .top-subtitle img {
  height: 1rem;
  width: auto;
  object-fit: contain;
}
.block-6-wrapper .video-player {
  width: 100%;
  min-height: 500px;
  border-radius: 8px;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}
.block-6 .pattern {
  position: absolute;
  bottom: 48px;
  right: -8px;
  object-fit: contain;
}

/* Typography
--------------------------------------------- */
.out-wrap {
  padding: 0 24px;
}

.block-7 {
  position: relative;
  border-radius: 8px;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}
.block-7-wrapper {
  padding: 24px 0;
  max-width: 550px;
}
@media (min-width: 601px) {
  .block-7-wrapper {
    padding: 54px 48px;
  }
}
.block-7-wrapper .top-subtitle {
  display: inline-flex;
  gap: 8px;
  color: #f59f27;
  align-items: center;
  justify-content: center;
  margin: 0 0 32px 0;
}
.block-7-wrapper .top-subtitle-p {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
  color: #f59f27;
}
.block-7-wrapper .top-subtitle img {
  height: 1rem;
  width: auto;
  object-fit: contain;
}
.block-7-wrapper .title {
  font-size: 64px;
  line-height: 68px;
  font-weight: bold;
  color: #fff;
  margin: 0 0 48px 0;
}
.block-7-wrapper .desc {
  margin: 0 0 48px 0;
  font-size: 18px;
  line-height: 26px;
  color: #fff;
}
.block-7-wrapper .cta-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-direction: column;
}
@media (min-width: 601px) {
  .block-7-wrapper .cta-wrapper {
    flex-direction: row;
    width: max-content;
  }
}
.block-7-wrapper .cta-wrapper a {
  width: 100%;
  text-align: center;
}
@media (min-width: 601px) {
  .block-7-wrapper .cta-wrapper a {
    flex-direction: row;
    width: max-content;
  }
}
.block-7 .pattern {
  position: absolute;
  top: 48px;
  right: -8px;
  object-fit: contain;
}
@media (min-width: 601px) {
  .block-7 .pattern {
    bottom: 48px;
  }
}

.block-8-wrapper {
  padding: 0 24px;
}
.block-8-wrapper .top-info-wrapper {
  text-align: center;
  max-width: 615px;
  margin: 0 auto;
}
.block-8-wrapper .top-info-wrapper .top-subtitle {
  display: inline-flex;
  gap: 8px;
  color: #1f58ae;
  align-items: center;
  justify-content: center;
  margin: 0 0 32px 0;
}
.block-8-wrapper .top-info-wrapper .top-subtitle-p {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
  color: #1f58ae;
}
.block-8-wrapper .top-info-wrapper .top-subtitle img {
  height: 1rem;
  width: auto;
  object-fit: contain;
}
.block-8-wrapper .top-info-wrapper .title {
  font-size: 64px;
  line-height: 68px;
  font-weight: bold;
  margin: 0 0 48px 0;
  color: #01161B;
}
.block-8-wrapper .top-info-wrapper .desc {
  margin: 0 0 48px 0;
  font-size: 18px;
  line-height: 26px;
}
.block-8-wrapper .posts-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.block-8-wrapper .posts-wrapper .post-item {
  max-width: 480px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.block-8-wrapper .posts-wrapper .post-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.block-8-wrapper .posts-wrapper .post-item .post-link {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}
.block-8-wrapper .posts-wrapper .post-item .post-link:hover {
  transition: all 0.2s ease;
}
.block-8-wrapper .posts-wrapper .post-item .post-link:hover .post-title {
  text-decoration: underline;
}
.block-8-wrapper .posts-wrapper .post-item figure {
  margin: 0;
}
.block-8-wrapper .posts-wrapper .post-item figure img {
  vertical-align: middle;
  width: 100%;
  height: 100%;
  border-radius: 8px 8px 0 0;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.block-8-wrapper .posts-wrapper .post-item .post-info {
  padding: 24px;
}
.block-8-wrapper .posts-wrapper .post-item .post-info .post-title {
  font-size: 20px;
  font-weight: bold;
  color: #01161B;
  margin: 0 0 16px 0;
}
.block-8-wrapper .posts-wrapper .post-item .post-info .post-excerpt {
  font-size: 16px;
  color: #555;
  margin: 0;
}

.block-9-wrapper .top-info-wrapper {
  text-align: center;
  max-width: 615px;
  margin: 0 auto;
}
.block-9-wrapper .top-info-wrapper .top-subtitle {
  display: inline-flex;
  gap: 8px;
  color: #1f58ae;
  align-items: center;
  justify-content: center;
  margin: 0 0 32px 0;
}
.block-9-wrapper .top-info-wrapper .top-subtitle-p {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
  color: #1f58ae;
}
.block-9-wrapper .top-info-wrapper .top-subtitle img {
  height: 1rem;
  width: auto;
  object-fit: contain;
}
.block-9-wrapper .top-info-wrapper .title {
  font-size: 64px;
  line-height: 68px;
  font-weight: bold;
  margin: 0 0 48px 0;
  color: #01161B;
}
.block-9-wrapper .top-info-wrapper .desc {
  margin: 0 0 48px 0;
  font-size: 18px;
  line-height: 26px;
}
.block-9-wrapper .posts-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.block-9-wrapper .posts-wrapper .post-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: max-content;
}
.block-9-wrapper .posts-wrapper .post-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.block-9-wrapper .posts-wrapper .post-item .post-link {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}
.block-9-wrapper .posts-wrapper .post-item .post-link:hover {
  transition: all 0.2s ease;
}
.block-9-wrapper .posts-wrapper .post-item .post-link:hover .post-title {
  text-decoration: underline;
}
.block-9-wrapper .posts-wrapper .post-item figure {
  margin: 0;
}
.block-9-wrapper .posts-wrapper .post-item figure img {
  vertical-align: middle;
  width: 100%;
  height: 100%;
  border-radius: 8px 8px 0 0;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.block-9-wrapper .posts-wrapper .post-item .post-info {
  padding: 24px;
}
.block-9-wrapper .posts-wrapper .post-item .post-info .post-title {
  font-size: 20px;
  font-weight: bold;
  color: #01161B;
  margin: 0 0 16px 0;
}
.block-9-wrapper .posts-wrapper .post-item .post-info .post-excerpt {
  font-size: 16px;
  color: #555;
  margin: 0;
}

/* Typography
--------------------------------------------- */
.block-10 {
  margin-bottom: 48px;
  padding-block: 80px;
}
.block-10-wrapper {
  padding: 0 24px;
}
.block-10-wrapper .top-info {
  max-width: 650px;
  margin: auto;
  text-align: center;
}
.block-10-wrapper .top-info .top-subtitle {
  display: inline-flex;
  gap: 8px;
  color: #1f58ae;
  align-items: center;
  justify-content: center;
  margin: 0 0 32px 0;
}
.block-10-wrapper .top-info .top-subtitle-p {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
  color: #1f58ae;
}
.block-10-wrapper .top-info .top-subtitle img {
  height: 1rem;
  width: auto;
  object-fit: contain;
}
.block-10-wrapper .top-info .title {
  font-size: 64px;
  line-height: 68px;
  font-weight: bold;
  color: #01161B;
  margin: 0 0 48px 0;
}
.block-10-wrapper .top-info .desc {
  margin: 0 0 48px 0;
  font-size: 18px;
  line-height: 26px;
  color: #01161B;
}
.block-10-wrapper .pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 48px;
}
@media (min-width: 768px) {
  .block-10-wrapper .pricing-cards {
    gap: 24px;
  }
}
.block-10-wrapper .pricing-cards .card {
  position: relative;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 24px;
  height: max-content;
}
.block-10-wrapper .pricing-cards .card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
.block-10-wrapper .pricing-cards .card .top-box {
  border-radius: 8px;
  padding: 24px;
  background-color: rgba(15, 157, 185, 0.1);
  margin-bottom: 48px;
}
.block-10-wrapper .pricing-cards .card .top-box span.featured {
  position: absolute;
  top: -22px;
  left: 0;
  right: 0;
  padding: 8px 16px;
  background-color: #1F58AE;
  width: max-content;
  margin: auto;
  color: #fff;
  font-weight: bold;
  border-radius: 4px;
  letter-spacing: 2px;
}
.block-10-wrapper .pricing-cards .card .top-box .feature-title {
  font-size: 28px;
  line-height: 34px;
  margin: 0 0 32px 0;
  color: #0F9CB9;
}
.block-10-wrapper .pricing-cards .card .top-box .price-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 32px 0;
}
.block-10-wrapper .pricing-cards .card .top-box .price-wrapper .price {
  font-size: 64px;
  line-height: 68px;
  font-weight: bold;
  color: #01161B;
  margin: 0;
}
.block-10-wrapper .pricing-cards .card .top-box .price-wrapper .price-suffix {
  font-size: 14px;
  line-height: 22px;
  color: #616161;
}
.block-10-wrapper .pricing-cards .card .top-box .desc {
  color: #616161;
  font-size: 18px;
  line-height: 26px;
  margin: 0;
}
.block-10-wrapper .pricing-cards .card .features {
  text-align: left;
}
.block-10-wrapper .pricing-cards .card .features .feature-title {
  font-size: 18px;
  line-height: 30px;
  font-weight: bold;
  color: #0F9CB9;
  margin: 0 0 24px 0;
}
.block-10-wrapper .pricing-cards .card .features .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.block-10-wrapper .pricing-cards .card .features .feature-list li {
  font-size: 18px;
  line-height: 30px;
  font-weight: bold;
  color: #01161B;
  margin-bottom: 24px;
}
.block-10-wrapper .pricing-cards .card .features .feature-list li:last-child {
  margin-bottom: 0;
}
.block-10-wrapper .pricing-cards .card .cta-wrapper {
  margin: 32px 0 0 0;
}
.block-10-wrapper .pricing-cards .featured {
  background-color: #0F9CB9;
}
.block-10-wrapper .pricing-cards .featured .top-box {
  background-color: rgba(255, 255, 255, 0.2);
}
.block-10-wrapper .pricing-cards .featured .top-box .feature-title {
  color: #fff;
}
.block-10-wrapper .pricing-cards .featured .top-box .desc {
  color: #fff;
}
.block-10-wrapper .pricing-cards .featured .top-box .price-wrapper .price {
  color: #fff;
}
.block-10-wrapper .pricing-cards .featured .top-box .price-wrapper .price-suffix {
  color: #fff;
}
.block-10-wrapper .pricing-cards .featured .features .feature-title {
  color: #F59F27;
}
.block-10-wrapper .pricing-cards .featured .features .feature-list li {
  color: #fff;
}
.block-10-wrapper .pricing-cards .featured .cta-wrapper a {
  background-color: #F59F27;
  color: #fff;
}
.block-10-wrapper .pricing-cards .featured .cta-wrapper a:hover {
  background-color: #D68A1F;
}

/* Typography
--------------------------------------------- */
.block-11 {
  margin-bottom: 2rem;
}
.block-11-wrapper {
  padding: 0 24px;
}
.block-11-wrapper .top-info {
  max-width: 650px;
  margin: auto;
  text-align: center;
}
.block-11-wrapper .top-info .top-subtitle {
  display: inline-flex;
  gap: 8px;
  color: #1f58ae;
  align-items: center;
  justify-content: center;
  margin: 0 0 32px 0;
}
.block-11-wrapper .top-info .top-subtitle-p {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
  color: #1f58ae;
}
.block-11-wrapper .top-info .top-subtitle img {
  height: 1rem;
  width: auto;
  object-fit: contain;
}
.block-11-wrapper .top-info .title {
  font-size: 64px;
  line-height: 68px;
  font-weight: bold;
  color: #01161B;
  margin: 0 0 48px 0;
}
.block-11-wrapper .top-info .desc {
  margin: 0 0 48px 0;
  font-size: 18px;
  line-height: 26px;
  color: #01161B;
}
.block-11-wrapper .faq-list {
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr;
  padding: 24px;
  gap: 48px;
  background-color: hsla(190, 85%, 39%, 0.1);
}
@media (min-width: 601px) {
  .block-11-wrapper .faq-list {
    padding: 48px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.block-11-wrapper .faq-list .faq[open] .faq-summary::after {
  transform: rotate(180deg);
}
.block-11-wrapper .faq-list .faq .faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.block-11-wrapper .faq-list .faq .faq-summary .title {
  font-size: 28px;
  line-height: 34px;
  font-weight: bold;
  color: #01161B;
}
.block-11-wrapper .faq-list .faq .faq-summary::marker {
  content: "";
}
.block-11-wrapper .faq-list .faq .faq-summary::after {
  content: url("assets/icons/angle-down.svg");
  height: 24px;
  width: 24px;
  transition: 0.2s ease-in-out;
  object-fit: contain;
}
.block-11-wrapper .faq-list .faq .content {
  color: #616161;
  font-size: 18px;
  line-height: 26px;
}
.block-11-wrapper .faq-list .faq .content ul {
  margin: 0;
}

.woocommerce-products-block .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin: 50px 0;
}
.woocommerce-products-block .product-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  height: max-content;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.woocommerce-products-block .product-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.woocommerce-products-block .product-image {
  position: relative;
  overflow: hidden;
}
.woocommerce-products-block .product-image img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.woocommerce-products-block .product-image:hover img {
  transform: scale(1.05);
}
.woocommerce-products-block .no-image-placeholder {
  width: 100%;
  height: 250px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.9rem;
}
.woocommerce-products-block .product-details {
  padding: 1.5rem;
}
.woocommerce-products-block .product-title {
  margin: 0 0 1rem 0;
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
}
.woocommerce-products-block .product-title a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
  font-size: 1.4rem;
  font-weight: 800;
}
.woocommerce-products-block .product-title a:hover {
  color: #0073aa;
}
.woocommerce-products-block .product-price {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #0073aa;
  text-align: center;
}
.woocommerce-products-block .product-price .amount {
  font-weight: bold;
}
.woocommerce-products-block .product-price del {
  color: #999;
  font-weight: normal;
  margin-right: 0.5rem;
}
.woocommerce-products-block .product-price ins {
  text-decoration: none;
  color: #0073aa;
}
.woocommerce-products-block .product-excerpt {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  font-size: 0.9rem;
  text-align: justify;
}
.woocommerce-products-block .product-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.woocommerce-products-block .product-actions .button,
.woocommerce-products-block .product-actions .add_to_cart_button {
  padding: 1rem 32px;
  border: none;
  border-radius: 40px;
  text-decoration: none;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  align-items: center;
  background: #0073aa;
  color: white;
}
.woocommerce-products-block .product-actions .button:hover,
.woocommerce-products-block .product-actions .add_to_cart_button:hover {
  background: #005a87;
  color: white;
}
.woocommerce-products-block .product-actions .view-product {
  padding: 1rem 32px;
  border: 1px solid #0073aa;
  border-radius: 40px;
  text-decoration: none;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  align-items: center;
  background: transparent;
  color: #0073aa;
}
.woocommerce-products-block .product-actions .view-product:hover {
  background: #005a87;
  color: white;
}
.woocommerce-products-block .product-actions .out-of-stock {
  color: #999;
  font-style: italic;
  padding: 0.5rem 0;
}
.woocommerce-products-block .no-products {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin: 2rem 0;
  padding: 2rem;
  background: #f5f5f5;
  border-radius: 8px;
}
.woocommerce-products-block .loading {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #666;
}
.woocommerce-products-block .product-item {
  position: relative;
}
.woocommerce-products-block .product-item .sale-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #e74c3c;
  color: white;
  padding: 0.3rem 0.6rem;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 2;
}
.woocommerce-products-block .product-categories {
  margin-bottom: 0.5rem;
}
.woocommerce-products-block .product-categories a {
  color: #666;
  text-decoration: none;
  font-size: 0.8rem;
  margin-right: 0.5rem;
}
.woocommerce-products-block .product-categories a:hover {
  color: #0073aa;
}
.woocommerce-products-block .product-categories a::after {
  content: ", ";
}
.woocommerce-products-block .product-categories a:last-child::after {
  content: "";
}
.woocommerce-products-block .star-rating {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.woocommerce-products-block .star-rating .stars {
  color: #ffa500;
  margin-right: 0.5rem;
}
.woocommerce-products-block .star-rating .rating-count {
  color: #666;
  font-size: 0.8rem;
}
.woocommerce-products-block .product-variations {
  margin-bottom: 1rem;
}
.woocommerce-products-block .product-variations .variation-label {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.3rem;
}
.woocommerce-products-block .product-variations .variation-options {
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
}
.woocommerce-products-block .product-variations .variation-options .variation-option {
  padding: 0.2rem 0.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.woocommerce-products-block .product-variations .variation-options .variation-option:hover, .woocommerce-products-block .product-variations .variation-options .variation-option.selected {
  border-color: #0073aa;
  background: #0073aa;
  color: white;
}
@media (max-width: 1200px) {
  .woocommerce-products-block .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}
@media (max-width: 768px) {
  .woocommerce-products-block .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
  }
  .woocommerce-products-block .product-details {
    padding: 1rem;
  }
  .woocommerce-products-block .product-title {
    font-size: 1.1rem;
  }
  .woocommerce-products-block .product-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .woocommerce-products-block .product-actions .button,
  .woocommerce-products-block .product-actions .add_to_cart_button,
  .woocommerce-products-block .product-actions .view-product {
    text-align: center;
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .woocommerce-products-block .products-grid {
    grid-template-columns: 1fr;
  }
  .woocommerce-products-block .product-image img,
  .woocommerce-products-block .no-image-placeholder {
    height: 200px;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.woocommerce-products-block .product-item {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}
.woocommerce-products-block .product-item:nth-child(1) {
  animation-delay: 0.1s;
}
.woocommerce-products-block .product-item:nth-child(2) {
  animation-delay: 0.2s;
}
.woocommerce-products-block .product-item:nth-child(3) {
  animation-delay: 0.3s;
}
.woocommerce-products-block .product-item:nth-child(4) {
  animation-delay: 0.4s;
}
.woocommerce-products-block .product-item:nth-child(5) {
  animation-delay: 0.5s;
}
.woocommerce-products-block .product-item:nth-child(6) {
  animation-delay: 0.6s;
}
.woocommerce-products-block .product-item:nth-child(7) {
  animation-delay: 0.7s;
}
.woocommerce-products-block .product-item:nth-child(8) {
  animation-delay: 0.8s;
}
.woocommerce-products-block .product-item:nth-child(9) {
  animation-delay: 0.9s;
}
.woocommerce-products-block .product-item:nth-child(10) {
  animation-delay: 1s;
}
.woocommerce-products-block .product-item:nth-child(11) {
  animation-delay: 1.1s;
}
.woocommerce-products-block .product-item:nth-child(12) {
  animation-delay: 1.2s;
}
.woocommerce-products-block .products-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.woocommerce-products-block .products-controls .products-filter select {
  padding: 0.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 0.9rem;
}
.woocommerce-products-block .products-controls .products-sort select {
  padding: 0.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 0.9rem;
}
.woocommerce-products-block .products-pagination {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.woocommerce-products-block .products-pagination .page-numbers {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.woocommerce-products-block .products-pagination .page-numbers li a,
.woocommerce-products-block .products-pagination .page-numbers li span {
  display: block;
  padding: 0.5rem 0.8rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}
.woocommerce-products-block .products-pagination .page-numbers li a:hover, .woocommerce-products-block .products-pagination .page-numbers li a.current,
.woocommerce-products-block .products-pagination .page-numbers li span:hover,
.woocommerce-products-block .products-pagination .page-numbers li span.current {
  background: #0073aa;
  color: white;
  border-color: #0073aa;
}

.block-13 {
  margin-bottom: -70px;
}
.block-13-wrapper {
  position: relative;
  width: 100%;
}

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