@keyframes moveRightUp {
    0% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(10px, -10px);
    }
    100% {
      transform: translate(0, 0); 
    }
  }
  

/* Keyframe animasyonları */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0); 
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.9); /* Başlangıçta biraz küçük */
    }
    100% {
        opacity: 1;
        transform: scale(1); /* Sonunda normal boyuta gelsin */
    }
}

.hidden-h1{
opacity: 0;
    width: 0px;
      height: 0px;
    }

#send-response-success , #send-response-unsuccessful{
  display: none;
}
#phoneNumber {
  padding: 8px 50px;
}

#home-banner {
  position: relative;
  top: -152px;
  margin-bottom: -152px;
}

#home-banner .banner-content{
  position: absolute;
  bottom: 50%;
  z-index: 4;
}

#home-banner .banner-content .banner-form {
  position: relative;
  background-color: #ffffff7a;
  border-radius: 22px;
  box-shadow: -8.19px -5.74px 16px #63876885;
  padding: 46px 38px;
  z-index: 0;
  overflow: hidden;
}

#home-banner .banner-content .banner-title {
    color: var(--text-primary);
    font-size: 56px;
    line-height: 1.2;
    font-weight: 600;
}

#home-banner .banner-content .banner-desc {
  color: var(--text-primary);
  font-size: 18px;
  line-height: 1.5;
  margin-top: 15px;
}

#home-banner .banner-content .banner-link {
  display: inline-block;
  margin-top: 15px;
  background: var(--button-gradient);
  min-width: 230px;
  padding: 10px;
  border: 2px solid var(--color-white);
  border-radius: 10px;
  text-align: center;
  color: var(--text-primary);
  font-size: 20px;
  transition: 0.3s ease-in;
}

#home-banner .banner-content .banner-link:hover{
  transform: scale(1.1);
}

#home-banner .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8;
  border: none;
  background: var(--button-gradient);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  cursor: pointer;
  opacity: 0.6;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

#home-banner .owl-nav button svg {
  width: 50px;
  height: 50px;
  color: #000;
}

#home-banner .owl-nav button:hover {
  opacity: 1;
}

#home-banner .owl-nav .owl-prev {
  left: 10px;
}

#home-banner  .owl-nav .owl-next {
  right: 10px;
}


/* 
#home-banner .banner-content .banner-subtitle {
  color: var(--color);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}

#home-banner .banner-content .banner-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
}

#home-banner .banner-content .banner-desc{
  color: var(--color-2);
  font-size: 18px;
  margin-bottom: 10px;
}

#home-banner .banner-content .banner-link {
  background: var(--color);
  border: 1px solid var(--color);
  padding: 10px 15px;
  display: inline-block;
  min-width: 235px;
  text-align: center;
  color: #fff;
  border-radius: 9px;
  font-size: 20px;
  font-weight: 500;
  transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

#home-banner .banner-content .banner-link:hover{
  background: #fff;
  color: var(--color);
  border: 1px solid var(--color);
}

#home-banner .banner-content .banner-logo-container{
  margin-top: 110px;
  padding: 40px 0px;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
} */

/* form */
#home-form {
  position: relative;
  bottom: 330px;
  margin-bottom: -250px;
  z-index: 1;
}

#home-form .form-inner {
  border-radius: 15px;
  padding: 50px 75px;
}

#home-form .form-inner .form-content{
  position: relative;
}

#home-form .form-inner .form-content::after {
    content: "";
    position: absolute;
    right: -75px;
    width: 1px;
    height: 100px;
    bottom: 20%;
    background: var(--color);
}
#home-form .form-inner .form-title {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
}

#home-form .form-inner .form-desc {
  text-align: center;
}


#home-form .form-inner .form-social-container {
  margin-top: 15px;
  gap: 15px;
}

#home-form .form-inner .form-social-container .form-top-social-link{
  background: var(--button-gradient-2);
  padding: 5px;
  border-radius: 4px;
  transition: 0.3s ease-in-out;
}

#home-form .form-inner .form-social-container .form-top-social-link:hover {
  transform: rotate(15deg);
}

#home-form .form-inner .form-social-container .form-top-social-link svg {
  color: var(--text-light);
  width: 25px;
  height: 25px;
}

#home-form .input-area {
    margin-bottom: 20px;
}

#home-form .input-area .form-in {
  width: 100%;
  padding: 14px 20px;
  color: var(--color);
  font-size: 18px;
  -webkit-appearance: none;
  border-radius: 14px;
  border: 1px solid var(--color);
  height: 45px;
}

#home-form .input-area .form-in::placeholder{
  color: var(--color);
}

#home-form .input-area select{
  outline: none;
}

#home-form .input-area #phoneNumber {
  padding: 7px 55px;
}

#home-form .input-area.location-area{
  position: relative;
}

