@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;600;700;800;900&display=swap");

html,
body {
  position: relative;
  height: 100%;
  overflow-x: hidden;
  background: #eee;
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  z-index: 9999;
}

.fs-15 {
  font-size: 15px;
}
.yesil {
  color: #8abb2a;
}
/* header nav */

#firstNav {
  background: #8abb2a;
  color: #201e1e;
  position: relative;
  top: 0%;
  width: 100vw;
  z-index: 1000;
  transition: top 0.3s;
  left: 0;
  right: 0;
  display: block;
  justify-content: end;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
}

#firstNav .container-fluid {
  display: flex;
  justify-content: end !important;
  text-wrap: nowrap;
}

/* İletişim Bilgisi */
#firstNav .contact-info {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  padding: 5px 100px;
  font-size: 0.9em;
}

/* Navbar İletişim Bilgisi Stili */
#firstNav .contact-info a {
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-left: 10px;
  color: #201e1e;
}
.navbar .nav-item {
  position: relative;
  /* Relative pozisyon kullanılacak */
  padding: 0 5px;
}

.navbar .nav-link {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 16px;
  margin-left: 10px;
  color: #fff;
  position: relative;
  text-decoration: none;
  /* Alt çizgiyi kaldırır */
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #8abb2a;
  transform: scaleX(0);
  /* Başlangıçta çizgiyi gizle */
  transform-origin: right;
  transition: transform 0.9s ease-in-out;
}

.navbar .nav-item.active .nav-link::after,
.navbar .nav-link:hover::after {
  transform: scaleX(0.9);
  /* Hover olduğunda çizgiyi göster */
  transform-origin: left;
}

.navbar .nav-item.active .nav-link,
.navbar .nav-link:hover {
  color: #8abb2a;
  /* Hover olduğunda yazı rengini değiştir */
}

.fa-bars {
  color: #fff;
  font-size: 33px;
}

.navbar .container {
  padding: 0 20px;
}

/* Logo resmi için genel stil */
.navbar-brand img {
  max-width: 100%; /* By default, set the maximum width to 100% */
  transition: max-width 0.8s ease-in-out; /* Add a smooth transition effect */
  height: auto;
  /* Otomatik yükseklik ayarı, oranı korumak için */
  z-index: 1001;
  position: relative;
}
#secondNav.scrolled .navbar-brand img {
  max-width: 60%; /* Set the maximum width to 60% when scrolled */
}
/* Logo resmi hover durumunda */
.navbar-brand img:hover {
  opacity: 0.8;
  /* Hover durumunda logo resminin opaklığı */
}
/* ... (Your existing styles) ... */

.navbar .nav-item .dropdown {
  opacity: 0;
  display: block;
  transition: opacity 0.9s ease-in-out; /* Adjust the duration for a slower fade-in */
  position: absolute;
  top: 100%;
  left: 3%;
  right: 0;
  background-color: #8abb2a;
  padding: 4px 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar .nav-item:hover .dropdown {
  opacity: 1;
}

.navbar .nav-item .dropdown a {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  display: block;
  margin: 0;
  padding: 7px 0;
  font-size: 16px;
  color: #3f3f3f;
  text-decoration: none;
  position: relative;
}

.navbar .nav-item .dropdown a:hover {
  color: #fff; /* Change the color on hover */
}

.navbar .nav-item .dropdown a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #fff; /* White underline color */
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s ease-in-out;
}

.navbar .nav-item .dropdown a:hover::after {
  transform: scaleX(0.9);
  transform-origin: left;
}

/* header nav */

