.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out;
    z-index: 9999;
}
.logo {
    width: 200px;
    animation: heartbeat 1.5s infinite ease-in-out;
}
@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}
.hidden {
    opacity: 0;
    pointer-events: none;
}

.team-info{
    margin-top: 177px !important;
    padding-right: 50px !important;
}

.service-info p{
    margin-bottom: 10px !important;
}
.service-info strong{
    font-size: 18px !important;
}


/* Responsive */

@media (max-width:576px) { /* Telefonun dikey kullanımı */
    .team-info{
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    .m-about-containt{
        margin-top: 0 !important;
    }
}
@media (min-width:576px) and (max-width:768px){ /* Telefonun yatay kullanımı */
    .team-info{
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    .m-about-containt{
        margin-top: 0 !important;
    }
}
@media (min-width:768px) and (max-width:992px){ /* Tabletin dikey kullanımı */

}
@media (min-width:992px) and (max-width:1200px){ /* Tabletin yatay kullanımı */

}
@media (min-width:1200px) and (max-width:1500px){ /* Laptop, PC, TV */

}
@media (min-width: 1500px){

}

/* Responsive*/