/* - Webpage Colors Palette -
 * ==============================
 * --black: #393E41;
 * --gray: #C9C9C9
 * --sea-green: #008C45;
 * --alice-blue: #F4F9FF;
 * --fire-engine-red: #CD212A.;
 * --anti-flash-white: #F6F6F8;
 * ============================== */
* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family:Oswald; src: url(font/Oswald.ttf);
    font-family:Raleway; src: url(font/Raleway.ttf);
    font-family:SnellRoundhand; src: url(font/SnellRoundhand.ttf);
    font-family:Ubuntu; src: url(font/Ubuntu.ttf);
    font-family:Ubuntu-L; src: url(font/Ubuntu-L.ttf);
}

div#cookie {
	width: 96%;
    background-color: black;
    color: white;
	padding: 1% 2%;
	font-size: 10pt;
    text-align: justify;
	position: fixed;
    bottom: 0;
    left: 0;
	z-index: 20;
    display: block;
}

h1 {
    width: 90%;
    padding: 1%;
    margin: 0 auto;
    text-align: center;
    font-size: 3em;
    font-family: Raleway;
    color: black;
    display: block;
    position: relative;
}

h2 {
    width: 98%;
    padding: 1% 1% 0 1%;
    text-align: center;
    text-shadow: 1px 1px #E7E5DF; 
    color: black;
    font-size: 2.5em;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
}

h3 {
    width: auto;
    margin: 0 auto;
    padding: 1%;
    color: #393E41;
    font-size: 3em;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    text-shadow: 1px 1px #F6F6F8;
}

h4{
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    font-size: 1em;
    font-style: italic;
    color: #393E41;
    display: block;
    text-align: center;
}

h5 {
    padding: 1%;
    color: #393E41;
    font-size: 1.4em;
    font-family: 'Ubuntu',sans-serif;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h6 {
    padding: 0 1% 1% 1%;
    color: #393E41;
    font-size: 1.2em;
    font-family: 'Ubuntu',sans-serif;
    text-align: left;
}

body {
    width: 100%;
    background-color: #F6F6F8;
}

header {
    width: 100%;
    height: 450px;
}

/* SLIDER CODE */
.slider-container {
    width: 100%;
    height: 450px;
    text-align: center;
    overflow: hidden;
}

.image-container {
    width: 100%;
    height: 300px;
    display: flex;
    position: relative;
    animation-name: slider;
    animation-duration: 30s;
    animation-delay: 3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: backwards;
    animation-play-state: running;
}

.image-container:hover {
    animation-play-state: paused;
}

.slider-image {
    width: 100%;
    flex-shrink: 0;
}

.slider-image img {
    width: 100%;
    object-fit: fill;
 /*border-left: 1px solid white; border-right: 1px solid white;*/
}

@keyframes slider {
    0% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(-100%, 0);
    }

    66% {
        transform: translate(-200%, 0);
    }

    100% {
        transform: translate(-300%, 0);
    }
}
/* END SLIDER CODE */

/* LOGO CODE */
.logo {
    width: 100%;
    margin: 0 auto;
    margin-top: -300px;
    text-align: center;
    display: block;
    position: absolute;
}

.logo img {
    width: 25%;
    text-align: center;
    margin: 0 auto;
}
/* END LOGO CODE */

/* BUTTON LOGO */
button {
    width: 250px;
    margin: auto;
    display: block;
    justify-content: center;
    padding: 0.5em 3em;
    background-color: #CD212A;
    text-align: center;
    color: black;
    font-size: 1em;
    font-weight: 200;
    border: 1px solid #008C45;
    border-radius: 2em;
    cursor: pointer;
}

button:hover {
    color: #F6F6F8;
    background-color: #008C45;
    border: 1px solid #CD212A;
}

button#buton {
    background-color: rgba(0,0,0,0);
    border: 1px solid #CD212A;
}

button#buton:hover {
    background-color: #CD212A;
    border: 1px solid #008C45;
}
/* END BUTTON CODE */

main {
    width: 98%;
    padding: 1%;
    margin: 0 auto;
}

p{
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.2em;
    text-align: justify;
    line-height: 25px;
    color: #393E41;
    letter-spacing: 0.5px;
}
.ind{
    text-indent: 3ch;
}

.mic{
font-size:1em;
}
.subtire{
    background-color: #F6F6F8;
    padding:1%;
    font-family: 'Ubuntu-L', sans-serif;
    font-weight:lighter;
}

span {
    color: black;
    font-weight: bold;
}

a {
    text-decoration: none;
    cursor: pointer;
}

/* Meniul Principal */
div#meniu {
    width: 100%;
    height: 80px;
    background-color: rgba(0,0,0,0);
    align-items: center;
    text-align: center;
    display: block;
    position: fixed;
    top: 0;
/* transition: top 0.3s; /* Transition effect when sliding down (and up) */
    -webkit-transition: top 0.3s;
    -moz-transition: top 0.3s;
    -o-transition: top 0.3s;
    z-index: 2;
}

div#meniu nav {
    width: 100%;
    display: inline-block;
    text-align: center;
}

div#meniu nav ul li {
    list-style: none;
    width: 19%;
    margin: 0.5%;
    line-height: 80px;
    float: left;
    text-align: center;
}

div#meniu nav ul li a {
    text-decoration: none;
    position: relative;
    font-size: 2em;
    font-weight: bolder;
    font-family: Oswald;
    color: #F6F6F8;
    background-color: rgba(201,201,201,0.5);
    border: none;
    display: block;
    outline: 1px solid #CD212A;
}

div#meniu a:hover {
    color: black;
    background-color: #F6F6F8;
    outline:1px solid black;
}

