@font-face {
    font-family: 'Southbank LT';
    src: url('../fonts/SouthbankLTROkern-Regular.eot');
    src: url('../fonts/SouthbankLTROkern-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SouthbankLTROkern-Regular.woff2') format('woff2'),
        url('../fonts/SouthbankLTROkern-Regular.woff') format('woff'),
        url('../fonts/SouthbankLTROkern-Regular.ttf') format('truetype'),
        url('../fonts/SouthbankLTROkern-Regular.svg#SouthbankLTROkern-Regular') format('svg');
    font-weight: normal;font-style: normal;font-display: swap;
}
@font-face {
    font-family: 'MarkPro-Book';
    src: url('../fonts/MarkPro-Book.eot');
    src: url('../fonts/MarkPro-Book.eot?#iefix') format('embedded-opentype'),
        url('../fonts/MarkPro-Book.woff2') format('woff2'),
        url('../fonts/MarkPro-Book.woff') format('woff'),
        url('../fonts/MarkPro-Book.ttf') format('truetype'),
        url('../fonts/MarkPro-Book.svg#MarkPro-Book') format('svg');
    font-weight: normal;font-style: normal;font-display: swap;
}
@font-face {
    font-family: 'MarkPro';
    src: url('../fonts/MarkPro.eot');
    src: url('../fonts/MarkPro.eot?#iefix') format('embedded-opentype'),
        url('../fonts/MarkPro.woff2') format('woff2'),
        url('../fonts/MarkPro.woff') format('woff'),
        url('../fonts/MarkPro.ttf') format('truetype'),
        url('../fonts/MarkPro.svg#MarkPro') format('svg');
    font-weight: normal;font-style: normal;font-display: swap;
}

@font-face {
    font-family: 'MarkPro';
    src: url('../fonts/MarkPro-Bold.eot');
    src: url('../fonts/MarkPro-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/MarkPro-Bold.woff2') format('woff2'),
        url('../fonts/MarkPro-Bold.woff') format('woff'),
        url('../fonts/MarkPro-Bold.ttf') format('truetype'),
        url('../fonts/MarkPro-Bold.svg#MarkPro-Bold') format('svg');
    font-weight: bold;font-style: normal;font-display: swap;
}
.n-select{
	-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;
 	-webkit-backface-visibility:hidden;backface-visibility:hidden;
}
* {
  scrollbar-width: thin;
  scrollbar-color: #FFC519 #1E1E1E;
}
*::-webkit-scrollbar {
  width: 10px;
  background: #1E1E1E;
}
*::-webkit-scrollbar-track {
  background: #1E1E1E;
}
::-webkit-scrollbar-thumb {
  background: #FFC519;
  border: 0;
  border-radius:0px;
}
::-webkit-resizer,
::-webkit-scrollbar-corner,
::-webkit-scrollbar-thumb:active,
::-webkit-scrollbar-thumb:hover {
  background: #FFC519;
}
::selection {
  color: #fff;
  background:#FFC519;
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #333;
  font-family: "Lato", sans-serif;
  overflow-x:hidden;
}

a {
  color: #fff;
  transition: 0.5s;
}

a:hover, a:active, a:focus {
  color: #E52964;
  outline: none;
  text-decoration: none;
}
.links-white a{color:#1E1E1E;}
.links-white a:hover, .links-white a:active, .links-white a:focus {
  color: #E52964;
  outline: none;
  text-decoration: none;
}
#mpagesection a{color:#1E1E1E;}
#mpagesection a:hover{color: #E52964;outline: none;text-decoration: none;}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Southbank LT', sans-serif;
  font-weight: 400;
  margin:0;
  padding:0;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: #00B8B6;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

/* Prelaoder */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #00B8B6;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes gradient {
	0% {
		background-position: 30% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 30% 50%;
	}
}
@-webkit-keyframes gradient {
	0% {
		background-position: 30% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 30% 50%;
	}
}
@keyframes fadeInOpacity {
	0% {
		opacity: .3;
	}
	100% {
		opacity: 1;
	}
}
@-webkit-keyframes fadeInOpacity {
	0% {
		opacity: .3;
	}
	100% {
		opacity: 1;
	}
}

