* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  outline: none !important;
}

p,
ul,
ol,
dl,
pre,
ds,
fieldset,
figure {
  margin: 0px !important;
}

ul,
ol {
  padding-left: 0px !important;
}


body {
  color: rgb(0, 0, 0);
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

p {
  margin: 0px !important;
  padding: 0px !important;
}

a:hover {
  text-decoration: none !important;
}

ul,
li {
  list-style: none none;
  margin: 0px;
  padding: 0px;
}

header {
  width: 100%;
  height: auto;
  top: 0px;
  transition: 0.6s;
  z-index: 99;
}

header.header-position {
  background: transparent;
}

.top-header-section {
  width: 100%;
  height: 100px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.23);
}

.header-top-section {
  width: 86%;
  margin: 0px auto;
}

.head-section {
  width: 100%;
  border-bottom: 1px solid #0000002b;
  display: none !important;
}

.head-section-inner {
  width: 86%;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
}

.header-top {
  width: 100%;
  grid-template-columns: 25% 50% 25%;
  margin: 0px auto;
  display: grid !important;
}

.logo img {}

.menuSection.uk-flex.uk-flex-middle {
  justify-content: center;
}

.uk-sticky-fixed .top-header-section {
  border-color: rgb(239, 239, 239);
  height: 80px;
}

.uk-sticky-fixed span.icons-price {
  background: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}

.uk-sticky-fixed .svg-size .uk-icon>* {
  margin-top: -6px;
}

.uk-sticky-fixed .menu-button a {
  color: rgb(0, 0, 0) !important;
}

.uk-sticky-fixed .head-section {
  display: none;
}

.uk-sticky-fixed .menu-button {
  height: 90px;
  border-color: rgb(239, 239, 239);
}

.uk-sticky-fixed header {}

.uk-sticky-fixed .hotels-button a {
  color: rgb(42, 30, 90) !important;
}

.uk-sticky-fixed .search-button a {
  background: rgb(247, 246, 238);
}

.uk-sticky-fixed .top-menu ul li a {
  color: rgb(0, 0, 0);
}

.uk-sticky-fixed button.open-button {
  color: rgb(0, 0, 0);
}

.banner-slider {
  width: 100%;
  position: relative;
}

