/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body,
html{
  overflow-x: hidden;
}

body {
  font-family: "Rubik", sans-serif;
  color: #444;
  overflow-x: hidden;
}

a {
  color: #b79074;
  text-decoration: none;
}

a:hover {
  color: #b79074;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
  font-family: "Rubik", sans-serif;
}

/*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #b79074;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #4e3d31;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# topbar #
--------------------------------------------------------------*/
.topbar {
  z-index: 9999;
  background-color: #ffffff82;
  max-height: 40px;
}

.topbar a {
  font-size: 12px;
  color: #0d0d0d;
  text-decoration: none;
}

.topbar i {
  font-size: 18px;
  color: #0d0d0d;
}

@media (max-width: 375px) {
  .topbar a,
  .topbar i {
    font-size: 10px;
  }

  .topbar a {
    display: flex;
  }

  .topbar .mail {
    margin-left: 5px;
    padding: 0 !important;
  }
  .topbar .mail i {
    margin-left: 10px;
    padding: 0 5px;
  }
}

@media (max-width: 298px) {
  .topbar a,
  .topbar i {
    font-size: 8px;
  }
  .topbar .mail i {
    margin-left: 0px;
  }
}

/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  position: fixed;
  margin-top: 2.5rem;
}

#header.header-transparent {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.85) 52.35%, rgba(0, 0, 0, 0) 79.9%);
  height: 100px;
}

#header.header-scrolled {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.85) 52.35%, rgba(0, 0, 0, 0) 79.9%);
  height: 100px;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 70px;
}

#main {
  margin-top: 80px;
}

#header .navbar .headerduzen {
  padding: 5px;
  background-color: #b79074;
  margin-left: 10px;
}

.whatsapp{
  background-color: #25D366 !important;
}

@media (max-width: 767px) {
  #header .navbar .headerduzen {
    margin-top: 5px;
    margin-top: 5px;
    justify-content: flex-start;
    width: 100px;
  }
}

#header .navbar .headerduzen i {
  color: #f3f3f3;
  font-size: 12px;
  font-weight: bolder;
  margin-right: 3px;
}

#header .navbar .headerduzen {
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}

#header .fa-earth-americas {
  font-size: 22px;
  color: #e1e0e0c9;
}

#header.header-scrolled .fa-earth-americas {
  color: #fff;
  transition: 0.4s;
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/**
  * Desktop Navigation 
  */
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 300;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #b79074;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 50px;
}
.navbar .dropdown2 {
  width: 24%;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #1c3745;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #b79074;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
  * Mobile Navigation 
  */
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  position: relative;
  right: 30px;
}

.mobile-nav-toggle .bi-x {
  position: relative;
  top: 30px;
  color: #000;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(17, 38, 48, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #1e4356;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #b79074;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(160, 161, 127, 0.25);
  overflow: hidden;
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #b79074;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  border-bottom-left-radius: 200px;
}
.hero {
  padding: 0;
}

.hero .yazi {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 300px;
}

.hero .carousel {
  width: 100%;
  min-height: 95vh;
  padding: 80px 0;
  margin: 0;
  position: relative;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 1;
  transition-duration: 0.4s;
}

.hero .info {
  position: absolute;
  inset: 0;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero .info {
    padding: 0 50px;
  }

  .hero .carousel-item {
    background-position-x: center;
  }
  .hero .yazi {
    right: 20px;
  }

  #hero h2 {
    font-size: 30px !important;
  }
  #hero {
    border-bottom-right-radius: 100px;
    border-bottom-left-radius: 100px;
  }
}

#hero .sekil {
  position: absolute;
  z-index: 500;
  /* top: 76.3%; */
  width: 50%;
  bottom: -64px;
}

@media screen and (min-width: 2258px) {
  #hero .sekil {
    bottom: -93px;
  }
}

@media (min-width: 2230px) and (max-width: 2257px) {
  #hero .sekil {
    bottom: -90px;
  }
}

@media (min-width: 2091px) and (max-width: 2229px) {
  #hero .sekil {
    bottom: -85px;
  }
}

@media (min-width: 1940px) and (max-width: 2090px) {
  #hero .sekil {
    bottom: -78px;
  }
}

@media (min-width: 1750px) and (max-width: 1939px) {
  #hero .sekil {
    bottom: -72px;
  }
}

@media (min-width: 1530px) and (max-width: 1749px) {
  #hero .sekil {
    bottom: -62px;
  }
}

