@font-face {
  font-family: 'Open Sans';
  src: url('/include/theme/font/Open_Sans/OpenSans-Italic-VariableFont_wdth\,wght.ttf') format('ttf'),
       url('/include/theme/font/Open_Sans/OpenSans-VariableFont_wdth\,wght.ttf') format('woff');
  font-weight: normal;
  font-style: normal;
   font-display: swap; 
}

:root {
  --primary-color: #006571;
  --secondary-color: #6b7280;
  --background-color: #F2F7F7;
  --text-color: #333333;
  --header-height: 80px;
  --white-color: #ffffff;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box
}

body{
  min-height:100vh;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  background:var(--background-color);
  color:var(--text-color);
  line-height: 1.6;
}

button {
  cursor: pointer;
}


strong {
  font-weight: 600;
}

header{
position:fixed;
top:0;
left:0;
right:0;
height:var(--header-height);
display:flex;
justify-content:center;
align-items:center;
transition:background .25s ease,box-shadow .25s ease,height .25s ease;
background:transparent;z-index:1000;
width: 100%;
}

header.scrolled{
  background: var(--white-color);
  height:70px;
  box-shadow:0 2px 10px rgba(0,0,0,0.06)
}


.nav-container{
width:100%;
max-width:1200px;
display:flex;
align-items:center;
justify-content:space-between;
padding:0 20px;
}


.logo img{height:60px;width:auto;display:block}


nav{
  display:flex;
  align-items:center;
  gap:24px;
  font-size:15px
}
nav a{
  color: var(--text-color);
  text-decoration:none;
  font-weight:500
}


nav a:hover {
color: var(--primary-color);
}


/* Language Select */
.lang-select{
  padding:6px 20px;
  border-radius:6px;
  border:1px solid var(--secondary-color);
  background: transparent;
  font-size:14px;
  cursor:pointer;
    appearance: none;
  -webkit-appearance: none; /* pentru Safari/Chrome */
  -moz-appearance: none;    /* pentru Firefox */
  background-image: none;   /* elimină eventualele iconițe */
 outline: none;  
 
}


.lang-select option {
  font-size:14px;
  background: var(--primary-color);
  color: var(--white-color);

}


.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}




/* Mobile button */
.mobile-btn{
  display:none;
  background:none;
  border:0;
  font-size:30px;
  filter: brightness(0) saturate(100%) invert(22%) sepia(40%) saturate(4007%) hue-rotate(165deg) brightness(97%) contrast(101%);
  cursor:pointer;
}


/* Mobile menu */
.mobile-nav{
position:fixed;
top:0;
right:-100%;
width:260px;
height:100vh;
background:var(--white-color);
box-shadow:-2px 0 12px rgba(0,0,0,0.1);
padding:30px;
display:flex;
flex-direction:
column;gap:20px;
transition:right .3s ease;
z-index:1100;
}


.mobile-nav a{
  font-size:18px;
  color: var(--text-color);
  text-decoration:none;
}
.mobile-nav.open{
  right:0;
}

.close-btn{
  background:none;
  border:0;
  font-size:28px;
  cursor:pointer;
  align-self:flex-end;
  filter: brightness(0) saturate(100%) invert(22%) sepia(40%) saturate(4007%) hue-rotate(165deg) brightness(97%) contrast(101%);
  margin-bottom:10px;
}

@media(max-width:900px){nav{display:none}.mobile-btn{display:block}}

main{
  
  width:100%;
  margin:0 auto;
}


section{
  padding:80px 20px;
}

.container {
  max-width:1200px;
  margin:0 auto;
  padding:20px;
}

section#header{
  position: relative;
   overflow: hidden;
  text-align: center;
  padding: 60px 20px;
  width: 100%;
  min-height: 100vh;
  display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: nowrap;
}

section#header h1{
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}
section#header h2{
  font-size: 2.2rem;
  margin-bottom: 30px;
  font-weight: 400;
  color: var(--secondary-color);
}


