*{
	font-family: 'Ubuntu Mono', monospace;
}
body{
  font-family: 'Ubuntu Mono', monospace;
  background-color: #fff;
  margin: 0;
}
/*********************/
/* COLOANE - RANDURI */
/*********************/
.row{
	width: 100%;
	display: flex;
}
.header{
	width: 91.33%;
	text-align: center;
}
.mij{
	width: 91.33%;
	border: 3px solid #383838;
	height: auto;
	display: flex;
	border-radius: 10px;
	padding-top: 50px;
	padding-bottom: 50px;
}
.mij2{
	width: 45.66%;
	text-align: center;
}
.mij3{
	width: 91.33%;
	border: 3px solid #383838;
	height: auto;
	display: flex;
	border-radius: 10px;
	padding-top: 50px;
	padding-bottom: 50px;	
}

.col-mij{
	width: 33.33%;
	height: auto;
	text-align: center;
}
.col-mij-link-desktop{
	width: 33.33%;
	height: 400px;
	text-align: center;display: block;
}
.col-mij-link-mobile{
	width: 33.33%;
	height: 400px;
	text-align: center;
	display: none;
}
.col-mij-border{
	width: 33.33%;
	height:auto;
	text-align: center;
	border-right: 3px solid #383838;
	border-left: 3px solid #383838;  
}
.col-1{
	width: 4.33%;
}
.col-20{
	width: 15%;
}

.btn1{
	background: #989898;
	text-decoration: none;
  	border-radius: 10px;
  	text-decoration: none; 
  	color: #383838; 
  	width: 250px; 
  	margin-left: 22%; 
  	font-weight: bold; 
  	font-size: 30px;
}
.btn1:hover {
  background: #383838;
  color: #989898;
  text-decoration: none;
  border-radius: 10px;
  cursor: pointer;
}
/**********/
/* NUMELE */
/**********/
.nume{
	text-align: center;
	width: 91.33%;
	color: #585858;
	font-size: 115px;
	font-weight: bold;
	background-repeat: repeat-x;
	-webkit-background-clip:text;
	animation: animate 15s linear infinite;
	-webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
}
.nume:hover{
	text-align: center;
	width: 91.33%;
	color: #585858;
	font-size: 140px;
	background-repeat: repeat-x;
	-webkit-background-clip:text;
	animation: animate 15s linear infinite;
	cursor: pointer;
}
@media screen and (max-width: 160px){
  h1 { 
    font-size: 150px;
    color: red;
  }
}
/*********/
/* MENIU */
/*********/
nav{
	 margin: auto;
	 width: auto;
}
 a{
	display:block;
	text-decoration: none;
	color:#fff;
}

 ul{
	list-style: none;
	width: auto;
	padding: 0px;
}

 ul li{
 	margin-right: 2px;
	float:left;
	width:200px;
	height:23px;
	line-height: 23px;
	text-align: center;
	font-size: 20px;
	background-color:#333;
	opacity: .8;
	color: #fff;
	cursor: pointer;
	padding: 0px;
}

 ul ul li{
	position:relative;
	display:none;
	opacity: .8;
	margin-top: 1px;
	margin-left: 10px;
}

 ul ul ul{
	display:none;

}

 ul li:hover ul li{
	display: inline;
	animation: navmenu 500ms forwards;
}
ul li ul li a:hover{
	background-color: #7c7c7c;
	color: #fff;
	
}
ul li a:hover{
	background-color: #7c7c7c;
	color: #fff;
}

@keyframes navmenu{
	0%{
		opacity:0;
		top:5px;
	}
	100%{
		opacity:1;
		top:0px;
	}
}

 ul ul li:hover ul{
	display:block;
	position:absolute;
	width:140px;
	left:140px;
	top:0px;
}

/***********/
/* IMAGINI */
/***********/

.w3-button{
	color: #383838;
	background-color: #989898;
	border: 0px;
	height: 60%;
	width: 40px;
	opacity: .8;
	cursor: pointer;
	
}
.w3-button:hover{
	opacity: .95;
}
.w3-display-left{
	position:absolute;
	top:50%;
	left:0%;
	transform:translate(0%,-50%);
	-ms-transform:translate(-0%,-50%);
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}
.w3-display-right{
	margin-left: 50%;
	position:absolute;
	top:50%;
	right:0%;
	transform:translate(0%,-50%);
	-ms-transform:translate(0%,-50%);
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}
.mySlides{
	display:none;
}
.mySlides2{
	display:none;
}
.w3-content{
	max-width:980px;
	margin-left:auto;
	margin-right:auto;
	z-index:-1;
}
.w3-display-container{
	position:relative;
}

