@keyframes moveRightUp {
    0% {
      transform: translate(0, 130deg);
    }
    50% {
      transform: translate(0, 105deg);
    }
    100% {
      transform: translate(0, 130deg);
    }
  }
  

/* Keyframe animasyonları */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(0,135deg);
    }
    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 */
    }
}

/* general class */

#send-response-success , #send-response-unsuccessful{
  display: none;
}

#phoneNumber {
  padding: 8px 50px;
}

#home-banner {
  position: relative;
  overflow: hidden;
  margin-bottom: 80px;
}

#home-banner .home-banner-outer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

#home-banner .home-banner-outer img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

#home-banner .banner-decor {
  position: absolute;
  left: 0;
  top: 0;
  transform: rotate(135deg);
  animation: moveRightUp infinite 10s;
}

#home-banner .banner-content {
  padding-top: 10%;
  /* padding-top: 178px; */
  /* padding-bottom: 185px; */
  min-height: 1091px;
}

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

#home-banner .banner-content .banner-title {
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-light);
}

#home-banner .banner-content .banner-title p{
  font-weight: 700;
  font-size: 87px;
}

#home-banner .banner-content .banner-desc{
  color: var(--text-light);
  margin-bottom: 30px;
}
#home-banner .banner-content #banner-form-area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  width: 100%;
}
#home-banner .banner-content #banner-form-area .input-area input {
  width: 100%;
  height: 44px;
  padding: 8px 20px;
  font-size: 15px;
  background: #E8E8F145;
  backdrop-filter: blur(6px);
  border-radius: 10px;
  border: 1px solid #fff;
  color: #fff;
}
#home-banner .banner-content #banner-form-area .input-area select {
  width: 100%;
  height: 44px;
  padding: 8px 14px;
  font-size: 15px;
  background: var(--text-color);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  border: 1px solid #fff;
  color: #fff;
}
#home-banner .banner-content #banner-form-area .input-area input::placeholder{
  color: #fff;
}
#home-form .input-area.location-area {
  position: relative
}

#home-form .input-area.location-area::after {
  content: '';
  background: url(/wp-content/themes/CrabsMedia/assets/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-banner .banner-content #banner-form-area .input-area#phoneNumber {
  padding: 8px 80px;
}
#home-banner .banner-content #banner-form-area .input-area .iti--separate-dial-code .iti__selected-dial-code{
  color: #fff;
}
#home-banner .banner-content #banner-form-area .input-area .iti__country-name{
  color: #fff;
}
#home-banner .banner-content #banner-form-area .input-area .iti__dial-code{
  color: #fff;
}
#home-banner .banner-content #banner-form-area .input-area .send-btn {
  width: 100%;
  height: 44px;
  background: #28A71AB8;
  border-radius: 8px;
  color: #fff;
  border: 1px solid #fff;
}
#home-banner .banner-content .banner-link {
  background: var(--color-2);
  padding: 10px 15px;
  display: inline-block;
  min-width: 235px;
  text-align: center;
  color: var(--text-color);
  border-radius: 9px;
  font-size: 20px;
  font-weight: 500;
  transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  margin-bottom: 30px;
}

#home-banner .banner-content .banner-text-content {
  border-bottom: 1px solid #E8E8F1;
  margin-bottom: 15px;
}
#home-banner .banner-content .banner-right-form .banner-form-title {
  color: #fff;
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 600;
}
#home-banner .banner-count{
  gap: 30px;
  margin-top: 40px;
}

#home-banner .banner-count .count-box{
  color: #fff;
  position: relative;
}

#home-banner .banner-count .count-box:last-child::after{
  display: none;
}

#home-banner .banner-count .count-box::after {
  content: "";
  width: 2px;
  background: #fff;
  height: 50%;
  display: block;
  bottom: 50%;
  position: absolute;
  right: -15px;
  transform: translateY(20px);
}

#home-banner .banner-count .count-box .count {
  font-size: 41px;
  font-weight: 700;
}

#home-banner .banner-count .count-box .title{
  font-weight: 300;
}

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

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

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

#home-banner .gallery-item {
    display: block;
    border: 5px solid #fff;
    border-radius: 15px;
    overflow: hidden;
}

#home-banner .banner-link-container {
  gap: 30px;
  position: relative;
  z-index: 1;
}

#home-banner .banner-link-container .banner-link-content {
  position: relative;
  z-index: 1;
}

#home-banner .banner-link-container .link {
  background: #E8E8F1;
  color: var(--text-color);
  padding: 20px 25px;
  border-radius: 10px;
  min-width: 266px;
  text-align: center;
  font-weight: 700;
  font-size: 22px;
}