section#header h3{
  font-size: 1.7rem;
  margin-bottom: 30px;
    font-weight: 400;
  color: var(--primary-color);
}

.btn{
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: var(--white-color);
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid var(--primary-color);
  font-size: 1rem;
  transition: background .3s ease;
}
.btn:hover{
  background: darken(var(--primary-color), 10%);
  color: var(--primary-color);
}


.btn img{
  width: 24px;
  height: 24px;
  margin-right: 10px;
  margin-left: -10px;
  vertical-align: middle;
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(152deg) brightness(103%) contrast(103%);
}

.btn:hover img{
filter: brightness(0) saturate(100%) invert(27%) sepia(37%) saturate(2364%) hue-rotate(154deg) brightness(93%) contrast(101%);}



.btn2 {
  display: inline-block;
  padding: 12px 30px;
  background: var(--background-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid var(--background-color);
  font-size: 1rem;
  transition: background .3s ease;
cursor: pointer;
}


.btn2:hover {
  background: var(--primary-color);
  color: var(--white-color);
}




.btn2 img{
  width: 24px;
  height: 24px;
  margin-right: 10px;
  margin-left: -10px;
  vertical-align: middle;
filter: brightness(0) saturate(100%) invert(27%) sepia(37%) saturate(2364%) hue-rotate(154deg) brightness(93%) contrast(101%);


}

.btn2:hover img{
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(152deg) brightness(103%) contrast(103%);

}


section .btn{
  margin-top: 20px;
}


/* STRAT 1 – bule mari */
#header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle 60px at 10% 80%, #00657155 50%, transparent 52%),
    radial-gradient(circle 80px at 80% 20%, #00657155 50%, transparent 52%),
    radial-gradient(circle 50px at 50% 10%, #00657155 50%, transparent 52%),
    radial-gradient(circle 70px at 20% 30%, #00657155 50%, transparent 52%),
    radial-gradient(circle 90px at 70% 60%, #00657155 50%, transparent 52%);
  animation: bubbles-large 18s linear infinite;
  opacity: 0.35;
}

/* STRAT 2 – bule mici */
#header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle 15px at 15% 40%, #006571aa 50%, transparent 52%),
    radial-gradient(circle 20px at 40% 80%, #006571aa 50%, transparent 52%),
    radial-gradient(circle 12px at 75% 50%, #006571aa 50%, transparent 52%),
    radial-gradient(circle 18px at 55% 30%, #006571aa 50%, transparent 52%),
    radial-gradient(circle 14px at 90% 70%, #006571aa 50%, transparent 52%),
    radial-gradient(circle 10px at 30% 20%, #006571aa 50%, transparent 52%),
    radial-gradient(circle 12px at 60% 90%, #006571aa 50%, transparent 52%);
  animation: bubbles-small 12s linear infinite;
  opacity: 0.45;
}

@keyframes bubbles-large {
  from { transform: translateY(0); }
  to   { transform: translateY(-30%); }
}

@keyframes bubbles-small {
  from { transform: translateY(0); }
  to   { transform: translateY(-60%); }
}



section .header-section {
  padding: 20px 20px;
  text-align: center;
}

section .header-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
    margin-top: -40px;
  color: var(--primary-color);
}
section .header-section p {
  font-size: 1.1rem;
  color: var(--secondary-color);
  max-width: 800px;
  margin: 0 auto;
}

.row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.column a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}


.card:hover .card-icon {
    background: var(--white-color);
}
.card-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: var(--background-color);
}

.card-icon img {
    width: 48px;
    height: 48px;
}

.card h3 {
    margin: 0;
    padding: 16px;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
}

.desc_serv {
    padding: 18px;
    flex-grow: 1;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    background: #fff;
    border-radius: 0 0 8px 8px;
}



@media(max-width: 800px) {
    .column {
        flex: 1 1 calc(50% - 20px);
    }
}

@media(max-width: 500px) {
    .column {
        flex: 1 1 100%;
    }
}

#service {
  background: var(--primary-color);
}

#service .header-section h2 {
  color: var(--white-color);
}
#service .header-section p {
  color: var(--white-color);
  opacity: 0.8;
  font-style: italic;
}















/* Layout profil */
.profile {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
}

.profile-text {
  flex: 1 1 500px;
}

.profile-text p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.profile-text h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.5rem;
  color: var(--text-color);
}

.profile-text ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.profile-text ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 0.8rem;
}

.profile-text ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}


