@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease;
}

body {
  background-color: #ffffff;
  color: #121212; /* Black */
}

.site-header {
  background-color: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
    position: fixed;
    width: 100%;
    z-index: 9999;
}
.h {
    width: 100%;
    height: 90px;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  background: url("img/logo.png") no-repeat bottom left;
  background-size: 100% auto;
  width: 160px;
  height: 50px;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav li a {
  text-decoration: none;
  color: #006633;
  font-weight: 700;
  font-size: 18px;
  padding: 6px 0;
}
.main-nav li:hover a {
    border-bottom: 3px solid #00723b;
}
.main-nav li {
    position: relative;
}
.subMenu {
    display: none;
}
.main-nav li:hover .subMenu {
    display: block;
    min-width: 250px;
    position: absolute;
    left: 0;
    top: 31px;
    background: white;
    padding: 20px 10px 10px;
    border-radius: 0 0 16px 16px;
    box-shadow: 0px 25px 20px 1px rgba(65, 65, 65, 0.22);
}
.main-nav li .subMenu a {
    display: block;
    width: 100%;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 0;
    padding: 10px;
    border-radius: 5px;
}
.main-nav li .subMenu a:hover {
    color: #00723b;
}
.lang {
  font-weight: 600;
  color: #006633;
  position: relative;
}
.lang span {
  background: url("img/lang.png") no-repeat center left;
  background-size: 16px 16px;
  display: inline-block;
  padding-left: 22px;
  cursor: default;
}
.langoptions {
  display: none;
}
.lang:hover .langoptions {
  display: block;
  position: absolute;
  background: #fff;
  right: -16px;
  top: 18px;
  padding: 10px 16px;
    box-shadow: 0px 15px 20px 2px rgba(49, 49, 49, 0.15);
    border-radius: 0 0 15px 15px;
}
.langoptions a {
  font-size: 14px !important;
  font-weight: 600 !important;
  display: block !important;
  text-align: right;
  color: #666 !important;
}
a.langselect {
  color: #00723b !important;
}
.lang:hover a,
.langoptions a:hover {
  border: none !important;
}

.langoptions a:hover {
  color: #00723b !important;
}
.slider {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
    padding-bottom: 250px;
}
.slide-txt {
  padding: 60px 0 0 100px;
  text-shadow: 4px 12px 50px #000;
}
.slides {
  display: flex;
  transition: all 0.5s ease;
  margin-bottom: -50px;
}

.slide {
  min-width: 100%;
  height: 510px;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 40px;
  position: relative;
}

.slide h1 {
  font-size: 48px;
  margin-bottom: 10px;
}
.slide h1 span {
  font-size: 64px;
  margin-bottom: 10px;
  font-weight: 800;
}
.slide p {
  font-size: 20px;
  max-width: 500px;
}

.slider-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  font-size: 32px;
  border: none;
  cursor: pointer;
    width: 60px;
    height: 60px;
  border-radius: 50%;
  z-index: 2;
}
.slider-link {
  background: #00723b;
  border: 1px solid #ffffff;
  border-radius: 32px;
  display: inline-block;
  padding: 15px 80px;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  text-decoration: none;
  margin-top: 20px;
}
.prev {
  left: 10px;
    background: url("img/slider-btn-prev.png") no-repeat center center #fff;
    background-size: 20% auto;
}
.next {
  right: 10px;
    background: url("img/slider-btn-next.png") no-repeat center center #fff;
    background-size: 20% auto;
}
/* Dots */
.dots {
  text-align: center;
  position: absolute;
  top:425px;
    left: 50%;
  transform: translateX(-50%);
    z-index: 99;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: #00723b;
  border: 1px solid #fff;
}

.info-section {
    width: 1200px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
    position: absolute;
    bottom: -140px;
  left: 50%;
    margin-left: -600px;
}

.info-card {
  background: white;
  padding: 15px;
  border-radius: 20px;
  width: 350px;
  text-align: center;
  box-shadow: 0px 8px 20px rgba(0, 114, 59, 0.25);
  backdrop-filter: blur(5px);
}

.info-card img {
  max-width: 180px;
  height: auto;
  margin-bottom: 10px;
}

.info-card h3 {
  font-size: 18px;
  color: #00723b;
  margin: 0;
}

.info-card .subtext {
  color: #00723b;
  margin-top: 8px;
  font-weight: 400;
  font-size: 8px;
  line-height: 10px;
  text-align: center;
}

.products-section {
  max-width: 1120px;
  margin: 0 auto 120px;
}
.slider-pet-section {
    margin-bottom: 120px;
}
.products-section h4 {
    font-size: 36px;
    color: #00723B;
    margin-bottom: 40px;
}
.sectionTitle {
  font-size: 42px;
  font-weight: 700;
  color: #00723b;
  border-left: 6px solid #b4d930;
  padding-left: 12px;
  width: 1120px;
  margin: 0 auto 40px;
}
a:hover.product-card img {
  transform: scale(1.2) translateY(0);
}

.products-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.product-card {
  background: #fff;
  box-shadow: 0px 4px 20px rgba(137, 137, 137, 0.25);
  border-radius: 20px;
  text-align: center;
  padding: 20px;
  width: 350px;
    text-decoration: none;
}

