/* Import Google font - Poppins */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
h1 {
  color: #176B87;
  margin-top: 100px;
  text-align: center;
  margin-top: 100px;
}
h6 {
  color: #176B87;
  margin-top: 20px;
  text-align: center;
  font-size: 30px;

}
ul {
  list-style-type: disc; /* This sets the list style to disc (bullet point) */
}
/* anasayfa galerisi */
.custom-header {
  height: 50px; /* Örnek bir yükseklik değeri */
  /* Diğer özellikler */
}

.fs-5 {
  margin-top: auto;
  font-size: 1.25rem!important;
}
.gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery .images {
  gap: 15px;
  max-width: 85%;
  margin: 40px 0;
  columns: 5 310px;
  list-style: none;
}
.gallery .images .img {
  display: flex;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  margin-bottom: 14px;
  border-radius: 4px;
}
.gallery .images img {
  width: 100%;
  transition: transform 0.2s ease;
}

.gallery .images .img:hover img {
  transform: scale(1.1);
}


@media screen and (max-width: 688px) {
  .gallery .images {
    max-width: 100%;
    columns: unset;
  }
  .gallery .images .img {
    width: 100%;
    margin-bottom: 10px; /* Örnek bir değer, ihtiyaca göre ayarlayabilirsiniz */
  }
}


/* Image lightbox styling */
.lightbox {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  position: fixed;
  visibility: hidden;
  background: rgba(0,0,0,0.65);
}
.lightbox.show {
  visibility: visible;
  
  
}
.lightbox .wrapper {
  left: 50%;
  top: 50%;
  width: 100%;
  padding: 20px;
  max-width: 850px;
  background: #fff;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.9);
  transition: transform 0.1s ease;
}
.lightbox.show .wrapper {
  opacity: 1;
  margin-top: 20px;
  pointer-events: auto;
  position: relative;
  transform: translate(-50%, -50%) scale(1);
  top: 50%; /* Ekranın ortasına yükseklikte */
  left: 50%; 
}
.wrapper :where(header, .details) {
  display: flex;
  align-items: center;
}
.wrapper header {
  justify-content: space-between;
}
header .details i {
  font-size: 1.7rem;
}
header .details span {
  font-size: 1.2rem;
  margin-left: 10px;
}
header .buttons i {

  height: 40px;
  width: 40px;
  cursor:pointer;
  display: inline-block;
  margin-left: 10px;
  background: #e21316;
  font-size: 1.25rem;
  line-height: 40px;
  text-align: center;
  border-radius: 4px;
  transition: 0.2s ease;
}
/* Çarpı simgesi için stillendirme */
.close-icon {
  position: absolute; /* Simgenin pozisyonunu belirleyin */
  top: 8px; /* İstenilen yükseklik değeri */
  right: 8px; /* İstenilen sağ değeri */
  /* Diğer içeriklerin üzerinde görünmesini sağlayın */
}


.close-icon::after {
  content: "X";
  position: absolute; 
  top: 0px; 
  right: 15px; 
  font-size: 16px; 
  color: black;
  } 
  .desc {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background-color: #f0f0f0;
  }
header .buttons i:hover {
  background: #9f1222;
}


.wrapper .preview-img {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
.preview-img .img {
  max-height: 65vh;
}
.preview-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Responsive media query code */
@media screen and (max-width: 688px) {
  .lightbox .wrapper {
    padding: 12px;
    max-width: calc(100% - 26px);
  }
  .wrapper .preview-img {
    margin-top: 15px;
  }
  .gallery .images {
    max-width: 100%;
    padding: 0 13px;
    margin-top: 20px;
  }
}


/*nav ortak*/
.nav {
  z-index: 1000;
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 200px;
  background: #95bdf1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  
}
.nav,
.nav .nav-links {

  align-items: baseline;
  margin-right: 190px; 
  column-gap: 20px;
  list-style: none;
}
.nav {
  justify-content: space-between;
}
a {
  color: #fff;
  text-decoration: none;
}
.nav .logo {
  width: 100px; /* İstenilen genişlik değeri */
  height: auto; /* Genişliğe oranlı olarak otomatik boyutlandırma */
  font-size: 22px; /* Logo metin boyutu */
  margin-left: 60px; /* İstenilen sol kenar boşluğu */
}

.nav img {
  margin-top: 1px; /* İstenilen üst kenar boşluğu */
  width: 150px; /* İstenilen genişlik değeri */
  height: auto; /* Genişliğe oranlı olarak otomatik boyutlandırma */
}
.nav .nav-links a {
  transition: all 0.2s linear;
  font-size: 16px;
  font-family: "Poppins", sans-serif !important;
}
.nav.openSearch .nav-links a {
  opacity: 0;
  pointer-events: none;
}
.nav .search-icon {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
.nav .search-box {
 
  right: 250px;
  height: 45px;
  max-width: 555px;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s linear;
}
.nav.openSearch .search-box {
  opacity: 1;
  pointer-events: auto;
}
.nav .navOpenBtn,
.nav .navCloseBtn {
  display: none;
}
  .search-box .search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    left: 15px;
    color: #4a98f7;
    transform: translateY(-50%);
  }
  .search-box input {
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 6px;
    background-color: #fff;
    padding: 0 15px 0 45px;
  }
  
  .box{
    border:1px solid red;
    width: 200px;
    height: 200px;
    background-color: #94b7ce;
    color: #fff;
    text-align: center;
    line-height: 200px;
    font-size: 24px;
    border: 2px solid #2980b9;
    border-radius: 10px;
  }
  
  .first{
    width: 900px; /* Increase the width */
    height: 300px; /* Increase the height */
    margin: auto;
  }
  
  .box{
    border:1px solid red;
    width: 200px;
    height: 200px;
    background-color: #94b7ce;
    color: #fff;
    text-align: center;
    line-height: 200px;
    font-size: 24px;
    border: 2px solid #2980b9;
    border-radius: 10px;
  }
  
  .first{
    width: 900px; /* Increase the width */
    height: 300px; /* Increase the height */
    margin: auto;
  }
  @media screen and (max-width: 688px) {
    .nav {
      padding: 8px 8px; /* Değiştirilmiş padding değeri */
    }
    .nav,

   
    .nav .nav-links {
     
      align-items: center;
      margin-right: 8px; /* Değiştirilmiş margin değeri */
    }
    .nav .logo {
      width: 80px; /* Değiştirilmiş genişlik değeri */
      font-size: 18px; /* Değiştirilmiş font boyutu */
      margin-left: 20px; /* Değiştirilmiş sol kenar boşluğu */
    }
    .nav .nav-links a {
      font-size: 6px;
      
    }
    .nav img {
      width: 50px; /* Değiştirilmiş genişlik değeri */
    }
    .nav .search-box {
      right: 20px; /* Değiştirilmiş sağ konum değeri */
      max-width: 300px; /* Değiştirilmiş maksimum genişlik değeri */
    }
    .box {
      width: 100%; /* Tam genişlik */
      height: auto; /* Otomatik yükseklik */
      margin: 20px 0; /* Yeni bir marjin değeri */
      text-align: left; /* Yeni bir hizalama */
    }
    .first {
      width: 100%; /* Tam genişlik */
      height: auto; /* Otomatik yükseklik */
      margin: 20px 0; /* Yeni bir marjin değeri */
    }
    .nav ul {
      margin-left: 40px;
    }
  }
  
  
/* wrapper anaysayda için */

  .blog-wrapper{
    padding:15px;
    display:flex;
    flex-direction:row;
    justify-content:center;
    flex-wrap:wrap;
    .blog-card{
      @include transition(.3s);
      max-width: calc(33.33% - 150px); /* Her satırda 3 kart */
      flex: 0 0 calc(33.33% - 150px);
      margin:25px;
      background:#fff;
      border:1px solid #176B87;
      text-align:center;
      cursor:pointer;
      &:hover{
        box-shadow: 0 3px 10px 0 rgba(0,0,0,.1);
        .card-img{
          img{
            opacity:0.8;
          }
        }
      }
      .fa-map-marker-alt {
        font-size: 13px; /* Örnek bir boyut */
        color: rgb(0, 0, 0); /* Örnek bir renk */
        padding-bottom: 10px;
      }
      
      .card-img{
        position:relative;
        text-align:center;
        background:#176B87;;
        img{
          @include transition(.3s);
          max-height:280px;
          width:100%;
          border-bottom:4px solid #86B6F6;
        }
        &:before{
          content:'';
          position: absolute;
          bottom: -8px;
          left: 50%;
          margin-left: -10px;
          width: 0;
          height: 0;
          border-top: solid 10px #176B87;
          border-left: solid 10px transparent;
          border-right: solid 10px transparent;
        }
        h1{
          
          position:absolute;
          margin:0;
          font-size:42px;
          bottom:15px;
          width:100%;
          color:#fff;
          font-family: 'Slabo 27px', serif;
        }
      }
      .card-details{
        margin-top:40px;
        font-family: 'Roboto', sans-serif;
        color:#3C3C3C;
        span{   
          padding:0 30px;
          i{
            margin-right:5px;
          }
          
        }
      }
      .card-text{
        padding:30px 15px;
        font-family: 'Roboto', sans-serif;
        line-height:22px;
      }
      .read-more{
        @include transition(.3s);
        display:inline-block;
        width:auto;
        text-align:center;
        text-transform:uppercase;
        background:#CB6074;
        color:#fff;
        padding:15px;
        margin-bottom:30px;
        font-family: 'Oswald', sans-serif;
        &:hover{
          background: darken(#CB6074,20%);
        }
      }
    }
  }
  @media screen and (max-width: 768px) {
    .blog-wrapper {
      padding: 15px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .blog-wrapper .blog-card {
      max-width: calc(100% - 30px);
      margin: 15px 0;
    }
  
    .blog-wrapper .blog-card .fa-map-marker-alt {
      font-size: 13px;
      color: rgb(0, 0, 0);
      padding-bottom: 10px;
    }
  
    .blog-wrapper .blog-card .card-img img {
      max-height: auto;
      width: 100%;
      border-bottom: none;
    }
  
    .blog-wrapper .blog-card .card-img img:hover {
      opacity: 1;
    }
  
    .blog-wrapper .blog-card .card-img:before {
      content: none;
    }
  
    .blog-wrapper .blog-card h1 {
      font-size: 28px;
      bottom: 5px;
    }
  
    .blog-wrapper .blog-card .card-details {
      margin-top: 20px;
    }
  
    .blog-wrapper .blog-card .card-text {
      padding: 15px;
      line-height: 18px;
    }
  
    .blog-wrapper .blog-card .read-more {
      padding: 10px;
      margin-bottom: 20px;
    }
  }
  


/* dogum gunu slayt */
.slideshow{
  margin: 0 auto;
  padding-top: 70px;
  height: 500px;
  perspective: 1000px;
}
.content{

  margin: auto;
  width: 150px;
  perspective: 1000px;
  position:relative;
  padding-top: 80px;
  transform-style: preserve-3d;
}
.slider-content{
  width: 100%;
  position:absolute;
  float:right;
  animation: rotate 15s infinite linear;
  transform-style: preserve-3d;
}
.slider-content:hover{
  cursor: pointer;
  animation-play-state: paused;
}

.slider-content figure{
  width:180px;
  height:120px;
  border:1px solid #555;
  overflow:hidden;
  position:absolute;
}
.slider-content figure:nth-child(1){
  transform:rotateY(0deg) translateZ(300px);
}

.slider-content figure:nth-child(2){
  transform:rotateY(40deg) translateZ(300px);
}
.slider-content figure:nth-child(3){
  transform:rotateY(80deg) translateZ(300px);
}
.slider-content figure:nth-child(4){
  transform:rotateY(120deg) translateZ(300px);
}
.slider-content figure:nth-child(5){
  transform:rotateY(160deg) translateZ(300px);
}
.slider-content figure:nth-child(6){
  transform:rotateY(200deg) translateZ(300px);
}
.slider-content figure:nth-child(7){
  transform:rotateY(240deg) translateZ(300px);
}
.slider-content figure:nth-child(8){
  transform:rotateY(280deg) translateZ(300px);
}
.slider-content figure:nth-child(9){
  transform:rotateY(320deg) translateZ(300px);
}

.shadow{
  position: absolute;
  box-shadow: 0px 0px 0px #000;
 
}
.slider-content img{
  image-rendering: auto;
  transition: all 300ms;
  width: 100%;
  height: 100%;
}
.slider-content img:hover{
  transform: scale(1.0);
  transition: all 300ms;
 
}

@keyframes rotate {
  from{
    transform: rotateY(0deg);
  }
  to{
      transform: rotateY(360deg);
  }
}


.container {
 
  margin: 0 auto; /* Center horizontally */
  margin-top: 70px;
  width: 500px;
  padding: 40px;
  background: #95bdf1;
  text-align: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

@media screen and (max-width: 768px) {
  .container {
    width: 90%; /* Örnek olarak genişliği yüzde olarak ayarladık */
    padding: 20px; /* Örnek bir padding değeri */
    /* Diğer stil özellikleri */
  }
}
/* dogum gunu containerı */

.container .title {
  font-size: 2rem;
  color: #176B87;
}

.container .detay {
  color: #176B87;
  font-weight: 700;
  font-size: 2.2rem;
  margin: 15px 0;
}

.container span {
  font-size: 1.2rem;
}

.container .description {
  color: #ffffff;
  font-size: 1.1rem;
  margin: 20px 0 20px;
}

.container .offer {
  display: block;
  color: #176B87;
  font-size: 1rem;
  margin-top: 25px;
}


/* hakıımda table css */

.openinghours {
  font-family:Lucida Console;
  border-radius:4px;
  margin:10px;
  box-shadow: 0 0 10px black;
  padding:0 10px 0 10px;
  overflow: hidden;
  display: inline-block;
  width: 350px; /* Genişliği artırabilirsiniz */
  height: 470xpx;
}
.openinghourscontent {
  float:left;
}
.openinghourscontent h2 {
  display:block;
  text-align:center;
  margin-top:.33em;
}
.openinghourscontent button {
  color:white;
  font-family:Courier New;
  font-size:large;
  font-weight:bolder;
  background-color:#4679BD;
  border-radius:4px;
  width:100%;
  margin-bottom:10px;
}
.today {
  color: #8AC007;
}
.opening-hours-table tr td:first-child {
  font-weight:bold;
}
#open-status {
  display:block;
  margin-top:-1em;
  text-align:center;
  border:dotted lightgrey 3px;
}
.openorclosed:after {
  content:" open during these hours:";
}

.opening-hours-table tr td {
  padding:15px;
}

body {
background-color: #ffffff;
}



/* container hakkımda */

  
.responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
}

.text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  line-height: 25px;

}

.responsive-container-block.bigContainer {
  padding-top: 10px;
  padding-right: 30px;
  padding-bottom: 10px;
  padding-left: 30px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mainImg {
  color: black;
  width: 55%;
  height: auto;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 10px 7px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.text-blk.headingText {
  font-size: 25px;
  font-weight: 700;
  line-height: 34px;
  color: rgb(51, 51, 51);
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 10px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
}

.allText {
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 40px;
  width: 40%;
  margin: 0 0 0 0;
}

.text-blk.description {
  font-size: 15px;
  line-height: 34px;
  color: rgb(102, 102, 102);
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 50px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 10px;
}
.kural-list {
  font-size: 15px;
  line-height: 34px;
  color: rgb(102, 102, 102);
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 50px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 10px;
}

.explore {
  font-size: 20px;
  line-height: 28px;
  color: rgb(255, 255, 255);
  background-color: rgb(244, 152, 146);
  padding-top: 10px;
  padding-right: 50px;
  padding-bottom: 10px;
  padding-left: 50px;
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-style: outset;
  border-right-style: outset;
  border-bottom-style: outset;
  border-left-style: outset;
  border-top-color: rgb(244, 152, 146);
  border-right-color: rgb(244, 152, 146);
  border-bottom-color: rgb(244, 152, 146);
  border-left-color: rgb(244, 152, 146);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  cursor: pointer;
}

.explore:hover {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 235, 234);
  color: rgb(244, 152, 146);
}

.responsive-container-block.Container {
  margin-top: 80px;
  margin-right: auto;
  margin-bottom: 50px;
  margin-left: auto;
  justify-content: center;
  align-items: center;
  max-width: 1320px;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
}

.responsive-container-block.Container.bottomContainer {
  margin-top: 100px;
  margin-right: 0px;
  margin-bottom: 50px;
  margin-left: 0px;
  flex-direction: row-reverse;
  margin: 100px auto 50px auto;
}

.allText.aboveText {
  margin: 0 0 0 40px;
}

.allText.bottomText {
  margin: 0 40px 0 0;
}

@media (max-width: 1024px) {
  .responsive-container-block.Container {
    max-width: 850px;
  }

  .mainImg {
    width: 55%;
    height: auto;
  }

  .text-blk.description {
    font-size: 20px;
  }

  .allText {
    width: 40%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 20px;
  }

  .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
  }

  .text-blk.subHeadingText {
    font-size: 22px;
  }

  .responsive-container-block.Container.bottomContainer {
    margin: 80px auto 50px auto;
  }

  .responsive-container-block.Container {
    max-width: 830px;
  }

  .allText.aboveText {
    margin: 30px 0 0 40px;
  }

  .allText.bottomText {
    margin: 30px 40px 0 0;
  }
}

@media (max-width: 768px) {
  .mainImg {
    width: 90%;
  }

  .allText {
    width: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .responsive-container-block.Container {
    flex-direction: column;
    height: auto;
  }

  .text-blk.headingText {
    text-align: center;
  }

  .text-blk.subHeadingText {
    text-align: center;
    font-size: 25px;
  }

  .text-blk.description {
    text-align: center;
    font-size: 25px;
  }

  .allText {
    margin-top: 40px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .allText.aboveText {
    margin: 40px 0 0 0;
  }

  .responsive-container-block.Container {
    margin: 80px auto 50px auto;
  }

  .responsive-container-block.Container.bottomContainer {
    margin: 50px auto 50px auto;
  }

  .allText.bottomText {
    margin: 40px 0 0 0;
  }
}

@media (max-width: 500px) {
  .responsive-container-block.Container {
    padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
    width: 100%;
    max-width: 100%;
  }

  .mainImg {
    width: 100%;
  }

  .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 25px;
    padding-bottom: 10px;
    padding-left: 25px;
  }

  .text-blk.subHeadingText {
    font-size: 25px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .text-blk.description {
    font-size: 25px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .allText {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    width: 100%;
  }
}


/* kaydır ziyaretçilerimiz */


html {
  height: 100vh;
  overflow: hidden;
}

body { 
  margin:0;
  padding:0;
  perspective: 1px;
  transform-style: preserve-3d;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  font-family:  "Poppins", sans-serif;;
}


.slide {
  position: relative;
  padding: 25vh 10%;
  min-height: 100vh;
  width: 100vw;
  box-sizing: border-box;
  box-shadow: 0 -1px 10px rgba(0, 0, 0, .7);
  transform-style: inherit;
 
}
logo.img {
    position: absolute;
    top: 50%;
    left: 35%;
    width: 320px;
    height: 240px;
    transform: translateZ(.25px) scale(.75) translateX(-94%) translateY(-100%) rotate(2deg);
    padding: 10px;
    border-radius: 5px;
    background: rgba(240,230,220, .7);
    box-shadow: 0 0 8px rgba(0, 0, 0, .7);
  }
  

/* img:last-of-type {
  transform: translateZ(.4px) scale(.6) translateX(-104%) translateY(-40%) rotate(-5deg);
}*/

.slide:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0 0 8px 1px rgba(0, 0, 0, .7);
}

.title {
  width: 50%;
  padding-top: 1px;
  padding: 5%;
  border-radius: 5px;
  background: rgba(240,230,220, .7);
  box-shadow: 0 0 8px rgba(0, 0, 0, .7);
}

.slide:nth-child(2n) .title {
  margin-left: 0;
  margin-right: auto;
}

.slide:nth-child(2n+1) .title {
  margin-left: auto;
  margin-right: 0;
}

.slide, .slide:before {
  background: 50% 50% / cover;  
}



#title h1 {
 transform: translateZ(.25px) scale(.75);
 transform-origin: 50% 100%;

}

#slide1:before {
  background-image: url("grup2.png");
  transform: translateZ(-1px) scale(2);
}

#slide2 {
  background-image: url("kapı2.png");
  z-index:2;
}



#slide4 {
  background-image: url("oyuncak2.jpeg");
  
}

@media screen and (max-width: 768px) {
  .title h6 {
    color: #176B87;
    margin-top: 15px;
    text-align: center;
    font-size: 17px;
  }

  .title p {
    font-size: 14px; /* Örnek bir boyut */
    /* Diğer stil özellikleri */
  }
}
/* footer ortak */
.footer-distributed{

  background: rgba(149, 189, 241, 0.4);
  box-sizing: border-box;
  width: 100%;
  height: 28%;
  text-align: left;
  font: bold 16px sans-serif;
  padding: 25px 50px;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right{
  display: inline-block;
  vertical-align: top;
  
}
.fab.fa-facebook-f {
  color: #3b5998; /* İkon rengini belirli bir renk koduna ayarlar */
}
.instagram-icon {
  color: #DD2A7B; /* İkon rengini belirli bir renk koduna ayarlar */
}
.mail-icon{
  color: #55BE96; /* İkon rengini belirli bir renk koduna ayarlar */
}

.footer-distributed .footer-left{
  width: 20%; 
  margin-right: 10px; 
  text-align: center;
}
.footer-distributed .footer-center{
  width: 30%;
  margin-left: 6%;
  
}

.footer-distributed .footer-right{
  width: 25%;
  margin-left: 8%;
 
}
 

.footer-distributed h3{
  color:  #ffffff;
  font: normal 20px 'Open Sans', cursive;
  margin: 0;
}





.footer-distributed .footer-center i,
.footer-distributed .footer-right i{

  color: #176B87;
  font-size: 25px;
  border-radius: 50%;
  text-align: center;
  line-height: 10px;
  margin: 1px 1px;
  vertical-align: middle;
}
  


.footer-distributed .footer-center p,
.footer-distributed .footer-right p{
  display: inline-block;
  color: #62696d;

  vertical-align: middle;
  margin:0;
}


.footer-distributed .footer-center p.tel,
.footer-distributed .footer-right p.tel{
  display: inline-block;
  color: #62696d;
margin-top: 3px;
  vertical-align: middle;}
  

.footer-distributed .footer-center p span{
  display:block;
  color: #2980b9;
  font-weight: normal;
  font-size:14px;
  line-height:2;
}

.footer-distributed .footer-center p.adres span{
  display:block;
  color: #2980b9;
  font-weight: normal;
  font-size:14px;
  line-height:2;
}

.footer-distributed .footer-right p span{
  display:block;
  font-weight: normal;
  color: #2980b9;
  font-size:14px;
  line-height:2;
  margin-right:20px;
  white-space: nowrap; 
}
.footer-distributed .footer-right p.adres span {
  display: block;
  font-weight: normal;
  color: #2980b9;
  font-size: 14px;
  line-height: 2;
  margin-right: 20px;
  white-space: nowrap;
}


.footer-distributed .footer-links a:before {
  content: "|";
  font-weight:300;
  font-size: 20px;
  left: 0;
  color: #fff;
  display: inline-block;
  padding-right: 5px;
}

.footer-distributed .footer-links .link-1:before {
  content: none;
}


.footer-distributed .footer-icons{
  margin-top: 25px;

}

.footer-distributed .footer-icons a{
  display: inline-block;
  width: 35px;
  height: 35px;
  cursor: pointer;
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  line-height: 35px;

  margin-right: 3px;
  margin-bottom: 5px;
}


.footer-distributed h4{
  color:  #176B87;
  font: normal 22px 'Open Sans';
  margin: 0;
  font-weight: bold;
}

p.sube span br {
  display: none;
}

.footer-icons i {
  /* Stil tanımlamaları */
  font-size: 20px; 
  /* ... */
}
/* Orta boyut ekranlar için */
@media screen and (max-width: 768px) {
  .form-group.d-flex.align-items-start {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-distributed .footer-right p.adres span{
    display: none;
  }
  .footer-distributed .footer-center p.adres span{
    display: none;
  }
  .footer-distributed .footer-right p,footer-distributed .footer-center p{
    color:#62696d

  }
 
  .fa.fa-phone {
    display: none;
  }
  .fa.fa-map-marker {
    display: none;
  }
 
  .footer-distributed{

    background: rgba(149, 189, 241, 0.4);
    box-sizing: border-box;
    width: 100%;
    height: 34%;
    text-align: left;
    font: bold 16px sans-serif;
    padding: 25px 50px;
  }

  p.sube span br {
    display: block;
  }
  .col-md-5.d-flex.align-items-stretch {
    width: 100%;
    margin-top: 20px;
  }


#map {
  @media (max-width: 767.98px) {
    #map {
      height: 300px; }}}} 

.container-fluid {
        text-align: center; /* Genel hizalama, mobil ve web için varsayılan olarak merkezi */
    }

    @media only screen and (min-width: 600px) {
        /* Ekran genişliği 600 pikselden büyükse bu stil uygulanır */
        .container-fluid {
            justify-content: center !important; /* !important kullanarak diğer stilleri geçersiz kılma */
        }
    }