* {
  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: #272727;
  font-size: 14px;
  font-family: "Outfit", 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;
}

.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 {
  height: 80px;
  background: #ffffff;
}

.uk-sticky-fixed .logo img {
  width: 150px;
}

.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: #272727;
}

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

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

.banner-slider img {}

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

.banner-slider-item img {
  width: 100%;
  height: 100vh;
  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: 86%;
  width: 86%;
  margin: 0px auto;
  color: rgb(255, 255, 255);
  padding: 0px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-left: 50px;
}

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

.banner-text-container small {
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
  background: #fb9933;
  padding: 6px 40px;
  border-radius: 50px;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-left: 20px;
  margin-left: -86px;
}

.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: 40px;
  }

  .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(255 255 255);
  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: #FF9933;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s;
}

.top-menu ul li a:hover {}

.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 26px;
  background: transparent;
  color: #fff !important;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  font-weight: 500;
  font-size: 14px;
  border: 2px solid #FF9933;
  background: #FF9933;
  border-radius: 6px;
  gap: 6px;
}

.contact-button a:hover {
  background: transparent;
  color: #fff !important;
}

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

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


.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: 70px;
}

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

.banner-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  height: 46px;
  padding: 0px 26px;
  font-size: 13px;
  color: #000000;
  font-weight: 500;
  transition: 0.3s;
  border: 2px solid #fff;
  border-radius: 4px;
}

.banner-button a:hover {
  color: #fff;
  background: transparent;
}

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

.pageBg {
  background: #FBF8F4;
  padding-bottom: 50px !important;
}


.about-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 281px;
  height: 401px;
  background: url(../images/about-after.png);
}

.about-wrapper::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  height: 460px;
  width: 280px;
  background: url(../images/about-before.png);
}

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

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

.about-section-title::after {
  position: absolute;
  left: 0;
  top: 9px;
  content: "";
  width: 50px;
  height: 7px;
  background: url(../images/wave.svg);
}

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

.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: #091836;
  height: 46px;
  color: rgb(255, 255, 255);
  font-size: 12px;
  font-weight: 600;
  padding: 0px 30px;
  transition: 0.5s;
  border: 1px solid #000000;
  border-radius: 4px;
  gap: 6px;
}

.call-now a:hover {
  background: #091836c7;
  border-color: #091836c7;
  color: #fff;
}

.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: flex-start;
  justify-content: space-between;
  gap: 10px;
}

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

.title span {
  color: #ffffff;
  font-weight: 800;
  font-size: 40px;
  position: relative;
  display: block;
}

.title span::after {
  content: "";
  position: absolute;
  left: 0;
  top: -5px;
  width: 50px;
  height: 7px;
  background: url(../images/wave-white.svg);
}

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

.counter-section {}

.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: #272727;
}

.page-content span {
  font-size: 46px;
  position: relative;
}

.page-content span::after {
  content: "";
  position: absolute;
  left: 0;
  top: -5px;
  width: 50px;
  height: 7px;
  background: url(../images/wave.svg);
  text-align: center;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.page-content p {
  padding: 30px !important;
  border: 2px dashed #FF9933;
  border-radius: 20px;
  font-weight: 300;
  line-height: 26px;
}

.page-content p:nth-of-type(1),
.page-content p:nth-of-type(3) {
  display: none;
}

footer {
  width: 100%;
  background: #00182C;
  padding: 30px 0px;
  border-top: 0px;
  border-top-right-radius: 20px;
  position: relative;
  border-top-left-radius: 20px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid rgb(27 34 44);
}

.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);
  background: #fff;
  border-radius: 20px;
}

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

.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-sticky-fixed .language-btn {
  background: #f3f3f3;
}

.uk-sticky-fixed .contact-button a:hover {
  background: #FF9933;
  color: #fff !important;
}

.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 {
  border-radius: 20px;
}

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

.product a img {
  transition: transform 0.3s ease;
  border-radius: 20px;
}

.product a:hover img {
  transform: scale(1.1);
}

.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: #1B222D;
  padding-top: 1px;
  padding-bottom: 190px;

}

.bg-gray2 {
  width: 100%;
  background: #151A22;
  margin-bottom: -1px;
  padding-bottom: 130px;
}


.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: 900;
  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 {
  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%;
}

.contact-form-container {
  background: url(../images/side-bar.png);
  padding: 40px;
  border-radius: 20px;
}

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

.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;
}

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

.product-img img {
  width: 100%;
  border-radius: 20px !important;
}