.product-card:hover {
    background: #E1EADF;
    
box-shadow: 0px 8px 100px rgba(0, 114, 59, 0.25);
}
.madensuyubg {
    background: url("img/dag.png") no-repeat 200% center;
    background-size: 100% auto;
    position: absolute;
    width: 800px;
    height: 500px;
    right: -300px;
    top: 160px;
}
.product-card img {
  max-width: 100%;
  max-height: 280px;
  object-fit: contain;
  margin-bottom: 15px;
}

.product-card p {
  font-size: 20px;
  font-weight: 600;
  color: #00723b;
  margin: 0;
}

.water-tab-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: 1125px;
  margin: 0 auto;
  position: relative;
}

.water-tab {
  cursor: pointer;
  font-size: 14px;
  color: #006400;
}

.water-tab.active {
  font-weight: bold;
  opacity: 1;
  border-bottom: 4px solid #00723b !important;
}

.water-slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  height: 660px;
    padding-bottom: 100px;
}

.water-slider {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
  padding: 30px 40px;
  justify-content: center;
  touch-action: pan-y;
  align-items: center;
  height: 100%;
}

.water-item {
  text-align: center;
  transition: transform 0.5s, opacity 0.5s;
  flex: 0 0 300px;
  width: 300px;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end; 
  vertical-align: bottom;
  opacity: 0.5;
}

.water-item img {
	object-fit: contain;
	transition: all 0.3s;
  margin-bottom: 50px;
}

.water-item .water-label {
  width: 100px;
  margin-top: 10px;
  font-weight: bold;
  position: absolute;
  bottom: 40px;
  padding: 2px 8px;
  border-radius: 10px;
}

.water-item.active{
  opacity: 1;
}
.water-item.active .water-button {
  display: inline-block;
  background: #006400;
  color: white;
  border-radius: 100px;
  text-decoration: none;
  position: absolute;
  bottom: -30px;
    width: 210px;
    height: 56px;
    line-height: 56px;
    font-size: 20px;
    font-weight: 500;
}

.water-button {
  display: none;
}

.arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 2;
}

.arrow-left {
  left: 20px;
    background: url("img/slider-btn-prev.png") no-repeat center center #fff;
    background-size: 20% auto;
}
.arrow-right {
  right: 20px;
    background: url("img/slider-btn-next.png") no-repeat center center #fff;
    background-size: 20% auto;
}
.water-tab-menu .water-label-0,
.water-tab-menu .water-label-1,
.water-tab-menu .water-label-2,
.water-tab-menu .water-label-3,
.water-tab-menu .water-label-4,
.water-tab-menu .water-label-5,
.water-tab-menu .water-label-6,
.water-tab-menu .water-label-7,
.water-tab-menu .water-label-8,
.water-tab-menu .water-label-9,
.water-tab-menu .water-label-10,
.water-tab-menu .water-label-11 {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto 100px;
  height: 132px;
  width: 90px;
  text-align: center;
  padding-top: 100px;
  border-bottom: 1px solid #00723b;
  position: relative;
}
.water-tab-menu .water-label-0          {background-image: url(img/water_vector_damacana.png);}
.water-tab-menu .water-label-0.active   {background-image: url(img/water_vector_damacana_2.png);}
.water-tab-menu .water-label-1          {background-image: url(img/water_vector_5.png);}
.water-tab-menu .water-label-1.active   {background-image: url(img/water_vector_5_2.png);}
.water-tab-menu .water-label-2          {background-image: url(img/water_vector_15.png);}
.water-tab-menu .water-label-2.active   {background-image: url(img/water_vector_15_2.png);}
.water-tab-menu .water-label-3          {background-image: url(img/water_vector_1.png);}
.water-tab-menu .water-label-3.active   {background-image: url(img/water_vector_1_2.png);}
.water-tab-menu .water-label-4          {background-image: url(img/water_vector_05.png);}
.water-tab-menu .water-label-4.active   {background-image: url(img/water_vector_05_2.png);}
.water-tab-menu .water-label-5          {background-image: url(img/water_vector_033.png);}
.water-tab-menu .water-label-5.active   {background-image: url(img/water_vector_033_2.png);}
.water-tab-menu .water-label-6          {background-image: url(img/water_vector_020.png);}
.water-tab-menu .water-label-6.active   {background-image: url(img/water_vector_020_2.png);}
.water-tab-menu .water-label-7          {background-image: url(img/water_vector_bardak.png);}
.water-tab-menu .water-label-7.active   {background-image: url(img/water_vector_bardak_2.png);}
.water-tab-menu .water-label-8          {background-image: url(img/water_vector_ppet750.png);}
.water-tab-menu .water-label-8.active   {background-image: url(img/water_vector_ppet750_2.png);}
.water-tab-menu .water-label-9          {background-image: url(img/water_vector_ppet400.png);}
.water-tab-menu .water-label-9.active   {background-image: url(img/water_vector_ppet400_2.png);}
.water-tab-menu .water-label-10         {background-image: url(img/water_vector_glass750.png);}
.water-tab-menu .water-label-10.active  {background-image: url(img/water_vector_glass750_2.png);}
.water-tab-menu .water-label-11         {background-image: url(img/water_vector_glass330.png);}
.water-tab-menu .water-label-11.active  {background-image: url(img/water_vector_glass330_2.png);}



.waterTitle1,
.waterTitle2,
.waterTitle3,
.waterTitle4 {
  position: absolute;
  bottom: -24px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  color: #00723b;
  opacity: 1;
}
.waterTitle1 {
  width: 90px;
  left: 0;
}
.waterTitle2 {
  width: 630px;
  left: 105px;
}
.waterTitle3 {
  width: 180px;
  left: 750px;
}
.waterTitle4 {
  width: 180px;
  left: 945px;
}
 
