@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
/* Usual use*/
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
body {
    font-family: 'Lato', sans-serif;
    color: rgb(51, 51, 51);
    line-height: 1.6;
    background-color: rgb(255, 255, 255);
}
.limba
{
    height: 25px;
    width: 35px;
    padding-top: 4px;
}
html::-webkit-scrollbar {
    display: none;
}
.tab
{
    tab-size: 8;
}

ul{
    list-style-type: none;
    text-align: center;
}

a{
    text-decoration: none;
    color: #333
}
h1,h2{
  
    font-weight: bold;
    line-height: 1.2;
    margin: 15px;
}
img{
    width: 100%;
}

.flex{
    display: flex;
    justify-content: space-between;
    align-items: center;   
}
/*Exit usual use*/


/*Navbar*/
.navbar{
    background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
    color:  rgb(255, 255, 255);
    position: fixed;
    z-index: 1000;    
    left: 0;
    top: 0;
    width: 100vw;
    height: auto;
    
}
.container
{
    margin: 0 auto;
    overflow: auto;
    padding:0 100px;
}


.navbar ul{
    display: flex;
}
.navbar a{
    color: white;
    padding: 0 10px;
    margin: 0 5px;
    position: relative;
}
.navbar a:hover{
    border-bottom: 2px white solid;
    font-size: 20px;
    transition: 0.5s;
}

.container_header
{
    padding: 100px 0;
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 4fr 1.5fr;
    border: 2px solid #000;
    
}

.cell_header
{
    text-align: left;
	border-radius: 10px;
	margin: 30px;
	box-shadow: 0px 0px 18px 0 #0000002c;
	transition: .3s ease box-shadow;
    border: 2px solid rgb(0, 0, 0);
    background-color: #ffebf0de;
}


.cell_header:nth-child(2)
{
    background-color: rgba(231, 230, 230, 0.76);
}
#text{
    display: inline-block;
    font-size: 7vmin;
    line-height: 1.205;
  }
  
  #text__first, #text__second{
    position: relative;
  }
  
  #text__word{
    color: white;
    opacity: 0;
    animation-name: opacitate;
    animation-duration: 0.8s;
    opacity: 1;
  }

  #text__first-bg{
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 100;
    transform: scaleX(0);
    left: 0;
    transform-origin: left;
    background-color: #5fbff9;
    animation-name: scale1;
    animation-duration: 0.8s;
  }
  
  #text__second-bg{
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 100;
    transform: scaleX(0);
    right: 0;
    transform-origin: right;
    background-color: #f06543;
    animation-name: scale1;
    animation-duration: 0.8s;
  } 
  @keyframes scale1 {
    0%
    {transform: scaleX(0)}
    50%
    {transform: scaleX(1)}
    100%
    {transform: scaleX(0)}
  }

  @keyframes opacitate {
    0%
    {opacity: 0}
    50%
    {opacity: 0}
    100%
    {opacity: 1}
  }
.content
{
} 

.title{
    display:flex;
    background-color: #d1204f;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid #000;
}
.imagine
{
    float: right;
    width: 400px;
    margin: 0rem;
    border-radius: 50%;

}
.text
{
    margin-top: 3.5%;
    font-size: 24px;
    width: 100%;
}

@keyframes scale1 {
    0%
    {transform: scaleX(0)}
    50%
    {transform: scaleX(1)}
    100%
    {transform: scaleX(0)}
  }

  @keyframes opacitate {
    0%
    {opacity: 0}
    50%
    {opacity: 0}
    100%
    {opacity: 1}
  }
.tab{
    display: inline-block;
    margin-left: 40px;
}
.incadradre
{
    text-align: left;
}
.tabel
{
    display: flex;
    flex-direction: column;
}

.item
{
    text-align: left;
    display:flex;
    flex-direction: column;
    border-bottom:2px solid rgb(0, 0, 0);
}

.btn
  {
    transition: ease-in-out 0.3s;
    outline: none;
    position: relative;
    z-index:1;
  }
  .btn:hover{
    color:white;
  }
  .el1 .btn:before, .el2 .btn:before, .el3 .btn:before, .el4 .btn:before, .el5 .btn:before, .el6 .btn:before{
    transition: 0.5s all ease;
    position: absolute;
    top:0;
    left: 0%;
    right: 100%;
    bottom: 0;
    opacity: 0;
    content:"";
  }
  .el1 .btn:before{
    border-top-left-radius: 0.5em;
    border-top-right-radius: 0.5em;
    background-color: #ffa42d;
  }
  .el2 .btn:before{
    background-color: rgb(23, 202, 230);
  }
  .el3 .btn:before{
    
    background-color: 	#7289DA;
  }
  .el4 .btn:before{
    background-color: #d1204f;
  }
  .el5 .btn:before{
    background-color: #48BF91;
  }
  .el6 .btn:before{
      border-bottom-left-radius: 0.3em;
      border-bottom-right-radius: 0.3em;
    background-color: #A472F7;
  }
  .btn:hover::before{
    transition: 0.5s all ease;
    left:0;
    right:0;
    opacity: 1;
    z-index:-1;
  }

