@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');


:root{
	--color-bg: #E2CFD3;
	--color-bg1: #8D4152;
	--color-bg2: #1f2641;
	--color-bg3: #711227;
	--color-bg4: #00000014;
  --color-primary: #6c63ff;
	--color-success: #00bf8e;
	--color-warning: #f7c94b;
	--color-danger: #f75842;
	--color-danger-variant: #fd2509;
	--color-white: #fff;
	--color-txt-p: #000;
	--color-light: #000;
  --nav-load-time: 100ms;
  --nav-link-load-time: 200ms;
  --article-load-delay: calc(var(--nav-load-time) + var(--nav-link-load-time))
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
html {
	font-size: 10px; 
	scroll-behavior: smooth;
}

a {
	text-decoration: none;
}
.container {
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
p {
	color: var(--color-txt-p);
	font-size: 2.2rem;
	margin-top: 5px;
	line-height: 2.5rem;
	font-weight: 300;
	letter-spacing: 0.05rem;
}



/* ------------------ Cookie -------------- */
.container-cookies{
  width: 1600px;
  margin: auto;
}
.subcontainer-cookies{
  width: 85%;
  margin: auto;
}

/* muta in partea de jos a paginii */
#cookies{
  width: 100%;
  position: fixed;
  bottom: 0;  /* muta in partea de jos a paginii */
  color: var(--color-white);
  background-color: var(--color-bg1);
  z-index: 100;
  display: none;  /* dispare pagina cookies */
  border-radius: 25px 25px 0 0;
}
#fondo-aviso-cookies{
	display: block;
	background: var(--color-bg4);
	position: fixed;
	z-index: 99;
}
.cookies{	
  min-height: 70px;
  display: flex;
  justify-content: space-between;  /* muta butonul in dreapta */
  align-items: center;  /*pune textul in mijloc */
  flex-wrap: wrap;
  gap: 10px;  
}
#cookies p{
	font-size: 2rem;
  color: aqua;  /*  lincul catre pagina de info este galben */
  font-weight: 500;
  text-decoration: none;  
}
#cookies a{
  color: rgb(226, 204, 35);  /*  lincul catre pagina de info este galben */
  font-weight: 500;
  text-decoration: none;  
}

#cookies-btn{
  border-radius: 5px;
  padding:  8px 12px 8px 12px;
  font-size: 2rem;
  font-family: inherit;
  cursor: pointer;
  border: 3px solid white;
  background-color: rgb(4, 145, 86);
  color: white;
  border-radius: 20px 20px 20px 0;
}

@media(max-width:1600px){
  .container-cookies{
    width: 100%;
  }
}
@media(max-width:1024px){
  .cookies{
    padding: 10px 0;
  }
}
/* ============================= Final Cookie ======================================= */

/* ---------------------------- About ------------------------------------------- */
/* ========================== End About ==================================== */


/* ---------------------------- Upload ------------------------------------------- */
/* ========================== Upload End ==================================== */

/* ------------------------- box Upload ------------------------------- */
/* ==================== box Upload End ============================================== */

/* ------------------------- box Upload ------------------------------- */
/* Modifica text h1 */
.section-title {
	font-size: 3rem;		/* modificat de la 4rem/ 3.5rem */
	font-weight: 500;
	color: var(--color-bg3);
	margin-bottom: 10px;		/* modificat de la 10px */
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	text-align: left;
	text-shadow: 2px 2px 2px #850606;
}
.info-title {
	font-size: 3rem;		/* modificat de la 4rem/ 3.5rem */
	font-weight: 500;
	color: var(--color-bg3);
	text-transform: uppercase;
	text-align: center;
}

/* Modifica imagina butonului  */
.cta {
	display: inline-block;
	padding: 10px 30px;
	color: rgb(255, 255, 255);
	background-color: transparent;
	border: 2px solid crimson;
	font-size: 2rem;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	margin-top: 30px;
	transition: 0.3s ease;
	transition-property: background-color, color;
	border-radius: 30px;
}
.cta:hover {
	color: rgb(250, 248, 248);
	background-color: crimson;
}
/* Modifica textul la titlu CAUT DE MUNCA */
.brand h1 {
	font-size: 3rem;
	text-transform: uppercase;
	color: rgb(239, 246, 240);
}
.brand h1 span {
	color: crimson;
}
/* ==================== box Upload End ============================================== */