.submeniu {
    display: none;
    position: absolute;
    background-color: #C9C9C9;
    width: 23%;
    margin: 0 1%;
    margin-top: -10px;
    z-index: 1;
}

.submeniu a {
    width: 100%;
    max-height: 60px;
    line-height: 60px;
    padding-top: 0;
    font-size: 2em;
    font-weight: bolder;
    font-family: Oswald;
    color: black;
    border: 1px solid #BC4C1A;
    border-collapse: collapse;
    display: block;
}

.submeniu a:hover {
    color: #393E41;
    background-color: #F6F6F8;
}

.album:hover .submeniu {
    display: block;
}

.chenar {
    display: inline-block;
    outline: none;
    position: relative;
    display: none;
}

.chenar:before, .chenar:after {
    border-color: transparent;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    border-style: solid;
    border-width: 0;
    content: "";
    height: 24px;
    position: absolute;
    width: 24px;
}

.chenar:before {
    border-color: #008C45;
    border-left-width: 2px;
    border-top-width: 2px;
    left: -5px;
    top: -5px;
}

.chenar:after {
    border-bottom-width: 2px;
    border-color: #008C45;
    border-right-width: 2px;
    bottom: -5px;
    right: -5px;
}

.chenar:hover:before, .chenar.hover:before, .chenar:hover:after, .chenar.hover:after {
    height: 100%;
    width: 100%;
}
/* END Meniu Principal */


/* MENIU TELEFON */
button#meniu_tel{
    width: 100px;
    color: black;
    background-color: #CD212A;
    padding: 1%;
    font-size: larger;
    line-height: 50px;
    border: 1px solid black;
    display: none;
    position: fixed;
    border-radius: 10px;
    top: 25px;
    right: 25px;
    z-index: 10;
}
div#menu1 {
    width: 245px;
    position: fixed;
    top: 100px;
    right: 5px;
    z-index: 10;
    display: none;
}
#menu1 nav{
  width: 100%;
}
#menu1 nav ul{
  position: relative;
}

#menu1 nav li{
    width: 100%;
    list-style: none;
    float: left;
    line-height: 50px;
    position: relative;
    text-decoration: none;
    transition-duration: 1s;
}

#menu1 nav li a{
	width: 100%;
	display: block;
	text-align: center;
    color: #F6F6F8;
    background-color: #C9C9C9;
    font-size: 1.5em;
    font-weight: bolder;
    font-family: Oswald;
    border: 1px solid #008C45;
    border-collapse: collapse;
}

#menu1 nav li a:hover{
    color: black;
	background-color: #F6F6F8;
}
ul li ul {
  visibility: hidden;
  opacity: 0;
  width: 100%;
  position: absolute;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  -o-transition: .3s ease;
  transition: all 1s ease;
  left: 0;
  display: none;
}

#menu1 nav ul li ul li a{
    width: 85%;
    margin-left: 5%;
    padding-left: 10%;
    line-height: 40px;
    text-align: left;
}

ul li:hover > ul,
ul li:focus-within > ul,
ul li ul:hover,
ul li ul:focus {
   visibility: visible;
   opacity: 1;
   display: block;
}

#menu1 nav ul li a .plus{
  position:absolute;
  font-weight:bolder;
  line-height: 50px;
  -webkit-user-select: none;    
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  -user-select: none;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  -o-transition: .3s ease;
  transition: transform .3s ease;  
}

#menu1 nav ul li a:hover .plus{
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

ul li ul li {
  clear: both;
  width: 100%;
}
/* MENIU TELEFON PANA AICI */

/* Lista 
ol li{
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.2em;
    text-align: left;
    line-height: 1.4em;
    color: black;
    font-weight: bold;
    text-transform: uppercase;
    margin: 1em;
    margin-right: 0;
}*/

ol li{
    font-family: 'Ubuntu', sans-serif;
    font-size: 1em;
    text-align: left;
    color: black;
    margin: 1em;
    margin-right: 0;
}
/* PANA AICI */

/* CLASE */
.center {
    width: 90%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.centru {
    width: 94%;
    padding: 1% 3%;
    display: block;
    margin: 0 auto;
    min-height: 100px;
    overflow: auto;
    position: relative;
}

.centru ul li {
    color: #393E41;
    list-style: none;
    font-size: 1.4em;
    font-style: italic;
    text-align: justify;
    line-height: 1.3em;
}

.centru ul li:before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    margin: 1% 1% 0 0;
    background-image: url('img/cui.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.unu {
    width: 60%;
    padding: 2% 20%;
    display: block;
    margin: 0 auto;
    min-height: 100px;
    overflow: auto;
    text-align: justify;
    position: relative;
}

.doi {
    width: 48%;
    padding: 1%;
    float: left;
    display: inline-block;
    margin: 0 auto;
    min-height: 100px;
    overflow: auto;
    text-align: justify;
    position: relative;
}

.trei {
    width: 25.33%;
    padding: 1% 2%;
    margin: 2%;
    margin-top: 0;
    float: left;
    overflow: hidden;
    text-align: center;
    outline: 2px solid #B9C2C9;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.4), 0 7px 20px 0 rgba(0, 0, 0, 0.2);
}

.trei:hover {
    outline: 1px solid black;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.6), 0 7px 20px 0 rgba(0, 0, 0, 0.4);
}

/* LINIE DIVIDE CODE */
.divider {
    width: 90%;
    padding: 0 5%;
    display: flex;
    align-items: center;
}

.divider::before, .divider::after {
    flex: 1;
    content: '';
    padding: 1px;
    background-color: #008C45;
    margin: 0 auto;
}
/* END CODE */