.banner-slider-item {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner-slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.banner-content {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.banner-text-container {
  max-width: 1440px;
  width: 90%;
  margin: 0px auto;
  color: rgb(255, 255, 255);
  padding: 0px 20px;
  display: flex;
  flex-direction: column;
  /* align-items: flex-start; */
  /* justify-content: center; */
  /* text-align: center; */
  padding-left: 50px;
}

.banner-title {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.2;
  color: rgb(255, 255, 255);
  width: 50%;
  /* margin: 0px auto; */
  margin-top: 0px;
}

.banner-text-container small {
  font-size: 26px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 10px;
}

.banner-description {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  width: 50%;
  margin-bottom: 20px !important;
}

@media (max-width: 768px) {
  .banner-text-container {
    width: 95%;
    padding: 0px 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .banner-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .banner-description {
    font-size: 16px;
    margin-bottom: 25px;
  }
}

@media (max-width: 480px) {
  .banner-title {
    font-size: 20px;
  }

  .banner-description {
    font-size: 14px;
  }
}

.top-menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.top-menu ul li a {
  color: rgb(25, 17, 58);
  font-size: 15px;
  font-weight: 500;
  padding: 0px 6px;
  position: relative;
  transition: color 0.3s;
  text-decoration: none;
  overflow: hidden;
}

.top-menu ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0px;
  height: 2px;
  width: 100%;
  background-color: rgb(25, 17, 58);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s;
}

.top-menu ul li a:hover {
  color: rgb(25, 17, 58);
}

.top-menu ul li a:hover::after {
  transform: scaleX(1);
}

.top-menu ul li.has-submenu {
  position: relative;
}

.top-menu ul li.has-submenu .submenu {
  position: absolute;
  top: 100%;
  left: 0px;
  background: rgb(255, 255, 255);
  min-width: 180px;
  border-radius: 0px;
  padding: 10px 0px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 15px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  margin-top: 5px !important;
}

.top-menu ul li.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.top-menu ul li.has-submenu .submenu li {
  display: block;
  margin: 0px;
  padding: 0px;
  width: 100%;
  border-bottom: 1px solid rgb(237, 237, 237);
}

.top-menu ul li.has-submenu .submenu li:last-child {
  border-bottom: 0px;
  margin-top: -10px;
}

.top-menu ul li.has-submenu .submenu li a {
  display: block;
  padding: 10px 20px;
  color: rgb(0, 0, 0);
  font-size: 13px;
  transition: 0.3s;
  line-height: 1;
  font-weight: 500;
}

.top-menu ul li.has-submenu .submenu li a:hover {
  padding-left: 30px;
  text-decoration: none !important;
}

button.uk-button.uk-button-default.uk-margin-small-right {}

.uk-light .uk-button-default,
.uk-section-primary:not(.uk-preserve-color) .uk-button-default,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-default,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-default,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-default,
.uk-card-primary.uk-card-body .uk-button-default,
.uk-card-primary> :not([class*="uk-card-media"]) .uk-button-default,
.uk-card-secondary.uk-card-body .uk-button-default,
.uk-card-secondary> :not([class*="uk-card-media"]) .uk-button-default,
.uk-overlay-primary .uk-button-default,
.uk-offcanvas-bar .uk-button-default {
  border: 0px !important;
}

.mobile-header {
  display: none;
}

.mobile-header .uk-button {
  margin-top: 6px;
  padding: 0px !important;
}

.mobile-header .logo img {
  width: 180px;
}

button.uk-offcanvas-close.uk-icon.uk-close {
  color: rgb(29, 35, 67);
}

.uk-offcanvas-bar {
  overflow-y: auto;
  background: rgb(255, 255, 255) !important;
}

.canvas-section {
  width: 96%;
  margin: 50px auto 0px;
}

.canvas-logo {
  width: 100%;
  text-align: center;
}

.canvas-logo img {
  margin: 0px auto;
}

.canvas-menu ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.canvas-menu ul li a {
  display: block;
  color: rgb(42, 30, 90);
  transition: 0.5s;
}

.canvas-menu ul li a:hover {
  color: rgb(42, 30, 90);
  padding-left: 10px;
}

.uk-button-default {
  border: 0px !important;
}

.buttonSection {
  width: 100%;
  position: fixed;
  height: 52px;
  bottom: 1px;
  left: 0px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0px 10px;
  z-index: 999999;
}

.contact-button a {
  width: auto;
  height: 46px;
  padding: 0px 32px;
  background: #159B96;
  color: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  font-weight: 500;
  font-size: 13px;
  border: 1.5px solid #159B96;
  border-radius: 50px !important;
}

.contact-button a:hover {
  background: none;
  color: #159B96 !important;
}

.banner-slider .slick-dots {
  bottom: 90px;
}

.banner-slider li.slick-active {
  background: rgb(255, 255, 255) !important;
}

.banner-slider .slick-dots li {
  border: 1px solid rgb(255, 255, 255);
}

.p-2 {
  padding: 0px 10px;
}

.phone a {
  display: flex;
  color: #000 !important;
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #00000039;
  font-weight: 500;
  font-size: 12px;
}

.phone a:hover {
  color: #000;
  text-decoration: underline !important;
}

.head-adress {
  font-size: 12px;
}

.top-mail a {
  font-size: 14px;
  margin-right: 12px;
  font-weight: 600;
  transition: 0.5s;
  color: rgb(25, 17, 58) !important;
}

.top-mail a:hover {
  color: rgb(25, 17, 58) !important;
  text-decoration: underline !important;
}

.banner-logo {
  margin: 0px auto;
}

.banner-logo img {
  width: 80px;
}

.banner-button {
  /* margin: 0px auto; */
  display: flex;
}

.banner-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #159B96;
  height: 46px;
  padding: 0px 30px;
  font-size: 12px;
  color: #ffffff;
  font-weight: 500;
  transition: 0.3s;
  border-radius: 50px;
}

.banner-button a:hover {
  color: #159B96;
  background: #ffffff;
}

.about-wrapper {
  width: 100%;
  position: relative;
  padding-bottom: 110px;
}

.about-section {
  display: grid;
  grid-template-columns: 47% 47%;
  align-items: center;
  gap: 6%;
}

.about-section-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-section-title small {
  font-size: 40px;
  color: rgb(0 0 0);
  margin-top: 20px;
  font-weight: 700;
}

.about-section-title span {
  font-size: 50px;
  font-weight: 900;
  line-height: 52px;
}

.about-section-left p {
  font-weight: 300;
  line-height: 26px;
  color: #000 !important;
}

.read-more a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  border: 1px solid rgb(18, 12, 41);
  color: rgb(18, 12, 41);
  font-size: 12px;
  font-weight: 600;
  padding: 0px 26px;
  transition: 0.5s;
}

