:root{
    --text: #000000;
    --background: #ffffff;
    --header: #8f1a3f;
    --static: #778da9;
    --white: white;
    --blue: #007b95;
    --yellow: #FFEB3B;
    --green:#8bd05a;
    --transpgreen:#8bd05aa8;
    --red:#9d0505;
    --transpred:#9d050585;

    
    
}

a{
  text-decoration: none!important;
}
p{
  font-family: sans-serif;
    font-size: clamp(1rem, calc(1rem + 1rem), 1.2rem);

}

ul{
  list-style: square!important;
  text-align: left!important;
}
ol{
  text-align: left!important;
}

section{
  scroll-margin-top: 55px;
  margin-top:55px;
justify-items: center;
}

#third{
  background-color: var(--header);
  color: white;
  padding-bottom: 30px;
}

#third .txt{
  color: unset;
}

.fixed{
  position: fixed;
}

.fixed.right{
  right: 0;
}
.fixed.left{
  left: 0;
}


h1 {
  all: unset;
}

.micon{
  width: 50px;
}

.img100{
  width: 100%;
}

.alignright{
  text-align: right;
}

/*HERO*/

.non {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.heroslideshow-container {
  box-sizing: border-box;

  position: relative;
  max-width: 100%;
  overflow: hidden;
  height: 100vh;


}

.heroslide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}


.active {
  opacity: 1;
}

.caption {
  position: absolute;
  font-family: system-ui;
  top: 40%;
  left: 50%;
  transform: translateX(100%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 10px 20px;
  font-size: 1.5rem;
  white-space: nowrap;
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.22, 1.61, 0.36, 1), opacity 0.8s cubic-bezier(0.22, 1.61, 0.36, 1);
}
.captitle{
  font-size: 50px;
}

.heroslide.active .caption {
  transform: translateX(-50%);
  opacity: 1;
  transition-delay: 1s;
}

/* Responsive Image Handling */
.heroslide img {
  width: 100%;
  height: auto;
  display: block;
  scale: 1.1;
  filter: brightness(0.5);
}

/*.videoContainer{
  height: 50vh;
  overflow: visible;
}*/

.anim{
animation-duration: 25s;
animation-iteration-count: infinite;
}

.fast{
  animation-duration: 20s!important;
}

.anim-left{
  animation-name: moveleft;
}

.anim-wide{
 animation-name: moveleftwide;
}

.anim-right{
  animation-name: moveright;
}

.anim-zoom{
  animation-name: zooom;
}
@keyframes moveleft {
  0% {
      transform: translateX(-60px);
  }
  50%{
      transform: translateX(0px);
  }
  100%{
      transform: translateX(-60px);
  }

}


@keyframes moveright {
  0% {
      transform: translateX(70px);
  }
  50%{
      transform: translateX(0px);
  }
  100%{
      transform: translateX(70px);
  }

}

@keyframes moveleftwide {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(0);
  }

}

@keyframes zooom{
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.5);
  }
  100% {
      transform: scale(1);
  }
}

/*HERO*/

.h100fix{
  height: 100%;
}

/*PRODUCTS*/

/* Style the tab */

.product-container{
  width: 100%;
    height: 400px;

}

.tab {
  float: left;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  width: 40%;
  height: auto;
}

/* Style the buttons inside the tab */
.tab button {
  display: block;
  background-color: inherit;
  color: black;
  padding: 22px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current "tab button" class */
.tab button.active {
  background-color: var(--header);
  color: var(--background);
}

/* Style the tab content */
.tabcontent {
  float: left;
  width: 50%;
  border-left: none;
  height: auto;
  margin-left: 20px;
}

.tabcontent h3{
  font-size: 20px;
}
/*PRODUCTS*/


/*BRANDS*/

.brands-container {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  padding: 10px 0;
}

.brands-wrapper {
  display: flex;
  width: 200%; /* Makes space for two full sets */
  animation: scrollBrands 40s linear infinite;
}

.brand {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 150px;
  padding: 0 15px;
}

.brand img {
  width: 100px;
  height: auto;
  object-fit: contain;
}

.brandname {
  margin-top: 5px;
  font-size: 16px;
  text-align: center;
}

/* Keyframe animation */
@keyframes scrollBrands {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* Moves halfway, ensuring seamless looping */
}

/*BRANDS*/

.google{
  width: 30%;
}

.sorted{
  display: flex;
  align-items: center;
  column-gap: 20px;
  margin-top: 10px;
  text-align: left;
}

#myVideo {
 width: 100%;
}

.green{
  color: var(--green);
}

.blue{
  color: var(--darkblue);
}

.txthighlite{
  display: contents;
  font-size: 1.8rem;
  font-weight: bold;
}

html{
  scroll-behavior: smooth;
}

body{
    width: 100%;
    margin: 0!important;
    padding: 0;
    scroll-behavior: smooth;
    /* background-color: var(--main-bg); */
    /*background-image: linear-gradient(230deg, #ff94de, #00a1ff);*/
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /*height: 120vh;*/
    background-color: var(--background);
   

}

main{
  overflow-x: clip;
  
}



.top{
  display: none;
  background-color: white;
  padding-left: 10px;
  color: black;
}

.toptext p{
  margin-block-start: 3px;
  margin-block-end: 3px;
}

  .top a{
    color: white;
    text-decoration: none;
    font-weight: bold;
  }

  .toptel{
    display: flex;
    align-items: center;
  }
  .topsocial{
    display: none;
  }

  .topicon{
    height: 25px;
    display: inline-flex;
    margin-right: 15px;
  }

  .bgroz{
    background-color: var(--roz);
  }

header{
    top: 0;
    width:100%;
    position: fixed;
    top: 0;
    z-index: 100;
    /*box-shadow: 0px -5px 28px 0px rgb(0 0 0 / 82%);*/
    font-family: sans-serif;
    align-content: center;
    height: 70px;
    backdrop-filter: blur(10px);
    text-align: -webkit-center;

  }
  
  /* Stil implicit */
#mainHeader {
  transition: background-color 0.3s ease;
  background-color: transparent; /* culoare inițială */
}

/* Clasa care se aplică la scroll */
.header-scrolled {
  background-color: rgba(0, 0, 0, 0.8)!important; /* exemplu: fundal semi-transparent negru */
}


.logoHeader{
    grid-area: logo;
    width: 200px;
    height: 65px;
    background-image: url('../media/logo/logo-head.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    align-self: center;
    text-decoration: none;
    color: none;
}

.brandtitle{
  font-size: 14px;
  margin-left: 120px;
  text-wrap: nowrap;
  font-weight: 400;
  font-style: normal;
  color: white;
  top: 50%;
  position: relative;
  display: none;
  }


.navbar {
    grid-area: menu!important;
    overflow: hidden!important;
    /*background-color: #000000!important;*/
}



#menubtn{
display: contents;
}