/* swiper slider banner */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  position: relative;
}
:root {
  --swiper-pagination-color: #8abb2a;
  --swiper-pagination-bullet-size: 20px;
  --swiper-pagination-right: 2%;
  --swiper-pagination-active-bullet-align: right; /* Aktif bullet'ın hizalaması */
  --swiper-pagination-bullet-vertical-gap: 20px;
  --swiper-pagination-bullet-inactive-background: #fff; /* Bullet'ların arkaplan rengi */
  --swiper-pagination-bullet-inactive-color: #fff;
  --swiper-pagination-bullet-inactive-opacity: 1;
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-size);
  height: var(--swiper-pagination-bullet-size);
  font-size: var(--swiper-pagination-bullet-size);
  line-height: var(--swiper-pagination-bullet-size);
  margin-right: var(--swiper-pagination-right);
  color: var(--swiper-pagination-color);
  margin: var(--swiper-pagination-bullet-vertical-gap) 0;
  background-color: var(--swiper-pagination-bullet-inactive-background);
  color: var(--swiper-pagination-bullet-inactive-color);
  opacity: var(--swiper-pagination-bullet-inactive-opacity);
}
.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  top: 45% !important;
  transform: translate3d(0px, -60%, 0) !important;
}
/* Bullet'ların içindeki sayıları sağa hizalayın */
.swiper-pagination-bullet-active {
  text-align: var(--swiper-pagination-active-bullet-align);
}

.slide-content {
  font-family: "Montserrat", sans-serif;
  position: absolute;
  top: 60%;
  left: 13%;
  max-width: 700px; /* İstenilen maksimum genişlik */
  transform: translateY(-50%);
  color: #fff;
  z-index: 9;
  text-align: start;
}

.slide-content h2,
.slide-content p {
  margin: 0;
}

.slide-content h2 {
  font-size: 2.5em;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-wrap: nowrap;
}

.slide-content p {
  font-size: 1.5em; /* Önceki p öğesi için metin boyutu */
  font-weight: 500;
}

.slide-content p.small {
  font-size: 17px; /* İkinci p öğesi için metin boyutu */
  font-weight: 300;
}

/* swiper slider banner */

.social-media {
  position: absolute;
  top: 50%;
  left: 2%;
  transform: translateY(-50%);
  z-index: 1;
}

.social-media .social-icon {
  display: block;
  margin-bottom: 10px;
  transition: transform 0.3s ease-in-out;
}

.social-media .social-icon:hover {
  transform: scale(1.1); /* veya başka bir değer */
}

/* İkonların stili (örneğin renk, boyut gibi) */
.social-media .social-icon i {
  font-size: 27px;
  color: #8abb2a;
}
.footer-sayfa {
  background-color: #3f3f3f;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  /* height: 100%; */
  width: 100%;
  margin: 0 auto;
  text-align: start;
  padding: 0;
}
.footer-sayfa h1 {
  text-align: start;
  color: rgba(138, 187, 42, 0.8);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 50px;
  margin-top: 8rem;
  padding: 2rem 0;
}
/* index banner2 */
.container-bg {
  background-image: url("../img/anasayfa/banner2.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100vh;
  color: white;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column; /* İçeriği dikey yönde sırala */
  align-items: flex-start; /* Sağ üst köşeye hizalama */
  justify-content: center; /* Sağ orta hizalama */
}
.banner-content {
  display: flex;
  justify-content: flex-start;
  max-width: 650px;
  margin: 0 6%;
}
.container-bg h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 45px;
  margin-top: 7rem;
}
.container-bg p {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 25px;
}
.container-bg .p2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 14px;
  text-align: start;
}
.container-bg button {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  width: auto;
  border: none;
  border-radius: 10px;
  background-color: #fff;
  color: #3f3d3d;
  margin: auto 3%;
  padding: 4px 12px;
  transition: background-color 0.3s ease, transform 0.3s ease; /* Hover efekti için geçiş süresi ve türü */
}
.container-bg button:hover {
  background-color: #8abb2a; /* Hover durumunda arka plan rengini değiştir */
  color: #fff;
  transform: scale(0.9);
}
/* index banner2 */

.container-bg2 {
  background-image: url("../img/anasayfa/banner3.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100vh;
  color: white;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.inner-container {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  margin: auto;
  padding: 20%;
}

.inner-container h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 45px;
  margin-bottom: 20px;
}

.inner-container p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 15px;
}
.inner-container button {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 15px;
  width: auto;
  border-radius: 10px;
  background-color: #8abb2a;
  color: #272727;
  margin: auto 1%;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease; /* Hover efekti için geçiş süresi ve türü */
  z-index: 9;
}
.inner-container button:hover {
  background-color: #fff; /* Hover durumunda arka plan rengini değiştir */
  color: #272727;
  transform: scale(0.9);
}
.referans .col-md-8 {
  margin-top: 10% !important;
  padding: 3rem;
}
.referans img {
  width: 100%;
  height: auto;
}
.referans h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 50px;
  margin-bottom: 20px;
}
.referans p {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 15px;
  margin-bottom: 20px;
  max-width: 600px;
}

