.custom-menu .nav-link {
    font-size: 18px;
    color: #000;
    padding: 10px 15px;
    transition: color 0.3s, border-bottom 0.3s;
}

.custom-menu .nav-link:hover {
    color: #000;
    border-bottom: 2px solid #000;
    font-weight: bold
}

.custom-menu .nav-link.active {
    color: #000;
    border-bottom: 2px solid #000;
    font-weight: bold
}

.navbar-toggler {
    border: none !important;
    outline: none;
    box-shadow: none ;
    position: absolute;
    right: 10px;
    z-index: 1050;
    top: 30px;
}

.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none;
    box-shadow: none;
    border: none !important;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}


.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}


.support-button {
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.5rem;
    padding: 15px 20px;
    width: 60%;
    max-width: 1000px;
    min-width: 200px;
    transition: background-color 0.3s, transform 0.3s;
    text-align: center;
    cursor: pointer;
}


.support-button:hover {
    background-color: #333;
    transform: scale(1.05);
}


.image-section {
    width: 100%;
    margin-top: 20px;
}

.full-width-image {
    width: 100%;
    height: auto;
}

.btn-black {
    background-color: #000;
    color: #fff;
    border: none;
}

.btn-black:hover {
    background-color: #333;
    color: #fff;
}

.btn-black:focus {
    color: #000000;
    outline: none;
    box-shadow: none !important;
}

.btn-black:active {
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
}

.report-container {
    text-align: center;
    margin-top: 50px;
}

.report-card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
}

.report-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.footer-bloc{
    margin-top: 50px;
}

.icon {
     width: 30px;
     height: 30px;
     padding: 2px!important;
}

.icon:hover {
    transform: scale(1.2);
}

.language-buttons {
    right: 60px;
    z-index: 1050;
    padding: 4px 10px 4px 10px;
    top: 30px;
}

.container-fluid {
    padding-left: 10px;
    padding-right: 10px;
}

.content{
    margin: 20px;
}

.lang-btn:visited,
.lang-btn:focus,
.lang-btn:active {
    color: #000 !important;
}

.lang-btn.active {
    font-weight: bold;
}

.lang-btn{
    color: #000 !important;
    border: none;
    background: none;
    padding: 1px;
}

.custom-menu .dropdown-menu {
    background-color: white;
    border: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.custom-menu .dropdown-item {
    font-size: 18px;
    color: #000;
    padding: 10px 15px;
    transition: color 0.3s, border-bottom 0.3s;
}

.custom-menu .dropdown-item:hover {
    color: #000;
    background-color: transparent;
    border-bottom: 2px solid #000;
    font-weight: bold;
}

.custom-menu .dropdown-item.active {
    color: #000;
    border-bottom: 2px solid #000;
    font-weight: bold;
    background-color: transparent;
}

.zoom-card {
    overflow: hidden;
    border: none;
    position: relative;
    transition: transform 0.3s ease;
}

.zoom-card img {
    transition: transform 0.3s ease;
}

.zoom-card:hover img {
    transform: scale(1.1);
}

.zoom-card .card-img-overlay {
    transition: background-color 0.3s ease;
}

.zoom-card:hover .card-img-overlay {
    background-color: rgba(0, 0, 0, 0.6);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

input:focus {
    outline: none;
    box-shadow: none;
    border-color: black;
}

.custom-link {
  color: black;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-block;
}

.custom-link:hover {
  color: black;
  transform: scale(1.05);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.partner-card {
  height: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.doc-box {
  height: 150px;
  border: none;
  overflow: hidden;
  padding: 0.5rem;
}

.doc-box img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.doc-box:hover img {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.doc-thumb {
  transition: transform 0.3s ease;
  cursor: pointer;
}

.doc-thumb:hover {
  transform: scale(1.05);
}

@media (max-width: 991px) {
    .language-buttons {
        position: absolute;
    }
}
@media (min-width: 768px) {
     .image_about_us {
        width: 30%;
    }
}

@media (prefers-color-scheme: dark) {
    .lang-btn {
        color: #000 !important;
    }
}