.navbar a {
    float: left;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    margin-left: 10px;
    /*font-weight: bold;*/
    color: white;
}


.navbar a:hover {
    /*background-color: black;*/
    color: white;
    transition: 0.5s ease-in-out;

    
}

.icon{
  width: 20px;
    vertical-align: top;
}

.flex-row{
  display: flex;
  flex-direction: row;
}

.flex-col-center{
  display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: center;
}

.logofix{
  width: 50%;
  height: 50%;
  align-self: center;
}

@media screen and (max-width: 500px){

  /*.videoContainer{
    height: 30vh;
    margin-top: 20px;

  }*/
  .serv-card{
    width: 220px!important;
    height: 250px!important;
  }
  .heroslideshow-container {

      width: 100%;
      border-radius: unset;
      height: 100lvh;
    }


  .logofix{
    width: 100%;
    height: unset;
    z-index: 2;
  }
  .framed{
    width: 100vw!important;
    margin: 0px!important;
    border-radius: 0px!important;  
  }
  .caption{
    left: 37%;
    text-wrap: wrap;
  }
  .brands-wrapper {
    animation: scrollBrands 7s linear infinite!important;
  }
  
  .icon{
    width: 35px;
  }
  
}

.height90{
  height: 90vh;
}

.white{
    color: rgb(255, 255, 255)!important;
}
.white-bg{
  background-color: white;
}

.heroslide img{
  width: unset;
  scale: 1;
  height: 100vh;
}

@media screen and (min-width: 1496px){
.videoContainer{
  height: 60vh;
}

  #myVideo {
    width: 100%;
   }

  .heroslide img {
        scale: 1.1;
  }
}


.sidebar {
    height: 100vh;
    width: 0;
    position: fixed;
    z-index: 100;
    top: 0;
    /*left: 0;*/
    right: 0;
    /*background-color: var(--sidebarbg);*/
    overflow-x: hidden;
    transition: 0.7s cubic-bezier(0.68,-0.55,0.27,1.55);;
    padding-top: 60px;
    backdrop-filter: blur(10px);
    background-color: var(--background);
  }
  
  .sidebar a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 1.7rem;
    color: var(--sidebarft);
    display: block;
    transition: 0.3s;
    text-wrap: nowrap;
  }
  
  .sidebar a:hover {
    color: var(--green);
  }
 
  .sidebar .closebtn {
    position: absolute;
    top: 10px;
    right: 29px;
    font-size: 45px;
    margin-left: 50px;
    padding: 0!important;
    /*background: var(--sidebarbg);*/
    border: none;
    color: var(--sidebarft);
  }
  
  .menu-btn {
  visibility: hidden;
  grid-area: menu;
  position: relative;
  text-align: end;
  right: 25px;
  
    
  }
  
  .menu-btn:hover {
    font-weight: bolder;
    color: #2b2c2c;
  }
  
  .menu-btn {
    font-size: 30px;
    cursor: pointer;
    color: white;
    background-color: #ffffff00;
    padding: 10px 0px;
    border-style: none;
  
    
  }

  
  .nav-link{
    width:max-content;
    position: relative;
    transition: 300ms;
    color: var(--text);
    
  }
  
  .nav-link::after{
    width: 0;
    height: 3px;
    background-color: white;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
  }
  
  .nav-link:hover::after{
    width: 100%;
    transition: 300ms ease-in-out;
  }
  

  .navbar a:hover {
      /*background-color: black;*/
      transition: 0.5s ease-in-out;
  
      
  }


  .grid2col{
    display: grid;
    column-count: 2;
    /*align-items*/
    justify-content: center;
    grid-template-areas: 'logo menu';
    align-items: center;
    width: 100%;
}

.flex2col{
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  flex-wrap: nowrap;
  flex-direction: row;
  column-gap: 20px;
}

.flexstart{
  align-items: flex-start;
}

.col2eq {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 20px; /* Optional: spacing between columns */
}

.flexy{
  grid-template-columns: 1fr 1fr; 
}

.col2eq.grid{
    grid-template-areas: 'left right';
}

#intro{
  overflow: hidden;
  clip-path:border-box;
 height: 110vh;
 text-align: left;
 margin-top: -15px!important;
 background-color: black;
}

.heroimg{
  
}

.layer1{
  z-index: 999;
  overflow: hidden;
  position: relative;
  background-color: #ffffff96;
  height: 100vh;
  align-items: flex-start;
  backdrop-filter: blur(10px);
  transform: translateY(100%);
  animation-name: drag-bottom;
  animation-duration: 8s;
}

.cleaner-img {
  width: 100%;
  position: absolute; /* Change to absolute for positioning relative to the container */
  top: 0; /* Set to the top of the container */
  left:0;
  margin: 0; /* Ensure no margin is applied */
  transform: scale(1); /* Keep the scaling as per your preference */
}
.static{
  position: fixed!important;
}

@keyframes drag-bottom {
  0%{
    transform: translateY(0);
  }
  15%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(50%);
  }
  65%{
    transform: translateY(100%);
  }
  100%{
    transform: translateY(100%);
  }
}




.title-container{
      height: 90lvh;
    max-width: 100%;
    position: absolute;
    top: 0;
    display: flex;
        align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 20px;
}

.larger{
  font-size: 26px;
}
.boldtxt{
  font-weight: bold;
}

.titlebox{

  top: 30vh;
  color: var(--white);
  width: 90%;
  left: 5rem;
  overflow: hidden;
}

.premaintitle{
  font-family: "Bebas Neue", sans-serif;
  font-size: 35px;
  animation-name: ffleft;
  animation-duration: 2s;
}
.maintitle{
  font-size: 90px;
  animation-name: ffright;
  animation-duration: 2s;
  font-family: "Bebas Neue", sans-serif;
  color: var(--white);
  

}

.highlite{
  color: black;
  background-color: var(--green);
}

.redtxt{
  color: var(--red);
}

.subtitle{
  font-size: 1rem;
  animation-name: ffleft;
  animation-duration: 3s;
  font-family: sans-serif;
  /*margin-top: -5px;*/
  font-weight: 200;
  font-family: 'Roboto';
}

.buttons{
    width: 100%;

  animation-name: fdin;
  animation-duration: 4s;
}

.buttons p{
  color: white;
}

.buttons a{
  text-decoration: none;
}

@keyframes fdin {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}