@media screen and (max-width: 1300px) {
  #hero .sekil {
    bottom: -52px;
  }
}
@media screen and (max-width: 1200px) {
  #hero .sekil {
    bottom: -45px;
  }
}
@media screen and (max-width: 992px) {
  #hero .sekil {
    bottom: -37px;
  }
}
@media screen and (max-width: 769px) {
  #hero .sekil {
    bottom: -28px;
  }
}

#hero h2 {
  color: #333;
  text-shadow: 0px 5.72px 5.72px rgba(0, 0, 0, 0.25);
  font-family: "Judson";
  font-size: 46px;
  font-style: normal;
  font-weight: 700;
  line-height: 146.538%;
  letter-spacing: 12.88px;
  /*
  background: #fcfcfc78;
  border-radius: 10px;
  */
}

.hero .info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.hero .info .btn-get-started {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  border: 2px solid var(--color-primary);
}

.hero .info .btn-get-started:hover {
  background: var(--color-primary);
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
  # Hero No Slider Section
  --------------------------------------------------------------*/
#hero-no-slider {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  text-align: center;
}

#hero-no-slider::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(30, 67, 86, 0.8), rgba(30, 67, 86, 0.6)),
    url("../img/hero-bg.jpg") center top no-repeat;
}

#hero-no-slider h2 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 48px;
  font-weight: 700;
}

#hero-no-slider p {
  color: #fff;
}

#hero-no-slider .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  animation-delay: 0.8s;
  border: 2px solid #68a4c4;
}

#hero-no-slider .btn-get-started:hover {
  background: #68a4c4;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 575px) {
  #hero-no-slider h2 {
    font-size: 30px;
  }
}

/*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background: url("../design/bg1.png");
  background-repeat: no-repeat;
}

.section-bg2 {
  background: url("../design/bg2.png");
  background-repeat: no-repeat;
  background-position: right;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2,
.section-title h3 {
  color: #333;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.4px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #b79074;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 140px 0 60px 0;
  min-height: 25vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../design/bc.png");
}

.breadcrumbs h2 {
  top: 15px;
  position: relative;
  color: #404041;
  font-size: 27px;
  font-style: normal;
  font-weight: 500;
  line-height: 18.75px; /* 69.444% */
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  font-family: "Rubik";
}
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  padding: 15px 0;
  transition: 0.3s;
  color: var(--color-secondary);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 4px solid #e2e4e6;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.features .nav-link:hover {
  color: var(--color-primary);
}

.features .nav-link.active {
  color: var(--color-primary);
  background-color: transparent;
  border-color: var(--color-primary);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--color-primary);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

@media (min-width: 576px) and (max-width:768px){
  .features .nav-link h4 {
    font-size: 13px;
  }
  .features .tab-pane h3{
    font-size: 22px;
    margin-bottom: 5px;
  }
}

@media(max-width:575px){
  .features .nav-link h4 {
    font-size: 11px;
    padding: 0 10px;
  }
  .features .tab-pane h3{
    font-size: 18px;
    margin-bottom: 0px;
  }
}
/*-----------------------------------------------------------------------------------*/
/*  About
/*-----------------------------------------------------------------------------------*/
#about,
#about1 {
  width: 100%;
  height: auto;
  padding-top: 120px;
}

@media (min-width: 1200px) {
  #about1 .col-lg-7 {
    margin-left: 45px !important;
  }
}
@media (min-width: 992px) {
  #about1 .col-lg-7 {
    margin-left: 30px;
  }
  #about1 .col-lg-4 {
    margin-bottom: 100px;
  }

  #about1 {
    padding-top: 50px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  #about1 .col-lg-7 {
    margin-top: 100px;
  }
}

@media (max-width: 767px) {
  #about1 .col-lg-7 {
    margin-top: 70px;
  }
  #about .div-img-bg {
    margin-top: 60px;
  }
  .div-img-bg {
    width: 85%;
  }

  #about,
  #about1 {
    padding-top: 20px;
  }

  .team .div-img-bg {
    position: relative;
    left: 10%;
  }

  #about .div-img-bg {
    width: 100% !important;
  }
}

#about .div-img-bg {
  padding-bottom: 30px;
  border: 5px solid;
  border-image: linear-gradient(270deg, #e8cbb4, #c89c96, #ae8386, #5a445c) 1;
}