#home-form .input-area.location-area::after {
  content: '';
  background: url('../images/chewron-down.svg') no-repeat center center;
  width: 24px;
  height: 24px;
  object-fit: contain;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

#home-form .input-area.department-area{
  position: relative;
}

#home-form .input-area.department-area::after {
  content: '';
  background: url('../images/chewron-down.svg') no-repeat center center;
  width: 24px;
  height: 24px;
  object-fit: contain;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

#home-form .input-area .send-btn {
  width: 100%;
  height: 45px;
  border-radius: 14px;
  background: var(--color);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

/* prefered */

#home-most-prefered{
  margin-bottom: 120px;
}

#home-most-prefered .section-title-head {
  text-align: center;
  margin-bottom: 40px;
}

#home-most-prefered .section-title-head .section-title{
  margin-bottom: 15px;
}

#home-most-prefered .process-box{
  position: relative;
}

#home-most-prefered .process-box img{
  border-radius: 10px;
}

#home-most-prefered .process-box .process-content {
  position: absolute;
  bottom: 20px;
  padding: 0 10px;
}

#home-most-prefered .process-box .process-content .process-title {
  color: var(--color);
  font-weight: 700;
  font-size: 22px;
}

#home-most-prefered .process-box .process-content .process-desc {
  color: var(--color);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/* about */

#home-about{
  position: relative;
  margin-bottom: 120px;
}

#home-about .about-decor{
  position: absolute;
  left: 0;
  bottom: 0;
}

#home-about .about-title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 15px;
}

#home-about .about-desc{
  margin-bottom: 15px;
}

#home-about .about-link {
  display: inline-block;
  margin-top: 15px;
  background: var(--button-gradient-3);
  min-width: 230px;
  padding: 10px;
  border: 2px solid var(--color-white);
  border-radius: 10px;
  text-align: center;
  color: var(--text-primary);
  font-size: 20px;
  transition: 0.3s ease-in;
}

/* application */

#home-application{
  margin-bottom: 120px;
}

#home-application .application-title {
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
}

#home-application .application-group-link{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 15px;
  transition: 0.3s ease-in-out;
}

#home-application .application-group-link .application-link {
  color: var(--color);
  gap: 10px;
  font-size: 26px;
  font-style: italic;
  font-weight: 600;
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275)
}

#home-application .application-group-link .application-link:hover{
  opacity: 0.5;
}

#home-application .application-group-link .application-icon {
  width: 15px;
}

#home-application .woman-image {
  width: 100%;
}

/* info area */

#home-info-area {
  margin-bottom: 120px;
}

#home-info-area .info-title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 15px;
}

#home-info-area .info-desc{
  margin-bottom: 15px;
}

#home-info-area .info-link {
  display: inline-block;
  margin-top: 15px;
  background: var(--button-gradient-3);
  min-width: 230px;
  padding: 10px;
  border: 2px solid var(--color-white);
  border-radius: 10px;
  text-align: center;
  color: var(--text-primary);
  font-size: 20px;
  transition: 0.3s ease-in;
}

/* before after */

#home-before-after{
  margin-bottom: 120px;
}

#home-before-after .section-title-head {
  text-align: center;
  margin-bottom: 50px;
}

#home-before-after .section-title-head .section-midtitle{
  margin-bottom: 15px;
}

#home-before-after .owl-dots {
  margin-top:45px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

#home-before-after .owl-carousel img{
  border-radius: 10px;
}

#home-before-after .owl-dots .owl-dot span{
  width: 16px;
  height: 16px;
  background-color: var(--color-2);
  margin: 0px;
}

#home-before-after .owl-dots .owl-dot.active span{
  background-color: var(--color);
  width: 21px;
  height: 21px;
}

/* comments */

#home-comments{
  margin-bottom: 120px;
}

#home-comments .section-midtitle{
  margin-bottom: 10px;
}

#home-comments .comments-box {
  background: #F6F0EA;
  padding: 25px;
  border-radius: 11px;
}

#home-comments .comments-box .comments-head-area {
  margin-bottom: 10px;
}

#home-comments .comments-box .google-icon {
  margin-top: 10px;
  width: 36px !important;
}

#home-comments .comments-box .comments-head .comments-title {
  font-size: 22px;
  font-weight: 700;
  font-style: italic;
}

#home-comments .comments-box .comments-content {
  max-height: 165px;
  overflow-y: auto;

}

#home-comments .comments-box .comments-content::-webkit-scrollbar {
  width: 8px
}

#home-comments .comments-box .comments-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px
}

#home-comments .comments-box .comments-content::-webkit-scrollbar-thumb {
  background-color:var(--color);
  border-radius: 4px
}

#home-comments .comments-box .comments-content::-webkit-scrollbar-thumb:hover {
  background-color: #555
}

#home-comments .comments-box .stars-icon{
  width: 100px!important;
  margin-top: 5px;
}