@keyframes ffright {
  0% {
    opacity: 0;
    transform: translateX(200px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}

@keyframes ffleft {
  0% {
    opacity: 0;
    transform: translateX(-200px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}

.buttn{
  background-color: transparent; 
  border-style: solid;
  border-width: 2px;
  padding: 10px;
  font-size: 30px;
  transition: 1s;
  font-family: "Bebas Neue", sans-serif;
  width: 150px;
  margin-right: 10px;
  margin-top: 10px;
  /*border-radius: 30px;*/
}

.fullwbutton{
  width: 100%!important;
}

.buttnwhite{
  border-color: white;
  color: var(--text);
  background-color: white;
}

.buttnblue{
  border-color: var(--green);
  color: var(--background);
  background-color: var(--text);
}

.buttnalert{
  border-color: white;
  color: white;
  background-color: var(--transpred);
}

.buttngreen{
  border-color: white;
  color: white;
  background-color: var(--transpgreen);
 
}

.bttn{
  border-color: var(--green);
  color: var(--white)!important;
  background-color: var(--text);
}

.buttnblack{
  border-color: none;
  color: var(--background);
  background-color: var(--text);
}

.buttnblacktransp{
  background-color: #0000009e!important;
}

.buttnwhitetransp{
  background-color: #ffffff7d!important;
}

.buttnblackcost{
border-color: var(--green);
color: var(--background);
background-color: var(--text);
}

.buttnblackcost:hover{
  background-color: var(--green);
  color: black;
}

.buttnwhite:hover{
  background-color: black;
  color: white;
}

.buttnblack:hover{
  background-color: unset;
  color: white;
}

.buttnblue:hover{
  background-color: unset;
  color: rgb(0, 0, 0);
}

.bttn:hover{
  background-color: unset;
  color: var(--text)!important;
}

.buttnblue img {
  filter: invert(0);
  transition: filter 0.3s ease; /* smooth transition */
}

.buttnblue:hover img {
  filter: invert(1);
}

.bttn img {
  filter: invert(0);
  transition: filter 0.3s ease; /* smooth transition */
  width: 25px;
  height: 25px;
  margin-right: 3px;
}

.bttn:hover img {
  filter: invert(1);
}

.flexb{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.flex-end{
  justify-content: flex-end;
}

#order-buttons a{
  text-decoration: none!important;
}

.buttn img{
  width: 25px;
  height: 25px;
  margin-right: 7px;
}

.buttnwhite img {
  filter: invert(1);
  transition: filter 0.3s ease; /* smooth transition */
}

.buttnwhite:hover img {
  filter: invert(0);
}



.imgcrop{
  width: 100%;
  left: 3rem;
  /* position: absolute; */
  position: relative;
  top: 4.2em;
  /*animation-name: hello2;
  animation-duration: 10s;
*/
  }


  .imgcrop2{
    width: 400px;
    opacity: 0.3;
    left: 3rem;
    /* position: absolute; */
    position: relative;
    top: 4.2em;
    /*animation-name: hello2;
    animation-duration: 10s;
  */
    }
  

  #resizeImage {
    transition: transform 0.1s ease-out; /* Smooth transition */
    transform-origin: center;
  }
  

  #resizeImage2 {
    transition: transform 0.1s ease-out; /* Smooth transition */
    transform-origin: center;
    rotate: -30deg;
  }

@keyframes hello2 {
  0% {
    opacity: 0;
    width: 140%;
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    width: 100%;
  }
}



.eimgcont::before{
  position: absolute;
  content: '';
  left: 25px;
  top: 74em;
  right: 83em;
  bottom: -61.4em;
  height: auto;
  width: auto;
  border: 21px solid;
  color: var(--blue);
}

.imgcont{
  width: 70%;
  left: 0;
  box-sizing: border-box;
  border-style: solid;
  border-width: 24px;
  /* height: 76%; */
  border-color: red;
}

.frame{
  width: 63%;
  /* height: 123%; */
  transform: scaleY(1.5);
  position: relative;
  top: 6em;
  left: 2em;
}

.w100{
  width: 100%;
  height: auto;
}

.presectitle{
  font-family: sans-serif;
  font-size: 1rem;
}
.secttitle{
  font-family: "Oswald", sans-serif;
  font-size: 35px;
}

.textbox{
  font-family: sans-serif;
  text-align: center;
}

.mask1 {
  position: relative;
  overflow: hidden;

  -webkit-mask-image: url(../media/logo/large_bk.webp);
  mask-image: url(../media/logo/large_bk.webp);
  mask-repeat: no-repeat;
  /*mask-size: cover; /* or contain, as needed */
  mask-position: center;
  width: 300px;
    height: 195px;
   
  /*animation: scaleMask 6s ease-in-out infinite alternate;*/

}

@keyframes scaleMask {
  0% {
    mask-size: 100%;
    -webkit-mask-size: 100%;
  }
  100% {
    mask-size: 1100%;
    -webkit-mask-size: 1100%;
  }
}

.imgfixmask {
  position: fixed; /* Lock to viewport */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover; /* Cover the viewport */
  z-index: -1; /* Send behind mask container content */
}


.pad20{
  padding: 20px 20px 20px 20px;
}

.pad40{
  padding: 90px 20px 0px 20px;
}

.pad20LR{
  padding: 0px 20px 0px 20px;
}
.pad20B{
  padding: 10px 0px 20px 0px;
}

#about{
  /*padding-top: unset;*/
  padding-bottom: unset;
display: flex;
align-items: center;
justify-content: center;

}

.image-cont{
/*background-image: url(../media/images/about.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    /* width: auto; */
    height: auto;
}
.image-cont img{
  width: 100%;
    margin-top: -60px;
    z-index: -1;
    position: relative;
}

.section50-100{
  width: 50%;
}

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


.row{
  text-align: center;
    font-size: 1rem;
    font-family: "Bebas Neue", sans-serif;
    margin-top: 0px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    padding: 10px 0px 30px 0px;
  
}

.counternr{
  font-size: 30px;
}

.gradient1{
/* background: linear-gradient(45deg,#eee,#62cdff);
 background-clip: text;
 -webkit-text-fill-color: transparent;
 -moz-text-fill-color: transparent;
 -webkit-background-clip: text;
 -moz-background-clip: text;*/
 color: var(--red);
}

.price{
  font-size: 30px!important;
  font-weight: bold!important;
  text-align-last: end;
  color: var(--bronze);
}

.smtxt{
  font-size: 15px;
  font-weight: normal;
  font-size: 15px;
  font-weight: normal;
  display: inline-flex;
  text-align: end;
}

.services{
  justify-content: space-around!important;
  flex-wrap: wrap;
  font-size: 40px;
  font-family: "Bebas Neue", sans-serif;

}

#services-front{
  padding-bottom: 30px;
}

.services p{
  display: flex;
  align-items: center;
  flex-direction: column;
}

.sec-snap{
  /*scroll-snap-align: start;
  min-height: 100vh;*/
}

.icon-sm{
  width: 100px;
  height: 100px;
  /*filter: invert(55%) sepia(1%) saturate(7474%) hue-rotate(358deg) brightness(90%) contrast(119%);
  */
  transition: 1s ease-in-out;
}