.block
{
    -webkit-animation:scaledown .4s linear;
    animation-fill-mode: forwards;
    transform-origin: 50% 50%;
}
.block:hover{
    z-index: 100;
    -webkit-animation:scale 0.4s linear;
    animation-fill-mode: forwards;
    transform-origin: 50% 50%;
}
@keyframes scaledown{
    0%{
        -webkit-transform: scale(1.03);
        transform:scale(1.03);
    }
    100%{
        -webkit-transform: scale(1.0);
        transform:scale(1.0);
    }
}
@keyframes scale{
    0%{
        -webkit-transform: scale(1);
        transform:scale(1);
    }
    100%{
        -webkit-transform: scale(1.03);
        transform:scale(1.03);
        box-shadow: 10px,10px,60px,10px #000;
    }
}
.item ol
{
    margin:0 0 0 18px;
}

.item h1
{
}

.header h1{
    font-size: 3rem;
    font-weight: bold;
    line-height:1.2;
}

.header .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.boxes .container{
    display: flex;
    justify-content: space-between;
}


.cell_header ol {
    list-style: none;
    counter-reset: my-awesome-counter;
  }
  .cell_header li {
    counter-increment: my-awesome-counter;
    margin: 0.25rem;
}

.cell_header li span{
    font-size: 23px;
}
.cell_header li::before {
    content: counter(my-awesome-counter);
    background: #d1204f;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: inline-block;
    line-height: 2rem;
    color: white;
    text-align: center;
    margin-right: 0.5rem;
}
.cell_header ol ol li::before {
    background: #d1204f;
}
.cell_header ol ol ol li::before {
    background: #EE9EFF;
}

.item:hover li::before
{
    background: #6d665d;
}
.item li:hover::before
{
    background: #b8afa3;
}

.header .img
{
    border-radius: 50%;
}
.section-title {
	font-size: 4rem;
	font-weight: 300;
	color: black;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: .2rem;
	text-align: center;
    
}

.text-bg
{
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 100;
    transform-origin: left;
    transform: scaleX(0);
    background-color: #f06543;
}
/* contact Section */
.contact {
	flex-direction: column;
    margin-top:6rem;
}
.contact-items {
    display: grid;
    justify-content: space-between;
    align-content: center;
    border-top: 2px solid rgb(107, 138, 106);
    border-bottom: 2px solid rgb(107, 138, 106);
    grid-template-columns: 1fr 1fr;
    grid-gap:1rem;
    padding: 8rem;
}
.contact-item {
	text-align: center;
	border-radius: 10px;
	padding: 30px;
	margin: 30px;
	box-shadow: 10px 10px 60px 10px #0000002c;
	transition: .3s ease box-shadow;
    border: 2px solid rgb(107, 138, 106);
}
.contact-item:hover {
	box-shadow: 0px 0px 5px 0 #0000002c;
}
.icon {
	width: 70px;
	margin: 0 auto;
	margin-bottom: 10px;
    border-radius: 50%;
}
.contact-info h1 {
	font-size: 2.5rem;
	font-weight: 500;
	margin-bottom: 5px;
}
.contact-info h2 {
	font-size: 1.3rem;
	line-height: 2rem;
	font-weight: 500;
}
.contact:nth-of-type(3)
{
    grid-column: 1/3;
}
/*End contact Section */

/* Footer */
#footer {
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
}
#footer .footer {
	min-height: 200px;
	flex-direction: column;
	padding-top: 50px;
	padding-bottom: 10px;
}
#footer h2 {
	color: white;
	font-weight: 500;
	font-size: 1.8rem;
	letter-spacing: .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: .3s ease filter;
}
#footer .social-item:hover img {
	filter: grayscale(0);
}
#footer p {
	color: white;
	font-size: 1.3rem;
}


/* End Footer */


.titlu_arb h1, h2, h3
{
    margin-top: 1.5%;
    width: 100%;
    text-decoration: underline;
    text-decoration-color: #a6133a;
    text-decoration-thickness: 4px;
}

.cutie:nth-child(3)
{
    grid-column: 1 / 3;
    font-size: 166%;
}
.cell_header:nth-child(3)
{
    grid-column: 1 / 3;
    font-size: 166%;
}
.cutie{
    padding: 1rem;
}
.code
{
	font-family:courier, serif;
	font-style:bold;
	margin:0px;
	padding:0px;
    font-size:110%;
}


