
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

*{
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html, body{
    margin: 0px;
    padding: 0px;
    font-family: poppins;
    scroll-behavior: smooth;
}

p{
    margin: 0px;
}

.bodyy{
    position: fixed;
    z-index: -100;
    height: 100vh;
    width: 100%;
    background-image: url(Images/Bgg.jpg);
    background-position: center;
    background-repeat: no-repeat;
}



.instagram, .facebook{
    display: flex;
    align-items: center;
    justify-items: center;
    flex-direction: row;
    gap: 10px;
    color: white;
    text-decoration: underline;
}

.social{
    width: 40px;
}

.center-all{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.section{
    max-width: 1200px;
    height: auto;
    padding-left: 3%;
    padding-right: 3%;
    width: 100%;
}

.proj-title{
    color: white;
    font-weight: bold;
    font-size: 30px;
    text-align: center;
    margin-bottom: 10px;
}

/****************PC NAVBAR******************/

.dma{
    color: white;
    font-weight: bold;
    font-size: 27px;
    margin-left: 10px;
    cursor: pointer;
}

.inv-nav{
    width: 100%;
    height: 0px;
    display: block;
}

#pc-navbar{
    background-color: rgb(30, 28, 28);
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 100;
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-left: 120px;
    padding-right: 120px;
}

#mobile-navbar{
    background-color: rgb(30, 28, 28);
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 100;
    width: 100%;
    height: 60px;
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-left: 26px;
    padding-right: 26px;
}

@media(max-width: 1100px){
    #pc-navbar{
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media(max-width: 800px){
    #pc-navbar{
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media(max-width: 730px){
    #pc-navbar{
        display: none;
    }
    #mobile-navbar{
        display: flex;
    }
}

#pc-navbar ul{
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 30px;
    align-items: center;
}

#pc-navbar li{
    color: white;
    font-weight: bold;
    font-size: 22px;
    list-style-type: none;
    cursor: pointer;
}

#menu{
    filter: invert(1);
    height: 45px;
    cursor: pointer;
}


/*******************LOGO NAVBAR*********************/
#logo-container{
    display: flex;
    justify-content: center;
    flex-direction: row;
    cursor: pointer;
}

#logo1{
    font-size: 25px;
    font-weight: bold;
    color: white;
}

#logo2{
    font-size: 25px;
    font-weight: bold;
    color: rgb(2, 99, 156);
}

/***********************HERO***************************/


.logoc{
    display: flex;
    align-items: center;
    justify-content: center;
}

.lgo{
    height: 45px;
    border-radius: 25px;
    cursor: pointer;
}

.title{
    color: white;
    font-size: 40px;
}

#pc-hero{
    display: block;
}

#mobile-hero{
    display: none;
}

#hero{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center ;
    align-items: center;
    gap: 13%;

    background: url(Images/bg3.png), url(Images/back.png), url(Images/rea1.jpg);/*, url(Images/bg-bottom-hero.png);*/
    background-position: center bottom -1px, center, center;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: 100% 20%, cover, cover;
}

@media(min-width: 1100px){
    #hero{
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media(max-width: 750px){
    #hero{
    background: url(Images/bg3.png), url(Images/back.png), url(Images/rea1.jpg);/*, url(Images/bg-bottom-hero.png);*/
    background-position: center bottom -1px, left, center;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: 100% 20%, 150% 100%, cover;
}
}

.hero-el{
    width: 40%;
}

.text-hero{
    width: 40%;
}

#text-hero{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#video-container{
    width: 40%;
    height: auto;
    border-radius: 20px;
}

#video{
    width: 100%;
    height: auto;
    border-radius: 20px;
}

@media(min-width: 1100px){
    #video{
    width: 100%;
    height: auto;
}
}

.hero-text{
    color: white;
    font-weight: bold;
}

#text-hero1{
    font-size: 45px;
}

#text-hero2{
    font-size: 25px;
}

#flex{
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: auto;
}

.purple{
    color: rgb(2, 99, 156);
}

#btn-container{
    display: flex;
    flex-direction: row;
    gap: 30px;
    width: 100%
}

.btn{
    width: 180px;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 30px;
    border-radius: 50px;
    cursor: pointer;
}

#btn1, #btn3{
    background-color: rgb(2, 99, 156);
    border: none;
    color: white;
}

#btn2, #btn4{
    background-color: transparent;
    color: white;
    border: 3px solid rgb(2, 99, 156);
}

