html {
    font-family: 'Times New Roman', Times, serif;
    background-color: white;
}
* {
    margin: 0;  
}

/*------------------------------ Bara de navigatie ------------------------------*/

#navigation {
     overflow: hidden;
     background-color: rgb(145, 11, 11);
     position: fixed;
     top:0;
     left: 0;
     width:100%;
}
#navigation a{
    float :left;
    display:block;
    color :#f2f2f2;
    text-align: center;
    padding:8px 16px;
    text-decoration: none;
    text-shadow: 0.5px 0.5px 0 white  ;
    font-weight: bold;
}

#navigation a:hover{
    background: rgb(187, 22, 22);
    color: white;
}

#navigation ul{
    display: inline-block;
    height:30px;
    width:100%;
    list-style: none;
}
#navigation li{
    float: left;
    font-size: 20px;
    text-align: center;
}


/*-----------pentru fundalul mare de la inceput--------*/
.imgbox
{
    display:grid;
    height: 100%;
}
.center-fit
{
    max-width: 100%;
    max-height: 100%;
    margin: auto;
}




/*-----------------main-----------------*/
#main {
    float: right;
    position: static;
    width: 100%;
    height: 100%;
	
}

.columnL {
    float: left;
    width: 45%;
    padding: 20px;
  }
.columnR
{
    float: right;
    width: 45%;
    padding: 20px;
}

.columnC
{
    float: center;
    width: 90%;
    padding: 50px;
}
  
  .row::after {
    content: "";
    clear: both;
    display: table;
    padding: 85px;
  }


p {
    font-family: calibri;
    font-size: 25px;
    font-weight: bold;
    font-style: italic;
    
    
}


/*-------------------------------------------slidesow------------------------------------*/

.slideshow-container {
    max-width: 700px;
    position: relative;
    margin: auto;
  }
  
  /* ascunde imaginile */
  .mySlides {
    display: none;
  }
  
  /*stanga ,dreapta*/
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  
  /* buton urm*/
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* mouse hover */
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  }
  
  /* text*/
  .text {
    color: black;
    font-size: 15px;
    padding: 8px 12px;
    font-weight: bold;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
  }
  
  /* numerotare */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* punctele */
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active, .dot:hover {
    background-color: #717171;
  }
  
  /* Fading */
  .fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @-webkit-keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }
  
  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }


