@charset "UTF-8";
.blurry-bg {
  position: relative;
	background-color: rgba(0,0,0,0.03);
  background-size: cover;
  overflow: hidden;
}

.blurry-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px); /* Adjust the blur amount */
  opacity: 1; /* Adjust the opacity */
  z-index: -1; /* Place the background behind the content */
}

.content {
  position: relative;
  z-index: 1; /* Ensure the content appears above the blurred background */
  /* Additional styles for your content */
}
.bg-blue {
	background-color: #0193cf;
}
.bg-green {
	background-color: #3eb9d8;
}
.bg-blue-dark {
	background-color: #0c609e;
}
.text-blue {
	color: #0193cf;
}
.text-green {
	color: #3eb9d8;
}
.text-blue-dark {
	color: #3166b6;
}
.size-14 {
	font-size: 14px;
}
.size-16 {
	font-size: 16px;
}
.size-18 {
	font-size: 18px;
}
.size-20 {
	font-size: 20px;
}
.size-22 {
	font-size: 22px;
}
.size-24 {
	font-size: 24px;
}
.size-26 {
	font-size: 26px;
}
.size-28 {
	font-size: 28px;
}
.size-30 {
	font-size: 30px;
}
.size-40 {
	font-size: 40px;
}
.size-50 {
	font-size: 50px;
}
.size-60 {
	font-size: 60px;
}
.leftimage::before {
        content: '';
        display: block;
        position: absolute;
        background-image: url("../images/dots-black.svg");
        top: -7.5%;
        left: -7.5%;
        right: 12.5%;
        bottom: 12.5%;
        z-index: 0;
        opacity: 0.8;
    }

.borderbottom::before {
	content: '';
    display: block;
    position: absolute;
    background-image: url(../images/border.jpg);
    bottom: -50%;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 0;
    opacity: 0.8;
    width: 100px;
    height: 2px;
}
.carousel-item {
    text-align: center;
  }
  .carousel-img {
    height: 300px; /* Kare boyutu */
    object-fit: cover; /* Resimleri tamamen kapla */
  }
h1.faq {
    position: relative;
    margin-bottom: 50px;
  }
 h1.faq::before {
    content: "FAQ";
    opacity: 0.1;
    position: absolute;
    font-size: 80px;
    left: 20%;
    line-height: 50px;
  }
.patients {
    display: flex;
    justify-content: space-around;
}

.patients .col-4 {
    flex: 1;
    text-align: center;
    position: relative;
}

.patients .col-4:nth-child(2) img {
    position: relative;
    top: 40px;
}

.patients .col-4:nth-child(3) img {
    position: relative;
    top: -30px;
}
.form-control {
        border: none;
        border-radius: 0; /* Optional: If you want to remove border-radius as well */
    }

    .gallery-container {
      display: flex;
      flex-wrap: wrap;
      height: 100%;
    }
    .gallery-row {
      flex: 0 0 100%;
      max-width: 100%;
      display: flex;
    }
    .gallery-item {
      flex: 1;
      max-width: 25%; /* Each item occupies 25% of the row */
      height: 50vh; /* Each image covers half of the screen height */
      overflow: hidden;
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
		.footerbg {
		 background-color: #2bb6f7;
         color: #fff;
		}
        .footer-section {
            padding: 30px 0;
        }
        .footer-section h4 {
            font-size: 18px;
            margin-bottom: 20px;
        }
        .footer-section ul {
            list-style: none;
            padding-left: 0;
        }
        .footer-section ul li {
            margin-bottom: 10px;
        }
        .footer-section a {
            color: #fff;
            text-decoration: none;
        }

.quote-icon-container {
  display: flex;
  justify-content: center;
}

.quote-icon-border {
  border: 1px solid black;
  border-radius: 50%;
  padding: 10px;
  width: 50px; /* Added to ensure circle size */
  height: 50px; /* Added to ensure circle size */
}

.quote-icon {
  font-size: 24px;
}
.writer-image {
  border-radius: 50%;
  width: 50px; /* Adjust size as needed */
  height: 50px; /* Adjust size as needed */
}
  .header-color {
    background-color: #007bff; /* Bootstrap primary color */
    color: white;
  }
  .contact-tab {
    background-color: #f8f9fa; /* Bootstrap light color */
    border: none;
  }
  .contact-btn {
    margin-top: 10px;
  }
  .map {
    height: 450px; /* Adjust as needed */
	margin-top: -80px;
  }
.service-list { background-color: #fff; }
  .consultation { background-color: #246AA3; color: white; padding: 10px; }
  .consultation h4 { color: #ffffff; }
  .btn-primary { background-color: #004085; }

/* Media query for mobile phones */
@media (max-width: 576px) {
  .gallery-item {
    max-width: 100%; /* Each item occupies 100% of the row for mobile phones */
    height: auto; /* Reset height for mobile phones */
  }
}


@media (min-width: 700px) {
    .overflow-sm-auto {
        overflow:visible !important;
    }
}

   .patients img {
    height: 100%;
min-height: 200px;
object-fit: cover;
display: block;
margin: auto;
    }