/* Imagine profil */
.profile-image {
  flex: 0 0 250px;
}

.profile-image img {
  width: 100%;
  border-radius: 12px;

}

/* Responsive */
@media (max-width: 768px) {
  .profile {
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
  }
}







.portfolio-professional {
  padding: 80px 20px;
  background-color: #f8f9fa;
  font-family: 'Poppins', sans-serif;
  color: #1f2937;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #006571;
  margin-bottom: 0.5rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #006571;
  margin: 10px auto 0;
  border-radius: 2px;
}

.intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--background-color);
  margin-bottom: 2.5rem;
}


.about-section .intro {
  color: var(--secondary-color);
}

/* Grid portofoliu */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Card proiect */
.portfolio-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.portfolio-info {
  padding: 20px;
}

.portfolio-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #006571;
}

.portfolio-info p {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.5;
}



/* Responsive */
@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}



@media(max-width: 500px) {
section#header h1 {
font-size: 3rem;
margin-top: 30px;
}
}


.consultation {
  padding: 80px 20px;
  background-color: var(--primary-color);
  text-align: center;

}

.consultation .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 0.5rem;
}




.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.modal:target {
  opacity: 1;
  pointer-events: auto;
}

/* Arata modal cand checkbox este checked */
.modal-toggle:checked + label + .modal {
  opacity: 1;
  pointer-events: auto;
}


#modal-toggle:checked ~ .modal {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  position: relative;
}

.modal-content h3 {
  margin-bottom: 20px;
  color: #006571;
  text-align: center;
}

.modal-content label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.modal-content input[type="text"],
.modal-content input[type="email"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.checkbox-label {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.checkbox-label input {
  margin-right: 10px;
}

.modal-content .btn {
  width: 100%;
}



.modal:target .modal-content {
  transform: translateY(0);
}
/* Close button */
.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  font-weight: bold;
  color: #006571;
  cursor: pointer;
}







.testimonials {
  padding: 80px 20px;
  background: var(--white-color);
  text-align: center;
}

.testimonials .section-title {

  margin-bottom: 30px;
}

.testimonial-slider {
  position: relative;

  margin: 0 auto;
  min-height: 150px;
}

.testimonial-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  padding: 0 20px;
  box-sizing: border-box;
}

.testimonial-slide p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 10px;
  color: #374151;
}

.client {
  font-weight: 600;
  color: #006571;
}


.testimonial-slider.single .testimonial-slide {
  position: relative;
  opacity: 1;
}



.testimonial-slider.multi .testimonial-slide:nth-child(1) {
  animation: fadeSlider 15s infinite;
  animation-delay: 0s;
}

.testimonial-slider.multi .testimonial-slide:nth-child(2) {
  animation: fadeSlider 15s infinite;
  animation-delay: 5s;
}

.testimonial-slider.multi .testimonial-slide:nth-child(3) {
  animation: fadeSlider 15s infinite;
  animation-delay: 10s;
}

/* Dacă ai peste 3, pot genera pentru oricâte */
@keyframes fadeSlider {
  0% { opacity: 0; }
  5% { opacity: 1; }
  30% { opacity: 1; }
  35% { opacity: 0; }
  100% { opacity: 0; }
}






.footer {
  background: var(--primary-color); /* #0f1f22  aproape negru cu tentă verde-inchis */
  color: var(--background-color);
  padding: 60px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-col .title-footer-column {
  color: var(--white-color);
  font-size: 1.2rem;
  margin-bottom: 10px;
  position: relative;
}

.footer-col .title-footer-column::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #006571;
  display: block;
  margin-top: 6px;
  border-radius: 3px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--background-color);
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  opacity: 0.8;
  padding-left: 4px;
}