img#erika{
    width: 60%;
    display:flex;
    position:absolute;
    left:50%;
    transform: translateX(-50%) translateY(-50%);
    z-index:1;
    margin-top: 50px;
}

img#city2{
    width: 50%;
    display:flex;
    position:absolute;
    left:50%;
    transform: translateX(-50%) translateY(-50%);
    z-index:1;
    margin-top: 50px;
}


/* Background Descriere */
.backgroundim1 {
    width: 100%;
    height: 300px;
    position: relative;
    padding-top: 200px;
    background: linear-gradient(rgba(255,255,255,.3), rgba(255,255,255,.3)), url("img/background1.jpg");
    background-attachment: fixed;
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}
.backgroundim2 {
    width: 100%;
    height: 550px;  
    position: relative;
    background: linear-gradient(rgba(255,255,255,.3), rgba(255,255,255,.3)), url('img/background2.jpg');
    background-attachment: fixed;
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.caption {
    position: absolute;
    left: 0;
    top: 6%;
    width: 90%;
    margin: 0 5%;
    background-color: transparent;
    text-align: justify;
    display: block;
    overflow: auto;
}
.rand {
    width: 90%;
    padding: 0 5%;
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
}
.coloana {
    width: 42%;
    margin: 0 2%;
    padding: 2%;
    -ms-flex: 42%; /* IE10 */
    flex: 42%;
    max-width: 42%;
    background-color: #F6F6F8;
    position: relative;
}

.coloana div {
  vertical-align: middle;
  width: 100%;
}
.mijloc{
  max-width: 90%;
  padding: 5%;
  display: block;
}


.par_backgr{
    width: 80%;
    padding: 5%;
    background-color: #F6F6F8;    
}
/* LINIE VERTICALA CODE */
.liniev{
    width: 45%;
    padding: 2%;
    border-right: 1px solid red;
    background-color: #F6F6F8;
}
/* End Background */
/* Primul dupa Background */
/* END Primul dupa Background */
/* Comentarii si citate */
.opinii{
width: 90%;
min-height: 500px;
padding: 0 5%;
margin: 0 auto;
text-align: justify;
display: inline-flex;
position: relative;
justify-content: center;
z-index: -1;
overflow:inherit;
}

div#citat{
 width: 30px;
 height: 30px;
 position: absolute;
 top: 10px;
 left: 50%;
 margin-left: -30px;
 color: green;
 border: 1px solid green;
 padding: 15px;
 border-radius: 50%;
 text-align: center;
 font-size: 3em;
 font-weight: bolder;
 display: block;
}
.recenzii{
 width: 90%;
 padding: 0 5%;
 font-size: 1.2em;
 font-weight: 500;
 color: black;
 line-height: 1.3em;
 text-align: center;
 display: none;
 position: absolute;
 overflow: hidden;
 top: -150px;
 justify-content: center;
 transition: top 2s linear; /* Transition effect when down from top */
 -webkit-transition: top 2s linear;
 -moz-transition: top 2s linear;
 -o-transition: top 2s linear;
}
.recenzii img{
    width: 140px;
    text-align: center;
    border-radius: 50%;
    border: 3px solid #393E41;
    margin: 0 auto;
}

/* MODAL imagini */
main div#modal{
visibility: hidden;
width: 96%;
height: 96%;
position: fixed;
top: 1%;
left: 1%;
padding: 0 1% 1% 0;
background-color: rgba(0, 0, 0, 0.8);
z-index: 3;
}

main p#fotografie{
max-width: 90%;
min-height: 90%;
margin: auto;
margin-top: 2%;
background-position: center;
background-repeat: no-repeat;
background-size:contain;
}

/* Close Buton */
.close {
cursor: pointer;
position: absolute;
top: 0;
left: 0;
padding: 15px;
background-color: #008C45;
color: white;
font-weight:bolder;
font-size: 22px;
border-radius: 3px;
}

/* Previous */
.prev {
cursor: pointer;
position: absolute;
top: 50%;
left: 1%;
width: auto;
margin-top: -22px;
padding: 20px 15px;
background-color: #008C45;
color: white;
font-weight: bold;
font-size: 15px;
border-radius: 3px;
}

/* Next */
.next {
cursor: pointer;
position: absolute;
top: 50%;
right: 1%;
width: auto;
margin-top: -22px;
padding: 20px 15px;
background-color: #008C45;
color: white;
font-weight: bold;
font-size: 15px;
border-radius: 0 3px 3px 0;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover, .close:hover {
  color: red;
}




main div#modal img{
width: 90%;
margin: auto;
max-height: 95%;
}


/* Tabel de imagini */
.tabel{
width:100%;
display:table;
}

.rand1{ 
display:table-row;
width:100%;
}

.celula1 img{
width:98%;
padding:1%;
max-height: 600px;
display:table-cell;
vertical-align:middle;
text-align:center;
object-fit: contain;
}

/* COD SLIDES FOTO */
/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.celula3{
width:32.33%;
padding:1% 0.5%;
max-height: 160px;
display:table-cell;
vertical-align:middle;
text-align:center;
border-bottom: 1px solid red;
}

.celula4{
width:19%;
padding:0.5%;
max-height: 160px;
display:table-cell;
vertical-align:middle;
text-align:center;
}
.celula4:hover{
box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.6), 0 7px 20px 0 rgba(0, 0, 0, 0.4);
}




/* centreaza imaginile din table */
/* Object fitt to arrange the image
.fill {object-fit: fill;}
.contain {object-fit: contain;}
.cover {object-fit: cover;}
.scale-down {object-fit: scale-down;}
.none {object-fit: none;}
*/
.imagini {
width: 300px;
height: 160px;
display: block;
margin-left: auto;
margin-right: auto;
width: 30%;
object-fit:cover;
transition: transform .3s ease;
}
.imagini:hover{
cursor: pointer;
outline: 1px solid black;
transform: scale(1.05);
}
/* end here */


