:root {
	--color-primary: #356a9f;
    --color-primary-hover: #23476B;
    
	--color-secondary: #2c2e65;
    --color-secondary-hover: #3E40B3;
    
    --color-secondary2: #f7954a;
    --color-secondary2-hover: #f7954a;
    
    --color-a: #ca3f33;
    --color-a-hover: #ff3030;
    
    --color-body: #000;
    --color-h: #2d2e65;
    
	--color-accent: #000;
	--color-accent-grey: #ababab; 
	--color-light-grey: #dddddd;
    
    --color-form: #2d2e65;

    /*https://www.awwwards.com/20-best-web-fonts-from-google-web-fonts-and-font-face.html*/
	--font-heading: 'Roboto Condensed', sans-serif;
    --font-content: 'Roboto Condensed', sans-serif;
    --font-other: 'Roboto Condensed', sans-serif;
}

::-moz-selection {
	background: var(--color-primary);
	color: var(--color-light-grey);
}
::selection {
	background: var(--color-primary);
	color: var(--color-light-grey);
}
body {
	margin: 0;
	font-family: var(--font-content);
    font-size: 0.95em;
    color: var(--color-body);
    overflow-x: hidden;
    line-height: 24px;
	position: relative;
	background: #fff;
    letter-spacing: 0.01em;
    font-weight: 400;
}
@media (max-width: 768px) {
    body {
        font-size: 0.95em;
    }
}