/* Logo */
.footer-logo {
  width: 140px;
  height: auto;
  margin-bottom: 15px;
}


.footer-logo img {
  width: 140px;
  height: auto;

}

.footer-desc {
  color: var(--background-color);
  opacity: 0.8;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 250px;
}

/* Social icons */
.social-links a {
  display: inline-block;
  margin-right: 12px;
  transition: 0.3s;
}

.social-links img {
  width: 26px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: 0.3s;
}

.social-links a:hover img {
  opacity: 1;
  filter: brightness(1) invert(0);
}

/* Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #1e2e32;
  color: var(--white-color);

  font-size: 0.9rem;
}








section.contact {
  background: var(--background-color);
  padding: 80px 0;
  color: var(--text-color);
}



/* --------------------- TITLU --------------------- */



/* --------------------- GRID --------------------- */

.cont_blcok {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.block_50 {
  flex: 1 1 45%;
}

.padding_l_40 {
  padding-left: 40px;
}

@media(max-width: 900px) {
  .block_50 {
    flex: 1 1 100%;
    padding-left: 0 !important;
  }
}

/* --------------------- FORMULAR --------------------- */

.input-container {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.input-container label {
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.input-container .input,
.input-container textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 6px;
  border: 1px solid #cccccc;
  background: white;
  font-size: 15px;
  color: var(--text-color);
  transition: all 0.3s;
}

.input-container .input:focus,
.input-container textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 5px rgba(0, 101, 113, 0.3);
  outline: none;
}

.textarea textarea {
  min-height: 140px;
  resize: vertical;
}



/* --------------------- CONTACT INFO --------------------- */

.block_50 h4 {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
}

.block_50 a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 17px;
  transition: 0.3s;
}

.block_50 a:hover {
  color: var(--primary-color);
}

/* --------------------- ICON LINK --------------------- */

.link_icon {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.link_icon a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  transition: 0.3s;
}

.link_icon a svg {
  width: 26px;
  height: 26px;
  fill: var(--primary-color);
  transition: 0.3s;
}

.link_icon a:hover svg {
  fill: #004a54;
}

.telegram:hover { color: #0088cc; }
.whatzapp:hover { color: #25d366; }
.facebook:hover { color: #1877f2; }
.instagram:hover { color: #d6249f; }

/* --------------------- ALERT / SUCCES / EROARE --------------------- */

.alert {
  padding: 15px;
  margin: 20px 0;
  border-radius: 6px;
}

.success {
  background: #d6f5e3;
  border-left: 5px solid #28a745;
  padding: 15px;
}

.notification_error {
  background: #ffe1e1;
  border-left: 5px solid #cc0000;
  padding: 15px;
}



#page ul {
  list-style-type: disc;
  padding-left: 40px;
  margin-top: 10px;
  margin-bottom: 10px;
}

#page h2 {
  margin-bottom: 20px;
  font-size: 2.2rem;
  color: var(--primary-color);
}


h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.2rem;

  color: var(--primary-color);
}






.eror_404 .notfound {

  text-align: center;
}

.eror_404 .notfound-404 {
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
  display: inline-block;

}

.eror_404 .notfound h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--text-color);
}






















.about-container {
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  animation: fadeIn 1.2s ease;
}


.about-image {
   flex-shrink: 0;
}
.about-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  transition: transform .4s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}


.about-content p {
  margin-bottom: 15px;
  line-height: 1.7;


}

.about-list {
  margin-top: 20px;
}

.about-list li {
  list-style: none;
  margin-bottom: 10px;
  opacity: 0;
  animation: slideUp .7s ease forwards;
}

.about-list li:nth-child(1) { animation-delay: .2s; }
.about-list li:nth-child(2) { animation-delay: .35s; }
.about-list li:nth-child(3) { animation-delay: .5s; }
.about-list li:nth-child(4) { animation-delay: .65s; }
.about-list li:nth-child(5) { animation-delay: .8s; }

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Responsivitate */
@media (max-width: 800px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    max-width: 300px;
  }


}