/* --------------------------------------- Header section ---------------------------------------- */


#header .container{
	position: fixed;
	z-index: 100;
	left: 0;
	top: 0;
	width: 100vw;
	height: auto;
  background: var(--color-light);
}

#header .header {
	min-height: 8vh;
/*background-color: rgba(31, 30, 30, 0.24);*/
  background-image: rgb(8, 8, 8);
 
	transition: 0.3s ease background-color;
}
#header .nav-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	max-width: 1300px;
	padding: 0 10px;
}
#header .nav-list ul {
	list-style: none;
	position: absolute;
  z-index: -1;
	 background-color: rgb(8, 8, 8); 
  /*background-image: linear-gradient(0deg, #711227 0%, #501818 51%, #030303 97%);*/
	width: 100vw;
	height: 100vh;
	left: 100%;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1;
	overflow-x: hidden;
	transition: 0.5s ease left;
}
#header .nav-list ul.active {
	left: 0%;
}
#header .nav-list ul a {
	font-size: 2.5rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
	text-decoration: none;
	color: white;
	text-transform: uppercase;
	padding: 20px;
	display: block;
}
/* apare textul de buton in fundal */
#header .nav-list ul a::after {
	content: attr(data-after);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	color: rgba(240, 248, 255, 0.1);
	font-size: 13rem;
  text-align: center;
	letter-spacing: 50px;
	z-index: -1;
	transition: 0.3s ease letter-spacing;
}
#header .nav-list ul li:hover a::after {
	transform: translate(-50%, -50%) scale(1);
	letter-spacing: initial;
}
#header .nav-list ul li:hover a {
	color: crimson;
}
#header .hamburger {
	height: 60px;
	width: 60px;
	display: inline-block;
	border: 3px solid crimson;
	border-radius: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	cursor: pointer;
	transform: scale(0.8);
	margin-right: 20px;
}
#header .hamburger:after {
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	border-radius: 50%;
	border: 3px solid crimson;
	animation: hamburger_puls 1s ease infinite;
}
#header .hamburger .bar {
	height: 2px;
	width: 30px;
	position: relative;
	background-color: white;
	z-index: -1;
}
#header .hamburger .bar::after,
#header .hamburger .bar::before {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	background-color: rgb(255, 255, 255);
	transition: 0.3s ease;
	transition-property: top, bottom;
}
#header .hamburger .bar::after {
	top: 8px;
}
#header .hamburger .bar::before {
	bottom: 8px;
}
#header .hamburger.active .bar::before {
	bottom: 0;
}
#header .hamburger.active .bar::after {
	top: 0;
}
/* ====================== End Header section ======================================= */

 /* Hero Section -----------------------------------------------------*/
/* End Hero Section --------------------------------------------------*/

/* Services Section ------------------------------------------------------------*/
/* End Services Section ---------------------------------------------------------*/

/* Projects section ------------------------------------------------------------------*/
/* End Projects section-------------------------------------------------------------- */

/* ----------------------------- About Section  Job  ---------------------------------*/


#about {
	flex-direction: column;
	text-align: left;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 20px;
  background: var(--color-white);  
}

/* Micsoreaza icoana */
#about .about-img {
	width: 40%;
	border-radius: 35px; /* modificat de la 35px */
	box-shadow: 5px 5px 5px #535151;
	object-fit: contain;
	height: 155px; 	/* modificat de la 200px */
	overflow: hidden;
	position: relative;
}
#about .col-left {
	width: 250px;
	height: 360px;
}
#about .col-right {
	width: 100%;
}
/* modifica textul h2 */

#about .col-right h4 {
	font-size: 3rem;	/* modificat de la 2.8rem */
	font-weight: 500 bold;
	letter-spacing: 0.2rem;
	margin-bottom: 10px;
	color: brown;
	/*text-shadow: 2px 2px 2px #850606;*/
}
/* modifica textul paragraf norma era de 1.8px */

