/**
 * Theme Name:     Hello Elementor Child
 * Author:         Elementor Team
 * Template:       hello-elementor
 * Text Domain:	   hello-elementor-child
 * Description:    A lightweight and minimalist WordPress theme for Elementor page builder.
 */
.wrapper {
  margin: 0 auto;
}

.trigger {
  position: absolute;
}

.trigger--one {
  left: 0;
}

.scene {
  position: absolute;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
}

.scene--active {
  position: fixed;
}

.scene--ended {
  position: absolute;
  bottom:auto;
  top: 0;
}
.horizontal-scroll-section {
  position: relative;
  height: 100vh;
  opacity: 0;
  transition: 0.2s opacity;
}

.horizontal-scroll-section--init {
  opacity: 1;
}

.horizontal-scroll-section img {
  display: block;
  max-height: 80%;
  width: auto;
}

.horizontal-scroll-section__content {
  display: flex;
  align-items: center;
}

.horizontal-scroll-section__content-wrapper {
  display: flex;
  height: 100%;
  align-items: center;
  position: relative;
}

.horizontal-scroll-section__content-section {
  position: relative;
  min-width: 20%;
  text-align: center;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
	flex-wrap:wrap;
	justify-content:center;
	align-content:center;
	gap:40px;
}
.horizontal-scroll-section__content-section .parent-square:before{
 content: "";
    position: absolute;
    height: 3px;
    width: 190%;
    background: url(./assets/img/line-scroll.svg);
    z-index: 3;
    top: 0;
    bottom: 0;
    right: -140%;
    margin: auto;
    z-index: 0;
}
.horizontal-scroll-section__content-section.last_bo .parent-square:before{
 content: "";
    position: absolute;
    height: 3px;
    width: 100%;
    background: url(./assets/img/line-scroll.svg);
    z-index: 3;
    top: 0;
    bottom: 0;
    right: -70%;
    margin: auto;
    z-index: 0;
}
.text-step{
	height:100px;
	font-family: Playfair Display;
	font-size: 20px;
	font-weight: 400;
	line-height: 34px;
	letter-spacing: 0.05em;
	text-align: center;
}
.horizontal-scroll-section__content-section.last .parent-square:before{
 	display:none
}
.horizontal-scroll-section__image {
  display: flex;
  align-items: center;
}

.horizontal-scroll-section__image h2 {
  margin-left: 20px;
  width: 250px;
  text-align: left;
  flex-shrink: 0;
}

.horizontal-scroll-section__image--two img {
  max-width: 400px;
}

.horizontal-scroll-section__image--four img {
  max-width: 400px;
}

.horizontal-scroll-section--animation-one .horizontal-scroll-section__image--two {
  opacity: 1;
  transform: translateX(0);
}
.square {
	width: 25px;
    height: 25px;
    background-color: #FF1A51;
    color: #030303;
    font-family: Playfair Display;
    font-size: 150px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 1s;
    transform: scale(0.5) rotate(45deg);
    border: 5px solid #E6E6E6;
	
}
.square span{
	margin-top:-40px;
	display:none;
}
.parent-square{
	width: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.square.active {
   	width: 250px;
    height: 250px;
    transform: scale(1) rotate(0deg);
	border: 30px solid #E6E6E6;
}
.square.active span {
 	display:block;
}
.fixed-title {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff; /* Ajustați culoarea de fundal după preferință */
  z-index: 100; /* Asigurați-vă că titlul este deasupra celorlalte conținuturi */
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#th_list {
	list-style:none;
	width:100%;
}
#th_list li{
	width:100%;
	display:flex;
	justify-content:space-between;
}
#th_list li .title{
	color: #030303;
	font-family: Playfair Display;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 34px; 
	letter-spacing: 1px;
}
#th_list li .value{
	color: #FF1A51;
	text-align: right;
	font-family: Playfair Display;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 34px; 
	letter-spacing: 1px;
}
@media (max-width: 480px){
	#th_list li{
		flex-wrap: wrap;
		margin-top:30px;
	}
	#th_list li .value {
    	text-align: left;
	}
}