#btn2:hover{
    background-color: rgb(2, 99, 156);
    border: 3px solid rgb(2, 99, 156);
    transition: 0.5s;
}

#btn4:hover{
    background-color: rgb(2, 99, 156);
    border: 3px solid rgb(2, 99, 156);
    transition: 0.5s;
}

@media(max-width: 1100px){
    #hero{
        gap: 70px;
    }
}

@media(max-width: 940px){
    #text-hero1{
        font-size: 37px;
    }
    #text-hero2{
        font-size: 22px;
    }
    .btn{
        font-size: 17px;
        padding: 10px 10px;
        width: 100%;
    }
}

@media(max-width: 750px){
    #hero{
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    #video-container{
    width: 90%;
    height: auto;
    }

    #btn-container{
        flex-direction: column;
        gap: 10px;
        justify-content: center;
        align-items: center;
    }

    .hero-el{
        width: auto;
    }

    .inv-nav{
        height: 30px;
    }
}

@media(max-width: 500px){
    #text-hero1{
        font-size: 32px;
    }
    #text-hero2{
        font-size: 20px;
    }
}

@media(600px < width < 750px){
    #hero{
        padding-top: 20px;
    }
    #btn-container{
        flex-direction: row;
    }
    #video-container{
    width: 70%;
    height: auto;
    }
}

@media(max-width: 600px){
    #video-container{
    width: 90%;
    height: auto;
    }

    #pc-hero{
    display: none;
    }

    #mobile-hero{
    display: block;
    }
}

@media(500px < width < 600px){
    .inv-nav{
        margin-bottom: 20px;
    }
    #video-container{
        width: 80%;
    }
}

/*****************  DROPDOWN  ********************/

#dropdown-container{
    background-color: rgb(32, 32, 32);
    color: white;
    font-weight: bold;
    font-size: 22px;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    left: 0px;
    top: -150px; /*-130px*/
    z-index: 7;
    border-top: 2px solid white;
    padding: 10px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    transition: 0.4s;
}

#dropdown-container.active{
    top: 60px;
    transition: 0.4s;
}

#dropdown-container div{
    display: flex;
    justify-content: center;
    padding: 5px;
}

/************ Hero/Video ****************/

.header-container {
    position: relative;
    width: 100%;
    height: 101vh; /* ocupă tot ecranul */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 5px solid #232221;
}

.header-container.active{
    border-bottom: none;
}

.video{
    filter: brightness(0.4);
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit:cover;
    z-index: 1;
    box-shadow: 0 20px 20px rgba(34, 34, 34, 0.15);
}

.video.active{
    display: none;
}

.principal-text {
    margin-left: 25px;
    margin-right: 25px;
    position: absolute;
    text-align: center;
    color: white;
    z-index: 2;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
}

.title-prin{
    font-size: 40px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0,0,0,0.7);
}

.descriptionn{
    font-size: 25px;
    text-shadow: 0 0 10px rgb(0, 0, 0);
}

@media(max-width: 850px){

    .title-prin{
    font-size: 32px;
    font-weight: bold;
}

.descriptionn{
    font-size: 20px;
}
}

@media(max-width: 850px){
    .title-prin{
    font-size: 32px;
    font-weight: bold;
}

.descriptionn{
    font-size: 20px;
}
}

@media(max-width: 510px){
    .title-prin{
        font-size: 30px;
    }
}

.buttons-go{
    margin-top: 15px;
}

.buttons-go button {
    margin: 0 5px;
    padding: 10px 20px;
    background-color:#1E1E1E; /* accent coffee */
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 20px;
}

@media(max-width: 400px){
    .buttons-go button{
        margin: 0 0px;
    }
}

@media(max-width: 505px){
    .title-prin{
        max-width: 310px;
        text-align: center;
    }
}

@media(max-width: 600px){
    .buttons-go button{
        font-size: 15px;
    }
}

/************** Wrapper ****************/

.wrapper{
    margin: 0px;
    width: 95%;
    max-width: 1500px;
    gap: 100px;
    margin-inline: auto;
    position: relative;
    height: 104px;
    overflow: hidden;
}

@keyframes scrollLeft {
    to{
        left: -200px;
    }
}

.item{
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 22px;
    background-color: transparent;
    border-radius: 5px;
    position: absolute;
    left: calc(200px * 8);
    animation: scrollLeft 30s linear infinite;
}

