*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

body{
    font-family: "PolySans", "Inter", -apple-system, "BlinkMacSystemFont", "Segoe UI", "Fira Sans", "Helvetica Neue", "Arial", sans-serif !important;
}

p, h1, h2, h3, h4 ,h5, h6, a, span{
        font-family: "PolySans", "Inter", -apple-system, "BlinkMacSystemFont", "Segoe UI", "Fira Sans", "Helvetica Neue", "Arial", sans-serif !important;

}

html {
  font-size: var(--base-font-size);
  scroll-behavior: smooth;
}

:root {
  /* Color Palette */
  --color-primary: #f4ed2f;
  --color-primary-light: #e12127;
  --color-dark: #191919;
  --color-gray: #333333;
  --color-white: #fff;
}

header{
    background-color: var(--color-white);
    padding: 8px 35px !important;
    border-bottom: solid 1px #f6f6f6;
    box-shadow: 10px 10px 10px 10px #f4f4f4;
}

.search-container {
  display: flex;
  align-items: center;
  background-color: #373737;
  border-radius: 9999px;
  padding: 6px 16px;
  width: -webkit-fill-available;
  max-width: -webkit-fill-available;
  box-sizing: border-box;
}

.search-container:hover {
  box-shadow: inset 0 0 0 1px rgb(81, 81, 81);
}

.search-container:focus-within {
  box-shadow: inset 0 0 0 2px var(--color-primary);
}

.divider {
  height: 24px;
  width: 1px;
  background-color: #888;
  margin-right: 16px;
}

.search-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  stroke: #ccc;
}

.search-input {
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font-size: 16px;
  flex-grow: 1;
  font-family: inherit;
}

.search-input::placeholder {
  color: #aaa;
}

    .logo-col{
        align-content: space-around;
    }

    
    
.custom-dropdown {
  position: relative;
  font-family: "PolySans", "Inter", sans-serif;
}

.dropdown-toggle {
  background: transparent;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
}

.arrow {
  pointer-events: none;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  background-color: #111;
  color: white;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1);
  list-style: none;
  padding: 0px 0;
  width: 240px;
  z-index: 999;
}