#about .col-right .cta {
	color: black;
	margin-bottom: 50px;
	padding: 10px 20px;
	font-size: 2rem;
}

 /* --------------------------  About text ---------------------------*/


#about .section-center{
  width: 90vw;
  margin: 0 auto;
  max-width: 1170px;
  min-height: 340px;
  padding: 1rem 0;
  /* box-shadow: 0 5px 10px rgba(0,0,0,0.25); */
}

/*  ---------- SINGA -------------- Imaginea din Stinga */


#about img{ 
  display: block;
  width: 100%;
  border-radius: 0.5rem;
  object-fit: cover;
  /* height: 10rem;  */
  margin-bottom: 2rem;
}

#about h3{
  text-align: center;
  font-size: 30px;
  margin: 0;
  padding: 10px;
}

/* #about a{
  text-decoration: none;
} */

#about .img-content p{
  text-align: center;
  /* color: var(--color-bg3); */
  padding-top: 0 8px;
  padding: .8rem .8rem;
  margin-bottom: 10px; 
}

#about h6{
  font-size: 20px;
  text-align: center;
  /* color: var(--color-bg1); */
  margin: 5px; 
  animation: article-load 300ms ease-in var(--article-load-delay);
  animation-fill-mode: forwards;
  transform: translateY(-20px);
  opacity: 0;
}

#about small{
  color: #711227;
  font-size: 15px;
}

#about button{
  text-align: center;
  font-size: 24px;
  color: var(--color-bg);  
  padding: 15px;
  border: 0;
  outline: none;
  cursor: pointer;
  margin-top: 5px; 
}

#about .gallery{
  /* background-image: url(https://cautdemunca.com/img/img-01.jpg); */
  display: flex;
  flex-wrap: wrap;
  /* width: 100%; */
  justify-content: center;
  margin: 50PX 0;
}

#about .img-content{
  min-width: 20vh;
  height: 450px;
  margin-bottom: 15px;
  /* box-sizing: border-box; */ /*  mai este si la * {}  */
  border-radius: .5rem;
  text-align: center;
  box-shadow: 0 5px 10px rgba(0,0,0,0.25);  
}

/*  ----------END SINGA -------------- Imaginea din Stinga */

/*  ----------DREAPTA -------------- Imaginea din Drerapta */
#about .tabs{
  background: var(--color-bg);
  border-radius: .5rem;
  grid-template-rows: auto 1fr;
  box-shadow: 0 5px 10px rgba(0,0,0,0.25);
}

#about .img-titlu{
  background-color: var(--color-white);
  /* position: sticky; */
  top: 1rem;
}


#about .button{
  padding: .8rem 0;
  border: none;
  font-size: 15px;
  background: var(--color-bg3);
  color: var(--color-white);
  cursor: pointer;
  transition: all .3s linear;  
  margin: 2px;
}
/* se pune in fuctie de nr de titluri cate un 1fr */
#about .btn-container{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

#about .button:nth-child(1){
  border-top-left-radius: .5rem;
}
/* se pune in fuctie de nr de titluri (3, 4, 5 ....) */
#about .button:nth-child(4){
  border-top-right-radius: .5rem;
}

#about .button:hover:not(.live){
  background: var(--color-bg3);
  color: var(--color-white);
}
#about .tabs-content{
  padding: 2rem 1.5rem;
}
 p {
  animation: article-load 300ms ease-in calc(var(--article-load-delay) + 200ms);
  animation-fill-mode: forwards;
  transform: translateY(-20px);
  opacity: 0;
}
/*  ---------- Share button ----------------- */

 #about .share-but {
  /* background-color: #00bf8e; */
  height: 5vh;
  display: flex;
  margin: 1px;
  padding: 0;
  justify-content: center;
  /* align-items: center; */  
 }

 /* #about .share-but ul{
  position: relative;
  margin: 0;padding: 0;display: flex;
  list-style: none;
  width: 404px;
  height: 60px;
 } */
 /* -------------------- bara de sher (hr) ------------------------------ */
 
#about .share-txt .hr-text{
  overflow: visible; /* For IE */   
  border: none;
  border-top: medium double;
  color: var(--color-bg3);
  text-align: center;
}
 