/* logo-slider */
.logo-slider {
  background: #f5f5f5;
  padding: 3rem;
  width: 100% !important;
}

.logo-slider h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 5rem;
  color: #707070;
}
.customer-logos {
  padding: 0 8rem;
}
.slick-slide {
  margin: 0px 20px;
}

.slick-slide img {
  width: 100%;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
/* logo Slider */

.analiz-index-text h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 50px;
  margin-bottom: 20px;
}
.analiz-index-text .second-p {
  font-family: "Montserrat", sans-serif;
  font-weight:600;
  font-size: 24px;
  margin-bottom: 20px;
  max-width: 1200px;
  color: #3f3f3f;
}
.analiz-index-text p {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 20px;
  max-width: 900px;
  color: #3f3f3f;
}
/* kurumsal */
.container-bg-kurumsal {
  background-image: url("../img/kurumsal/head2.png");
  background-size: cover;
  max-width: 100vw;
  max-height: 100%;
  width: 100vw;
  height: 50vh;
  color: white;
  margin: 0 auto;
  position: relative;
}

.img-kurumsal img {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kalite-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80%;
  width: 100%;
  min-height: min-content;
  min-width: max-content;
}

.kalite-img img {
  height: 100%;
  width: 100%;
}
.title {
  background-color: #f5f5f5;
  width: 100vw;
  height: 15%;
  display: flex;
  margin: 0 auto;
}

.title h1 {
  font-size: 50px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  margin: 0 6rem;
  color: #393737;
}

.kurumsal-content h2 {
  font-size: 50px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  margin: 3% auto;
  color: #3f3f3f;
}
.kurumsal-content .secondTitle {
  font-size: 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin: 0;
  max-width: 450px;
  text-align: start;
  color: #3f3f3f;
}
.kurumsal-content p {
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  margin: 3% auto;
  text-align: start;
  color: #3f3f3f;
}

/* kurumsal */
.kalite-end {
  color: #8abb2a !important;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 800 !important;
  display: flex !important;
  justify-content: flex-end !important;
}
/* analiz */
.container-bg-analiz {
  background-image: url("../img/analiz/head.png");
  background-size: cover;
  max-width: 100vw;
  max-height: 100%;
  width: 100%;
  height: 50vh;
  color: white;
  margin: 0 auto;
  position: relative;
}

.analiz-img img {
  margin: 0 auto;
  width: 100%;
  height: 20vh;
  object-fit: cover;
}
.title-analiz {
  background-color: #f5f5f5;
  width: 100vw;
  height: 20vh;
  display: flex;
  margin: 0 auto;
}

.title-analiz h1 {
  font-size: 50px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  margin: 0 12rem;
  color: #393737;
}

.analiz-content .secondTitle {
  font-size: 27px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin: 0;
  text-align: center;
  color: #3f3f3f;
}
.analiz-content p {
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin: 2% auto;
  padding: 0 10rem;
  text-align: center;
  color: #3f3f3f;
}

.features-icons {
  padding-bottom: 6rem;
}

.features-icons .features-icons-item {
  margin: 0; /* Remove margin to make items appear without space between them */
}

.features-icons .col-md-1,
.features-icons .col-md-2 {
  padding: 0; /* Remove padding from columns */
}

.features-icons .features-icons-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.1),
    0 3px 0px -2px rgba(0, 0, 0, 0);
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 100%;
}

.features-icons .features-icons-item .features-icons-icon {
  text-align: center;
  display: flex;
  justify-content: center;
  padding: 10px;
  margin: 0 auto;
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

.features-icons .features-icons-item .features-icons-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  min-width: 70px;
  min-height: 70px;
}

.features-icons-item:hover,
.features-icons-item.active {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 0px 0px rgba(0, 0, 0, 0.22);
  background-color: #8abb2a !important;
  color: #fff;
}