.product-bottom {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  border-radius: 20px;
  background: #fff;
  height: 106px;
  margin-top: -26px;
  text-align: left;
  padding: 10px 20px;
  z-index: 999;
}

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

.product a .product-bottom small {
  color: #00182C;
  font-size: 12px;
  text-decoration: underline;
  margin-top: 6px;
  font-weight: 400;
}

.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;
}



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;
}

.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;
}

.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: #ffffff;
  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: 55px;
  list-style: none;
  padding: 0;
  margin: 4px 0 0 0;
  z-index: 1000;
  margin-top: 6px !important;
  padding: 7px 0;
  text-align: center;
}

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

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

.slider-section {
  position: relative;
  width: 100%;
  /* margin: 0 auto; */
  margin-top: 0;
  height: 100vh;
}

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

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

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

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

.section-right-content {
  width: 175px;
  height: 175px;
  padding: 30px;
  border-radius: 0;
  margin-bottom: -30px;
  position: absolute;
  color: #fff;
  right: -50px;
  top: 50px;
  background: url(../images/ribbon.svg);
  background-position: center center;
  background-repeat: no-repeat;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-right-content span {
  font-size: 22px;
  font-weight: 600;
  display: block;
  color: #ffffff;
}

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

.about-section-img img {
  margin-top: -100px;
  border-radius: 10px;
}

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

.about-section-left {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 34px;
}

.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 {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  z-index: 99;
  display: flex;
  align-items: center;
}

.counter {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-right: 0;
  background: #12161d;
}

.bnone {
  border: 0px !important;
}

.counter span {
  font-size: 50px;
  font-weight: 800;
  color: #ff493c;
}

.counter small {
  font-size: 50px;
  font-weight: 800;
  color: #ff493c;
}

.counter p {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  height: 50px;
  text-align: center;
  width: 90%;
  margin: 0 auto !important;
}

.contact-wp {
  background: #F3FAFA;
}

.contact-section {
  width: 100%;
  margin: 0px auto;
  display: grid;
  gap: 4%;
  grid-template-columns: 42% 54%;
  padding: 40px;
}

.contact-left {
  position: relative;
}

button#sorgulamaBtn {
  display: none;
}

.adress {
  width: 60%;
  color: #fff;
}

.contact-form {
  width: 100%;
  /* padding: 30px; */
  position: relative;
  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;
  color: #fff;
}

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

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

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

.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: 0;
  color: rgb(4, 26, 44) !important;
  background: #fff;
  border: 0;
}

.contact-right {
  position: relative;
  background: #12161d;
  padding: 30px;
}

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

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

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

.contact-form button {
  background: #fb9933 !important;
  display: block;
  font-size: 14px;
  color: #fff;
  border-radius: 0;
  padding: 16px 30px;
  transition: 0.8s;
  border: 0;
  margin-top: 20px;
  font-weight: 600;
  border-radius: 4px;
}

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

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

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

a.phones:hover {
  color: #ff493c;
}

a.mail:hover {
  color: #ff493c;
}

.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;
}

.lang-option {
  color: #000 !important;
}

.sub-title {
  margin-top: 70px;
}

.inner-text {
  width: 40%;
}

.product a {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 20px;
}

.product a span {
  width: 100%;
  color: #091836;
  font-weight: 500;
  font-size: 14px;
  display: block;
  position: relative;
  margin-top: 16px;
  line-height: 18px;
}

.product a span::after {
  position: absolute;
  left: 0;
  top: -9px;
  content: "";
  width: 32px;
  height: 5px;
  background: url(../images/wave.svg);
  background-size: cover;
  line-height: 0px;
}

.all-button a {
  width: auto;
  height: 46px;
  padding: 0px 32px;
  background: #fff;
  color: #ff9933;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  font-weight: 500;
  font-size: 14px;
  border: 2px solid #fff;
  border-radius: 4px;
}

.all-button a:hover {
  background: transparent !important;
  color: #fff !important;
  border: 2px solid #fff;
}

.phone a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 2px solid #ff493c;
  transition: all 0.3s;
}

.phone a:hover {
  background: #ff493c;
}

.phone a img {
  width: 26px;
  margin-left: 8px;
}

.product-slider {
  width: 90%;
  margin: 0 auto;
}

.detail-wrapper {
  display: grid;
  grid-template-columns: 63% 33%;
  gap: 4%;
  align-items: flex-start;
}

.product-detail-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px;
  position: relative;
  background: #fff;
  margin-top: 20px;
  border-radius: 20px;
}

.product-detail-content .social-media {
  /* position: absolute; */
  left: 50px;
  bottom: 50px;
}

.product-detail-content span {
  font-weight: 800;
  font-size: 40px;
}