.water-tab-menu .water-label-0,
.water-tab-menu .water-label-7,
.water-tab-menu .water-label-9 {
  margin-right: 15px;
}

.water-tab-menu .water-label-0::after,
.water-tab-menu .water-label-1::before,
.water-tab-menu .water-label-8::before,
.water-tab-menu .water-label-10::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #00723b;
  width: 1px;
  height: 10px;
}
.water-tab-menu .water-label-0::before,
.water-tab-menu .water-label-7::before,
.water-tab-menu .water-label-9::before,
.water-tab-menu .water-label-11::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #00723b;
  width: 1px;
  height: 10px;
}

.water-tab-menu .water-label-1,
.water-tab-menu .water-label-2,
.water-tab-menu .water-label-3,
.water-tab-menu .water-label-4,
.water-tab-menu .water-label-5,
.water-tab-menu .water-label-6, 
.water-tab-menu .water-label-7 {
}

.water-tab-menu .water-label-8,
.water-tab-menu .water-label-9 {
}

.water-tab-menu .water-label-10,
.water-tab-menu .water-label-11 {
}


.pet-damacana img {
  height:400px;
}
.pet-5000 img {
  height:295px;
}
.pet-1500 img {
  height:266px;
}
.pet-1000 img {
  height:210px;
}
.pet-500 img {
  height:187px;
}
.pet-330 img {
  height:127px;
}
.pet-200 img {
  height:93px;
}
.pet-bardak img {
  height:78px;
}

.ppet-750 img {
  height:210px;
}
.ppet-400 img {
  height:156px;
}
.cam-750 img {
  height:238px;
}
.cam-330 img {
  height:156px;
}

.source-section {
  margin: 50px auto 0;
  background: #fff;
}

.source-card {
  background: #fff;
  border-radius: 30px;
  padding: 40px;
  width: 1160px;
  margin: 0 auto -180px;
  box-shadow: 0px 8px 20px rgba(0, 114, 59, 0.25);
  position: relative;
  z-index: 1;
}

.source-heading {
  margin-bottom: 15px;

  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 59px;

  color: #00723b;
}

.source-text {
  font-size: 20px;
  color: #333;
  margin-bottom: 20px;
}

.source-button {
  display: inline-block;
  padding: 12px 24px;
  background: #00723b;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.source-map {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.source-map img {
  width: 100%;
  height: auto;
  display: block;
}

.sponsor-section {
  background-color: #fff;
  margin: 40px auto 0;
  width: 100%;
}

.sponsor-card {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  z-index: 1;
  position: relative;
  margin: 0 auto;
  width: 1200px;
}

.sponsor-text {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0px 8px 20px rgba(217, 0, 0, 0.25);
  flex: 1;
  text-align: left;
  padding: 30px;
  height: 240px;
  max-width: 680px;
}

.sponsor-heading {
  color: #d90000;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 10px;
}

.sponsor-text p {
  font-size: 20px;
  color: #333;
}

