/*
Theme Name: Kirvan Consulting
Theme URI: https://kirvanconsulting.com/
Author: Fred J Kirvan
Version: 1.0
Text Domain: kccon
*/
:root {
  --color-primary: #2e296c;
  --color-cta: #76b82a;
  --color-cta-hover: #639924;
  --color-text: #1a1a24;
  --color-text-muted: #4a4a5c;
  --color-bg: #ffffff;
  --color-bg-alt: #f6f7f9;
  --color-border: #e8eaef;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --max-width: none;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --section-space: clamp(4.5rem, 8vw, 6rem);
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --shadow: 0 4px 24px rgba(46, 41, 108, 0.08);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--color-primary);
}

a:hover {
  text-decoration-thickness: 2px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(8px);
  transition: transform 0.24s ease;
  will-change: transform;
}

.site-header.site-header--hidden {
  transform: translateY(-100%);
}

.site-header__inner {
  width: 100%;
  margin: 0;
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.site-logo {
  display: block;
  line-height: 0;
}

.site-logo img {
  height: 3.5rem;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-sm) 2.8rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-nav a:not(.btn)[aria-current="page"] {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (min-width: 821px) {
  .site-nav .btn {
    margin-left: 0.25rem;
  }
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: var(--radius);
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem;
  cursor: pointer;
}

.menu-toggle__bar {
  width: 1.25rem;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 820px) {
  .site-logo img {
    height: 3rem;
  }

  .site-header__inner {
    position: relative;
    z-index: 101;
  }

  .menu-toggle {
    display: inline-flex;
    z-index: 102;
    position: relative;
  }

  .site-header:has(.site-nav--open)::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(15, 18, 28, 0.45);
    z-index: 99;
    animation: siteNavBackdropIn 0.3s ease forwards;
  }

  .site-nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 100dvh;
    margin: 0;
    padding: calc(var(--space-xl) + 3rem) var(--space-lg) var(--space-xl);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.35rem;
    background: #ffffff;
    border: none;
    border-radius: 0;
    box-shadow: none;
    z-index: 100;
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.32s;
  }

  .site-nav.site-nav--open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0s;
  }

  .site-nav a {
    display: block;
    padding: 0.85rem 0.25rem;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--color-border);
  }

  .site-nav a:last-of-type {
    border-bottom: none;
  }

  .site-nav .btn {
    margin-top: var(--space-md);
    width: 100%;
    text-align: center;
    border-bottom: none;
    padding: 0.85rem 1rem;
  }
}

@keyframes siteNavBackdropIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.375rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--color-cta);
  color: #fff;
  border-color: var(--color-cta);
}

a.btn--primary,
a.btn--primary:hover,
a.btn--primary:focus-visible {
  color: #fff;
  text-decoration: none;
}

.btn--primary:hover {
  background: var(--color-cta-hover);
  border-color: var(--color-cta-hover);
  color: #fff;
}

