/*
Theme Name: Hello Child
Template: hello-elementor
*/

@import url("../hello-elementor/style.css");

/* Keyframes */
@keyframes roll-x-right-arrow {
  0% {
    background-position: 0;
  }
  40% {
    background-position: 13px;
  }
  41% {
    background-position: -13px;
  }
  100% {
    background-position: 0;
  }
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translate3d(0, -20px, 0)
	}
	to {
		opacity: 1;
		transform: none
	}
}
@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translate3d(-20px, 0, 0)
	}
	to {
		opacity: 1;
		transform: none
	}
}
@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translate3d(20px, 0, 0)
	}
	to {
		opacity: 1;
		transform: none
	}
}
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translate3d(0, 20px, 0)
	}
	to {
		opacity: 1;
		transform: none
	}
}

/* Offcanvas Toggle */
.elementor-widget-off-canvas .e-off-canvas {
	z-index: 9 !important;
}

.e-off-canvas__overlay {
	backdrop-filter: blur(5px) saturate(180%);
	-webkit-backdrop-filter: blur(5px) saturate(180%);
}

#offcanvas-toggle {
	position: relative;
	width: 48px;
	height: 48px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	z-index: 100;
}

#offcanvas-toggle span {
	display: block;
	height: 3px;
	width: 24px;
	background: #181823;
	margin: 3px 0;
	transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
	flex-shrink: 0;
}

#offcanvas-toggle.active {
	pointer-events: none;
}

#offcanvas-toggle.active span:nth-child(1) {
	transform: translateY(10px) rotate(45deg);
}

#offcanvas-toggle.active span:nth-child(2) {
	opacity: 0;
}

#offcanvas-toggle.active span:nth-child(3) {
	transform: translateY(-7.7px) rotate(-45deg);
}

.elementor-widget-off-canvas .e-off-canvas__main {
	top: 80px !important;
}

/* #offcanvas-toggle::after {} */

/* Buttons */
.elementor-button-red .elementor-button,
.elementor-button-red-arrow .elementor-button {
    background-color: #FF4339;
    color: white;
}

.text-red {
	color: #FF4339;
}

.elementor-button-red-arrow .elementor-button-content-wrapper::after,
.elementor-button-blue .elementor-button-content-wrapper::after,
.cmplz-btn.cmplz-accept::after {
	filter: brightness(0) invert(1);
}

.cmplz-title,
.cmplz-divider {
	display: none !important;
}

.cmplz-message p {
	font-size: 16px !important;
	text-align: center !important;
	font-family: articulat-cf, sans-serif !important;
}

.elementor-button-red-arrow .elementor-button-content-wrapper::after,
.elementor-button-blue .elementor-button-content-wrapper::after,
.elementor-button-white .elementor-button-content-wrapper::after,
.arrow-menu ul li a::after,
.cmplz-btn:not(.cmplz-manage-consent)::after {
	content: '';
	display: block !important;
	background-image: url('/wp-content/uploads/2025/07/icon-right.svg') !important;
	width: 14px !important;
	height: 14px !important;
	background-repeat: no-repeat !important;
	transform: rotate(-45deg) translate(1px, 3px) !important;
}

.cmplz-manage-consent {
	bottom: 0 !important;
}