@media(max-width: 830px){
    .item{
        width: 150px;
        left: calc(150px * 8);
    }
}

@media(max-width: 500px){
    .item{
        font-size: 20px;
        width: 120px;
        left: calc(120px * 8);
    }
}

@media(max-width: 450px){
    .wrapper{
        height: 65px;
    }
    .item{
        height: 50px;
    }
}


.item1 {
    animation-delay: calc(30s / 8 * (8 - 1) * -1);
}

.item2 {
    animation-delay: calc(30s / 8 * (8 - 2) * -1);
}

.item3 {
    animation-delay: calc(30s / 8 * (8 - 3) * -1);
}

.item4 {
    animation-delay: calc(30s / 8 * (8 - 4) * -1);
}

.item5 {
    animation-delay: calc(30s / 8 * (8 - 5) * -1);
}

.item6 {
    animation-delay: calc(30s / 8 * (8 - 6) * -1);
}

.item7 {
    animation-delay: calc(30s / 8 * (8 - 7) * -1);
}

.item8 {
    animation-delay: calc(30s / 8 * (8 - 8) * -1);
}



.nv-btn{
    border: none;
    background-color: transparent;
    color: white;
    font-weight: bold;
    font-size: 20px;
    cursor: pointer;
}

.nv-btn span{
    font-size:22px;
}

.titlle{
    color: white;
    font-weight: bold;
    font-size: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
}

#title2{
    padding: 0px;
}

#section1{
    background-color: #1E1E1E;
    border-radius: 25px;
    width: 100%;
}

@media(max-width: 750px){
    #section1{
        border-radius: 0px;
    }
}

@media(width > 2000px){
    #center-all1{
        background-color: transparent;

    }
    #section1{
        max-width: 1200px;
        border-radius: 15px;
    }
}

.content{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4%;
    padding: 10px;
}

.sec1{
    width: 48%;
    background-color: transparent;
    padding: 10px;
}

.sec2{
    width: 48%;
    background-color: transparent;
    padding: 10px;
}

@media(max-width: 750px){
    .content{
        flex-direction: column;
    }
    .sec1, .sec2{
        width: 100%;
    }
}

@media(max-width: 480px){
    .section{
        padding: 0px;
        margin: 0px;
    }
}

.tit{
    color: rgb(0, 0, 0);
    font-size: 25px;
    font-weight: bold;
}

@media(max-width: 600px){
    .tit{
        font-size: 19px;
    }
}

#yt-video{
    margin-top: 20px;
    width: 100%;
    height: 300px;
}

@media(max-width: 1100px){
    #yt-video{
    height: 250px;
}
}

@media(max-width: 900px){
    #yt-video{
    height: 200px;
}
}

.img-sec{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 5%;
    margin-bottom: 20px;
}

.container-img-1{
    background-image: url(Images/GoogleAnalytics.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 120px;
    width: 45%;
    border-radius: 15px;
    cursor: pointer;
}

#all-analytic-container{
    display: none;
    width: 100%;
    height: 100vh;
    background-color: #00000096;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
}

#all-analytic-container.active{
    display: block;
}

#analytic-container{
    width: 75%;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    border-radius: 25px;
}

@media(max-width: 700px){
    #analytic-container{
        width:95%;
    }
}

#analytic-container img{
    width: 100%;
    border-radius: 15px;
}

#analytic-title{
    position: absolute;
    left: 50%;
    top: -30px;
    transform: translate(-50%, -50%);

    font-weight: bold;
    font-size: 30px;
    color: white;
}

@media(max-width: 750px){
    #analytic-title{
        font-size: 23px;
    }
}

#close{
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translate(-50%, -50%);

    font-weight: bold;
    font-size: 15px;
    color: white;
    border: 2px solid white;
    border-radius: 25px;
    background-color: rgb(215, 1, 1);
    cursor: pointer;
    padding: 4px 20px;
}

.container-img-2{
    background-image: url(Images/map.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 120px;
    width: 45%;
    border-radius: 15px;
    position: relative;
}

#see-map{
    position: absolute;
    bottom: 5px;
    border-radius: 25px;
    padding: 0px 0px;
    width: 70px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.613);
    cursor: pointer;
}

.text-us{
    color: white;
}

.social-cont{
    display: flex;
    align-items: left;
    justify-content: center;
    flex-direction: column;
    margin-top: 20px;
    gap: 10%;
}