#about .div-img-bg .about-img img {
  width: 100%;
  box-shadow: 0px 0px 85px 0px rgba(0, 0, 0, 0.14);
  margin-top: -60px;
  margin-left: 40px;
  height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width: 545px) {
  #about .div-img-bg .about-img img {
    width: 90% !important;
    margin-left: 20px !important;
    height: auto !important;
  }
}

#about1 .div-img-bg {
  padding-top: 30px;
  border: 5px solid;
  border-image: linear-gradient(270deg, #e8cbb4, #c89c96, #ae8386, #5a445c) 1;
}

#about1 img {
  width: 100%;
  box-shadow: 0px 0px 85px 0px rgba(0, 0, 0, 0.14);
  margin-bottom: -60px;
  margin-left: -30px;
  object-fit: cover;
  border-radius: 10px;
}

#about h3,
#about1 h3 {
  color: #333;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.4px;
}

#about p,
#about1 p {
  color: #333;
  font-size: 14.62px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.804px; /* 183.333% */
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  border-radius: 7.68px;
  border: 1.65px solid #e5b391;
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 400px;
  border-radius: 5px;
  position: absolute;
  right: -10px;
}

.testimonials .testimonial-item h3 {
  color: #333;
  font-size: 19px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px; /* 131.579% */
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #fdedea;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 25px; /* 156.25% */
  max-width: 60%;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .testimonials .testimonial-item p {
    max-width: 50%;
  }
  .testimonials .testimonial-item .testimonial-img {
    right: 0px;
    bottom: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .testimonials .testimonial-item .testimonial-img {
    right: 0px;
    top: 100px;
    width: 200px;
  }
}
@media (max-width: 767px) {
  .testimonials .testimonial-item p {
    max-width: 100%;
  }
  .testimonials .testimonial-item {
    padding: 30px;
  }
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #e5b391;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #e5b391;
}

/*--------------------------------------------------------------
  # Portfolio
  --------------------------------------------------------------*/
.portfolio {
  padding-bottom: 60px;
}

.portfolio .portfolio-item {
  background: rgba(0, 0, 0, 0.695);
  overflow: hidden;
  min-height: 200px;
  position: relative;
  border-radius: 4px;
  margin: 0 0 30px 0;
}

.portfolio .portfolio-item img {
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  transition: all 0.3s linear;
  text-align: center;
  top: 10%;
  left: 0;
  right: 0;
}

.portfolio .portfolio-item .portfolio-info h3 {
  font-size: 22px;
  color: #fff;
  font-weight: bold;
}

.portfolio .portfolio-item:hover img {
  opacity: 0.4;
  transform: scale(1.1);
}

.portfolio .portfolio-item .ikon_opacity {
  max-width: 40px;
}

.portfolio .portfolio-item:hover .ikon_opacity {
  opacity: 1 !important;
  max-width: 40px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  top: calc(50% - 30px);
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.team .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: -54px;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.team .member .social {
  position: absolute;
  left: -25px;
  bottom: -50px; /* Bu satırda değişiklik */
  height: auto;
  width: 98%;
  transition: bottom ease-in-out 0.3s;
  background: linear-gradient(15deg, rgba(0, 0, 0, 0.85) 65.35%, rgba(0, 0, 0, 0) 102.54%);
  text-align: center;
  padding: auto;
}
.team2 .member .social {
  width: 97% !important;
}

.team .member .social h4 {
  color: #fff;
  font-size: 25.146px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.257px;
}

.team .member .social p {
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16.678px; /* 138.987% */
}

.team .member:hover .member-info {
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  bottom: 30px;
  transition: bottom 0.4s;
}

.team .member:hover .social {
  bottom: 0;
  transition: bottom ease-in-out 0.3s;
}

.team .member:hover .div-img-bg {
  border-image: linear-gradient(270deg, #6a2a43, #913848, #ff8d6c) 1;
  transition: 0.4s;
}

.team img {
  margin-bottom: -60px;
  margin-left: -60px;
  object-fit: cover;
  border-radius: 10px;
}
.team .div-img-bg {
  padding-top: 30px;
  border: 5px solid;
  border-image: linear-gradient(270deg, #e8cbb4, #c89c96, #ae8386, #5a445c) 1;
}

.team .teamp {
  margin-bottom: 80px;
}

@media (max-width: 575px) {
  .team .col-md-6 {
    margin-bottom: 75px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .team .col-md-6 {
    padding: 1rem;
    margin: 1rem !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .team .col-md-6 {
    padding: 1.5rem;
  }
}

@media (min-width: 992px) and (max-width: 1400px) {
  .team .col-lg-5 {
    margin: 2rem !important;
  }
}

@media (min-width: 1401px) {
  .team .col-lg-5 {
    margin: 3rem !important;
  }
}

/*--------------------------------------------------------------
  # Contact
  --------------------------------------------------------------*/
.contact {
  overflow-x: hidden;
}

.contact .info-item {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  padding: 20px 0 20px 0;
  border-left: 5px solid #333;
}

.contact .info-item:hover {
  box-shadow: rgba(204, 154, 67, 0.508) 1.95px 1.95px 2.6px;
}

.contact .info-item i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 40px;
  line-height: 0;
  color: #333;
}

.contact .info-item h3 {
  color: rgba(51, 51, 51, 1);
  font-family: "Rubik";
  font-size: 16.212px;
  font-style: normal;
  font-weight: 500;
  line-height: 36.477px; /* 225% */
}

.contact .info-item p,
.contact .info-item p a {
  color: #333;
  text-align: center;
  font-family: "Rubik";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 200% */
  padding: 10px;
  text-align: center;
}

.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #ef6603;
  float: left;
  width: 44px;
  height: 44px;
  background: #ffecde;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2a2c39;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #555974;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #ef6603;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: transparent;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 7px;
  border: 0.35px solid #6b6b6b;
  background: #fcfcfc;
}

.contact .php-email-form textarea::placeholder,
.contact .php-email-form input::placeholder {
  color: #a9aeb3;
  font-family: "Rubik";
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  line-height: 55px; /* 458.333% */
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #b79074;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #00274e;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.contact h5 {
  color: #373737;
  font-family: "Rubik";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 55px; /* 229.167% */
}

.contact .form-check-input:checked {
  background-color: #00274e; /* İstenilen arkaplan rengi*/
}

/*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
#footer {
  background: #f4e8e0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-newsletter {
  padding: 80px 0;
  background: url("../design/cta.png");
  background-size: cover;
  background-position: center;
  z-index: 1;
}

#footer .footer-newsletter img {
  z-index: 5;
  position: relative;
  top: 180px;
}

#footer .footer-newsletter h4 {
  color: #fff;
  font-size: 36.617px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 10px;
  width: 60%;
  height: 60px;
  margin-right: auto !important;
  margin-left: auto !important;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: 100%;
  height: 100%;
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: 3px;
  background: #272a29;
  color: #fff;
  transition: 0.3s;
  border-radius: 10px;
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #b79074;
}

#footer .footer-top {
  background: #f4e8e0;
  border-top: 1px solid #272a29;
  padding: 60px 0 30px 0;
  z-index: 10;
  position: relative;
  border-radius: 20px 20px 0px 0px;
}

#footer .footer-top ul li {
  padding: auto;
  margin-right: 30px;
  list-style: none;
  display: flex;
}

#footer .footer-top ul a:hover,
#footer .footer-top .active:hover,
#footer .footer-top li:hover > a {
  color: #b79074;
}

#footer .footer-top ul li a {
  color: #272a29;
  font-family: "Rubik";
  font-size: 14.56px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 178.571% */
  text-transform: uppercase;
}

#footer .footer-top .social-links a {
  font-size: 22px;
  display: inline-block;
  background: none;
  color: #272a29;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  text-align: center;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  color: #b79074;
  text-decoration: none;
}

#footer .solcizgi {
  position: relative;
  width: 40%;
  height: 3px;
  top: 30px;
  background-color: #0b212d;
}

#footer .sagcizgi {
  position: relative;
  width: 40%;
  height: 3px;
  top: 30px;
  right: -250px;
  background-color: #0b212d;
}