.dropdown-menu li {
  padding: 10px 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-menu li:hover {
  background-color: #2a2a2a;
}

.dropdown-menu li.selected {
  font-weight: bold;
}

.checkmark {
  font-size: 12px;
}

.download-button {
            width: -webkit-fill-available;
            display: inline-block;
            padding: 10px 12px;
            background-color: var(--color-primary);
            color: var(--color-white);
            font-family: Arial, sans-serif;
            font-size: 16px;
            font-weight: bold;
            text-align: center;
            text-decoration: none;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .download-button:hover {
            background-color: var(--color-primary-light);
        }

        
.menu-icon {
font-size: 20px;
    color: var(--color-white);
    background: var(--color-primary);
    padding: 0px 15px;
    cursor: pointer;
    width: fit-content;
    align-content: center;
    border-radius: 5px;
}

.menu-icon:hover {
font-size: 20px;
    background: var(--color-primary-light);
    color: white;
    padding: 0px 15px;
    cursor: pointer;
    width: fit-content;
    align-content: center;
    border-radius: 5px;
}

.side-menu {
  position: fixed;
  top: 0;
  right: -500px;
  width: 500px;
  height: 100vh;
  background-color: var(--color-dark);
  color: var(--color-white);
  overflow-y: auto;
  transition: right 0.3s ease-in-out;
  padding: 20px;
  z-index: 1000;
          font-family: "PolySans", "Inter", -apple-system, "BlinkMacSystemFont", "Segoe UI", "Fira Sans", "Helvetica Neue", "Arial", sans-serif !important;

}

.sidbar-menu li a{
    font-size: 18px;
    font-weight: 600;
      color: var(--color-white);
}

.side-menu.open {
  right: 0;
}

.close-btn {
  background: none;
  color: white;
  font-size: 24px;
  border: none;
  float: right;
  cursor: pointer;
}

.side-menu ul {
  list-style: none;
  padding: 0;
}

.side-menu ul li {
  padding: 6px 0;
  border-bottom: 1px solid #333;
}

.actions {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.actions .sign-in,
.actions .download {
  padding: 10px;
  border: none;
  cursor: pointer;
}

.actions .sign-in {
  background: #222;
  color: white;
}

.actions .download {
  background: #aaff44;
  color: black;
  font-weight: bold;
}

.sidbar-menu {
  list-style: none;
  padding: 0;
}

.sidbar-menu li {
  position: relative;
  padding: 12px 0;
  border-bottom: 1px solid #333;
}

.sidbar-menu li a {
  color: white;
  text-decoration: none;
  display: block;
}

.has-dropdown > a::after {
  content: '›';
  position: absolute;
  right: 0;
}

.dropdown {
  display: none;
  background-color: #1a1a1a;
  padding-left: 15px;
  margin-top: 10px;
}

.has-dropdown.open .dropdown {
  display: block;
}

.dropdown li {
  border-bottom: none;
  padding: 8px 0;
}


@media only screen and (max-width: 525px) {
  .side-menu {
    right: -300px;
    width: 300px;
  }
}


.footer {
  background: var(--color-dark);
  color: var(--color-white);
  border-top: 1px solid #eee;
}

.footer a {
  color: var(--color-white);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.footer a:hover {
  color: var(--color-primary);
}

.footer .social-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: #fff;
  color: var(--color-gray);
  font-size: 18px;
  line-height: 40px;
  border: 1px solid #ccc;
  transition: all 0.3s ease;
}

.footer .social-icon:hover {
  background-color: var(--color-primary);
  color: var(--color-dark);
  border-color: var(--color-primary);
}

.footer-copy {
  font-size: 14px;
  margin-top: 10px;
}

.list-inline-item{
    padding: 10px;
}


    .hero-section {
      background: url('../img/banners/banner.webp');
      background-size: cover;
      color: var(--color-white);
      height: 100%;
      padding: 3rem;
      border-radius: 25px;
      position: relative;
      overflow: hidden;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: rgb(25 25 25 / 16%);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .pricing-card {
      background: var(--color-white);
      border-radius: 20px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      padding: 2rem;
    }

    .price-tag {
      font-size: 2rem;
      font-weight: bold;
    }

    .feature-list {
      list-style: none;
      padding-left: 0;
      margin-top: 1rem;
    }

    .feature-list li {
      margin-bottom: 0.75rem;
      font-size: 1rem;
      display: flex;
      align-items: center;
    }

    .feature-list svg {
      margin-right: 0.5rem;
    }

    .btn-download {
      background-color: var(--color-primary);
      color: var(--color-dark);
      font-weight: bold;
      padding: 0.75rem;
      border-radius: 10px;
      width: 100%;
    }


      .asset-card {
    border: 1px solid var(--color-dark);
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    background-color: #fff;
    transition: all 0.3s ease;
    margin-bottom: 20px;
  }

  .asset-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .asset-card img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-top: 15px;
  }

  .asset-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0;
    color: black;
  }

  .asset-count {
    color: #555;
    font-size: 1rem;
  }

    .asset-card {
    transition: transform 0.3s ease; /* Smooth transition */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Optional shadow */
  }
  
  .asset-card:hover {
    transform: scale(1.05); /* Grows by 5% on hover */
  }
  

        .breadcrumb {
            background-color: transparent;
            padding: 0;
            font-size: 0.875rem;
        }
        .breadcrumb-item + .breadcrumb-item::before {
            content: ">";
        }
        .section-title {
          font-size: 30px;
    font-weight: 900;
    margin-bottom: 1rem;
        }
        .description {
            font-size: 1rem;
            line-height: 1.5;
            color: #666;
        }

 .item-titel {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-white);
  }

  .highlight-text {
    background-color: #58575e;
    color: white;
    padding: 2px 5px;
    line-height: 21px;
  }

  .item-titel-div {
    position: absolute;
    top: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .detail-btn {
    position: absolute;
    bottom: 10px;
    right: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .detail-svg-icon {
    background-color: var(--color-primary);
    padding: 10px;
    border-radius: 5px;
  }

  .detail-svg-icon:hover {
    background-color: var(--color-primary-light);
  }

  /* Show elements on item-div hover */
  .item-div:hover .item-titel-div,
  .item-div:hover .detail-btn {
    opacity: 1;
  }

  /* Positioning container */
  .item-div {
    position: relative;
  }

  
  .pagination-container {
            display: flex;
            align-items: center;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-size: 14px;
            color: #333333;
        }
        
        .pagination-k {
            font-weight: bold;
            margin-right: 20px;
            color: #333333;
        }
        
        .pagination-arrow, .pagination-number {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            margin: 0 3px;
            cursor: pointer;
            border-radius: 3px;
        }
        
        .pagination-arrow {
            color: #999999;
        }
        
        .pagination-arrow.disabled {
            color: #cccccc;
            cursor: default;
        }
        
        .pagination-number {
            color: #666666;
            font-weight: normal;
        }
        
        .pagination-number.active {
            color: #000000;
            font-weight: bold;
            background-color: #f5f5f5;
        }
        
        .pagination-number:hover:not(.active),
        .pagination-arrow:hover:not(.disabled) {
            background-color: #f5f5f5;
        }

        .pagination-custom {
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        .pagination-custom .page-item {
            margin: 0 5px;
        }
        .pagination-custom .page-link {
            color: #333;
            border: none;
            background: transparent;
            padding: 5px 10px;
            font-size: 14px;
            font-weight: 500;
            border-radius: 3px;
            min-width: 28px;
            text-align: center;
        }
        .pagination-custom .page-link:hover {
            background: var(--color-primary-light);
            color: var(--color-white);
        }
        .pagination-custom .page-item.active .page-link {
            color: #fff;
            font-weight: bold;
            background-color: var(--color-primary);
        }
        .pagination-custom .page-item.disabled .page-link {
            color: #ccc;
        }
        .pagination-custom .k-icon {
            font-weight: bold;
            margin-right: 15px;
            color: #333;
        }

        .detail-item-h4{
              font-weight: 700;
                      font-family: "PolySans", "Inter", -apple-system, "BlinkMacSystemFont", "Segoe UI", "Fira Sans", "Helvetica Neue", "Arial", sans-serif !important;

        }

         .live-preview-btn {
        align-items: center;
    padding: 6px 16px;
    background-color: transparent;
    border: 2px solid var(--color-dark);
    border-radius: 4px;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    width: -webkit-fill-available;
  }
  
  .live-preview-btn:hover {
    background-color: var(--color-primary-light);
    color: var(--color-white);
    border: 2px solid var(--color-primary-light);
  }

   .download-item-icon-detail {
    fill: #000;
  }

  .live-preview-btn:hover .download-item-icon-detail {
    fill: #fff !important;
  }
  
  .copyright-symbol {
    margin-right: 8px;
    font-size: 12px;
  }

  .dropdown-menu a{
    color: var(--color-white) !important;
  }


   .modal.fade .modal-dialog {
            transition: transform 0.3s ease-out, opacity 0.3s ease;
            transform: translate(0, -50px);
            opacity: 0;
        }
        .modal.show .modal-dialog {
            transform: translate(0, 0);
            opacity: 1;
        }
        .modal-content {
            border: none;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            overflow: hidden;
        }
        .modal-header {
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
            color: white;
            border-bottom: none;
            padding: 1.5rem;
        }
        .modal-title {
            font-weight: 600;
            font-size: 1.5rem;
        }
        .modal-body {
            padding: 2rem;
        }
        .modal-footer {
            border-top: none;
            background-color: #f8f9fa;
            padding: 1rem 2rem;
        }
        .btn-close {
            color: white;
            opacity: 0.8;
            transition: all 0.2s;
        }
        .btn-close:hover {
            opacity: 1;
            transform: rotate(90deg);
        }
        .form-control {
            border-radius: 8px;
            padding: 12px 15px;
            border: 1px solid #e0e0e0;
            transition: all 0.3s;
        }
        .form-control:focus {
    border-color: var(--color-primary-light);
    box-shadow: 0 0 0 0.2rem var(--color-primary);
}
        .btn-primary {
            background: linear-gradient(135deg, #9cee69 0%, #6cc832 100%);
            border: none;
            border-radius: 8px;
            padding: 10px 25px;
            font-weight: 500;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(37, 117, 252, 0.4);
        }
        .btn-dark {
            border-radius: 8px;
            padding: 10px 25px;
            font-weight: 500;
            transition: all 0.3s;
        }
        .btn-dark:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(108, 117, 125, 0.2);
        }
        .input-icon {
            position: relative;
        }
        .input-icon i {
            position: absolute;
            top: 50%;
            left: 15px;
            transform: translateY(-50%);
            color: #6c757d;
        }
        .input-icon input {
            padding-left: 40px;
        }

  .home-categ-titel{
    color: black !important;
  }

  .short-description{
      width: 100%; /* or a fixed width like 300px */
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word; /* For older compatibility */
  overflow: hidden;
  }

   .long-description{
      width: 100%; /* or a fixed width like 300px */
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word; /* For older compatibility */
  overflow: hidden;
  }

  .back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--color-primary);
  color: #000;
  border: none;
  padding: 10px 16px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, opacity 0.3s;
  opacity: 0;
  pointer-events: none;
  z-index: 1000;
}

.back-to-top:hover {
  background-color: var(--color-primary-light);
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}




.image-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
    min-height: 260px; /* adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #555;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.sidbar-menu {
  list-style: none;
  padding: 0;
  width: 100%;
  transition: all 0.3s ease;
}

.sidbar-menu li {
  position: relative;
  padding: 12px 0;
  border-bottom: 1px solid #333;
}

.sidbar-menu li a {
  color: white;
  text-decoration: none;
  display: block;
  font-size: 18px;
  font-weight: 600;
  padding: 8px 0;
}

.sidbar-menu li a:hover {
  color: var(--color-primary);
}

/* Add these styles to your existing CSS */
.has-submenu {
  position: relative;
}

.dropdown-icon {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.has-submenu.open .dropdown-icon {
  transform: rotate(180deg);
  
}

/* Rotate icon when submenu is open */
#videoTemplatesMenu[style*="block"] ~ #mainMenu .has-submenu .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-icon{
  position: absolute;
    right: 10px;
    top: 30px;
}


.close-btn{
      padding: 0px 12px 4px 12px;
    align-content: space-around;
    border-radius: 5px;
}

.close-btn:hover{
    background: var(--color-primary-light) !important;
}

.close-btn{
    background: var(--color-primary) !important;
}

  .item-detail-video {
      max-width: 100%;
      height: auto;
    }

  .custom-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    padding-bottom: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #5e5e5ec7;
  }

  .custom-modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    animation: zoomEffect 0.6s;
  }

  @keyframes zoomEffect {
    from {transform: scale(0.5);}
    to {transform: scale(1);}
  }

  .custom-close-btn {
    position: absolute;
    top: 10px;
    right: 5px;
    color: white;
    font-size: 25px;
    font-weight: bold;
    cursor: pointer;
    background: var(--color-primary);
    padding: 0px 12px 4px 12px;
    align-content: space-around;
    border-radius: 5px;
  }

  .custom-close-btn:hover{
    background-color: var(--color-primary-light);
  }
  
  .item-detail-img-div{
    padding: 2px;
  }

  .item-detail-img-div:hover{
    box-shadow: inset 0 0 0 2px black;
    padding: 2px;
  }


      .audio-player {
      display: flex;
      align-items: center;
      gap: 15px;
      background: #f5f5f5;
      padding: 15px;
      border-radius: 0;
      width: 100%;
      box-sizing: border-box;
    }

    .play-btn {
      width: 50px;
      height: 50px;
      background: var(--color-primary);
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      flex-shrink: 0;
    }

        .play-btn:hover {
      background: var(--color-primary-light);
        }

    .progress-container {
      flex: 1;
      height: 10px;
      background: var(--color-white);
      border-radius: 5px;
      cursor: pointer;
      position: relative;
    }

    .progress {
      height: 100%;
      background: var(--color-primary);
      width: 0%;
      border-radius: 5px;
    }

    .audio-info {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #333;
      flex-shrink: 0;
    }

    .download-btn {
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      padding: 0;
    }

    .download-btn svg {
      width: 35px;
      height: 35px;
      fill: #333;
    }

    .adiou-svg-icon {
      width: 20px;
      height: 20px;
      fill: var(--color-white) !important;
      background: var(--color-primary);
      border-radius: 5px;
      padding: 5px;
      margin-left: 5px;
    }

    .adiou-svg-icon:hover {
      background: var(--color-primary-light);
    }

    .detail-btn .tooltip-text {
  visibility: hidden;
  width: 80px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 155%; /* Position the tooltip above the button */
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 12px;
  white-space: nowrap;
}