#about .share-txt .hr-text:before{
  content: "SHARE";
  display: inline-block;
  position: relative;
  top: -0.9em;
  font-size: 2em;
  padding: 0 0.25em;
  background: white;
}


/* --------------------END bara de sher (hr) ------------------------------ */
 #about .share-but  a{
  display: inline-block;
  font-size: 30px;
  width: 70px;
  height: 70px;
  line-height: 50px;
  text-align: center;
  color: var(--color-bg3);
  margin: 0 10px;
  transition: .4s linear;
  position: relative;
}

#about .share-but .fa-facebook-f{
color: #1877F2;
}
#about .share-but .fa-twitter{
color: #46C1F6;
}
#about .share-but .fa-whatsapp{
color: #25D366;
}
#about .share-but .fa-linkedin-in{
color: #0088cc;
}

#about .share-but a::before,  #about .share-but a::after{
  content: '';
  position: absolute;
  /* box-sizing: border-box; */
  width: 70%;
  height: 70%;
  left: 0;
  top: 0;
  transition: .4s linear;
}

#about .share-but  a:hover{
  transform: scale(.8);
}

#about .share-but  a:hover::before{
  border-left: 4px solid;
  border-right: 4px solid;
  transform: skewX(20deg);
}

#about .share-but a:hover::after{
  border-top: 4px solid;
  border-bottom: 4px solid;
  transform: skewY(-20deg);
}

@media (max-width:460px) {
   #about .share-but a{
    font-size: 25px;    
  }

}

/*  ----------END Share button ----------------- */

@keyframes nav-load {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes nav-link-load {
  0% {
    transform: scale(0);
  }

  90% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes nav-first-link-load {
  0% {
    transform: translateX(-1000%);
  }

  90% {
    transform: translateX(50%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes nav-last-link-load {
  0% {
    transform: translateX(1000%);
  }

  90% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes article-load {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}



/*  ----------END DREAPTA -------------- Imaginea din Dreapta */

/*  ----------Buton----------------- */


#about .but{
/* padding: 1rem; */
 /* letter-spacing: 10px; */
 /* background: var(--color-success); */
 border-radius: 20px;
 /* margin-top: 10px; */
 transition: all 0.3s ease;
 font-weight: 700;
 position: sticky;
 bottom: 30px;
 
 display: flex;
 flex-wrap: wrap;
 font-size: 15px;
 display: flex;
 align-items: center;
 justify-content: space-around;
 height: auto;
}
#about .buy-1, .buy-2{
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--color-bg3);
  color: var(--color-bg); 
  border-radius: 10px;
  margin-top: 10px;
  transition: all 0.3s ease;
 
}
#about .buy-1:hover {
  background: var(--color-white);
  color: var(--color-bg3);
}
#about .buy-2:hover {
  background: var(--color-white);
  color: var(--color-bg3);
}

/*  ----------END  Buton-------------- */



@media (min-width:992px) {
  #about .image{
    margin-bottom: 0;
  }
  #about .section-center{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
  }
  #about img{
    margin-bottom: 0;
  }
  #about .img-content{    
    margin-bottom: 0;
    /* top: 0; */
  }
}

#about .content{
  display: none;
}

#about .content.live{
  display: block;
}

#about .button.live{
  background: var(--color-bg);
  color: var(--color-bg3);
}
@media (max-width: 768px) {

  #about .btn-container{
    display: grid;
    /* grid-template-columns: .8fr .8fr .8fr; */    
  }
  #about .img-content{
    height: 450px;
    margin-top: auto;
   }

  #about .button{
    padding: .8rem 0;
    border: none;
    font-size: 10px;   
    letter-spacing: 0;
    margin: 2px;
  }
  #about .btn{
  font-size: 5px; 
 }
}

@media (max-width:420px) {
  #about{
    padding: 70px 10px;
  }
  #about .img-content{
    height: 600px;
    margin-top: 20px;
   }
   #about .btn{
    bottom: 5px;
    font-size: 5px; 
   }
}