.product-detail-content p {
  /* color: #fff; */
}

.detail-slider img {
  width: 100%;
  border-radius: 20px;
}

.category-wp {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

@media (max-width: 1024px) {
  .category-wp {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .category-wp {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .category-wp {
    grid-template-columns: 1fr;
  }
}

.product-slider .p-2 {
  padding: 0px 4px;
}

.language-menu li:hover {
  background: transparent !important;
}

.language-menu li a:hover {
  background: transparent !important;
  color: #FF9933 !important;
}

.banner-text-container small img {
  width: 50px;
  height: 50px;
}

.bg-orange {
  background: #FF9933;
  padding-top: 60px;
  padding-bottom: 180px;
  position: relative;
}

.bg-orange::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 30px;
  width: 250px;
  height: 380px;
  background: url(../images/orange2.png);
  background-size: cover;
}

.bg-orange::after {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  width: 250px;
  height: 380px;
  background: url(../images/orange1.png);
  background-size: cover;
}

.title-section {
  width: 90%;
  margin: 0 auto;
}

.project-slider {
  width: 80%;
  margin: 0 auto;
  margin-top: -62px;
}

.project {
  display: grid !important;
  grid-template-columns: 57% 40%;
  gap: 3%;
  align-items: center;
}

.project-image {
  /* margin-top: -62px; */
  z-index: 98;
}

.project-image img {
  width: 100%;
  border-radius: 20px;
}

.project-detail-title {
  font-size: 40px;
  font-weight: 600;
  position: relative;
}

.project-detail-title::after {
  position: absolute;
  left: 0;
  top: -2px;
  content: "";
  width: 50px;
  height: 7px;
  background: url(../images/wave.svg);
}

.project-detail-features {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 10px;
}

.project-detail-features span {
  font-weight: 500;
  font-size: 16px;
}

.project-detail-features small {
  color: #FF9933;
}

.project-detail-content {
  font-weight: 300;
  margin-top: 10px;
}

.project-button {
  margin-top: 30px;
}

.project-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF9933;
  border: 2px solid #FF9933;
  border-radius: 4px;
  transition: all 0.5s;
  height: 46px;
  padding: 0px 26px;
  font-weight: 600;
}

.project-button a:hover {
  background: #FF9933;
  color: #fff;
}

.project-detail-section {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  margin-top: 50px;
}

.reference-section {
  background: #FBFBF9;
  padding: 80px 0px;
}

.referance-title {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  position: relative;
}

.referance-title::after {
  content: "";
  position: absolute;
  left: 0;
  top: -5px;
  width: 50px;
  height: 7px;
  background: url(../images/wave.svg);
  text-align: center;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.referance-slider .slick-dots li {
  background-color: #ffffff00;
  border: 1px solid #FFA954;
}

.referance-slider li.slick-active {
  background: #FFA954 !important;
}

.project-slider .slick-dots li {
  background-color: #ffffff00;
  border: 1px solid #FFA954;
}

.project-slider li.slick-active {
  background: #FFA954 !important;
}

footer::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 400px;
  background: url(../images/footer-right.png);
  background-size: cover;
}

footer::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 400px;
  background: url(../images/footer-left.png);
  background-size: cover;
}

.reference img {
  border-radius: 10px;
}

.bg-orange.pad {
  padding: 60px 0;
}

.category-wp .p-2 {
  padding: 0 6px;
}

.product-detail-content .social-media ul li a {
  background: #f3f3f3;
}

.side-bar {
  background: url(../images/side-bar.png);
  padding: 40px 30px;
  border-radius: 20px;
}

.side-bar ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.side-bar ul li {
  border-bottom: 1px solid #272727;
  padding-bottom: 6px;
}

.side-bar ul li:last-child {
  border-bottom: 0px;
}

.side-bar ul li a {
  color: #272727;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.5s;
  display: block;
}

.side-bar ul li a:hover {
  padding-left: 15px;
}

.dt-container {
  background: #FBF8F4;
  padding-bottom: 50px;
}

.gallery-container>div {
  width: 100%;
}

.gallery-container>div>a {
  display: block;
  width: 100%;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

/* a etiketlerini block yap */
.gallery-container a {
  display: block;
  width: 100%;
}

/* Tablet */
@media (max-width: 1024px) {
  .gallery-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobil */
@media (max-width: 600px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.detail-left {
  order: 1;
}

.side-bar {
  order: 2;
}

.detail-slider .slick-dots {
  bottom: 40px !important;
}

.detail-slider .slick-dots li {
  background-color: #ffffff5c;
}