.icon-sm:hover{
  filter: invert(42%) sepia(11%) saturate(7418%) hue-rotate(183deg) brightness(56%) contrast(119%);

}


.poscol {
  width: 100%;
  height: 500px;
  background-color: rgba(0, 0, 0, 0.52);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-evenly;
  position: relative;
  z-index: 2;
}


.pos{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  
}

#echipament{
  color: var(--white);
}

.light-background {
  background-color: var(--roz);
}

.dark-background {
  background-color: black;
}

/* Ensure the gallery uses the full width of the page */
.flexsection {
  display: flex;
  /*width: 100%;*/
  flex-direction: row;
}

.gallery-container {
  display: flex;
  flex-wrap: wrap; /* Enable wrapping */
  gap: 25px; /* Space between pictograms */
  justify-content: center; /* Center items in the container */
  /*height: 55vh;*/
}

/* Styling each pictogram */
.pictogram {
  flex: 1 1 200px;
  max-width: 247px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  filter: grayscale(1);
  transition: 1s ease-in-out;
}

.pictogram:hover{
  filter: none;
}

.pictogram img {
  width: 180%; /* Adjust icon size within the pictogram */
  height: auto;
}

.white-box{
  /*background-color: white;*/
  /* width: 40%; */
  /*padding: 30px;*/
  /* position: relative; */
  top: -30em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.white-box p {
  font-family: sans-serif;
}

footer{
  
  padding: 10px;
  font-family: sans-serif;
  color: black;
}

.footergrid{
  display: flex;
  flex-direction: row;
  align-content: flex-start;
  align-items: flex-start;
  justify-content: space-evenly;
  width: 100%;
  column-gap: 30px;
  
}

.underline{
  text-decoration-line: underline;
}

.boxf{
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: flex-start;
}

.boxf a{
  text-decoration: none;
  color: black;
  margin-top: 5px;
}


.social{
  text-align: center;
}

.socialico{
  width: 40px;
}

.credits{
  text-align: center;
}

.netopialogo{
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.netopia{
  width: 120px;
}

.flexcolumnmobile{
  flex-direction: column;
  align-items: center;


}


/*CHECKBOX*/
.containercheck {
  display: flex;

  /* display: block; */
  position: relative;
  /*padding-left: 35px;*/
  /* margin-bottom: 12px; */
  cursor: pointer;
  font-size: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  color: var(--text);
}
/* Hide the browser's default checkbox */
.containercheck input {
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: relative;
  /* top: 0; */
  right: -10px;
  height: 25px;
  width: 25px;
  background-color: #ffffff;
  border-radius: 8px;
  border-style: solid;
  border-width: 1px;
}

/* On mouse-over, add a grey background color */
.containercheck:hover input ~ .checkmark {
background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.containercheck input:checked ~ .checkmark {
background-color: var(--text)
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
content: "";
position: absolute;
display: none;
}

/* Show the checkmark when checked */
.containercheck input:checked ~ .checkmark:after {
display: block;
}

/* Style the checkmark/indicator */
.containercheck .checkmark:after {
left: 9px;
top: 5px;
width: 5px;
height: 10px;
border: solid white;
border-width: 0 3px 3px 0;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}

/*CONSENT*/

.concentcenter{
  align-items: center;
  display: flex;
  flex-direction: column;
  align-content: center;
  

}

.background-popup {
  display: none;
  position: fixed;
  background-color: rgb(0 0 0 / 50%);
  width: 500%;
  height: 500%;
  top: 0;
  left: 0;
  opacity: 0.7;
  z-index: 999;
  transition-duration: 0.3s;
}

#cookiestxt{
  padding: 10px;
  height: 35vh;
  overflow-y: scroll;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  text-align: justify;
  margin-bottom: 15px;
  width: 100%;
}

.cookie-consent-banner {
  display: none;
  position: fixed;
  flex-direction: column;
  justify-content: space-around;
  align-content: space-between;
  align-items: center;
  width: 80%;
  height: auto;
  bottom: 0;
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  color: black;
  padding: 15px;
  font-size: 14px;
  text-align: center;
  z-index: 1000;

}

.cookie-consent-button {
  border: none;
  padding: 8px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  margin: 10px 10px;
  cursor: pointer;
  border-radius: 4px;
  width: 17rem;
}

.cookie-consent-button:hover {
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.cookie-consent-button:active {
  opacity: .5;
}

.cookie-consent-button.btn-success {
  background-color: var(--text);
  color: var(--white);
}

.cookie-consent-button.btn-grayscale {
  background-color: #000000;
  color: rgb(255, 255, 255);
}

.cookie-consent-button.btn-outline {
  background-color: var(--text);
  color: var(--white);
}

.cookie-consent-button.btn-config{
  background-color: white;
  color: black;
  border-style: solid;
  border-color: black;
}

.cookie-consent-options {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
  margin-top: 20px;
  row-gap: 20px;
}

.cookie-consent-options label {
  margin: 0 10px;
  font-size: 14px;
}

.cookie-consent-options input {
  margin-right: 5px;
}



/*EZ ITT*/
.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
  grid-template-rows: repeat(3, auto);   /* 3 rows */
  gap: 10px;                             /* Space between grid items */
  
  /* Define the areas */
  grid-template-areas: 
    "one two three four"
    "five a a six"
    "seven eight nine zero";
}

/* Assign each item to its grid area */
.item-1 { grid-area: one; }
.item-2 { grid-area: two; }
.item-3 { grid-area: three; }
.item-4 { grid-area: four; }
.item-5 { grid-area: five; }
.item-a { grid-area: a; }
.item-6 { grid-area: six; }
.item-7 { grid-area: seven; }
.item-8 { grid-area: eight; }
.item-9 { grid-area: nine; }
.item-0 { grid-area: zero; }

/* Optional styling for items */
.item img {
  width: 100%;
  height: auto;
  display: block;
}

.item img::before{
  content: '';
  width: 100%;
  height: auto;
  color: #ef233c;
}

.item-a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #ffffff;
  text-align: center;
}

#contact{
  overflow: hidden;
}

.txt{
    font-size: clamp(1rem, calc(1rem + 1rem), 1.3rem);
font-family: sans-serif;
color: var(--text);
}