.alb{
    color: #F6F6F8;  
}

.alb:hover {
    color: #393E41;
}

.negru{
    color: #393E41;  
}

.negru:hover {
    color: #F6F6F8;
}

/* Formular de contact */
div#mess {
    width: 60%;
    padding: 2% 20%;
}

form {
    width: 100%;
    overflow: auto;
}

div#mess label {
    width: 68%;
    padding: 1%;
    margin: 0 15%;
    font-size: 1.5em;
    color: #50220B;
}

div#mess input {
    width: 56%;
    padding: 1%;
    margin: 0 20% 1% 20%;
    line-height: 1.3em;
    font-size: 1.5em;
    color: #50220B;
}

div#mess textarea {
    width: 56%;
    padding: 1%;
    margin: 0 20% 1% 20%;
    line-height: 1.3em;
    font-size: 1.5em;
    color: #50220B;
}
button#trimite{
    max-width: 200px;
}
/* END FORMULAR */

iframe {
    border: 2px solid #D3D0CB;
}

#sal{
width: 250px;
margin: 0 auto;
border: 2px solid black;
border-radius: 20px;
position: relative;
left: 50%;
transform:translateX(-125px);
}

footer {
    width: 98%;
    padding: 1%;
    position: relative;
    background-color: #C9C9C9;
    overflow: auto;
}

.centrat{
    display: flex;
    justify-content: center;
    align-items: center;
}

.social {
    width: 40%;
    height: auto;
    padding: 2%;
    margin: 0 auto;
    float: left;
    display: block;
    text-align: center;
    vertical-align: middle;
    position: relative;
}

footer .social img {
    width: 50px;
    padding: 5px;
    margin-left: 1%;
    border: 2px solid #393E41;
    border-radius: 5px;
    opacity: 0.4;
    text-align: center;
    vertical-align: middle;
}

footer img:hover {
    background-color: #F6F6F8;
    opacity: 1;
}

.politici {
    width: 28%;
    padding: 0;
    float: left;
    padding-bottom: 1%;
    display: block;
    position: relative;
}

div#furnizori{
	width: 98%;
    padding-left: 1%;
    min-height: 5em;
    margin: 0 auto;
    margin-top: -0.7em;
	overflow: auto;
    display: block;
    background-color: white;
    border: solid 1px black;
    text-align: center;
}

#furnizori li{
	list-style: none;
	text-align: center;
	min-height: 5em;
	width: 10%;
	float: left;
    display: block;
    position: relative;
    overflow: hidden;
}
#furnizori a{
	display: block;
    opacity: 0.3;
    overflow: hidden;
}

#furnizori a:hover{
    opacity: 1;
}

#furnizori img{
	width: 80%;
    height: auto;
    overflow: hidden;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translateX(-50%) translateY(-50%);
}
#furnizori img:hover{
    width: 98%;
    height: auto;
    overflow: hidden;
}

div#logit {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    margin-top: 10px;
    position: relative;
}

div#logit p {
    text-align: center;
    line-height: 20px;
    font-size: 1em;
}

div#logit p:hover {
    color: #F6F6F8;
}


/*========================================================*/
/* ------------------ MEDIA QUERIES --------------------- */
/* ----      pentru desktop rezolutie max 1765px      ----*/
/*========================================================*/


@media all and (max-width: 1765px) and (min-width: 1551px) {
 
header div#menu1{
display: none;
} 
    
}

/* ----      pentru desktop rezolutie max 1549px      ----*/
@media all and (max-width: 1550px) and (min-width: 1161px) {
 
 
div#menu1{
display: none;
}

}

/* ----      pentru desktop rezolutie max 1549px      ----*/
@media all and (max-width: 1160px) and (min-width: 1025px) {

body{
width: 100%;
padding: 0;
font-size: 15px;
}
div#menu1{
display: none;
}
p{
font-size: 1.1em;
}
.trei{
width: 27.33%;
padding: 1%;
}
.social{
width: 42%;
padding: 1%;
margin-top: 20px;
}
footer .social img {
padding: 3px;    
}
div#logit p {
line-height: 15px;
}

}

/* ----      pentru tablete rezolutie max 1024px      ----*/
@media all and (max-width: 1024px) and (min-width: 981px){
    
body{
width: 100%;
padding: 0;
font-size: 15px;
}
header{
height: 400px;
}
.slider-container {
height: 400px;
}
.logo {
margin-top: -250px;
}
h2{
font-size: 2.2em;
}
h3{
font-size: 2.4em;
}
h5{
font-size: 1.2em;
}
h6{
font-size: 1.2em;
}
div#menu1{
display: none;
} 
div#meniu{
height: 70px;
}
div#meniu nav ul li {
width: 20%;
margin: 0;
line-height: 70px;
}
div#meniu nav ul li a {
background-color: #C9C9C9;
border-collapse: collapse;
}
.submeniu {
margin-top: -5px;
}
.submeniu a {
max-height: 50px;
line-height: 50px;
}
.chenar:before, .chenar:after {
width: 0;
height: 0;
border-collapse: collapse;
border: none;
}
.chenar:hover:before, .chenar.hover:before, .chenar:hover:after, .chenar.hover:after {
width: 0;
height: 0;
}
p{
font-size: 1.1em;
}
.trei{
width: 27.33%;
padding: 1%;
}
div#mess label {
font-size: 1.5em;
width: 78%;
margin: 0 10%;
}
div#mess input {
width: 76%;
margin: 0 10% 1% 10%;
line-height: 1.1em;
font-size: 1.3em;
}
div#mess textarea {
width: 76%;
margin: 0 10% 1% 10%;
line-height: 1.1em;
font-size: 1.3em;
}
.social{
width: 42%;
padding: 1%;
margin-top: 20px;
}
footer .social img {
padding: 3px;    
}
div#logit p {
line-height: 15px;
}
}


