html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}
.services-card{
  border: 0;
}
.services-card p{
  font-size: 13px;
  
}

.hero{    
    /* box-sizing: border-box;
    border-color: #FFD7C4;
    border-style: solid;
    border-width: 0;

   background-color: #FFF0E8;
    */
    background-image: url(../img/background.png);
    background-repeat:round;
    
}

.navbar-transparent {
    background-color: transparent;
    transition: background-color 0.3s ease; /* Geçiş animasyonu */
}
.slide-in-left {
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

/* Sağdan gelen animasyon */
.slide-in-right {
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

/* Aktif olduğunda görünür hale gelir */
.slide-in-left.active, .slide-in-right.active {
    opacity: 1;
    transform: translateX(0);
}
/* body {
  margin-bottom: 60px;
} */