.sec-porto{
    background-image: url(../media/images/lens.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 300px;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.sec-porto .content{
    /* background-color: #00000070; */
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px;
    text-align:-webkit-center;
} 

.servtxt{
font-size: 40px;
}

.eqtitle{
  font-size:unset;
}

.faq button{
  font-size: 1.4rem;
  font-weight: 900;
}

.accordion {
  color: var(--text);
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  background: none;
  /*font-size: 1.3rem;
  font-weight: bolder;*/
}

/*.active,*/ .accordion:hover {
  background-color: var(--text);
  color: white;
}

.panel {
  padding: 0 18px;
  background-color: #ffffff;
  /*display: none;
  overflow: hidden;*/
  color: rgb(0, 0, 0);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.panel.open {
  overflow: visible; /* Ensure content is visible after expansion */
}

.flex-panel{
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 20px;
}
.overflow{
  overflow: hidden;
}

.responsive{
  flex-direction: row;
}

.accordion:after {
  content: '\02795'; 
  font-size: 13px;
  color: #ffffff;
  float: right;
  margin-left: 5px;
  display: none;
}

.accordion.active:after {
  content: "\2796"; 
}

.side-icons{
  position: fixed;
    right: 0px;
    bottom: 40px;
    opacity: 0.5;
    display: none;
}


.sdi{
  width: 33px;
  height: auto;
  background-color: var(--red);
  margin-top: 3px;
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.side-icons img{
  width: 30px;
}

form{
  display: flex;
  flex-direction: column;
  /*width: 40%;*/
  /*background-color: #575f81;*/
  padding: 10px;
  border-radius: 10px;
  row-gap: 15px;
  font-family: sans-serif;
  pointer-events: auto; /* Ensure inputs are clickable */
}

#priceCalculatorForm{
  pointer-events: auto; /* Ensure inputs are clickable */
  z-index: 1000;

}

.contactForm{
  display: flex;
  flex-direction: column;
  font-family: sans-serif;
}

.cform{
  width: 50%;
}

.radius{
  border-radius: 20px;
}

.input-black{
  color: black;
  border-color: black;
}

#numar{
  text-transform: uppercase;
}


input[type=text],textarea,select,input[type=number],input[type=tel],input[type=email]
{
  /*border-radius: 5px;*/
  background-color: unset;
  border-bottom: solid;
  /*border-color: white;*/
  border-width: 0px 0px 1px 0px;
  /*color: white;*/
  font-size: 1.3rem;
  margin-top: 10px;

}

.inputgreen{
  border-color: var(--text);
  color: var(--text);
}

select option {
  padding: 10px; /* Inner spacing */
  background-color: #ffffff; /* Option background */
  color: #333333; /* Text color */
}
select option:hover{
  background-color: var(--green);
}

/* Placeholder styling */
input::placeholder {
  color: white; /* Text color */
  opacity: 1; /* Ensure visibility (some browsers reduce opacity) */
}

#priceCalculatorForm input::placeholder{
  color: black;
}

/* Placeholder focus styling */
input:focus::placeholder {
  color: white); /* Change color on focus */
  font-style: normal; /* Remove italic */
}

.alignselfright{
  align-self: end;
}

.txtcenter{
  text-align: center!important;
}

.lighttxt{
  color: var(--white);
}
.darktxt{
  color: var(--blue);
}

.cont-link{
  color: var(--text);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
}

.invert{
  filter: invert(1);
}


.sep{
    font-weight: 900;
    font-size: 2em;
    padding: 5px;
    font-family: "Oswald", sans-serif;
}


/*Menu slider*/
.menuSlider {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 350px;
  overflow-x: auto;
  overflow-y: hidden;
  column-gap: 20px;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  padding: 0px 20px 0px 20px;
}

/* Hide scrollbar for Webkit (Chrome, Safari) */
.menuSlider::-webkit-scrollbar {
  display: none;
}

.meniu {
  width: 240px;
  height: 300px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

/*.meniu img {
  height: 80%;
  object-fit: cover;
  border-radius: 15px;
  pointer-events: none;
}
  */

  .menu-picture{
    height: 80%;
    object-fit: cover;
    border-radius: 15px;
    pointer-events: none;
    /* width: 100%; */
    overflow: hidden;
    display: flex;
    justify-content: center;
  }
  
  

.meniuName {
  padding: 5px;
  font-weight: bold;
  font-family: sans-serif;
}

.meniuDesc {
  padding: 3px;
  display: none;
  font-family: sans-serif;
}

.menuImgCont {
  width: 300px;
  height: 200px;
  object-fit: cover;
  display: contents;
}
/*Menu slider*/

/*GALLERY*/
 /* Basic styles for gallery */
 .gallery-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gal-title{
  background-color: #ffffff;
  position: absolute;
  margin-top: -43px;
  font-size: 1.2rem;
  font-family: arial;
  color: #000000;
  padding: 3px;
  width: 140px;
}


.gallery-item {
  display: inline-block;
  margin: 10px;
  text-align: center; /* Center the caption under the image */
}

.gallery-item img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  filter: grayscale(1);
  transition: 1s ease-in-out;
  

}

.gallery-item img:hover{
  filter: unset;
}


.gallery-caption {
  margin-top: 8px;
  font-size: 14px;
  color: #333;
}

/*TESTIMONIAL SLIDER*/
/* Ensure the slider only shows one slide at a time */
.slider-container {
  position: relative;
  width: 100%;
  max-width: 600px; /* Adjust as needed */
  overflow: hidden; /* Hide other slides */
  margin: auto; /* Center the slider */
}

/* Make slides appear in a row */
.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

/* Ensure each slide takes full width */
.slide {
  flex: 0 0 100%;
  min-width: 100%; /* Ensure slide width */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

.cor{
  margin-left: unset;
}

@media screen and (max-width:500px) {
  .section50-100{
  width: 100%;
}
  .grid2col{
        justify-content: space-between;

  }
  .slide{
      flex-direction: column;
  }
}

.slide img {
  width: 100px;
  height: auto;
  transition: transform 1.5s ease, opacity 1.5s ease;
  transform: translateY(-100%);
  opacity: 0;
  border-radius: 50%;
  border-style: solid;
  border-color: var(--green);
}

.slide.active img {
  transform: translateY(0);
  opacity: 1;
}

.slide-text {
  padding: 10px;
  text-align: center;
  width: 70%;
}
.prev-btn, .next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 25px;
  color: grey;
  font-weight: 700;
}
.prev-btn {
  left: -6px;
}
.next-btn {
  right: -6px;
}

.reviewtitle{
  font-size: 1rem;
}

.review{
  font-style: italic;
}

.author{
  font-weight: bold;
}


/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.modal img {
  max-width: 100%;
  max-height: 100%;
 
}

#modalImage {
  transition: opacity 0.3s ease-in-out; /* Adjust the duration to match the fade-out time */
  opacity: 1; /* Default state is fully visible */
}


#modalImage.fade-in {
  opacity: 1; /* Show the image with a fade-in */
}


.thumbnails {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
  flex-direction: row;
}

.thumbnails img {
  width: 50px;
  height: 50px;
  cursor: pointer;
  opacity: 0.6;
}

.thumbnails img.active {
  border: 2px solid #fff;
  opacity: 1;
}

.modal-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.modal-controls button {
  background-color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  opacity: 0.7;
}

.modal-controls button:hover {
  opacity: 1;
}

.black{
  color: #000000;
}


.txt-just{
  text-align: justify;
}