.read-more a:hover {
  background: rgb(18, 12, 41);
  color: rgb(255, 255, 255);
}

.call-now a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #159B96;
  height: 46px;
  color: rgb(255, 255, 255);
  font-size: 12px;
  font-weight: 600;
  padding: 0px 30px;
  transition: 0.5s;
  border: 1px solid #159B96;
  border-radius: 50px;
}

.call-now a:hover {
  background: rgb(255, 255, 255);
  color: #159B96;
}

.about-section-right {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.leaf-img {
  position: absolute;
  left: -100px;
  top: 20px;
}

.about-leaf {
  position: absolute;
  left: 0px;
  top: 60%;
}

.tab-menu {
  width: 90%;
  margin: 40px auto;
}

.tab-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
}

.tab-button {
  height: 40px;
  color: #a3a3ac;
  border: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  padding: 0px 19px;
  transition: 0.3s;
  background: transparent;
  border-bottom: 2px solid transparent;
}

.tab-button:hover {
  color: rgb(0 0 0);
  font-weight: 500 !important;
  border-bottom: 2px solid #000;
}

.tab-button.active {
  color: rgb(0 0 0);
  font-weight: 500 !important;
  border-bottom: 2px solid #000;
}

.tab-content {}

.tab-pane {
  display: none;
  animation: 0.3s ease 0s 1 normal none running fadeIn;
}

.tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

button.tab-button.directly {
  background: rgba(255, 255, 255, 0.84);
  color: rgb(8, 54, 121);
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 6px;
}

button.tab-button.directly.active {
  background: rgb(255, 255, 255) !important;
}

button.tab-button.directly img {
  width: 70px;
}

button.tab-button.without-directly {
  background: rgb(8, 54, 121);
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 6px;
}

button.tab-button.without-directly img {
  width: 70px;
}

.tab-content {
  width: 100%;
  border-radius: 10px;
  position: relative;
  z-index: 99;
}

button.tab-button.without-directly.active {
  background: rgba(8, 53, 121, 0.725);
}