@media (max-width:300px) {
  #about{
    padding: 80px 10px;
  }

  #about .img-content{
    height: 680px;
   }
   #about .btn{
    bottom: 5px;
    font-size: 5px; 
   }
}






/* -------------------------- END About text ---------------------------*/

/* ================================ End About Section ========================== */

/* ----------------------------- contact Section ---------------------------------- */

section .containerr{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #711227;
}
section .containerr::before{
  content: " ";
  position: absolute;
  /* top: 0; */
  left: 0;
  width: 50%;
  height: 100%;
  background: #e2cfd3;
}
.container1{
  position: relative;
  min-width: 1100px;
  min-height: 550px;
  display: flex;
  z-index: 80;
  /* background: #fff; */
}
.container1 .contactInfo{
  position: absolute;
  top: 40px;
  width: 350px;
  height: calc(100% - 80px);
  background: #711227;
  z-index: 1;
  padding: 40px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}
.container1 .contactForm{
  position: absolute;
  padding: 70px 50px;
  padding-left: 250px;
  margin-left: 150px;
  width: calc(100% - 150px);
  height: 100%;
  background: #fff;
  box-shadow: 0 50px 50px rgba(0, 0, 0, 0.25);
}
.container1 .contactForm h2{
  color: #711227;
  font-size: 24px;
  font-weight: 500;
}
.titluIcon{
  position: relative;
  /*background-color: #00bf8e;*/
  display: flex;
  justify-content: center;
  align-items: center;
  /* justify-content: space-between; */
}

.container1 .contactForm .spam .img{
  width: 40px;
  min-width: 30px;
  /* position: relative; */
  margin: 5px 0; 
  list-style: none;
  /* display: flex; */
}
.container1 .contactForm .formBox {
  /* position: absolute; */
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 30px;
}
.container1 .contactForm .formBox .inputBox{
  position: relative;
  margin-bottom: 25px;
  border: none;
}
.container1 .contactForm .formBox .inputBox.w50{
  width: 47%;
}
.container1 .contactForm .formBox .inputBox.w150{
  width: 100%;
  border: none;
}
/* .container1 .contactForm .formBox .inputBox.w250{
  position: relative;
  cursor: pointer;
  background: #711227;
  color: #fff;
  border: none;
  max-width: 150px;
  padding: 12px;
  border-radius: 3px;
}  */
.container1 .contactForm .formBox .inputBox input,
.container1 .contactForm .formBox .inputBox textarea{
  width: 100%;
  resize: none;
  padding: 5px 0;
  font-size: 18px;
  font-weight: 300;
  color: blue;
  border: none;
  outline: none;
  border-bottom: 3px solid #711227;
  
}
.container1 .contactForm .formBox .inputBox textarea{
  height: 120px;
}
.container1 .contactForm .formBox .inputBox span{
  position: absolute;
  left: 0;
  padding: 5px 0;
  pointer-events: none;
  font-size: 18px;
  font-weight: 300;
  transition: 0.3s;
}
.container1 .contactForm .formBox .inputBox input:focus ~ span,
.container1 .contactForm .formBox .inputBox input:valid ~ span,
.container1 .contactForm .formBox .inputBox textarea:focus ~ span,
.container1 .contactForm .formBox .inputBox textarea:valid ~ span{
  transform: translateY(-20px);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #711227;
  /* font-weight: 500; */
}

.inputBox.w250 button[type="submit"]{
  position: relative;
  cursor: pointer;
  background: #711227;
  color: #fff;
  border: none;
  max-width: 150px;
  padding: 12px;
 
}
.inputBox.w250 button[type="submit"]:hover{
  background: #d33859;
}
.container1 .contactForm .formBox .inputBox input[type="submit"]{
  position: relative;
  cursor: pointer;
  background: #711227;
  color: #fff;
  border: none;
  max-width: 150px;
  padding: 12px;
  
}
.container1 .contactForm .formBox .inputBox input[type="submit"]:hover{
  background: #d33859;
}