.features-icons-item h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  color: #707070;
  text-wrap: nowrap;
  margin: 0 -22px;
}

.features-icons-item h6:hover {
  color: #fff;
}

.features-icons-item a {
  text-decoration: none;
}

.features-icons-item:hover .features-icons-icon img,
.features-icons-item:hover h6,
.features-icons-item.active .features-icons-icon img,
.features-icons-item.active h6 {
  filter: brightness(0) invert(1);
}

/* analiz */

/* belgeler */
.container-bg-belgeler {
  background-image: url("../img/belgeler/head.png");
  background-size: cover;
  max-width: 100vw;
  max-height: 100%;
  width: 100%;
  height: 50vh;
  color: white;
  margin: 0 auto;
  position: relative;
}

.belgeler-img img {
  margin: 0 auto;
  width: 100%;
  height: 20vh;
  object-fit: cover;
}
.title-belgeler {
  background-color: #f5f5f5;
  width: 100vw;
  height: 20vh;
  display: flex;
  margin: 0 auto;
}

.title-belgeler h1 {
  font-size: 50px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  margin: 0 12rem;
  color: #393737;
}

.belgeler-content .secondTitle {
  font-size: 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin: 0;
  text-align: center;
  color: #3f3f3f;
}
.belgeler-content p {
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin: 2% auto;
  padding: 0 10rem;
  text-align: center;
  color: #3f3f3f;
}

/* belgeler */

/* iletisim */
.container-bg-iletisim {
  background-image: url("../img/iletisim/head.png");
  background-size: cover;
  max-width: 100vw;
  max-height: 100%;
  width: 100%;
  height: 50vh;
  color: white;
  margin: 0 auto;
  position: relative;
}

.title-iletisim {
  background-color: #f5f5f5;
  height: 20vh;
  display: flex;
  margin: 0 auto;
}

.title-iletisim h1 {
  font-size: 50px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  margin: 0 12rem;
  color: #393737;
}
/* iletisim */

/* footer */
footer {
  color: #fff;
  text-align: start;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  overflow: hidden;
  max-width: 100%;
}

.footer-column {
  text-align: left;
}

.footer-column h3 a {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #8abb2a;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  font-size: 13px;
}
.iletisim li {
  margin-bottom: 1rem;
}

.footer-column a {
  color: #fff;
  text-decoration: none;
}

.footer-column a:hover {
  color: #30a8ee;
}

