/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
:root{
	--alb: #ffffff;
	--xs: 16px;
	--s: 24px;
	--m: 32px;
	--l: 38px;
	--xl: 48px;
	--xxl: 56px;
	--negru: #222222;
	--alb: #ffffff;
	--albastru: #001741;
	--rosu: #F91420;
	--rosuBg: #D51A24;
	--gri: #F5F5F5;
	--gri-deschis: #999999;
	--gri-scris: #6B6B6B;
	--gri-transparent: #99999940;
}
html,
body {
	width: 100%;
}

@font-face {
	font-family: 'OverusedGroteskBlack';
	src: url('../fonts/OverusedGrotesk-Black.otf') format('opentype');
}
@font-face {
	font-family: 'OverusedGroteskMedium';
	src: url('../fonts/OverusedGrotesk-Medium.otf') format('opentype');
}
@font-face {
	font-family: 'OverusedGroteskLight';
	src: url('../fonts/OverusedGrotesk-Light.otf') format('opentype');
}
@font-face {
	font-family: 'Nimbus';
	src: url('../fonts/Nimbus Sans Becker PBla Regular.ttf') format('truetype');
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	background-color: var(--gri);
	overflow-x: hidden;
	line-height: 1;
	font-family: 'OverusedGroteskLight';

}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
*{
	box-sizing:border-box;
}
strong {
    font-weight: 800;
}
em{
    font-style: italic;
}
a{
	text-decoration: none;
}
h1{
	font-size: var(--xxl);
}
h2{
	font-size: var(--xl);
}
h3{
	font-size: var(--l);
}
 /******** FIX CKEDITOR ********/
 .static {
 	position: relative;
 }

 .static strong {
 	font-weight: 800;
 }

 .static em {
 	font-style: italic;
 }

 .static a,
 .static a:hover {
 	color: var(--rosu);
 	text-decoration: underline;
 }

 .static img {
 	max-width: 100%;
 	height: auto;
 }

 .static ul {
 	list-style: disc;
 	padding-left: 20px;
 }

 .static ol {
 	list-style: decimal;
 	padding-left: 20px;
 }

 .static li {
 	margin-bottom: 5px;
 }

 .static p {
 	margin-bottom: 8px;
 }

 .static h1,
 .static h2,
 .static h3,
 .static h4,
 .static h5 {
 	padding-top: 10px;
 	margin-bottom: 10px;
 }

 .static h1 {
 	font-size: var(--xl);
 }

 .static h2 {
 	font-size: var(--l);
 }

 .static h3 {
 	font-size: var(--m);
 }

 .static h4 {
 	font-size: var(--s);
 }

 .static h5 {
 	font-size: var(--xs);
 }
.editAdmin {
  position: absolute;
  z-index: 100;
  top: 5px;
  right: 5px;
  outline: 0;
  display: block;
  width: 15px;
  height: 15px;
}
.editAdmin img{
  width: 15px;
  height: 15px;
}
.cardMesaj{
	display: none;
}
.logoNav{
	cursor: pointer;
	height: 40px;
}
.stickyElementNavbar{
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 5000;
	background-color: var(--gri);
}
.navbar{
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.menuNavWrap{
	display: flex;
	align-items: center;
	gap: 20px;
}
.container {
	margin: 0 auto;
	max-width: 1300px;
	width: 90%;
	position: relative;
}
.buttonNav{
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 4px 16px 4px 4px;
	border-radius: 8px;
	color: var(--alb);
	background-color: var(--albastru);
	border: none;
	line-height: 100%;
	font-size: var(--xs);
	font-family: 'OverusedGroteskLight';
	cursor: pointer;
}
.buttonNavSecondary {
	width: fit-content;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 2px 16px 2px 2px;
	border-radius: 8px;
	color: var(--alb);
	background-color: var(--rosuBg);
	line-height: 100%;
	border: 2px solid var(--rosuBg);
	font-size: var(--xs);
	font-family: 'OverusedGroteskLight';
	cursor: pointer;
}
.menuNavWrap a{
	cursor: pointer;
	text-decoration: none;
	text-emphasis: none;
	color: var(--negru);
}
.menuNavWrap .buttonNav{
	color: var(--alb);
}
.menuNavWrap .buttonNavSecondary{
	color: var(--alb);
}
.iconNav{
	width: 32px;
	height: 32px;
}
.servicesNavWrap{
	position: relative;
	display: flex;
	align-items: center;
}
.servicesNavTrigger{
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	color: var(--negru);
	font-size: inherit;
	font-family: inherit;
	background: none;
	border: none;
	padding: 0;
}
.servicesDropdown{
	position: absolute;
	top: 100%;
	left: 0;
	margin-top: 8px;
	display: none;
	background: var(--gri);
	border: 1px solid #99999940;
	border-radius: 8px;
	min-width: 180px;
	padding: 8px;
	z-index: 5001;
}
.servicesNavWrap.is-open .servicesDropdown{
	display: block;
}
.servicesDropdown a{
	display: block;
	padding: 10px 16px;
	color: var(--negru);
	text-decoration: none;
	font-size: var(--xs);
	white-space: nowrap;
}
.servicesDropdown a:hover{
	background: var(--gri);
}
.iconNavServices{
	margin-left: 5px;
	width: 11px;
	height: 6px;
	transition: transform 0.2s ease;
}
.servicesNavWrap.is-open .iconNavServices{
	transform: rotate(180deg);
}
.flagTranslate{
	width: 24px;
	height: 16px;
}
.flagTranslate{
	cursor: pointer;
}
.langNavWrap .servicesDropdown{
	left: auto;
	right: 0;
}
.langNavWrap .servicesDropdown a{
	display: flex;
	align-items: center;
	gap: 10px;
}
.langOptionFlag{
	width: 24px;
	height: 16px;
	flex-shrink: 0;
}
.iconTranslate{
	margin-left: 5px;
	width: 11px;
	height: 6px;
	transition: transform 0.2s ease;
}
.servicesNavWrap.is-open .iconTranslate{
	transform: rotate(180deg);
}
.translateWrap{
	display: flex;
	align-items: center;
}
.heroWrapper{
	margin-top: 146px;
	justify-self:center;
}
.static h1 {
	font-family: 'Nimbus';
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--albastru);
	line-height: 120%;
	margin-bottom: 24px;
}