/* ----      pentru tablete rezolutie max 980px      ----*/
@media all and (max-width: 980px) and (min-width: 891px) {
    
body{
font-size: 14px;
}
header{
height: 350px;
}
.slider-container {
height: 350px;
}
.logo {
margin-top: -220px;
}
h2{
font-size: 2.1em;
}
h3{
font-size: 2.2em;
}
h5{
font-size: 1.2em;
}
h6{
font-size: 1.2em;
}
div#menu1{
display: none;
} 
div#meniu{
height: 70px;
}
div#meniu nav ul li {
width: 20%;
margin: 0;
line-height: 70px;
}
div#meniu nav ul li a {
font-size: 1.5em;
background-color: #C9C9C9;
border-collapse: collapse;
}
.submeniu {
margin-top: -5px;
}
.submeniu a {
max-height: 50px;
line-height: 50px;
}
.chenar:before, .chenar:after {
width: 0;
height: 0;
border-collapse: collapse;
border: none;
}
.chenar:hover:before, .chenar.hover:before, .chenar:hover:after, .chenar.hover:after {
width: 0;
height: 0;
}
p{
font-size: 1.1em;
}
.trei{
width: 27.33%;
padding: 1%;
}
img#erika{
width: 70%;
}
div#mess label {
font-size: 1.5em;
width: 78%;
margin: 0 10%;
}
div#mess input {
width: 76%;
margin: 0 10% 1% 10%;
line-height: 1.1em;
font-size: 1.3em;
}
div#mess textarea {
width: 76%;
margin: 0 10% 1% 10%;
line-height: 1.1em;
font-size: 1.3em;
}
.social{
width: 42%;
padding: 1%;
margin-top: 20px;
}
footer .social img {
width: 45px;
padding: 2px;    
}
div#logit p {
line-height: 15px;
}
#furnizori li{
width: 20%;
}      
#furnizori img{
width: 50%;
}
#furnizori img:hover{
width: 60%;
}    
}


/* ----      pentru tablete rezolutie max 890px      ----*/
@media all and (max-width: 890px) and (min-width: 751px) {
    
body{
font-size: 14px;
}
header{
height: 350px;
}
.slider-container {
height: 350px;
}
.logo {
margin-top: -220px;
}
h1{
font-size: 2.5em;
}
h2{
font-size: 2em;
}
h3{
font-size: 2.1em;
}
h5{
font-size: 1.1em;
}
h6{
font-size: 1.1em;
}
div#menu1{
display: none;
} 
div#meniu{
height: 70px;
}
div#meniu nav ul li {
width: 20%;
margin: 0;
line-height: 70px;
}
div#meniu nav ul li a {
font-size: 1.5em;
background-color: #C9C9C9;
border-collapse: collapse;
}
.submeniu {
margin-top: -5px;
}
.submeniu a {
max-height: 50px;
line-height: 50px;
}
.chenar:before, .chenar:after {
width: 0;
height: 0;
border-collapse: collapse;
border: none;
}
.chenar:hover:before, .chenar.hover:before, .chenar:hover:after, .chenar.hover:after {
width: 0;
height: 0;
}
p{
font-size: 1em;
}
.unu {
width: 84%;
padding: 1% 8%;
}
.doi {
width: 50%;
padding: 0;
margin-top: 1%;
}
.trei{
width: 30.33%;
padding: 0.5%;
margin: 1%;
}
.trei h6{
font-size: 0.9em;
}
.trei img{
width: 60%;
}
.centru{
width: 98%;
padding: 1%;
margin-top: 1%;
min-height: 70px;
}
.mijloc{
width: 98%;
padding: 1%;
}
.rand{
width: 98%;
padding: 1%;
}
.coloana {
width: 46%;
margin: 0 1%;
padding: 1%;
-ms-flex: 46%; /* IE10 */
flex: 46%;
max-width: 46%;
}
.backgroundim1 {
height: 315px;
}
.backgroundim2 {
height: 560px;
}
img#erika{
width: 70%;
}
div#mess label {
font-size: 1.5em;
width: 88%;
margin: 0 5%;
}
div#mess input {
width: 86%;
margin: 0 5% 1% 5%;
line-height: 1.1em;
font-size: 1.3em;
}
div#mess textarea {
width: 86%;
margin: 0 5% 1% 5%;
line-height: 1.1em;
font-size: 1.3em;
}
.social{
width: 43%;
padding: 0.5%;
margin-top: 20px;
}
footer .social img {
width: 40px;
padding: 2px;    
}
div#logit p {
line-height: 12px;
}
#furnizori li{
width: 20%;
}      
#furnizori img{
width: 50%;
}
#furnizori img:hover{
width: 60%;
}    
}