#footer .copyright {
  color: #272a29;
}

#footer .footeralt {
  background-color: #f4e8e0;
}

@media (min-width: 992px) and (max-width: 1200px) {
  #footer .sagcizgi {
    right: -200px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  #footer .sagcizgi {
    right: -144px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  #footer .sagcizgi {
    right: -110px;
  }
  #footer .footer-top ul li a {
    font-size: 12.56px;
  }
}
@media (max-width: 575px) {
  #footer .footer-top ul li a {
    font-size: 8px;
  }

  #footer .footer-top ul li {
    margin-right: 10px;
  }
  #footer .copyright {
    color: #272a29;
    font-size: smaller;
  }
}

/*--------------------------------------------------------------
  # Hizmet
  --------------------------------------------------------------*/

.hizmet {
  overflow-x: hidden !important;
}

.hizmet .div-img-bg {
  padding-top: 30px;
  border: 5px solid;
  border-image: linear-gradient(270deg, #e8cbb4, #c89c96, #ae8386, #5a445c) 1;
}

.hizmet .div-img-bg .about-img img {
  width: 100%;
  box-shadow: 0px 0px 85px 0px rgba(0, 0, 0, 0.14);
  margin-bottom: -60px;
  margin-left: 40px;
  height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

.hizmet .image-container {
  position: relative;
}

.hizmet .img-responsive {
  width: 100%;
  height: auto;
  display: block;
}

.hizmet .overlay {
  position: absolute;
  top: 0;
  right: -6.2%;
  bottom: 0;
  left: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.69) 0.95%, rgba(0, 0, 0, 0) 79.9%);
  z-index: 1;
  border-radius: 10px;
  opacity: 0.4;
}