.copyright-text {
  padding: 20px;
  color: #575757;
  font-size: 13px;
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.footer-nav {
  padding: 0;
  list-style: none;
  float: left;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
.footer-nav li {
  display: inline-block;
  color: #575757;
}
.footer-nav li a {
  display: inline-block;
  padding: 15% 0;
  color: #575757;
  text-decoration: none;
}

.social-icons {
  text-align: start;
  margin-top: 0px;
}

.social-icon i {
  font-size: 20px; /* Ikon boyutunu istediğiniz gibi ayarlayabilirsiniz */
  color: #8abb2a !important;
  padding-right: 10px;
  transition: background-color 0.3s ease, transform 0.3s ease !important;
}
.social-icon i:hover {
  color: #30a8ee !important;
  transform: scale(1.1) !important;
}

.footer_logo img {
  width: auto;
  height: 100%;
}

/* Mobil Görünüm */
@media (max-width: 992px) {
  .footer-content {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    color: #fff;
  }

  .footer-container .social-icons {
    margin-bottom: 20px;
  }

  .footer-container .social-icon {
    font-size: 20px;
    color: #fff;
    margin: 0 3px;
  }

  .copyright-text {
    margin: 5% auto;
    padding: 0 10%;
    font-size: 12px;
  }
  .testbox form {
    width: 100%;
  }
  .title-iletisim {
    height: 10vh;
    width: 100vw;
  }
  .title-iletisim h1 {
    font-size: 35px;
    margin: 0 auto;
  }
  .title-analiz {
    height: 10vh;
    width: 100vw;
  }

  .title-analiz h1 {
    font-size: 35px;
    margin: 0 auto !important;
  }
  .title-belgeler {
    height: 10vh;
    width: 100vw;
  }

  .title-belgeler h1 {
    font-size: 35px;
    margin: 0 auto !important;
  }
  .title {
    height: 10vh;
    width: 100vw;
  }

  .title h1 {
    font-size: 35px;
    margin: 0 auto !important;
  }
  .kalite h1 {
    margin-top: 1.5rem !important;
  }
  .analiz-index-text h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 45px;
    margin-bottom: 20px;
  }
  .footer-sayfa h1 {
    text-align: start;
    color: rgba(138, 187, 42, 0.8);
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 30px;
    margin-top: 8rem;
    padding: 2rem;
  }
}
.footer ul.menu {
  padding: 0;
  list-style: none;
  width: 100vw;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  clear: both;
  display: table;
  background: #575757;
}

.footer ul.menu .list {
  font-size: 16px;
  border-bottom: 1px solid #324252;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  height: 50px;
  vertical-align: sub;
  background: #575757;
  clear: both;
}

.footer ul.menu .list:after {
  content: "\f107";
  font-family: FontAwesome;
  position: absolute;
  right: 17px;
  top: 17px;
  padding: 0px 5px;
  color: #8abb2a;
}

.footer ul.menu .list:before {
  content: "\f111";
  font-family: FontAwesome;
  position: absolute;
  left: 17px;
  top: 23px;
  padding: 0px 5px;
  color: #8abb2a;
  font-size: 7px;
}

.footer ul.menu .list a {
  text-decoration: none;
  color: #8abb2a;
  padding: 17px 0px 17px 45px;
  display: block;
  height: 100%;
  box-sizing: border-box;
}

.footer ul.menu .list a:hover {
  background-color: #324252;
  transition: 300ms all;
  color: #30a8ee;
}

.footer ul.menu .list .items {
  height: 0px;
  overflow: hidden;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.footer ul.menu .list .items a {
  padding: 17px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.footer ul.menu .list .items a:hover {
  background-color: #3f5d79;
  color: #fff;
  transition: 300ms all;
}

.footer ul.menu .list:last-child {
  border-bottom: none;
}

.footer ul.menu .active:after {
  content: "\f106";
  font-family: FontAwesome;
  position: absolute;
  right: 17px;
  top: 17px;
  padding: 0px 5px;
  color: #fff;
}

.footer ul.menu .active:before {
  content: "\f111";
  font-family: FontAwesome;
  position: absolute;
  left: 17px;
  top: 23px;
  padding: 0px 5px;
  color: #fff;
  font-size: 7px;
}

.footer ul.menu .active > .items {
  display: block;
  background: #8abb2a;
  padding: 0px;
  height: auto;
  color: #fff;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 200ms;
  clear: both;
  float: left;
  width: 100%;
}

.footer ul.menu .active > .items li {
  padding: 0px;
  border-bottom: 1px solid #324252;
  list-style: none;
  color: #fff;
  font-size: 15px;
}

.footer ul.menu .active > .items li:last-child {
  border-color: transparent;
  padding-bottom: 0px;
}

.footer ul.menu .active > .items .active {
  background-color: #2f4b67;
  color: #fff;
}

.footer ul.menu .active > a {
  color: #fff;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 16px;
}

.footer ul.menu .active .list {
  background: #697d92;
}

.footer ul.menu .active .list a {
  padding: 17px 0px 17px 45px;
}

/* footer */

@media (max-width: 767px) {
  .nav-pills {
    width: 27vw !important;
  }
  .nav-pills a {
    font-size: 13px;
  }

  /* Sadece 767 piksel veya daha küçük ekran genişliğinde çalışacak stil kodları */
  #firstNav .contact-info {
    padding: 5px 1rem;
    font-size: 0.8em;
  }
  #firstNav .container-fluid {
    padding: 0 !important;
  }
  .swiper-slide img {
    height: 103vh;
  }
  :root {
    --swiper-pagination-bullet-size: 15px !important;
    --swiper-pagination-right: 5%;
    --swiper-pagination-active-bullet-align: right !important;
    --swiper-pagination-bullet-vertical-gap: 12px !important;
    --swiper-pagination-bullet-margin-bottom: 40% !important;
  }

  .swiper-pagination-bullet {
    margin-bottom: var(--swiper-pagination-bullet-margin-bottom) !important;
  }
  .slide-content h2 {
    font-size: 1.5em !important; /* Mobildeki metin boyutu */
    text-wrap: balance;
  }

  .slide-content {
    text-align: left; /* Mobilde metni sola hizala */
    top: 60%;
  }
  .slide-content p {
    font-size: 1.2em;
    font-weight: 500;
    max-width: 300px !important;
  }
  .slide-content p.small {
    font-size: 0.7em; /* Mobilde küçük paragrafın metin boyutu */
  }

  .customer-logos {
    padding: 0;
  }
  .referans h2 {
    font-size: 35px;
    text-align: center;
  }
  .referans p {
    font-size: 15px;
    margin-bottom: 15px !important;
    text-align: center;
    max-width: 300px;
    margin: 0 auto;
  }
  .referans .col-md-8 {
    padding: 0rem;
  }
  .footer-nav {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .footer-nav li {
    margin-top: -15%;
    margin-bottom: 3%;
  }
  .copyright-text {
    margin: 1% auto;
    padding: 0 10%;
    font-size: 12px;
  }
  .btn-block button {
    width: 150px;
    padding: 10px;
    border: none;
    font-size: 17px;
    margin-bottom: 1rem;
  }
  .img-thumbnail {
    padding: 3rem !important;
    background: none;
    border: none !important;
    margin-bottom: -5rem;
  }
}

.vertical-tab .container {
  /* Set the desired width for the container */
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  height: 100%;
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
}

.nav-pills {
  /* Set the desired width for the nav pills */
  background-color: #f5f5f5;
  margin-right: 0;
  margin-left: 0;
  justify-content: center;
  padding-bottom: 3%;
}

.tab-content {
  flex-grow: 1;
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.nav-pills a {
  width: 100%;
  /* Full width for nav pills */
  text-align: left;
  margin-bottom: 5px;
  padding: 10px;
  text-decoration: none;
  color: #212529;
  transition: background-color 0.3s;
  border-radius: 0 !important;
  display: block;
  /* Make nav-pills a block element */
}

/* Zebra deseni için arka plan rengi */
.nav-pills a:nth-child(odd) {
  background-color: #cbcbcb;
}

.nav-pills a:nth-child(even) {
  background-color: #e6e6e6;
}

/* Aktif butonun stilini belirleme */
.nav-pills a.active {
  background-color: #8abb2a !important;
  color: #fff;
}

/* Hover stilini belirleme */
.nav-pills a:hover {
  background-color: #8abb2a;
  color: #fff;
}

.tab-pane {
  padding: 0 3rem;
  margin-bottom: 7rem;
}

.tab-pane h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: #3f3f3f;
  font-size: 35px;
}

.tab-pane .section1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #3f3f3f;
  font-size: 25px;
}

.tab-pane .section2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #3f3f3f;
  font-size: 14px !important;
}