.success-message {
  padding: 10px;
  align-items: center;
  border-style: solid;
  background-color: #d4ff92;
  border-radius: 8px;
  border-width: 1px;
}

.error-message {
  padding: 10px;
  align-items: center;
  border-style: solid;
  background-color: #f4a4a4;
  border-radius: 8px;
  border-width: 1px;
}

/*Animation*/

.blackbg{
  background: #000;
}

.reveal {
  position: relative;
  opacity: 0;
}

.menureveal {
  position: relative;
  opacity: 0;
}

.menureveal.d1 { animation-delay: 0.2s; }
.menureveal.d2 { animation-delay: 0.4s; }
.menureveal.d3 { animation-delay: 0.6s; }
.menureveal.d4 { animation-delay: 0.8s; }
.menureveal.d5 { animation-delay: 1s; }
.menureveal.d6 { animation-delay: 1.2s; }
.menureveal.d7 { animation-delay: 1.4s; }


.reveal.active {
  opacity: 1;
}


.menureveal.active {
  opacity: 1;
}



.reveal.active.fade-bottom {
  animation: fade-bottom 0.5s ease-in forwards;
  animation-fill-mode: both;
}
.reveal.active.fade-left {
  animation: fade-left 0.5s ease-in;
}
.reveal.active.fade-right {
  animation: fade-right 0.5s ease-in;
}
.reveal.active.zoom {
  animation: zoom 1s ease-in;
}

.menureveal.active.fade-right {
  animation: fade-right-menu 0.7s cubic-bezier(0.4, 0, 1, 0.9);
}

.slidex{
  animation: fade-right-menu 0.8s cubic-bezier(0.73, 0.02, 0.77, 1.42);
}

.delay1{
  animation-delay: 1s;
}

.delay2{
  animation-delay: 2s;
}