.instagram, .facebook{
    display: flex;
    align-items: center;
    justify-items: center;
    flex-direction: row;
    gap: 10px;
}

.social{
    width: 40px;
}

/****************  Languages  *********************/

#cont{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

#languages{
    font-size: 30px;
    font-weight: bold;
    color: white;
    margin-top: 20px;
}

@media(max-width: 450px){
    #cont{
        margin-bottom: -20px;
        margin-top: -20px;
    }
    #languages{
        margin-bottom: -20px;
        margin-top: 30px;
    }
}

#wrapper #carousel{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 3) -12px);
    overflow: hidden;
}

#wrapper{
    max-width: 1180px;
    width: 100%;
    position: relative;
    padding: 0 20px;
}

@media(max-width: 1200px){
    #wrapper{
        max-width: 890px;
    }
    #cont{
        gap: 0px;
    }
}

@media(max-width: 900px){
    #wrapper{
        max-width: 610px;
    }
}

@media(max-width: 620px){
    #wrapper{
        max-width: 325px;
    }
}

#wrapper i{
    height: 50px;
    width: 50px;
    background-color: white;
    border-radius: 50%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(2, 99, 156);
    font-size: 23px;
    text-align: center;
    position: absolute;
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(0,0,0,0.23);
}

#wrapper i:first-child{
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

#wrapper i:last-child{
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.card{
    padding: 20px;
    margin-left: 8px;
    margin-right: 8px;
}

#carousel .card{
    border-radius: 17px;
    background-color: rgba(0, 0, 0, 0.289);
    color: white;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 460px;
    width: 270px;
    gap: 10px;
}

#carousel{
    padding: 0px;
}

#carousel.dragging {
  cursor: grabbing;
}

.img-container{
    width: 150px;
    height: 150px;
}

.imagess{
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

#wrapper button{
    border: 3px solid rgb(2, 99, 156);
    color: white;
    padding: 5px 15px;
    background-color: transparent;
    font-weight: bold;
    font-size: 18px;
    border-radius: 50px;
    width: 110px;
    cursor: pointer;
}

.description{
    text-align: center;
}

@media(max-width: 450px){
    .description{
        font-size: 15px;
    }
    .card{
        padding: 15px;
        max-width: 270px;
    }
    #wrapper{
        transform: scale(0.93)
    }
}


/***************  p  *******************/

.p{
    font-size: 30px;
    color: white;
    text-align: center;
    font-weight: bold;
    margin: 0px;
    width: auto;
}

/***************  My Projects  *******************/

#all-projects-container{
    height: auto;
    min-height: 100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

#project-title{
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 20px;
}

#content-pr{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
    gap: 10px;
}

@media(max-width: 700px){
    #content-pr{
        padding-left: 3%;
        padding-right: 3%;
    }
}

.els{
    max-width: 1100px;
    width: 100%;
}

.tit{
    color: white;
    font-size: 25px;
    font-weight: bold;
    margin-left: 7%;
}

@media(max-width: 450px){
    .tit{
        font-size: 20px;
    }
}