.sponsor-logos {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.sponsor-team {
  margin-top: -80px !important;
}
.sponsor-team img {
  width: 100%;
  display: block;
}

.sponsor-logo {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 8px 20px rgba(217, 0, 0, 0.25);
  padding: 20px;
  width: 230px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsor-logo img {
  height: 80%;
  object-fit: contain;
}

.sponsor-logo.tvf img {
  max-width: 90%;
  object-fit: contain;
}

.forest-section {
  padding: 100px 20px 200px;
  background: url("img/forest-bg.jpeg") no-repeat bottom center;
  background-size: cover;
  color: #00723b;
}
.forestimg {
    max-width: 1200px;
    width: 90%;
}
.forest-title {
  font-size: 28px;
  font-weight: 700;
  text-align: left;
  border-left: 5px solid #b4d930;
  padding-left: 12px;
  margin-bottom: 30px;
}

.forest-card {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 8px 100px rgba(0, 114, 59, 0.1);
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.forest-text {
  text-align: left;
  flex: 1;
}

.forest-heading {
  font-size: 40px;
  margin-bottom: 10px;
  font-weight: 500;
}

.forest-text p {
  font-size: 20px;
  color: #333;
  margin-bottom: 20px;
}

.forest-button {
  display: inline-block;
  padding: 12px 24px;
  background: #00723b;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.forest-icon img {
  width: 200px;
}

.forest-counter {
  margin-top: 60px;
}

.forest-counter-label {
  display: block;
  font-size: 20px;
  font-weight: 600;
  margin: 0 auto;
  width: 240px;
  text-align: center;
}

.forest-counter-numbers {
  display: flex;
  justify-content: center;
  gap: 0;
}

.forest-counter-numbers .digit {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  font-size: 86px;
  font-weight: bold;
  border-radius: 10px;
  color: #00723b;
  text-align: center;
  width: 100px;
  height: 200px;
  line-height: 200px;
}

.d0 {
  background-image: url("img/counter00.png");
}
.d1 {
  background-image: url("img/counter01.png");
}
.d2 {
  background-image: url("img/counter02.png");
}
.d3 {
  background-image: url("img/counter03.png");
}
.d4 {
  background-image: url("img/counter04.png");
}
.d5 {
  background-image: url("img/counter05.png");
}
.d6 {
  background-image: url("img/counter06.png");
}
.d7 {
  background-image: url("img/counter07.png");
}
.d8 {
  background-image: url("img/counter08.png");
}
.d9 {
  background-image: url("img/counter09.png");
}

.forest-counter-numbers .comma {
  background: none;
  box-shadow: none;
  padding: 15px 5px;
  width: auto;
}

.feed-wrapper {
  max-width: 1000px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  padding: 20px;
}
.insta-frame {
  border: none;
  width: 100%;
  height: 400px;
}

.k-instagram-area {
  margin: 60px 0;
}

.k-instagram-grid {
  column-count: 4; /* sütun sayısı */
  column-gap: 24px; /* sütunlar arası boşluk */
  width: 1200px;
  margin: 0 auto 40px;
}

.k-instagram-grid a {
  display: inline-block;
  width: 100%;
  margin-bottom: 24px;
  break-inside: avoid; 
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px #fff;
  border-radius: 16px;
}

.k-instagram-grid a:hover {
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px #00723B, 0 15px 30px -2px rgba(0, 0, 0, 0.3);
  border-radius: 16px;
}

.k-instagram-grid img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: block;
}
.k-social-grid {
  display: grid;
  grid-template-columns: repeat(5, 60px);
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.k-social-grid a {
    background: #fff;
	width: 50px;
	height: 50px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 100px;
}
.k-social-grid a:hover {
    background: #AEC40B;
}
.k-social-grid img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.nerelerdeyiz {
  margin: 100px auto;
}
.search-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

.title {
  font-size: 20px;
  color: #00723B;
  font-weight: 600;
  white-space: nowrap;
  padding-right: 40px;
}
.select-box.seco{
  min-width: 200px !important;
}
.select-box {
  padding: 12px 35px 12px 20px;
  border: 1px solid #00723B;
  border-radius: 15px;
  font-size: 16px;
  color: #555;
  background-color: white;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%2300723B' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  min-width: 280px;
}

.search-button {
  background-color: #00723B;
  color: white;
  border: none;
  padding: 12px 40px;
  border-radius: 15px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0px 8px 16px rgba(0, 104, 55, 0.2);
  transition: background 0.3s;
}

.search-button:hover {
  background-color: #00522c;
}

.map-container {
  margin: 40px auto;
  max-width: 1200px;
}

.map-image {
  width: 100%;
  border-radius: 10px;
}

.k-footer {
  background-color: #006838;
  color: white;
  padding: 60px 20px 20px;
  font-family: "Segoe UI", sans-serif;
}
.footerlogo {
  background: url("img/logofooter.png") no-repeat center center;
  background-size: 100% auto;
  width: 200px;
  height: 100px;
  display: inline-block;
  margin: 0 0 -20px -5px;
  padding: 0;
}
.k-footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.k-footer-logo h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.k-footer-logo p {
  font-size: 18px;
}

.k-footer-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

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

.k-footer-links li {
  margin-bottom: 10px;
}

.k-footer-links a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.k-footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  font-size: 14px;
}

.yapitasi-container {
  width: 100%;
  height: 650px;
  background-size: cover;
  background-position: center;
  transition: background-image 0.5s ease-in-out;
  position: relative;
}

.yapitasi-container,
.source-map,
.sponsor-team,
.forest-section,
.slider,
.water-slider-wrapper {
    max-width: 1600px;
    margin: 0 auto;
}
.yapitasi-tabs {
  background-color: white;
  position: inherit;
  height: 100px;
  width: 100%;
  display: flex;
  gap: 20px;
  z-index: 2;
  justify-content: center;
  align-items: center;
}

.txtRed {
  color: #d90000 !important;
}
.txtWhite {
  color: #fff !important;
}
.txtGreen {
  color: #00723B !important;
}
.yapitasi-tab-button {
  background-color: white;
  border: 1px solid #eee;
  padding: 16px 36px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  color: #00723B;
  font-size: 20px;
}

.yapitasi-tab-button.yapitasi-active {
  background-color: #00723B;
  color: white;
  font-weight: 700;
}
.newscontentimg {
    width: 400px;
    float: left;
    margin: 0 50px 50px 0;
    border-radius: 15px;
}
.yapitasi-tab-content {
  display: none;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-top: 200px;
  z-index: 1;
  color: white;
}

.yapitasi-tab-content.yapitasi-active {
  display: block;
}

.yapitasi-text-box {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 15px;
  max-width: 400px;
}

.yapitasi-text-box h2 {
  margin-top: 0;
  font-size: 36px;
  color: #ffffff;
}

.yapitasi-text-box p {
  font-size: 20px;
  color: #ffffff;
}

.pageContent {
  max-width: 1200px;
  margin: 40px auto 0;
  font-size: 18px;
  font-weight: 400;
}
.pageContent p {
    text-align: justify;
}
.pageHeader {
  background-color: white;
  color: #00723B;
  font-family: Arial, sans-serif;
  width: 100%;
}
.pageHeaderTitle {
  width: 100%;
  height: 190px;
}
.pageHeaderTitle.green {
  background-color: #00723B !important;
  margin-bottom: 30px;
}
.pageHeaderTitle.green h1 {
  color: #fff;
}
.pageContent h1 {
    
  font-size: 40px;
  font-weight: bold;
  color: #00723B;
  max-width: 1200px;
  margin: 0 auto 80px;
}
.pageHeaderTitle h1 {
  font-size: 40px;
  font-weight: bold;
  line-height: 190px;
  color: #00723B;
  max-width: 1200px;
  margin: 0 auto;
}

.pageHeaderTabs {
  display: flex;
  gap: 16px;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;

  justify-content: center; 
  align-items: center;    
}

.pageHeaderTabs li {
  transition: all 0.3s ease;
}

.pageHeaderTabs li a {
  border: 1px solid #00723b;
  background-color: white;
  display: block;
  padding: 12px 15px;
  font-size: 16px;
  color: #00723B;
  text-decoration: none;
  border-radius: 20px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.pageHeaderTabs li:hover a {
  background-color: #00723b;
  color: white;
}

.pageHeaderTabs .phtActive a {
  background-color: #00723b;
  color: white;
  font-weight: 700;
}

.yapitasi-blurWrapper {
  position: relative;
  display: inline-block;
}

.yapitasi-year {
  font-size: 90px;
  font-weight: 700;
  color: #00723B;
  margin-bottom: 0;
}

.yapitasi-blurBox {
  color: white;
  max-width: 600px;
}

.trendyol-link,
.getir-link {
  display: inline-block;
  text-decoration: none;
  color: #333;
  padding: 0;
  border-radius: 20px;
  width: 200px;
  height: 80px;
  margin-right: 10px;
  
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

}
.trendyol-link {
  background: url(img/link-trendyol.png) no-repeat center center #ff6720;
  background-size: auto 44px;
}
.getir-link {
  background: url(img/link-getir.png) no-repeat center center #4c3398;
  background-size: auto 40px;
}
a:hover.trendyol-link {
}
a:hover.getir-link {
}

.yapitasi-blurBox p {
  font-size: 36px;
  font-weight: 600;
  color: white;
  margin: 0;
  text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
}
.tr-modal__body li.linkloc:hover {
  background-color: #fff;
}
.tr-modal__body li.linkloc {
  padding: 10px 0;
}
.tr-modal__body li:hover {
  background-color: #f2f2f2;
}
.tr-modal__body li {
  display: flex;
  width: 100%;
  padding: 8px 10px;
  border-bottom: 1px solid #eee;
  margin:0;
} 
.tr-modal__body li p {
  float: left;
  width: 160px;
}
.tr-modal__body li b {
  float: left;
  width: 180px;
  font-weight: normal;
}
.tr-modal__body li i {
  float: left;
  width: 570px;
  font-style: normal;
}

      .tr-modal-backdrop{
        position:fixed; inset:0; display:none; align-items:center; justify-content:center;
        background:rgba(0,0,0,.45); z-index:9999; padding:16px;
      }
      .tr-modal{
        background:#fff; max-width:1000px; width:100%; border-radius:14px; box-shadow:0 10px 30px rgba(0,0,0,.2);
        overflow:hidden;
      }
      .tr-modal__header{
        display:flex; align-items:center; justify-content:space-between;
        padding:5px 20px; border-bottom:1px solid #eee;
      }
      .tr-modal__title{ font-size:24px; font-weight:700; margin:0; color: #00723B; }
      .tr-modal__close{ border:0; background:transparent; font-size:40px; cursor:pointer; line-height:1; padding:6px; }
      .tr-modal__body{ padding:0 20px 20px; line-height:1.55; font-size:14px; color:#222; max-height: 500px; overflow-y: scroll; }
      .tr-modal__body p{ margin:0; white-space:pre-wrap; }
      .highlight{fill:orange !important;}

.yerli {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.yerli-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap; /* wrap yerine nowrap olursa küçük ekran hariç yan yana kalır */
  gap: 80px;
}

.yerli-section.reverse {
  flex-direction: row-reverse;
}

.yerli-text {
  flex: 1;
}

.yerli-text h2 {
  color: #108444;
  font-size: 36px;
  margin-bottom: 15px;
}

.yerli-text p {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
}

.yerli-image {
  width: 350px;
  flex-shrink: 0;
}

.yerli-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  display: block;
}

.team-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.member-card {
  background-color: #e3f2ec;
  display: flex;
  border-radius: 45px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: 30px;
  gap: 30px;
  align-items: center; /* metni dikey ortalar */
  flex-wrap: wrap;
}

.member-card.reverse2 {
  flex-direction: row-reverse;
}

.member-photo {
  width: 350px;
  height: auto;
  flex-shrink: 0;
}

.member-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}
.surdurulebilirlik {
  margin-bottom: 120px;
}
.member-info {
  flex: 1;
  min-width: 0;
}
.surdurulebilirlik .member-info h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}
.member-info h3 {
  margin: 0;
  font-size: 20px;
  color: #007f4e;
}

.member-info strong {
  display: block;
  margin: 5px 0 15px;
  font-weight: 600;
}

.member-info p {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
  color: #333;
}

.news {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 sütun sabit */
    gap: 30px;
  max-width: 1200px;
  width: 100%;
  margin-bottom: 120px;
}

.news-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
  padding: 20px;
  box-shadow: 0px 8px 20px rgba(0, 114, 59, 0.25);
    text-decoration: none;
}

.news-card:hover {
    background: #E1EADF;
}

.news-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.news-content {
  padding: 20px 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.news-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

.containerinfo {
  width: 1200px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 8px 20px rgba(0, 114, 59, 0.25);
  display: flex;
  padding: 40px;
  gap: 40px;
  margin-bottom: 50px;
    margin-top: -60px;
}

.info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: center;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-item img {
  width: 64px;
  margin-right: 10px;
}

.info-item .text {
  font-size: 16px;
  color: #222;
  line-height: 1.5;
}

.info-item .text strong {
  display: block;
  margin-bottom: 4px;
}

.map {
  flex: 1;
}

.map iframe {
  width: 100%;
  height: 100%;
  min-width: 640px;
  min-height: 640px;
  border: none;
  border-radius: 12px;
}

.selectmenu {
  border-bottom: 3px solid #00723b;
}

.pagebottomimg {
  width: 100%;
  height: 520px;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.pbiyerli {
  background-image: url("img/pagebg-100yerli.jpg");
}
.pbikaynaklarimiz {
  background-image: url("img/pagebg-kaynaklarimiz.jpg");
}
.pbiteam {
  background-image: url("img/pagebg-team.jpg");
}
.pbicontact {
  background-image: url("img/pagebg-contact.jpg");
}

.productDetail {
  background-image: url("img/waveeffect.png");
  background-size: 2800px auto;
  background-position: center 102%;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  min-height: 600px;
  margin: -30px 0 -100px;
  padding: 30px 0;
}

.productContent {
  max-width: 1200px;
  margin: 0 auto;
    position: relative;
}

.productContent {
  display: flex;
  gap: 40px;
  align-items: flex-start;
    padding: 100px 0;
}
.productContent h3 {
    font-size: 24px;
  color: #00723b;
  margin-bottom: 20px;
}
.productContent span {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.productContent p {
    width: 640px;
    font-size: 16px;
  margin: 0;
    text-align: justify;
}
.productDetailImg img {
  height: 550px;
  width: auto;
    z-index: 11;
    position: relative;
}

.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.productdetail-card {
  flex: 1;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  border: 2px solid #fff;
}
.productdetail-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.productdetail-card.active {
  border: 2px solid #00723b;
}
.productdetail-card .productDetailMiniImg img {
    width: 100%;
}
.productdetail-card span {
  color: #00723b;
  font-weight: bold;
}

.svg-turkiye-haritasi {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}
.svg-turkiye-haritasi svg {
  width: 100%;
  height: auto;
}
.il-isimleri {
  position: absolute;
  z-index: 2;
  transition: none !important;
}
.il-isimleri div {
  display: inline-block;
  background: #00723B;
  color: #fff;
  padding: 8px 16px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;

  transition: none !important;
}
#svg-turkiye-haritasi path {
  cursor: pointer;
  fill: #C2DACF;
}
#svg-turkiye-haritasi path:hover {
  fill: #00723B;
}
#svg-turkiye-haritasi .highlight path {
  fill: #00723B !important;
}


.catalog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 600px) {
  .catalog-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}
