:root {
--accent: #009b96 !important;
--primary-font: Roboto, sans-serif;
--secondary-font: Open Sans, sans-serif;
}

/* Custom NProgress Styles */
#nprogress .bar {
    background: #009b96 !important; /* Change this to your desired color */
}

/* Logo A HREF CSS */
@media screen and (min-width: 1200px) {
    .cs-site_header.cs-style1 .cs-main_header_center {
        max-width: calc(100% - 550px) !important; /* Updated max-width */
    }
}

/* Cookies CSS */
table td, table th {
    color: white;
}

/* Animated Icons CSS */
#animated-mail-icon {
  animation: moveLeftRight 3s infinite;
}

@keyframes moveLeftRight {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);  /* Move 10px to the right */
  }
  100% {
    transform: translateX(0);  /* Return to original position */
  }
}

#animated-newsletter-icon {
  animation: bounceScaleOnce 0.75s ease-in-out 1; /* Bounce and scale once */
  display: inline-block; /* Ensure proper animation */
}

@keyframes bounceScaleOnce {
  0% {
    transform: translateY(0) scale(1); /* Start position */
  }
  30% {
    transform: translateY(-5px) scale(1.1); /* Move up and slightly scale up */
  }
  60% {
    transform: translateY(5px) scale(1); /* Move down slightly and return to original size */
  }
  100% {
    transform: translateY(0) scale(1); /* Return to original position and size */
  }
}

#animated-envelope-icon {
  display: inline-block; /* Ensure it can be animated properly */
  animation: flipOnce 2s ease-in-out forwards; /* Play once */
}

@keyframes flipOnce {
  0% {
    transform: rotateY(0deg); /* Start position */
  }
  50% {
    transform: rotateY(180deg); /* Flip halfway */
  }
  100% {
    transform: rotateY(0deg); /* Return to original position */
  }
}

#animated-clock-icon {
  animation: rollOnce 2s ease-in-out 1; /* Roll over once */
  display: inline-block; /* Ensure proper animation */
}

@keyframes rollOnce {
  0% {
    transform: rotate(0deg); /* Start position */
  }
  100% {
    transform: rotate(360deg); /* Full rotation */
  }
}

/* Homepage Hero Slide CSS */
.cs-hero.cs-style4.cs-bg {
    min-height: 100%;
    background-size: cover;
}

@media only screen and (min-width: 1200px) {

.cs-hero.cs-style4 .cs-hero_title {
    font-size: 80px;
}
}

.cs-section_heading.cs-style1 .cs-section_subtitle {
    color: #009287;
}

.cs-shape_wrap_4 .cs-shape_4 {
    background-color: #009b96;
    border-radius: 50%;
    position: absolute;
}

/* Breadcrumbs Text Color CSS */ 
.cs-page_heading.cs-style1 .breadcrumb {
    color: white;
    justify-content: center;
}

/* Services Font Resize CSS */
.cs-iconbox.cs-style1 .cs-iconbox_title {
    font-size: 25px;
}

/* Partner Logo DIV Wrapper CSS */
.cs-partner_logo_wrap {
    display: flex;
    overflow: hidden; /* Hide overflow to create a smooth scrolling effect */
    position: relative; /* Position relative for animation */
}

.scrolling {
    display: flex; /* Use flexbox to keep items in a row */
    animation: scroll 30s linear infinite; /* Adjust duration for speed */
}

.scroll-content {
    display: flex; /* Keep all logos in a single line */
    align-items: center; /* Vertically center the logos */
}

@keyframes scroll {
    from {
        transform: translateX(0); /* Start from the initial position */
    }
    to {
        transform: translateX(-50%); /* Move left by half of the content&#039;s width */
    }
}

.cs-partner_logo {
    display: flex; /* Ensure logos are displayed inline */
    padding: 0 15px; /* Add padding for spacing on the sides */
    margin-bottom: 30px; /* Add space at the bottom of each logo */
    box-sizing: border-box; /* Ensure padding is included in width */
}

.cs-partner_logo img {
    max-width: none; /* Allow images to retain their original size */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Ensure images are block elements */
}

/* Priceplan VAT CSS */
.cs-price_vat_text {
  font-size: 0.8em; /* Adjust the size as needed */
}

/* 404 Page CSS */
.error-box {
    padding-top: 60px;
}

.error-box h1 {
    font-size: 150px;
    line-height: 110px;
    font-weight: 800;
    margin-bottom: 40px;
    text-shadow: 3px 3px #c0c0c0;
}

.error-box h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

/* Side bar P CSS */
.cs-widget_title.p-contact-info {
    display: block;
    font-weight: bold;
    color: #fff; /* White text */
    padding: 10px 0px;
    margin-bottom: 20px; /* Add spacing below */
}

/* Portfolio CSS */
.cs-text_btn :hover {
    color: #009b96;
}

/* Menu CSS */
.cs-nav .cs-nav_list ul {
        width: 280px;
}

/* Side Bar CSS */
.cs-side_header .cs-side_header_shape:before {
    background-color: #1f9b969e;
}

/* NextGenerationEU CSS */
.ngeu {
       font-size:14px;
       text-align:center;
       line-height:18px
}

/* Portofolio Hover linear-gradient CSS */
.cs-portfolio.cs-style1.cs-type2 .cs-portfolio_hover {
    background: linear-gradient(180deg, rgba(0, 155, 150, 0.7), rgba(0, 0, 0, 0.8)) !important;
}