.img-fra{
	width: 48%; 
	height: 30%;
}
.img-mis{
	width: 90%; 
	height: 20%;
}
.img-stema{
	 width: 30%; 
	 height: 30%;
}
.img-ftc{
	width: 90%; 
	height: 14%;
}
/*********/
/* MODAL */
/*********/
.modalDialog {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
	z-index: 99999;
	opacity:0;
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	pointer-events: none;
    overflow-y: auto;
}
.modalDialog:target {
	opacity:1;
	pointer-events: auto;
}
.modalDialog > div {
	width: 80%;
	height: auto;
	position: relative;
	margin: 10% auto;
	margin-top: 100px;
	margin-bottom: 200px;
	padding: 5px 20px 13px 20px;
	border-radius: 10px;
	background: #fff;
	font-weight: bold;
	font-size: 18px;
}
.close {
	background: #989898;
	color: #383838;
	line-height: 25px;
	position: absolute;
	right: -12px;
	text-align: center;
	top: -10px;
	width: 24px;
	text-decoration: none;
	font-weight: bold;
	font-size: 23px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	-moz-box-shadow: 1px 1px 3px #000;
	-webkit-box-shadow: 1px 1px 3px #000;
	box-shadow: 1px 1px 3px #000;
}
.close:hover { 
	background: #383838;
	color: #989898;
	font-weight: bold; 
}
/***************/
/* GALERIA FOTO*/
/***************/

.gallery {
  margin: 5px;
  
  float: left;
  width: 180px;
}

.gallery:hover img{
  border: 1px solid #777;
}

.gallery img {
  width: 100%;
  height: auto;
}
.desc img{
  border-radius: 20px;
  border: 2px solid #383838;
}
.desc {
  padding: 15px;
  text-align: center;
  color: #000;
  font-weight: bold;
  
}
.desc:hover{
	opacity: .8;
}
.modalDialog_galerie {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
	z-index: 99999;
	opacity:0;
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	pointer-events: none;
    overflow-y: auto;
}
.modalDialog_galerie > div {
	width: 80%;
	height: auto;
	position: relative;
	margin: 10% auto;
	margin-top: 100px;
	margin-bottom: 200px;
	padding: 5px 20px 13px 20px;
	border-radius: 10px;
	background-color: #fff;
	font-weight: bold;
	font-size: 18px;
}
.modalDialog_galerie:target {
	opacity:1;
	pointer-events: auto;
}
.modalDialog_galerie2:target {
	opacity:1;
	pointer-events: auto;
}
/**********/
/* ECHIPA */
/**********/
.modalDialog1 {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
	z-index: 99999;
	opacity:0;
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	pointer-events: none;
    overflow-y: auto;
}
.modalDialog1 > div {
	width: 80%;
	height: auto;
	position: relative;
	margin: 10% auto;
	margin-top: 100px;
	margin-bottom: 200px;
	padding: 5px 20px 13px 20px;
	border-radius: 10px;
	background-color: #fff;

	font-weight: bold;
	font-size: 18px;
}
.modalDialog1:target {
	opacity:1;
	pointer-events: auto;
}
.modalDialog2:target {
	opacity:1;
	pointer-events: auto;
}
.modalDialog3:target {
	opacity:1;
	pointer-events: auto;
}
.modalDialog4:target {
	opacity:1;
	pointer-events: auto;
}
.modalDialog5:target {
	opacity:1;
	pointer-events: auto;
}
.modalDialog6:target {
	opacity:1;
	pointer-events: auto;
}
.modalDialog7:target {
	opacity:1;
	pointer-events: auto;
}
.modalDialog8:target {
	opacity:1;
	pointer-events: auto;
}
.modalDialog9:target {
	opacity:1;
	pointer-events: auto;
}
.modalDialog10:target {
	opacity:1;
	pointer-events: auto;
}
.modalDialog11:target {
	opacity:1;
	pointer-events: auto;
}
.modalDialog12:target {
	opacity:1;
	pointer-events: auto;
}
.modalDialog13:target {
	opacity:1;
	pointer-events: auto;
}
.modalDialog14:target {
	opacity:1;
	pointer-events: auto;
}
/***********/
/* TELEFON */
/***********/
@media screen and (max-width: 1080px){
.mij{
	width: 91.33%;
	border: 2px solid;
	border-color: #000;
	height: 500px;
	display: flex;
	border-radius: 10px;
	padding-top: 50px;
	padding-bottom: 80px;
}
.col-mij{
	width: 33.33%;
	height: 500px;
	text-align: center;

}
.col-mij-border{
	width: 33.33%;
	height: 500px;
	text-align: center;
	border-right: 2px solid black;
	border-left: 2px solid black;  
}
.btn1{
	background: #989898;
	text-decoration: none;
  	border-radius: 10px;
  	text-decoration: none; 
  	color: #383838; 
  	width: 150px; 
  	margin-left: 25%; 
  	font-weight: bold; 
  	font-size: 20px;
}
.img-stema{
	 width: 30%; 
	 height: 20%;
}
.img-fra{
	width: 48%; height: 20%;
}
.img-mis{
	width: 90%; height: 15%;
}
.img-ftc{
	width: 90%; 
	height: 10%;
}
.col-mij-link-desktop{
	width: 33.33%;
	height: 400px;
	text-align: center;
	display: none;
}
.col-mij-link-mobile{
	width: 33.33%;
	height: 400px;
	text-align: center;
	display: block;
}
}