footer {color: #fff; background: var(--color-primary); }
footer a {color: #fff;}


h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
	font-family: var(--font-heading);
    color: var(--color-h);
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 > a, .h1 > a, h2 > a, .h2 > a, h3 > a, .h3 > a, h4 > a, .h4 > a, h5 > a, .h5 > a, h6 > a, .h6 > a {
	color: inherit;
}

h1, .h1 { font-size: 42px; }
h2, .h2 { font-size: 34px; }
h3, .h3 { font-size: 28px; }
h4, .h4 { font-size: 24px; }
h5, .h5 { font-size: 18px; }
h6, .h6 { font-size: 16px; }

a {
	text-decoration: none;
	color: var(--color-a);
	transition: color 400ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
a:hover {
	text-decoration: none;
	color: var(--color-a-hover);
}

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


blockquote {
  border-left: 10px solid #ccc;
  padding-left: 10px;
  quotes: "\201C""\201D""\2018""\2019";
}

blockquote:before {
  color: #ccc;
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}

blockquote p {
  display: inline;
}


.font-content { font-family: var(--font-content); }
.font-heading { font-family: var(--font-heading); }
.font-other { font-family: var(--font-other); }


/* bootstrap replace */
.accordion-button:focus {border-color: white !important; box-shadow:none;}


.form-check-input:checked {background-color: var(--color-form); border-color: var(--color-form);}


.mt-100 {
	margin-top: -100px;
}
@media (max-width: 768px) {
    .mt-100 {
        margin-top: 0px;
    }
}

.mt-150 {
	margin-top: -150px;
}
@media (max-width: 768px) {
    .mt-150 {
        margin-top: 0px;
    }
}




@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: .3rem;
        padding-left: .3rem;
    }
}




@media (min-width: 1200px) {
    .col-xl-2_5 {
        flex: 0 0 auto;
        width: 20%;
    }
}
@media (min-width: 1900px) {
    .col-xxxl-custom-2 {
        flex: 0 0 auto;
        width: 16.66666666%;
    }
}




.badge {padding: 0.35em 0.65em 0.14em 0.65em !important;}

.btn {
	outline: none!important;
	box-shadow: none!important;
}
.btn-primary {
	background-color: var(--color-primary)!important;
	border-color: var(--color-primary)!important;
}
.btn-primary:hover {
	background-color: var(--color-primary-hover)!important;
	border-color: var(--color-primary-hover)!important;
}
.btn-outline-primary {
	border-color: var(--color-primary)!important;
	color: var(--color-primary)!important;
    background-color: transparent!important;
}
.btn-outline-primary:hover {
	background-color: var(--color-primary)!important;
	color: #fff!important;
}
.btn-secondary {
	background-color: var(--color-secondary)!important;
	border-color: var(--color-secondary)!important;
	color: #fff!important;
}
.btn-secondary:hover {
	background-color: var(--color-secondary-hover)!important;
	border-color: var(--color-secondary-hover)!important;
	color: #fff!important;
}
.btn-outline-secondary {
	border-color: var(--color-secondary)!important;
	color: var(--color-secondary)!important;
    background-color: transparent!important;
}
.btn-outline-secondary:hover {
	border-color: var(--color-secondary)!important;
	background-color: var(--color-secondary)!important;
	color: #fff!important;
}

.btn-outline-white {
	border-color: #fff!important;
	color: #fff!important;
}
.btn-outline-white:hover {
	border-color: #fff!important;
	background-color: #fff!important;
	color: var(--color-primary)!important;
}

.btn-transparent {
	background-color: transparent!important;
	border-color: transparent!important;
    color: var(--color-primary)!important;
}
.btn-transparent:hover {
    background-color: transparent!important;
	border-color: transparent!important;
    color: var(--color-secondary)!important;
} 

.btn-grey {
	background-color: var(--color-light-grey)!important;
	border-color: var(--color-light-grey)!important;
    color: var(--color-primary)!important;
}
.btn-grey:hover {
    background-color: var(--color-light-grey)!important;
	border-color: var(--color-light-grey)!important;
    color: var(--color-secondary)!important;
}

.breadcrumb li > a {
    color: var(--bs-gray-600)!important;
}
.breadcrumb li > a:hover {
    color: var(--color-primary)!important;
}


.text-primary {
	color: var(--color-primary)!important;
}
.text-secondary {
	color: var(--color-secondary)!important;
}
.text-grey {
	color: var(--color-accent-grey)!important;
}


.text-a {
	color: var(--color-a)!important;
    transition: color 400ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
.text-a:hover {
	color: var(--color-a-hover)!important;
}
.border-a {
	border-color: var(--color-a)!important;
    transition: color 400ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
.border-a:hover {
	border-color: var(--color-a-hover)!important;
}
.bg-a {
	background-color: var(--color-a)!important;
    transition: color 400ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
.bg-a:hover {
	background-color: var(--color-a-hover)!important;
}


.linkMuted {
    color: #6c757d!important;
    text-decoration: underline;
}
.linkMuted:hover {
    color: #000!important;
    text-decoration: none;
}
.linkMuted2 {
    color: #6c757d!important;
    text-decoration: none;
}
.linkMuted2:hover {
    color: #000!important;
    text-decoration: underline;
}
.linkBodyColor {
    color: var(--color-body)!important;
}
.linkBodyColor:hover {
    color: var(--color-a)!important;
}
.linkWhiteColor {
    color: #ffffff!important;
    text-decoration: underline;
}
.linkWhiteColor:hover {
    text-decoration: none;
}
.linkLightGreyColor {
    color: var(--color-light-grey)!important;
    text-decoration: underline;
}
.linkLightGreyColor:hover {
    text-decoration: none;
}


.back-white {
	background-color: #fff;
}
.bg-primary {
	background-color: var(--color-primary)!important;
}
.bg-secondary {
	background-color: var(--color-secondary)!important;
}
.bg-grey {
	background: var(--color-light-grey)!important;
}
.bg-black {
	background: #000!important;
}
.bg-light-grey {
    background: #eeeeee!important;
}


.container-custom {
	max-width: 1500px;
}

.container-custom-video {
	max-width: 1750px;
}

.sticky {
    position: sticky;
    top:50px;
}

.highlineMarkPrimary {
    background: var(--color-primary);
    padding: 3px 10px;
    color: var(--color-secondary);
    line-height: 1.8;
    display: inline;
    background: var(--color-primary);
    padding-left: 0;
    padding-right: 0;
    box-shadow: 10px 0 0 var(--color-primary), -10px 0 0 var(--color-primary);
}

.highlineMarkSecondary {
    background: var(--color-secondary);
    padding: 2px 10px;
    color: #fff;
    line-height: 1.8;
    display: inline;
    background: var(--color-secondary);
    padding-left: 0;
    padding-right: 0;
    box-shadow: 10px 0 0 var(--color-secondary), -10px 0 0 var(--color-secondary);
}


.parallax-dinamic {
    position: relative;
    content: '';
    z-index: 1;
    right: 0;
    width: 100%;
    /*height: 500px;
    background-image: url(../img/general/big2.jpg);*/
    background-attachment: fixed;
    background-size: 100%;
}
@media (max-width: 992px) {
    .parallax-dinamic {
        /*height: 300px;*/
        width: 100%;
        background-attachment: initial;
    }
}



.parallax {
    position: relative;
    content: '';
    z-index: 1;
    right: 0;
    width: 100%;
    height: 500px;
    /*background-image: url(../img/general/big2.jpg);*/
    background-attachment: fixed;
    background-size: cover;
}


.cursor-pointer {cursor: pointer;}



@media (max-width: 992px) {
    .tooltip {
        display: none !important;
    }
 }


.square {
    line-height: 0;
    display: table-cell;
    vertical-align: middle;
    overflow: hidden;
    text-align: center;
}

.square-50 { width: 50px; height: 50px; }
.square-36 { width: 36px; height: 36px; }
.square-15 { width: 15px; height: 15px;}

.font-size-10 {font-size: 10px;}
.font-arial {font-family: Arial, Helvetica, sans-serif;}


.text-responsive {
  font-size: calc(35% + 1vw + 1vh);
}

.text-responsive-small-mobile {
    font-size: inherit;
}
@media (max-width: 375px) {
    .text-responsive-small-mobile {
        font-size: calc(35% + 1vw + 1vh);
    }
}

.text-shadow-white {
    text-shadow: 1px 1px #fff;
}
.text-shadow-black {
    text-shadow: 1px 1px #000;
}
.text-shadow-dark {
    text-shadow: 1px 1px #999;
}


.insidescroll {
    /* https://stackoverflow.com/questions/46663467/css-for-scrolling-breadcrumb */
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}



.heart-pulse { -webkit-animation: pulse 1.5s infinite; }
.flashX { -webkit-animation: flash 4s infinite; }
.headShakeX { -webkit-animation: headShake 2s infinite; }

.pswp__bg { background: #000000d1;}

.height100 {height: 100%!important;}

.smallXS {font-size: 10px;}


/* mai mult bun pt h1 si h2 */
.small-m { }
@media (max-width: 768px) { 
    .small-m { font-size: calc(100% + 0vw + 1vh)!important; }
}

@media (max-width: 768px) {
    .border-none-mobile { border: none!important; }
}


.page-link {
    color: var(--color-primary);
    background-color: #fff;
    border: 1px solid #dee2e6;
}
.page-item.active .page-link {
    color: #fff;
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}


.vh-100 {
    min-height: 100vh!important;
}

.vh100-min {
    min-height: calc(100vh - 80px)!important;
}
@media (max-width: 992px) {
    .vh100-min {  min-height: calc(100vh - 180px)!important; }
}


.w75d-100m {
    width: 75%!important;
}
@media (max-width: 992px) {
    .w75d-100m { width: 100%!important; }
}


.w-90 {
    width: 90%!important;
}

.w90d-100m {
    width: 90%!important;
}
@media (max-width: 992px) {
    .w90d-100m {
        width: 100%!important;
    }
}

.w50d-100m {
    width: 50%!important;
}
@media (max-width: 992px) {
    .w50d-100m {
        width: 100%!important;
    }
}


.language img {
	height: 16px;
    margin-right: 5px;
}
.language a {
	color: var(--color-body);
}
.language a:hover {
	cursor: pointer;
}
.language .dropdown-item.active, .dropdown-item:active {
    background-color: var(--color-body)!important;
}


.bigger {
	font-size: 200%;
}



iframe.gmaps {
	width: 100%;
	height: 300px;
	margin-bottom: 20px;
}



.form-alert {
	display: none;
	position: fixed;
	right: 20px;
	top: 20px;
	max-width: 400px;
	z-index: 999;
}
.form-alert .alert {
	border: none;
	border-radius: 0;
	margin-bottom: 0;
}
.form-alert .alert-warning {
	background: #f4a421;
	color: #fff;
}
.form-alert .alert-success {
	background: #33a212;
	color: #fff;
}
.form-alert .alert .close {
	padding: .65rem 1.25rem;
	color: #fff;
	transition: all .4s;
}
.form-alert .alert .close:hover {
	color: #000;
}
.valid {
	border-color: green!important;
}
.invalid {
	border-color: red!important;
    border-width: 3px;
}




/* S: Cookie Dialog */
.gdprcookie {
	position: fixed;
	color: #000;
	font-size: 12px;
	line-height: 16px;
	left: 20px;
	bottom: 20px;
	max-width: 300px;
	padding: 10px;
	background: #fff;
	border-radius: 5px;
	box-shadow: 0 0 20px rgba(0, 0, 0, .7);
	z-index: 99999999;
}
.gdprcookie h1,
.gdprcookie h2 {
	font-size: 20px;
	margin-bottom: 5px;
}
.gdprcookie h2 {
	font-size: 16px;
	color: #000;
}
.gdprcookie p {
	font-size: 12px;
}
.gdprcookie a {
	color: currentColor;
	text-decoration: underline;
}
.gdprcookie-buttons {
	text-align: center;
}
.gdprcookie-buttons button {
	color: #000;
	font-family: inherit;
	font-size: 14px;
	line-height: 14px;
	padding: 10px;
	border-radius: 5px;
	margin: 0 3px;
	background: #000;
	cursor: pointer;
	border: none;
	transition: .4s;
	box-shadow: none;
	outline: none;
}
.gdprcookie-buttons button:first-child {
	background: rgba(0, 128, 0, 0.7);
    color: #fff;
}
.gdprcookie-buttons button:first-child:hover {
	background: rgba(0, 128, 0, 1);
    color: #fff;
}
.gdprcookie-buttons button:last-child {
	background: none;
	font-size: 12px;
}
.gdprcookie-buttons button:disabled {
	color: rgba(255, 255, 255, .5);
}
.gdprcookie-types ul {
	overflow: hidden;
	padding: 0;
	margin: 0 0 10px;
}
.gdprcookie-types li {
	display: block;
	list-style: none;
	float: left;
	width: 50%;
	padding: 0;
	margin: 0;
}
.gdprcookie-types input[type=checkbox] {
	margin-right: 10px;
}
/* E: Cookie Dialog */



.loading {
    overflow: hidden;
}
#loader {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, .7);
    z-index: 999999;
    display: none;
}
.loading #loader {
    display: block;
}
.custom-loader-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: rgba(255, 255, 255, .7);
}
.custom-loader {
    border: 5px solid transparent;
    border-radius: 50%;
    border-top-color: var(--main-color);
    width: 60px;
    height: 60px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
}



/******* THEME Standard *******/





/******* S: keyframes *******/
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/******* e: keyframes *******/






/* S: Header */
header {
	position: sticky;
	position:-webkit-sticky;
	top: 0;
	z-index: 98;
	background: #fff;
	box-shadow: 0 0 5px rgba(0,0,0, .5);
	padding: 5px 0;
    background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.7) 100%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0.7) 100%);
    /* background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 );
}
header .logo img {
	max-width: 75px!important;
	transition: .4s;
}
header.fixed .logo img {
	max-width: 50%; 
}
header.hide {
	transition: transform .42s ease-out 19.2ms;
    -webkit-transform: translateY(-200px);
    -moz-transform: translateY(-200px);
	transform: translateY(-200px);
}
.logo .no-img {
	text-transform: uppercase;
	font-size: 40px;
}



/* S: Navbar */
.navbar-nav li {
}
.navbar-nav li a{
}
.navbar-nav li a:hover {
}
.navbar-nav > li.active > a {
    color: var(--color-secondary);
}
/* E: Navbar */