.title {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.title small {
  font-size: 14px;
  font-weight: 200;
  width: 50%;
  margin: 0 auto;
}

.title span {
  font-size: 36px;
  font-weight: 600;
}

.product-section {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  width: 100%;
  margin: 0px auto;
}

.product {
  background: rgb(255, 255, 255);
  text-align: center;
  border: 1px solid rgb(244, 244, 247);
  transition: 0.5s;
  height: 360px;
  border-radius: 10px;
}

.product a {
  display: block;
  position: relative;
  padding: 10px;
}

.product a .new {
  font-size: 14px;
  padding: 6px 18px;
  font-weight: 600;
  color: #000;
  background: #f2f2f5;
  position: absolute;
  top: 0;
  right: 0;
}

.product:hover {
  border-color: #159B96;
}

.product a span {
  font-size: 14px;
  color: rgb(0 0 0);
  font-weight: 600;
}

.product a img {
  /* width: 200px; */
  /* height: 200px; */
  object-fit: cover;
}

.tab-section {
  position: relative;
  padding: 80px;
  background: #F3FAFA;
  padding-bottom: 150px;
}

.counter-section {
  margin-top: -50px;
}

.img-right {
  position: absolute;
  right: 0px;
  bottom: 0px;
}

.tab-leaf-left {
  position: absolute;
  top: -148px;
  left: 0;
}

.tab-leaf-right {
  position: absolute;
  right: 0;
  top: -20px;
}

.service-areas-section {
  background: rgb(251, 251, 249);
  padding-top: 60px;
  padding-bottom: 80px;
}

.title p {
  font-size: 15px;
  font-weight: 100;
  width: 50%;
  margin: 0px auto;
}

.service-areas {
  background: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 130px;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 16px;
}

.features-wrapper {
  width: 100%;
  padding: 40px;
  background: rgb(241, 241, 236);
}

.features-section {
  display: grid;
  grid-template-columns: 46% 46%;
  gap: 8%;
}

.features-section-right span {
  font-size: 32px;
  font-family: "Playfair Display", serif;
  font-weight: 800;
}

.uk-accordion-title {
  display: block;
  line-height: 1.4;
  overflow: hidden;
  font-size: 16px !important;
  color: rgb(42, 30, 90) !important;
  padding: 16px !important;
  background: rgb(255, 255, 255) !important;
  font-weight: 600 !important;
}

.uk-accordion> :nth-child(n + 2) {
  margin-top: 6px !important;
}

.uk-accordion-content {
  display: flow-root;
  margin-top: 6px !important;
  background: rgba(255, 255, 255, 0.39) !important;
  padding: 20px !important;
}

.page-content {
  width: 60%;
  margin: 0px auto;
  text-align: center;
  color: #5C6672;
}

.page-content span {
  font-size: 26px;
}

footer {
  width: 100%;
  background: #053534;
  padding: 30px 0px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.165);
}

.footer-menu ul {
  display: flex;
  gap: 16px;
}

.footer-menu ul li a {
  display: block;
  font-size: 14px;
  color: rgb(255, 255, 255);
  transition: 0.3s;
}

.footer-menu ul li a:hover {
  text-decoration: underline !important;
}

.social-media ul {
  display: flex;
  gap: 10px;
}

.social-media ul li a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  color: rgb(255, 255, 255);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.social-media ul li a svg {
  width: 15px;
  color: rgb(255, 255, 255);
  fill: rgb(255, 255, 255);
}

.social-media ul li a:hover {
  opacity: 0.6;
}

.head-social-media ul {
  display: flex;
  gap: 4px;
}

.head-social-media ul li a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  color: rgb(255, 255, 255);
  background: #f7f7f7;
}

.head-social-media ul li a svg {
  width: 15px;
  color: rgb(0, 0, 0);
  fill: rgb(0, 0, 0);
}

.head-social-media ul li a:hover svg {
  width: 15px;
  color: rgb(255, 255, 255);
  fill: rgb(255, 255, 255);
}

.head-social-media ul li a:hover {
  background: #000;
}