.container1 .contactInfo h2{
  color: #fff;
  font-size: 24px;
  font-weight: 500;
}
.container1 .contactInfo a{
	color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.container1 .contactInfo ul.info{
  position: relative;
  margin: 20px 0;
}
.container1 .contactInfo ul.info li{
  position: relative;
  list-style: none;
  display: flex;
  margin: 20px 0;
  cursor: pointer;
  align-items: flex-start;
}
.container1 .contactInfo ul.info li span:nth-child(1){  /* prima linie de spam */
  width: 30px;
  min-width: 30px;
}
.container1 .contactInfo ul.info li span:nth-child(1) img{
  max-width: 100%;
  filter: invert(1); /* pune iconurile in alb */
}
.container1 .contactInfo ul.info li span:nth-child(2){  /* a doualinie de spam */
  color: #fff;
  margin-left: 10px;
  font-weight: 300;
	font-size: 15px;
}
.container1 .contactInfo ul.sci{
  position: relative;
  display: flex;
}
.container1 .contactInfo ul.sci li{
  list-style: none;
  margin-right: 15px;
}
.container1 .contactInfo ul.sci li a{
  text-decoration: none;
}
.container1 .contactInfo ul.sci li a img{
  filter: invert(1);
}
#contact p .success{
  color: green;
  font-weight: 700;
  padding: 5px;
  text-align: center;
  display: none;
}
.inputBox .failed{
  color: red;
  font-weight: 700;
  padding: 5px;
  text-align: center;
  display: none;
}


@media (max-width: 1200px) {
  /* #header .nav-list ul {
    background-color:  linear-gradient(0deg, #711227 0%, #501818 51%, #030303 97%);
  }   */
  .container1{
    width: 90%;
    min-width: auto;
    margin: 20px;
    box-shadow: 0 50px 50px rgba(0, 0, 0, 0.25);
  }
  .container1 .contactInfo{
    top: 0;
    height: 550px;
    position: relative;
    box-shadow: none;
  }
  .container1 .contactForm{
    position: relative;
    width: calc(100% - 350px);
    padding-left: 0;    
    margin-left: 0;
    padding: 40px;
    height: 550px;
    box-shadow: none;
  }
}
 @media (max-width: 991px) {
 
  section .containerr {
    background: #E2CFD3;
  }
  section .containerr::before{
    display: none;
  }
  .container1{
    display: flex;
    flex-direction: column-reverse;
    border-radius: 0 0 10px 10px;
  }
  .container1 .contactForm{
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
  }
  .container1 .contactInfo{
    width: 100%;
    height: auto;
    flex-direction: row;
    border-radius: 0 0 10px 10px;
  }
  .container1 .contactInfo ul.sci{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 600px) {
  .titluIcon{
      justify-content: space-between;
  }
  .titluIcon .img{
      height: 60%;
        width: 60%;
  }
  
  .containerr .container1 .contactForm{
    padding: 25px;
  }
  .container1 .contactInfo{
    padding: 25px;
    flex-direction: column;
    align-items: flex-start;
  }
  .container1 .contactInfo ul.sci{
    margin-top: 40px;
  }
  .container1 .contactForm .formBox .inputBox.w50{
    width: 100%;
  }
} 
/* ========================  End contact Section ============================================= */

/* ---------------------------------------------------------- Footer ------------------- */
#footer {
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
}
#footer .footer {
	min-height: 100px;
	flex-direction: column;
	padding-top: 50px;
	padding-bottom: 10px;
}
#footer h2 {
	color: white;
	font-weight: 500;
	font-size: 1.8rem;
	letter-spacing: 0.1rem;
	margin-top: 10px;
	margin-bottom: 10px;
}
#footer .social-icon {
	display: flex;
	margin-bottom: 30px;
}
#footer .social-item {
	height: 50px;
	width: 50px;
	margin: 0 5px;
}
#footer .social-item img {
	filter: grayscale(1);
	transition: 0.3s ease filter;
}
#footer .social-item:hover img {
	filter: grayscale(0);
}
#footer p {
	color: white;
	font-size: 1.9rem;
}
#footer .item p {
	margin: 20px;
	text-align: center;
}
#footer a {
	color: rgb(252, 252, 252);
	font-size: 1.7rem;

}
#footer a:hover {
	color: crimson;
}
/* ======================== End Footer =================================================== */