@keyframes move {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(5vw, 10vh);
  }
  50% {
    transform: translate(15vw, 5vh);
  }
  75% {
    transform: translate(5vw, 10h);
  }
  100% {
    transform: translate(0, 0);
  }


}
@-webkit-keyframes move {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(5vw, 10vh);
  }
  50% {
    transform: translate(15vw, 5vh);
  }
  75% {
    transform: translate(5vw, 10h);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  background: rgba(28, 28, 28, 1);
  border-bottom: 5px solid rgba(255,197,25,1);
}
#header.header-transparent {
  background: transparent;
}
#header.header-scrolled {
/*
  background: rgba(0, 0, 0, 0.9);
  padding: 18px 0;
*/
}
#header .logo{margin-right:100px;}
#header .logo img {height: 50px;}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {margin: 0;padding: 0;list-style: none;}
.nav-menu > ul {display: flex;}
.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}
.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  transition: 0.3s;
  font-size: 24px;
  line-height:30px;
  font-family: 'Southbank LT', sans-serif;
  text-transform: uppercase;
  font-weight: 400;
}
.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #E52964;
}
.nav-menu li.social_icon a{font-size:24px;padding-bottom:0px;}
.nav-menu > li.btnsocial{margin-left:120px;}
.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.nav-menu .drop-down:hover > ul {opacity: 1;top: 100%;visibility: visible;}
.nav-menu .drop-down li {min-width: 180px;position: relative;}
.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 13px;
  text-transform: none;
  color: #333333;
}
.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {color: #18d26e;}
.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: 'devsmart' !important;
  padding-left: 5px;
}
.nav-menu .drop-down .drop-down ul {top: 0;left: calc(100% - 30px);}
.nav-menu .drop-down .drop-down:hover > ul {opacity: 1;top: 0;left: 100%;}
.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}
.nav-menu .drop-down .drop-down > a:after {
  content: "\eab8";
  t-family: 'devsmart' !important;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {left: -90%;}
  .nav-menu .drop-down .drop-down:hover > ul {left: -100%;}
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}
.social-menu{display:none;}
/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;right: 20px;top: 23px;
  z-index: 9998;border: 0;background: none;font-size: 30px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;cursor: pointer;text-align: right;
}
.mobile-nav-toggle i {color: #fff;}
.mobile-nav {
  position: fixed;top: 55px;right: 15px;bottom: 15px;left: 15px;
  z-index: 9999;overflow-y: auto;
  transition: ease-in-out 0.2s;opacity: 0;
  visibility: hidden;border-radius: 0px;padding: 10px 0;
   background: rgba(28, 28, 28, 1);
  border: 5px solid rgba(255,197,25,.9);
}
.mobile-nav * {margin: 0;padding: 0;list-style: none;}
.mobile-nav a {display: block;position: relative;color: #fff;padding: 10px 20px;font-weight: 500;outline: none;
  transition: 0.3s;
  font-size: 24px;
  line-height:30px;
  font-family: 'Southbank LT', sans-serif;
  text-transform: uppercase;
}
.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {color: #E52964;text-decoration: none;}
.mobile-nav .social-menu{margin-top:40px;}
.mobile-nav li.social-menu:hover > a {color: #fff;text-decoration: none;}
.mobile-nav li.social-menu > a:hover {color: #E52964;}
.mobile-nav .social-menu a{display:inline;padding:10px 30px;}



.mobile-nav .drop-down > a:after {
  font-family: 'devsmart' !important;
  content: "\ea99";
  padding-left: 10px;
  position: absolute;
  right: 15px;
}
.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}
.mobile-nav .drop-down > a {
  padding-right: 35px;
}
.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}
.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;height: 100%;z-index: 9997;top: 0;left: 0;position: fixed;overflow: hidden;display: none;
  background: rgba(26, 26, 26, 0.6);
  transition: ease-in-out 0.2s;
}
.mobile-nav-active {overflow: hidden;}
.mobile-nav-active .mobile-nav {opacity: 1;visibility: visible;}
.mobile-nav-active .mobile-nav-toggle i {color: #fff;}
/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {overflow: hidden;}
/* Section with background
--------------------------------*/
#video-background {
  position: absolute;
  top:0px; left:0px; right: 0px;bottom: 0px;
  min-width: 100%; 
  min-height: 100%;
  width: auto; 
  height: auto;
  z-index: -100;
}
/*Home section*/
#hhero {
  background: url("../img/home/home-cover.jpg") center center no-repeat;
  background-size: cover;
  height:750px;margin-top:80px;
  padding: 60px 0 40px 0;
  position: relative;
  z-index:1;overflow:hidden;
}
#hhero::before {
  content: '';
  position: absolute;left: 0;right: 0;top: 0;bottom: 0;z-index: 1;
  	background: rgba(0, 0, 0, 0.4);
    background: -moz-linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(0,0,0,0.7)), color-stop(100%, rgba(0,0,0,0))); /* safari4+,chrome */
    background: -webkit-linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%); /* ie10+ */
    background: linear-gradient(270deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000',GradientType=1 ); /* ie6-9 */  
}
#hhero .container {position: relative;z-index: 10;}
/*index*/
	.hero-headlines{position:relative;}
	.hero-headlines h1.headline-title{font-size:45px;line-height:50px;color:#fff;font-weight:400;margin-left:40px;}
	.hero-headlines .headline-text{position:absolute;top:160px;left:0px;color:#fff;font-size:90px;line-height:85px;font-family: 'Southbank LT', sans-serif;}
	.hero-headlines .headline-text .txtpos{position:relative;}
	.hero-headlines .headline-text .text1{padding-left:30px;}
	.hero-headlines .headline-text .text2{padding-left:0px;}
	.hero-headlines .headline-text .text3{padding-left:80px;}
#homesection{position:relative;z-index:5;}
#homesection::before {
	content: '';
  	position: absolute;left: 0;right: 0;top: 200px;bottom: 0;z-index: 0;
    background: -moz-linear-gradient(156deg, rgba(238,179,32,1) 0%, rgba(230,57,92,1) 48%, rgba(229,41,100,1) 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, rgba(229,41,100,1)), color-stop(52%, rgba(230,57,92,1)), color-stop(100%, rgba(238,179,32,1))); /* safari4+,chrome */
    background: -webkit-linear-gradient(156deg, rgba(238,179,32,1) 0%, rgba(230,57,92,1) 48%, rgba(229,41,100,1) 100%); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(156deg, rgba(238,179,32,1) 0%, rgba(230,57,92,1) 48%, rgba(229,41,100,1) 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(156deg, rgba(238,179,32,1) 0%, rgba(230,57,92,1) 48%, rgba(229,41,100,1) 100%); /* ie10+ */
  	background-image: linear-gradient(to right bottom, #e52964, #e52c62, #e62f61, #e6325f, #e6355e, #eb4057, #f04c51, #f3574a, #f86e3d, #f98530, #f59c25, #eeb320);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#E52964', endColorstr='#EEB320',GradientType=1 ); /* ie6-9 */ 
    background-size: 300% 300%;
    animation: gradient 15s ease infinite;
}

	.home-section-1{position:relative;margin-top:-200px;z-index:1; /* margin-bottom:-200px; */}
	.home-box-text{margin-top:5px;background:#1E1E1E;padding:10px 15px;color:#fff;}
	.home-box-wrap{min-height:150px;}
	.home-box-text .home-box-title{font-size:18px;font-weight;400;line-height:24px;font-family: "Lato", sans-serif;font-weight:700;}
	.home-box-text .home-box-desc{font-size:14px;font-weight;400;line-height:24px;color:#BABABA;}
	.font1{font-family: 'MarkPro-Book';}
	.font2{font-family: 'MarkPro';}
	.home-box-text .home-box-link{margin-top:10px;}
	.home-box-text .home-box-link a{color:#fff;font-size:16px;text-transform:uppercase;}
	.home-box-text .home-box-link a i{color:#F9D608;}
	.home-box-text .home-box-link a:hover{color:#F9D608;}
	
	.home-section-2{position:relative;margin-top:120px;z-index:1;}
	.despre-col{background:#1E1E1E;border:4px solid #F9D608;padding:20px 20px;}
	.despre-section{font-weight:bold;color:#EEB320;font-size:24px;text-transform:uppercase;line-height:32px;}
	.despre-title{font-size:48px;line-height:48px;color:#fff;font-family: 'Southbank LT';margin-bottom:30px;text-transform:uppercase;}
	.despre-text{font-size:14px;line-height:26px;color:#BABABA;margin:10px auto;}
	.despre-link{margin-top:10px;margin-bottom:10px;}
	.despre-link a{color:#fff;font-size:16px;text-transform:uppercase;}
	.despre-link a i{color:#F9D608;}
	.despre-link a:hover{color:#F9D608;}
	
	.block1{position:absolute;top:0px;left:0px;z-index:10;}
	.block2{width:100%;margin-bottom:100px;margin-top:150px;}
	.despre-img{background:#1E1E1E;border:4px solid #10BFAA;padding:0;}
	
	.home-section-3{position:relative;padding-top:40px;padding-bottom:200px;z-index:5;}
	.home-section-3.spacing{padding-top:150px;}
	.home-section-3.mesajnou{padding-bottom:150px;}

	.btn-start-inscrieri{width:100%;max-width:600px;background:#fff;border:4px solid #050505;margin:0 auto;color:#050505;line-height:50px;font-size:32px;padding-bottom:0px;text-align:center;text-transform:uppercase;font-family: 'Southbank LT';}
	.btn-start-inscrieri span.data-start{color:#E52965;}
	.btn-shadow {
	  -moz-box-shadow: 15px 15px 0px 0px rgba(5, 5, 5, 1);
	  -webkit-box-shadow: 15px 15px 0px 0px rgba(5, 5, 5, 1);
	  box-shadow: 15px 15px 0px 0px rgba(5, 5, 5, 1);
	}

#homesection .personaj1{
  	position: absolute;width:50%;right:0px;top:200px;
	z-index: 0;opacity: 1;text-align:right;
	
/*
	transform-origin: 50% 50%;
	animation-delay: 1s;
	animation: move 24s ease-in-out infinite;
/*	-- move
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 3s;
*/
}
#homesection .personaj1 img{max-height:650px;}
#homesection .personaj2{
  	position: absolute;width:50%;left:0px;bottom:0px;
	z-index: 0;	opacity: 1;text-align:left;
	
/*
	transform-origin: 50% 50%;
	animation-delay: 2s;
	animation: move 24s ease-in-out infinite;
/*
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 3s;
*/
}
#homesection .personaj2 img{max-height:800px;}

#organizatori{position:relative;z-index:7;}
#organizatori::before{
	content: '';
  	position: absolute;left:56%;right:0px;top:-40px;bottom:0;
	background: url("../img/figures/personaj1.png") 0px 0px no-repeat;
	/*background-size: cover;*/
	background-size: auto 100%;
	z-index: 0;
	opacity: 1;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 3s;
}

.special-box{position:relative;}
.dotted-box{position:absolute;width:630px;height:auto;z-index:-1;top:-110px;left:-79px;}
.organizatori-box{background:#fff;margin-top:40px;padding:2px 0px 2px 0px;width:50%;}
.organizatori-title{font-weight:700; color:#1E1E1E;font-size:24px;line-height:34px;padding-bottom:5px;}
.organizatori-list{}
.organizatori-list a{padding-right:120px;}
.organizatori-list a img{height:120px;}
.organizatori-list a img.org2{height:90px;}
.newsletter-box{background:#00B8B6;margin-top:40px;margin-bottom:60px;padding:30px 30px;}
.newsletter-title{font-weight:bold;font-size:40px;line-height:48px;}
.form #sendmessage {color: #FFD712;border: 1px solid #FFD712;display: none;text-align: center;padding: 15px;font-weight: 600;margin-bottom: 15px;}
.form #errormessage {color:#E52964;display: none;border: 1px solid red;text-align: center;padding: 15px;font-weight: 600;margin-bottom: 15px;}
.form .validation {color: red;display: none;margin: 0 0 20px;font-weight: 400;font-size: 13px;}
.form #sendmessage.show, .form #errormessage.show, .form .show {display: block;}
.form_gh{margin-top:0px;}
.form_gh div.label{position: relative;cursor: pointer;color: #666;font-size: 14px;}
.form_gh input[type="checkbox"], .form_gh input[type="radio"]{position: absolute;right: 9000px;}
/*Check box*/
.form_gh .lab_txt{font-weight:400;font-size:14px; line-height:16px;}
.form_gh .label-text{}
.form_gh input[type="checkbox"] + .label-text:before{
	font-family: 'devsmart' !important;
	content: "\f096";
	speak: none;font-style: normal;font-weight: normal;font-variant: normal;text-transform: none;line-height: 1;-webkit-font-smoothing:antialiased;
	width: 1em;	display: inline-block;margin-right: 1px;position:relative;top:3px;font-size:20px;
}
.form_gh input[type="checkbox"]:checked + .label-text:before{
	content: "\f14a";
	color: #FFD712;animation: effect 250ms ease-in;
}
.form_gh input[type="radio"] + .label-text:before{
	font-family: 'devsmart' !important;
	content: "\f10c";
	speak: none;font-style: normal;font-weight: normal;font-variant: normal;text-transform: none;line-height: 1;-webkit-font-smoothing:antialiased;
	width: 1em;	display: inline-block;margin-right: 1px;position:relative;top:3px;font-size:20px;
}
.form_gh input[type="radio"]:checked + .label-text:before{
	content: "\f192";
	color: #FFD712;animation: effect 250ms ease-in;
}
.radio-group{overflow:hidden;margin-top:40px;margin-bottom:0;}
.radio-group .form_gh{width:120px;float:left;}
.radio-group .form_gh .lab_txt{color:#fff;}
.newsletter-box .form input{padding: 10px 14px;background:rgba(255,255,255,1);border-radius: 0;box-shadow: none;font-size: 15px;}
.form-action{position:relative;}
.newsletter-box .form input.in-email{width: calc(100% - 214px);height:36px;}
.btn-form{position:absolute;top:0;right:0;z-index:10;width:214px;}
.newsletter-box .form button[type="submit"] {background: #FFD712;letter-spacing:1px;text-transform:uppercase;font-size:14px;font-weight:400;border: 0;color:#E52964;padding: 6px 14px 0px 24px;line-height:30px;overflow:hidden;transition: 0.4s;cursor: pointer;}
.newsletter-box .form button[type="submit"]:hover {background: #E52964;color:#fff;}

.newsletter-box .form button[type="submit"] span.icon-arrow{display: inline-block}
.newsletter-box .form button[type="submit"] span.icon-arrow svg{height:20px;width:40px; display: inline-block;}
.newsletter-box .form button[type="submit"] span.icon-arrow svg .arrowst38{fill:none;stroke:#E52964;stroke-width:1.6784;stroke-miterlimit:10;}
.newsletter-box .form button[type="submit"]:hover span.icon-arrow svg .arrowst38{fill:none;stroke:#1C1C1C;stroke-width:1.6784;stroke-miterlimit:10;}




.newsletter-box .nomargin{margin:0;}
input:focus, input.form-control:focus {
    outline:none !important;
    outline-width: 0 !important;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}
.footer-box{background:#1E1E1E;margin-top:40px;margin-bottom:0px;padding:30px 30px;}
.footer-logo svg, .footer-logo img{height:80px;}
.footer-logo svg .st13{fill:#FFFFFF;}
.footer-logo:hover svg .st13{fill:#E52964;}
.footer-nav{margin-top:40px;}
.footer-nav a{color:#fff;display:block;font-size:14px;line-height:18px;margin-bottom:5px;}
.footer-nav a.last{margin-bottom:0;}
.footer-nav a:hover{color:#E52964;}
.block-section{position:relative;margin-bottom:40px;}
.block-section.last{margin-bottom:0;}
.block-section .block-title{font-size:20px;line-height:24px;color:#fff;margin-bottom:10px;}
.block-section .block-content{position:relative;font-size:14px;line-height:30px;color:#fff;}
.block-section .block-content a{display:block;position:relative;line-height:30px;font-size:14px;margin-bottom:10px;padding-left:40px;}
.block-section .block-content a.last{margin-bottom:0;}
.block-section .block-content a:hover{color:#E52964;}
.block-section .block-content a.mail i{font-size:20px;line-height:30px;position:absolute;top:0px;left:0px;}
.block-section .block-content a.tel i{font-size:36px;line-height:36px;position:absolute;top:-4px;left:2px;}
.info-map-location a.btn-map-location{display:block;position:relative;margin-left:50px;line-height:40px;font-size:14px;background:#E52964;color:#fff;text-align:center;width:200px;padding-top:2px;}
.info-map-location a.btn-map-location:hover{background:#fff;color:#E52964;}
.info-map-location a.btn-map-location span.icon-map{position:absolute;top:-5px;left:-50px;}
.info-map-location a.btn-map-location span.icon-map .f-loc{font-size:50px;line-height: 50px;color:#E52964;}
.info-map-location a.btn-map-location:hover span.icon-map .f-loc{color:#fff;}
#footer-note{position:relative;z-index:5;}
#footer-note::before{
	content: '';
  	position: absolute;left: 0;right: 0;top:-120px;bottom: 0;
    background: -moz-linear-gradient(156deg, rgba(238,179,32,1) 0%, rgba(230,57,92,1) 48%, rgba(229,41,100,1) 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, rgba(229,41,100,1)), color-stop(52%, rgba(230,57,92,1)), color-stop(100%, rgba(238,179,32,1))); /* safari4+,chrome */
    background: -webkit-linear-gradient(156deg, rgba(238,179,32,1) 0%, rgba(230,57,92,1) 48%, rgba(229,41,100,1) 100%); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(156deg, rgba(238,179,32,1) 0%, rgba(230,57,92,1) 48%, rgba(229,41,100,1) 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(156deg, rgba(238,179,32,1) 0%, rgba(230,57,92,1) 48%, rgba(229,41,100,1) 100%); /* ie10+ */
  	background-image: linear-gradient(to right bottom, #e52964, #e52c62, #e62f61, #e6325f, #e6355e, #eb4057, #f04c51, #f3574a, #f86e3d, #f98530, #f59c25, #eeb320);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#E52964', endColorstr='#EEB320',GradientType=1 ); /* ie6-9 */ 
	z-index: 0;
}
.footer-txt{font-size:14px;line-height:40px;margin-bottom:20px;}
/* end index*/
#desprehero {
  background: url("../img/despre/despre-cover.jpg") center center no-repeat;
  background-size: cover;
  height:450px;margin-top:80px;
  padding: 60px 0 40px 0;position: relative;z-index:1;
}
#desprehero::before {
  content: '';
  position: absolute;left: 0;right: 0;top: 0;bottom: 0;
  background: rgba(33, 33, 33, 0);
}
#desprehero .container {position: relative;z-index: 10;}
#desprehero	.hero-headlines{position:relative;}
#desprehero	.hero-headlines h1.headline-title{font-size:45px;line-height:50px;color:#fff;font-weight:400;margin-left:40px;}
.hero-headlines h1.headline-title.secondary,
#desprehero	.hero-headlines h1.headline-title.secondary,
.headline-text.secondary{font-size:64px;line-height:74px;font-family: 'Southbank LT', sans-serif;}
#homesection.despre::before {top:150px}
	.despre-section-2{position:relative;margin-top:-150px;z-index:1;}
	.desprebox1{padding:30px;background:#fff;color:#666666;font-size:14px;line-height:24px;}
	.despre-title.desprebox{font-size:35px;line-height:35px;color:#232323;font-family: 'Southbank LT', sans-serif;}
	.despre-subtitle{color:#666666;font-weight:bold;font-size:17px;line-height:24px;}
	.desprebox1 img{width:100%;max-width:500px;}
	.two-columns{
	  -webkit-column-count: 2;-moz-column-count: 2;column-count: 2;
	  -webkit-column-gap: 60px;-moz-column-gap: 60px;column-gap: 60px;
	}
	.no-padding{padding:0;}
	.despre-section-3{position:relative;margin-top:80px;z-index:1;}
	.desprebox2{padding:30px;background:#fff;color:#666666;font-size:14px;line-height:24px;}
	.despre-section-3 img{width:100%;max-width:500px;}
	.despre-section-4{position:relative;margin-top:80px;z-index:1;}
	.despre-section-5{position:relative;margin-top:80px;z-index:1;}
	.desprebox2{padding:30px;background:#232323;color:#BABABA;font-size:14px;line-height:24px;}
	.desprebox2 .despre-title{color:#fff;font-size:50px;line-height:50px;}
	.img-special{border:4px solid #10BFAA;position:relative;left:-20px;}
	.img-dbox1{padding-bottom:20px;}
	.img-dbox2{}
	.img-dbox3{}
	.img-dbox4{padding:10px 0px 20px 0px;}
	.img-dbox4-end{}
/*Media Center*/
	#mediasection{position:relative;z-index:5;}
	#mediasection::before {
		content: '';
	  	position: absolute;left: 0;right: 0;bottom: 0;height:450px;
	    background: -moz-linear-gradient(156deg, rgba(238,179,32,1) 0%, rgba(230,57,92,1) 48%, rgba(229,41,100,1) 100%); /* ff3.6+ */
	    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, rgba(229,41,100,1)), color-stop(52%, rgba(230,57,92,1)), color-stop(100%, rgba(238,179,32,1))); /* safari4+,chrome */
	    background: -webkit-linear-gradient(156deg, rgba(238,179,32,1) 0%, rgba(230,57,92,1) 48%, rgba(229,41,100,1) 100%); /* safari5.1+,chrome10+ */
	    background: -o-linear-gradient(156deg, rgba(238,179,32,1) 0%, rgba(230,57,92,1) 48%, rgba(229,41,100,1) 100%); /* opera 11.10+ */
	    background: -ms-linear-gradient(156deg, rgba(238,179,32,1) 0%, rgba(230,57,92,1) 48%, rgba(229,41,100,1) 100%); /* ie10+ */
	  	background-image: linear-gradient(to right bottom, #e52964, #e52c62, #e62f61, #e6325f, #e6355e, #eb4057, #f04c51, #f3574a, #f86e3d, #f98530, #f59c25, #eeb320);
	    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#E52964', endColorstr='#EEB320',GradientType=1 ); /* ie6-9 */ 
	    background-size: 300% 300%;
	    animation: gradient 15s ease infinite;
		z-index: 0;
	}
	#mediasection .container {position: relative;z-index: 10;}
	.conainter-media{position:relative;margin-top:-200px;z-index:1;}
	.media-wrapper{padding:30px;background:#fff;color:#666666;font-size:14px;line-height:24px;margin-bottom:200px;}
	.media-bigbox img{width:100%;}
	.media-link {margin-top:10px;margin-bottom:10px;}
/*
	.media-link a{color:#E52964;font-size:16px;text-transform:uppercase;}
	.media-link a i{color:#E52964;}
	.media-link a:hover{color:#1C1C1C;}
	.media-link a:hover i{color:#1C1C1C;}
*/
	.media-info{color:#1C1C1C;font-size:18px;line-height:22px;text-align:center;position:relative;}
	.center {display: flex;justify-content: center;align-items: center;height: 250px;}
	.media-comunicate{margin-top:15px;border-top:4px solid #FFC519;padding-top:15px;}
	.comunicat-item{padding:15px 15px;margin-bottom:30px;position:relative;}
	.comunicat-item .comunicat-date{color:#232323;font-size:20px;line-height:30px;font-family: 'Southbank LT';margin-bottom:20px;}
	.comunicat-item .comunicat-title{font-size:28px;color:#070707;line-height:30px;margin-bottom:10px;}
	.comunicat-item .comunicat-description{font-size:14px;line-height:22px;color:#666;margin-bottom:20px;}
	.comunicat-item .comunicat-dw{position:relative;}
	.comunicat-item .comunicat-dw a{display:block;text-align:center;background:#E12E66;color:#fff;line-height:40px;}
	.comunicat-item .comunicat-dw a:hover{background:#1C1C1C;}
	.conainter-media{position:relative;z-index:10;}
	.dotted-red-box{position:absolute;width:630px;height:auto;z-index:0;bottom:380px;right:0px;}
/*general page*/
	#mpagesection{position:relative;z-index:5;}
	#mpagesection .container {position: relative;z-index: 10;}
	.container-mpage{position:relative;margin-top:-200px;z-index:10;}
	.mpage-wrapper{padding:30px;background:#fff;color:#666666;font-size:14px;line-height:24px;margin-bottom:60px;}
	#organizatori.simple::before{display:none;}
	.dotted-red-box.simplepage{bottom:-206px;}
/*media responsive*/
#main{overflow:hidden;width:100%;}
.home-box-link a{display:block;position:relative;line-height:20px;font-size:16px;color:#fff;margin-bottom:5px;}
.home-box-link a:hover{color:#F9D608;}
.home-box-link a span.icon-arrow{display:inline-block}
.home-box-link a span.icon-arrow svg{height:20px;width:40px; display: inline-block;}
.home-box-link a span.icon-arrow svg .arrowst38{fill:none;stroke:#fff;stroke-width:1.6784;stroke-miterlimit:10;}
.home-box-link a:hover span.icon-arrow svg .arrowst38{fill:none;stroke:#F9D608;stroke-width:1.6784;stroke-miterlimit:10;}

.despre-link a{display:block;position:relative;padding-right:40px;line-height:20px;font-size:16px;color:#fff;}
.despre-link a:hover{color:#F9D608;}
.despre-link a span.icon-arrow{display:inline-block;}
.despre-link a span.icon-arrow svg{height:20px;width:40px; display: inline-block;}
.despre-link a span.icon-arrow svg .arrowst38{fill:none;stroke:#fff;stroke-width:1.6784;stroke-miterlimit:10;}
.despre-link a:hover span.icon-arrow svg .arrowst38{fill:none;stroke:#F9D608;stroke-width:1.6784;stroke-miterlimit:10;}

.media-link a{display:block;position:relative;line-height:20px;font-size:16px;color:#E52964; text-transform:uppercase;}
.media-link a:hover{color:#1C1C1C;}
.media-link a span.icon-arrow{display: inline-block}
.media-link a span.icon-arrow svg{height:20px;width:40px; display: inline-block;}
.media-link a span.icon-arrow svg .arrowst38{fill:none;stroke:#E52964;stroke-width:1.6784;stroke-miterlimit:10;}
.media-link a:hover span.icon-arrow svg .arrowst38{fill:none;stroke:#1C1C1C;stroke-width:1.6784;stroke-miterlimit:10;}

.btn-start-inscrieri.news-info{text-transform:none;text-align:left;max-width:700px; padding:20px 30px;}
.btn-start-inscrieri.news-info .news-info-details{text-align:left;text-transform:none;font-size:18px;line-height:24px;color:#070707;font-family: 'MarkPro';font-weight: normal;}

/*Artists*/
	#artists{position:relative;z-index:5;}
	#artists::before {
		content: '';
	  	position: absolute;left: 0;right: 0;bottom: 0;height:450px;
	    background: -moz-linear-gradient(156deg, rgba(238,179,32,1) 0%, rgba(230,57,92,1) 48%, rgba(229,41,100,1) 100%); /* ff3.6+ */
	    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, rgba(229,41,100,1)), color-stop(52%, rgba(230,57,92,1)), color-stop(100%, rgba(238,179,32,1))); /* safari4+,chrome */
	    background: -webkit-linear-gradient(156deg, rgba(238,179,32,1) 0%, rgba(230,57,92,1) 48%, rgba(229,41,100,1) 100%); /* safari5.1+,chrome10+ */
	    background: -o-linear-gradient(156deg, rgba(238,179,32,1) 0%, rgba(230,57,92,1) 48%, rgba(229,41,100,1) 100%); /* opera 11.10+ */
	    background: -ms-linear-gradient(156deg, rgba(238,179,32,1) 0%, rgba(230,57,92,1) 48%, rgba(229,41,100,1) 100%); /* ie10+ */
	  	background-image: linear-gradient(to right bottom, #e52964, #e52c62, #e62f61, #e6325f, #e6355e, #eb4057, #f04c51, #f3574a, #f86e3d, #f98530, #f59c25, #eeb320);
	    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#E52964', endColorstr='#EEB320',GradientType=1 ); /* ie6-9 */ 
	    background-size: 300% 300%;
	    animation: gradient 15s ease infinite;
		z-index: 0;
	}
	#artists .container {position: relative;z-index: 10;}
	.conainter-artists{position:relative;margin-top:-200px;z-index:1;}

	.page-artisti h1{font-size:26px;line-height:46px;color:#000;font-family: 'MarkPro';font-weight:bold;margin-bottom:15px;}
	.page-artisti{ font-size:16px;line-height:24px;color:#666;font-family: 'MarkPro';font-weight:normal;}
	.page-artisti .page-artist-content{margin-bottom:30px;}
	.page-artisti .page-artist-content .arist-subheader{font-weight:bold;font-family: 'MarkPro';color:#666;margin-bottom:30px;}
	ul.list-oportunitati{padding-left:15px;}	
	.page-artisti img{width:100%;}
	.arte-list{font-weight:bold;font-family: 'MarkPro';color:#000;font-size:20px;line-height:30px;}
	.arte-list .arte-list-h{color:#e52964;margin-bottom:10px;font-size:24px;line-height:40px;}
	.arte-list .arte-list-h.scenice{color:#00a9a4;}
	.page-artisti .page-end{height:5px;background:rgba(255,197, 25,1);margin-top:35px;}
	.row-flex {display: flex;flex-wrap: wrap;}
	.content {height: 100%;}
	.artisti-sidebar {background: #e5e1e2;position:relative;}
	.sidebar-content{padding:1.25rem 1.25rem;}
	.sidebar-content h4{color:#e52964;font-size:26px;line-height:30px;font-family: 'MarkPro';margin-bottom:20px;font-weight:bold;}
	.panel-heading {padding: 0;border:0;}
	h4.panel-title{margin-bottom:10px;}
	.panel-title>a, .panel-title>a:active{display:block;padding:15px;background:#e52964;color:#fff;font-family: 'MarkPro';font-size:22px;font-weight:bold;text-decoration:none;}
	.panel-heading  a:before {
	   font-family: 'devsmart' !important;
	   content: "\f175";float: right;transition: all 0.5s;}
	.panel-heading.active a:before {-webkit-transform: rotate(180deg);-moz-transform: rotate(180deg);transform: rotate(180deg);}
	ul.sidebar-nav{margin:0;padding:0;list-style:none;}
	ul.sidebar-nav li{margin-bottom:10px;}
	ul.sidebar-nav li a{display:block;padding:15px;background:#f4f3f2;color:#000;font-family: 'MarkPro'; font-size:16px;font-weight:bold;text-decoration:none;}
	ul.sidebar-nav li a:hover, ul.sidebar-nav li.active a {background:#ffc519;}




	.pre-inscriere{margin-top:40px;}
	.pre-inscriere .inscriere-header{color:#e52964;font-size:14px;line-height:18px;font-family: 'MarkPro';font-weight:bold;margin-bottom:5px;}
	.pre-inscriere .f-more-info{color:#595556; font-size:12px;line-height: 14px;font-family: 'MarkPro-Book';font-weight:normal;}
	.pre-inscriere a{color:#e52964;}
	.pre-inscriere input{border:2px solid #e52964;border-radius:0;}
	.pre-inscriere input:focus{border:2px solid #ffc519;}
	.pre-inscriere .disclaim{font-size:14px;line-height:16px;text-transform:uppercase;font-family: 'MarkPro';font-weight:bold;color:#e52964;}
	.inscriere-action{text-align:center;margin-top:20px;}
	.inscriere-action .btn-inregistrare{background-color:#e52964;border-color:#e52964 ;color:#fff;border-radius:0;padding:.5rem .9rem;font-family: 'MarkPro';font-weight:bold;}
	.inscriere-action .btn-inregistrare:hover{background-color:#ffc519;border-color:#ffc519 ;color:#000;}
	.custom-control-label{font-family: 'MarkPro';font-weight:bold;color:#e52964;}
	.custom-control-label::before{border:2px solid #e52964;}
	.custom-control-input:checked ~ .custom-control-label::before{color: #fff;border-color: #e52964;background-color: #e52964;outline:0;}
	.custom-control-input:focus{outline:0;}
	.custom-control-input:focus~.custom-control-label::before,
	.custom-control-input:focus~.custom-control-indicator{box-shadow: none !important;}
	textarea.form-control{border:2px solid #e52964;border-radius:0;}
	textarea.form-control:focus{border:2px solid #ffc519;border-radius:0;}
	a.btn-lang{color:rgba(255,197,25,1);}

	.errorpage{padding-top:150px;}
	.mentenanta{background:rgba(255,255,255,.95);padding:1rem;text-align:center;}
	.mentenanta img{width:100%;}
	.img-mentain{margin-top:30px;}
	.mentenanta h1{font-size:1.8rem;color:#E52964;margin-top:10px;}
	.mentenanta h4{font-size:1.2rem;}
	.mentenanta-center{text-align:center;}

@media (min-width: 50px){
	.two-columns{
	  -webkit-column-count: 1;-moz-column-count: 1;column-count: 1;
	  -webkit-column-gap: 0px;-moz-column-gap:0px;column-gap:0px;
	}
	.img-dbox3{margin-bottom:20px;}
	.img-special{max-width:calc(100% + 60px);}
	.img-dbox4-end{display:none;}
	.home-box-wrap{min-height:auto;}
	.organizatori-box{width:100%;}
	.organizatori-list a{padding-right:20px;}
	.dotted-box{width:560px;height:auto;top:-70px;left:-180px;}
	.dotted-red-box{width:480px;height:auto;bottom:380px;right:-175px;}
	.organizatori-list a img{height:80px;}
	.organizatori-list a img.org2{height:60px;}
	#organizatori::before{left:25%;right:0px;top:-40px;bottom:0;background-size:auto 70%;}
	.desprebox1 p:last-child {margin-bottom:0px;}
	.desprebox2 p:last-child {margin-bottom:0px;}
	.last-p{margin-bottom:0px;}
	.footer-nav{margin-top:30px;margin-bottom:30px;}

	.media-info{font-size:18px;line-height:26px;}
	.center {height: 150px;}
	.btn-start-inscrieri{width:100%;max-width:230px;line-height:40px;font-size:26px;}
	.about-col{margin-bottom:40px;}
	
	#hhero {height:560px;margin-top:80px;padding: 40px 0 40px 0;}
	.hero-headlines h1.headline-title{font-size:34px;line-height:34px;}
	.hero-headlines .headline-text{top:120px;font-size:60px;line-height:55px;left:40px;}
	.despre-title.home-black{font-size:35px;line-height:40px;}

	.block1{position:relative;top:-60px;}
	.block2{margin-bottom:0px;margin-top:0px;}
	.block2 .float-right{float:none !important;}
	.home-section-3.home-special{padding-top:90px;}
	#homesection .personaj1 img{max-height:450px;}
	#homesection .personaj2 img{max-height:630px;}
	#homesection .personaj2.teatru img{max-height:400px;}

	.newsletter-box .form input.in-email{width: 100%;height:36px;}
	.btn-form{position:unset;top:unset;right:unset;width:100%;text-align:center;margin-top:20px;}
	.hero-headlines h1.headline-title.secondary,
	#desprehero	.hero-headlines h1.headline-title.secondary,
	.headline-text.secondary{font-size:40px;line-height:50px;}
	.info-map-location a.btn-map-location{margin-left:0px;margin-top:80px;width:100%;}
	.info-map-location a.btn-map-location span.icon-map{top:-55px;left: calc( 50% - 25px);}
	.mobile-nav-toggle {right: 5px;top: 23px;}

	.btn-start-inscrieri.news-info{text-transform:none;text-align:left;max-width:96%; width:calc(95% - 40px) padding:20px 20px;font-size:24px;line-height:36px;}
	.btn-start-inscrieri.news-info .news-info-details{text-align:left;text-transform:none;font-size:16px;line-height:22px;}


@media (min-width: 420px){
	.organizatori-box{width:70%;}
	.btn-start-inscrieri{width:100%;max-width:400px;line-height:50px;font-size:26px;}
	.organizatori-list a img.org2{height:70px;}
	.info-map-location a.btn-map-location{margin-top:0px;margin-left:50px;width:200px;}
	.info-map-location a.btn-map-location span.icon-map{top:-5px;left:-50px;}
	.img-special{max-width:calc(100% + 70px);}
	.dotted-red-box{width:560px;height:auto;bottom:380px;right:-200px;}
	.hero-headlines h1.headline-title.secondary,
	#desprehero	.hero-headlines h1.headline-title.secondary,
	.headline-text.secondary{font-size:50px;line-height:68px;}
}


@media (min-width: 576px){
	.img-special{max-width:calc(100% + 70px);}
	.img-dbox4-end{display:none;}
	.home-box-wrap{min-height:auto;}
	.organizatori-box{width:70%;}
	.organizatori-list a{padding-right:80px;}
	.dotted-box{width:616px;height:auto;top:-90px;left:-170px;}
	.dotted-red-box{width:560px;height:auto;bottom:380px;right:-80px;}
	.organizatori-list a img{height:80px;}
	.organizatori-list a img.org2{height:70px;}
	#organizatori::before{left:25%;right:0px;top:-40px;bottom:0;background-size:auto 70%;}
	.desprebox1 p:last-child {margin-bottom:0px;}
	.desprebox2 p:last-child {margin-bottom:0px;}
	.last-p{margin-bottom:0px;}
	.footer-nav{margin-top:30px;margin-bottom:30px;}

	.media-info{font-size:14px;line-height:20px;}
	.center {height: 150px;}
	.btn-start-inscrieri{width:100%;max-width:500px;line-height:50px;font-size:32px;}

	.btn-start-inscrieri.news-info{text-transform:none;text-align:left;max-width:470px; padding:20px 20px;font-size:26px;line-height:40px;}
	.btn-start-inscrieri.news-info .news-info-details{text-align:left;text-transform:none;font-size:16px;line-height:22px;}


	.about-col{margin-bottom:40px;}
	
	#hhero {height:560px;margin-top:80px;padding: 40px 0 40px 0;}
	.hero-headlines h1.headline-title{font-size:34px;line-height:34px;}
	.hero-headlines .headline-text{top:120px;font-size:60px;line-height:55px;left:0px;}
	.despre-title.home-black{font-size:35px;line-height:40px;}

	.block1{position:relative;top:-60px;}
	.block2{margin-bottom:0px;margin-top:0px;}
	.block2 .float-right{float:none !important;}
	.home-section-3.home-special{padding-top:90px;}
	#homesection .personaj1 img{max-height:510px;}
	#homesection .personaj2 img{max-height:540px;}
	#homesection .personaj2.teatru img{max-height:540px;}

	.newsletter-box .form input.in-email{width: calc(100% - 214px);height:36px;}
	.btn-form{position:absolute;top:0;right:0;width:214px;margin-top:unset;}
.hero-headlines h1.headline-title.secondary,
#desprehero	.hero-headlines h1.headline-title.secondary,
.headline-text.secondary{font-size:64px;line-height:74px;}



}

@media (min-width: 768px){
	.img-special{max-width:calc(100% + 70px);}
	.organizatori-box{width:70%;}
	.home-box-wrap{min-height:280px;}
	.despre-title.desprebox{font-size:30px;line-height:30px;}
	.img-dbox3{padding-bottom:20px;}
	.organizatori-list a{padding-right:90px;}
	.organizatori-list a img{height:120px;}
	.organizatori-list a img.org2{height:90px;}
	#organizatori::before{left:40%;right:0px;top:-40px;bottom:0;background-size: auto 100%;}
	.dotted-box{width:560px;height:auto;top:-80px;left:-79px;}
	.dotted-red-box{width:560px;height:auto;bottom:380px;right:0px;}
	.block-section .block-title{font-size:18px;}
	.info-map-location a.btn-map-location{margin-left:0px;margin-top:80px;width:100%;}
	.info-map-location a.btn-map-location span.icon-map{top:-55px;left: calc( 50% - 25px);}
	.comunicat-item .comunicat-dw a{line-height:22px;}
	#hhero {height:560px;margin-top:80px;padding: 40px 0 40px 0;}
	.hero-headlines h1.headline-title{font-size:34px;line-height:34px;}
	.hero-headlines .headline-text{top:120px;font-size:60px;line-height:55px;}
	.despre-title.home-black{font-size:35px;line-height:40px;}
	.home-section-3.home-special{padding-top:200px;}

	.two-columns{
	  -webkit-column-count: 2;-moz-column-count: 2;column-count: 2;
	  -webkit-column-gap: 60px;-moz-column-gap: 60px;column-gap: 60px;
	}
	.img-dbox3{margin-bottom:0px;}
	.media-info{font-size:18px;line-height:22px;}
	.center {height: 250px;}
	.btn-start-inscrieri{width:100%;max-width:600px;line-height:50px;font-size:32px;}

	.btn-start-inscrieri.news-info{text-transform:none;text-align:left;max-width:700px; padding:20px 30px;font-size:32px;line-height:50px;}
	.btn-start-inscrieri.news-info .news-info-details{text-align:left;text-transform:none;font-size:18px;line-height:24px;color:#070707;font-family: 'MarkPro';font-weight: normal;}



	.about-col{margin-bottom:0px;}
	
	.block1{position:absolute;top:0px;}
	.block2{margin-bottom:100px;margin-top:150px;}
	.block2 .float-right{float:right !important;}
	.mobile-nav-toggle {right: 20px;top: 23px;}

}
@media (min-width: 992px){


	.img-special{max-width:calc(100% + 70px);}
	.home-box-wrap{min-height:230px;}
	.despre-title.desprebox{font-size:35px;line-height:35px;}
	.img-dbox3{padding-bottom:26px;padding-top:26px;}
	.organizatori-list a{padding-right:120px;}
	#organizatori::before{left:56%;right:0px;top:-40px;bottom:0;}
	.dotted-box{width:630px;height:auto;top:-110px;left:-79px;}
	.dotted-red-box{width:630px;height:auto;bottom:380px;right:0px;}
	.block-section .block-title{font-size:20px;}
	.info-map-location a.btn-map-location{margin-top:0px;margin-left:50px;width:200px;}
	.info-map-location a.btn-map-location span.icon-map{top:-5px;left:-50px;}
	.comunicat-item .comunicat-dw a{line-height:40px;}
	.newsletter-box .form input.in-email{width: calc(100% - 214px);height:36px;}
	.btn-form{position:absolute;top:0;right:0;width:214px;margin-top:unset;}
	#hhero {height:750px;margin-top:80px;padding: 60px 0 40px 0;}
	.hero-headlines h1.headline-title{font-size:45px;line-height:50px;}
	.hero-headlines .headline-text{top:160px;font-size:90px;line-height:85px;}
	.despre-title.home-black{font-size:48px;line-height:48px;}
	.desprebox2 .despre-title.home-black{font-size:50px;line-height:50px;}
	.home-section-3.home-special{padding-top:40px;}
}
@media (min-width: 1024px){
	.img-special{max-width:calc(100% + 80px);}
	.home-box-wrap{min-height:230px;}
}
@media (min-width: 1200px){
	.organizatori-box{width:50%;}
	.home-box-wrap{min-height:150px;}
	.img-dbox3{padding-bottom:unset;padding-top:unset;}
}
@media (min-width: 1300px){
	.img-special{max-width:unset;}
}


@media (max-width: 992px) {
	.social-menu{display:block;}
/*
  #intro h2 {font-size: 28px;}
  #nav-menu-container {display: none;}
  .arrow-up {display: none;}
  #mobile-nav-toggle {display: inline;}
*/
}