/******* CUSTOM *******/





/*S: scrool stanga-dreapta la Blog/Vlog*/
/*scroller*/
.btn-header-links {
    padding-top: 0px;
    padding-bottom: 30px;
    overflow-x: scroll;
    display: inline-block;
    white-space: nowrap;
    transition: 1s ease;
}
.padding-align{
    padding-left: 4em !important;
    padding-right: 4em !important;
}
/*scroller parent style*/
.scroller {
    position: relative;
    overflow: hidden;
    height: 31px;
}

/*left arrow styles*/
.left-btn-scroller {
    position: absolute;
    left: 0%;
    top: 0;
    font-size: 18px;
    color: #3f3f3f;
    bottom: 0;
    width: 30px;
    height: 30px;
    background-color: rgba(242, 242, 242, 0.94);
    z-index: 1002;
    border-radius: 50%;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

}

/*right arrow styles*/
.right-btn-scroller {
    position: absolute;
    right: 0%;
    top: 0;
    font-size: 18px;
    color: #3f3f3f;
    bottom: 0;
    width: 30px;
    cursor: pointer;
    height: 30px;
    background-color: rgba(242, 242, 242, 0.94);
    border-radius: 50%;
    z-index: 1002;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.opacity-0 {
    opacity: 0;
}
@media (max-width: 996px) {
    .padding-align{
        padding-left: 3em !important;
        padding-right: 3em !important;
    }
    /*.left-btn-scroller {
        display: none;
    }
    .right-btn-scroller {
        display: none;
    }*/
}
/*E: scrool stanga-dreapta la Blog/Vlog*/







.animateToRight-10px {
    transition: .2s;
}
.animateToRight-10px:hover {
    padding-left: 10px;
}





/* S: Big Banner */
.banner {
	z-index: 1;
	overflow: hidden;
	width: 100%;
	height: 100vh;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background-size: cover;
	background-position: center;
	/*background-attachment: fixed;*/
	background-repeat: no-repeat;
	background-color: #eee;
}
.banner.no-banner {
	min-height: 150px;
}
.banner:after{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	background: var(--color-primary);
	opacity: 0.3;
	z-index: 1;
	width: 100%;
	content: '';
}
/* S: Banner CMS */
.banner.banner-cms {
	display: block;
	min-height: 375px;
	height: auto;
}
.banner-cms .cuprins-banner {
	z-index: 2;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 50vh;

	position: absolute;
	bottom: 200px;
	width: 100%;
}
/* E: Banner CMS */
/* E: Big Banner */




/* S: Review comment/dinamic */
.comment-form-principal {
	display: none;
}
.review-box {}
.review-box+.review-box {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #ddd;
}
.review-box:after {
	clear: both;
	display: table;
	content: ' ';
}
.user-info {
	width: 125px;
	float: left;
	padding-right: 5px;
	border-right: 1px solid #ddd;
}
.user-info .user-image {
	margin-bottom: 10px;
}
.user-info .image-inner {
	display: inline-block;
	background: #eee!important;
	padding: 5px;
	width: 75px;
	height: 75px;
	border-radius: 50%;
	text-align: center;
	font-size: 28px;
	line-height: 70px;
	color: #333;
	position: relative;
}
.user-info .image-inner span {}
.user-info .user-name {
	font-size: 12px;
	font-weight: 700;
	;
}
.user-info .user-name span {
	font-size: 12px;
	font-weight: 400;
	color: #a2a2a2;
}
.user-info .review-date {
	margin-bottom: 10px;
}
.user-info .review-verified {
	color: #1a9352;
	font-size: 14px;
}
.user-info .review-verified i {
	margin-right: 5px;
}
.review-content {
	width: calc(100% - 125px);
	float: left;
	padding-left: 10px;
}
.review-content .review-title {
	margin-bottom: 15px;
	font-weight: 700;
}
.review-content .show-comments-info {
	margin-top: 10px;
	font-weight: 700;
}
.review-content .show-comments-info a {
	line-height: 12px;
	font-size: 12px;
	cursor: pointer;
	transition: color .5s;
	text-decoration: none;
	font-weight: 700;
}
.review-content .show-comments-info a.comment-delete {
	font-size: 20px;
	color: red;
	text-transform: uppercase;
}
.review-content .show-comments-info a.comment-approve {
	font-size: 20px;
	color: green;
	text-transform: uppercase;
}
.review-content .show-comments-info a i {}
.review-content .show-comments-info a:hover {
	color: #000;
}
.comment {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #ddd;
}
.comment:after {
	clear: both;
	display: table;
	content: ' ';
}
.comment-user-info {
	float: left;
}
.comment-user-info .comment-user-image {
	margin-bottom: 10px;
}
.comment-user-info .comment-image-inner {
	display: inline-block;
	background: #ec1e8c;
	padding: 5px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	text-align: center;
	font-size: 18px;
	line-height: 28px;
	color: #fff;
	text-shadow: 0 0 1px #000;
}
.comment-content-wrapper .add-comment {
	display: none;
}
.comment-content .show-comments-info {
	line-height: 12px;
	font-size: 12px;
}
.comment-content {
	padding-left: 50px;
}
.comment-content .added-by {
	font-size: 12px;
	color: #9e9e9e;
	margin-top: 5px;
}
.comment-content .added-by span {
	color: #000;
	font-weight: 700;
}
.comment-content .show-comments-info a.comment-delete {
	font-size: 14px;
	color: red;
	text-transform: uppercase;
}
.comment-content .show-comments-info a.comment-approve {
	font-size: 14px;
	color: green;
	text-transform: uppercase;
}
form.comment-form {
	font-size: smaller;
}
@media (max-width: 567px) {
	.user-info {
		width: 100%;
		float: none;
		margin-bottom: 20px;
	}
	.user-info .user-image {
		float: left;
		margin-right: 40px;
	}
	.review-content {
		width: 100%;
		float: none;
		padding-left: 0;
		margin-top: 40px;
	}
}
/* E: Review comment/dinamic */




.modal .close {
    float: right;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
}
.modal button.close {
    padding: 0;
    background-color: var(--color-light-grey);
    border: 0;
    -webkit-appearance: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.modal button.close:hover {
    background-color: var(--color-accent-grey);
}
.modal-open-custom {
    overflow: hidden;
}
.modal-open-custom .modal {
    overflow-x: hidden;
    overflow-y: auto;
}



.logo-custom .swiper-slide img  {
	max-height: 120px!important;
}




.slick-next:before, .slick-prev:before {
	font-family: "Font Awesome 5 Pro";
	-moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
	line-height: 50px;
	font-size: 15px!important;
	background-color: white;
	content: "\f054";
	width: 50px;
	height:  50px;
}
.slick-prev:before {
	content: "\f053";
}





.blog-sidebar a:not(.badge) {
	color: var(--color-primary);
}
.blog-sidebar a:not(.badge):hover {
	color: var(--color-secondary);
}
.blog-bg:nth-child(even) {
	background-color: #f3f5f9;
}


.vlog-sidebar a:not(.badge) {
	color: var(--color-primary);
}
.vlog-sidebar a:not(.badge):hover {
	color: var(--color-secondary);
}
.vlog-bg:nth-child(even) {
	background-color: #f3f5f9;
}



.blogNav {}
.blogNav.relative {position: relative;}
.blogNav.fixed {position: fixed; z-index: 999; width: 100%; top: 58px;}

/* S: Floating blogNav */
#floating-blogNav {
	position: absolute;
    width: 100%;
    z-index: 2;
}
#floating-blogNav.show {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
	z-index: 95;
	transition: .3s;
}
@media (max-width: 992px) {
    #floating-blogNav.show {
    }
}
/* E: Floating blogNav */