/* Footer */
.site-footer {
  padding: calc(var(--space-lg) + 0.25rem) 10%;
  border-top: 1px solid var(--color-border);
  background: linear-gradient(180deg, #f8f9fc 0%, #f2f4f8 100%);
}

.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.site-footer__logo img {
  height: 2.5rem;
  width: auto;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.site-footer__nav a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 500;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__copy {
  margin: 0;
  border-top: 1px solid #dde2ec;
  padding-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  align-items: center;
}

.site-footer__legal-inline {
  display: inline-flex;
  gap: 0.4rem 0.8rem;
  align-items: center;
  font-size: 0.78rem;
}

.site-footer__legal-inline a {
  color: #6b7082;
  text-decoration: none;
  font-weight: 500;
}

.site-footer__legal-inline a:hover,
.site-footer__legal-inline a:focus-visible {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 900px) {
  .site-footer__inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    column-gap: 1.5rem;
  }

  .site-footer__copy {
    grid-column: 1 / -1;
  }

  .site-footer__note	{ 
	margin-left: auto;
  }
}

@media (max-width: 899px) {
  .site-footer {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }

  .site-footer__note	{ 
	flex: 0 0 100%;
  }
}

.numbered__list ul	{
  margin: 0 auto !important;
  padding: 0;
  list-style: none;
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  max-width: 62rem;
  counter-reset: number-item;
  text-align: left;
}

.numbered__list ul	li {
  position: relative;
  counter-increment: number-item;
  margin: 0;
  padding: 1rem 1rem 1rem 0.95rem !important;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  align-items: center;
  min-height: 4.2rem;
  color: #fff;
  line-height: 1.35;
  font-weight: 600;
  border: 1px solid rgba(210, 223, 245, 0.22);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 22px rgba(2, 7, 20, 0.35);
}

.numbered__list ul	li::before {
  content: "0" counter(number-item);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff;
  line-height: 1;
}

@media (min-width: 900px) {
  .numbered__list ul	{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 899px) {
  .numbered__list ul	{
    gap: 0.65rem;
    margin-bottom: 1.5rem;
    padding-left: 0;
    padding-right: 0;
  }

  .numbered__list ul	li {
    min-height: 0;
    padding: 0.82rem;
  }
}

.person-card.blue-card	{ border-left-color: var(--color-primary) !important; }
.person-card.green-card	{ border-left-color: var(--color-cta) !important; }

.process-steps	{ counter-reset: number-item; }
.process-steps	>	.elementor-widget-icon-box	{ counter-increment: number-item; }
.process-steps	>	.elementor-widget-icon-box	.elementor-icon-box-title::before { 
  content: counter(number-item);  
  display: block;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 2.25rem;
  height: 2.25rem;
  line-height: 2.25rem;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  box-shadow:
    0 0 0 3px rgba(46, 41, 108, 0.12),
    0 4px 12px rgba(46, 41, 108, 0.18); 
	transition: background-color 0.24s ease;
}
.process-steps	>	.elementor-widget-icon-box:hover	.elementor-icon-box-title::before {
  background-color: var(--color-cta);
}

/* Layout helpers */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 10%;
}

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

main > section {
  margin: 0;
}

.section > .container > :first-child {
  margin-top: 0;
}

.section > .container > :last-child {
  margin-bottom: 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section__title {
  margin: 0 0 var(--space-sm);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.heading-h2 {
  font-family: var(--font);
}

.section__lead {
  margin: 0;
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: none;
}

/* Brand partners */
.brand-partners {
  background: #fff;
  padding-top: clamp(0.5rem, 1.5vw, 1rem);
  padding-bottom: clamp(0.7rem, 1.8vw, 1.2rem);
}

#brand-partners .section__title,
#brand-partners .section__lead {
  text-align: center;
}

#brand-partners .section__lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 52rem;
}

.logo-carousel {
  margin-top: 0;
  position: relative;
  overflow: hidden;
  padding: 0.45rem 0;
}

.logo-carousel::before,
.logo-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(1rem, 3vw, 2.5rem);
  z-index: 2;
  pointer-events: none;
}

.logo-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.logo-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.logo-carousel__track {
  display: flex;
  align-items: center;
  margin-top: 1em;
  gap: clamp(2.3rem, 4.6vw, 4.025rem);
  width: max-content;
  animation: logoCarouselScroll 50s linear infinite;
}

.logo-carousel:hover .logo-carousel__track {
  animation-play-state: paused;
}

.logo-carousel__track img {
  max-height: 4.5rem;
  max-width: 8rem !important;
  width: auto;
  height: auto;
  object-fit: contain;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.logo-carousel__track img:hover {
  transform: translateY(-1px);
}

@keyframes logoCarouselScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-carousel__track {
    animation: none;
  }
}

@media (min-width: 980px) {
  .brand-partners {
    padding-top: 0.35rem;
  }
}

.testimonial-spotlight {
  position: relative;
  min-height: clamp(28rem, 58vw, 40rem);
  overflow: hidden;
  isolation: isolate;
}

.testimonial-spotlight__slide {
  position: relative;
  inset: 0;
  opacity: 0;
  height: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, height 0s linear 0.35s; 
}

.testimonial-spotlight__slide.is-active {
  height: auto;
  opacity: 1;
  pointer-events: auto;
}