.conn{
    border-radius: 17px;
    border: 3px solid rgb(2, 99, 156);
    padding: 15px;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.text-cont{
    width: 55%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.text-cont button{
    border: 3px solid rgb(2, 99, 156);
    color: white;
    padding: 5px 15px;
    background-color: transparent;
    font-weight: bold;
    font-size: 18px;
    border-radius: 50px;
    width: auto;
    cursor: pointer;
}

.site-des{
    font-size: 17px;
}

.des-title{
    font-size: 25px;
    font-style: italic;
    text-decoration: underline;
    color: rgb(2, 99, 156);
}

.width-p{
    display: flex;
    justify-content: center;
    align-items: right;
    flex-direction: column;
    gap: 10px;
}

.img-cont{
    border-radius: 15px;
    width: 40%;
    height: 200px;
    background: transparent; /* **** / RED / **** */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    position: relative;

    /*overflow: hidden;*/
}

.img{
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.img-cont i{
    height: 45px;
    width: 45px;
    background-color: white;
    border-radius: 50%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(2, 99, 156);
    font-size: 23px;
    text-align: center;
    position: absolute;
    cursor: pointer;

    z-index: 2;
}

@media(max-width: 500px){
    .img-cont i{
        height: 40px;
        width: 40px;
    }
}

.img-cont i:first-child{
    top: 50%;
    transform: translateY(-50%);
    left: -20px;
}

.img-cont i:last-child{
    top: 50%;
    transform: translateY(-50%);
    right: -20px;
}

@media(max-width: 670px){
    .conn{
        flex-direction: column;
        gap: 20px;
    }
    .img-cont{
        width: 100%;
        max-width: 350px;
    }
    .width-p{
        width: 100%;
    }
    .text-cont{
        width: 100%;
    }
}

@media(450px < width < 670px){
    .text-cont{
        padding: 10px;
    }
}

.soon-div{
    position: absolute;
    background-color: rgb(18, 17, 17);
    padding: 0px;
    border-radius: 15px;
}

.soon{
    text-align: center;
    font-size: 300%;
}

#ProfinexImg {
  transition: opacity 0.4s ease;
  opacity: 1;
}

#ePlantsImg {
  transition: opacity 0.4s ease;
  opacity: 1;
}

.aboutme-cont, .aboutme-cont2{
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding: 10px;
}

.aboutme-cont2{
    display: none;
    gap: 0px;
}

.aboutme-cont p, .aboutme-cont2 p{
    color: white;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}

.text-about, .text-about2{
    border-radius: 15px;
    border: 3px solid rgb(2, 99, 156);
    padding: 15px;
    max-width: 1100px;
}

.text-about p, .text-about2 p{
    font-size: 15px;
}

.aboutme-hov{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.aboutme-hov2{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.aboutme-img{
    width: 80%;
    height: 100%;
    border-radius: 15px;
    /*
    background-image: url(Images/temp.png);
    background-size: cover;*/
}

.aboutme-img img{
    width: 100%;
    height: 100%;
}

  @media(min-width: 950px){
    .aboutme-img img{
        width: 70%;
        height: 70%;
        margin-left: 5%;
}
}

#sp{
    margin-top: 5%;
    margin-bottom: 5%;
}

#spec{
    max-width: 1100px;
}
/*
.aboutme-cont{
    display: none;
}

.aboutme-cont2{
    display: block;
    
}*/

@media(max-width: 680px){
    .aboutme-cont{
        display: none;
    }
    .aboutme-cont2{
        display: flex;
    }
}


/**************** PROIECTE *****************/

.project-container-all{
    background-color: transparent;
    max-width: 1200px;
    padding: 10px;
    display: grid;
    justify-content: center;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); /* important */
}

@media( 750px < width < 925px){
    .project-container-all{
        padding-left: 30px;
        padding-right: 30px;
    }
}

.project-container{
    border-radius: 15px;
}

@media(max-width: 620px){
    .project-container-all{
        padding-left: 20px;
        padding-right: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .project-container{
        max-width: 400px;
        width: 100%;
    }
}

.img-back{
    height: 150px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.img-back img{
    width: 100%;
    height: 100%;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
}

.proj-info{
    height: 80px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    background-color: #2c2b2b;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
}

.part1-info{
    width: 100%;
    font-weight: bold;
    font-size: 19px;
    padding-top: 2px;
    padding-left: 10px;
}

.part2-info{
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 3%;
}

.inf2-1 {
    width: 65%;
    height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* numărul de linii vizibile */
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    font-size: 15px;
    padding-bottom: 2px;
    padding-left: 10px;
}

.inf2-2{
    width: 32%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding-right: 10px;
}

.vezi-pr{
    font-weight: bold;
    font-size: 15px;
    color: white;
    padding: 3px 12px;
    border: 2px solid white;
    background-color: transparent;
    border-radius: 25px;
    cursor: pointer;
}

/*********/

.project-container{
    display: none;
    border-radius: 15px;
    color: white;
}

#pr7, #pr8, #pr9{
    display: none;
}

@media(max-width: 927px){
    #pr7, #pr8, #pr9{
        display: none;
    }
}

@media(max-width: 620px){
    #pr4, #pr5, #pr6{
        display: none;
    }
}