.cmplz-cookiebanner.cmplz-show {
	border-radius: 0 !important;
	box-shadow: rgba(0, 0, 0, -0.21) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.cmplz-btn {
	font-weight: 700 !important;
	position: relative !important;
	justify-content: center !important;
	align-self: center !important;
}

.cmplz-btn.cmplz-accept,
.cmplz-btn.cmplz-deny,
.cmplz-btn.cmplz-view-preferences {
	display: flex !important;
}

.cmplz-btn[style*="display: block;"] {
	display: flex !important;
}

.cmplz-btn::after {
	transform: rotate(-45deg) translate(1px, 6px) !important
}

footer .arrow-menu ul li a::after {
	transform: rotate(-45deg) translate(2px, 3px) !important;
	margin-left: 5px;
}

.elementor-button:hover .elementor-button-content-wrapper::after,
.arrow-menu ul li a:hover::after,
.cmplz-btn:hover::after {
	animation: roll-x-right-arrow .4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* Arrow menu */
.arrow-menu ul {
	width: 100% !important;
    display: block !important;
}

.arrow-menu ul li a {
	display: flex !important;
	justify-content: space-between !important;
}

footer .arrow-menu ul li a {
	justify-content: flex-start !important;
}

.arrow-menu ul li:not(:last-child) {
	margin-bottom: 3px !important;
	padding-bottom: 3px !important;
}

@media (min-width: 1025px) {
	.arrow-menu ul li:not(:last-child) {
		border-bottom: 1px solid #CDDBDE !important;
	}
}

.arrow-menu ul li a::after {
	position: relative !important;
	opacity: 1 !important;
}

.arrow-menu-light ul li a {
	color: #CDDBDE !important;
	font-weight: 600 !important;
}

.arrow-menu-light ul li:not(:last-child) {
	border-bottom: none !important;
}

.arrow-menu-light ul li a::after {
	filter: brightness(0) invert(1) !important;
}

/* Sticky Header */
.sticky-header {
	transition: transform 0.3s ease-in-out;
	z-index: 100 !important;
}

.sticky-header::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	backdrop-filter: blur(16px) saturate(180%);
	-webkit-backdrop-filter: blur(16px) saturate(180%);
	background-color: rgba(255, 255, 255, 0.6) !important;
	transition: transform 0.3s ease-in-out;
	transform: translateY(-100%);
}

.sticky-header--hidden {
	transform: translateY(-100%) !important;
}

.sticky-header--active::after {
	transform: translateY(0);
}

.sticky-header .e-con-inner,
.sticky-header img {
	transition: all 0.3s ease-in-out;
	transform-origin: left center;
}

.sticky-header--active img {
	transform: scale(0.8) !important;
}

.sticky-header--active .e-con-inner {
	padding-top: 3px !important;
	padding-bottom: 3px !important;
}

.sticky-header--active:not(.sticky-header--dark) .e-n-menu-title * {
	color: #181823 !important;
}

.sticky-header--active:not(.sticky-header--dark) .e-n-menu-dropdown-icon svg {
	fill: #181823 !important;
}

.logo-container {
	position: relative !important;
}

.logo-dark {
	transition: opacity 0.3s ease-in-out;
	opacity: 0 !important;
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	display: inline-block !important;
}

.sticky-header--active:not(.sticky-header--dark) .logo-dark {
	opacity: 1 !important;
}

.sticky-header--active .logo-container-line,
.sticky-header--active .logo-container-line-2 {
	display: none !important;
}

.sticky-header--active .logo-light {
	opacity: 0 !important;
}

.sticky-header--active.sticky-header--dark .logo-light {
	opacity: 1 !important;
}

.sticky-header--dark::after {
	background-color: #1e425baa !important;
}

/* Text animations */
/* .elementor-heading-title {
	transform: translateY(40px);
	opacity: 0;
} */

.split-line {
  display: block;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
}

.split-line span {
  display: inline-block;
  will-change: transform, opacity;
}

/* Swiper Slides */
.elementor-widget-testimonial-carousel .swiper-slide {
	padding: 0 !important;
}

.elementor-testimonial__footer {
	border-top: 2px solid #8BA5B0 !important;
	padding-top: 20px !important;
}

.elementor-testimonial--align-left .swiper-pagination {
	position: relative !important;
	margin-top: 30px !important;
}

@media (min-width: 1025px) {
	.elementor-testimonial--align-left .swiper-pagination {
		text-align: left !important;
		margin-top: 50px !important;
	}
}

.elementor-testimonial--align-left .swiper-pagination-bullet:first-child{
	margin-left: 0px !important;
}

.swiper-pagination-bullet {
	border-radius: 0 !important;
}

.swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
	background-color: #8BA5B0 !important;
	opacity: 1 !important;
}

/* Slide panel */
.slide-panel {
	transition: none !important;
}

/* Hero Banner */
.hero-banner .e-con-inner {
	position: relative !important;
}

.hero-banner h2 .split-line {
	margin-top: -30px;
}

/* Accordion */
.e-n-accordion-item {
	border-bottom: 1px solid #8BA5B0 !important;
}

/* Timeline */
.timeline {
	display: flex;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
}

.timeline__line {
	width: 1px;
	background-color: #8BA5B0;
	position: relative;
	margin-right: 60px;
}

.timeline__progress {
	width: 3px;
	background-color: #FF4339;
	position: absolute;
	top: 0;
	height: 0;
	left: -1px;
}

.timeline__content {
	flex: 1;
}

.timeline__item {
	display: flex;
	align-items: flex-start;
	position: relative;
}

.timeline__item:not(:last-child) {
	margin-bottom: 50px;
}

.timeline__number {
	width: 40px;
	flex-shrink: 0;
	text-align: left;
	left: -100px;
	position: absolute;
}

.timeline__text h4 {
	margin-top: -10px !important;
	max-width: 80%;
}

.timeline__text p {
	color: #555;
}

@media (max-width: 767px) {
	.timeline__line {
		margin-right: 30px;
	}

	.timeline {
		padding: 0 10px;
	}

	.timeline__number {
		left: -80px;
	}
}

@media (max-width: 768px){
	.hero-banner h2 .split-line {
		margin-top: -20px;
	}
}

#cmplz-manage-consent .cmplz-manage-consent {
	position: fixed !important;
}