.vlogNav {}
.vlogNav.relative {position: relative;}
.vlogNav.fixed {position: fixed; z-index: 999; width: 100%; top: 58px;}

/* S: Floating vlogNav */
#floating-vlogNav {
	position: absolute;
    width: 100%;
    z-index: 2;
}
#floating-vlogNav.show {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
	z-index: 95;
	transition: .3s;
}
@media (max-width: 992px) {
    #floating-vlogNav.show {
    }
}
/* E: Floating vlogNav */


.forumNav {}
.forumNav.relative {position: relative;}
.forumNav.fixed {position: fixed; z-index: 999; width: 100%; top: 58px;}

/* S: Floating forumNav */
#floating-forumNav {
	position: absolute;
    width: 100%;
    z-index: 2;
}
#floating-forumNav.show {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
	z-index: 95;
	transition: .3s;
}
@media (max-width: 992px) {
    #floating-forumNav.show {
    }
}
/* E: Floating forumNav */






/* S: Gallery */
.justified-gallery .gallery-item {
	transition: .4s;
}
.justified-gallery > a .caption {
	display: block;
	position: absolute;
	bottom: -50px;
	opacity: 0;
	left: 0;
	right: 0;
	text-align: center;
	background-color: var(--color-primary);
	transition: .4s;
}
.justified-gallery > a:hover .caption {
	bottom: 0;
	opacity: 1;
}
.gallery .gallery-item-wrapper,
.gallery .gallery-item {
	position: relative;
}
.gallery .gallery-item-wrapper .title {
	position: absolute;
    top: 20px;
    left: 20px;
    opacity: 0;
	visibility: hidden;
	
	background-color: #000000;
    color: #ffffff;
    font-size: 14px;
    display: inline-block;
    line-height: 24px;
    padding-left: 10px;
    padding-right: 10px;
    letter-spacing: 1px;
}
.gallery .gallery-item-wrapper:hover .title {
	opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    -ms-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.gallery .gallery-item-wrapper .share {
	position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0;
	visibility: hidden;
}
.gallery .gallery-item-wrapper:hover .share {
	opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    -ms-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
/* E: Gallery */








/* S: Slick Slide with video */

.main-slider {
	position: relative;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transition: all 1.2s ease;
}
.main-slider.slick-initialized {
	opacity: 1;
	visibility: visible;
}
.main-slider .slick-slide,
.main-slider .slick-slide::before,
.main-slider .slick-slide .caption {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.main-slider .slick-slide::before {
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
	/*background: #fff;
    opacity: .1;*/
}
.main-slider .slick-slide {
	height: 85vh;
	height: calc(100vh - 40px - 28px);

	position: relative;
	background-size: cover;
	background-position: center;
	transition: all 0.8s ease;
	background-repeat: no-repeat;
}
.main-slider .slick-slide video {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
}
.main-slider .slick-slide iframe {
	position: relative;
	pointer-events: none;
}

/*
.main-slider .slick-slide.slick-active .caption {
	opacity: 1;
	transform: translateY(0);
	transition: all 0.7s cubic-bezier(0.32, 0.34, 0, 1.62) 0.6s;
}
*/
.main-slider .slick-slide .caption {
	color: #fff;
	width: 100%;
	position: absolute;
	display: flex;
	align-items: center;
	z-index: 2;
	height: 100%;
}



.main-slider .slick-slide .caption:after {
    /*background: rgba(100, 161, 67, 0.74);*/
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: block;
}
.main-slider .slick-slide .caption .inner {
	width: 100%;
	z-index: 3;
}
.slide-descriere p:last-child {
	margin-bottom: 0;
}
.main-slider .slick-slide h1,
.main-slider .slick-slide .h1 {
	margin: 0;
}

.slick-dots { bottom: 30px; }
.slick-dots li { background: #fff; border-radius: 50%; }
.slick-dots li button:before { line-height: 21px!important }

@media (max-width: 992px) {
    /*.main-slider .slick-slide h1,
    .main-slider .slick-slide .h1 {
        font-size: 2rem;
        margin: 0;
    }*/
    
    .main-slider .slick-slide h4,
    .main-slider .slick-slide .h4 {
        font-size: 1.3rem;
        margin: 0;
    }
}

.main-slider .slick-next, .main-slider .slick-prev {
	z-index: 4;
	width: auto;
	height: auto;
}
.main-slider .slick-next:before, .main-slider .slick-prev:before {
	font-size: 2rem;
	color: #000;
}
.main-slider .slick-prev {
	left: 10px;
}
.main-slider .slick-next {
	right: 10px;
}




.flip-clock-wrapper {
    margin: 0;
    margin-left: -2px;
    display: inline-block;
    width: auto;
}
.flip-clock-wrapper:after {
    clear: both;
}
.flip-clock-wrapper ul {
	margin: 0 2px;
	width: 24px;
	height: 40px;
	padding: 0;
}
.flip-clock-wrapper ul li a div div.inn {
	line-height: 40px;
}
.flip-clock-wrapper ul,
.flip-clock-wrapper ul li {
	line-height: 24px;
}
.flip-clock-wrapper ul,
.flip-clock-wrapper ul li a div,
.flip-clock-wrapper ul li a div div.inn {
	font-size: 24px;
}
.flip-clock-divider {
	height: 40px;
	width: 10px;
}
.flip-clock-divider .flip-clock-label {
	display: none;
}
.flip-clock-dot {
	height: 5px;
	width: 5px;
	left: 3px;
}
.flip-clock-dot.top {
    top: 10px;
}
.flip-clock-dot.bottom {
    bottom: 10px;
}

/* E: Slick Slide with video */




/* S: Swiper */
.swiper-pagination-bullet-active {
    background: var(--color-primary);
    color: var(--color-primary);
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {transform: translateX(0%);}

.swiper-button-next,
.swiper-button-prev {
    color: var(--color-primary);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--color-primary-hover);
}


/*.logo-carousel .swiper-slide {
	width: auto;
	margin-right: 5px!important;
}*/
.logo-carousel .swiper-slide img {
	max-height: 75px;
	padding: 20px;/**/
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	transition: .3s;
}
.logo-carousel .swiper-slide img:hover {
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
}

.proiecte-carousel .swiper-button-prev,
.proiecte-carousel .swiper-button-next {
	/*right: 15px;*/
    top: -55px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    padding: 0;
    font-size: 18px;
    color: #000;
    text-shadow: none;
}
.proiecte-carousel .swiper-button-prev:hover,
.proiecte-carousel .swiper-button-next:hover {
	color: var(--color-primary);
}
.proiecte-carousel .inner {
	padding: 15px;
}

.image-carousel .swiper-button-next,
.image-carousel .swiper-button-prev {
	background: none;
	font-size: 36px;
	width: 36px;
    height: 36px;
    line-height: 36px;
	margin-top: -18px;
	transition: .4s;
	outline: none;
	color: #fff;
	text-shadow: 0 0 5px var(--color-primary);
}
.image-carousel .swiper-button-next {
	right: 10px;
	text-align: right;
}
.image-carousel .swiper-button-prev {
	left: 10px;
	text-align: left;
}


.logo-carousel .swiper-button-next, .logo-carousel .swiper-button-prev {
	color: #000;
	margin-top: -20px;
}
.logo-carousel .swiper-button-prev {
	left: 0;
}
.logo-carousel .swiper-button-next {
	right: 0;
}

/* E: Swiper */








/* S: Responsive iframe video */
.video-wrapper {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	margin-bottom: 20px;
}
.video-wrapper>iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
}
/* E: Responsive iframe video */

/* S: Animations */
*[animated] {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	opacity: 0;
}
*[animation-visible="true"],
*[animated="false"],
*[animated="0"] {
	opacity: 1!important;
}
@-webkit-keyframes sk-bouncedelay {
	0%,
	80%,
	100% {
		-webkit-transform: scale(0)
	}
	40% {
		-webkit-transform: scale(1.0)
	}
}
@keyframes sk-bouncedelay {
	0%,
	80%,
	100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	40% {
		-webkit-transform: scale(1.0);
		transform: scale(1.0);
	}
}
/* E: Animations */






/* S: Share */
.share > span,
.share > a {
	display: inline-block;
	cursor: pointer;
	font-size: 14px;
	text-align: center;
	padding: 0px 20px;
    padding-top: 5px;
    padding-bottom: 3px;
	color: var(--color-secondary);
	border: 1px solid var(--color-secondary);
	/*border-radius: 50%;*/
	text-align: center;
	transition: .4s;
	margin-right: 5px;
}
.share.share-dark > span,
.share.share-dark > a {
	background: #000;
	border: 1px solid #000;
}
.share > span i,
.share > a i {
	font-size: 22px;
	line-height: 22px;
	width: 22px;
}
.share > span:last-child,
.share > a:last-child {
	margin-right: 0;
}
.share.share-sm > span,
.share.share-sm > a {
	font-size: 12px;
	padding: 0px 10px;
    padding-top: 5px;
    padding-bottom: 3px;
	margin-right: 5px;
}
.share.share-sm > span:last-child,
.share.share-sm > a:last-child {
	margin-right: 0;
}
.share.share-sm > span i,
.share.share-sm > a i {
	font-size: 14px;
	line-height: 14px;
	width: 14px;
}
.share > span:hover,
.share > a:hover {
	background: var(--color-secondary);
	border-color: var(--color-secondary);
    color: #fff;
}
/*.share .s_facebook {
	background: #3b5998;
	border-color: #324c81;
}
.share .s_pinterest {
	background: #cb2027;
	border-color: #ad1b21;
}
.share .s_whatsapp {
	background: #29a71a;
	border-color: #238e16;
}
.share .s_twitter {
	background: #1da1f2;
	border-color: #1da1f2;
}*/
/* E: Share */




/* S: Blog+Vlog */
.description-wrapper strong {
	font-weight: 700;
}
.article-image a {
	display: block;
	overflow: hidden;
}
.article-image img {
    transition: all .7s;
}
.article:hover .article-image img {
    transform: scale(1.1);
}
.article-wrapper .article {
	transition: .4s;
}
.aligncenter {
	display: block;
    margin: 10px auto 10px auto;
}
.progress-bar {
	height: 5px;
	background: transparent;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 99;
}
.progress-bar div {
	background: var(--color-primary);;
	position: absolute;
	width: 0%;
	height: 100%;
	box-shadow: 0 0 5px #333;
	transition: .2s;
}
.home-categories > div > h3 {
	border-bottom: 2px solid #000;
}
.video-thumb {
	position: relative;
	height: 100%;
	min-height: 140px;
	cursor: pointer;
}
.video-thumb .play-icon {
    background: rgba(0,0,0, .2);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    font-size: 40px;
    color: var(--color-primary);
	transition: .4s;
	display: flex;
	align-items: center;
	justify-content: center;
}
.video-thumb:hover .play-icon {
    background: rgba(0,0,0, .5);

}

.video-thumb-view-details {
	position: relative;
	height: 100%;
	/*min-height: 140px;*/
	cursor: pointer;
}
.video-thumb-view-details .play-icon {
    background: rgba(0,0,0, .2);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    font-size: 40px;
    color: var(--color-primary);
	transition: .4s;
	display: flex;
	align-items: center;
	justify-content: center;
}
.video-thumb-view-details:hover .play-icon {
    background: rgba(0,0,0, .5);

}
/* E: Blog+Vlog */ 


/* S: Clienti Grid */ 
.clients-grid {
	list-style: none;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}
.clients-grid li {
	flex: 0 0 25%;
	max-width: 25%;
	text-align: center;
}
.clients-grid li + li + li + li + li{
	border-top: 1px solid #e3ebee;
}
.clients-grid li:nth-child(4n+2) {
	border-left: 1px solid #e3ebee;
	border-right: 1px solid #e3ebee;
}
.clients-grid li:nth-child(4n+3) {
	border-right: 1px solid #e3ebee;
}

.clients-grid li img {
	padding: 30px;
	filter: grayscale(100%);
	transition: .4s;
}

.clients-grid li:hover img {
	filter: grayscale(0);
}
/* E: Clienti Grid */ 

.g-recaptcha {
	transform-origin: 0 0;
}
.pswp__button--share {
	display: none;
}
/* S: Responsive */
/*@media (max-height: 850px) {
	header > div {
		height: auto;
	}
}*/

@media (max-width: 992px) {
    .parallax {
        height: 100%;
        width: 100%;
        padding: 30px 0;
        background-attachment: initial;
    }
    
    .banner.banner-cms {
        min-height: 200px;
    }
    .banner {
		background-attachment: inherit;
		background-size: cover;
	}
    
	.main-slider .slick-slide {
		height: calc(100vh - 80px - 58px);
	}
	.swiper-button-next,
	.swiper-button-prev {
		/*display: none;*/
	}
	.mobile {
		display: block;
	}
	.page-wrapper {
		margin-left: 0;
		background: var(--color-primary);
	}
    
	/*.main-menu .sub-menu,
	.menu-left .main-menu .sub-menu {
		display: none;
		position: relative;
		width: 100%;
		left: 0;
		visibility: visible;
		opacity: 1;
		text-align: center;
	}
	.header-mobile .socials a {
		margin-left: 5px;
		margin-right: 0;
	}*/
	.blog-sidebar {
		position: fixed;
		right: 0;
		top: 0;
		bottom: 0;
		overflow: auto;
		background: #fff;
		width: 300px;
		max-width: calc(100% - 50px);
		z-index: 99;
		padding: 40px 10px;
		-webkit-overflow-scrolling: touch;
		margin-right: -300px;
	}
    .vlog-sidebar {
		position: fixed;
		right: 0;
		top: 0;
		bottom: 0;
		overflow: auto;
		background: #fff;
		width: 300px;
		max-width: calc(100% - 50px);
		z-index: 99;
		padding: 40px 10px;
		-webkit-overflow-scrolling: touch;
		margin-right: -300px;
	}
	*[animated] {
		opacity: 1!important;
	}
	/*.main-slider .caption h1{
		font-size: 30px;
	}*/
	.main-slider .slick-slide .caption{
		padding: 10px;
	}
	.main-slider .slick-slide .caption:after {
		width: 100%;
	}
}

/* E: Responsive */




.offcanvas .offcanvas-header {
    background: #d1d7e9;
}




/* S: t3-header */
body.t3-header header {
	position: sticky;
	position:-webkit-sticky;
	top: 0;
	z-index: 1001;
	/*margin-bottom: -30px;*/
	transition: .15s;
	padding: 0;
	background: #fff!important;
	box-shadow: none;
}
.acasa.t3-header header {
	/*position: fixed;
	margin-bottom: 0;*/
}
body.t3-header header .logo img {
	/*width: auto;
	height: 64px;*/
	transition: .4s;
    max-width: 250px!important;
}

@media (max-width: 992px) {
    body.t3-header header .logo img {
        max-height: 40px!important;
    }
}





/* S: Navbar */
.menu-wrapper {
    position: initial;
}
.menu {
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
}
.menu > li > a {
    padding: 20px 8px 18px 8px;
    display: block;
    border-bottom: 2px solid transparent;
    transition: .3s;
    color: #2c2e65;
    text-decoration: none;
    white-space: nowrap;
}
.menu > li:hover > a,
.menu > li.active > a {
    color: #ca3f33;
    border-bottom: 2px solid #ca3f33;
}
.menu > li:not(.megamenu) {
    position: relative
}
.menu > li > div {
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid var(--medium-grey-color);
    border-bottom: 1px solid var(--medium-grey-color);
    z-index: 9;
    min-width: 300px;
}
.menu > li:hover > div {
    display: block;
    background: #fff;
}

.nav-submenu a {
    color: #2c2e65;
    line-height: 32px;
}
.nav-submenu a:hover {
    color: #ca3f33;
}
.nav-submenu a.active {
        color: var(--color-a)!important;
    }

.nav-submenu h6 a{
    font-size: 0.9rem!important;
}
/* E: Navbar */






/* S: mobile */
    /* S: Mobile menu */
    .js-topPushNav {
        position: relative;
        padding: 0;
        margin: 0;
        list-style-type: none;
    }
    .js-topPushNav a.active {
        color: var(--color-body)!important;
    }
    .pushNav {
        width: 100%;
        height: 100vh;
        padding: 0;
        margin: 0;
        list-style-type: none;
        position: absolute;
        top: 0;
        z-index: 100;
        background: #fff;
        
        transition: ease-in-out 0.5s;
        overflow: hidden;
        left: -1000px;
    }
    .pushNav_level.isOpen {
        left: 0;
        overflow: initial;
    }
    .closeLevel,
    .openLevel {
        cursor: pointer;
    }
    /* E: Mobile menu */
/* E: mobile */



#sideBarForm .collapse > div {
    overflow-y: auto;
}

#sideBarForm [data-bs-toggle="collapse"]:after {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: "Font Awesome 5 Pro";
    content: "\f078";
    float: right;
    margin-left: 10px;
}
#sideBarForm [data-bs-toggle="collapse"][aria-expanded="true"]:after {
    content: "\f077";
}





