/*
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

:root {
  --color-accent: #E6C89C;
  --color-accent-dim: #e6c89c4d;
  --gradient-primary: linear-gradient(92.12deg, #fff0d9 -6.66%, #c5a679 107.43%);
  --shadow-accent: inset 0 0 0 1px var(--color-accent);
	--header-height: 93px;
}

.cta-gradient .elementor-button,
.cta-border .elementor-button {
  border: none !important;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  font-family: 'Manrope', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 3px !important;
  line-height: 1.2 !important;
  padding: 18px 40px !important;
  border-radius: 0 !important;
  display: inline-block;
  /* color: #FFFFFF !important; */
  text-decoration: none;
}

@media (max-width: 767px) {
  .cta-gradient .elementor-button,
  .cta-border .elementor-button {
    padding: 12px 32px !important;
  }
}

.cta-gradient .elementor-button {
  background: var(--gradient-primary) !important;
}

.cta-gradient .elementor-button:hover {
  background: transparent !important;
  box-shadow: var(--shadow-accent);
  transform: translateY(-2px);
}

.cta-border .elementor-button {
  background: transparent !important;
  box-shadow: var(--shadow-accent);
}

.cta-border .elementor-button:hover {
  background: var(--gradient-primary) !important;
  box-shadow: none;
  transform: translateY(-2px);
}


header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background-color: #0B102D;
}

header .header__contact {
  display: none;
}

@media (min-width: 1024px) {
  header .header__contact {
    position: absolute;
    right: 0;
    top: 0;
    left: auto;
    width: 248px;
    border-left: 1px solid var(--color-accent-dim);
    height: 100%;
    display: flex;
  }
}

main,
[data-elementor-type="wp-page"] {
  position: relative;
  z-index: 1;
  margin-top: calc(-1 * var(--header-height));
}

.cta-lines {
   max-width: fit-content !important;
   padding: 0 0 16px 0;
  display: flex;
  background-image: linear-gradient(var(--color-accent), var(--color-accent)),
    linear-gradient(var(--color-accent), var(--color-accent));
  background-size: 100% 1px, 100% 1px;
  background-repeat: no-repeat;
  background-position: left 0 bottom 4px, left 0 bottom 0;
}

.cta-lines .elementor-button,
.cta-lines .product-card__link {
    padding: 0 !important;
}


.grid__branding {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

.grid__branding > *:nth-child(3) {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.grid__branding > * {
  min-height: 0;
}

.grid__branding > * .elementor-widget-container {
  height: 100%;
}

.grid__branding img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.grid__branding > *:nth-child(3),
.grid__branding > *:nth-child(3) .elementor-widget-container {
  height: 100%;
}

.grid__branding > *:nth-child(3) img {
  height: 100%;
}


.accordion__business .jet-accordion__inner {
  counter-reset: accordion-counter;
}

.accordion__business .jet-accordion__item {
  counter-increment: accordion-counter;
}

.accordion__business .jet-toggle__label-text::before {
  content: counter(accordion-counter, decimal-leading-zero);
  margin-right: 24px;
  font-family: Manrope, sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: #CA892D;
  vertical-align: middle;
}

.h2-svg {
  position: relative;
  width: fit-content;
}

@media (min-width: 1200px) {
  .h2-svg::after {
    position: absolute;
    top: 10px;
    right: -180px;
    content: url('/wp-content/uploads/2026/03/header-ico.svg');
  }

  .h2-svg::before {
    position: absolute;
    top: 10px;
    left: -180px;
    content: url('/wp-content/uploads/2026/03/header-ico.svg');
  }

   .h2-svg-s::after {
    right: -80px;
   }

   .h2-svg-s::before {
    left: -80px;
   }      
}

.coop_line {
  border-bottom: 1px solid var(--color-accent);
  position: relative;
}

.coop_line::after {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  position: absolute;
  bottom: -5px;
  left: calc(50% - 5px);
  content: '';
  background-color: var(--color-accent);
}

/* Style H2 in posts to look like regular paragraphs */
.single-post .elementor-widget-theme-post-content h2,
.single-post article h2,
.single-post .entry-content h2 {
    font-size: 16px; /* Matching 'lead' body or 14px if preferred, using 16px for better readability as it was h2 */
    font-weight: 500;
    font-family: 'Manrope', sans-serif !important;
    line-height: 1.5;
    text-transform: none;
    letter-spacing: normal;
    margin-bottom: 1em;
    color: inherit;
}