.footer-bottom {
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.info {
  color: rgb(255, 255, 255);
  font-weight: 600;
}

.uk-sticky-fixed .svg-size .uk-icon>* {
  margin-top: -6px;
}

.uk-icon {
  fill: rgb(0, 0, 0) !important;
}

span.uk-icon svg {
  font-size: 28px;
  width: 28px;
}

.uk-nav li>a {
  display: flex;
  align-items: center;
  column-gap: 0.25em;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  color: rgb(4, 26, 44) !important;
}

button.uk-button.uk-button-default.uk-margin-small-right.svg-size {
  margin-right: 3px !important;
}

.uk-nav-primary>li {
  border-bottom: 1px solid rgb(232, 232, 232);
  padding: 4px;
}

.uk-nav-primary>li:last-child {
  border-bottom: none;
}

.product a {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.features {}

.features ul {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.features li {
  background: #fbfbf9;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 70px;
}

.features li img {
  width: 20px;
}

.bg-gray {
  width: 100%;
  background: #fbfbf9;
  padding-top: 1px;
  padding-bottom: 90px;
}

.page-top {
  position: relative;
}

.page-text {
  max-width: 1440px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
}

.page-text span {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 2px;
}

.page-text ul {
  color: #fff;
  display: flex;
  gap: 10px;
  font-size: 13px;
}

.page-text ul a {
  color: #fff;
  display: block;
  font-size: 13px;
}

.page-text ul a:hover {
  text-decoration: underline !important;
}

.service-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.services {
  position: relative;
}

.services-img {
  overflow: hidden;
  /* GÃƒÆ’Ã‚Â¶rselin taÃƒâ€¦Ã…Â¸masÃƒâ€žÃ‚Â±nÃƒâ€žÃ‚Â± engeller */
}

.services-img img {
  transition: transform 0.3s ease;
  /* YumuÃƒâ€¦Ã…Â¸ak geÃƒÆ’Ã‚Â§iÃƒâ€¦Ã…Â¸ */
}

.services:hover .services-img img {
  transform: scale(1.1);
  /* GÃƒÆ’Ã‚Â¶rseli %10 bÃƒÆ’Ã‚Â¼yÃƒÆ’Ã‚Â¼tÃƒÆ’Ã‚Â¼r */
}

.services {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.services span {
  font-size: 20px;
  font-family: "Playfair Display", serif;
  font-weight: 400;
}

.contact-wrapper {
  width: 100%;
  display: flex;
  gap: 5%;
}

.contact-section h1 {
  font-size: 28px;
  font-weight: bold;
}

.contact-section p.description {
  font-style: italic;
  font-size: 14px;
  color: #555;
  padding: 16px !important;
  background: #fbfbf9;
  margin-bottom: 30px !important;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-top: 20px;
  flex-direction: column;
}

.contact-item .icon {
  font-size: 18px;
  color: #7ab93c;
  margin-right: 10px;
  margin-top: 3px;
}

.contact-item .text {
  font-size: 15px;
  width: 50%;
  color: #000;
}

.contact-form-container {
  background-color: #fbfbf9;
  padding: 40px;
}

.contact-form-container span {
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.4;
  margin-bottom: 20px;
  display: block;
  color: #000;
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-form-group {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
}

.contact-form-input,
.contact-form-textarea {
  padding: 15px;
  font-size: 14px;
  border: 0;
  outline: none;
  transition: border-color 0.3s;
  background-color: #fff;
}

.contact-form-textarea {
  resize: vertical;
  min-height: 150px;
  width: 100%;
}

.contact-form-btn {
  background-color: #000000;
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 10px;
  align-self: flex-end;
}

.contact-form-group-full {
  flex: 1 1 100%;
}

.company-name {
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.product-img {
  width: 100%;
  height: 255px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img img {
  width: 180px;
}

.product-bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
  flex-direction: column;
}

.product-bottom span {
  font-size: 16px;
}

.product a .product-bottom small {
  color: #0A2803;
  font-size: 12px;
  text-decoration: underline;
  margin-top: 6px;
  font-weight: 500;
}

.category-section {
  position: relative;
  padding: 50px 0;
}

.category-section::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 300px;
  background: #eceef2;
  z-index: -1;
}

.category a {
  display: block;
  position: relative;
}

.category a img {
  width: 100%;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.283);
  z-index: 99;
  width: 100%;
  height: 100%;
}

.overlay-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.overlay-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

.referance-wp {
  background: #f7f7f9;
  padding-top: 5px;
  padding-bottom: 90px;
}

.gallery-container .image-box {
  width: 100%;
  margin-bottom: 20px;
  break-inside: avoid;
  height: auto !important;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* Her zaman 4 sÃƒÆ’Ã‚Â¼tun */
  gap: 16px;
}

h3.uk-modal-title {
  font-weight: 600;
  color: #fff;
}

.blackBtn {
  background: #fff !important;
  font-weight: 500 !important;
  color: #000 !important;
}

.sorgulaBtn {
  background: #000 !important;
  font-weight: 500 !important;
  width: 155px;
  line-height: 25px !important;
  text-align: left !important;
  padding: 5px 16px !important;
}

button#sorgulamaBtn {}

.uk-modal-dialog.uk-modal-body.uk-border-rounded {
  border-radius: 0px;
  background: #000000;
}

label.textLabel {
  color: #fff;
}

.alert {
  padding: 15px 20px;
  margin: 10px 0;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* BaÃƒâ€¦Ã…Â¸arÃƒâ€žÃ‚Â±lÃƒâ€žÃ‚Â± mesaj */
.alert-success {
  background-color: #d4edda;
  color: #155724;
  border-color: #c3e6cb;
}

/* Hata / UyarÃƒâ€žÃ‚Â± mesajÃƒâ€žÃ‚Â± */
.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border-color: #f5c6cb;
}

/* Opsiyonel: animasyon ekleyelim */
.alert {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

.detail-section {
  display: grid;
  grid-template-columns: 46% 1fr;
  gap: 4%;
}

.detail-hero .uk-slideshow-items {
  height: 420px;
  position: relative;
}

.detail-hero .uk-slideshow-items>li {
  position: absolute;
  inset: 0;
  text-align: center;
}

.detail-hero .uk-slideshow-items img[uk-cover] {
  /* width: 100%; */
  height: 100%;
  /* object-fit: cover; */
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .detail-hero .uk-slideshow-items {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .detail-hero .uk-slideshow-items {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .detail-hero .uk-slideshow-items {
    height: 220px;
  }
}

.uk-thumbnav>*>a img {
  width: 100%;
  border-radius: 0px !important;
}

.product-gallery .uk-thumbnav.uk-grid-small>*:first-child {
  padding-left: 0 !important;
}

.product-detail {
  width: 100%;
  background: #F7F7F9;
  padding: 30px;
}

.product-detail span {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px !important;
  display: block;
}

.product-detail p {
  font-size: 14px;
  font-weight: 300;
}

.detail-list ul {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 6px;
}

.detail-list ul li {
  width: 70%;
  border-bottom: 1px solid #ededed;
  display: grid;
  grid-template-columns: 50% 50%;
  padding: 6px 0;
}

.detail-list ul li:last-child {
  border-bottom: 0px;
}


.detail-list ul li span {
  font-size: 14px;
  font-weight: 500;
}

.detail-list ul li span+span {
  font-weight: 300;
}

.uk-tab>.uk-active>a {
  color: #333;
  border-color: #000000 !important;
}

.uk-switcher li {
  margin-left: 22px;
}

.uk-thumbnav img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 6px
}

.uk-thumbnav>*>a {
  display: block;
  padding: 0;
  border: 1px solid transparent
}

.uk-thumbnav>.uk-active a {
  border-color: #1e87f0
}

.uk-thumbnav {
  flex-wrap: nowrap;
}


.uk-slider-items {
  display: flex !important;
  flex-wrap: nowrap !important;
}

.uk-slider-items>li {
  width: auto !important;
}


.product-gallery .uk-thumbnav.uk-grid-small>*:first-child {
  padding-left: 0 !important;
}

/* Genel kullanÃƒâ€žÃ‚Â±m (daha geniÃƒâ€¦Ã…Â¸ etki) */
.uk-thumbnav.uk-grid-small>*:first-child {
  padding-left: 0 !important;
}

.product-gallery .uk-thumbnav.uk-grid-small {
  margin-left: 0 !important;
}

.uk-slider-items>li:first-child {
  padding-left: 0px !important;
}

.uk-tab>*>a {
  display: flex;
  align-items: center;
  column-gap: 0.25em;
  justify-content: center;
  padding: 5px 10px;
  color: #999;
  border-bottom: 1px solid transparent;
  font-size: 0.875rem;
  text-transform: uppercase;
  transition: color 0.1s ease-in-out;
  font-size: 16px;
  font-weight: 600;
}

.language-dropdown {
  position: relative;
  display: inline-block;
  margin-right: 10px;
}

.language-btn {
  background: #E8D74D;
  border: none;
  cursor: pointer;
  border-radius: 100%;
  color: #000;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.language-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 46px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  list-style: none;
  padding: 0;
  margin: 4px 0 0 0;
  z-index: 1000;
  margin-top: 6px !important;
}

.language-menu li {
  padding: 8px 12px;
  cursor: pointer;
  color: #000;
}

.language-menu li:hover {
  background: #eee;
}

.slider-section {
  position: relative;
}

.wave {
  position: absolute;
  left: 0;
  bottom: -7px;
}

.wave img {
  width: 100%;
  object-fit: cover;
}

.sub-title span {
  font-size: 18px;
  font-weight: 300;
}

.sub-title span+span {
  color: #159B96;
}

.section-right-content {
  width: 450px;
  background: #E8D74D;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: -30px;
  position: relative;
}

.section-right-content span {
  font-size: 22px;
  font-weight: 600;
  padding-bottom: 10px;
  display: block;
  border-bottom: 1px dashed #00000075;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.section-right-content p {
  font-weight: 300;
}

.about-section-img img {
  border-radius: 20px;

}

.leaf1 {
  position: absolute;
  left: 0;
  top: 50%;
}

.about-section-left {
  position: relative;
}

.leaf2 {
  position: absolute;
  right: -20px;
  top: 10%;
}

.wave-bottom {
  width: 100%;
  height: 62px;
  background: url("../images/wave-bottom.png") no-repeat center bottom;
  background-size: cover;
  position: absolute;
  left: 0;
  bottom: -62px;
}

.wave-top {
  width: 100%;
  height: 62px;
  background: url("../images/wave-top.png") no-repeat center bottom;
  background-size: cover;

  position: absolute;
  left: 0;
  top: -62px;
}

[uk-cover]:where(img, video),
[data-uk-cover]:where(img, video) {
  position: initial !important;
  width: initial !important;
}

.counter-slider {
  background: #FFFFFF;
  height: 250px;
  position: relative;
  padding: 30px;
  border-radius: 20px;
  border: 1px dashed #159B96;
  z-index: 99;
  display: flex;
  align-items: center;
}

.counter {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-right: 1px dashed #159B96;
}

.bnone {
  border: 0px !important;
}

.counter span {
  font-size: 50px;
  font-weight: 600;
}

.counter small {
  font-size: 50px;
  font-weight: 600;
}

.counter p {
  font-size: 14px;
  font-weight: 500;
}

.contact-wp {
  background: #F3FAFA;
}

.contact-section {
  width: 100%;
  margin: 0px auto;
  display: grid;
  gap: 4%;
  grid-template-columns: 48% 48%;

  padding: 40px;
}

.contact-left {
  position: relative;
}

button#sorgulamaBtn {
  display: none;
}

.adress {
  width: 60%;
}

.contact-form {
  width: 100%;
  padding: 30px;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}

.form-logo {
  position: absolute;
  right: 0;
  top: -25px;
}

.contact-section span {
  font-size: 26px;
  font-weight: 600;
  margin-top: 14px;
  display: block;
}

.contact-section p {
  font-size: 14px;
  font-weight: 300;
  display: block;
  margin: 10px 0px !important;
  color: #5C6672;
}

.input-area {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
  grid-template-columns: 1fr 1fr;
}

.input-area input[type="text"] {
  height: 48px;
  padding: 0px 10px;
  outline: none;
  color: rgb(4, 26, 44);
  font-size: 12px;
  border: 1.5px solid #ededed;
  border-radius: 6px;
  width: 100% !important;
  margin-top: 10px;
  background: #fff;
  border-radius: 4px;
  padding-left: 20px;
}

.input-area input[type="text"]::placeholder {
  color: #000;
}

.input-area input[type="tel"]::placeholder {
  color: #000;
}

.input-area input[type="email"]::placeholder {
  color: #000;
}

.contact-form select {
  width: 100%;
  height: 50px;
  padding: 0px 10px;
  outline: none;
  font-size: 12px;
  margin-bottom: 12px;
  font-family: Poppins, sans-serif !important;
  background: #fff;
  border: 0;
  border-radius: 50px;
  padding-left: 20px;
  color: #000;
  border: 1.5px solid #ededed;
  border-radius: 4px;
}

.contact-form textarea {
  width: 100%;
  height: 138px;
  padding: 10px;
  border: 0px;
  outline: none;
  margin-bottom: 20px;
  font-family: Poppins, sans-serif !important;
  color: rgb(4, 26, 44);
}

.contact-form textarea {
  width: 100%;
  height: 138px;
  padding: 20px;
  outline: none;
  font-size: 12px;
  margin-bottom: 20px;
  font-family: Poppins, sans-serif !important;
  border: 0;
  border-radius: 4px;
  color: rgb(4, 26, 44) !important;
  background: #fff;
  border: 1.5px solid #ededed;
}

.contact-right {
  background: #fff;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-radius: 10px;
  position: relative;
}

.input-area input[type="tel"] {
  width: 100%;
  height: 50px;
  padding: 0px 10px;
  outline: none;
  font-size: 12px;
  font-family: Poppins, sans-serif !important;
  border: 0;
  background: #fff;
  border-radius: 4px;
  padding-left: 20px;
  border: 1.5px solid #ededed;
}

.input-area input[type="email"] {
  width: 100%;
  height: 50px;
  padding: 0px 10px;
  outline: none;
  font-size: 12px;
  font-family: Poppins, sans-serif !important;
  border: 0;
  background: #fff;
  border-radius: 4px;
  padding-left: 20px;
  border: 1.5px solid #ededed;
}

.contact-form textarea::placeholder {
  color: #000 !important;
}

.contact-form button {
  background: #2EC7D1;
  display: block;
  font-size: 14px;
  color: rgb(255, 255, 255);
  border-radius: 50px;
  padding: 16px 30px;
  transition: 0.8s;
  border: 0;
  margin-top: 20px;
  font-weight: 600;
}

form.uk-margin-small-top {
  width: 100%;
  margin-top: -10px;
}

.mail {
  color: #000;
  font-weight: 500;
  font-size: 14px;
  display: block;
  transition: 0.3s;
  margin-top: 10px;
}

.phones {
  color: #000;
  font-weight: 600;
  font-size: 20px;
  display: block;
  transition: 0.3s;
  margin-top: 20px;
  text-decoration: underline;
}

.contact-wrapper {
  width: 100%;
  display: flex;
  gap: 5%;
  align-items: center;
}

.contact-sections span {
  font-size: 26px;
  font-weight: 600;
  margin-top: 14px;
  display: block;
}

.contact-sections p {
  font-size: 14px;
  font-weight: 300;
  display: block;
  margin: 10px 0px !important;
  color: #5C6672;
}
.lang-option {
  color: #000 !important;
}