.hizmet .randevu {
  padding: 10px;
  border-radius: 5px;
  background: linear-gradient(272deg, rgba(0, 0, 0, 0.88) 45.02%, rgba(0, 0, 0, 0) 128.71%);
}

.hizmet .randevu h4 {
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 26.051px; /* 153.24% */
}

.hizmet .randevu p {
  color: #fff;
  font-family: "Rubik";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px; /* 166.667% */
  text-align: center;
}

.hizmet ul li {
  list-style: none;
  padding-top: 10px;
}

.hizmet ul li a {
  color: #fff;
  font-size: 13.763px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.619px;
}

.hizmet ul li .randevu_kutu {
  padding: 10px;
  border-radius: 5px;
  background: #b79074;
}

@media(min-width:1201px) and (max-width:1400px){
  .hizmet .overlay{
    right: -7.2%;
  }
}

@media(max-width:992px){
  .hizmet .col-lg-5{
    margin-top: 100px;
  }
  .hizmet .overlay{
    right: -9.2%;
  }
}

@media(min-width:768px) and (max-width:991px){
  
  .hizmet .overlay{
    right: -6%;
  }
}


/*--------------------------------------------------------------
  # Yorumlar
  --------------------------------------------------------------*/

.yorumlar .card {
  padding: 20px;
  max-height: 400px;
}

.yorumlar h3 {
  font-size: 18px;
  color: #1b2734;
  font-weight: 400;
}

.yorumlar h6 {
  color: #627282 !important;
  font-size: 13px;
  font-weight: 200;
}

.yorumlar i {
  font-size: 12px;
  color: #b79074;
}
.yorumlar small {
  font-size: 12px;
  font-weight: 100;
  color: #627282 !important;
  padding-left: 10px;
}

.yorumlar .randevu {
  width: 100%;
  text-align: center;
  background-color: #b79074;
  color: #fff;
  padding: 10px;
  margin-top: 20px;
  border-radius: 5px;
}

.nokta {
  height: 5px;
  width: 5px;
  background-color: #627282;
  border-radius: 50%;
  margin-top: 6px;
  margin-left: 10px;
}

.yorumlar p {
  color: #1b2734;
  font-size: 13px;
  font-weight: 300;
}

.yorumlar .col-lg-5 {
  background-color: white;
}

@media (min-width: 768) {
  .yorumlar .card {
    max-height: 100%;
  }
}

@media (max-width: 767px) {
  .yorumlar .card {
    margin: 15px 0;
    max-height: 100%;
  }
}


/* --------------------------------------------------------------
# Blogs (Grid + Cards)
-------------------------------------------------------------- */
.blogs {
  /* container içinde tam genişlik ve boşluklar */
  padding-top: 20px;
  padding-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.blog {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 10px;
  overflow: hidden; /* köşeler düzgün kalsın */
  box-shadow: 0 6px 12px -2px rgba(50,50,93,.12), 0 3px 7px -3px rgba(0,0,0,.15);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  text-decoration: none; /* a'nın mirası */
}

.blog:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 18px -2px rgba(50,50,93,.18), 0 6px 12px -4px rgba(0,0,0,.2);
  border-color: #e5b391; /* sitenin sıcak tonlarına yakın */
}

/* Görsel oranı sabit: modern tarayıcılar için */
.blog .blog-image {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #f6f6f6; /* görsel yüklenmeden önce hafif zemin */
  overflow: hidden;
}

/* Eski tarayıcılar için aspect-ratio fallback */
@supports not (aspect-ratio: 16 / 9) {
  .blog .blog-image {
    height: 0;
    padding-top: 56.25%; /* 16:9 */
  }
  .blog .blog-image img {
    position: absolute;
    inset: 0;
  }
}