.catalog-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.catalog-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 80% auto;
}
.catalog-content {
  padding: 40px;
  text-align: center;
}
.catalog-title {
  font-weight: 500;
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #333;
}
.catalog-link {
  text-decoration: none;
  color: #fff;
  background-color: #00723B;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background-color 0.3s;
}
.catalog-link:hover {
  background-color: #00723B;
}

  .featuresimg {
    display: inline-block;
  }

  figure {
    margin: 0;
    text-align: center;
    float: left;
    max-width: 180px;
  }

  figure img {
    width: 180px;  
    height: auto;
    display: block;
    margin-inline: auto;
  }

  figcaption {
    font-weight: 600;
    color: #00723B; 
    word-break: keep-all;
  }



@media (max-width: 900px) {
    .container,
    .info-card img,
    .products-section,
    .sectionTitle,
    .product-card img,
    .water-tab-menu,
    .source-map,
    .sponsor-text,
    .sponsor-logo.tvf img,
    .forestimg,
    .forest-card,
    .tr-modal,
    .feed-wrapper,
    .map-container,
    .k-footer-inner,
    .yapitasi-container,
    .source-map,
    .sponsor-team,
    .sponsor-card,
    .forest-section,
    .slider,
    .water-slider-wrapper,
    .yapitasi-text-box,
    .pageContent,
    .pageHeaderTitle h1,
    .pageHeaderTabs,
    .yapitasi-blurBox,
    .yerli,
    .team-container,
    .news,
    .productContent p,
    .productContent,
    .site-header,
    .k-instagram-grid,
    .search-bar,
    .containerinfo {
        width: 100%;
        max-width: 100%;
    }
    .logo {
        width: 120px;
        height: 40px;
        margin-left: 20px;
        z-index: 99;
    }
    .title {
      width: 300px;
    }
  .water-tab-menu {
    flex-wrap: nowrap; 
    overflow-x: auto; 
    -webkit-overflow-scrolling: touch;
    justify-content: left;
    padding: 0 20px 40px 20px;
  }
.water-tab-menu .water-label-0, .water-tab-menu .water-label-1, .water-tab-menu .water-label-2, .water-tab-menu .water-label-3, .water-tab-menu .water-label-4, .water-tab-menu .water-label-5, .water-tab-menu .water-label-6, .water-tab-menu .water-label-7, .water-tab-menu .water-label-8, .water-tab-menu .water-label-9, .water-tab-menu .water-label-10, .water-tab-menu .water-label-11 {
  background-size: auto 80px;
}
  .water-tab-menu .water-tab {
    min-width: 78px; 
  }
  .tr-modal__body li p,
  .tr-modal__body li b,
  .tr-modal__body li i {
    display: block;
    width: 100%;
  }
    .h {
        height: 70px;
    }
    .site-header {
        padding: 15px 0;
    } 
    
    .main-nav {
        position: fixed;
        right: 0;
        top: 0;
        width: 100%;
        height: 70px;
    }
    .mm {
        background: url("img/mobile-menu.png") no-repeat center center;
        background-size: 30px 30px;
        content: ""; 
        font-size: 28px;
        position: absolute;
        top: 0;
        right: 0;
        width: 70px;
        height: 70px;
        cursor: pointer;
        display: none; 
        z-index: 1001;
        text-align: center;
        line-height: 70px;
        display: block;
    }
    body.mobilemenu .mm {
        background: url("img/mobile-menucancel.png") no-repeat center center;
        background-size: 30px 30px;
    }
    .dots {
      top:118px;
    }
    .dot {
      width: 8px;
      height: 8px;
      margin: 0 2px;
    }
    .info-section {
      width: 100%;
      bottom: inherit;
      top: 150px;
      left: 0;
      margin-left: 0;
      gap: 15px;
      padding: 0 15px;
          flex-wrap: nowrap;
    }
    .info-card .subtext {
      position: absolute;
        bottom: -32px;
        left: -50%;
        width: 200px;
        font-size: 10px;
    }

    .info-card {
      width: auto;
      flex:1;
      padding: 10px;
      border-radius: 10px;
    }
    .info-card h3 {
      font-size: 12px;
      font-weight: 600;
    }
    .slides {
      margin: 0;
    }
    .slider-btn {
      display: none;
    }
    .slider {
      padding-bottom: 30px;
    }
    .slide {
      background-size: 106% auto;
      height: 300px;
      background-position: top center;
      position: relative;
      background-repeat: no-repeat;
      padding: 0;
    }
    .waterTitle1, .waterTitle2, .waterTitle3, .waterTitle4 {
      font-size: 14px;
      bottom: 12px;
      width: 100px;
    }
    .waterTitle1 {left:8px; }
    .waterTitle2 {left:75px;}
    .waterTitle3 {left:656px; }
    .waterTitle4 {left:828px; }

    .sectionTitle {
      font-size: 28px;
      margin-bottom: 20px;
    }
    .product-card p {
      font-size: 16px;
    }
    .products-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      padding: 0;
      gap: 20px;
    }
    .product-card {
      width: auto;
      border-radius: 15px;
    }
    .slide h1 {
      font-size: 22px;
      width: 50%;
    }
    .slide h1 span {
      font-size: 30px;
    }
    .slide-txt {
      padding: 20px;
    }
    .main-nav ul {
        display: none;
    }
    body.mobilemenu .main-nav ul {
        display: inline-block;
    }
    .main-nav::before {
        display: block;
    }
    .lang {
        background-color: #f2f2f2;
        display: inline-block;
        width: 100%;
    }
    .lang span {
        display: none;
    }
    .lang .langoptions,
    .lang:hover .langoptions {
        background-color: #f2f2f2 !important;
        display: inline-block !important;
        width: 100%;
        position: relative !important;
        right: 0 !important;
        top: 0 !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
    }
    .lang .langoptions a {
        background: url("img/lang.png") no-repeat 20px center;
        background-size: 20px 20px;
        padding-left: 50px;
        float: left;
        width: 110px;
        text-align: left;
    }
    .main-nav ul {
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: #fff;
        padding: 0;
        height: 600px;
        overflow: scroll;
        z-index: 1000;
        box-shadow: 0 100px 100px 0 rgba(0,0,0,0.5);
    }
    .main-nav li a {
        background: url("img/slider-btn-next.png") no-repeat 92% center #e3f2ec;
        background-size: auto 16px;
        font-weight: 600;
        width: 100%;
        font-size: 16px;
        display: inline-block;
        padding: 15px 20px;
    }
    .main-nav li .subMenu a {
        background: none;
        padding: 15px 40px;
        font-weight: 500;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        font-size: 14px;
    }
    .main-nav .subMenu,
    .main-nav li:hover .subMenu {
        display: block;
        position: initial;
        padding: 0;
        border-radius: 0;
    }
    .water-slider {
      padding: 0 40px 30px !important;
    }
    .water-item.active .water-button {
      height: 50px;
      line-height: 50px;
      width: 180px;
      font-size: 16px;
    }