.gida-baslik h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: #3f3f3f;
  font-size: 50px;
}

.gida-baslik p {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #3f3f3f;
  font-size: 18px;
}

.vertical-tab {
  display: flex;
  align-items: flex-start;
  /* Align items to the start (top) */
}

@media (max-width: 992px) {
  #firstNav .container-fluid {
    padding: 1% 0;
  }
  .navbar-toggler {
    background: #8abb2a !important;
    border: none;
    color: #fff !important;
    transition: transform 0.3s ease-in-out;
    z-index: 1001;
    outline: none;
    /* Klavye odaklanması durumunda varsayılan kenarlığı kaldır */
  }

  .navbar-toggler i::before {
    content: "\2261";
    /* Üç çizgi karakteri */
    font-family: "FontAwesome";
  }

  .navbar-toggler.active i::before {
    content: "\00d7";
    /* "X" karakteri */
    font-size: 1.5rem;
    display: flex;
  }

  .navbar-collapse {
    display: none;
    /* Başlangıçta menüyü gizle */
    position: absolute;
    top: 16px;
    /* Başlık çubuğu yüksekliği */
    right: 0;
    left: 0;
    bottom: 0;
    background: #3f3f3f;
    z-index: 1000;
    animation: slideIn 0.3s ease-in-out, fadeIn 0.5s ease-in-out;
  }

  .navbar-toggler.active + .navbar-collapse {
    display: block;
    z-index: 1000;
    /* Yüksek bir z-index değeri kullanarak menüyü üstte tutun */
    height: 100vh;
  }

  .navbar .container {
    padding: 12px 20px;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateX(20%);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes slideIn {
    from {
      transform: translateX(100%);
    }

    to {
      transform: translateX(0);
    }
  }

  .navbar-nav {
    flex-direction: column;
    padding-top: 100px;
    /* İstediğiniz boşluk miktarını ayarlayabilirsiniz */
  }
  .navbar .nav-link {
    display: flex;
    justify-content: space-between;
  }
  .navbar-nav .nav-item {
    margin: 8px 15px;
    text-align: left;
  }

  .navbar-brand img {
    max-width: 80%;
    /* Örneğin logo genişliğini %80 olarak ayarladım */
  }
  .navbar .nav-item .dropdown {
    position: relative; /* Remove absolute positioning for mobile */
    display: none; /* Hide dropdown by default on mobile */
  }

  .navbar .nav-item:hover .dropdown {
    display: block; /* Display dropdown on hover for mobile */
    position: relative; /* Adjust position for mobile */
    background-color: #8abb2a; /* Adjust background color for mobile */
  }

  .navbar .nav-item .dropdown a {
    color: #fff; /* Adjust text color for mobile */
    padding: 10px 0; /* Adjust padding for mobile */
  }
  .nav-link .toggle-icon {
    margin-left: 5px; /* Adjust the margin as needed */
    transition: transform 0.3s ease-in-out;
  }

  .nav-link .toggle-icon.rotate-icon {
    transform: rotate(180deg);
  }

  #firstNav .contact-info a {
    margin-left: 5px;
  }

  #firstNav .row .col-md-8,
  #firstNav .row .col-md-4 {
    justify-content: center;
    display: flex;
  }

  #firstNav .row .col-md-8 i {
    margin: 4px;
  }

  .analiz-content .secondTitle {
    font-size: 20px !important;
  }

  .analiz-content p {
    padding: 0 !important;
  }
  .belgeler-content .secondTitle {
    font-size: 24px !important;
  }

  .belgeler-content p {
    padding: 0 !important;
  }

  .gida-baslik h2 {
    font-size: 27px;
  }

  .gida-baslik p {
    font-size: 14px;
    padding: 2rem;
  }

  .tab-pane h2 {
    font-size: 20px;
  }

  .tab-pane .section1 {
    font-size: 16px;
  }

  .tab-content {
    padding: 0;
  }

  .tab-pane {
    padding: 0 2rem;
    margin-bottom: 7rem;
  }

  .nav-pills {
    padding-bottom: 0;
    position: relative;
    justify-content: center;
  }
  .kurumsal-content h2 {
    font-size: 33px;
    margin-top: 3rem;
  }
  .kurumsal-content .secondTitle {
    font-size: 24px;
  }
  .container-bg-mobil {
    background-image: url("../img/mobil/mobil2.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 100vh;
    color: white;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column; /* İçeriği dikey yönde sırala */
    align-items: flex-start; /* Sağ üst köşeye hizalama */
    justify-content: center; /* Sağ orta hizalama */
  }
  .banner-content {
    display: flex;
    justify-content: flex-start;
    max-width: 650px;
    margin: 0 6%;
  }
  .container-bg-mobil h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 33px;
    margin-top: -7rem;
  }
  .container-bg-mobil p {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 18 px;
  }
  .container-bg-mobil .p2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 14px;
  }
  .container-bg-mobil button {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 14px;
    width: auto;
    border: none;
    border-radius: 10px;
    background-color: #fff;
    color: #3f3d3d;
    margin: auto 3%;
    padding: 4px 12px;
    transition: background-color 0.3s ease, transform 0.3s ease; /* Hover efekti için geçiş süresi ve türü */
    z-index: 9;
  }
  .container-bg-mobil button:hover {
    background-color: #8abb2a; /* Hover durumunda arka plan rengini değiştir */
    color: #fff;
    transform: scale(0.9);
  }

  .container-bg2-mobil {
    background-image: url("../img/mobil/mobil3.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 60vh;
    color: white;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .inner-container {
    padding: 10%;
    text-align: start;
    align-items: start;
    justify-content: center;
  }

  .inner-container h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .inner-container p {
    font-size: 14px;
  }
  .inner-container button {
    padding: 5px 12px;
  }
  .slide-content h2 {
    text-wrap: balance;
  }
  .slide-content p {
    font-weight: 500;
    max-width: 600px;
  }
}

@media (max-width: 400px) {
  .nav-pills {
    padding-bottom: 60%;
    position: relative;
    justify-content: center;
  }
}

/* Wp-side */

.hidden {
  display: none;
}

.sticky-button {
  position: fixed;
  background-color: #8abb2a;
  bottom: 20px;
  left: 20px;
  border-radius: 50px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
  z-index: 20;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.sticky-button svg {
  margin: auto;
  fill: #fff;
  width: 35px;
  height: 35px;
}

.sticky-button a,
.sticky-button label {
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 55px;
  height: 55px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.sticky-button label svg.close-icon {
  display: none;
}

.sticky-chat {
  position: fixed;
  bottom: 70px;
  left: 20px;
  width: 320px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  z-index: 21;
  opacity: 0;
  visibility: hidden;
}

.sticky-chat a {
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  color: #505050;
}

.sticky-chat svg {
  width: 35px;
  height: 35px;
}

.sticky-chat .chat-content {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
}

.sticky-chat .chat-header {
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background-color: #8abb2a;
  overflow: hidden;
}

.sticky-chat .chat-header:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 75px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 70px 0 5px 0;
}

.sticky-chat .chat-header svg {
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  fill: #fff;
}

.sticky-chat .chat-header .title {
  padding-left: 5px;
  font-size: 15px;
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  color: #fff;
  background-color: transparent;
}

.sticky-chat .chat-header .title span {
  font-size: 11px;
  font-weight: 400;
  display: block;
  line-height: 1.58em;
  margin: 0;
  color: #f4f4f4;
}

.sticky-chat .chat-text {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 20px;
  font-size: 12px;
}

.sticky-chat .chat-text span {
  display: inline-block;
  margin-right: auto;
  padding: 10px;
  background-color: #f0f5fb;
  border-radius: 0px 15px 15px;
}

.sticky-chat .chat-text span:after {
  content: "just now";
  display: inline-block;
  margin-left: 2px;
  font-size: 9px;
  color: #989b9f;
}

.sticky-chat .chat-text span.typing {
  margin: 15px 0 0 auto;
  padding: 10px;
  border-radius: 15px 0px 15px 15px;
}

.sticky-chat .chat-text span.typing:after {
  display: none;
}

.sticky-chat .chat-text span.typing svg {
  height: 13px;
  fill: #505050;
}

.sticky-chat .chat-button {
  display: flex;
  align-items: center;
  margin: 20px;
  padding: 12px 20px;
  border-radius: 50px;
  background-color: #8abb2a;
  color: #fff;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
  font-size: 12px;
  font-family: "DM Sans", sans-serif;
    font-weight: 400;
  width: max-content;
}

.sticky-chat .chat-button svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  margin-left: auto;
  transform: rotate(40deg);
  -webkit-transform: rotate(40deg);
}

.chat-menu:checked + .sticky-button label {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.chat-menu:checked + .sticky-button label svg.chat-icon {
  display: none;
}

.chat-menu:checked + .sticky-button label svg.close-icon {
  display: table-cell;
}

.chat-menu:checked + .sticky-button + .sticky-chat {
  bottom: 90px;
  opacity: 1;
  visibility: visible;
}

/* Wp-side */


/* form */
.thank-you-alert {
  color: #fff;
  padding: 50px;
  border-radius: 10px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  font-size: 20px;
  font-family: "Visby CF Medium";
  background-color: #707071;
}

/* New styles for warning alert */
.warning-alert {
  background-color: #f44336;
  /* Red background color */
  color: white;
  padding: 15px;
  border-radius: 10px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}
/* form */