.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  filter: blur(10px);
  transition: all 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}









.portfolio-container {
    display: flex;
    max-width: 1100px;
    margin: 50px auto;
    gap: 40px;
    font-family: Arial, sans-serif;
}


.portfolio-container h1 {
color: var(--primary-color);
font-style: italic;
margin-bottom: 20px;
}
.portfolio-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 450px;
}
.portfolio-right {
    flex: 1;
}

/* imaginea mare */
.main-image-section {
    position: relative;
    width: 100%;
}
.main-image-section img {
    width: 100%;
    border-radius: 12px;
    max-height: 500px;
    object-fit: cover;
    display: none; /* ascunde toate inițial */
}

/* galerie miniaturi */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.gallery label.thumbnail {
    cursor: pointer;
    display: block;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: border 0.3s;
}
.gallery label.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery label.thumbnail:hover {
    border: 2px solid var(--primary-color)
}




.portfolio-link {
  margin-top: 20px;
}





.klaro .cookie-modal p, .klaro .cookie-modal strong, .klaro .cookie-modal h1, .klaro .cookie-modal h2, .klaro .cookie-modal ul, .klaro .cookie-modal li, .klaro .context-notice p, .klaro .context-notice strong, .klaro .context-notice h1, .klaro .context-notice h2, .klaro .context-notice ul, .klaro .context-notice li, .klaro .cookie-notice p, .klaro .cookie-notice strong, .klaro .cookie-notice h1, .klaro .cookie-notice h2, .klaro .cookie-notice ul, .klaro .cookie-notice li {
  color: var(--text-color) !important;
  font-size: 1rem !important;

}

.klaro .cookie-notice:not(.cookie-modal-notice) {
  background-color: var(--background-color) !important;
}

.klaro .cookie-modal a, .klaro .context-notice a, .klaro .cookie-notice a {
  color: var(--primary-color) !important;
}

.klaro .cookie-modal .cm-btn, .klaro .context-notice .cm-btn, .klaro .cookie-notice .cm-btn {
background-color: var(--text-color) !important;
color: var(--white-color) !important;
 padding: 12px 30px !important;
 border-radius: 6px !important;
  border: 1px solid var(--primary-color) !important;
  font-size: 1rem !important;
  transition: background .3s ease !important;
}


.cn-body {
  padding: 20px !important;
}


.klaro .cookie-modal .cm-btn.cm-btn-success, .klaro .context-notice .cm-btn.cm-btn-success, .klaro .cookie-notice .cm-btn.cm-btn-success {
background-color: var(--primary-color) !important;
}



.cm-btn .cm-btn-success:hover{
  background: darken(var(--primary-color), 10%) !important;
  color: var(--primary-color) !important;
}



.klaro .cookie-modal .cm-modal.cm-klaro { 
background-color: var(--background-color) !important;
padding: 20px !important;
}

.klaro .cookie-modal .cm-list-input:checked+.cm-list-label .slider {
  background-color: var(--primary-color) !important;
}
@media (min-width: 1024px) {

      .klaro .cookie-notice:not(.cookie-modal-notice) {
        max-width: 500px !important;
      }
    }


    .cookie-settings-button {
      background-color: var(--primary-color);
      width: 62px;
      height: 62px;
      display:flex;
      border-radius: 50%;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 20px;
    left: 20px;
    border: 2px solid var(--background-color);
    cursor: pointer;
      transition: background .3s ease;
    }

    .cookie-settings-button img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(87%) saturate(937%) hue-rotate(209deg) brightness(113%) contrast(95%);
    }

        .cookie-settings-button:hover {
          background-color: var(--background-color);
          border: 2px solid var(--primary-color);
        }

        .cookie-settings-button:hover img {
filter: brightness(0) saturate(100%) invert(26%) sepia(22%) saturate(4701%) hue-rotate(158deg) brightness(96%) contrast(101%);
        }