.k-instagram-grid {
  padding-left: 20px;
  padding-right: 20px;
  column-count: 2; /* sütun sayısı */
  column-gap: 15px;
}
.k-instagram-grid a,
.k-instagram-grid a img {
  border-radius: 12px;
}
.k-instagram-grid a {
  margin-bottom: 15px;
}
.k-social-grid {
  gap: 5px;
}
.k-social-grid a,
.k-social-grid img {
  width: 44px;
  height: 44px;
}
.k-footer-logo {
  margin-bottom: 30px;
}
.k-footer-logo p,
.k-footer-links a {
  font-size: 14px;
}
.k-footer-bottom {
  font-size: 11px;
}
.search-bar {
  padding: 0 20px;
}
.select-box {
  min-width: auto;
  font-size: 14px;
  width: 47%;
}
.search-button {
  width: 100%;
}
.k-footer {
  padding: 20px;
}
.footerlogo {
  width: 170px;
}
.forest-icon {
  display: none;
}
.forest-card {
  padding: 20px;
}
.forest-heading,
.sponsor-heading  {
  font-size: 26px;
}
.forest-text p,
.sponsor-text p {
  font-size: 16px;
}
.forest-button {
  font-size: 14px;
}
.forest-section {
  padding: 100px 20px 20px;
}
.forest-counter-numbers .digit {
  height: 150px;
  line-height: 150px;
  font-size: 45px;
}
.sponsor-card {
  padding: 20px;
}
.sponsor-text {
  height: auto;
}
.sponsor-logo {
  width: 46%;
  height: 90px;
  box-shadow: none;
  background: none;
}
.sponsor-team {
  margin-top: -30px !important;
}
.sponsor-logos {
  width: 100%;
}
.sponsor-logo img {
  height: 90px;
}