/* ----      pentru tablete rezolutie max 750px      ----*/
@media all and (max-width: 750px) and (min-width: 601px) {
    
body{
font-size: 14px;
}
header{
height: 280px;
}
.slider-container {
height: 280px;
}
.logo {
margin-top: -180px;
}
h1{
font-size: 2.2em;
}
h2{
font-size: 1.7em;
}
h3{
font-size: 1.9em;
}
h5{
font-size: 1em;
}
h6{
font-size: 1em;
}
div#menu1{
display: none;
} 
div#meniu{
height: 50px;
}
div#meniu nav ul li {
width: 20%;
margin: 0;
line-height: 50px;
}
div#meniu nav ul li a {
font-size: 1.5em;
background-color: #C9C9C9;
border-collapse: collapse;
}
.submeniu {
margin-top: -2px;
}
.submeniu a {
max-height: 40px;
line-height: 40px;
}
.chenar:before, .chenar:after {
width: 0;
height: 0;
border-collapse: collapse;
border: none;
}
.chenar:hover:before, .chenar.hover:before, .chenar:hover:after, .chenar.hover:after {
width: 0;
height: 0;
}
p{
font-size: 1em;
}
.unu {
width: 86%;
padding: 1% 7%;
}
.doi {
width: 50%;
padding: 0;
margin-top: 1%;
}
.trei{
width: 30.33%;
padding: 0.5%;
margin: 1%;
}
.trei h6{
font-size: 0.9em;
}
.trei a{
font-size: 0.8em;
line-height: 0.8em;
}
.trei p{
font-size: 0.9em;
line-height: 0.9em;
}
.trei img{
width: 60%;
}
.centru{
width: 99%;
padding: 0.5%;
margin-top: 0.5%;
min-height: 70px;
}
.mijloc{
width: 98%;
padding: 1%;
}
.rand{
width: 98%;
padding: 1%;
}
.coloana {
width: 46%;
margin: 0 1%;
padding: 1%;
-ms-flex: 46%; /* IE10 */
flex: 46%;
max-width: 46%;
}
.backgroundim1 {
height: 315px;
}
.backgroundim2 {
height: 650px;
}
img#erika{
width: 75%;
}
div#mess label {
font-size: 1.4em;
width: 90%;
margin: 0 4%;
}
div#mess input {
width: 88%;
margin: 0 4% 1% 4%;
line-height: 1em;
font-size: 1.1em;
}
div#mess textarea {
width: 88%;
margin: 0 4% 1% 4%;
line-height: 1em;
font-size: 1.1em;
}
.social{
width: 54%;
padding: 1%;
margin: 0 auto;
margin-top: 20px;
}
.politici{
width: 40%;
padding: 1%;
margin: 0 auto;
margin-left: 2%;
}
footer .social img {
width: 40px;
padding: 2px;    
}
footer .politici#adresa {
display: none;  
}
div#furnizori{
margin-top: -0.2em;
}
div#logit p {
line-height: 5px;
}
}

/* ----      pentru tablete rezolutie max 600px      ----*/
@media all and (max-width: 600px) and (min-width: 491px) {
    
body{
font-size: 14px;
}
header{
height: 220px;
}
.slider-container {
height: 220px;
}
.logo {
margin-top: -150px;
}
h1{
font-size: 2em;
}
h2{
font-size: 1.5em;
}
h3{
font-size: 1.8em;
}
h5{
font-size: 1em;
}
h6{
font-size: 1em;
}
div#menu1{
display: none;
} 
div#meniu{
height: 45px;
}
div#meniu nav ul li {
width: 20%;
margin: 0;
line-height: 45px;
}
div#meniu nav ul li a {
font-size: 1.2em;
background-color: #C9C9C9;
border-collapse: collapse;
}
.submeniu {
margin-top: -1px;
}
.submeniu a {
max-height: 35px;
line-height: 35px;
}
.chenar:before, .chenar:after {
width: 0;
height: 0;
border-collapse: collapse;
border: none;
}
.chenar:hover:before, .chenar.hover:before, .chenar:hover:after, .chenar.hover:after {
width: 0;
height: 0;
}
p{
font-size: 1em;
}
.unu {
width: 98%;
padding: 1%;
}
.doi {
width: 96%;
padding: 1%;
margin: 1%;
}
.trei{
width: 94%;
padding: 2% 1%;
margin: 2%;
max-width: 300px;
position: relative;
left: 50%;
transform: translateX(-150px);
}
.trei h6{
font-size: 1em;
}
.trei a{
font-size: 1em;
line-height: 1em;
}
.trei p{
font-size: 1em;
line-height: 1em;
}
.trei img{
width: 65%;
}
.centru{
width: 99%;
padding: 0.5%;
margin-top: 1%;
min-height: 70px;
}
.mijloc{
width: 100%;
}
.rand{
width: 98%;
padding: 1%;
}
.coloana {
width: 98%;
margin: 0.5%;
padding: 0.5%;
-ms-flex: 98%; /* IE10 */
flex: 98%;
max-width: 98%;
}
.backgroundim1 {
height: 325px;
}
.recenzii{
width: 96%;
padding: 0 2%;
}
img#erika{
width: 85%;
}
.backgroundim2 {
height: 750px;
}
.opinii{
min-height: 700px;
}
.celula3 h4{
width: 59.5%;
margin: 0 auto;
}
div#mess{
width: 90%;
padding: 1% 5%;
}
div#mess label {
font-size: 1.4em;
width: 90%;
margin: 0 4%;
}
div#mess input {
width: 88%;
margin: 0 4% 1% 4%;
line-height: 1em;
font-size: 1.1em;
}
div#mess textarea {
width: 88%;
margin: 0 4% 1% 4%;
line-height: 1em;
font-size: 1.1em;
}
.social{
width: 98%;
padding: 1%;
margin: 0 auto;
margin-top: 10px;
margin-bottom: 10px;
}
.politici{
width: 45%;
padding: 1% 0 1% 1%;
margin: 0 auto;
margin-left: 4%;
margin-bottom: 10px;
}
footer .social img {
width: 40px;
padding: 2px;    
}
div#furnizori{
margin-top: -0.2em;
}
div#logit p {
line-height: 5px;
}
}