.detail-btn .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%; /* Arrow below the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

.detail-btn:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.breadcrumb-text{
 padding: 30px;
 background: #f8f9fa; 
}

.play-btn-svg{
  color: var(--color-white);
}

.modal-header .close {
    padding: 3px 10px 10px 10px;
    margin: -0.5rem -1rem -1rem auto;
    background-color: var(--color-primary);
        border-radius: 5px;
}

.send-request {
            display: inline-block;
            padding: 10px 12px;
            background-color: var(--color-primary);
            color: var(--color-white);
            font-family: Arial, sans-serif;
            font-size: 16px;
            font-weight: bold;
            text-align: center;
            text-decoration: none;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .send-request:hover {
            background-color: var(--color-primary-light);
            color: var(--color-white) !important;
        }

/* Dropdown */
.custom-dropdown {
  position: relative;
  margin-right: 10px;
}

.dropdown-toggle {
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 4px;
}

.dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  list-style: none;
  padding: 6px 0;
  margin: 0;
  display: none;
  z-index: 1000;
  min-width: 150px;
  max-height: 250px;
  overflow-y: auto;
  color: black !important;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-menu li {
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
}

.dropdown-menu li:hover,
.dropdown-menu li.selected {
  background-color: #f0f0f0;
}

.checkmark {
  float: right;
  color: green;
}