.testimonial-spotlight__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.testimonial-spotlight__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 14, 24, 0.78) 0%, rgba(10, 14, 24, 0.55) 56%, rgba(10, 14, 24, 0.75) 100%);
}

.testimonial-spotlight__panel {
  position: absolute;
  top: 16%;
  left: 42%;
  width: min(22rem, 30vw);
  height: 70%;
  background: rgba(20, 22, 29, 0.5);
  border: 1px solid rgba(210, 223, 245, 0.22);
}

.testimonial-spotlight__inner {
  position: relative;
  z-index: 1;
  min-height: clamp(28rem, 58vw, 40rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: clamp(2.25rem, 5vw, 4rem);
  padding-bottom: clamp(5.5rem, 11vw, 7.5rem);
  max-width: none;
}

.testimonial-spotlight__eyebrow {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: #c5ead9;
}

.testimonial-spotlight blockquote {
  margin: clamp(1.8rem, 4vw, 3rem) 0 0;
  max-width: 53rem;
  font-size: clamp(1.104rem, 2.4vw, 2.28rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #ffffff;
  font-weight: 500;
}

.testimonial-spotlight__attribution {
  margin: clamp(1.25rem, 3vw, 2rem) 0 0;
  padding-top: clamp(0.85rem, 2vw, 1.25rem);
  max-width: 36rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial-spotlight__attribution p {
  margin: 0;
}

.testimonial-spotlight__name {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #ffffff;
  line-height: 1.25;
}

.testimonial-spotlight__role {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.82);
}

.testimonial-spotlight__brand {
  margin-top: 0.2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #c5ead9;
  line-height: 1.35;
}

.testimonial-spotlight__links {
  display: flex;
  gap: 1rem;
  padding-top: 1rem;
}

.testimonial-spotlight__links	a {
  color: #fff; 
  text-decoration: none;
  font-size: clamp(1rem, 2vw, 1.25rem);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.testimonial-spotlight__links	a:hover {
  color: var(--color-cta);
}

.testimonial-spotlight__controls {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: clamp(1rem, 2.2vw, 2rem);
  width: 100%;
  padding: 0 10%;
  box-sizing: border-box;
  display: flex;
  gap: 0.55rem;
}

.testimonial-spotlight__btn {
  border-radius: 999px;
  border: 1px solid rgba(193, 227, 211, 0.8);
  background: rgba(19, 31, 35, 0.35);
  color: #d4f3e5;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  padding: 0.75rem 1.75rem !important;
}

.testimonial-spotlight__btn:hover,
.testimonial-spotlight__btn:focus-visible {
  background: rgba(19, 31, 35, 0.62);
  transform: translateY(-1px);
}

@media (max-width: 899px) {
  .testimonial-spotlight {
    min-height: 27rem;
  }

  .testimonial-spotlight__panel {
    display: none;
  }

  .testimonial-spotlight__inner {
    min-height: 27rem;
    padding-top: 1.5rem;
    padding-bottom: 4.8rem;
  }

  .testimonial-spotlight__controls {
    bottom: 0.9rem;
    padding: 0 10%;
  }

  .testimonial-spotlight blockquote {
    font-size: clamp(1.15rem, 5.6vw, 1.55rem);
    max-width: 100%;
  }
}

.final-cta__panel {
  background: #fff;
  border: 1px solid #d8e0ee;
  border-radius: 0.9rem;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
  padding: 1.1rem;
}

.lead-form {
  display: grid;
  gap: 0.85rem;
}

.lead-form__name-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.lead-form__row {
  display: grid;
  gap: 0.35rem;
}

.lead-form__row	p	{ margin: 0 !important; }

.lead-form__row label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #394161;
}

.lead-form__row input,
.lead-form__row select,
.lead-form__row textarea {
  width: 100%;
  border: 1px solid #cfd8e8;
  border-radius: 0.58rem;
  padding: 0.62rem 0.7rem;
  font: inherit;
  color: var(--color-text);
  background: #fff;
}

.lead-form__row .iti {
  width: 100%;
}


.lead-form__row .iti__selected-country	{
background: transparent !important;
border: none;
padding: 0;
}
.lead-form__row .iti__selected-country-primary {
  border-radius: 0.5rem 0 0 0.5rem;
}

.lead-form__row .iti input[type="tel"] {
  width: 100%;
}

.lead-form__row textarea {
  resize: vertical;
}

.lead-form__row input:focus,
.lead-form__row select:focus,
.lead-form__row textarea:focus {
  outline: 2px solid rgba(46, 41, 108, 0.25);
  outline-offset: 1px;
  border-color: #a8b6d1;
}

.lead-form__submit input[type=submit],
.lead-form__submit input[type=button]	{
  width: 100%;
  font-size: clamp(1.0625rem, 2.4vw, 1.25rem);
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  padding: 0.95rem 1.5rem;
  color: #fff;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.news-list	{ row-gap: 30px; }
.news-list	.news-list-item	{ position: relative; padding: 20px; }
.news-list	.news-list-item	a	{ -webkit-transition: all 0.25s linear 0s; transition: all 0.25s linear 0s; }
.news-list	.news-list-item	a:hover	{ color: #b91f33; }
.news-list	.news-list-item-wrapper	{ height: 100%; box-shadow: 0 0 20px 0 rgba(0,0,0,0.1); }
.news-list	.news-list-item-thumb	{ display: block; }
.news-list	.news-list-item-thumb	>	img	{ width: 100%; }
.news-list	.news-list-item-content	{ padding: 30px; }
.news-list	.news-list-item-title	{ font-size: 22px; line-height: 1.35; font-weight: 700; margin: 0 0 25px; }
.news-list	.news-list-item-desc	{ line-height: 1.5; margin: 0 0 25px; }
.news-list	.explore-more	{ font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

.posts-list	.news-list-item-title	{ font-size: 18px; font-weight: 700; }

.news-list	.slick-dots	{ width: 100%; text-align: center; padding: 10px 0 0; }
.news-list	.slick-dots	li	{ display: inline-block; position: relative; }
.news-list	.slick-dots	li:only-child	{ display: none; }
.news-list	.slick-dots	li	button	{ cursor: pointer; display: block; border: none; background-color: #d6d6d6; color: #d6d6d6; width: 10px; height: 10px; border-radius: 50%; padding: 0; margin: 0 7px; font-size: 1px; -webkit-transition: all 0.25s linear 0s; transition: all 0.25s linear 0s; }
.news-list	.slick-dots	li	button:hover, .news-list	.slick-dots	li.slick-active	button	{ background-color: #b91f33; }

.tres-stats	.tres-stats-icon	.elementor-widget-container	>	img	{ position: relative; top: 50%; transform: translateY(-50%); }
.tres-stats	.elementor-widget-counter	{ position: absolute !important; top: 50% !important; right: 0; transform: translateY(-50%); }
.tres-stats	.elementor-widget-counter,
.tres-stats	.elementor-widget-counter	.elementor-counter .elementor-counter-title	{ justify-content: start; }

.tres-stats	.elementor-widget-counter	.elementor-counter-number-prefix:empty	{ display: none; }

.tres-lifestyle-carousel	.swiper-slide	{ background-color: #000; }
.tres-lifestyle-carousel	.swiper-slide	.swiper-slide-image	{ opacity: 0.625; -webkit-transition: all 0.25s linear 0s; transition: all 0.25s linear 0s; }
.tres-lifestyle-carousel	.swiper-slide	>	figure	{ overflow: hidden; }
.tres-lifestyle-carousel	.swiper-slide:hover	.swiper-slide-image	{ opacity: 1; transform: scale(1.15); }

.contact-icon	{ position: absolute !important; top: 0; left: 50%; width: 64px; height: 64px; transform: translate(-50%,-50%); }
.contact-icon	.elementor-widget-container	{ border-radius: 50%; }
.contact-icon	.elementor-icon	>	i	{ transform: translateY(50%); }

.sub-header	{ position: relative; }
img.page-banner	{ display: block; width: 100%; height: auto; }

.sub-header	.desc	{ position: absolute; z-index: 2; width: 100%; top: 50%; -webkit-transform: translateY(-50%); transform: translateY(-50%); }
.sub-header	.desc	.page-title	{ font-size: 57px; font-weight: 700; line-height: 1.15; color: #fff; }
.sub-header	.desc	.page-title	>	small	{ font-size: 50%; }

.sub-header	.desc	>	div	{ padding: 0; }

.sub-header.with-overlay:before	{ content: ""; position: absolute; top: 0; left: 0; z-index: 1; width: 100%; height: 100%; }

.sub-header.with-overlay.dark-overlay:before	{ background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(39,48,68,0.65) 65%); }
.sub-header.with-overlay.darker-overlay:before	{ background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(39,48,68,0.85) 65%); }
.sub-header.with-overlay.light-overlay:before	{ background-color: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(255,255,255,0.35) 65%); }

.sub-content	{ background-color: #fff; padding-top: 75px; padding-bottom: 75px; }

.content	{ line-height: 1.75; }
.content	a	{ color: #b91f33; -webkit-transition: all 0.25s linear 0s; transition: all 0.25s linear 0s; }
.content	a:hover	{ color: #231f20; }
.content	hr	{ height: 1px; border: none; background-color: #d6d6d6; margin-bottom: 20px; }
.content	h1	{ font-size: 37px; font-weight: 700; margin-bottom: 30px; line-height: 1; }
.content	h1	small	{ display: block; margin: 10px 0 0; font-size: 50%; font-weight: 300; }
.content	h2,
.content	h3,
.content	h4,
.content	h5,
.content	h6	{ font-weight: 500; margin-bottom: 20px; line-height: 1.5; }
.content	h2	{ font-size: 30px; }
.content	h3	{ font-size: 25px; }
.content	h4	{ font-size: 22px; }
.content	h5	{ font-size: 20px; }
.content	h6	{ font-size: 17px; }
.content	p	{ line-height: 1.75; margin: 0 0 25px; }
.content	ul	{ margin: 0 0 25px 15px; }
.content	ul	li	{ list-style: square; margin: 0 0 5px; }
.content	ul	ul	li	{ list-style: disc; }
.content	ol	{ margin: 0 0 25px 15px; }
.content	ol	li	{ list-style: decimal; margin: 0 0 5px; }
.content	ol	ol	li	{ list-style: lower-alpha; }
.content	ul	ul, .content	ol	ol	{ margin-top: 5px; margin-bottom: 0; }

.content	blockquote	{ background-color: #d5dbe8; padding: 65px 130px 65px 65px; margin-bottom: 25px; }
.content	blockquote	> *:last-child	{ margin-bottom: 0; }

.content	.text-upper	{ text-transform: uppercase; }
.content	.text-lower	{ text-transform: lowercase; }

.content	.text-lighter	{ font-weight: 300; }
.content	.text-normal	{ font-weight: 400; }
.content	.text-medium	{ font-weight: 500; }
.content	.text-bold	{ font-weight: 700; }
.content	.text-bolder	{ font-weight: 900; }

.content	.text-50	{ font-size: 50%; }
.content	.text-75	{ font-size: 75%; }
.content	.text-125	{ font-size: 125%; }
.content	.text-150	{ font-size: 150%; }
.content	.text-175	{ font-size: 175%; }
.content	.text-200	{ font-size: 200%; }
.content	.text-225	{ font-size: 225%; }
.content	.text-250	{ font-size: 250%; }
.content	.text-275	{ font-size: 275%; }
.content	.text-300	{ font-size: 300%; }

.content	.text-lh-1	{ line-height: 1; }
.content	.text-lh-125	{ line-height: 1.25; }
.content	.text-lh-15	{ line-height: 1.5; }
.content	.text-lh-175	{ line-height: 1.75; }
.content	.text-lh-2	{ line-height: 2; }

.content	.red	{ color: #b91f33 !important; }
.content	.default	{ color: #231f20 !important; }

.content	.bg-grey	{ background-color: rgba(92,92,94,0.5); }
.content	.bg-red	{ background-color: #b91f33; color: #fff; }

.content	.mb-0	{ margin-bottom: 0px; }
.content	.mb-10	{ margin-bottom: 10px; }
.content	.mb-20	{ margin-bottom: 20px; }
.content	.mb-30	{ margin-bottom: 30px; }
.content	.mb-40	{ margin-bottom: 40px; }
.content	.mb-50	{ margin-bottom: 50px; }
.content	.mb-60	{ margin-bottom: 60px; }

.content	.vs-10	{ padding-top: 10px; padding-bottom: 10px; }
.content	.vs-20	{ padding-top: 20px; padding-bottom: 20px; }
.content	.vs-30	{ padding-top: 30px; padding-bottom: 30px; }
.content	.vs-40	{ padding-top: 40px; padding-bottom: 40px; }
.content	.vs-50	{ padding-top: 50px; padding-bottom: 50px; }
.content	.vs-60	{ padding-top: 60px; padding-bottom: 60px; }

.content	.hs-10	{ padding-right: 10px; padding-left: 10px; }
.content	.hs-20	{ padding-right: 20px; padding-left: 20px; }
.content	.hs-30	{ padding-right: 30px; padding-left: 30px; }
.content	.hs-40	{ padding-right: 40px; padding-left: 40px; }
.content	.hs-50	{ padding-right: 50px; padding-left: 50px; }
.content	.hs-60	{ padding-right: 60px; padding-left: 60px; }

.content	table	{ border-top: 3px solid #b91f33; margin-bottom: 30px; }
.content	table	thead	th	{ padding: 10px; border-bottom: 2px solid #d6d6d6; text-transform: uppercase; font-weight: 400; }
.content	table	tbody	td,
.content	table	tbody	th	{ padding: 15px 10px; border-bottom: 1px solid #d6d6d6; text-align: left; vertical-align: top; }

.content	table	tbody	th	{ text-transform: uppercase; font-size: 14px; }

.content	table	tbody	tr:nth-child(odd)	td,
.content	table	tbody	tr:nth-child(odd)	th	{ background-color: #d6d6d6; }

.content	table	tfoot	th,
.content	table	tfoot	td	{ padding: 10px; border-top: 2px solid #d6d6d6; border-bottom: 2px solid #d6d6d6; text-transform: uppercase; font-weight: 400; }

.content	img.alignright	{ float: right; margin: 0 0 30px 40px; }
.content	img.alignleft	{ float: left; margin: 0 40px 30px 0; }
.content	img.aligncenter	{ display: block; margin: 0 auto 30px; }
.content	img.alignright,
.content	img.alignleft,
.content	img.aligncenter,
.content	img.alignnone	{ max-width: 100%; height: auto; }

.content	.col-12	img.alignright,
.content	.col-12	img.alignleft,
.content	.col-12	img.aligncenter,
.content	.col-12	img.alignnone	{ width: 100%; }

.content	.wp-video	{ margin-bottom: 30px; }

.content	p:empty { display: none; }

.content	iframe	{ max-width: 100%; }

.content	>	*:last-child	{ margin-bottom: 0; }

.gallery	{ margin: 0 -15px !important; }
.gallery	.gallery-item	{ margin: 0 0 30px !important; padding: 0 15px; }
.gallery	.gallery-item	.gallery-icon,
.gallery	.gallery-item	.gallery-icon	a	{ display: block; position: relative; }
.gallery	.gallery-item	.gallery-icon	a	>	img	{ width: 100%; height: auto; border: none !important; }
.gallery	.gallery-item	.gallery-icon	a:before,
.gallery	.gallery-item	.gallery-icon	a:after	{ opacity: 0; -webkit-transition: all 0.25s linear 0s; transition: all 0.25s linear 0s; }
.gallery	.gallery-item	.gallery-icon	a:before	{ z-index: 2; content: "\f002"; font-family: fontAwesome; font-size: 150%; color: #fff; position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%,-50%); transform: translate(-50%,-50%); }
.gallery	.gallery-item	.gallery-icon	a:after	{ z-index: 1; content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.27); -webkit-transition: all 0.25s linear 0s; transition: all 0.25s linear 0s; }
.gallery	.gallery-item	.gallery-icon	a:hover:before,
.gallery	.gallery-item	.gallery-icon	a:hover:after	{ opacity: 1; }
.gallery	.gallery-item	.gallery-caption	{ padding: 10px 0 0; }

.elementor-widget	.red	{ color: #b91f33; }

.elementor-widget-text-editor	p	{ line-height: 1.75; margin-bottom: 25px; }
.elementor-widget-text-editor	ul	{ margin: 0 0 25px 15px; }
.elementor-widget-text-editor	ul	li	{ list-style: square; margin: 0 0 5px; }
.elementor-widget-text-editor	ul	ul	li	{ list-style: disc; }
.elementor-widget-text-editor	ol	{ margin: 0 0 25px 15px; }
.elementor-widget-text-editor	ol	li	{ list-style: decimal; margin: 0 0 5px; }
.elementor-widget-text-editor	ol	ol	li	{ list-style: lower-alpha; }
.elementor-widget-text-editor	ul	ul, .elementor-widget-text-editor	ol	ol	{ margin-top: 5px; margin-bottom: 0; }

.elementor-widget-text-editor	.elementor-widget-container	>	*:last-child	{ margin-bottom: 0 !important; }

.elementor-widget-text-editor	img.alignright	{ float: right; margin: 0 0 30px 40px; }
.elementor-widget-text-editor	img.alignleft	{ float: left; margin: 0 40px 30px 0; }
.elementor-widget-text-editor	img.aligncenter	{ display: block; margin: 0 auto 30px; }
.elementor-widget-text-editor	img.alignright,
.elementor-widget-text-editor	img.alignleft,
.elementor-widget-text-editor	img.aligncenter,
.elementor-widget-text-editor	img.alignnone	{ max-width: 100%; height: auto; }

.contact-form	.fieldset	{ margin-bottom: 60px; }
.contact-form	.title	{ font-size: 16px; font-weight: 700; text-transform: uppercase; padding: 0 0 15px; margin: 0 0 30px; border-bottom: 1px solid #d6d6d6; }
.contact-form	label	{ font-size: 15px; font-weight: 600; padding-bottom: 10px; }
.contact-form	label	>	small	{ font-size: 13px; font-weight: 400; }
.contact-form	.wpcf7-form-control-wrap	{ display: block; margin-bottom: 30px; }
.contact-form	input[type=text], .contact-form	input[type=email], .contact-form	input[type=tel], .contact-form	input[type=password], .contact-form	input[type=number], .contact-form	input[type=date], .contact-form	input[type=search], .contact-form	select, .contact-form	textarea	{ width: 100%; }
.contact-form	input[type=submit], .contact-form	input[type=button]	{ width: 100%; padding: 15px 30px !important; }

.contact-form	.wpcf7-form-control.wpcf7-radio	{ display: flex; flex-wrap: wrap; margin: 0 -15px; }
.contact-form	.wpcf7-form-control.wpcf7-radio	.wpcf7-list-item	{  margin: 5px 0 0; padding: 0 15px; }
.contact-form	.wpcf7-form-control.wpcf7-radio	.wpcf7-list-item	.wpcf7-list-item-label	{ font-weight: 400; margin: 0 0 5px; }
.contact-form	.wpcf7-form-control.wpcf7-radio:not(.auto-width)	.wpcf7-list-item	{ flex: 0 0 auto; width: 50%; }

.contact-form	.wpcf7-not-valid	{ color: #f00 !important; border-color: #f00 !important; }

.contact-form	.wpcf7-spinner	{ margin: 20px 0 0; }

.contact-form	+	.wpcf7-response-output	{ max-width: 65%; margin: 0 0 20px !important; padding: 10px !important; border-width: 1px !important; font-size: 13px; }

.contact-form	span.wpcf7-not-valid-tip	{ color: #f00; margin: 5px 0 0; font-size: 12px; }
.contact-form	span.wpcf7-not-valid-tip:before	{ font-family: fontAwesome; font-size: 80%; content: "\f071"; margin: 0 5px 0 0; }

.page-404	{ text-align: center; padding: 125px 0; background-color: #d6d6d6; }
.page-404	.title	{ font-weight: 800; padding: 0 0 20px; }
.page-404	.content	ul	{ margin-left: 0; }
.page-404	.content	ul	li	{ list-style: none; }
.page-404	.content	ul	li:before	{ content: "\f0da"; font-family: fontAwesome; margin: 0 10px 0 0; }