.static h2 {
	font-family: 'Nimbus';
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--albastru);
	line-height: 120%;
	margin-bottom: 24px;
}

.static h3 {
	font-family: 'Nimbus';
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--albastru);
	line-height: 120%;
	margin-bottom: 24px;
}

.static p {
	font-family: 'OverusedGroteskLight';
	line-height: 150%;
	color: var(--negru);
	margin-bottom: 16px;
}
.heroTitle{
	font-size: var(--xl);
	line-height: 120%;
	color: var(--albastru);
	font-family: 'Nimbus';
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 24px;
	text-align: center;
}
.static .heroTitle{
	font-size: var(--xl);
	line-height: 120%;
	color: var(--albastru);
	font-family: 'Nimbus';
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 24px;
}
.heroTitleStatic{
	font-size: var(--xxl);
		line-height: 120%;
		color: var(--albastru);
		font-family: 'Nimbus';
		text-transform: uppercase;
		letter-spacing: 2px;
		margin-bottom: 24px;
		word-break: break-word;
}
.heroContent{
	display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		z-index: 2000;
		position: relative;
}
.heroText{
	font-size: var(--xs);
	font-family: 'OverusedGroteskLight';
	line-height: 150%;
	color: var(--negru);
	text-wrap-style: balance;
	text-align: -webkit-center;
	margin-bottom: 32px;
	max-width: 600px;
}
.heroTextStiri{
	text-align: center;
}
.textDetaliiContact{
	text-wrap-style: initial;
}
.numereDetalii .heroText{
	margin-bottom: 0px;
}
.numereDetalii{
	position: relative;
}
.smallText{
	font-size: var(--xs);
	font-family: 'OverusedGroteskLight';
	text-transform: capitalize;
	color: var(--gri-scris);
	margin-bottom: 24px;
	white-space: nowrap;
}
.paddingTopPage{
	padding-top: 112px;
	padding-bottom: 112px;
}
.bannerHomeWrapper{
	position: relative;
}
.bannerHomeWrapper::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 64px;
	background: linear-gradient(180deg, #F5F5F5 0%, rgba(245, 245, 245, 0) 100%);
	z-index: 1;
	pointer-events: none;
}
.bannerHomeWrapper::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 64px;
	background: linear-gradient(180deg, #F5F5F5 0%, rgba(245, 245, 245, 0) 100%);
	z-index: 1;
	pointer-events: none;
}
.bannerHome{
	width: 100%;
	height: 650px;
	object-fit: cover;
	object-position: center;
	display: block;
	position: relative;
}
.blogHomeCards{
	display: flex;
	justify-content: flex-start;
	gap: 32px;
	margin-bottom: 64px;
	flex-wrap: wrap;
}
.stiriCards{
	justify-content: flex-start;
	flex-wrap: wrap;
}
.stiri-more-batch{
	display: contents;
}
.blogHomeCard{
	width: 30%;
	display: flex;
	flex-direction: column;
	border-radius: 24px;
	border: 1px solid var(--gri-transparent);
}
.blogHomeCard:hover .buttonNav{
	color: var(--albastru) !important;
}
.blogHomeCard:hover .buttonNav::before {
	width: calc(100% - 8px);
}
.cardMesaj{
	display: none;
}
.overlayCardMesaj{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 6000;
	background-color: rgba(0, 0, 0, 0.5);
}
.cardMesajContent {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 20px;
	padding: 48px;
	border-radius: 24px;
	max-width: 600px;
	width: 90%;
	text-decoration: none !important;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 6001;
	background-color: var(--alb);
	border: 1px solid var(--gri-transparent);
}
.cardMesaj .susCardMesaj {
	font-family: 'Nimbus';
	line-height: 120%;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: var(--m);
}
.cardMesajDA .susCardMesaj {
	color: var(--albastru);
}
.cardMesajNU .susCardMesaj {
	color: var(--rosu);
}
.serviciiWrapper .detailsServicesRight .blogHomeCard{
	width: 640px;
}
.blogHomeCardImage{
	border-top-left-radius: 24px;
	border-top-right-radius: 24px;
	height: 300px;
	width: 100%;
	object-fit: cover;
	display: block;
	position: relative;
}
.blogHomeCardContent{
	padding: 30px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.blogHomeCardTitle{
 font-size: var(--s);
 font-family: 'Nimbus';
 text-transform: uppercase;
 letter-spacing: 2px;
 color: var(--rosu);
}
.heightButtonArticole{
	width: 150px;
}
.blogHomeCardText{
margin-bottom: 16px;
font-family: 'OverusedGroteskLight';
font-size: var(--xs);
line-height: 150%;
color: var(--negru);
}
.blogHomeCardDate{
	margin-bottom: 0px;
}
.viewMoreArticoleButton{
	justify-self: center;
}
.margin64{
	margin-bottom: 64px;
}
.infoContent{
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.infoTitle{
	font-size: var(--l);
	font-family: 'Nimbus';
	text-transform: uppercase;
	color: var(--alb);
	text-align: center;
	letter-spacing: 1px;
}
.servicesWrapper .heroTitle, .detaliiWrapper .heroTitle, .serviciuScrollWrapperLeft .heroTitle{
	text-align: left;
}
.infoWrapper{
	background-image: url('../images/bannerReady.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 272px;
	position: relative;
	margin-bottom: 64px;
}
.infoWrapper::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #001741B2;
	z-index: 1;
}
.infoWrapper > * {
	position: relative;
	z-index: 2;
}
.cardDetaliiServicesImage{
	width: 45px;
}
.cardDetaliiAboutUsImage{
	width: 39px;
	height: 39px;
}
.cardDetaliiServicesTitle{
	font-family: 'Nimbus';
	font-size: var(--m);
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--rosu);
	line-height: 120%;
	text-align: left;
}
.numereDetaliiTitle{
	font-family: 'Nimbus';
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--rosu);
	line-height: 120%;
}
.numereDetalii span{
	font-size: var(--m);
}
.paddingServicesCard{
	width: 100%;
	gap:16px;
	padding: 48px;
}
.servicesWrapper{
	gap:64px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
}
.detailsServicesLeft{
	display: flex;
	min-height: 357px;
	justify-content: center;
	flex-direction: column;
	position: sticky;
	top: 200px;
	left: 0;
	max-width: 600px;
}
.detailsServicesLeft .buttonNavSecondary{
	flex-shrink: 0;
	align-self: flex-start;
	min-height: 44px;
	box-sizing: border-box;
}
.detailsServicesRight{
	position: relative;
	display: flex;
	gap:32px;
	flex-direction: column;
	align-items: center;
}
.expandTrackServices {
    width: 100%;
    position: relative;
}
.cardService:nth-child(1){
	background-color: var(--gri);
	position: sticky;
	left: 0;
	top: 200px;
	z-index: 1;
}
.cardService:nth-child(2){
	background-color: var(--gri);
	position: sticky;
	left: 0;
	top: 220px;
	z-index: 2;
}
.cardService:nth-child(3){
	background-color: var(--gri);
	position: sticky;
	left: 0;
	top: 240px;
	z-index: 3;
}
.cardService:nth-child(4){
	background-color: var(--gri);
	position: sticky;
	left: 0;
	top: 260px;
	z-index: 4;
}
.cardService:nth-child(5) {
	background-color: var(--gri);
	position: sticky;
	left: 0;
	top: 280px;
	z-index: 5;
}
.stickyElementServices {
    position: sticky;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: 10;
}
.reviewCard{
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding: 48px;
	border-radius: 24px;
	border: 1px solid var(--gri-transparent);
}
.reviewCardContact{
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 48px;
	border-radius: 24px;
	border: 1px solid var(--gri-transparent);
	align-items: center;
	max-width: 300px;
	width: 100%;
	margin: 0 auto;
	text-decoration: none !important;
	transition: transform 0.1s ease-in-out;
}
.reviewCardContact:hover{
	text-decoration: none !important;
	transform: translateY(-10px) !important;
}
.reviewsCarousel{
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	overscroll-behavior-x: contain;
	padding-bottom: 8px;
	scrollbar-color: var(--gri-transparent) transparent;
}
.reviewsCarousel::-webkit-scrollbar{
	height: 8px;
}
.reviewsCarousel::-webkit-scrollbar-track{
	background: transparent;
}
.reviewsCarousel::-webkit-scrollbar-thumb{
	background: var(--gri-transparent);
	border-radius: 4px;
}
.reviewsCards{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 32px;
	width: 100%;
}
.reviewsCarousel .reviewCard{
	flex: 0 0 calc((100% - 64px) / 3);
	box-sizing: border-box;
	scroll-snap-align: start;
	min-width: 0;
}
.clientReviewImage{
	width: 48px;
	height: 48px;
	object-fit: cover;
	display: block;
	border-radius: 8px;
	flex-shrink: 0;
}
.clientReviewImage--placeholder{
	object-fit: cover;
	background-color: var(--gri);
	border: 1px solid var(--gri-transparent);
}
.clientReviewName{
	font-family: 'Nimbus';
	font-size: var(--xs);
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--albastru);
}
.clientReviewText{
	font-family: 'OverusedGroteskLight';
	font-size: var(--xs);
	line-height: 150%;
	color: var(--albastru);
}
.clientReview{
	display: flex;
	gap: 16px;
	align-items: center;
}
.clientReviewContent{
	display: flex;
	flex-direction: column;
}
.getInTouchWrapper{
	background-image: url('../images/touch.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	padding: 112px 64px;
}
.getInTouchWrapper::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #001741B2;
	z-index: 1;
}
.getInTouchWrapper > * {
	position: relative;
	z-index: 2;
}
.getInTouchWrapper .heroContent .smallText{
	color: var(--gri);
}
.getInTouchWrapper .heroContent .heroTitle {
	color: var(--gri);
}
.getInTouchWrapper .heroContent .blogHomeCardText {
	color: var(--gri);
}
.getInTouchWrapper .container {
   place-items: center;
}
.getInTouchContent{
	margin-top: 64px;
	margin-bottom: 64px;
	width: 100%;
	display: flex;
	gap: 32px;
	position: relative;
}
.getInTouchCard{
	gap: 24px;
	width: -webkit-fill-available;
	display: flex;
	flex-direction: column;
	padding: 40px;
	border-radius: 24px;
	border: 1px solid var(--gri-transparent);
	background-color: var(--alb);
	align-items: center;
	flex: 1;
	max-width: 500px;
	position: relative;
	transition: transform 0.3s ease-in-out;
}
.getInTouchCard:hover{
	transform: translateY(-10px);
}
.getInTouchCardImageMail{
	width: 39px;
	height: 30px;
}
.getInTouchCardImagePhone{
	width: 37px;
	height: 37px;
}
.getInTouchCardImageLocation{
	width: 33px;
	height: 42px;
}
.getInTouchCardTitle{
	font-family: 'Nimbus';
	font-size: var(--xs);
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--albastru);
}
.getInTouchCardText{
	font-family: 'OverusedGroteskLight';
	text-align: center;
	font-size: var(--xs);
	line-height: 150%;
	color: var(--albastru);
	text-decoration: underline;
	text-underline-offset: 16%;
}
.chooseUsWrapper{
	place-items: center;
}
.chooseUsText{
	place-items: center;
}
.chooseUsText p, .chooseUsText .getInTouchCardText{
	text-decoration: none;
}
.chooseUsImage{
	width: 48px;
	height: 48px;
}
.socialMediaImageJosFacebook{
	width: 20px;
	height: 20px;
}
.socialMediaImageJosInstagram{
	width: 18px;
	height: 18px;
}
.socialMediaImageJosLinkedin{
	width: 18px;
	height: 18px;
}
.socialMediaImageJosYoutube{
	width: 20px;
	height: 14px;
}
.josWrapper{
	padding: 80px 0px 64px 0px;
	background-color: var(--albastru);
}
.socialMediaWrapJos{
	display: flex;
	align-items: center;
	gap: 12px;
}
.contactWrapperJosLeft{
	display: flex;
	flex-direction: column;
	gap:32px;
	position: relative;
}
.contactTitleJos{
	font-family: 'Nimbus';
	font-size: var(--xs);
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--gri);
}
.dateContactImageJos{
	width: 13px;
	height: 10px;
}
.dateContatWrapJos{
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.infoWrapJos a, .dateContactWrap a{
	color: var(--gri);
	font-family: 'OverusedGroteskLight';
	font-size: var(--xs);
	line-height: 150%;
}
.dateContactWrap a {
	text-decoration: underline;
}
.infoWrapJos a:hover{
	text-decoration: underline;
}
.wrapColoanaJos .contactTitleJos{
	display: block;
	margin-bottom: 16px;
}
.wrapColoanaJos{
	position: relative;
}
.dateContactImageJosMail{
	width: 13px;
	height: 10px;
}
.dateContactImageJosPhone{
	width: 12px;
	height: 12px;
}
.dateContactImageJosLocation{
	width: 11px;
	height: 14px;
}
.dateContactWrap{
	display: flex;
	align-items: center;
	gap: 4px;
}
.josContentWrapFirst{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 64px;
	width: 100%;
}
.contactWrapperJosRight{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 128px;
}
.infoWrapJos{
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.infoWrapJos .dateContactTextJos{
	text-decoration: none;
}
.infoWrapJos .dateContactTextJos:hover{
	text-underline-offset: 4px;
	text-decoration: underline;
}
.infoImageJos{
	width: 100%;
}
.josWrapper .container{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 64px;
}
.copyrightWrapJos{
	border-top: 1px solid var(--gri);
	padding-top: 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}
.copyrightTextJos{
	font-family: 'OverusedGroteskLight';
	font-size: var(--xs);
	line-height: 150%;
	color: var(--gri);
}
.developedByWrapJos{
	display: flex;
	align-items: center;
	gap: 24px;
}
.bannerAboutUs{
	width: 100%;
	border-radius: 32px;
	object-fit: cover;
	display: block;
	position: relative;
}
.aboutUsGetInTouchWrapper{
	margin-bottom: 0px;
}
.detaliiWrapper{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 64px;
}
.detaliiWrapperImage{
	height: 650px;
	width: 100%;
	object-fit: cover;
	display: block;
	position: relative;
	border-radius: 32px;
}
.detaliiWrapperImageScroll{
	width: 560px;
	height: 560px;
	object-fit: cover;
	display: block;
	position: relative;
	border-radius: 32px;
}
.detaliiWrapperRightScroll{
	width: 560px;
	height: 560px;
}
.detaliiWrapperLeft{
	width: 50%;
	display: flex;
	flex-direction: column;
}
.serviciuScrollWrapperLeft{
	width: 608px;
	flex-shrink: 0;
	flex-grow: 0;
	display: flex;
	flex-direction: column;
}
.detaliiWrapperRight{
	width: 50%;
}
.buttonNav {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 2px 16px 2px 2px;
	border-radius: 8px;
	font-size: var(--xs);
	font-family: 'OverusedGroteskLight';
	cursor: pointer;
	background: var(--albastru);
	color: var(--alb);
	border: 2px solid var(--albastru);
}

.buttonNav::before {
	content: "";
	position: absolute;
	top: 2px;
	bottom: 2px;
	left: 6px;
	width: 0%;
	background: var(--gri);
	border-radius: 6px;
	transition: width .4s cubic-bezier(.4, 0, .2, 1);
	z-index: 0;
}

.buttonNav:hover::before {
	width: calc(100% - 8px);
}

.buttonNav:hover {
	color: var(--albastru) !important;
}

.buttonNav>* {
	position: relative;
	z-index: 4;
}
.buttonNav>* {
	position: relative;
	z-index: 4;
}

.buttonNavSecondary::before {
	content: "";
	position: absolute;
	top: 2px;
	bottom: 2px;
	left: 6px;
	width: 0%;
	background: var(--gri);
	border-radius: 6px;
	transition: width .4s cubic-bezier(.4, 0, .2, 1);
	z-index: 0;
}

.buttonNavSecondary:hover::before {
	width: calc(100% - 8px);
}

.buttonNavSecondary:hover {
	color: var(--rosuBg) !important;
}

.buttonNavSecondary>* {
	position: relative;
	z-index: 4;
}

.serviciuScrollWrapper{
	overflow-x: scroll;
	overflow-y: hidden;
	position: relative;
	display: flex;
	align-items: center;
	flex-direction: row;
	gap: 32px;
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE and Edge */
}
.serviciuScrollWrapper::-webkit-scrollbar {
	display: none; /* Chrome, Safari, Opera */
}
.textDetalii{
	text-align: start;
}
.numereDetaliiWrapper{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}
.formContactInput{
	border: 1px solid var(--gri-deschis);
	border-radius: 12px;
	padding: 16px;
	font-family: 'OverusedGroteskLight';
	font-size: var(--xs);
	line-height: 150%;
	color: var(--negru);
	background-color: var(--gri);
}
.formContactInput::placeholder{
	color: var(--gri-scris);
}
.formContactWrapper{
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.formCalculatorWrapperItem{
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.formContactWrapperItem{
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.formContactLabel{
	font-family: 'Nimbus';
	font-size: var(--xs);
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--albastru);
}
.imagineWrapGalerie a{
	display: block;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: transform 0.2s ease-in-out;
}
.imagineWrapGalerie a:hover{
	transform: scale(1.05);
}
.contactWrapper{
	margin-top: 146px;
	padding-bottom: 112px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 64px;
}
.leftContactWrapper{
	position: relative;
	width: 50%;
}
.rightContactWrapper{
	width: 50%;
}
.contactWrapper .heroText{
	text-align: start;
}
.reteleSocialeContactFacebook{
	width: 40px;
	height: 40px;
}
.reteleSocialeContactInstagram{
	width: 36px;
	height: 36px;
}
.reteleSocialeContactLinkedin{
	width: 36px;
	height: 36px;
}
.reteleSocialeContactYoutube{
	width: 40px;
	height: 28px;
}
.reteleSocialeContactText{
	font-family: 'Nimbus';
	line-height: 120%;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--rosu);
	font-size: var(--m)
}
.rightContactWrapper{
	align-items: center;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}
.formMesajContact{
	height: 180px;
	min-height: 180px;
	resize: vertical;
}
.colorLege{
	color: var(--rosu);
	text-decoration: underline;
}
.butonWrap{
	margin-top: 24px;
}
.calculatorHeroWrapper{
	width: 100%;
}
.calculatorRow{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 48px;
	width: 100%;
	flex-wrap: nowrap;
}
.formular-calculator-content{
	width: 50%;
	max-width: 560px;
	flex: 1 1 48%;
	min-width: 0;
}
.calculatorFormCard{
	background: var(--alb);
	border-radius: 20px;
	padding: 28px 32px 32px;
	box-shadow: 0 12px 40px rgba(0, 23, 65, 0.08);
	border: 1px solid rgba(0, 23, 65, 0.06);
}
.calculatorProgress{
	margin-bottom: 28px;
}
.calculatorProgressSteps{
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}
.calculatorProgressStep{
	flex: 0 0 36px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Nimbus';
	font-size: 14px;
	letter-spacing: 0;
	color: var(--albastru);
	border: 2px solid rgba(0, 23, 65, 0.25);
	background: var(--alb);
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.calculatorProgressStep.is-current{
	background: var(--albastru);
	color: var(--alb);
	border-color: var(--albastru);
	transform: scale(1.05);
}
.calculatorProgressRail{
	flex: 1;
	height: 4px;
	background: rgba(0, 23, 65, 0.1);
	border-radius: 4px;
	overflow: hidden;
	min-width: 40px;
}
.calculatorProgressRailFill{
	display: block;
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, var(--albastru), var(--rosuBg));
	border-radius: 4px;
	transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.calculatorProgressCaption{
	font-family: 'OverusedGroteskLight';
	font-size: 15px;
	line-height: 1.45;
	color: var(--gri-scris);
	margin: 0;
}
.calculatorStepPane--2.is-collapsed{
	display: none;
}
.calculatorActionsRow{
	margin-top: 24px;
}
.calculatorBtnBlock{
	width: 100%;
	justify-content: center;
	padding: 12px 20px;
	min-height: 48px;
	font-size: 17px;
	border-radius: 10px;
}
.calculatorBtnOffer{
	width: 100%;
	min-height: 48px;
	padding: 10px 20px 10px 12px;
	border-radius: 10px;
	justify-content: center;
}
.formCalculatorResultEditWrap{
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	line-height: 0;
}
.formCalculatorResult{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	border-radius: 24px;
	padding: 48px 40px 40px;
	border: 1px solid var(--gri-transparent);
	width: 50%;
	flex: 1 1 48%;
	min-width: 0;
	max-width: 520px;
	position: relative;
	box-shadow: 0 12px 40px rgba(0, 23, 65, 0.06);
	background: var(--alb);
}
.formCalculatorResultDisclaimer{
	background: var(--rosuBg);
	color: var(--alb);
	font-size: var(--xs);
	font-weight: 600;
	line-height: 1.35;
	padding: 0.65em 1em;
	text-align: center;
	border-radius: 24px 24px 0 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	box-sizing: border-box;
	z-index: 1;
	margin: 0;
}
.calculatorResultStep2{
	width: 100%;
	max-width: 340px;
	align-self: center;
	margin-top: 8px;
	padding-top: 20px;
	border-top: 1px solid rgba(0, 23, 65, 0.1);
}
.calculatorResultStep2 .calculatorActionsRow{
	margin-top: 16px;
}
.calculatorResultStep2Field{
	width: 100%;
}
.formCalculatorResultImage{
	width: 116px;
	height: 113px;
}
.formCalculatorResultText{
	font-family: 'Nimbus';
	font-size: var(--s);
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--gri-scris);
	text-align: center;
}
.formCalculatorResultPrice{
	font-family: 'Nimbus';
	font-size: var(--xl);
	letter-spacing: 2px;
	line-height: 120%;
	text-transform: uppercase;
	color: var(--rosu);
}
.formCalculatorFloorHint{
	font-size: var(--xs);
	color: var(--gri-scris);
	text-align: center;
	max-width: 280px;
	line-height: 140%;
	margin: 0;
	padding: 0 8px;
}
.calculatorFormMessage{
	min-height: 1.25em;
	margin-top: 20px;
	font-size: var(--xs);
	line-height: 140%;
	color: var(--gri-scris);
}
.calculatorFormMessage--ok{
	color: var(--albastru);
	font-weight: 600;
}
.calculatorFormMessage--err{
	color: var(--rosu);
	font-weight: 600;
}
@keyframes calculatorPricePulse{
	0%{ transform: scale(1); }
	35%{ transform: scale(1.07); }
	100%{ transform: scale(1); }
}
.formCalculatorResultPrice--pulse{
	animation: calculatorPricePulse 0.55s ease-out;
}
@media (prefers-reduced-motion: reduce){
	.formCalculatorResultPrice--pulse{
		animation: none;
	}
}
.staticHeroWrapper{
	width: 100%;
}
.dataViewsStire{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px 20px;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}
.dataViewsStirePrimary{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 16px;
	min-width: 0;
}
.dataViewsStireDate{
	display: flex;
	align-items: center;
	gap: 4px;
}
.dataViewsStireTrailing{
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}
.dataViewsStireViews{
	display: flex;
	align-items: center;
	gap: 4px;
}
.dataViewsStire .smallText{
	margin-bottom: 0;
}
.dataViewsStireSeparator{
	width: 1px;
	height: 16px;
	flex-shrink: 0;
	border-left: 1px solid var(--gri-deschis);
}
.dataViewsStireImageCalendar{
	width: 15px;
	height: 16px;
}
.dataViewsStireImageVizualizari{
	width: 24px;
	height: 16px;
}
.paginaStire.static h2,
.paginaStire.static h3{
	text-align: center;
}
.paginaStire.static p,
.paginaStire.static ul,
.paginaStire.static ol,
.paginaStire.static li{
	text-align: left;
}
.pozeStire{
	margin-top: 64px;
	margin-bottom: 64px;
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	justify-content: center;
}
.pozeStireImage{
	height: 405px;
	width: 405px;
	object-fit: cover;
	display: block;
	position: relative;
	border-radius: 24px;
}
.shareStire{
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.shareStireContent{
	display: flex;
	align-items: center;
	gap: 16px;
}
.copyLinkImage{
	width: 27px;
	height: 14px;
}
.shareStireImageLinkedin{
	width: 24px;
	height: 24px;
}
.shareStireImageTwitter{
	width: 24px;
	height: 21px;
}
.shareStireImageFacebook{
	width: 27px;
	height: 27px;
}
.butonWrapServiciu{
	margin-top: 64px;
	display: flex;
	justify-content: center;
}
.static .butonWrapServiciu a{
	color: var(--alb);
	text-decoration: none;
}
.stiriFiltareWrap {
	display: flex;
	justify-content: center;
	align-items: center;
	justify-self: center;
	width: 100%;
	margin-bottom: 64px;
	overflow: auto;
	max-width: 450px;
	gap: 20px;
}
.stiriFiltareWrap .buttonNavSecondary {
	padding: 2px 8px 2px 2px;
}
.stiriFiltareItemTextRed{
	color: var(--rosu);
}
.butonMeniuMobile{
	display: none;
	cursor: pointer;
	width: 24px;
	height: 24px;
	padding: 0;
	border: none;
	background: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
}
.butonMeniuMobile .hamburgerLine{
	display: block;
	width: 22px;
	height: 2px;
	background: var(--negru);
	border-radius: 1px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}
.linkPhoneDreapta {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 60px;
	height: 50px;
	z-index: 1000;
	display: flex;
	justify-content: center;
	transition: transform 0.3s ease;
	cursor: pointer;
}

.linkPhoneDreapta:hover {
	transform: scale(1.1);
}

.linkPhoneStanga {
	position: fixed;
	bottom: 20px;
	left: 20px;
	width: 60px;
	height: 50px;
	z-index: 1000;
	display: flex;
	justify-content: center;
	transition: transform 0.3s ease;
	cursor: pointer;
}

.linkPhoneStanga:hover {
	transform: scale(1.1);
}

.linkPhoneStanga img,
.linkPhoneDreapta img {
	width: 100%;
	height: 100%;
	object-fit: contain;
} 

@media (max-width: 768px) {
	.paginaStire.static.container,
	.staticHeroWrapper .heroContent.container.paginaStireHero{
		--fab-safe: 86px;
		width: min(1300px, calc(100% - var(--fab-safe)));
		max-width: calc(100% - var(--fab-safe));
		padding-left: max(12px, env(safe-area-inset-left, 0px));
		padding-right: max(12px, env(safe-area-inset-right, 0px));
	}
	.paginaStire.static h2{
		font-size: clamp(22px, 5.8vw, 30px);
		line-height: 1.22;
	}
	.paginaStire.static h3{
		font-size: clamp(20px, 5.2vw, 28px);
		line-height: 1.22;
	}
	.paginaStire.static.container.paddingTopPage{
		padding-bottom: max(104px, calc(72px + env(safe-area-inset-bottom, 0px)));
	}
}

@media (max-width: 500px) {
	.staticHeroWrapper .heroContent.container.paginaStireHero .heroTitle{
		font-size: clamp(24px, 6.8vw, 34px);
		line-height: 1.18;
	}
	.paginaStire.static h2{
		font-size: clamp(16px, 3.8vw, 20px);
		line-height: 1.25;
	}
	.paginaStire.static h3{
		font-size: clamp(15px, 3.4vw, 18px);
		line-height: 1.25;
	}
}

/* Ascunde elementele Google Translate */
 body>.skiptranslate {
 	display: none;
 }

 .goog-te-banner-frame.skiptranslate {
 	display: none !important;
 }

 #google_translate_element {
 	display: none !important;
 }


@media (max-width: 1300px) {
	.contactWrapperJosLeft{
		width: 100%;
	}
		.contactWrapper{
			
		}
				.leftContactWrapper {
					
				}
				.rightContactWrapper{
					
				}
}
@media (max-width: 1050px) {
	.blogHomeWrapper .blogHomeCard{
		width: 48%;
	}
	.blogHomeCards{
		gap: 20px;
		justify-content: center;
		flex-wrap: wrap;
	}
	.reviewsCarousel .reviewsCards{
		gap: 20px;
	}
	.reviewsCarousel .reviewCard{
		flex: 0 0 calc((100% - 40px) / 3);
	}
	.getInTouchContent{
		flex-direction: column;
		align-items: center;
	}
	.rightContactWrapper{
		grid-template-columns: 1fr;
	}
	.contactWrapper{
		align-items: flex-start;
	}
}
@media (max-width: 950px) {
	.menuNavWrap{
		gap:10px;
	}
}

@media (max-width: 900px) {
	.contactWrapperJosRight{
		gap: 20px;
	}
	.infoContent{
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 20px;
	}
	.detaliiWrapper{
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}
	.detaliiWrapper.secondDetaliiWrapper {
		flex-direction: column-reverse;
	}
	.detaliiWrapperLeft {
		width: 100%;
		align-items: center;
		text-align: center;
	}
	.detaliiWrapperRight{
		width: 100%;
	}
	.heroText{
		text-wrap-style: initial;
		text-align: center;
	}
	.heroText.heroTextStiri{
		text-align: center;
	}
		.contactWrapper .heroText {
			text-align: center;
		}
}

@media (max-width: 850px) {
	.menuNavWrap .buttonNav, .menuNavWrap .buttonNavSecondary {
		padding: 4px;
	}
	.menuNavWrap .buttonNav span, .menuNavWrap .buttonNavSecondary span {
		display: none;
	}
	.servicesWrapper{
		gap: 20px;
	}
}

@media (max-width: 800px) {
	.contactWrapper{
		gap: 20px;
	}
	.servicesWrapper{
		flex-direction: column;
	}
	.detailsServicesLeft{
		top: 0px;
	}
	.cardService:nth-child(1) {
		top: 100px;
	}
	.cardService:nth-child(2) {
		top: 120px;
	}
	.cardService:nth-child(3) {
		top: 140px;
	}
	.cardService:nth-child(4) {
		top: 160px;
	}
	.cardService:nth-child(5) {
		top: 180px;
	}
	.numereDetaliiWrapperSecond{
		grid-template-columns: repeat(1, 1fr);
	}
		.ScrollBigWrapper {
			display: none;
		}
}
@media (max-width: 700px) {
	.serviciiWrapper .detailsServicesRight .blogHomeCard.serviciiHomeCard{
		width: 100%;
	}
		.calculatorRow{
			flex-direction: column;
			align-items: stretch;
		}
				.formCalculatorResult {
					width: 100%;
					max-width: 100%;
					scroll-margin-top: 200px;
				}
		.formular-calculator-content {
					width: 100%;
					max-width: 100%;
				}
		.calculatorFormCard{
			padding: 22px 18px 24px;
		}
		.butonWrap {
			margin-top: 24px;
			display: flex;
			justify-content: center;
		}
				.formContactWrapperItem{
					width: 100%;
				}
				.formContactWrapperItem.legeWrap{
					align-items: center;
				}
}

@media (max-width: 650px) {
	.contactWrapper{
		flex-direction: column;
		gap: 50px;
	}
	.leftContactWrapper{
		width: 100%;
	}
	.rightContactWrapper{
		width: 100%;
	}
	.butonMeniuMobile{
		display: flex;
	}
	body.mobile-menu-open .butonMeniuMobile .hamburgerLine:nth-child(1){
		transform: translateY(7px) rotate(45deg);
	}
	body.mobile-menu-open .butonMeniuMobile .hamburgerLine:nth-child(2){
		opacity: 0;
	}
	body.mobile-menu-open .butonMeniuMobile .hamburgerLine:nth-child(3){
		transform: translateY(-7px) rotate(-45deg);
	}
	.menuNavWrap{
		position: fixed;
		top: 50px;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: var(--gri);
		z-index: 4999;
		overflow-y: auto;
		flex-direction: column;
		align-items: flex-start;
		padding: 32px;
		gap: 15px;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.3s ease, visibility 0.3s ease;
	}
	body.mobile-menu-open .menuNavWrap{
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
	body.mobile-menu-open{
		overflow: hidden;
	}
	.menuNavWrap > a:not(.buttonNav):not(.buttonNavSecondary), .menuNavWrap .servicesNavTrigger{
		display: block;
		color: var(--negru);
		text-decoration: none;
		font-size: var(--s);
		padding: 8px 0;
	}
	.iconNavServices, .iconTranslate{
		margin-bottom: 3px;
	}
	.menuNavWrap .langNavWrap{
		order: -1;
	}
	.menuNavWrap .servicesNavWrap{
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
	}
	.menuNavWrap .servicesDropdown {
		position: relative;
		top: 0;
		margin-top: 0px;
		left: 0;
		right: auto;
		width: 100%;
		box-shadow: none;
		border: none;
		background: transparent;
		padding-left: 0;
		min-width: unset;
	}
	.menuNavWrap .langNavWrap .servicesDropdown{
		left: 0;
		right: auto;
	}
	.menuNavWrap .servicesDropdown a {
		padding: 8px 0 8px 16px;
		margin-bottom: 5px;
		font-size: 18px;
	}
	.menuNavWrap .buttonNav,
	.menuNavWrap .buttonNavSecondary{
		width: 100%;
		justify-content: center;
		overflow: visible;
	}
	.menuNavWrap .buttonNav span,
	.menuNavWrap .buttonNavSecondary span{
		display: inline;
	}
	.blogHomeWrapper .blogHomeCard{
		width: 100%;
	}
	.reviewsCarousel .reviewsCards{
		gap: 16px;
	}
	.reviewsCarousel .reviewCard{
		flex: 0 0 100%;
		scroll-snap-align: start;
	}
	.paddingTopPage{
		padding: 50px 0px;
	}
	.developedByWrapJos .copyrightTextJos{
		display: none;
	}
	.bannerHome, .bannerAboutUs, .detaliiWrapperImage{
		height: 300px;
	}
	.infoWrapper{
		margin-bottom: 0px;
	}
	.formContactLabel{
		font-size:16px;
	}
	.navbar{
		padding: 4px 0px;
	}
}

@media (max-width: 600px) {
	:root{
		--xs: 14px;
		--s: 22px;
		--m: 30px;
		--l: 36px;
		--xl: 42px;
		--xxl: 48px;
	}
	.clientReviewName{
		font-size: 16px;
	}
}

@media (max-width: 550px) {
	.stiriFiltareWrap{
		display: flex;
			align-items: center;
			justify-content: flex-start;
			gap: 35px;
			width: 100%;
			max-width: 450px;
			margin-bottom: 64px;
			overflow-x: auto;
	}
}
@media (max-width: 500px) {
	.contactWrapperJosRight{
		flex-direction: column;
		gap: 50px;
	}
}
@media (max-width: 450px) {
	
	.static:not(.paginaStire) h2{
		font-size: 32px;
	}
	.static:not(.paginaStire) h3{
		font-size: 32px;
	}
		.formCalculatorResult {
			padding: 80px 25px 80px 25px;
		}
}

@media (max-width: 400px) {
	:root{
		--xs: 14px;
		--s: 18px;
		--m: 28px;
		--l: 34px;
		--xl: 40px;
		--xxl: 44px;
	}
	.blogHomeCardImage{
		height: 200px;
	}
	.blogHomeCardContent{
		padding: 24px;
	}
	.copyrightWrapJos{
		flex-direction: column;
		gap: 20px;
	}
	.paddingServicesCard{
		padding: 24px;
	}
	.reviewCard {
		padding: 24px;
		gap: 16px;
	}
	.numereDetaliiWrapper{
		grid-template-columns: repeat(1, 1fr);
	}
}