header.onlyLogo {position: inherit!important;}



/* S: leaflet custom */
#osm_map {
    width: 100%;
    height: 650px;
}
@media (max-width: 768px) {
    #osm_map {
        height: 380px;
    }
}

.oc-leaflet-custom-marker {
    background-color: #ca3f33;
    color: #fff;
    width: 80px!important;
    height: auto!important;
    padding: 4px 8px;
    border-radius: 5px;
    line-height: 11px;
    text-align: center;
    font: 11px "Helvetica Neue", Arial, Helvetica, sans-serif;
}
.oc-leaflet-custom-marker:before {
    content: "";
    display: block;
    border-left: solid 6px transparent;
    border-right: solid 6px transparent;
    border-top: solid 6px #ca3f33;
    width: 0;
    height: 0;
    position: absolute;
    bottom: -5px;
}
/* E: leaflet custom */



.otp-input {
    width: 45px;
    height: 45px;
    font-size: 20px;
    text-align: center;
    border: 2px solid #ced4da;
    border-radius: 5px;
    margin-right: 5px;
}

.dropdown-menu {
    z-index: 10000;
}



.form-control.forms-forms .dropdown-item {
    white-space:normal!important;
}
.form-control.forms-forms.bootstrap-select .dropdown-menu li {
    border-bottom: 1px solid #ddd!important;
}
.form-control.forms-forms.bootstrap-select .dropdown-menu li:last-child {
    border-bottom: 0px solid #ddd!important;
}
.form-control.forms-forms.bootstrap-select>.dropdown-toggle {
    white-space:normal!important;
}

