/*
 Theme Name: Hello Elementor Child
 Theme URI: https://example.com
 Description: Child tema za Hello Elementor
 Author: Ivan
 Template: hello-elementor
 Version: 1.0.0
*/

/* #wpadminbar{
	display: none;
} */
h1, h2, h3, h4{
	/* color: #F5E6A2; */
  color: #f78f1e;
  /* text-shadow: 
    -1px -1px 0 rgba(0, 0, 0, 0.8), 
    1px 1px 0 rgba(255, 255, 255, 0.1), 
    3px 3px 5px rgba(0, 0, 0, 0.5);  */
    text-shadow:  
      -1px -1px 0 rgb(0, 0, 0), 
      1px 1px 0 rgba(255, 255, 255, 0.1), 
      3px 3px 5px rgba(0, 0, 0, 0.81);

}
h2{
 font-size: 36px;
}
h3{
  font-size: 28px;
}
h4{
  font-size: 24px;
}
a{
	color: #E57C00;
}
.scrolled .elementor-sticky {
/* 	transform: scaley(0.88); */
/*   top: -6px !important; */
	background-color: #313638b5 !important;
	    transition: height .3s 
ease-out, background .3s 
ease-out, box-shadow .3s 
ease-out;
}

/* Hide menu  */
@media (min-width: 1025px) {
    #newHeader {
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    #newHeader.hide-header {
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
    }
}

/* Footer */
footer a{
  color: #D76E00;
}
footer a:hover{
  color: #D76E00BD;
}
/* Home */
body.home header.elementor-location-header,
body.page-id-724 header.elementor-location-header{
  background: transparent !important;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

body.home .elementor-location-header .elementor-container,
body.page-id-724 .elementor-location-header .elementor-container {
 
  background: transparent !important;
}

body.home .elementor-section:first-of-type,
body.page-id-724 .elementor-section:first-of-type {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
/* CTA */
.cta-wrapper {
    width: 100%;
    background: transparent;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.cta-inner {
    max-width: 900px;
    text-align: center;
}

.cta-title {
    color: #FFFFF0;
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-text {
    color: #FFFFF0;
    font-size: 18px;
    margin-bottom: 25px;
}

.cta-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #D76E00;
    color: #FFFFF0;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s ease;
}

.cta-btn:hover {
    opacity: 0.85;
}


/* Animated divider  */
.animated-lines-container {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 15px;
}
/* Left line */
.top-line {
  display: inline-block;
  width: 50%; 
  overflow: hidden;
  height: 2px;
  z-index: 10;
  color: transparent !important;
  position: relative;
}

.top-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%; 
  width: 0%;   
  background: linear-gradient(to right, #3C4144, #FFFFF0);
}

.animated-lines-container.is-visible .top-line::before {
  animation: grow-left 1.5s ease-out forwards;
}

@keyframes grow-left {
  0% { width: 0%; }
  100% { width: 100%; } 
}
/* Right line */
.bottom-line {  
  display: inline-block; 
  width: 50%; 
  overflow: hidden;
  height: 2px;
  color: transparent !important;   
  position: relative;
  z-index: 5;
}

.bottom-line::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 0%;   
  background: linear-gradient(to left, #3C4144, #FFFFF0); 
}

.animated-lines-container.is-visible .bottom-line::before {
  animation: grow-right 1.5s ease-out forwards;
}

@keyframes grow-right {
  0% { width: 0%; }
  100% { width: 100%; } 
}