#home-comments .owl-dots .owl-dot span{
  width: 12px;
  height: 12px;
  background-color: var(--color-2);
  margin: 2px;
}

#home-comments .owl-dots .owl-dot.active span{
  background-color: var(--color);
}

/* seo text */
#home-seo-text{
    margin-bottom:80px;
}
#home-seo-text .seo-text p,
#home-seo-text .seo-text ul,
#home-seo-text .seo-text ol {
    margin: 25px 0;
    font-family: var(--custom-first-font);
    line-height: 1.4;
    font-weight: 400;
    color: #000;
}

#home-seo-text .seo-text h1 {
    font-size: 28px;
}

#home-seo-text .seo-text h2 {
    font-size: 24px;
}

#home-seo-text .seo-text h3 {
    font-size: 20px;
}

#home-seo-text .seo-text h4,
#home-seo-text .seo-text h5 {
    font-size: 16px;
}

#home-seo-text .seo-text h1,
#home-seo-text .seo-text h2,
#home-seo-text .seo-text h3,
#home-seo-text .seo-text h4 {
    margin: 25px 0;
    line-height: 1.2;
    font-family: var(--custom-first-font);
    color: #000;
    font-weight: bold;
}


#home-seo-text .seo-text ul {
    padding-left: 20px;
}

#home-seo-text .seo-text ul li {
    list-style: disc;
}

#home-seo-text .seo-text p img {
    margin-bottom: 20px;
}

#home-seo-text .seo-text a {
    color: #000;
    font-weight: 600;
}

#home-seo-text .seo-text img {
    max-width: 100%;
    height: auto;
}


/* patients */

#home-patients-study {
  margin-bottom: 120px;
}

#home-patients-study .patient-image-col{
  position: relative;
}

#home-patients-study .patient-image-col .img-responsive {
  border-radius: 25px;
}

#home-patients-study .patient-image-col .patient-icon{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-25px, -25px);
}

#home-patients-study .section-midtitle{
  margin-bottom: 20px;
}


#home-patients-study .patients-section-desc {
  color: var(--color);
  line-height: 1.4;
}
#home-patients-study .patients-section-link {
  background:var(--ytbutton);
  padding: 10px;
  display: inline-flex;
  min-width: 320px;
  text-align: center;
   gap: 15px; 
  font-size: 20px;
  color: var(--text-light);
  font-weight: bold;
  font-style: italic;
  border-radius: 8px;
  transition: 0.3s ease-in;
  border: 2px solid #fff;
  margin-top:25px;
  align-items:center;
  justify-content:center;
}

#home-patients-study .patients-section-link svg{
  color: #fff;
}

#home-patients-study .patient-group {
  position: relative;
}

#home-patients-study .patient-group .patient-box .patient-img{
  border-radius: 20px;
  aspect-ratio: 9/16;
  object-fit:cover;
}
#home-patients-study .patient-group .patient-box .play-icon{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width:40px;
  height:auto;
}

/* blog */

#home-blog{
  margin-bottom: 120px;
}

#home-blog .blog-row {
  margin-top: 35px;
}

#home-blog  .blog-head-area{
  text-align: center;
}

#home-blog  .blog-subtitle{
  color: var(--color);
  font-size: 20px;
}

#home-blog  .blog-title{
  text-align: center;
  font-size: 40px;
  font-weight: bold;
}

#home-blog .section-title {
  text-align: center;
}

#home-blog .blog-row .blog-box-item .blog-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
  box-shadow: 0px 10px 16px #96704136;
  background: #fff;
  border-radius: 11px;
}

#home-blog .blog-row .blog-box-item .blog-box img {
  width: 100%;
  border-radius: 20px;
}

#home-blog .blog-row .blog-box-item .blog-box .box-title {
  color: var(--color);
  font-size: 22px;
  font-weight: 600;
}
#home-blog .blog-row .blog-box-item .blog-box .box-desc {
  color: var(--color);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
  font-weight: 500;
}

/* follow */


#home-follow{
  margin-bottom: 100px;
}

#home-follow .clinic-item img{
  border-radius: 10px;
}

#home-follow .follow-content .section-midtitle {
  font-weight: 700;
  margin-bottom: 15px;
}

#home-follow .follow-content .follow-desc { 
  color: var(--color); 
  font-size: 18px; 
  margin-bottom: 15px;
}

#home-follow .follow-content .follow-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 243px;
  background: var(--instabutton);
  padding: 7px;
  color: #fff;
  gap: 5px;
  border-radius: 5px;
  font-size: 22px;
  font-style: italic;
}

#home-follow .follow-content .follow-link svg{
  color: #fff;
}

#home-follow .follow-item {
  padding-right: 5px;
  padding-left: 5px;
}

#home-follow .follow-item img{
  border-radius: 15px;
}

/* map */