@keyframes fade-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-left {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-right {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-right-menu {
  0% {
    transform: translateX(600px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes zoom {
	0% {
		opacity: 0;
		transform: scale(0.6);
	}
  85% {
		opacity: 1;
		transform: scale(1.3);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}

.flyin{
 animation-name: flytitle ;
 animation-duration: 1s;
 animation-delay: 2.5s;
 animation-iteration-count: 1;
 }

 @keyframes flytitle {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
 }

.flex-wrap{
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: space-around;
  align-items: center;
}

#result {
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 20px;
  font-family: sans-serif;
}
#orderForm {
  display: none;
  margin-top: 20px;

}

#offer h1,h2,h3{
  font-family: sans-serif;
}

label{
  align-self: baseline;
}

.offer-img{
  width: 100%;
}

.flex {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  align-content: center;
  flex-direction: row;
}

.flex > * {
  flex: 1; /* Ensures all child elements have equal width */
  text-align: center; /* Optional: Centers text/content inside columns */
}

.dwidth{
  width: 50%;
}

.slideshow {
  width: 100%;
  /*height: 500px; /* Adjust as needed */
  overflow: hidden;
  position: relative;
  filter: grayscale(1);
  transition: 1s ease-in-out;
}

.slideshow:hover{
  filter: grayscale(0);
}

.slideshow-container {
  display: flex;
  width: 100%;
  height: 100%;
  animation: slide 15s infinite;
}

.slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  scale: 1!important;
}

@keyframes slide {
  0% { transform: translateX(0); }
  16.66% { transform: translateX(0); }   /* Stay on first image */
  20% { transform: translateX(-100%); }
  36.66% { transform: translateX(-100%); }  /* Stay on second image */
  40% { transform: translateX(-200%); }
  56.66% { transform: translateX(-200%); }  /* Stay on third image */
  60% { transform: translateX(-300%); }
  76.66% { transform: translateX(-300%); }  /* Stay on fourth image */
  80% { transform: translateX(-400%); }
  96.66% { transform: translateX(-400%); }  /* Stay on fifth image */
  100% { transform: translateX(0); } /* Loop back to first image */
}





/*Before-After*/

.before-after-container {
  position: relative;
  width: 100%;
  /*max-width: 800px;*/
  height: 400px;
  margin: auto;
  overflow: hidden;
}

.before, .after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.before img, .after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.after {
  clip-path: inset(0 50% 0 0);
}

.divider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  /*background-color: white;*/
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 50px 0px 50px;
}

.divider .handle {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  font-size: 30px;
  padding: 5px;
  border-radius: 50%;
  pointer-events: none;
  animation: pulse-white 2s infinite;
  position: absolute;
  left:-25px;
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;

}


.icon-mini{
  width: 30px;
  height: 30px;
}

@keyframes pulse-white {
  0% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  
  70% {
      transform: scale(1);
      box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  
  100% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.flex50{
  flex-basis: 50%;
}

.framed{
  overflow: hidden;
}

/**TESTIMONIALS*/
.responsive-quote {
  max-width: 70%;
  position: relative;
  margin: 25px 0;
  padding: 20px;
  background-color: var(--quote-bg-color);
  border-radius: 16px;
}


.responsive-quote.color1{
  background-color: #d4ff92;
}

.responsive-quote.color2{
  background-color: #f8f29e;
}

.responsive-quote.color3{
 background-color: wheat;
}


.responsive-quote::before {
  content: url("data:image/svg+xml,%3Csvg class='quote-svg' xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M7.56863 4H4.43137C2.56863 4 1 5.6 1 7.5V10.8C1 12.7 2.56863 14.3 4.43137 14.3H6.78431C7.56863 14.3 8.35294 14 9.03922 13.6V15.7C9.03922 17 8.05882 18 6.78431 18H5.21569C4.62745 18 4.23529 18.4 4.23529 19C4.23529 19.6 4.62745 20 5.21569 20H6.78431C9.13725 20 11 18.1 11 15.7V10V7.5C11 5.6 9.43137 4 7.56863 4Z'%3E%3C/path%3E%3Cpath d='M19.6638 4H16.4299C14.5679 4 13 5.6 13 7.5V10.8C13 12.7 14.5679 14.3 16.4299 14.3H18.7818C19.5658 14.3 20.3497 14 21.0357 13.6V15.7C21.0357 17 20.0557 18 18.7818 18H17.2138C16.6259 18 16.2339 18.4 16.2339 19C16.2339 19.6 16.6259 20 17.2138 20H18.7818C21.1337 20 22.9956 18.1 22.9956 15.7V10V7.5C23.0936 5.6 21.5257 4 19.6638 4Z'%3E%3C/path%3E%3C/svg%3E");
  position: absolute;
  top: -10px;
  left: -10px;
  transform: scale(2);
  opacity: 0.1;
}

.responsive-quote::after {
  content: url("data:image/svg+xml,%3Csvg class='quote-svg' xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M7.56863 4H4.43137C2.56863 4 1 5.6 1 7.5V10.8C1 12.7 2.56863 14.3 4.43137 14.3H6.78431C7.56863 14.3 8.35294 14 9.03922 13.6V15.7C9.03922 17 8.05882 18 6.78431 18H5.21569C4.62745 18 4.23529 18.4 4.23529 19C4.23529 19.6 4.62745 20 5.21569 20H6.78431C9.13725 20 11 18.1 11 15.7V10V7.5C11 5.6 9.43137 4 7.56863 4Z'%3E%3C/path%3E%3Cpath d='M19.6638 4H16.4299C14.5679 4 13 5.6 13 7.5V10.8C13 12.7 14.5679 14.3 16.4299 14.3H18.7818C19.5658 14.3 20.3497 14 21.0357 13.6V15.7C21.0357 17 20.0557 18 18.7818 18H17.2138C16.6259 18 16.2339 18.4 16.2339 19C16.2339 19.6 16.6259 20 17.2138 20H18.7818C21.1337 20 22.9956 18.1 22.9956 15.7V10V7.5C23.0936 5.6 21.5257 4 19.6638 4Z'%3E%3C/path%3E%3C/svg%3E");
  position: absolute;
  bottom: -10px;
  right: -10px;
  transform: scale(2) rotate(180deg);
  opacity: 0.1;
}
.responsive-quote p {
  font-size: calc(16px + 0.25vw);
}

.responsive-quote cite {
  font-size: calc(14px + 0.25vw);
}

.imgfix{
  width: 150%;
}


/*SERVICES CONT*/
.servbox{
  display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      row-gap: 20px;
      column-gap: 20px;
      z-index: 2;
}

.serv-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  align-content: center;
  width: 120px;
  text-align: center;
overflow: hidden;
    /*border-radius: 30px 30px 30px 30px;*/

    border-style: solid;
    border-color: black;
    border-width: 2px;
    /*background-color: #5c5c5cd9;*/
    color: black;
    padding: 25px;
    backdrop-filter: blur(10);
    height: 200px;
    
}
.border-top-left{
    border-radius: 0px 30px 30px 30px!important;
}

.border-bottom-right{
    border-radius: 30px 30px 0px 30px!important;

}

.serv-card img{
  width: 50%;
  margin-bottom: 20px;
}
.serv-card h3{
  margin: 0px 5px 0px 5px;
}

.serv-card p{
  margin: 3px 5px 3px 5px;
}

.serv-card .buttn{
  font-size: 20px;
}
.serv-card a{
  text-decoration: none;
}

/* Animation delays for each card */
.servbox .card:nth-child(1) {
  animation-delay: 0.1s;
}
.servbox .card:nth-child(2) {
  animation-delay: 0.2s;
}
.servbox .card:nth-child(3) {
  animation-delay: 0.3s;
}
.servbox .card:nth-child(4) {
  animation-delay: 0.4s;
}
.servbox .card:nth-child(5) {
  animation-delay: 0.5s;
}
.servbox .card:nth-child(6) {
  animation-delay: 0.6s;
}

.card-link{
  text-decoration: none!important;
  filter: invert(0);

}

.card-link:hover{
  filter: invert(1);
  background-color: white;
  transition: 1s ease-out;  
}
/**/




.colorbox{
    background: #00000033;
    color: #ffffff;
    width: 40%;
    height: fit-content;
    padding: 20px;
    padding: 20px;
    margin-right: 1%;
    border-color: #0000008c;
    border-style: solid;
    border-width: 1px;
    backdrop-filter: blur(10px);
}

.enum{
display: flex!important;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
    font-family: sans-serif;
}

.enum img{
  width: 70px;
  height: 70px;
}
.enum .bold{
  font-weight: bold;
    font-size: 1.3rem;
}


.transp-layer{
      position: relative;
    top: -20%;
    background-color: #bb276d6e;
    width: fit-content;
    padding: 15px;
    color: white;
    backdrop-filter: blur(10px);
    border-radius: 0px 20px 0px 0px;
}

/*--------PARALLAX*/
/* CSS */
.parallax-section {
  position: relative;
  overflow: hidden;
  height: 100vh;
  background-color: black;
}

.parallax-bg {
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 150%; /* puțin mai mare pentru efect */
  will-change: transform;
}
.nunta{
    background-image: url('../../servicii/videograf-nunta/wedding2.jpg');
}

.corporate{
    background-image: url('../../servicii/videograf-evenimente-corporate/corporate4.jpg');
    filter:opacity(0.5);
}

.streaming{
    background-image: url('../../servicii/transmisie-online/transmisie.jpg');
    filter:opacity(0.5);
}

.portfoliu{
    background-image: url('../../portofoliu/portofoliubg.jpeg');
    filter:opacity(0.5);
}

.contact-bg{
    background-image: url('../../contact/contact4.jpeg');
    filter:opacity(0.5);
}

.despre{
    background-image: url('../../despre/despre.jpeg');
    filter:opacity(0.5);
}
.servicii-bg{
    background-image: url('../../servicii/servicii.jpeg');
    filter:opacity(0.5);
}

.parallax-section .content {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  padding-top: 38vh;
}

.center-self{
  place-self: center;
}

.sect-reset{
  scroll-margin-top: 0px!important;
  margin-top: 0px!important;

}

#portfolio{
background-image: url(../media/images/portfolio.webp);
    background-size: cover;
    background-repeat: no-repeat;
    height: 115lvh;
    background-position: center;
    /* position: static; */
    display: flex;
    justify-content: flex-end;
    align-items: center;
    filter: grayscale(1);
    transition: 1s ease-in-out;
}

.inverted{
  filter: grayscale(0)!important;
}

.content a {
  text-decoration: none;
}
/*--------PARALLAX*/

.dotrem li{
  list-style: none;
}

/*VIDEO CONTAINER*/
.videoContainer{
  height: 60vh;
overflow: hidden;
position: relative;
z-index: -1;
}

.videoContainer .title{
  color: white;
  background-color: rgba(0, 0, 0, 0.379);
  position: absolute;
  bottom: 0;
  z-index: 1;
}

.videoContainer video{
  width: 100%;
  height: unset;
  position: fixed;
  top: 0;
  left: 0%;
}
/*VIDEO CONTAINER*/

table{
  display: flex;
text-align: center;
border-spacing: 20px;
justify-content: center;
}
table, th, td{
border-collapse: unset!important;
border: none!important;
}
.prices{
  overflow-x: scroll;
}

/*SCROLLBAR*/
::-webkit-scrollbar {
  width: 0px;
}

/*SCROLLBAR*/

.gen-container{
width: 70%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;

}

.eqcolflex{
flex:1;
}

@media screen and (min-width: 500px) and (max-width: 1495px) {
  
  .flex50{
    flex-basis: 50%;
  }


.heroslide img {
  width: 100%;
  height: auto;
  display: block;
  scale: 1.1;
}

  .flex-wrap{
  flex-direction: column;
}

.portre{
      top: unset;
      position: absolute;
      width: 50%;
      right: 2rem;
      animation-name: hello;
      transform: scale(0.8);
      bottom: -165px;
}


  .txt{

    }
    
  .servtxt{
    font-size: 25px;
    }
  .navbar a{
    font-size: 15px;
  }
  .titlebox{
    top: 20vh;
    width: 90%;
  }

  .maintitle{
    font-size: 60px;
  }
  .subtitle{
    font-size: 1rem;
  }

  .buttn{
    font-size: 1.5rem;
  }
}

  @media screen and (max-width: 500px){
.gen-container{
width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;

}
.image-cont{
  width: 100%;
  height: 100%;
}

    .buttons a{
      width: 100%;
    }
    .imgfix{
      width: 100%;
    }
    .flexy{
      grid-template-columns: unset; 
    }

    .videoContainer{
      height: 40lvh;
    }
    .videoContainer video{
      width: unset;
      height: 100%;
      left: -130%;
    }
  
    .parallax-bg {
          }

    .parallax-bg h1 {
 
    }


    .cor{
      margin-left: -250px;
    }

    .flex50{
      flex-basis: unset;
    }
    

    .heroimg{
      right: -58vw!important;
      bottom: -12lvh;
      height: 80%!important;

    }

    #myVideo {
      width: 100%;
      scale: 1.5;
    }    
    .dwidth{
      width: 100%;
    }
    
    .responsive{
      flex-direction: column;
    }
    

    .flex{
      flex-direction: column;
    }

    .flex-wrap{
      flex-direction: column;
    }

    #intro{
      height: 102lvh;
    }
    .maintitle{
      font-size: 70px;
    }
    .subtitle{
      font-size: 1rem;
    }
    .portre{
      top: unset;
      position: fixed;
      min-width: unset;
      max-width: unset;
      width: 100%;

      right: -1rem;
      animation-name: hellosm!important;
      animation-duration: 12s;
      bottom: -52px;
    }

    @keyframes hellosm {
      0% {
        opacity: 0;
        width: 120%;
      }
      35% {
        opacity: 1;
      }
      100% {
        opacity: 1;
        width: 100%;
      }
    }
    
    
    .herobg{
      max-width: 128%;
      transform: scale(1.5);
      top: 179px;
      position: relative;
    }
    .buttn{
      font-size: 1.5rem;
    }
    .titlebox{

      top: 22vh;
      width: 85%;

      overflow: hidden;


    }
    .navbar{
      display: none!important;
  }
  .menu-btn{
      visibility: visible!important;
  }

  .flex2col{
    flex-direction: column;
  }
  .txt{
  }  


  .icon-sm{
    width:60px;
    height:60px;
  }

  .servtxt{
    font-size: 18px;
  }

  .imgcont{
    width: 28%;
    left: 0;
    box-sizing: border-box;
    border-style: solid;
    border-width: 12px;
    /* height: 76%; */
    border-color: red;
  }

  .imgcrop{
    width: 50%;
    top: 1.2em;
  }

  .pictogram{
    max-width: 100px;
  }

  .white-box{
    width: unset;
    position: unset;
  }

  .gallery-container{
    height: unset;
  }

  .imgcrop2{
    width: 200px;
    position: unset;
  }
 .eqtitle{
  font-size: 15px;
 } 
 .flexsection{
  flex-direction: column;
  row-gap: 15px;
 }

 .cform{
  width: 100%;
}

