/*
Theme Name: PPP Genilem
Author: WEbLAb
Author URI: https://weblab.ch
Version: 1.0.0
Text Domain: _custom
*/


html{
	overflow-x:unset;
}

.section_1 .projects {
  display: block !important;
  column-count: 2;
  column-gap: 40px;            
  max-width: 640px;               
  margin: 60px auto;             
  padding: 20px 0;               
  counter-reset: list-number 0;  
}

.section_1 .projects > * {
  width: auto !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 6px;               
  padding: 4px 0;                
  font-weight: 600;
  text-decoration: none !important;
  text-align: left;
  break-inside: avoid;
}

.section_1 .projects > *::before {
  counter-increment: list-number;
  content: counter(list-number);
  min-width: 20px;
  height: 20px;
  color: #F9DC0A;
  background: #0e26ff;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  margin-right: 6px;             
}

@media (max-width: 992px) {
  .section_1 .projects {
    column-count: 1;
    max-width: 540px;
    margin: 40px auto;
  }
}

@media (max-width: 767px) {
  .section_1 .projects {
    column-count: 1;
    max-width: 100%;
    margin: 30px auto;
  }
}

/* PATCH: izjednači sve direktne stavke (a, p, span, div) */
.section_1 .projects > * {
  display: flex !important;      /* prisili isti layout kao kod linkova */
  align-items: center !important;
  justify-content: flex-start !important;
  margin: 0 !important;          /* skini default <p> margine */
  line-height: 1.2 !important;
  gap: 6px;
}

/* ako unutar stavke postoji <p>, skini i njemu marginu */
.section_1 .projects > * p {
  margin: 0 !important;
}


._ppp_menu{
  background: #eee;
  box-shadow: 0px 6px 20px rgba(0,0,0,.3);
  width:100%;
  position: sticky;
  top:100px;
  z-index: 9;
	display:flex;
	justify-content:center;
	align-items:center;
}
._ppp_menu ul{
  display: flex;
  width:100%;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin:0;
  padding:0;
}
._ppp_menu ul > li{
  margin:0;
  padding:0;
}
._ppp_menu ul > li > a{
  display: block;
  padding:15px;
  color:rgb(14, 38, 355);
  white-space: nowrap;
  font-weight:700;
}
._ppp_menu ul > li:hover > a{
  background: #fff;
}
._ppp_menu ul > li.active > a{
  background: rgb(14, 38, 355);
  color:#fff;
}

@media(max-width:1200px){
  ._ppp_menu ul > li > a{
    padding:15px 10px;
  }
}
@media(max-width:992px){
  ._ppp_menu{
    overflow-x: scroll;
  }
}

#candidature_with_mic .container:after{
	content:"";
	position:absolute;
	bottom:-45px;
	right:0;
	width:150px;
	height:250px;
	z-index:0;background:url('https://development.genilem.ch/wp-content/uploads/2024/05/Microphone-2.svg');
	background-size:contain;
}
#candidature_with_mic .container{
	position:relative;
}
#candidature_with_mic .container > div{
	z-index:1;
	position:relative;
}


#candidature_with_mic .formGroup input[type="text"],
#candidature_with_mic .formGroup input[type="email"],
#candidature_with_mic .formGroup input[type="tel"],
#candidature_with_mic .formGroup textarea{
	border:2px solid #fff !important;
	}

@media(max-width:768px){
	#candidature_with_mic .container:after{
		left:0;
		right:auto;
		bottom:-45px;
		width:100px;
		height:170px;
	}
}
	

.section_2 .items h5 {
    font-weight: 900;
    letter-spacing: normal;
}

blockquote, dl, dd, h1, h2, h3, h4, h5, h6, hr, figure, p, pre {
    margin: 0;
    letter-spacing: normal;
}


@media(min-width:1024px){
header .navContainer ul > li.blue > a{
padding:10px 20px 10px 20px;
border:2px solid #3447FF;
margin-left:10px;
}
	
header .navContainer ul > li.blue:hover > a{
border-color:#3447FF;
background: #3447FF;
color:#fff;
}
}



._typography iframe{
	height:auto !important;
	aspect-ratio:16/9 !important;
	margin-left:auto;
	margin-right:auto;
	max-width:100%;
}



/*
.formGroupSubmit p{
	justify-content:center; 
}


footer .socials {
    display: flex; /* Flexbox for horizontal alignment */
    justify-content: center; /* Center-align icons horizontally */
    align-items: center; /* Align icons vertically */
    gap: 5px; /* Space between icons */
    margin-top: 20px; /* Add space above the icons */
}

footer .socials > a {
    display: flex; /* Flexbox for icon alignment */
    justify-content: center;
    align-items: center;
    font-size: 18px; /* Icon font size */
    width: 32px; /* Icon size */
    height: 32px;
    line-height: 32px;
    border: 1px solid #fff; /* Circle border */
    border-radius: 50%; /* Make the icons circular */
    background-color: transparent; /* Ensure background is clear */
    transition: all 0.3s ease; /* Smooth hover effect */
}

footer .socials > a:hover {
    background-color: #f9dc0a; /* Add highlight effect on hover */
    border-color: #f9dc0a;
}

footer .socials > a > i {
    display: block; /* Ensure icons are block-level inside circles */
    width: 100%;
    height: 100%;
    background-size: 50%; /* Size the icons properly */
    background-repeat: no-repeat;
    background-position: center;
}

footer .socials > a > i.linkedin {
    background-image: url('/path/to/linkedin-icon.png'); /* LinkedIn icon */
}

footer .socials > a > i.instagram {
    background-image: url('/path/to/instagram-icon.png'); /* Instagram icon */
}

footer .socials > a > i.twitter {
    background-image: url('/path/to/twitter-icon.png'); /* Twitter icon */
}

footer .socials > a > i.facebook {
    background-image: url('/path/to/facebook-icon.png'); /* Facebook icon */
}

footer .socials > a > i.spotify {
    background-image: url('/wp-content/uploads/2019/05/spotify.png'); /* Spotify icon */
}

footer .socials > a > i.mailchimp {
    background-image: url('images/mailchimp-512.png'); /* Mailchimp icon */
    filter: grayscale(100) invert(1); /* Apply grayscale and invert styling */
}

.jquery-background-video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    left: 0;
    top: 0;
    transform: none;
}