/* Divider */
.divider {
  height: 20px;
  width: 1px;
  background-color: #ccc;
  margin-right: 10px;
}

/* Search icon */
.search-icon {
  width: 18px;
  height: 18px;
  color: #555;
  margin-right: 8px;
}

/* Search input */
.search-input {
  flex: 1;
  border: none;
  font-size: 14px;
  padding: 6px;
  outline: none;
  background: transparent;
}

/* Results */
.live-results {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 250px;
  overflow-y: auto;
  background-color: #fff;
  border-radius: 0 0 8px 8px;
  z-index: 999;
  box-shadow: 0 4px 6px #f4ed2f29;
}

.live-results div,
.live-results a {
  padding: 10px;
  font-size: 14px;
  border-bottom: 1px solid #eee;
  color: #333;
  text-decoration: none;
  display: block;
}

.live-results div:hover,
.live-results a:hover {
  background-color: #f7f7f7;
  cursor: pointer;
}


@media (max-width: 767px) {
  .search-container {
    align-items: stretch;
    padding: 8px;
  }

  .custom-dropdown {
    margin-bottom: 8px;
  }

  .divider {
    display: none;
  }

  .search-input {
    width: 100%;
  }
}

.lead{
    font-size: 1rem;
}

   .footer-social-icons{
        list-style: none; 
        display: flex; gap: 15px; 
        padding: 0; 
        margin: 0;
        justify-content: center;
    }
    
    .footer-social-icons li a svg:hover{
        fill: var(--color-primary);
    }
    
        .devtools-404-page * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .devtools-404-page {
      height: 100vh;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      background: linear-gradient(#f4ed2f, #e12127);
      overflow: hidden;
    }

    .devtools-404-page .container {
      text-align: center;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      padding: 40px;
      border-radius: 20px;
      border: 2px solid rgba(255, 255, 255, 0.2);
      animation: devtools-fadeInUp 1.5s ease;
      max-width: 90%;
      width: 400px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }

    .devtools-404-page h1 {
      font-size: 6rem;
      font-weight: 900;
      color: #ffffff;
      text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
      animation: devtools-bounce 2s infinite;
    }

    .devtools-404-page p {
      font-size: 1.3rem;
      color: #fff;
      margin: 20px 0;
      line-height: 1.5;
    }

    .devtools-404-page a.button {
      display: inline-block;
      margin-top: 15px;
      padding: 12px 30px;
      font-size: 1rem;
      background: linear-gradient(to right, #e12127, #f4ed2f);
      color: #fff;
      text-decoration: none;
      border-radius: 30px;
      font-weight: bold;
      transition: all 0.3s ease-in-out;
    }

    .devtools-404-page a.button:hover {
      transform: scale(1.05);
      box-shadow: 0 0 10px rgba(255,255,255,0.5);
    }

    @keyframes devtools-bounce {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-10px);
      }
    }

    @keyframes devtools-fadeInUp {
      0% {
        transform: translateY(40px);
        opacity: 0;
      }
      100% {
        transform: translateY(0px);
        opacity: 1;
      }
    }

    @media (max-width: 500px) {
      .devtools-404-page h1 {
        font-size: 4rem;
      }
      .devtools-404-page p {
        font-size: 1rem;
      }
    }
    
    .list-inline-item a svg {
  transition: fill 0.3s ease;
  fill: white; /* default color */
}

.list-inline-item a:hover svg {
  fill: #f4ed2f; /* hover color */
}

.telegram-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #0088cc;
  color: white;
  border-radius: 50%;
  padding: 12px;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.telegram-float:hover {
  background-color: #f4ed2f;
  transform: scale(1.1);
}

.messenger-float {
  position: fixed;
  bottom: 77px; /* above Telegram button */
  right: 20px;
  background-color: #0084ff;
  color: white;
  border-radius: 50%;
  padding: 12px;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.messenger-float:hover {
  background-color: #f4ed2f;
  transform: scale(1.1);
}

.adiou-titel-text{
        font-size: 16px;
    font-weight: 600;
}