#home-banner .banner-link-container .link:nth-child(2){
  background: var(--text-color);
  color: var(--text-light);
}

/* home services */

#home-services {
  padding: 100px 0;
  margin-bottom: 80px;
  position: relative;
}

#home-services .services-left-decor {
  position: absolute;
  left: 0;
  top: 0;
  width: 50vw;
}

#home-services .services-right-decor {
  position: absolute;
  right: 0;
  top: 0;
  width: 30vw;
}

#home-services .services-bottom-left-decor {
  position: absolute;
  bottom: -10%;
  left: 0;
  z-index: -1;
  width: 30vw;
}

#home-services .services-bottom-right-decor {
  position: absolute;
  bottom: -5%;
  right: 0;
  width: 45vw;
  z-index: -1;
}

#home-services .section-title-head{
  text-align: center;
  margin-bottom: 45px;
}

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

#home-services .services-row{
  margin-bottom: 40px;
}

#home-services .services-col {
  margin-bottom: 25px;
}

#home-services .services-col .services-image img {
  border-radius: 15px 15px 0 0;
}

#home-services .services-col .services-text {
  background: #E8E8F1;
  border-radius: 16px 16px 27px 26px;
  position: relative;
  bottom: 55px;
  margin-bottom: -55px;
  padding: 20px;
}

#home-services .services-col .services-text .title {
  color: var(--text-color);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

#home-services .services-col .services-text .desc {
  color: var(--text-color);
  font-size: 18px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 5;
}


#home-services .cta-btn {
  gap: 35px;
}

#home-services .cta-btn a{
  background-color: var(--text-color);
  color: var(--text-light);
  min-width: 250px;
  padding: 20px 40px;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
}

#home-services .cta-btn a:nth-child(2){
  background: #28A71A;
}

/* features */
#home-features{
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 140px;
}
.features-box {
  background: var(--text-color);
  color: #fff;
  padding: 15px 20px;
  gap: 15px;
  border-radius: 10px;
  margin-bottom: 50px;
}

.features-box .title{
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 600;
}

img.img-responsive.features-decor {
  position: absolute;
  width: 90%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  height: auto;
  display: block;
}

/* why bbm */

#home-why-galen {
  margin-bottom: 140px;
  position: relative;
}

#home-why-galen .why-galen-decor-left{
  position: absolute;
  left: 0;
  width: 50vw;
  top: -20%;
  z-index: -1;
}

#home-why-galen .why-galen-decor-right{
  position: absolute;
  right: 0;
  width: 30vw;
  top: -50%;
  z-index: -1;
}

#home-why-galen .why-galen-text-col .why-galen-title {
    color: var(--text-dark);
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
}

#home-why-galen .why-galen-text-col .why-galen-desc {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

#home-why-galen .why-galen-text-col .why-galen-text-box {
  margin-bottom: 15px;
}

#home-why-galen .why-galen-text-col .why-galen-text-box .title {
  font-size: 20px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 5px;
}

#home-why-galen .why-galen-text-col .why-galen-text-box .desc {
  font-size: 18px;
  color: var(--text-dark);
}

#home-why-galen .cta-btn {
  gap: 35px;
}

#home-why-galen .cta-btn a{
  background-color: var(--text-color);
  color: var(--text-light);
  min-width: 250px;
  padding: 20px 40px;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
}

#home-why-galen .cta-btn a:nth-child(2){
  background: #28A71A;
}

/* faq */

#home-faq-area {
  margin-bottom: 120px;
  position: relative;
  background: transparent linear-gradient(0deg, #FFFFFF 0%, #E8E8F1 49%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
}
#home-faq-area .section-title-area {
  margin-bottom: 30px;
}
#home-faq-area .faq-list-area {
  position: relative;
  z-index: 3;
}
#home-faq-area .faq-list-area .faq-item {
  overflow: hidden;
  gap: 24px;
  display: flex;
  border-bottom: 1px solid var(--primary-color, #113038);
  padding-bottom: 12px;
  margin-bottom: 12px;
}
#home-faq-area .faq-list-area .faq-item:last-child {
  border: none;
  margin: 0;
}
#home-faq-area .faq-list-area .faq-item .item-col {
  width: 50%;
}
#home-faq-area .faq-list-area .faq-item .item-col .item-question {
  font-size: 24px;
  color: var(--text-color);
  font-weight: 600;
}
#home-faq-area .faq-list-area .faq-item .item-col .item-answer {
  font-size: 18px;
  color: var(--text-color);
}