.gallery-item img{
  width: 350px;
  height: 250px;
  
}
  .respw90{
    width: 90%;
  }
  .portfolio-container{
      row-gap: 3rem;
}

.youtube-placeholder {
  position: relative;
  width: 100%;
  max-width: 560px;
  cursor: pointer;
  background: #000;

  /* Aspect ratio fix */
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}
}

@media screen and (min-width:1900px) {
  .heroslide img{
    scale: 1.3;
  }
  .heroslideshow-container{
    height: 90lvh;
  }
  .framed img{
    scale: 1.7;
  }
  .videoContainer{
    /*margin-top: 20px;*/
  }
  #contact{
    margin-top: 50px;
  }
}



.breadcrumb{
  font-family: sans-serif;
    display: flex;
    color: black;
    padding: 10px;
    display: flex;
    flex-direction: row;
      grid-area: breadcrumbs;

}

.breadcrumb li{
  display: inline;
}
.breadcrumb a{
  text-decoration: none;
  color: black;
}

/*----------------------------------*/
/* Container for the film strip */
.film-strip {
  position: relative;
  width: 100%;
  height: 200px; /* ✅ Your desired height */
  overflow: hidden;
  background: #000; /* or your background */
}

/* The track that slides left */
.film-track {
  display: flex;
  height: 100%;
  will-change: transform;
}

/* Images inside the track */
.film-track img {
  height: 100%;
  width: auto; /* Keep aspect ratio */
  flex-shrink: 0;
  margin-right: 20px;
  border-radius: 25px;
}

/* Sprockets: before and after */
.film-strip::before,
.film-strip::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 20px; /* sprocket height */
  background: repeating-linear-gradient(
    to right,
    #333,
    #333 10px,
    transparent 10px,
    transparent 20px
  );
  z-index: 2;
  animation: sprocketscroll 30s linear infinite;
}

.film-strip::before {
  top: 0;
}

.film-strip::after {
  bottom: 0;
}

/* Sprocket keyframes */
@keyframes sprocketscroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -20px 0; /* adjust for pattern size */
  }
}

/* Optional: pause on hover */
.film-strip:hover::before,
.film-strip:hover::after {
  animation-play-state: paused;
}

.bookbox{
    background-color: black;
    width: 95%;
    padding: 20px;
    border-radius: 0;
    /* text-align: center; */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

}

.portfolio-container{
  display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: black;
    column-gap: 20px;
    row-gap: 1rem;
}

.youtube-placeholder {
  position: relative;
  width: 100%;
  max-width: 560px;
  cursor: pointer;
  background: #000;

  /* Aspect ratio fix */
  padding-bottom: 0px; /* 16:9 */
  height: 315px;
  overflow: hidden;
}

.youtube-placeholder iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


.youtube-placeholder img {
  position: absolute; /* <-- make it fill */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps the image aspect nice */
}

.youtube-placeholder .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  background: url('https://img.icons8.com/ios-filled/100/ffffff/play-button-circled--v1.png') no-repeat center center;
  background-size: contain;
  opacity: 1;
  z-index: 2; /* optional, keeps it above image */
}

.termeni{
  background-color: black;
}
.main-termeni{
  margin-top: 70px;
}

.txt-content{
  display: contents;
}

.partner-logos{
      display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    row-gap: 20px;
}

.p-logo{
  width: 150px;
    height: auto;
}