.menu-item-has-children{
    max-height: 30px !important;
}
.rs-mega-menu{
    max-height: 30px !important;
}
/* Masaüstü (desktop) için */
.logo-area img {
    max-height: 150px!important;
}

/* Mobil cihazlar için (özellikle 768px ve daha küçük ekranlar) */
@media (max-width: 768px) {
    .logo-area img{
        max-height: 70px !important;
        margin-top: 10px !important;
    }
    .canvas-logo img{
        /*max-height: 100% !important;*/
        /*min-height: 100% !important;*/
        max-height: 100px !important;
        max-width: 100px !important;
        margin-top: -80px !important;
    }
    .MobileSmall {
        font-size: 13px;
    }
}
.CustomDivInput input, .CustomInput input{
    color: white !important;
    background-color: rgb(55,65,81) !important;
    border-radius: 10px !important;
    height: 42px !important;
}
.CustomDivInput select,  .CustomInput select{
    color: white !important;
    background-color: rgb(55,65,81) !important;
    border-radius: 10px !important;
    height: 42px !important;
}
.CustomDivInput textarea,  .CustomInput textarea{
    color: white !important;
    background-color: rgb(55,65,81) !important;
    border-radius: 10px !important;
}
.CustomDivInput .select2 {
    color: white !important;
    background-color: rgb(55,65,81) !important;
    border-radius: 10px !important;
    height: 42px !important;
}
.CustomDivInput .select2-selection{
    color: white !important;
    background-color: rgb(55,65,81) !important;
    border-radius: 10px !important;
    height: 42px !important;
}
.CustomDivInput .select2-selection__rendered{
    color: #2fa8ab !important;
}
.CustomDivInput .select2-selection__choice{
    background-color: #363637 !important;
    color: #2fa8ab !important;
    border: 1px solid #2fa8ab !important;
    border-radius: 10px !important;
    font-size: 16px !important;
}
.pagination .active a{
    color: #0a53be !important;
    font-weight: bold !important;
}

.gallery-container {
    /*overflow: hidden;*/
    position: relative;
    width: 100%;
    padding: 20px 0;
}

.gallery-scroll {
    display: flex;
    width: max-content;
    animation: scroll-left 45s linear infinite;
}

.gallery-container:hover .gallery-scroll {
    animation-play-state: paused;
}

.gallery-item-wrapper {
    flex: 0 0 auto;
    width: 260px;  /* Görseldeki kutu genişliği yaklaşık */
    height: 120px; /* Görseldeki kutu yüksekliği yaklaşık */
    margin: 0 15px;
    background-color: #f0f6fc;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.gallery-item-wrapper:hover {
    box-shadow: 0 12px 35px rgba(0,0,0,0.18);
}

.gallery-item {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.gallery-item-wrapper:hover .gallery-item {
    transform: scale(1.12);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.rs-breadcrumbs {
    background: #273884;
}
#map {
    height: 350px !important;
    width: 100% !important;
    margin-top: 15px !important;
}
#mapmobile {
    height: 350px !important;
    width: 100% !important;
}

/* anasayfa resimler başlangıç */
.blur-image-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blur-image-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--blur-image);
    background-size: cover;
    background-position: center;
    filter: blur(20px);
    transform: scale(1.1);
    z-index: 1;
}

.blur-image-box img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* anasayfa resimler bitiş */


.bluebutton{
    background-color: #273884 !important;
    color: white !important;
}
.bluebutton:hover{
    background-color: #1a2863 !important;
    color: white !important;
}