.water-item {
  height: 390px;
}
.water-item img {
  margin-bottom: 0;
}
.water-slider-wrapper {
  height: 620px;
}
.slider-pet-section {
  margin-bottom: 60px;
}
.main-nav li:hover a {
  border: none;
}
.pageHeaderTitle {
  height: 60px;
  display: inline-block;
}
.pageHeaderTitle h1 {
  font-size: 24px;
  line-height: 60px;
  font-weight: 600;
  padding-left: 20px;
}
.products-section {
  padding: 20px;
}
.products-section h4 {
  font-size: 24px;
}
.pageHeaderTitle.green,
.productContent h3 {
  margin-bottom: 0 !important;
}
.pageHeaderTabs {
  gap: 10px;
  padding: 20px;
    flex-wrap: nowrap; 
    overflow-x: auto; 
    -webkit-overflow-scrolling: touch;
    justify-content: left;
}
.pageHeaderTabs li a {
  font-size: 13px;
  white-space: nowrap; 
  padding: 8px 12px;
}
.productContent {
  display: inline-block;
  width: 100%;
}
.productContent p {
  font-size: 13px;
}
figure img {
  width: 100%;
}
figure {
  width: 33%;
}
figcaption {
  font-weight: 600;
  font-size: 13px;
  line-height: 14px;
}
#product-title,
#product-desc {
  padding-left: 20px;
  padding-right: 20px;
}