.show{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.show-btn{
    font-weight: bold;
    font-size: 17px;
    padding: 5px 20px;
    border: 3px solid rgb(2, 99, 156);
    border-radius: 25px;
    background-color: transparent;
    cursor: pointer;
    color: white;
}

/******* Intrebari Frecvente ******/

.cont-questions{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-left: 10%;
    padding-right: 10%;
    gap: 15px;
}

.quest-title{
    color: white;
    font-size:30px;
    font-weight: bold;
    margin-top: 25px;
}

.quest-title.active{
    color: white;
}

.quest-title.dark{
    color: white;
}

@media(max-width: 600px){
    .cont-questions{
    padding-left: 13px;
    padding-right: 13px;
    }
    
    .quest-title{
        font-size: 27px;
    }
}

.quest-container{
    max-width: 1100px;
    width: 100%;
    color: white;
    font-weight: bold;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
}

.quest-question{
    background-color: #242424;
    padding: 15px;
    border-radius: 25px;
    border-bottom: 1px solid white;
    transition: border-radius 0.3s ease;
}

.quest-question.active{
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    transition-delay: 0.1s;
}

.quest-question.dark{
    background-color: #1E1E1E;
}

.quest-answer {
  max-height: 0;
  overflow: hidden;
  background-color: #373636;
  padding: 0 15px;
  border-radius: 15px;
  transition: max-height 0.4s, padding 0.4s, border-top-left-radius 0.3s, border-top-right-radius 0.3s;
}

.quest-answer.active {
  max-height: 300px;
  padding: 15px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.quest-answer.dark{
    background-color: #403d3d;
}




/*************** Contact *****************/

#emailto{
    color: white;
}

.contentt{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7%;
    flex-direction: row;
}

#title3{
    font-weight: bold;
    font-size: 30px;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
    color: white;
}

.scrie-ne{
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 15px;
}

@media(max-width: 750px){
    .contentt{
        flex-direction: column;
        gap: 30px;
    }

    .scrie-ne{
        margin-top: 20px;
    }
}

.asoc{
    font-weight: bold;
    font-size: 20px;
}

#center-all3{
    padding-left: 10px;
    padding-right: 10px;
}

#section3{
    background: linear-gradient(to right, #2a2a2a 50%, #272626 50%);
    border-radius: 15px;
}

@media(max-width: 750px){
    #section3{
        background: linear-gradient(to bottom, #2a2a2a 50%, #2a2a2a 50%);
    }
}

.sect1, .sect2{
    width: 45%;
    color: white;
}

@media(max-width: 750px){
    .sect1, .sect2{
    width: 95%;
}
    .sect1{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    .sect1{
        margin-bottom: 10px;
    }

    .asoc{
        text-align: center;
    }
}

form{
    width: 100%;
}

.sect2{
    display: flex;
    align-items: center;
    justify-content: left;
    flex-direction: column;
}

label{
    font-weight: bold;
}

.nume, .email{
    padding: 5px 0px;
    text-align: center;
    font-weight: bold;
    outline: none;
    border: none;
    border-radius: 25px;
}

.email{
    margin-top: 5px;
}

.msg-label{
    margin-top: 10px;
}

textarea{
    width: 100%;
    border-radius: 15px;
    outline: none;
    height: 100px;
}

.align-submit{
    width: 100%;
    display: flex;
    align-items:center;
    justify-content: center;
    flex-direction: row;
    margin-bottom: 10px;
}

.submit{
    font-weight: bold;
    padding: 2px 15px;
    font-size: 17px;
    border: 3px solid rgb(2, 99, 156);
    color: white;
    border-radius: 25px;
    background-color: transparent;
    cursor: pointer;
}

/*************** Footer *****************/

.footer{
    background-color: rgb(43, 42, 42);
    color: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: auto;
    text-align: center;
    z-index: 200;
    gap: 30px;
    padding: 20px 10px;
}

.up-footer{
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    gap: 10%;
}

@media(max-width: 620px){
    .up-footer{
        flex-direction: column;
        gap: 20px;
    }
}

.program-container, .program-container div, .contact-footer{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.devMihai{
    margin-top: 10px;
}

.devMihai a{
    color: white;
}


/*************** Check Here **************/
.check-here{
    color: white;
}
/**********************************/

/*
input{
    width: 200px;
}


/*
#btn3{
    background-color: purple;
    border-color: purple;
    color: white;
}
*/


/*         Animation           */

.hidden {
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.6s ease-out;
}

.show {
  opacity: 1;
  transform: translateY(0);
}
  */

  .hidden {
    opacity: 0;
    transition: all 1s;
    filter: blur(3px);
    transform: translateY(0px);
}

.show {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0)
}

@media(prefers-reduced-motion){
    .hidden {
        transition: none;
    }
}