.blog .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease, opacity .35s ease;
}

.blog:hover .blog-image img {
  transform: scale(1.04);
  opacity: .95;
}

/* Başlık + açıklama alanı */
.blog .blog-title,
.blog .blog-desc {
  padding: 12px 16px 0 16px;
}

.blog .blog-title {
  color: #333;
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .3px;
  /* 2 satırda kırp */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog .blog-desc {
  color: #444;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  /* 3 satırda kırp */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}

/* Alt kısım: “devam et” çizgisi hissi */
.blog::after {
  content: "";
  display: block;
  height: 4px;
  width: 0%;
  background: #b79074; /* sitenin ana rengi */
  border-radius: 0 0 10px 10px;
  transition: width .35s ease;
}
.blog:hover::after {
  width: 100%;
}

/* Dokunmatik alanı büyütmek için kartın alt boşluğu */
.blog { padding-bottom: 10px; }

/* Renk/kontrast uyumları – global palette ile tutarlı */
.blog a,
.blog a:hover {
  color: inherit;
  text-decoration: none;
}

/* Responsive tipografi ufak dokunuşlar */
@media (max-width: 575px) {
  .blogs { gap: 16px; }
  .blog .blog-title { font-size: 16px; }
  .blog .blog-desc { font-size: 13px; }
}


/* --------------------------------------------------------------
# Blog Detail
-------------------------------------------------------------- */
.blog-detail {
  max-width: 920px;
  margin: 0 auto;
  padding: 20px 0 60px;
}

.post-hero {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 28px -10px rgba(0,0,0,.25);
  background: #f6f6f6;
}

.post-hero img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.post-header {
  margin-top: 24px;
  margin-bottom: 12px;
}

.post-title {
  color: #333;
  font-family: "Rubik", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: .3px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  margin-top: 10px;
  color: #627282;
  font-size: 13px;
}

.post-meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #627282;
  display: inline-block;
}

.post-meta a {
  color: #b79074;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: .4px;
  font-size: 12px;
}

.post-content {
  margin-top: 22px;
  color: #1b2734;
  font-size: 16px;
  line-height: 1.8;
}

.post-content h2,
.post-content h3,
.post-content h4 {
  color: #333;
  margin-top: 28px;
  margin-bottom: 10px;
  line-height: 1.35;
}

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 18px auto;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.post-content blockquote {
  margin: 18px 0;
  padding: 14px 16px;
  border-left: 4px solid #b79074;
  background: #fff;
  border-radius: 8px;
  color: #333;
  font-style: italic;
}

.post-content ul, .post-content ol {
  padding-left: 20px;
  margin: 10px 0 16px;
}

.post-content a {
  color: #b79074;
  text-decoration: underline;
}

.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.post-content table th,
.post-content table td {
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}
.post-content table th {
  background: #f9f3ee;
  color: #333;
  text-align: left;
}

.post-share {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
  margin-top: 26px;
}
.post-share .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.post-share .tag {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 16px;
  background: #f4e8e0;
  color: #272a29;
}
.post-share .actions {
  display: flex;
  gap: 10px;
}
.post-share .btn {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #e5b391;
  background: #fff;
  font-size: 13px;
  color: #333;
  transition: .25s;
}
.post-share .btn:hover {
  background: #b79074;
  color: #fff;
  border-color: #b79074;
}

.post-nav {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.post-nav a {
  display: block;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  color: #333;
  transition: .25s;
}
.post-nav a small {
  display: block;
  color: #627282;
  font-size: 12px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.post-nav a:hover {
  border-color: #e5b391;
  transform: translateY(-2px);
}

.related-posts {
  margin-top: 40px;
}
.related-posts h3 {
  font-size: 20px;
  color: #333;
  font-weight: 500;
  margin-bottom: 14px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.related-card {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: .25s;
}
.related-card:hover {
  border-color: #e5b391;
  transform: translateY(-2px);
}
.related-card .thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: #f5f5f5;
  overflow: hidden;
}
.related-card img { width:100%; height:100%; object-fit:cover; display:block; }
.related-card .title {
  padding: 10px 12px;
  font-size: 15px;
  color: #333;
  line-height: 1.35;
}

/* küçük ekran ayarları */
@media (max-width: 575px) {
  .post-title { font-size: 24px; }
  .post-nav { grid-template-columns: 1fr; }
  .post-share { flex-direction: column; align-items: flex-start; }
}