.productDetail {
  background-size: 200% auto;
  background-position: center 100%;
  margin-bottom: -20px;
}
    .productDetailImg img {
      width: 100%;
      height: auto;
    }
  
    .productContent {
      padding: 20px 0 40px 0;
    }

.products {
  gap: 20px;
      grid-template-columns: repeat(2, 1fr);
}

.productdetail-card span {
  font-size: 14px;
  font-weight: 600;
}

.madensuyubg {
  background-position: center center;
    background-size: 180% auto;
    width: 100%;
    height: 410px;
    right: 0px;
    bottom: 70px;
    top: inherit;
}
.containerinfo {
  display: inline-block;
  padding: 20px;
  box-shadow: none;
  margin-top:-20px;
}
.info {
  gap: 34px;
}
.info-item {
  gap: 0;
}
.info-item img {
  width: 34px;
}
.info-item .text {
  font-size: 13px;
}
.map iframe {
  min-width: 100%;
  min-height: 400px;
  margin-top: 20px;
}
.pagebottomimg {
  height: 200px;
}
.quality-section {
  padding: 20px 20px 120px 20px !important;
}
.quality-section p {
  font-size: 14px;
}
.selectmenu {
  border: none;
}

.pageContent p {
  font-size: 14px;
}
.pageContent p:first-child {
  padding: 0 20px;
}
.team-container {
  padding: 20px
}
.member-card {
  border-radius: 20px;
  padding: 20px;
  gap: 20px;
}
.forest-section img.forestimg {
  display: inherit;
}
.forest-counter {
  margin-top: 20px;
}
.forest-section img {
  display: none;
}
.member-photo {
  width: 100%;
  height: auto;
  border-radius: 15px;
  overflow: hidden;
}
.member-photo img {
  width: 50%;
  border-radius: 10px;
  display: inline;
}
.surdurulebilirlik .member-info h3,
.yerli-text h2 {
  font-size: 22px;
  margin-bottom: 20px;
}
.yerli-section {
  display: inline-block;
  padding: 0 20px;
}
.yerli-image {
  width: 100%;
  margin-top: 30px;
}
.yapitasi-tabs {
    flex-wrap: nowrap; 
    overflow-x: auto; 
    -webkit-overflow-scrolling: touch;
    justify-content: left;
    gap: 10px;
    padding: 0 20px;
    height: 80px;
}
.yapitasi-tab-content {
  width: 100%;
  padding-top: 0;
}
.yapitasi-year {
  font-size: 30px;
  margin-bottom: 0;
  margin-top: 40px;
  display: inline-block;
}
.yapitasi-blurBox {
  border-radius: 20px;
}
.yapitasi-blurWrapper {
  margin: 20px;
}
.yapitasi-blurBox p {
  font-size: 18px ;
}
.yapitasi-container {
  background-repeat: no-repeat;
  background-position: right bottom;
        background-size: 190% auto;
        height: 460px;
}
.yapitasi-tab-button {
  font-size: 14px;
  padding: 10px 16px;
}
.yapitasi-blurBox {
  box-shadow: none;
  border: none;
}
#yapitasi-2018 .yapitasi-blurBox {
}
.yapitasi-blurBox p,
.yapitasi-blurBox .txtGreen,
.yapitasi-blurBox .txtWhite {
  color: #00723B !important;
  text-shadow: none;
}
.yapitasi-year.txtWhite {
  color: #00723B !important;
}
.yapitasi-blurBox .txtRed {
  color: #d90000 !important;
}


.news {
  grid-template-columns: repeat(1, 1fr);
  padding: 20px;
}
.newsdetail {
  padding: 20px;
}
.newscontentimg {
  width: 100%;
  height: auto;
}


































}






