#home-faq-area .decor-left {
  position: absolute;
  bottom: -30%;
  left: 0;
  width: 45vw;
  z-index: -1;
}

/* video  */


#home-video-area{
  margin-bottom: 80px;
}

#home-video-area .section-title-head{
  padding: 0px 15px;
  text-align: center;
}

#home-video-area .section-title-head .section-title{
  margin-bottom: 10px;
}

#home-video-area .accord-tab-nav {
  width: 100%;
}

#home-video-area .accord-tab-nav .tab-nav-item {
  width: 100%;
  text-align: center;
  padding: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease-in;
  background-color: #E8E8F1;
  color: var(--text-color);
  margin-bottom: 25px;
}

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

#home-video-area .accord-tab-nav .tab-nav-item:hover{
  background: var(--text-color);
  color: #fff;
}

#home-video-area .accord-tab-nav .tab-nav-item.active {
  background: var(--text-color);
  color: #fff;
  transform: scale(1.01);
}

#home-video-area .ba-tab-content {
  position: relative;
  overflow: hidden;
}

#home-video-area .tab-pane {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

#home-video-area .tab-pane.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: fadeIn 0.6s ease;
}

#home-video-area .video-box {
  position: relative;
}

#home-video-area .video-box .video-img{
  border-radius: 20px;
}

#home-video-area .video-box .title {
  position: absolute;
  bottom: 15px;
  width: 90%;
  margin: 0 30px;
  /* backdrop-filter: blur(10px); */
  background: #e8e8f1cf;
  color: var(--text-color);
  text-align: center;
  padding: 10px;
  font-size: 22px;
  font-weight: 700;
  border-radius: 20px;
}

#home-video-area .owl-dots {
  margin-top:15px;
  margin-bottom:15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#home-video-area .owl-dots .owl-dot span{
  width: 16px;
  height: 16px;
  background-color: var(--text-color);
  margin: 3px;
}

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

#home-bottom-form{
  margin-bottom: 80px;
  background: transparent linear-gradient(0deg, #FFFFFF 0%, #E8E8F1 49%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
}

#home-bottom-form #center-form-area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  width: 100%;
}
#home-bottom-form .input-area input {
  width: 100%;
  height: 57px;
  padding: 8px 20px;
  font-size: 15px;
  background: transparent;
  backdrop-filter: blur(6px);
  border-radius: 10px;
  border: 1px solid var(--text-color);
}
#home-bottom-form .input-area select {
  width: 100%;
  height: 57px;
  padding: 8px 14px;
  font-size: 15px;
  background: var(--text-color);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  border: 1px solid var(--text-color);
  color: var(--text-light);
}
#home-bottom-form .input-area input::placeholder{
  color: var(--text-color);
}
#home-form .input-area.location-area {
  position: relative
}

#home-form .input-area.location-area::after {
  content: '';
  background: url(/wp-content/themes/CrabsMedia/assets/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-bottom-form #center-form-area .input-area#phoneNumber {
  padding: 8px 80px;
}
#home-bottom-form #center-form-area .input-area .iti--separate-dial-code .iti__selected-dial-code{
  color: var(--text-color);
}
#home-bottom-form #center-form-area .input-area .iti__country-name{
  color: var(--text-color);
}
#home-bottom-form #center-form-area .input-area .iti__dial-code{
  color: var(--text-color);
}
#home-bottom-form #center-form-area .input-area .send-btn {
  width: 100%;
  height: 57px;
  background: var(--text-color);
  border-radius: 8px;
  color: #fff;
  border: 1px solid #fff;
  cursor: pointer;
}

/* instagram */

#home-instagram{
  margin-bottom: 80px;
}

#home-instagram .instagram-inner{
  background: #E8E8F1;
  border-radius: 30px;
  padding: 25px;
}

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

#home-follow .clinic-item{
    margin-bottom: 15px;
}

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

#home-follow .follow-content .follow-title {
  color: var(--text-dark);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

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

#home-follow .ig-post-content img{
	border-radius:10px;
}

#home-follow .ig-post-content .fancybox-content {
    width: 600px;
    height: 1000px !important;
}

#home-follow .owl-dots {
  margin-top:15px;
  margin-bottom:15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#home-follow .owl-dots .owl-dot span{
  width: 16px;
  height: 16px;
  background-color: var(--light-beige);
}

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

#home-follow .follow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--text-color);
  min-width: 225px;
  padding: 6px 12px;
  color: var(--text-light);
  font-size: 18px;
  border-radius: 9px;
  transition: 0.3s ease-in-out;
}

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