/* Keyframes */
@keyframes hamburger_puls {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(1.4);
	}
}
@keyframes text_reveal_box {
	50% {
		width: 100%;
		left: 0;
	}
	100% {
		width: 0;
		left: 100%;
	}
}
@keyframes text_reveal {
	100% {
		color: white;
	}
}
@keyframes text_reveal_name {
	100% {
		color: crimson;
		font-weight: 500;
	}
}
/* End Keyframes */

/* Media Query For Tablet */
@media only screen and (min-width: 768px) {
	html {
		font-size: 8px;
}
	.cta {
		font-size: 2.5rem;
		padding: 20px 60px;
	}
	h1.section-title {
		font-size: 3rem; /* modificat de la 4rem */
	}

 
	/* Hero */
	#hero h1 {
		font-size: 6rem;
	}
	/* End Hero */
	/* Upload file */
	.messaj{
		margin: 0;
	}
	/* END Upload file */

	/* Services Section */
	#services .service-bottom .service-item {
		flex-basis: 45%;
		margin: 2.5%;
		border-radius: 12px;
	}
	#about .col-right h4 {		/* modificat, nu era asta */
		font-size: 2.4rem;
	}
	#about .about-img {			/* modificat, nu era asta */
		border-radius: 25px; /* modificat de la 35px */
		height: 155px; 	/* modificat de la 200px */	
	}
	/* End Services Section */

	/* Project */
	#projects .project-item {
		flex-direction: row;
	}
	#projects .project-item:nth-child(even) {
		flex-direction: row-reverse;
	}
	#projects .project-item {
		height: 400px;
		margin: 0;
		width: 100%;
		border-radius: 0;
	}
	#projects .all-projects .project-info {
		height: 100%;
	}
	#projects .all-projects .project-img {
		height: 100%;
	}
	/* End Project */

	/* About */
	#about .about {
		flex-direction: row;
	}
	#about .col-left {
		width: 600px;
		height: 400px;
		padding-left: 60px;
		
	}
	#about .about .col-left .about-img::after {
		image-resolution: 400px 600px;
		left: -11px;
		top: -11px;
		height: 98%;
		width: 98%;
		border-radius: 50%;
		border: 13px solid crimson;
		z-index: 1;
	}
	#about .col-right {
		text-align: left;
		padding: 30px;
	}
	#about .col-right h1 {
		text-align: left;
	}
	/* End About */

}
/* Media Query For Tablet */

/* End Media Query For Tablet */
/* End Media Query For Tablet */

/* Media Query For Desktop */
@media only screen and (min-width: 1200px) {
	/* header */
	#header .hamburger {
		display: none;
    
	}
	#header .nav-list ul {
		position: initial;
		display: block;
		height: auto;
		width: fit-content;   
		 background-color: transparent; 
    /*background-image: linear-gradient(0deg, #711227 0%, #501818 51%, #030303 97%);*/
	}
	#header .nav-list ul li {
		display: inline-block;
	}
	#header .nav-list ul li a {
		font-size: 1.8rem;
	}
	#header .nav-list ul a:after {
		display: none;
	}
	/* End header */

	#services .service-bottom .service-item {
		flex-basis: 22%;
		margin: 1.5%;
	}
	
}
/* End  Media Query For Desktop */



/* End  Media Query For Desktop */
@media only screen and (min-width: 260px){
	html {
    font-size: 9px;
}
#about .content h3{
  font-size: 20px;
  padding: 5px;
}
#about h3{
  font-size: 25px;
}
#about h6{
  font-size: 18px;
}
.container1 .contactForm h2 { 
  font-size: 19px;   
  text-align: center;
}

.brand h1, .info-title {
  font-size: 2.3rem;
}
p{font-size: 2rem;
  font-weight: 400;}

#about .btn-live{	
	justify-content: space-around;	
	flex-direction: column;
}
.content h2{
	font-size: 2.8rem;		
}
.content h2 span{
	font-size: 2.8rem;		
}

.content a{
	font-size: 2.8rem;	
}
  
	/* --------- Upload ----------- */
.ful-box {
	justify-content: space-around;	
	flex-direction: column;
}
/* --------- Upload End ----------- */

}