/* ----      pentru telefoane rezolutie max 490px      ----*/
@media all and (max-width: 490px) and (min-width: 421px){

body{
width: 100%;
padding: 0;
font-size: 12px;
}
button#meniu_tel{
display: block;
}
div#meniu{
display: none;
}
div#menu1{
display: block;
}
header{
height: 220px;
}
.slider-container {
height: 220px;
}
.logo {
margin-top: -150px;
}
h1{
font-size: 2em;
}
h2{
font-size: 1.5em;
}
h3{
font-size: 1.8em;
}
h5{
font-size: 1em;
}
h6{
font-size: 1em;
}
p{
font-size: 1em;
}
.unu {
width: 98%;
padding: 1%;
}
.doi {
width: 96%;
padding: 1%;
margin: 1%;
}
.trei{
width: 94%;
padding: 2% 1%;
margin: 2%;
max-width: 240px;
position: relative;
left: 50%;
transform: translateX(-120px);
}
.trei h6{
font-size: 1em;
}
.trei a{
font-size: 1em;
line-height: 1em;
}
.trei p{
font-size: 1em;
line-height: 1em;
}
.trei img{
width: 65%;
}
.centru{
width: 99%;
padding: 0.5%;
margin-top: 1%;
min-height: 70px;
}
.mijloc{
width: 100%;
}
.rand{
width: 98%;
padding: 1%;
}
.coloana {
width: 98%;
margin: 0.5%;
padding: 0.5%;
-ms-flex: 98%; /* IE10 */
flex: 98%;
max-width: 98%;
}
.backgroundim1 {
height: 300px;
}
.recenzii{
width: 96%;
padding: 0 2%;
}
img#erika{
width: 85%;
}
.backgroundim2 {
height: 750px;
}
.opinii{
min-height: 700px;
}
.celula3 h4{
width: 59.5%;
margin: 0 auto;
}
div#mess{
width: 90%;
padding: 1% 5%;
}
div#mess label {
font-size: 1.4em;
width: 90%;
margin: 0 4%;
}
div#mess input {
width: 88%;
margin: 0 4% 1% 4%;
line-height: 1em;
font-size: 1.1em;
}
div#mess textarea {
width: 88%;
margin: 0 4% 1% 4%;
line-height: 1em;
font-size: 1.1em;
}
.social{
width: 98%;
padding: 1%;
margin: 0 auto;
margin-top: 10px;
margin-bottom: 10px;
}
.politici{
width: 45%;
padding: 1% 0 1% 1%;
margin: 0 auto;
margin-left: 4%;
margin-bottom: 10px;
}
footer .social img {
width: 30px;
padding: 2px;    
}
div#furnizori{
margin-top: -0.2em;
}
div#logit p {
line-height: 5px;
}
}

/* ----      pentru telefoane rezolutie max 420px      ----*/
@media all and (max-width: 420px) and (min-width: 301px){

body{
width: 100%;
padding: 0;
font-size: 12px;
}
button#meniu_tel{
display: block;
}
div#meniu{
display: none;
}
div#menu1{
display: block;
}
header{
height: 200px;
}
.slider-container {
height: 200px;
}
.logo {
margin-top: -140px;
}
.logo button{
display: none;
}
h1{
font-size: 1.5em;
}
h2{
font-size: 1.3em;
}
h3{
font-size: 1.5em;
}
h5{
font-size: 0.9em;
}
h6{
font-size: 0.9em;
}
p{
font-size: 0.9em;
}
.unu {
width: 98%;
padding: 1%;
}
.doi {
width: 96%;
padding: 1%;
margin: 1%;
}
.trei{
width: 94%;
padding: 2% 1%;
margin: 2%;
max-width: 240px;
position: relative;
left: 50%;
transform: translateX(-120px);
}
.trei h6{
font-size: 1em;
}
.trei a{
font-size: 1em;
line-height: 1em;
}
.trei p{
font-size: 1em;
line-height: 1em;
}
.trei img{
width: 65%;
}
.centru{
width: 99%;
padding: 0.5%;
margin-top: 1%;
min-height: 70px;
}
.mijloc{
width: 100%;
}
.rand{
width: 98%;
padding: 1%;
}
.coloana {
width: 98%;
margin: 0.5%;
padding: 0.5%;
-ms-flex: 98%; /* IE10 */
flex: 98%;
max-width: 98%;
}
.backgroundim1 {
height: 330px;
}
.recenzii{
width: 98%;
padding: 0 1%;
}
img#erika{
width: 85%;
}
.backgroundim2 {
height: 1005px;
}
.opinii{
min-height: 700px;
}
.celula3 h4{
width: 59.5%;
margin: 0 auto;
}
div#mess{
width: 90%;
padding: 1% 5%;
}
div#mess label {
font-size: 1.4em;
width: 90%;
margin: 0 4%;
}
div#mess input {
width: 88%;
margin: 0 4% 1% 4%;
line-height: 1em;
font-size: 1.1em;
}
div#mess textarea {
width: 88%;
margin: 0 4% 1% 4%;
line-height: 1em;
font-size: 1.1em;
}
.social{
width: 98%;
padding: 1%;
margin: 0 auto;
margin-top: 10px;
margin-bottom: 10px;
}
.politici{
width: 48%;
padding: 1%;
margin: 0 auto;
margin-bottom: 10px;
}
footer .social img {
width: 30px;
padding: 2px;    
}
div#furnizori{
margin-top: -0.2em;
}
div#logit p {
    font-size: 0.7em;
line-height: 5px;
}
}

