.visual_soon {
  position: relative;
  width: 100%;
  min-height: 530px; /* sau cât ai nevoie */
  background-image: url('../images/visual_soon_2.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
	padding-bottom: 30px;
  }

.visual_soon h1 {  color: rgba(21,40,40,1); font-size: 36px; font-weight: 700; margin-top: 50px;}
.visual_soon p {  color: #3d5454; font-size: 18px;}
.visual_soon p.small {  color: rgba(26,43,43,1); font-size: 16px;}

.visual_soon::before {
  content: '';
  position: absolute;
  inset: 0;
}

.visual_soon img{width: 150px;}

.email-container {
  display: inline-block;
  align-items: center;
  border: 1px solid rgba(112,112,112,0.7);
  border-radius: 999px; /* face colțurile complet rotunde */
  padding: 4px;
  background: white;
  width: fit-content;
}

.email-container input {
  border: none;
  outline: none;
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 16px;
  width: 300px;
}

.email-container button {
  background-color: #007c7a; /* culoarea din imagine */
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}

.email-container button:hover {
  background-color: #006665;
}



/*INFINTE SLIDER AUTO*/
.slider_soon{
    width: 100%;
    /*border: 1px solid red;*/
    height: var(--height);
    overflow-x: hidden;
	border-left: 1px solid #eee;
	border-right: 1px solid #eee;
}
.slider_soon .list{
    display: flex;
    width: 100%;
    min-width: calc(var(--width) * var(--quantity));
    position: relative;
}
.slider_soon .list .item{
    width: var(--width);
    height: var(--height);
    position: absolute;
    left: 100%;
    line-height: 88px;
    animation: autoRun_soon 15s linear infinite;
    animation-delay: calc( (15s / var(--quantity)) * (var(--position) - 1) );
	text-align: center;
}
.slider_soon .list .item img{
    max-height: 60px;
    max-width: 80px;
	filter: grayscale(100%);
	height: auto;
}

.slider_soon .list .item:hover img{
	filter: grayscale(0%);
}

@keyframes autoRun_soon {
    from {
        left: 100%;
    }
    to{
        left: calc(var(--width)* -1);
    }
}
.slider_soon:hover .item{
    animation-play-state: paused !important;
}

.soon_illustration {
	padding-top: 200px;
	background-image: url('/images/illustration-lines-2.png');
	background-repeat: no-repeat;
	background-size: 1600px auto; /* întinde pe lățime, înălțimea se ajustează automat */
	background-position: top center; /* aliniază sus și pe centru */
}
h2.soon {font-weight: 600; font-size: 24px; line-height: 24px; margin: 0 0 10px 0;}

.soon_footer {background-color: rgba(17,26,26,1);
	padding-top: 132px;
	background-image: url('/images/illustration-lines-3.png');
	background-repeat: no-repeat;
	background-size: 1600px auto; /* întinde pe lățime, înălțimea se ajustează automat */
	background-position: top center; /* aliniază sus și pe centru */
	color: #fff;
}

.soon_footer p {color: #fff; font-size: 18px; line-height: 28px;}
.btn-alb-negru, .btn-alb-negru:hover { background: #ffffff; color: rgba(17,26,26,1); font-weight: 500; padding: 10px 20px; border-radius: 30px;}
.soon_footer p.small {font-size: 12px; color: rgba(255,255,255,0.4);}

.soon_footer .col {display: flex;
  justify-content: center;
  align-items: center;}
.soon_footer .col img {max-width: 65px; max-height: 65px; height: auto;}
.soon_footer .col img.logoul {max-width: 80px; max-height: 80px; height: auto;}




@media (min-width: 100px) and (max-width: 767px){

	.soon_logos img {
		max-height: 30px;
		max-width: 30px;
		height: auto;
	}
	.email-container input {
	  border: none;
	  outline: none;
	  padding: 10px 15px;
	  border-radius: 999px;
	  font-size: 16px;
	  width: 200px;
	}
}