/* ----      pentru telefoane rezolutie max 420px      ----*/
@media all and (max-width: 300px) and (min-width: 201px){

body{
width: 100%;
padding: 0;
font-size: 10px;
}
button#meniu_tel{
display: block;
}
div#meniu{
display: none;
}
div#menu1{
display: block;
}
header{
height: 200px;
}
.slider-container {
height: 200px;
}
.logo {
display: none;
}
.logo button{
display: none;
}
h1{
display: none;
}
h2{
font-size: 1.3em;
}
h3{
font-size: 1.5em;
}
h5{
font-size: 0.9em;
}
h6{
font-size: 0.9em;
}
p{
font-size: 0.9em;
}
.unu {
width: 98%;
padding: 1%;
}
.doi {
width: 96%;
padding: 1%;
margin: 1%;
}
.trei{
width: 94%;
padding: 2% 1%;
margin: 2%;
max-width: 240px;
position: relative;
left: 50%;
transform: translateX(-120px);
}
.trei h6{
font-size: 1em;
}
.trei a{
font-size: 1em;
line-height: 1em;
}
.trei p{
font-size: 1em;
line-height: 1em;
}
.trei img{
width: 65%;
}
.centru{
width: 99%;
padding: 0.5%;
margin-top: 1%;
min-height: 70px;
}
.mijloc{
width: 100%;
}
.rand{
width: 98%;
padding: 1%;
}
.coloana {
width: 98%;
margin: 0.5%;
padding: 0.5%;
-ms-flex: 98%; /* IE10 */
flex: 98%;
max-width: 98%;
}
.backgroundim1 {
height: 330px;
}
.recenzii{
width: 98%;
padding: 0 1%;
}
img#erika{
width: 85%;
}
.backgroundim2 {
height: 1005px;
}
.opinii{
min-height: 700px;
}
.celula3 h4{
width: 59.5%;
margin: 0 auto;
}
div#mess{
width: 90%;
padding: 1% 5%;
}
div#mess label {
font-size: 1.4em;
width: 90%;
margin: 0 4%;
}
div#mess input {
width: 88%;
margin: 0 4% 1% 4%;
line-height: 1em;
font-size: 1.1em;
}
div#mess textarea {
width: 88%;
margin: 0 4% 1% 4%;
line-height: 1em;
font-size: 1.1em;
}
.social{
width: 98%;
padding: 1%;
margin: 0 auto;
margin-top: 10px;
margin-bottom: 10px;
}
.politici{
width: 48%;
padding: 1%;
margin: 0 auto;
margin-bottom: 10px;
}
footer .social img {
width: 30px;
padding: 2px;    
}
div#furnizori{
margin-top: -0.2em;
}
div#logit p {
    font-size: 0.7em;
line-height: 5px;
}
}


/*========================================================*/
/*    pentru sistemele de operare iOS & iPhone X , XS     */
/*========================================================*/
@media only screen and (min-device-width: 375px) and (max-device-height: 812px) and (-webkit-device-pixel-ratio: 3){

body{
width: 100%;
padding: 0;
font-size: 12px;
}
button#meniu_tel{
display: block;
}
div#meniu{
display: none;
}
div#menu1{
display: block;
}
header{
height: 220px;
}
.slider-container {
height: 220px;
}
.logo {
margin-top: -150px;
}
h1{
font-size: 2em;
}
h2{
font-size: 1.5em;
}
h3{
font-size: 1.5em;
}
h5{
font-size: 1em;
}
h6{
font-size: 1em;
}
p{
font-size: 1em;
}
.unu {
width: 98%;
padding: 1%;
}
.doi {
width: 96%;
padding: 1%;
margin: 1%;
}
.trei{
width: 94%;
padding: 2% 1%;
margin: 2%;
max-width: 240px;
position: relative;
left: 50%;
transform: translateX(-120px);
}
.trei h6{
font-size: 1em;
}
.trei a{
font-size: 1em;
line-height: 1em;
}
.trei p{
font-size: 1em;
line-height: 1em;
}
.trei img{
width: 65%;
}
.centru{
width: 99%;
padding: 0.5%;
margin-top: 1%;
min-height: 70px;
}
.mijloc{
width: 100%;
}
.rand{
width: 98%;
padding: 1%;
}
.coloana {
width: 98%;
margin: 0.5%;
padding: 0.5%;
-ms-flex: 98%; /* IE10 */
flex: 98%;
max-width: 98%;
}
.backgroundim1 {
height: 300px;
}
.recenzii{
width: 96%;
padding: 0 2%;
}
img#erika{
width: 85%;
}
.backgroundim2 {
height: 750px;
}
.opinii{
height: 700px;
}
.celula3 h4{
width: 59.5%;
margin: 0 auto;
}
div#mess{
width: 90%;
padding: 1% 5%;
}
div#mess label {
font-size: 1.4em;
width: 90%;
margin: 0 4%;
}
div#mess input {
width: 88%;
margin: 0 4% 1% 4%;
line-height: 1em;
font-size: 1.1em;
}
div#mess textarea {
width: 88%;
margin: 0 4% 1% 4%;
line-height: 1em;
font-size: 1.1em;
}
.social{
width: 98%;
padding: 1%;
margin: 0 auto;
margin-top: 10px;
margin-bottom: 10px;
}
.politici{
width: 47%;
padding: 1%;
margin: 0 auto;
margin-left: 1%;
margin-bottom: 10px;
}
footer .social img {
width: 30px;
padding: 2px;    
}
div#furnizori{
margin-top: -0.2em;
}
div#logit p {
line-height: 5px;
}
}


@media (prefers-color-scheme: dark) {
 .politici {
color: black;
}
}

@media (prefers-color-scheme: light) {
 .politici {
color: black;
}
}