@charset "UTF-8";
:root {
  --scrollbar-width: 0px;
}

.side-form-trigger {
  position: fixed;
  right: 0;
  top: 40%;
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  background-color: #333;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 4px 4px 0 0;
  cursor: pointer;
  z-index: 997;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.side-form-trigger span {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.side-form-trigger:focus {
  outline: none;
}

.side-form-trigger:hover {
  background-color: #444;
}

.side-form-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.side-form-overlay.active {
  opacity: 1;
  visibility: visible;
}

.side-form-panel {
  position: fixed;
  top: 0;
  right: -600px;
  width: 600px;
  height: 100%;
  background-color: white;
  z-index: 1000;
  -webkit-box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-perspective: 1000;
          perspective: 1000;
  -webkit-transition: right 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transition: right 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.side-form-panel.active {
  right: 0;
}

.side-form-panel .side-form-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.side-form-panel .side-form-header h3 {
  margin: 0;
  font-size: 18px !important;
  font-weight: 500;
}

.side-form-panel .side-form-header .side-form-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
}

.side-form-panel .side-form-header .side-form-close:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.side-form-panel .side-form-header .side-form-close img {
  width: 40px;
  height: 40px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.side-form-panel .side-form-header .side-form-close:hover img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.side-form-panel .form-banner {
  width: 100%;
  height: unset;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  padding: 20px;
}

.side-form-panel .form-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.side-form-panel .side-form-content {
  padding: 20px;
  height: calc(100% - 320px);
  overflow-y: auto;
}

.side-form-panel .side-form-content .form-group {
  margin-bottom: 20px;
}

.side-form-panel .side-form-content .form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 14px;
  color: #333;
}

.side-form-panel .side-form-content .form-group input, .side-form-panel .side-form-content .form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.side-form-panel .side-form-content .form-group input:focus, .side-form-panel .side-form-content .form-group textarea:focus {
  outline: none;
  border-color: #333;
}

.side-form-panel .side-form-content .submit-btn {
  background-color: #333;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  width: 100%;
}

.side-form-panel .side-form-content .submit-btn:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.side-form-panel .side-form-content .submit-btn:hover {
  background-color: #444;
}

@media (max-width: 768px) {
  .side-form-panel {
    width: 100%;
    right: -100%;
  }
}

.container-fluid {
  padding-left: 56px !important;
  padding-right: 56px !important;
}

@media (max-width: 1200px) {
  .container-fluid {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

.container {
  padding-left: 56px !important;
  padding-right: 56px !important;
}

@media (max-width: 1200px) {
  .container {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

h1, h2, h3, h4, h5, h6, p, a, span, li, div, button, input, textarea, select {
  font-family: 'Inter Tight', sans-serif !important;
  text-decoration: none !important;
}

h2 {
  font-size: 56px !important;
}

@media (max-width: 1023px) {
  h2 {
    font-size: 36px !important;
  }
}

@media (min-width: 1024px) and (max-width: 1365px) {
  h2 {
    font-size: 40px !important;
  }
}

h3 {
  font-size: 32px !important;
}

h4 {
  font-size: 28px !important;
}

h5 {
  font-size: 24px !important;
}

h6 {
  font-size: 20px !important;
}

button {
  font-family: 'Inter Tight', sans-serif;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: transparent;
  -webkit-backdrop-filter: blur(35px);
          backdrop-filter: blur(35px);
  z-index: 1049;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu .mobile-menu-content {
  width: 100%;
  padding: 120px 24px 24px;
}

.mobile-menu .mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.mobile-menu .mobile-nav-list li {
  margin-bottom: 32px;
}

.mobile-menu .mobile-nav-list li a {
  color: #fff;
  font-size: 18spx;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 1.5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.85;
  font-family: 'Inter Tight', sans-serif;
}

.mobile-menu .mobile-nav-list li a:hover {
  opacity: 1;
}

.mobile-menu .mobile-nav-list li:nth-last-child(2) {
  border-bottom: 1px solid #fff;
  padding-bottom: 32px;
}

.mobile-menu .mobile-nav-list li.mobile-lang {
  margin-top: 48px;
  position: relative;
}

.mobile-menu .mobile-nav-list li.mobile-lang .lang-switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 16px;
}

.mobile-menu .mobile-nav-list li.mobile-lang .lang-switch .lang-icon {
  width: 16px;
  height: 16px;
}

.mobile-menu .mobile-nav-list li.mobile-lang .lang-switch .chevron-icon {
  width: 16px;
  height: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mobile-menu .mobile-nav-list li.mobile-lang .lang-switch.active .chevron-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.mobile-menu .mobile-nav-list li.mobile-lang .mobile-lang-dropdown {
  display: none;
  position: absolute;
  padding: 10px !important;
  top: 100%;
  background: rgba(255, 255, 255, 0.03);
  padding: 16px 0;
  margin-top: 16px;
}

.mobile-menu .mobile-nav-list li.mobile-lang .mobile-lang-dropdown.active {
  display: block;
}

.mobile-menu .mobile-nav-list li.mobile-lang .mobile-lang-dropdown .lang-option {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  text-align: center;
  opacity: 0.85;
}

.mobile-menu .mobile-nav-list li.mobile-lang .mobile-lang-dropdown .lang-option:hover {
  opacity: 1;
}

.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  height: 96px;
  background: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mobile-header.sticky {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mobile-header.sticky .mobile-logo img {
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.mobile-header.sticky .mobile-menu-btn img {
  -webkit-filter: brightness(0);
          filter: brightness(0);
}

.mobile-header.menu-open {
  background: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-header.menu-open .mobile-logo .default-logo {
  display: block !important;
}

.mobile-header.menu-open .mobile-logo .sticky-logo {
  display: none !important;
}

.mobile-header.menu-open .mobile-logo img {
  -webkit-filter: brightness(1) !important;
          filter: brightness(1) !important;
}

.mobile-header.menu-open .mobile-menu-btn img {
  -webkit-filter: brightness(1) !important;
          filter: brightness(1) !important;
}

.mobile-header.scroll-up {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.mobile-header.scroll-down {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

@media (max-width: 1200px) {
  .mobile-header {
    display: block;
  }
}

.mobile-header .container-fluid {
  height: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.mobile-header .mobile-header-content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.mobile-header .mobile-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mobile-header .mobile-logo img {
  height: 25px;
  width: 174px;
}

.mobile-header .mobile-menu-btn {
  width: 32px;
  height: 32px;
  position: relative;
  background: none;
  border: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.mobile-header .mobile-menu-btn img {
  width: 32px;
  height: 32px;
}

.mobile-header .sticky-logo {
  display: none;
}

.mobile-header.sticky .default-logo {
  display: none;
}

.mobile-header.sticky .sticky-logo {
  display: block;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  height: 96px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header.sticky {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.site-header.sticky .navbar-nav .nav-item .nav-link {
  color: #000 !important;
}

.site-header.sticky .lang-icon, .site-header.sticky .chevron-icon {
  -webkit-filter: brightness(0);
          filter: brightness(0);
}

.site-header.sticky .dropdown-menu {
  background: black !important;
  -webkit-backdrop-filter: blur(35px) !important;
          backdrop-filter: blur(35px) !important;
}

.site-header.sticky .dropdown-menu .dropdown-item {
  color: #fff !important;
}

.site-header.sticky .dropdown-menu .dropdown-item:hover {
  background: #cccccc !important;
  color: #000 !important;
  opacity: 1 !important;
}

.site-header.scroll-up {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.site-header.scroll-down {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

@media (max-width: 1200px) {
  .site-header {
    display: none;
  }
}

.site-header .navbar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 96px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.site-header .navbar .navbar-left {
  position: absolute;
  left: 0px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.site-header .navbar .navbar-left .navbar-nav {
  gap: 64px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.site-header .navbar .navbar-brand {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: 0;
  padding: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.site-header .navbar .navbar-brand img {
  height: 25px;
  width: 174px;
}

.site-header .navbar .navbar-collapse {
  position: absolute;
  right: 0px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.site-header .navbar .navbar-collapse .navbar-nav {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.site-header .navbar .navbar-nav {
  gap: 64px;
}

.site-header .navbar .navbar-nav .nav-item {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.site-header .navbar .navbar-nav .nav-item .nav-link {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  padding: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.85;
  font-family: 'Inter Tight', sans-serif;
}

.site-header .navbar .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
}

.site-header .navbar .navbar-nav .nav-item.dropdown .dropdown-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.site-header .navbar .navbar-nav .nav-item.dropdown .dropdown-toggle::after {
  display: none;
}

.site-header .navbar .navbar-nav .nav-item.dropdown .dropdown-toggle .lang-icon {
  width: 16px;
  height: 16px;
}

.site-header .navbar .navbar-nav .nav-item.dropdown .dropdown-toggle .chevron-icon {
  width: 16px;
  height: 16px;
}

.site-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
  background: transparent;
  -webkit-backdrop-filter: blur(35px);
          backdrop-filter: blur(35px);
  border: none;
  border-radius: 0;
  min-width: 70px;
  padding: 10px 20px;
  margin-top: 0px;
  left: -27px;
}

.site-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 10px 12px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  letter-spacing: 1.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.site-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
  background: transparent;
  opacity: 0.5;
}

.site-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:active {
  background-color: none !important;
}

.site-header .navbar .navbar-toggler {
  border: none;
  padding: 0;
}

.site-header .navbar .navbar-toggler:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.site-header .navbar .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 24px;
  height: 24px;
}

@media (min-width: 1200px) and (max-width: 1439px) {
  .site-header .navbar {
    padding-left: 0;
    padding-right: 0;
  }
  .site-header .navbar .navbar-nav {
    gap: 35px;
  }
  .site-header .navbar .navbar-left {
    left: 0;
  }
  .site-header .navbar .navbar-left .navbar-nav {
    gap: 35px;
  }
  .site-header .navbar .navbar-collapse {
    right: 0;
  }
}

@media (min-width: 1450px) and (max-width: 1539px) {
  .site-header .navbar {
    padding-left: 0;
    padding-right: 0;
  }
  .site-header .navbar .navbar-nav {
    gap: 45px;
  }
  .site-header .navbar .navbar-left {
    left: 0;
  }
  .site-header .navbar .navbar-left .navbar-nav {
    gap: 45px;
  }
  .site-header .navbar .navbar-collapse {
    right: 0;
  }
}

@media (max-width: 992px) {
  .site-header .navbar {
    padding: 0 20px;
  }
  .site-header .navbar .navbar-collapse {
    position: fixed;
    top: 96px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    padding: 20px;
    height: auto;
  }
  .site-header .navbar .navbar-collapse .navbar-nav {
    gap: 20px;
    padding: 20px;
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
  .site-header .navbar .navbar-collapse .navbar-nav .nav-item {
    height: auto;
    width: 100%;
    text-align: center;
  }
  .site-header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 10px 0;
  }
  .site-header .navbar .navbar-collapse .navbar-nav .nav-item.dropdown .dropdown-toggle {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .site-header .navbar .navbar-collapse .navbar-nav .nav-item.dropdown .dropdown-menu {
    position: static;
    width: 100%;
    text-align: center;
    margin-top: 0;
    background: transparent;
  }
  .site-header .navbar .navbar-collapse .navbar-nav.ms-auto {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
    padding-top: 30px;
  }
}

.site-header .sticky-logo {
  display: none;
}

.site-header.sticky .default-logo {
  display: none;
}

.site-header.sticky .sticky-logo {
  display: block;
}

.hero-slider {
  position: relative;
  font-family: 'Inter Tight', sans-serif;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}

@media (min-width: 375px) and (max-width: 429px) {
  .hero-slider {
    height: 95vh !important;
  }
  .hero-slider .swiper {
    height: 95vh !important;
  }
  .hero-slider .swiper-slide {
    height: 95vh !important;
  }
  .hero-slider .hero-content {
    height: 95vh !important;
  }
  .hero-slider .hero-image {
    height: 95vh !important;
  }
  .hero-slider .hero-image img {
    height: 95vh !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 85vh;
  }
}

@media (min-width: 820px) and (max-width: 1023px) {
  .hero-slider {
    height: 65vh;
  }
}

.hero-slider .swiper {
  width: 100%;
  height: 100vh;
}

@media (max-width: 768px) {
  .hero-slider .swiper {
    height: 85vh;
  }
}

@media (min-width: 820px) and (max-width: 1023px) {
  .hero-slider .swiper {
    height: 65vh;
  }
}

.hero-slider .swiper-slide {
  position: relative;
  height: 100vh;
}

@media (min-width: 375px) and (max-width: 429px) {
  .hero-slider .swiper-slide {
    height: 95vh;
  }
}

@media (max-width: 768px) {
  .hero-slider .swiper-slide {
    height: 85vh;
  }
}

@media (min-width: 820px) and (max-width: 1023px) {
  .hero-slider .swiper-slide {
    height: 65vh;
  }
}

.hero-slider .swiper-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), color-stop(15%, rgba(0, 0, 0, 0)), color-stop(70%, rgba(0, 0, 0, 0)), color-stop(85%, rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.8))), -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.2)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.5) 85%, rgba(0, 0, 0, 0.8) 100%), linear-gradient(to right, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

.hero-slider .hero-content {
  position: relative;
  z-index: 2;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 390px) and (max-width: 429px) {
  .hero-slider .hero-content {
    height: 95vh;
  }
}

@media (max-width: 768px) {
  .hero-slider .hero-content {
    height: 85vh;
  }
}

@media (min-width: 820px) and (max-width: 1023px) {
  .hero-slider .hero-content {
    height: 65vh;
  }
}

.hero-slider .hero-content .container {
  position: relative;
  z-index: 3;
  padding-top: 55vh;
  max-width: 100%;
}

@media (min-width: 390px) and (max-width: 429px) {
  .hero-slider .hero-content .container {
    padding-top: 15vh;
  }
}

@media (max-width: 768px) and (min-width: 500px) {
  .hero-slider .hero-content .container {
    padding-top: 6vh !important;
  }
}

@media (min-width: 820px) and (max-width: 1023px) {
  .hero-slider .hero-content .container {
    padding-top: 25vh;
  }
}

@media (min-width: 1500px) and (max-width: 1700px) {
  .hero-slider .hero-content .container {
    padding-top: 40vh !important;
  }
}

.hero-slider .hero-content .row {
  position: relative;
}

@media (max-width: 1200px) and (min-width: 1024px) {
  .hero-slider .hero-content .col-lg-3 .hero-line {
    width: 85%;
    padding-right: 50px;
    margin: 0 auto;
  }
  .hero-slider .hero-content .col-lg-3 .hero-line::after {
    width: calc(100% - 40px);
  }
  .hero-slider .hero-content .col-lg-3 .hero-line .hero-arrow {
    right: 0;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 1023px) {
  .hero-slider .hero-content .col-lg-3 {
    display: none !important;
  }
}

.hero-slider .hero-title {
  color: #fff;
  font-size: 56px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.1;
  position: relative;
  display: inline-block;
  padding: 40px !important;
  background-color: transparent !important;
  -webkit-backdrop-filter: blur(35px) !important;
          backdrop-filter: blur(35px) !important;
}

@media (max-width: 767px) {
  .hero-slider .hero-title {
    padding: 30px !important;
  }
}

.hero-slider .hero-title span {
  color: #BDBBB9;
}

@media (max-width: 1023px) {
  .hero-slider .hero-title {
    font-size: 40px;
    margin-bottom: 1rem;
    padding: 640px;
  }
}

.hero-slider .hero-line {
  position: relative;
  height: 2px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 40px;
}

.hero-slider .hero-line::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: calc(100% - 40px);
  height: 2px;
  background-color: #fff;
  opacity: 0.6;
}

.hero-slider .hero-line .hero-arrow {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  z-index: 2;
}

@media (max-width: 992px) {
  .hero-slider .hero-line {
    padding-right: 30px;
  }
  .hero-slider .hero-line::after {
    width: calc(100% - 30px);
  }
  .hero-slider .hero-line .hero-arrow {
    width: 30px;
    height: 30px;
  }
}

.hero-slider .hero-text {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-slider .hero-text {
    font-size: 24px;
  }
}

.hero-slider .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
}

@media (max-width: 768px) {
  .hero-slider .hero-image {
    height: 85vh;
  }
}

.hero-slider .hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-slider .btn-primary {
  background-color: #fff;
  border: 2px solid #fff;
  color: #333;
  padding: 13px 43px;
  font-size: 12px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  border-radius: 90px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.hero-slider .btn-primary:hover {
  background-color: transparent !important;
  color: #fff !important;
  -webkit-backdrop-filter: blur(35px) !important;
          backdrop-filter: blur(35px) !important;
  border: 2px solid #fff !important;
}

@media (max-width: 992px) {
  .hero-slider .btn-primary {
    width: 100%;
    text-align: center;
    padding: 13px;
  }
}

.hero-slider .swiper-pagination {
  bottom: 64px !important;
  z-index: 5;
  width: auto !important;
  left: 56px !important;
  right: 180px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0;
  line-height: 0;
  height: 2px;
}

@media (max-width: 992px) {
  .hero-slider .swiper-pagination {
    left: 24px !important;
    right: 90px !important;
  }
}

.hero-slider .swiper-pagination .swiper-pagination-bullet {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 0;
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 0 !important;
  padding: 0;
  border: none;
  display: block;
}

.hero-slider .swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
}

.hero-slider .swiper-pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 0 !important;
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
  top: auto;
  bottom: 50px;
  width: 40px;
  height: 40px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 0;
}

.hero-slider .swiper-button-next:after,
.hero-slider .swiper-button-prev:after {
  display: none;
}

.hero-slider .swiper-button-next {
  right: 60px;
  background-image: url("../icons/ileri.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40px;
}

.hero-slider .swiper-button-prev {
  right: 116px;
  left: auto;
  background-image: url("../icons/geri.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40px;
}

@media (max-width: 768px) {
  .hero-slider .swiper-button-next,
  .hero-slider .swiper-button-prev {
    width: 32px;
    height: 32px;
    background-size: 32px;
  }
  .hero-slider .swiper-button-next {
    right: 20px;
  }
  .hero-slider .swiper-button-prev {
    right: 72px;
    left: auto;
  }
  .hero-slider .swiper-pagination {
    right: 132px !important;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .hero-slider .swiper-button-next,
  .hero-slider .swiper-button-prev {
    width: 32px;
    height: 32px;
    background-size: 32px;
  }
  .hero-slider .swiper-button-next {
    right: 20px;
  }
  .hero-slider .swiper-button-prev {
    right: 72px;
    left: auto;
  }
  .hero-slider .swiper-pagination {
    right: 132px !important;
  }
}

.hero-slider .swiper-fade .swiper-slide-active.swiper-slide-prev, .hero-slider .swiper-fade .swiper-slide-active.swiper-slide-next,
.hero-slider .swiper-fade .swiper-slide.swiper-slide-prev,
.hero-slider .swiper-fade .swiper-slide.swiper-slide-next {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  background: #000;
}

@media (max-width: 992px) {
  .hero-slider .hero-content {
    text-align: left;
    padding: 0;
  }
  .hero-slider .hero-content .container {
    padding-top: 8vh;
  }
  .hero-slider .hero-content .hero-title {
    width: 100%;
    padding: 40px;
  }
  .hero-slider .hero-content .hero-line {
    height: 120px;
    width: 2px;
    margin: 1rem 0;
    padding-right: 0;
    padding-bottom: 40px;
    margin-left: 24px;
  }
  .hero-slider .hero-content .hero-line::after {
    left: 0;
    top: 0;
    width: 2px;
    height: calc(100% - 40px);
  }
  .hero-slider .hero-content .hero-line .hero-arrow {
    width: 30px;
    height: 30px;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
  }
  .hero-slider .hero-content .col-lg-3, .hero-slider .hero-content .col-lg-4, .hero-slider .hero-content .col-lg-5 {
    width: 100%;
    margin-bottom: 1rem;
  }
  .hero-slider .hero-content .hero-text {
    margin-left: 0;
    margin-right: 0;
  }
}

@media screen and (min-width: 1366px) and (max-width: 1500px) {
  .hero-slider .hero-content .container {
    padding-top: 35vh;
  }
  .hero-slider .hero-content .col-lg-3 .hero-line {
    margin-top: 120px;
  }
}

@media screen and (min-width: 1180px) and (max-width: 1365px) {
  .hero-slider .hero-content .container {
    padding-top: 20vh;
  }
}

@media screen and (min-width: 768px) and (max-width: 819px) {
  .hero-slider {
    height: 65vh;
  }
  .hero-slider .swiper {
    height: 65vh;
  }
  .hero-slider .swiper-slide {
    height: 65vh;
  }
  .hero-slider .hero-content {
    height: 65vh;
  }
  .hero-slider .hero-content .container {
    padding-top: 12vh;
  }
  .hero-slider .hero-image {
    height: 65vh;
  }
}

.models-section {
  padding-top: 128px;
  background-color: #fff;
  position: relative;
  z-index: 10;
}

@media (max-width: 1200px) {
  .models-section {
    padding-top: 72px;
  }
}

.section-header {
  margin-bottom: 48px;
  position: relative;
}

@media (max-width: 768px) {
  .section-header .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section-header .col-4 {
    width: 100%;
  }
  .section-header .section-line::after {
    width: 30%;
  }
  .section-header .section-title h2 {
    font-size: 40px;
    text-align: left;
    width: 100%;
  }
}

.section-subtitle {
  font-size: 14px;
  letter-spacing: 1.5px;
  color: #000;
  font-weight: 500;
  margin-bottom: 16px;
}

.section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: #000;
  margin-top: 16px;
}

.section-title img {
  height: 24px;
  width: auto;
  vertical-align: middle;
  margin-left: 5px;
  display: inline-block;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 500;
  color: #000;
  margin: 0;
  padding-top: 15px;
}

.section-title h2 span {
  color: #BBB8B6;
}

.section-explore {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 768px) {
  .section-explore {
    display: none;
  }
}

.section-explore .explore-btn {
  display: inline-block;
  padding: 16px 32px;
  background-color: #000;
  color: #fff;
  border-radius: 90px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-decoration: none;
}

.section-explore .explore-btn:hover {
  opacity: 0.8;
}

.section-line-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section-line {
  position: relative;
  height: 2px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 40px;
}

.section-line::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: calc(100% - 40px);
  height: 2px;
  background-color: #E0E0E0;
  opacity: 0.6;
}

.section-line .section-line-arrow {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  z-index: 2;
}

@media (max-width: 768px) {
  .section-line .section-line-arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  .section-line {
    padding-right: 0;
  }
  .section-line::after {
    width: 30%;
  }
}

.bento-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
      grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-top: 64px;
}

@media (max-width: 1200px) {
  .bento-grid {
    margin-top: 35px;
  }
}

@media (max-width: 1200px) and (min-width: 820px) {
  .bento-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .bento-grid .bento-item {
    grid-column: span 1 !important;
    height: 480px !important;
    grid-row: span 1 !important;
  }
}

@media (max-width: 768px) {
  .bento-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 17px;
  }
}

.bento-item {
  position: relative;
  border-radius: 0px;
  cursor: pointer;
  height: 400px;
  z-index: 1;
}

@media (max-width: 768px) {
  .bento-item {
    height: 480px !important;
    grid-column: span 1 !important;
  }
}

@media (max-width: 767px) {
  .bento-item {
    height: 300px !important;
  }
}

.bento-item:nth-child(1) {
  grid-column: span 4;
  grid-row: span 2;
  height: 825px;
}

@media (max-width: 1200px) {
  .bento-item:nth-child(1) {
    height: 480px !important;
    grid-row: span 1 !important;
  }
}

@media (max-width: 767px) {
  .bento-item:nth-child(1) {
    height: 300px !important;
  }
}

.bento-item:nth-child(2) {
  grid-column: span 4;
}

.bento-item:nth-child(3) {
  grid-column: span 4;
}

.bento-item:nth-child(4) {
  grid-column: span 8;
}

.bento-item:nth-child(5) {
  grid-column: span 6;
}

.bento-item:nth-child(6) {
  grid-column: span 6;
}

.bento-item .bento-number {
  position: absolute;
  bottom: 72px;
  left: 24px;
  color: #B0B0B0;
  font-size: 14px;
  font-weight: 500;
  z-index: 2;
  letter-spacing: 1.5px;
}

.bento-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.bento-item img:hover {
  -webkit-transform: scale(1.05) !important;
          transform: scale(1.05) !important;
}

.bento-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  opacity: 0.85;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.bento-item h3 {
  position: absolute;
  bottom: 40px;
  left: 24px;
  color: #fff;
  font-size: 24px !important;
  font-weight: 500;
  margin: 0;
  z-index: 2;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.models-mobile-btn {
  display: none;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .models-mobile-btn {
    display: block;
  }
}

.models-mobile-btn a {
  text-decoration: none;
}

.models-mobile-btn .explore-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background-color: #000;
  color: #fff;
  border-radius: 90px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-align: center;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 48px;
}

.about-section {
  padding-top: 144px;
  background-color: #fff;
  position: relative;
  z-index: 10;
}

@media (max-width: 768px) {
  .about-section {
    padding-top: 72px;
  }
}

.about-header {
  margin-bottom: 48px;
  position: relative;
}

@media (max-width: 820px), (min-width: 820px) and (max-width: 1023px) {
  .about-header .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-header .col-4 {
    width: 100%;
    margin-bottom: 24px;
  }
  .about-header .col-8 {
    width: 100%;
  }
  .about-header .about-line {
    width: 30%;
  }
  .about-header .about-title {
    margin-top: 0;
  }
  .about-header .about-title h2 {
    font-size: 40px;
    text-align: left;
    width: 100%;
    line-height: 1.2;
  }
  .about-header .about-title .about-line-arrow img {
    display: none;
  }
}

.about-subtitle {
  font-size: 14px;
  letter-spacing: 1.5px;
  color: #000;
  font-weight: 500;
  margin-bottom: 8px;
}

.about-line-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
  margin-top: 16px;
}

.about-line {
  width: 90%;
  height: 1px;
  background-color: #E0E0E0;
  position: relative;
}

.about-line-arrow {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 820px), (min-width: 820px) and (max-width: 1023px) {
  .about-line-arrow {
    display: none;
  }
}

.about-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: #000;
  margin-top: 16px;
  padding-top: 0;
}

.about-title h2 {
  font-size: 56px;
  font-weight: 500;
  color: #000;
  margin: 0;
  line-height: 1.2;
}

.about-title h2 span {
  color: #8D8F94;
}

.about-image {
  margin-top: 72px;
  width: 100%;
  height: auto;
}

@media (max-width: 768px), (min-width: 820px) and (max-width: 1023px) {
  .about-image {
    margin-top: 0;
    height: 480px;
    padding-top: 10px;
  }
  .about-image img {
    height: 100%;
  }
}

@media (max-width: 767px) {
  .about-image {
    height: 210px;
  }
}

.about-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-content {
  margin-top: 33px;
}

@media (max-width: 768px), (min-width: 820px) and (max-width: 1023px) {
  .about-content .row .col-4 {
    display: none;
  }
  .about-content .row .col-8 {
    width: 100%;
  }
  .about-content .about-btn {
    display: block;
    width: 100%;
    text-align: center;
  }
}

.about-content p {
  font-size: 22px;
  line-height: 1.5;
  color: #1A1B1E;
  font-weight: 500;
  font-family: 'Inter Tight', sans-serif;
  margin-bottom: 56px;
}

.about-content .about-btn {
  display: inline-block;
  padding: 16px 32px;
  background-color: #000;
  color: #fff;
  border-radius: 90px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 48px;
  width: 180px;
}

.about-content .about-btn:hover {
  opacity: 0.8;
}

.our-vision {
  position: relative;
  min-height: -webkit-max-content;
  min-height: -moz-max-content;
  min-height: max-content;
  background: url("../images/aur-vision-bg.jpg") no-repeat center center;
  background-size: cover;
  padding: 0 56px;
  margin-top: 128px;
}

.our-vision::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

@media (max-width: 768px) {
  .our-vision {
    margin-top: 72px;
  }
}

.vision-swiper {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding-top: 128px;
}

.vision-swiper .vision-swiper-slide {
  height: auto;
}

.vision-swiper .vision-swiper-nav-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 96px;
}

.vision-swiper .vision-swiper-button-next,
.vision-swiper .vision-swiper-button-prev {
  position: static;
  width: 40px;
  height: 40px;
  margin: 0;
  background: none;
  border-radius: 0;
  padding-top: 40px;
}

.vision-swiper .vision-swiper-button-next::after,
.vision-swiper .vision-swiper-button-prev::after {
  display: none;
}

.vision-swiper .vision-swiper-button-prev {
  background: url("../icons/geri.svg") no-repeat center;
  background-size: 40px;
  margin-left: 10px;
}

.vision-swiper .vision-swiper-button-next {
  background: url("../icons/ileri.svg") no-repeat center;
  background-size: 40px;
}

.vision-swiper .vision-swiper-pagination {
  position: static;
  width: calc(100% - 120px) !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  gap: 0;
}

.vision-swiper .vision-swiper-pagination .swiper-pagination-bullet {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: auto !important;
  height: 2px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 0 !important;
  padding: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.vision-swiper .vision-swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
}

.vision-swiper .title-wrapper {
  margin-bottom: 80px;
  padding-top: 128px;
}

.vision-swiper .title-wrapper h2 {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.2;
  padding-left: 2rem;
  color: #fff;
}

.vision-swiper .title-wrapper h2 span {
  color: #DCDAD8;
}

.vision-swiper .title-wrapper .title-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  gap: 16px;
}

.vision-swiper .title-wrapper .title-line .section-title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #fff;
}

.vision-swiper .title-wrapper .title-line .line-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.vision-swiper .title-wrapper .title-line .line-wrapper .line {
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  opacity: 0.36;
}

.vision-swiper .title-wrapper .title-line .line-wrapper img {
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .vision-swiper .title-wrapper {
    padding-top: 72px;
  }
  .vision-swiper .title-wrapper h2 {
    font-size: 36px;
  }
}

.service-card {
  background: rgba(31, 31, 31, 0.8);
  padding: 56px 32px 32px;
  text-align: left;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.service-card .step {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 72px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 11px;
  border-radius: 90px;
  width: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 28px;
  margin-bottom: 76px;
  padding-bottom: 0px;
}

.service-card .step h6 {
  font-size: 14px !important;
  font-weight: 500;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.service-card .icon {
  margin-bottom: 72px;
}

.service-card .icon img {
  width: 64px;
  height: 64px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.service-card h3 {
  font-size: 24px !important;
  font-weight: 500;
  margin-bottom: 16px;
  color: #ccc;
}

.service-card p {
  color: #ccc;
  margin-bottom: 56px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.service-card .read-more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 4 0px;
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.service-card .read-more img {
  width: 24px;
  height: 24px;
}

.service-card .read-more:hover {
  opacity: 1;
}

@media (max-width: 1024px) {
  .vision-swiper h2 {
    font-size: 40px;
  }
  .service-card {
    padding: 1.5rem;
  }
  .vision-swiper .title-wrapper {
    margin-bottom: 40px;
  }
}

@media (max-width: 820px) {
  .our-vision {
    padding: 0 24px;
  }
  .vision-swiper .title-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .vision-swiper .title-wrapper .row .col-4 {
    width: 100%;
  }
  .vision-swiper .title-wrapper .row .col-8 {
    width: 100%;
    padding-top: 30px;
    display: block;
  }
  .vision-swiper .title-wrapper h2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    font-size: 45px;
    padding-left: 0;
  }
  .vision-swiper .title-wrapper h2 span {
    color: #C9D3D7;
  }
  .vision-swiper .title-wrapper .title-line {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
  .vision-swiper .title-wrapper .title-line .line-wrapper img {
    display: none;
  }
}

@media (max-width: 820px) and (max-width: 767px) {
  .vision-swiper .title-wrapper h2 {
    font-size: 36px;
  }
}

@media (max-width: 820px) {
  .service-card h3 {
    font-size: 1.3rem !important;
  }
  .service-card p {
    font-size: 0.85rem;
  }
}

.blog-section {
  padding-top: 128px;
  background-color: #fff;
  position: relative;
  z-index: 10;
  display: block;
}

.blog-header {
  position: relative;
}

.blog-subtitle {
  font-size: 14px;
  letter-spacing: 1.5px;
  color: #000;
  font-weight: 500;
  margin-bottom: 16px;
}

.blog-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: #000;
  margin-top: 16px;
}

.blog-title h2 {
  font-size: 56px;
  font-weight: 500;
  color: #000;
  margin: 0;
  text-align: left;
}

.blog-title h2 span {
  color: #8D8F94;
}

.blog-line-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
}

.blog-line {
  width: 90%;
  height: 1px;
  background-color: #E0E0E0;
  position: relative;
}

.blog-line-arrow {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.blog-explore {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.blog-explore .explore-btn {
  display: inline-block;
  padding: 16px 32px;
  background-color: #000;
  color: #fff;
  border-radius: 90px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1.5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
}

.blog-explore .explore-btn:hover {
  opacity: 0.8;
}

.blog-grid {
  padding-top: 88px;
  row-gap: 56px;
  padding-top: 88px;
  margin-bottom: 144px;
}

.blog-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  height: 100%;
}

.blog-post-image {
  width: 392px;
  height: 220px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
}

.blog-post-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-post-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 220px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.blog-post-date {
  font-size: 12px;
  font-weight: 500;
  color: #8D8F94;
  letter-spacing: 1.5px;
}

.blog-post h3 {
  font-size: 20px !important;
  font-weight: 500;
  color: #000;
  margin: 0;
  padding-top: 8px;
  line-height: 1.3;
}

.blog-post p {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  padding-top: 16px;
  color: #3B3D42;
  margin: 0;
}

.blog-post .read-more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding-top: 36px;
  color: #1A1B1E;
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 500;
  margin-top: 8px;
  text-decoration: none;
}

.blog-post .read-more span {
  text-transform: uppercase;
}

.blog-post .read-more-icon {
  width: 24px;
  height: 24px;
}

.blog-post .read-more:hover {
  opacity: 0.7;
}

@media (max-width: 820px) {
  .blog-section {
    display: none;
  }
}

@media (max-width: 1400px) and (min-width: 820px) {
  .blog-post {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .blog-post-image {
    width: 100%;
    height: 320px;
  }
  .blog-post-content {
    padding-right: 0;
    padding-bottom: 24px;
  }
  .blog-grid .col-6 {
    width: 50%;
  }
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

@media (max-width: 820px) {
  .d-none-820 {
    display: none !important;
  }
  .d-block-820 {
    display: block !important;
  }
}

.blog-posts {
  background: #fff;
  color: #000;
}

.blog-posts .blog-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 56px;
}

.blog-posts .blog-title .title-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  width: 100%;
}

.blog-posts .blog-title .title-content h2 {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
  width: 100%;
  max-width: 100%;
  display: block;
}

.blog-posts .blog-title .title-content h2 span {
  color: #8D8F94;
}

.blog-posts .blog-title .section-label {
  font-size: 12px;
  font-weight: 400;
  color: #3B3D42;
  display: inline-block;
}

.blog-posts .blog-title .title-line {
  display: inline-block;
}

.blog-posts .blog-title .title-line .line {
  display: block;
  width: 100%;
  height: 1px;
  background: #EBEBEB;
}

.blog-posts .blog-title .blog-nav-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.blog-posts .blog-title .blog-nav-arrows button {
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

.blog-posts .blog-title .blog-nav-arrows button.prev-arrow {
  background: url("../icons/geri-1.svg") no-repeat center;
  background-size: contain;
}

.blog-posts .blog-title .blog-nav-arrows button.next-arrow {
  background: url("../icons/ileri-2.svg") no-repeat center;
  background-size: contain;
}

.blog-swiper .blog-swiper-slide {
  height: auto;
}

.blog-swiper .blog-card {
  background: transparent;
  border: none;
}

.blog-swiper .blog-card .blog-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.blog-swiper .blog-card .blog-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-swiper .blog-card .blog-content {
  padding-left: 8px;
  padding-right: 24px;
  padding-top: 24px;
}

.blog-swiper .blog-card .blog-content .date {
  font-size: 12px;
  color: #8D8F94;
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.blog-swiper .blog-card .blog-content h3 {
  font-size: 20px !important;
  font-weight: 500;
  margin-bottom: 16px;
  color: #000;
}

.blog-swiper .blog-card .blog-content p {
  color: #3B3D42;
  margin-bottom: 36px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
}

.blog-swiper .blog-card .blog-content .read-more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #1A1B1E;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
}

.blog-swiper .blog-card .blog-content .read-more img {
  width: 24px;
  height: 24px;
}

.blog-swiper .view-all-button {
  width: 100%;
  padding: 16px;
  background: #000;
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 32px;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 48px;
}

.blog-swiper .view-all-button:hover {
  opacity: 0.9;
}

.blog-swiper .blog-swiper-nav-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 32px;
  position: relative;
}

.blog-swiper .blog-swiper-nav-container .blog-swiper-pagination {
  position: static;
  width: calc(100% - 120px) !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}

.blog-swiper .blog-swiper-nav-container .blog-swiper-pagination .swiper-pagination-bullet {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: auto !important;
  height: 2px;
  border-radius: 0;
  background: rgba(59, 61, 66, 0.2);
  opacity: 1;
  margin: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.blog-swiper .blog-swiper-nav-container .blog-swiper-pagination .swiper-pagination-bullet-active {
  background: #3B3D42;
}

.blog-swiper .blog-swiper-nav-container .blog-swiper-button-prev,
.blog-swiper .blog-swiper-nav-container .blog-swiper-button-next {
  position: static !important;
  width: 40px !important;
  height: 40px !important;
  margin: 0 !important;
  background: none !important;
  border-radius: 0 !important;
}

.blog-swiper .blog-swiper-nav-container .blog-swiper-button-prev::after,
.blog-swiper .blog-swiper-nav-container .blog-swiper-button-next::after {
  content: '' !important;
  width: 40px !important;
  height: 40px !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.blog-swiper .blog-swiper-nav-container .blog-swiper-button-prev {
  margin-right: 0px !important;
}

.blog-swiper .blog-swiper-nav-container .blog-swiper-button-prev::after {
  background-image: url("../icons/geri-1.svg") !important;
}

.blog-swiper .blog-swiper-nav-container .blog-swiper-button-next::after {
  background-image: url("../icons/ileri-2.svg") !important;
}

@media (max-width: 768px) {
  .blog-posts {
    padding: 72px 24px;
  }
  .blog-posts .blog-title h2 {
    font-size: 32px;
  }
}

.footer {
  background: #000;
  padding-top: 144px;
  padding-bottom: 0px;
  color: #fff;
}

.footer-menu {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[6];
      grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  padding: 0 56px;
  margin-bottom: 144px;
}

.footer-menu__group h3 {
  color: #5D6069;
  font-size: 12px !important;
  font-weight: 500;
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  height: 32px;
}

.footer-menu__group h3 span {
  color: rgba(255, 255, 255, 0.16);
}

.footer-menu__group h3 .icon-plus,
.footer-menu__group h3 .icon-minus {
  display: none;
}

.footer-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu__list li {
  margin-bottom: 16px;
}

.footer-menu__list li:last-child {
  margin-bottom: 0;
}

.footer-menu__list li a {
  color: #C3C4C6;
  text-decoration: none;
  font-size: 14px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.footer-menu__list li a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 24px 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-bottom__copyright {
  color: #8D8F94;
  font-size: 12px;
  font-weight: 500;
}

.footer-bottom__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}

.footer-bottom__links a {
  color: #8D8F94;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.footer-bottom__links a:hover {
  color: #fff;
}

@media screen and (max-width: 1200px) {
  .footer {
    padding: 40px 0;
  }
  .footer-menu {
    display: block;
    padding: 0 24px;
    margin-bottom: 40px;
  }
  .footer-menu__group {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 32px;
  }
  .footer-menu__group:last-child {
    margin-bottom: 0;
  }
  .footer-menu__group h3 {
    width: 100%;
    margin: 0;
    padding: 24px 0;
    border-bottom: none;
    font-size: 16px !important;
    position: relative;
    cursor: pointer;
    color: #C3C4C6;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer-menu__group h3 span {
    display: none;
  }
  .footer-menu__group h3 .icon-plus,
  .footer-menu__group h3 .icon-minus {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 24px;
    height: 24px;
  }
  .footer-menu__group.active h3 {
    color: #fff;
  }
  .footer-menu__group.active h3 .icon-plus {
    display: none;
  }
  .footer-menu__group.active h3 .icon-minus {
    display: block;
  }
  .footer-menu__group.active .footer-menu__list {
    display: block;
  }
  .footer-menu__list {
    display: none;
    padding: 0 0 24px 0;
    -webkit-animation: slideDown 0.3s ease forwards;
            animation: slideDown 0.3s ease forwards;
  }
  .footer-menu__list li {
    margin-bottom: 16px;
  }
  .footer-menu__list li:last-child {
    margin-bottom: 0;
  }
  .footer-menu__list li a {
    color: #C3C4C6;
    font-size: 14px;
  }
  .footer-menu__list li a:hover {
    color: #fff;
  }
  .footer-bottom {
    padding: 88px 24px 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer-bottom__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 24px;
  }
}

@-webkit-keyframes slideDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.slider-header {
  margin-bottom: 48px;
  position: relative;
}

@media (max-width: 1200px) {
  .slider-header {
    padding: 0 40px;
  }
}

@media (max-width: 820px) {
  .slider-header {
    padding: 0 24px;
  }
  .slider-header .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .slider-header .col-4 {
    width: 100%;
  }
  .slider-header .slider-line::after {
    width: 30%;
  }
  .slider-header .slider-title h2 {
    font-size: 32px;
    text-align: left;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .slider-section {
    padding-top: 0px;
  }
}

.slider-subtitle {
  font-size: 14px;
  letter-spacing: 1.5px;
  color: #000;
  font-weight: 500;
  margin-bottom: 16px;
}

.slider-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: #000;
  margin-top: 16px;
}

.slider-title img {
  display: none;
}

.slider-title h2 {
  font-size: 56px;
  font-weight: 500;
  color: #000;
  margin: 0;
  text-align: center;
  padding-top: 15px;
}

.slider-title h2 span {
  color: #BBB8B6;
}

.section-explore {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 820px) {
  .section-explore {
    display: none;
  }
}

.section-explore .explore-btn {
  display: inline-block;
  padding: 16px 32px;
  background-color: #000;
  color: #fff;
  border-radius: 90px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-decoration: none;
}

.section-explore .explore-btn:hover {
  opacity: 0.8;
}

.slider-line-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider-line {
  position: relative;
  height: 2px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 40px;
}

.slider-line::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: calc(100% - 40px);
  height: 2px;
  background-color: #E0E0E0;
  opacity: 0.6;
}

.slider-line .slider-line-arrow {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  z-index: 2;
}

@media (max-width: 820px) {
  .slider-line .slider-line-arrow {
    display: none;
  }
}

@media (max-width: 820px) {
  .slider-line {
    padding-right: 0;
  }
  .slider-line::after {
    width: 30%;
  }
}

.full-width-slider {
  width: 100%;
  overflow: hidden;
  background: #fff;
  position: relative;
  padding: 0;
  margin-bottom: 72px;
  padding-top: 56px !important;
}

.full-width-slider .slider {
  width: 100%;
  overflow: hidden;
}

.full-width-slider .slider .slide-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  -webkit-animation: scroll 30s linear infinite;
          animation: scroll 30s linear infinite;
}

.full-width-slider .slider .slide-track:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-25% * 4));
            transform: translateX(calc(-25% * 4));
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-25% * 4));
            transform: translateX(calc(-25% * 4));
  }
}

.full-width-slider .slider .slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
  height: 480px;
  overflow: hidden;
}

.full-width-slider .slider .slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1023px) {
  .full-width-slider {
    padding: 0;
  }
  @-webkit-keyframes scroll {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(calc(-50% * 4));
              transform: translateX(calc(-50% * 4));
    }
  }
  @keyframes scroll {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(calc(-50% * 4));
              transform: translateX(calc(-50% * 4));
    }
  }
  .full-width-slider .slider .slide-track .slide {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 768px) {
  .full-width-slider {
    padding: 0;
  }
  @-webkit-keyframes scroll {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(calc(-50% * 4));
              transform: translateX(calc(-50% * 4));
    }
  }
  @keyframes scroll {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(calc(-50% * 4));
              transform: translateX(calc(-50% * 4));
    }
  }
  .full-width-slider .slider .slide-track .slide {
    width: 220px;
    height: 220px;
  }
}

.prekofab-section-header {
  position: relative;
}

.prekofab-section-header .row {
  margin: 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}

.prekofab-section-header .prekofab-col-4 {
  padding: 0;
  width: 33.33%;
}

.prekofab-section-header .prekofab-col-4 .prekofab-line-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.prekofab-section-header .prekofab-col-4 .prekofab-line-wrapper .prekofab-subtitle {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #3B3D42;
  text-transform: uppercase;
}

.prekofab-section-header .prekofab-col-4 .prekofab-line-wrapper .prekofab-line-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.prekofab-section-header .prekofab-col-4 .prekofab-line-wrapper .prekofab-line-container .prekofab-line {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.prekofab-section-header .prekofab-col-4 .prekofab-line-wrapper .prekofab-line-container .prekofab-arrow-icon {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.prekofab-section-header .prekofab-col-5 {
  padding: 0;
  padding-left: 32px;
  padding-top: -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 41.66%;
}

.prekofab-section-header .prekofab-col-5 .prekofab-section-title {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.2;
  color: #000;
  margin: 0;
  text-align: left;
}

.prekofab-section-header .prekofab-col-5 .prekofab-section-title span {
  color: #8D8F94;
}

.prekofab-section-header .prekofab-col-3 {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  width: 25%;
}

.prekofab-section-header .prekofab-col-3 .prekofab-explore-btn {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background: #000;
  padding: 15px 27px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 1px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  display: inline-block;
}

.prekofab-section-header .prekofab-col-3 .prekofab-explore-btn:hover {
  opacity: 0.9;
}

@media (max-width: 820px) {
  .prekofab-section-header .prekofab-col-4 {
    width: 100%;
    margin-bottom: 16px;
  }
  .prekofab-section-header .prekofab-col-4 .prekofab-line-wrapper .prekofab-line-container .prekofab-line {
    width: 100%;
  }
  .prekofab-section-header .prekofab-col-4 .prekofab-line-wrapper .prekofab-line-container .prekofab-arrow-icon {
    display: none;
  }
  .prekofab-section-header .prekofab-col-5 {
    width: 100%;
    padding-left: 0;
  }
  .prekofab-section-header .prekofab-col-5 .prekofab-section-title {
    font-size: 36px;
  }
  .prekofab-section-header .prekofab-col-3 {
    display: none;
  }
  .prekofab-section-header .prekofab-2-col-8 {
    width: 100%;
    padding-left: 0;
    padding-bottom: 30px;
  }
  .prekofab-section-header .prekofab-2-col-8 .prekofab-section-title {
    font-size: 36px;
  }
  .prekofab-section-header .prekofab-col-3 {
    display: none;
  }
}

.prekofab-2-col-8 {
  padding: 0;
  padding-left: 32px;
  padding-top: -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 66.66%;
}

.prekofab-2-col-8 .prekofab-section-title {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.2;
  color: #000;
  margin: 0;
  text-align: left;
}

.prekofab-2-col-8 .prekofab-section-title span {
  color: #8D8F94;
}

@media screen and (min-width: 820px) and (max-width: 1024px) {
  .blog-posts {
    padding: 0 24px;
    padding-bottom: 100px;
  }
  .our-vision {
    margin-bottom: 72px !important;
  }
}

@media screen and (min-width: 0px) and (max-width: 1023px) {
  #contact-us-section-header {
    padding: 0 24px;
  }
}

@media screen and (min-width: 1023px) and (max-width: 3000px) {
  #contact-us-section-header {
    padding: 0 56px;
  }
}

/* Yatay mod (1024x768 px) */
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .hero-slider .hero-content .container {
    padding-top: 20vh;
  }
  .full-width-slider .slider .slide-track .slide {
    height: 250px;
  }
}

/* Yatay mod (1024x768 px) */
@media screen and (min-width: 820px) and (max-width: 1180px) and (orientation: landscape) {
  .full-width-slider .slider .slide-track .slide {
    height: 250px;
  }
}

/* Yatay mod (1024x768 px) */
@media screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
  .full-width-slider .slider .slide-track .slide {
    height: 250px;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1200px) {
  .full-width-slider .slider .slide-track .slide {
    height: 250px;
  }
}

/* Category Archive */
.container-fluid-archive {
  padding-left: 56px;
  padding-right: 56px;
}

@media (max-width: 1200px) {
  .container-fluid-archive {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.category-hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

@media (max-width: 992px) {
  .category-hero {
    height: 60vh;
  }
}

@media (max-width: 820px) {
  .category-hero {
    height: 60vh;
  }
}

@media (max-width: 768px) {
  .category-hero {
    height: 80vh !important;
  }
}

@media (min-width: 1024px) and (max-width: 1200px) {
  .category-hero {
    height: 50vh;
  }
}

.category-hero .category-hero-content {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-top: 0;
  padding-bottom: 56px;
  height: 100%;
}

.category-hero .category-hero-content .container-fluid {
  padding: 0 56px;
}

@media (max-width: 1200px) {
  .category-hero .category-hero-content .container-fluid {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) and (max-width: 1200px) {
  .category-hero .category-hero-content {
    padding-bottom: 50px;
  }
}

.category-hero .category-hero-content .category-hero-title {
  color: #fff;
  font-size: 56px;
  font-weight: 500;
  padding: 48px;
  background-color: transparent;
  -webkit-backdrop-filter: blur(35px);
          backdrop-filter: blur(35px);
}

.category-hero .category-hero-content .category-hero-title span {
  color: #989796;
}

@media (max-width: 1200px) and (min-width: 1024px) {
  .category-hero .category-hero-content .category-hero-title {
    font-size: 56px;
    padding: 48px;
    margin-bottom: 0px;
  }
}

@media (max-width: 992px) {
  .category-hero .category-hero-content .category-hero-title {
    font-size: 42px;
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .category-hero .category-hero-content .category-hero-title {
    font-size: 36px;
    padding: 32px;
  }
}

.category-hero .category-hero-content .category-hero-line {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.category-hero .category-hero-content .category-hero-line::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: -1;
}

.category-hero .category-hero-content .category-hero-line .category-hero-arrow {
  position: relative;
  z-index: 1;
}

.category-hero .category-hero-content .category-hero-text {
  color: #fff;
  font-size: 24px;
}

@media (max-width: 1024px) {
  .category-hero .category-hero-content .category-hero-text {
    margin-left: 0;
    margin-right: 0;
    font-size: 20px;
    padding-top: 30px;
  }
}

.category-hero .category-hero-content .col-lg-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.category-hero .category-hero-content .col-lg-3 .category-hero-line {
  position: relative;
  height: 2px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 40px;
  margin-top: 0;
}

.category-hero .category-hero-content .col-lg-3 .category-hero-line::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: calc(100% - 40px);
  height: 2px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.category-hero .category-hero-content .col-lg-3 .category-hero-line .category-hero-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 40px;
  z-index: 2;
}

@media (max-width: 1023px) {
  .category-hero .category-hero-content .col-lg-3 .category-hero-line {
    display: none;
  }
}

.category-hero .category-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.432);
}

.category-hero .category-hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black !important;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.6)), color-stop(60%, rgba(0, 0, 0, 0))) !important;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 60%) !important;
}

.category-hero .category-hero-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black !important;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.6)), color-stop(35%, rgba(0, 0, 0, 0))) !important;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 35%) !important;
}

.category-hero .category-hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .category-hero {
    height: 100vh;
  }
  .category-hero .category-hero-content {
    padding-top: 0;
    padding-bottom: 56px;
    height: 100%;
  }
}

.category-grid {
  padding-top: 56px;
  margin-bottom: 144px;
  background: #fff;
}

@media (max-width: 1200px) {
  .category-grid {
    margin-bottom: 72px;
  }
}

.category-grid .container-fluid {
  padding: 0 56px;
}

@media (max-width: 1200px) {
  .category-grid .container-fluid {
    padding: 0 24px;
  }
}

.category-grid .row {
  margin: 0 -12px;
  row-gap: 56px;
}

@media (max-width: 768px) {
  .category-grid .row {
    row-gap: 32px;
  }
}

@media (min-width: 1024px) and (max-width: 1200px) {
  .category-grid .row .col-lg-4 {
    width: 50%;
  }
}

.category-grid .row .col-lg-4 {
  padding: 0 12px;
}

.category-grid .grid-item {
  position: relative;
  width: 100%;
  height: unset;
  aspect-ratio: 9/10;
  overflow: hidden;
  cursor: pointer;
}

.category-grid .grid-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.category-grid .grid-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  opacity: 0.85;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.category-grid .grid-item:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.category-grid .grid-item:hover::after {
  opacity: 1;
}

.category-grid .grid-item:hover .grid-content .grid-number {
  color: #fff;
}

.category-grid .grid-item:hover .grid-content h3 {
  color: #fff;
}

.category-grid .grid-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.category-grid .grid-item .grid-content {
  position: absolute;
  bottom: 40px;
  left: 24px;
  z-index: 2;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

.category-grid .grid-item .grid-content .grid-number {
  color: #ffffff99;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.category-grid .grid-item .grid-content h3 {
  color: #ffffff99;
  font-size: 24px !important;
  font-weight: 500;
  margin: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 992px) {
  .category-grid .grid-item {
    height: unset;
    aspect-ratio: 9/11;
  }
  .category-grid .grid-item .grid-content {
    bottom: 24px;
    left: 24px;
  }
  .category-grid .grid-item .grid-content h3 {
    font-size: 20px !important;
  }
}

@media (max-width: 768px) {
  .category-grid .grid-item {
    height: unset;
    aspect-ratio: 9/11;
  }
}

.breadcrumb-nav {
  padding: 24px 0;
  background: #fff;
  border-top: none;
  margin-bottom: 72px;
}

.breadcrumb-nav .container-fluid {
  padding: 0 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 1200px) {
  .breadcrumb-nav .container-fluid {
    padding: 0 24px;
  }
}

.breadcrumb-nav .breadcrumb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.breadcrumb-nav .breadcrumb-list li {
  font-size: 14px;
  font-weight: 500;
  color: #1A1B1E;
  font-family: 'Inter Tight', sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.breadcrumb-nav .breadcrumb-list li a {
  color: #8D8F94;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.breadcrumb-nav .breadcrumb-list li a img {
  width: 24px;
  height: 24px;
}

.breadcrumb-nav .breadcrumb-list li a:hover {
  color: #000;
}

@media (max-width: 767px) {
  .bento-grid {
    height: unset !important;
    aspect-ratio: 9/11 !important;
  }
  .bento-grid img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media (min-width: 768px) and (max-width: 819px) {
  .bento-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Product Hero */
#product-hero-row {
  padding-bottom: 40px !important;
}

@media (max-width: 1200px) {
  #product-hero-row {
    padding-bottom: 0px !important;
  }
}

.product-line-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  padding-top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.product-line-wrapper .product-subtitle {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 0;
}

.product-line-wrapper .product-subtitle span {
  color: rgba(255, 255, 255, 0.32);
}

.product-line-wrapper .product-line-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  position: relative;
  height: 40px;
}

.product-line-wrapper .product-line-container .product-line {
  display: block;
  width: calc(100% - 40px);
  height: 1px;
  background: rgba(255, 255, 255, 0.32);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

.product-line-wrapper .product-line-container .product-arrow-icon {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}

@media (max-width: 1023px) {
  .product-line-wrapper .product-line-container .product-arrow-icon {
    display: none;
  }
}

.product-hero-title {
  color: #fff;
  font-size: 56px;
  font-weight: 500;
  margin: 0;
  padding-top: 16;
  width: 60%;
  padding-left: 56px;
}

@media (max-width: 1200px) {
  .product-hero-title {
    width: 100%;
  }
}

@media (max-width: 1200px) and (min-width: 1024px) {
  .product-hero-title {
    font-size: 56px;
    margin-bottom: 0px;
  }
}

@media (max-width: 992px) {
  .product-hero-title {
    font-size: 42px;
  }
}

@media (max-width: 1023px) {
  .product-hero-title {
    font-size: 36px;
    padding-left: 0px;
  }
}

/* Category Hero Image Filter */
.category-hero-image {
  position: relative;
}

.category-hero-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: black;
  background: linear-gradient(10deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.397) 30%);
}

.category-hero-image img {
  position: relative;
  z-index: 0;
  opacity: 1;
}

/* Filter Section */
.filter-section {
  padding-top: 72px;
  background-color: #fff;
  position: relative;
}

.filter-section .container-fluid {
  padding: 0 56px;
}

@media (max-width: 1200px) {
  .filter-section .container-fluid {
    padding: 0 24px;
  }
}

.filter-section .filter-dropdown {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.filter-section .filter-dropdown .filter-btn {
  background-color: rgba(0, 0, 0, 0.04);
  border: none;
  padding: 15px;
  font-size: 14px;
  font-weight: 500;
  color: #1A1B1E;
  font-family: 'Inter Tight', sans-serif;
  letter-spacing: 1.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  cursor: pointer;
  border-radius: 90px;
}

.filter-section .filter-dropdown .filter-btn .dropdown-icon {
  width: 20px;
  height: 20px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  margin-top: -2px;
}

.filter-section .filter-dropdown .filter-btn:hover {
  color: #000;
  background-color: rgba(0, 0, 0, 0.06);
}

.filter-section .filter-dropdown .filter-btn.active .dropdown-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.filter-section .filter-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 240px;
  background-color: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin-top: 8px;
  padding: 8px 0;
  z-index: 10;
  display: none;
}

.filter-section .filter-dropdown .dropdown-menu.show {
  display: block;
}

.filter-section .filter-dropdown .dropdown-menu .dropdown-item {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 400;
  color: #1A1B1E;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.filter-section .filter-dropdown .dropdown-menu .dropdown-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.filter-section #categoryDropdownContainer .dropdown-menu {
  left: auto;
  right: 0;
}

.filter-section .filter-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.08);
  margin: 24px 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .filter-section .row .col-12 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 8px;
  }
  .filter-section .filter-dropdown {
    width: calc(50% - 4px);
  }
  .filter-section .filter-dropdown .filter-btn {
    width: 100%;
    padding: 15px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 12px;
  }
  .filter-section .filter-dropdown .dropdown-menu {
    width: 100%;
  }
  .filter-section #categoryDropdownContainer .dropdown-menu {
    width: 100%;
  }
}

/* Product Grid Section */
.product-grid-section {
  padding: 0 0 80px;
  background-color: #fff;
}

.product-grid-section .container-fluid {
  padding: 0 56px;
}

@media (max-width: 1200px) {
  .product-grid-section .container-fluid {
    padding: 0 24px;
  }
}

.product-grid-section .row {
  margin-left: -12px;
  margin-right: -12px;
}

.product-grid-section .row [class*="col-"] {
  margin-bottom: 56px;
  position: relative;
  padding-left: 12px;
  padding-right: 12px;
}

@media (max-width: 767px) {
  .product-grid-section .row [class*="col-"] {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media (max-width: 1023px) {
  .product-grid-section .container-fluid {
    padding: 0 24px;
  }
  .product-grid-section .row {
    margin-left: 0;
    margin-right: 0;
  }
  .product-grid-section [class*="col-lg-4"] {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .product-grid-section .container-fluid {
    padding: 0 24px;
  }
  .product-grid-section .row {
    margin-left: -12px;
    margin-right: -12px;
  }
  .product-grid-section .row [class*="col-lg-4"] {
    width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
    padding-left: 12px;
    padding-right: 12px;
  }
}

.product-grid-section .product-card {
  background-color: #fff;
  overflow: hidden;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  text-decoration: none;
}

.product-grid-section .product-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.product-grid-section .product-card .product-image {
  width: 100%;
  height: unset;
  aspect-ratio: 3/2;
  position: relative;
  overflow: hidden;
}

.product-grid-section .product-card .product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.product-grid-section .product-card .product-image:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.product-grid-section .product-card .product-info {
  padding: 24px 0 56px 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.product-grid-section .product-card .product-info .product-title {
  font-size: 28px;
  font-weight: 500;
  color: #1A1B1E;
  margin-bottom: 24px;
  text-align: center;
  font-family: 'Inter Tight', sans-serif;
  text-decoration: none;
}

.product-grid-section .product-card .product-info .product-specs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.product-grid-section .product-card .product-info .product-specs .spec-item {
  width: 33.33%;
  margin-bottom: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-family: 'Inter Tight', sans-serif;
  position: relative;
}

.product-grid-section .product-card .product-info .product-specs .spec-item:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 32px;
  width: 1px;
  background-color: rgba(0, 0, 0, 0.08);
}

.product-grid-section .product-card .product-info .product-specs .spec-item .spec-label {
  font-size: 12px;
  font-weight: 500;
  color: #3B3D42;
  margin-bottom: 4px;
  font-family: 'Inter Tight', sans-serif;
}

.product-grid-section .product-card .product-info .product-specs .spec-item .spec-value {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  font-family: 'Inter Tight', sans-serif;
}

@media (max-width: 767px) {
  .product-grid-section {
    padding: 32px 0 64px;
  }
  .product-grid-section .product-card .product-info {
    padding: 24px 0 32px 0;
  }
  .product-grid-section .product-card .product-info .product-title {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 24px;
    color: #1A1B1E;
  }
  .product-grid-section .product-card .product-info .product-specs .spec-item .spec-label {
    font-size: 12px;
    color: #3B3D42;
  }
  .product-grid-section .product-card .product-info .product-specs .spec-item .spec-value {
    font-size: 16px;
    color: #000;
  }
}

/* Product Single */
.product-single-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  z-index: 2;
  margin-top: 40px;
  gap: 24px;
}

@media (max-width: 1200px) {
  .product-single-cards {
    padding: 0 0px;
  }
}

.product-single-cards .product-single-card {
  background: transparent;
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  padding: 32px 24px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 220px;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.product-single-cards .product-single-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.product-single-cards .product-single-card .card-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  text-align: left;
}

.product-single-cards .product-single-card .card-content h3 {
  width: 100%;
  font-size: 16px !important;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4px;
  text-align: left;
  letter-spacing: 1px;
  font-family: 'Inter Tight', sans-serif;
}

.product-single-cards .product-single-card .card-content p {
  width: 100%;
  font-size: 24px;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 0;
  font-weight: 500;
  text-align: left;
}

@media (max-width: 1200px) {
  .product-single-cards {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .product-single-cards .product-single-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 12px);
            flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 767px) {
  .product-single-cards .product-single-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .product-single-cards .product-single-card img {
    margin-bottom: 0;
    margin-right: 16px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .product-single-cards .product-single-card .card-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-left: 20px !important;
  }
  .product-single-cards .product-single-card .card-content h3 {
    margin-bottom: 4px;
  }
  .product-single-cards .product-single-card .card-content p {
    margin-top: 0;
  }
}

/* Hero Sections */
#product-single-hero {
  height: 100vh;
  margin-bottom: 96px;
}

@media (max-width: 1200px) {
  #product-single-hero {
    height: 100vh !important;
  }
}

@media (max-width: 991px) {
  #product-single-hero {
    height: 100vh !important;
  }
}

@media (max-width: 767px) {
  #product-single-hero {
    height: 100vh !important;
  }
}

#product-features-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 56px;
}

@media (max-width: 1023px) {
  #product-features-content {
    gap: 24px;
  }
}

#product-features-content p {
  font-size: 18px;
  font-weight: 500;
  color: #1A1B1E;
  margin-bottom: 32px;
}

@media (max-width: 1023px) {
  #product-features-content p {
    margin-bottom: 0px;
  }
}

.product-features-content p {
  font-size: 18px;
  font-weight: 500;
  color: #1A1B1E;
  margin-bottom: 56px;
  padding: 0px !important;
}

@media (max-width: 767px) {
  .product-features-content p {
    margin-bottom: 40px;
  }
}

.product-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 16px;
}

@media (max-width: 1023px) {
  .product-buttons .col-4 {
    display: none;
  }
}

.product-buttons .product-button-black {
  background-color: #1A1B1E;
  border: 1px solid #1A1B1E;
  color: #fff;
  padding: 16px 50px;
  border-radius: 90px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.5s ease !important;
  transition: all 0.5s ease !important;
  font-family: 'Inter Tight', sans-serif;
}

.product-buttons .product-button-black:hover {
  background-color: transparent;
  border: 1px solid #1A1B1E;
  color: #1A1B1E;
  -webkit-backdrop-filter: blur(35px);
          backdrop-filter: blur(35px);
}

.product-buttons .product-button-black:hover img {
  -webkit-filter: invert(1);
          filter: invert(1);
}

.product-buttons .product-button-black img {
  width: 16px;
  height: 16px;
}

.product-buttons .product-button-white {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #1A1B1E;
  padding: 16px 50px;
  border-radius: 90px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.5s ease !important;
  transition: all 0.5s ease !important;
  font-family: 'Inter Tight', sans-serif;
}

.product-buttons .product-button-white:hover {
  background-color: #1A1B1E;
  color: #fff;
  -webkit-backdrop-filter: blur(35px);
          backdrop-filter: blur(35px);
}

.product-buttons .product-button-white:hover img {
  -webkit-filter: invert(1);
          filter: invert(1);
}

.product-buttons .product-button-white img {
  width: 16px;
  height: 16px;
}

@media (max-width: 767px) {
  .product-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 !important;
  }
}

/* Product Single Slider */
.product-single-slider-section {
  padding: 144px 0 !important;
}

@media (max-width: 1023px) {
  .product-single-slider-section {
    padding: 72px 0 !important;
  }
}

@media (max-width: 767px) {
  .product-single-slider-section {
    padding: 72px 0 !important;
  }
}

.product-single-slider {
  position: relative;
  overflow: visible;
  padding: 20px 0;
}

.product-single-slider .swiper-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-single-slider .product-single-slide {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
  opacity: 0.7;
}

.product-single-slider .product-single-slide.product-single-slide-large, .product-single-slider .product-single-slide.swiper-slide-active {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
  z-index: 2;
}

.product-single-slider .product-single-slide .product-single-image {
  border-radius: 16px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-single-slider .product-single-slide .product-single-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.product-single-slider .product-single-slide .product-single-image:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.product-single-slider .swiper-button-next,
.product-single-slider .swiper-button-prev {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  color: #1A1B1E;
}

.product-single-slider .swiper-button-next::after,
.product-single-slider .swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

.product-single-slider .swiper-button-next:hover,
.product-single-slider .swiper-button-prev:hover {
  background-color: #1A1B1E;
  color: #fff;
}

.product-single-slider .swiper-button-next {
  right: -25px;
}

.product-single-slider .swiper-button-prev {
  left: -25px;
}

@media (max-width: 991px) {
  .product-single-slider .swiper-button-next {
    right: 10px;
  }
  .product-single-slider .swiper-button-prev {
    left: 10px;
  }
}

@media (max-width: 767px) {
  .product-single-slider .product-single-slide {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .product-single-slider .product-single-slide.product-single-slide-large, .product-single-slider .product-single-slide.swiper-slide-active {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.product-grid-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .product-grid-navigation {
    margin-top: 40px;
  }
}

.grid-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-right: 32px;
}

.grid-pagination .pagination-bullet {
  display: inline-block;
  height: 2px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0.16);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.grid-pagination .pagination-bullet.active {
  background-color: #1A1B1E;
  height: 3px;
}

.grid-pagination .pagination-bullet:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.grid-nav-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.grid-nav-buttons .grid-nav-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  height: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.grid-nav-buttons .grid-nav-button img {
  width: 40px;
  height: 40px;
}

.product-single-grid-section {
  padding: 144px 0;
}

@media (max-width: 1023px) {
  .product-single-grid-section {
    padding: 72px 0;
  }
}

@media (max-width: 767px) {
  .product-single-grid-section {
    padding: 72px 0;
  }
}

.product-single-grid-section .grid-item {
  overflow: hidden;
}

.product-single-grid-section .grid-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.product-single-grid-section .grid-item img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.product-single-grid-section .grid-item-large {
  height: unset;
  aspect-ratio: 2/1.5;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  /* Prevent text selection during drag */
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  /* Allow vertical scrolling but handle horizontal swipes */
  -webkit-transition: -webkit-transform 0.6s ease !important;
  transition: -webkit-transform 0.6s ease !important;
  transition: transform 0.6s ease !important;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease !important;
  position: relative;
  /* Badge için position relative eklendi */
}

.product-single-grid-section .grid-item-large:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.product-single-grid-section .grid-item-large img {
  height: 100%;
  pointer-events: none;
  /* Prevent image drag */
  -webkit-transition: -webkit-transform 0.6s ease !important;
  transition: -webkit-transform 0.6s ease !important;
  transition: transform 0.6s ease !important;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

.product-single-grid-section .grid-item-small-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  height: unset;
  aspect-ratio: 1/1;
}

@media (max-width: 1023px) and (min-width: 820px) {
  .product-single-grid-section .grid-item-small-container {
    height: 400px;
    gap: 12px;
  }
}

@media (max-width: 820px) {
  .product-single-grid-section .grid-item-small-container {
    display: none;
  }
}

.product-single-grid-section .grid-item-small {
  height: unset;
  aspect-ratio: 16/12;
  position: relative;
}

.product-single-grid-section .grid-item-small img {
  -webkit-transition: all 0.5s ease, opacity 1s ease !important;
  transition: all 0.5s ease, opacity 1s ease !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

.product-single-grid-section .grid-item-small:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.product-single-card-swiper-section {
  padding-bottom: 144px !important;
}

@media (max-width: 1023px) {
  .product-single-card-swiper-section {
    padding: 72px 0 !important;
  }
}

.product-single-card-swiper-section .product-single-card-swiper-title {
  margin-bottom: 60px;
}

.product-single-card-swiper-section .product-single-card-swiper-title h2 {
  font-size: 36px;
  font-weight: 500;
  color: #1A1B1E;
}

@media (max-width: 767px) {
  .product-single-card-swiper-section .product-single-card-swiper-title h2 {
    font-size: 28px;
  }
}

.product-single-card-swiper-section .product-single-card {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.product-single-card-swiper-section .product-single-card .product-single-image {
  position: relative;
  overflow: hidden;
  height: 400px;
  /* Resim yüksekliği - 3:5 aspect ratio için */
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.product-single-card-swiper-section .product-single-card .product-single-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.product-single-card-swiper-section .product-single-card .product-single-image img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.product-single-card-swiper-section .product-single-card .product-single-info {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.product-single-card-swiper-section .product-single-card .product-single-info .product-single-title {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 16px;
  padding-top: 24px;
  color: #1A1B1E;
  text-align: center;
}

.product-single-card-swiper-section .product-single-card .product-single-info .product-single-specs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.product-single-card-swiper-section .product-single-card .product-single-info .product-single-specs .product-single-spec-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: 33.33%;
}

.product-single-card-swiper-section .product-single-card .product-single-info .product-single-specs .product-single-spec-item .spec-label {
  font-size: 12px;
  color: #3B3D42;
  margin-bottom: 4px;
}

.product-single-card-swiper-section .product-single-card .product-single-info .product-single-specs .product-single-spec-item .spec-value {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  padding-bottom: 56px;
}

@media (max-width: 767px) {
  .product-single-card-swiper-section .product-single-card .product-single-info .product-single-specs {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .product-single-card-swiper-section .product-single-card .product-single-info .product-single-specs .product-single-spec-item {
    width: 33.33%;
    margin-bottom: 16px;
  }
}

.product-single-card-swiper-section .similar-products-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
  width: 100%;
}

.product-single-card-swiper-section .similar-products-navigation .similar-products-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 0;
  /* Boşluk kaldırıldı */
}

.product-single-card-swiper-section .similar-products-navigation .similar-products-pagination .pagination-bullet {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 3px;
  background-color: #E9ECEF;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.product-single-card-swiper-section .similar-products-navigation .similar-products-pagination .pagination-bullet.active {
  background-color: #1A1B1E;
}

.product-single-card-swiper-section .similar-products-navigation .similar-products-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-left: 32px;
}

.product-single-card-swiper-section .similar-products-navigation .similar-products-buttons .similar-products-button {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.product-single-card-swiper-section .similar-products-navigation .similar-products-buttons .similar-products-button:hover {
  opacity: 0.7;
}

.product-single-card-swiper-section .similar-products-navigation .similar-products-buttons .similar-products-button img {
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .product-single-card-swiper-section .product-single-card {
    height: 380px;
    /* Mobilde biraz daha küçük */
  }
  .product-single-card-swiper-section .product-single-image {
    height: 220px;
    /* Mobilde biraz daha küçük */
  }
  .product-single-card-swiper-section .product-single-info {
    padding: 16px;
  }
  .product-single-card-swiper-section .product-single-info .product-single-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
}

.swiper.productCardSwiper {
  height: auto !important;
  margin-bottom: 40px;
}

.swiper.productCardSwiper .swiper-slide {
  height: auto !important;
}

@media (max-width: 768px) {
  .swiper.productCardSwiper .swiper-slide {
    height: auto !important;
  }
}

.product-single-card-swiper-section {
  padding: 0;
}

@media (max-width: 1023px) {
  .product-single-card-swiper-section {
    padding: 72px 0;
  }
}

@media (max-width: 767px) {
  .product-single-card-swiper-section {
    padding: 40px 0 !important;
  }
}

.product-single-card-swiper-section .product-single-card {
  overflow: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  height: auto !important;
}

@media (max-width: 768px) {
  .product-single-card-swiper-section .product-single-card {
    height: auto !important;
    min-height: auto;
    /* Minimum yükseklik ayarı */
  }
}

.product-single-card-swiper-section .product-single-card .product-single-image {
  position: relative;
  overflow: hidden;
  height: 400px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (max-width: 768px) {
  .product-single-card-swiper-section .product-single-card .product-single-image {
    height: 220px;
  }
}

.product-single-card-swiper-section .product-single-card .product-single-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.product-single-card-swiper-section .product-single-card .product-single-image img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.product-single-card-swiper-section .product-single-card .product-single-info {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 24px;
}

@media (max-width: 768px) {
  .product-single-card-swiper-section .product-single-card .product-single-info {
    padding: 16px;
    display: block !important;
  }
}

.product-single-card-swiper-section .product-single-card .product-single-info .product-single-title {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 16px;
  padding-top: 24px;
  color: #1A1B1E;
  text-align: center;
}

@media (max-width: 768px) {
  .product-single-card-swiper-section .product-single-card .product-single-info .product-single-title {
    font-size: 20px;
    margin-bottom: 12px;
    padding-top: 12px;
    display: block !important;
  }
}

.product-single-card-swiper-section .product-single-card .product-single-info .product-single-specs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media (max-width: 768px) {
  .product-single-card-swiper-section .product-single-card .product-single-info .product-single-specs {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
}

.product-single-card-swiper-section .product-single-card .product-single-info .product-single-specs .product-single-spec-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: 33.33%;
}

@media (max-width: 768px) {
  .product-single-card-swiper-section .product-single-card .product-single-info .product-single-specs .product-single-spec-item {
    width: 33.33%;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.product-single-card-swiper-section .product-single-card .product-single-info .product-single-specs .product-single-spec-item .spec-label {
  font-size: 12px;
  color: #3B3D42;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .product-single-card-swiper-section .product-single-card .product-single-info .product-single-specs .product-single-spec-item .spec-label {
    display: block !important;
  }
}

.product-single-card-swiper-section .product-single-card .product-single-info .product-single-specs .product-single-spec-item .spec-value {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

@media (max-width: 768px) {
  .product-single-card-swiper-section .product-single-card .product-single-info .product-single-specs .product-single-spec-item .spec-value {
    display: block !important;
    padding-bottom: 32px;
  }
}

#product-features-header {
  margin-bottom: 56px !important;
}

@media (max-width: 820px) {
  #product-features-header {
    margin-bottom: 0px !important;
  }
}

.grid-item-large img, .grid-item-small img {
  -webkit-transition: -webkit-transform 0.6s ease !important;
  transition: -webkit-transform 0.6s ease !important;
  transition: transform 0.6s ease !important;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease !important;
}

.image-count-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background-color: white;
  color: #1A1B1E;
  border-radius: 90px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  font-weight: 500;
  z-index: 10;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 0 24px;
}

.image-count-badge img {
  width: 16px !important;
  height: 16px !important;
  margin-right: 8px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-item-align: center;
      align-self: center;
}

.image-count-badge span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-item-align: center;
      align-self: center;
  line-height: 1;
  position: relative;
  top: 1px;
}

.image-count-badge.mobile-badge {
  display: none;
  /* Varsayılan olarak gizli */
}

@media (max-width: 820px) {
  .image-count-badge.mobile-badge {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    /* Mobil görünümde göster - !important eklendi */
  }
}

.image-count-badge.desktop-badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* Varsayılan olarak görünür */
}

@media (max-width: 820px) {
  .image-count-badge.desktop-badge {
    display: none;
    /* Mobil görünümde gizle */
  }
}

#contact-card h3 {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.72) !important;
}

#contact-card p {
  font-size: 20px !important;
  font-weight: 500 !important;
  color: #fff !important;
}

#contact-hero {
  margin-bottom: 0px !important;
}

/* Ürün kartlarındaki link alt çizgilerini kaldırma */
.product-card a,
a .product-card,
.col-lg-4 a,
.col-md-6 a {
  text-decoration: none;
}

/* Hover durumunda da alt çizgi gösterme */
.product-card a:hover,
a .product-card:hover,
.col-lg-4 a:hover,
.col-md-6 a:hover {
  text-decoration: none;
}

/* Konum Tabları - Full Width Düzenleme */
.contact-section {
  padding: 0px 0;
}

.contact-location-container {
  width: 100%;
}

.location-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
  border-bottom: none !important;
  /* Ana çizgi kesinlikle kaldırılıyor */
}

.location-tab {
  font-size: 16px;
  font-weight: 500;
  padding: 15px 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #666;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  border: none !important;
}

.location-tab:after,
.location-tab:before,
.location-tab.active:after,
.location-tab.active:before {
  display: none !important;
  /* Tüm pseudo-element çizgileri kaldırılıyor */
  content: none !important;
}

/* Konum seçenekleri arasındaki çizgiler de kaldırılsın */
.location-tab + .location-tab {
  border-left: none !important;
}

/* Tab alt çizgisi (border-bottom) kaldırılıyor */
.contact-section .location-tabs,
.contact-section .location-tab {
  border-bottom: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.location-tab.active {
  color: #000;
}

/* Active tab'ın altındaki çizgiyi kaldır */
.location-tab.active:after {
  display: none;
}

/* Tab Container'ı Tam Genişlikte Yap */
.contact-section .container-fluid {
  padding: 0 56px;
}

@media (max-width: 1023px) {
  .contact-section .container-fluid {
    padding: 0 24px;
  }
}

/* İletişim Formu Stili */
.contact-content {
  margin: 64px 0;
}

.contact-heading {
  font-size: 56px;
  font-weight: 500;
  margin-bottom: 48px;
}

.contact-form {
  max-width: 100%;
}

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.form-group.full-width {
  width: 100%;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #5D6069;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.078);
  font-size: 14px;
  border-radius: 24px;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group.checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.form-group.checkbox input {
  width: auto;
}

.form-group.checkbox label {
  font-size: 14px;
  margin-bottom: 0;
}

.form-group.checkbox a {
  color: #000;
  text-decoration: none;
}

.send-button {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 12px 40px;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.send-button:hover {
  background-color: #333;
}

/* Harita Stili */
.map-container {
  height: 600px;
  width: 95%;
  margin: 0 auto;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.map-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.map-frame.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive Düzenlemeler */
@media (max-width: 991px) {
  .form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  .map-container {
    margin-top: 30px;
    height: 350px;
  }
  .location-tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .location-tab {
    margin-bottom: 10px;
  }
}

/* Harita column'unu düzenle */
.contact-content .col-lg-6:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  /* Sağa hizalama */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* Contact sayfası form placeholder rengi */
.contact-form input::-webkit-input-placeholder,
.contact-form textarea::-webkit-input-placeholder {
  color: #4F5159;
}
.contact-form input:-ms-input-placeholder,
.contact-form textarea:-ms-input-placeholder {
  color: #4F5159;
}
.contact-form input::-ms-input-placeholder,
.contact-form textarea::-ms-input-placeholder {
  color: #4F5159;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #4F5159;
}

.contact-form input::-webkit-input-placeholder,
.contact-form textarea::-webkit-input-placeholder {
  color: #4F5159;
}

.contact-form input::-moz-placeholder,
.contact-form textarea::-moz-placeholder {
  color: #4F5159;
}

.contact-form input:-ms-input-placeholder,
.contact-form textarea:-ms-input-placeholder {
  color: #4F5159;
}

.contact-form input:-moz-placeholder,
.contact-form textarea:-moz-placeholder {
  color: #4F5159;
}

/* Contact formundaki elemanların border-radius değerlerini sıfırlama */
.contact-form input,
.contact-form textarea,
.contact-form select,
.contact-form button {
  border-radius: 0 !important;
}

/* Mesaj textarea'sı için özel ayarlar */
.contact-form textarea {
  height: 168px !important;
  border-radius: 24px !important;
}

/* Contact formundaki elemanların border-radius değerlerini özelleştirme */
.contact-form input,
.contact-form select,
.contact-form button {
  border-radius: 40px !important;
}

/* Mesaj textarea'sı için özel ayarlar */
.contact-form textarea {
  height: 168px !important;
  border-radius: 24px !important;
}

/* Harita container genişliği */
.map-container {
  width: 90%;
  margin: 0 auto;
  height: 100%;
}

/* Form düzeni ayarları */
.contact-form .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.contact-form .form-group {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact-form .form-group.full-width {
  margin-bottom: 40px;
}

/* Mesaj textarea'sı ile checkbox arası mesafe */
.contact-form .form-group.full-width {
  margin-bottom: 24px;
}

/* Radio button stillendirilmesi ve button arası mesafe */
.contact-form .form-group.checkbox {
  margin-bottom: 48px;
}

/* Radio button seçildiğinde renk */
.contact-form input[type="radio"]:checked + label::before {
  background-color: #000000 !important;
  border-color: #000000 !important;
}

/* Radio button özelleştirme */
.contact-form input[type="radio"] {
  accent-color: #000000;
}

/* Lokasyon Tabları Responsive Düzeltme */
.location-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 24px;
  border-bottom: 1px solid #E0E0E0;
}

@media (max-width: 1023px) {
  .location-tabs {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    /* Yan yana dizilim */
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    /* Satır sonu yapmadan devam et */
    overflow-x: auto;
    /* Gerekirse yatay kaydırma */
    white-space: nowrap;
    /* Metinleri satır içinde tut */
    padding-bottom: 8px;
    /* Alt boşluk */
  }
}

.location-tab {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: #666;
  padding: 10px 24px;
  cursor: pointer;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

@media (max-width: 1023px) {
  .location-tab {
    padding: 8px 16px;
    /* Daha küçük padding */
    font-size: 16px;
    /* Daha küçük font */
  }
}

/* Tab Çizgilerini CSS'de gizle (HTML'den de kaldırıldı) */
.tab-dividers {
  display: none;
}

/* Tab tasarımı - her tab altında border olacak, aktifse siyah değilse gri */
.location-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
  border-bottom: none !important;
  /* Ana konteynerde border olmasın */
}

.location-tab {
  font-size: 16px;
  font-weight: 500;
  padding: 15px 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #666;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  border: none !important;
  border-bottom: 1px solid #e0e0e0 !important;
  /* Her tab'ın altında gri çizgi */
}

.location-tab.active {
  color: #000;
  border-bottom: 1px solid #000 !important;
  /* Aktif tab'ın altında siyah çizgi */
}

/* Tüm pseudo-elementleri temizleyelim */
.location-tab:after,
.location-tab:before,
.location-tab.active:after,
.location-tab.active:before {
  display: none !important;
  content: none !important;
}

/* Tablar için basit düzenleme */
.location-tab {
  border-bottom: 1px solid #e0e0e0 !important;
  /* Aktif olmayan tablar için gri alt çizgi */
}

.location-tab.active {
  border-bottom: 1px solid #000 !important;
  /* Aktif tab için siyah alt çizgi */
}

/* Önce çakışan tüm eski kodları temizle */
.location-tabs {
  border-bottom: none;
}

.location-tab:after,
.location-tab:before,
.location-tab.active:after,
.location-tab.active:before {
  content: none;
  display: none;
}

/* Tamamen yeni özel sınıflar oluştur */
.contact-section .location-tabs .location-tab {
  border: none;
  border-bottom: 1px solid #e0e0e0 !important;
  position: relative;
}

.contact-section .location-tabs .location-tab.active {
  border-bottom: 1px solid #000 !important;
}

/* Radio button boyutunu 24x24 pixel olarak ayarla */
.contact-form input[type="radio"] {
  width: 20px !important;
  height: 20px !important;
  margin-right: 16px;
  /* Sağdaki yazı ile arasındaki boşluk */
  cursor: pointer;
  accent-color: #000;
  /* Renk siyah olsun */
}

/* Radio buton için etiketin font boyutu */
.contact-form .form-group.checkbox label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  /* Yazı boyutu 14px */
}

/* Link boşlukları için özel stil */
.contact-form .form-group.checkbox a {
  margin: 0 4px;
  /* Linklerin etrafına boşluk ekle */
}

/* Gönder butonu düzenlemesi */
.contact-form .send-button {
  padding: 16px 48px;
  font-size: 12px;
  font-weight: 500;
  font-family: 'Inter Tight', sans-serif;
  text-transform: uppercase;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact-form .send-button:hover {
  background-color: #333;
}

/* Harita container ayarları */
.map-container {
  width: 90%;
  margin: 0 auto;
  height: 720px;
  position: relative;
  aspect-ratio: 16/9;
  max-height: 720px;
  overflow: hidden;
}

/* Responsive ayarlar için */
@media (max-width: 1200px) {
  .map-container {
    height: 540px;
    /* Daha küçük ekranlarda küçült */
  }
}

@media (max-width: 767px) {
  .map-container {
    height: 432px;
    /* Mobil cihazlarda (767px altında) tam olarak 432px yükseklik */
    width: 100%;
    /* Mobilde tam genişlik */
    margin-top: 40px;
  }
  /* Mobilde buton tam genişlikte olsun */
  .contact-form .send-button {
    width: 100%;
    display: block;
    padding: 16px 0;
    /* Yatay padding'i sıfırla, sadece dikey padding kalsın */
  }
}

/* Checkbox/radio container'ı ve label ayarları */
.contact-form .form-group.checkbox {
  margin-bottom: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contact-form .form-group.checkbox input[type="radio"] {
  width: 20px !important;
  height: 20px !important;
  margin-right: 16px;
  margin-top: 2px;
  /* Dikey hizalama için hafif tepeden boşluk */
  -ms-flex-negative: 0;
      flex-shrink: 0;
  /* Radio butonun boyutunu koruması için */
}

.contact-form .form-group.checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* Mobilde text wrap için */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  word-spacing: 2px;
  /* Genel kelime boşluğu */
}

/* Link boşlukları için özel stil */
.contact-form .form-group.checkbox a {
  margin: 0 4px;
  white-space: nowrap;
  /* Linklerin bölünmemesi için */
}

/* Mobil görünüm için özel ayarlar */
@media (max-width: 767px) {
  .contact-form .form-group.checkbox label {
    line-height: 1.5;
    word-spacing: normal;
  }
  .contact-form .form-group.checkbox a {
    display: inline-block;
    margin: 2px 4px;
  }
}

/* Input focus durumunda border rengini değiştir */
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #000 !important;
  /* Siyah border */
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  /* Bootstrap'in default box-shadow'unu kaldır */
}

/* Autofill durumunda arka plan rengini düzelt */
.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus,
.contact-form textarea:-webkit-autofill,
.contact-form textarea:-webkit-autofill:hover,
.contact-form textarea:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset !important;
  /* Beyaz arka plan */
  -webkit-text-fill-color: #000;
  /* Siyah yazı rengi */
  border-color: #000 !important;
  /* Siyah border */
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  /* Arka plan rengi değişimini geciktir */
}

.checkbox-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .contact-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    /* Mobilde dikey hizalama */
  }
  .contact-form .send-button {
    width: 100%;
    /* Buton tam genişlikte olsun */
    margin-top: 16px;
    /* Buton ile üstteki eleman arasında boşluk bırak */
    display: block;
    /* Butonu blok eleman yap */
  }
}

@media (max-width: 767px) {
  .destkop-button-container {
    display: none !important;
    /* Mobilde gizle */
  }
}

@media (min-width: 767px) {
  .mobile-button-container {
    display: none !important;
    /* Mobilde göster */
  }
}

/* Lightbox için CSS */
.prekofab-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9999;
  opacity: 0;
  -webkit-animation: fadeIn 0.3s forwards;
          animation: fadeIn 0.3s forwards;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  padding: 5px 10px;
}

.lightbox-navigation {
  position: absolute;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}

.lightbox-prev, .lightbox-next {
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  pointer-events: auto;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(0, 0, 0, 0.8);
}

.lightbox-prev {
  margin-left: -60px;
}

.lightbox-next {
  margin-right: -60px;
}

/* Küçük ekranlar için düzenlemeler */
@media (max-width: 767px) {
  .lightbox-navigation {
    position: relative;
    margin-top: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
  .lightbox-prev, .lightbox-next {
    margin: 0;
  }
  .lightbox-content img {
    max-height: 70vh;
  }
}

/* Gelişmiş Lightbox için ek CSS */
.lightbox-counter {
  position: absolute;
  bottom: -30px;
  left: 0;
  color: white;
  font-size: 14px;
  font-family: 'Inter Tight', sans-serif;
}

.lightbox-thumbnails {
  position: absolute;
  bottom: -80px;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow-x: auto;
  padding-bottom: 10px;
}

.lightbox-thumbnail {
  width: 60px;
  height: 60px;
  border: 2px solid transparent;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.lightbox-thumbnail.active {
  border-color: white;
  opacity: 1;
}

.lightbox-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Görsellere hover efekti */
.grid-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.grid-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.grid-item:hover:before {
  opacity: 1;
}

.grid-item:after {
  content: '+';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: white;
  font-size: 30px;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.grid-item:hover:after {
  opacity: 1;
}

#media-group {
  padding-top: 56px;
}

@media (max-width: 1200px) {
  #media-group {
    display: none;
  }
}

@media (min-width: 1200px) {
  #media-destkop-group {
    display: none;
  }
}

.blog-archive-posts {
  padding: 0 0 0 0;
  background: #fff;
}

@media (max-width: 767px) {
  .blog-archive-posts .container-fluid {
    padding-left: 36px !important;
    padding-right: 36px !important;
  }
}

@media (min-width: 1200px) {
  .blog-archive-posts .col-xl-4 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .blog-archive-posts .col-xl-3 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .blog-archive-posts .col-xl-5 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 767px) {
  .blog-archive-posts .col-xl-4 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .blog-archive-posts .col-xl-3 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .blog-archive-posts .col-xl-5 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.blog-archive-posts .blog-post-card {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.blog-archive-posts .blog-post-card .post-image-col .post-image {
  aspect-ratio: 2.08 / 1;
  height: unset;
  overflow: hidden;
}

.blog-archive-posts .blog-post-card .post-image-col .post-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.blog-archive-posts .blog-post-card .post-image-col .post-image img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.blog-archive-posts .blog-post-card .post-header-col .post-header {
  padding-top: 8px;
}

@media (min-width: 1200px) {
  .blog-archive-posts .blog-post-card .post-header-col .post-header {
    padding-left: 24px !important;
  }
}

@media (max-width: 1200px) {
  .blog-archive-posts .blog-post-card .post-header-col .post-header {
    padding-left: 0 !important;
    padding-top: 0 !important;
  }
}

.blog-archive-posts .blog-post-card .post-header-col .post-header .post-date {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #8D8F94;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.blog-archive-posts .blog-post-card .post-header-col .post-header .post-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  color: #000;
  margin: 0;
  width: 90%;
}

@media (min-width: 1200px) and (max-width: 1500px) {
  .blog-archive-posts .blog-post-card .post-header-col .post-header .post-title {
    font-size: 26px !important;
  }
}

.blog-archive-posts .blog-post-card .post-content-col .post-content {
  padding-top: 40px;
}

.blog-archive-posts .blog-post-card .post-content-col .post-content .content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.blog-archive-posts .blog-post-card .post-content-col .post-content .content-wrapper p {
  font-size: 16px;
  line-height: 1.5;
  color: #3B3D42 !important;
  margin: 0 auto;
  width: 60%;
}

.blog-archive-posts .blog-post-card .post-content-col .post-content .content-wrapper .post-action .read-more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  gap: 8px;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
  color: white;
  padding: 15px 20px;
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 500;
  border-radius: 90px;
  text-decoration: none;
  text-transform: uppercase;
  background: #1A1B1E;
}

.blog-archive-posts .blog-post-card .post-content-col .post-content .content-wrapper .post-action .read-more:hover {
  opacity: 0.7;
}

.blog-archive-posts .blog-post-card .post-content-col .post-content .content-wrapper .post-action .read-more .read-more-icon {
  width: 16px;
  height: 16px;
}

@media (max-width: 1200px) {
  .blog-archive-posts .blog-post-card .post-content-col .post-content {
    padding-top: 0;
  }
  .blog-archive-posts .blog-post-card .post-content-col .post-content .content-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  .blog-archive-posts .blog-post-card .post-content-col .post-content .content-wrapper p {
    width: 100%;
  }
  .blog-archive-posts .blog-post-card .post-content-col .post-content .content-wrapper .post-action {
    width: 100%;
  }
  .blog-archive-posts .blog-post-card .post-content-col .post-content .content-wrapper .post-action .read-more {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.blog-archive-posts .blog-post-card .post-action-col .post-action {
  height: 100%;
  padding-top: 40px;
}

.blog-archive-posts .blog-post-card .post-action-col .post-action .read-more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  gap: 8px;
  color: white;
  padding: 16px 20px;
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 500;
  border-radius: 90px;
  text-decoration: none;
  text-transform: uppercase;
  background: #1A1B1E;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
}

.blog-archive-posts .blog-post-card .post-action-col .post-action .read-more:hover {
  opacity: 0.7;
}

.blog-archive-posts .blog-post-card .post-action-col .post-action .read-more .read-more-icon {
  width: 16px;
  height: 16px;
}

@media (max-width: 1200px) {
  .blog-archive-posts .blog-post-card .post-header-col .post-header {
    padding-left: 0;
    margin-top: 24px;
  }
  .blog-archive-posts .blog-post-card .post-header-col .post-date {
    margin-bottom: 16px !important;
  }
  .blog-archive-posts .blog-post-card .post-header-col .post-title {
    font-size: 20px !important;
    margin-bottom: 24px !important;
  }
  .blog-archive-posts .blog-post-card .post-content-col .post-content {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .blog-archive-posts .blog-post-card .post-content-col .post-content p {
    padding: 0px !important;
    width: 100% !important;
  }
  .blog-archive-posts .blog-post-card .post-action-col .post-action {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 40px !important;
  }
}

@media (max-width: 767px) {
  .post-action-col .post-action {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 40px !important;
  }
  .post-action-col .post-action .read-more {
    width: 100% !important;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
}

.blog-pagination {
  padding: 56px 0 72px 0;
}

.blog-pagination .pagination-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 88px;
}

@media (max-width: 768px) {
  .blog-pagination .pagination-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.blog-pagination .pagination-wrapper .pagination-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  color: #1A1B1E;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.blog-pagination .pagination-wrapper .pagination-arrow:hover {
  opacity: 0.7;
}

.blog-pagination .pagination-wrapper .pagination-arrow img {
  width: 40px;
  height: 40px;
}

.blog-pagination .pagination-wrapper .pagination-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.blog-pagination .pagination-wrapper .pagination-numbers .page-number {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  color: #1A1B1E;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.blog-pagination .pagination-wrapper .pagination-numbers .page-number:hover {
  background: rgba(0, 0, 0, 0.05);
}

.blog-pagination .pagination-wrapper .pagination-numbers .page-number.active {
  background: #1A1B1E;
  color: white;
}

.blog-pagination .pagination-wrapper .pagination-numbers .dots {
  color: #1A1B1E;
  font-size: 14px;
  padding: 0 4px;
}

@media (max-width: 767px) {
  .blog-pagination .pagination-wrapper {
    gap: 16px;
  }
  .blog-pagination .pagination-wrapper .pagination-numbers .page-number {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}

.blog-pagination .pagination-wrapper .pagination-numbers .page-number.active {
  background: transparent;
  color: #1A1B1E;
  font-weight: 500;
}

.blog-archive-posts .blog-post-card:last-child {
  margin-bottom: 0;
}

/* Product Gallery Popup Styles */
.product-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9999;
}

.product-popup.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-popup-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  margin: auto;
}

.product-popup-image {
  max-width: 100%;
  max-height: 90vh;
  -o-object-fit: contain;
     object-fit: contain;
}

.product-popup-close {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  z-index: 10;
}

.product-popup-close:hover {
  color: #ccc;
}

.product-popup-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.product-popup-nav:hover {
  opacity: 0.8;
}

.product-popup-nav.prev {
  left: -60px;
}

.product-popup-nav.next {
  right: -60px;
}

.product-popup-nav img {
  width: 24px;
  height: 24px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.product-popup-counter {
  position: absolute;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #fff;
  font-size: 14px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .product-popup-content {
    max-width: 95%;
  }
  .product-popup-close {
    top: -30px;
    right: 0;
  }
  .product-popup-nav.prev {
    left: 10px;
  }
  .product-popup-nav.next {
    right: 10px;
  }
}

.grid-item {
  position: relative;
}

.grid-item .image-count {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.9);
  color: #1A1B1E;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  z-index: 2;
  cursor: pointer;
}

@media (max-width: 768px) {
  .grid-item .image-count {
    bottom: 16px;
    right: 16px;
    padding: 6px 12px;
    font-size: 12px;
  }
}

.product-popup .product-popup-nav {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 40px;
}

.product-popup .product-popup-nav.prev {
  left: 56px;
}

.product-popup .product-popup-nav.next {
  right: 56px;
}

.product-popup .product-popup-nav img {
  width: 40px;
  height: 40px;
}

.product-popup .product-popup-close {
  position: fixed;
  top: 30px;
  right: 56px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  cursor: pointer;
  z-index: 1000;
}

.product-popup .product-popup-nav {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 40px;
}

.product-popup .product-popup-nav.prev {
  left: 56px;
}

.product-popup .product-popup-nav.next {
  right: 56px;
}

.product-popup .product-popup-nav img {
  width: 40px;
  height: 40px;
}

@media (max-width: 768px) {
  .product-popup-nav.prev {
    left: 24px !important;
    padding-top: 60% !important;
  }
  .product-popup-nav.next {
    right: 24px !important;
    padding-top: 60% !important;
  }
  .product-popup-close {
    top: 28% !important;
    right: 10px !important;
  }
  .product-popup-counter {
    bottom: -10px !important;
  }
}

.product-popup .product-popup-nav {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.product-popup .product-popup-nav img {
  width: 40px;
  height: 40px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.product-popup .product-popup-nav:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.product-popup .product-popup-close {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.product-popup .product-popup-close img {
  width: 40px;
  height: 40px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.product-popup .product-popup-close:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.product-popup.active .product-popup-nav,
.product-popup.active .product-popup-close {
  opacity: 1;
}

.product-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.product-popup.active {
  opacity: 1;
  visibility: visible;
}

.product-popup.active .product-popup-content {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.product-popup .product-popup-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.product-popup .product-popup-nav {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10000;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.product-popup .product-popup-nav.prev {
  left: 56px;
}

.product-popup .product-popup-nav.next {
  right: 56px;
}

.product-popup .product-popup-nav img {
  width: 40px;
  height: 40px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.product-popup .product-popup-nav:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.product-popup .product-popup-close {
  position: fixed;
  top: 56px;
  right: 56px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10000;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.product-popup .product-popup-close img {
  width: 40px;
  height: 40px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.product-popup .product-popup-close:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.blog-single-content .container-fluid {
  padding: 62px 328px !important;
}

@media (max-width: 1200px) {
  .blog-single-content .container-fluid {
    padding: 56px 24px !important;
  }
}

.blog-single-content .blog-content {
  margin: 0 auto;
}

.blog-single-content .blog-title h3 {
  font-size: 32px !important;
  font-weight: 500;
  line-height: 1.3;
  color: #000;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .blog-single-content .blog-title h3 {
    font-size: 32px !important;
    margin-bottom: 32px;
  }
}

.blog-single-content .blog-text p {
  font-size: 16px;
  line-height: 24px;
  color: #1A1B1E;
  font-weight: 500;
  font-family: 'Inter Tight', sans-serif;
  margin-bottom: 30px;
}

.blog-single-content .blog-share {
  margin-top: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.blog-single-content .blog-share .share-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.blog-single-content .blog-share .share-label .share-icon {
  width: 24px;
  height: 24px;
}

.blog-single-content .blog-share .share-label span {
  font-size: 12px;
  color: #1A1B1E;
}

.blog-single-content .blog-share .share-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.blog-single-content .blog-share .share-buttons a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.blog-single-content .blog-share .share-buttons a img {
  width: 40px;
  height: 40px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.blog-single-content .blog-share .share-buttons a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#blog-single-info {
  padding: 0 !important;
}

#blog-single-card {
  border: none !important;
}

.blog-single-date p {
  font-size: 12px;
  color: #1A1B1E;
  padding-top: 24px;
  margin-bottom: 8px;
}

.blog-single-title {
  font-size: 20px !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
  color: #3B3D42 !important;
  width: 90% !important;
  margin-bottom: 16px !important;
}

.blog-single-card p {
  font-size: 16px;
  margin-bottom: 60px;
}

.blog-single-card .blog-single-read-more {
  font-size: 12px;
  color: #1A1B1E;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.blog-single-card .blog-single-read-more img {
  width: 24px;
  height: 24px;
}

@media (min-width: 1200px) {
  #blog-single-navigation {
    display: none;
  }
}

#blog-single-swiper {
  margin-top: 90px;
}

@media (max-width: 1200px) {
  #blog-single-swiper {
    margin-top: 60px;
  }
}

@media (max-width: 768px) {
  #blog-single-swiper {
    margin-top: 40px;
  }
}

#section-black-button:hover {
  opacity: 0.7 !important;
  color: #fff !important;
}

.content-wrapper p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  height: 6em;
  margin: 0;
}

@media (max-width: 767px) {
  .content-wrapper p {
    -webkit-line-clamp: 2;
    line-clamp: 2;
    height: 3em;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .blog-archive-posts .container-fluid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .blog-archive-posts .container-fluid .blog-post-card {
    margin: 0;
    width: 100%;
  }
  .blog-archive-posts .container-fluid .blog-post-card .post-image-col,
  .blog-archive-posts .container-fluid .blog-post-card .post-header-col,
  .blog-archive-posts .container-fluid .blog-post-card .post-content-col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 0px;
  }
  .blog-archive-posts .container-fluid .blog-post-card .post-image img {
    aspect-ratio: 2.08 / 1;
    height: unset;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .blog-archive-posts .container-fluid .blog-post-card .post-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
  }
  .blog-archive-posts .container-fluid .blog-post-card .content-wrapper p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 16px;
    max-height: 3em;
  }
}

/* Product Popup Düzenlemeleri */
.product-popup {
  /* Mobil cihazlar için responsive düzenleme */
}

.product-popup .product-popup-content {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.product-popup .product-popup-image-container {
  height: 80%;
  aspect-ratio: 16/9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-popup .product-popup-image-container .product-popup-image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 992px) {
  .product-popup .product-popup-image-container {
    width: 90vw;
    height: auto;
    max-height: 80vh;
  }
}

.product-popup {
  /* Mobil cihazlar için navigasyon butonlarının konumlandırması */
}

@media (max-width: 767px) {
  .product-popup .product-popup-nav {
    top: auto;
    bottom: 30px;
    /* Görselin 30px altında */
    -webkit-transform: none;
            transform: none;
  }
  .product-popup .product-popup-nav.prev {
    left: calc(50% - 60px);
    /* Ortadan sola doğru */
    padding-top: 0 !important;
  }
  .product-popup .product-popup-nav.next {
    right: calc(50% - 60px);
    /* Ortadan sağa doğru */
    padding-top: 0 !important;
  }
  .product-popup .product-popup-image-container {
    margin-bottom: 80px;
    /* Butonlar için yeterli boşluk */
  }
  .product-popup .product-popup-counter {
    bottom: 20px;
    /* Sayaç pozisyonu güncelleme */
  }
}

/* Pop-up görsel geçiş efektleri - sadece geçişler için */
.product-popup-image {
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}

.product-popup-image.fade-out {
  opacity: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
}

.product-popup-image.fade-in {
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}

.product-popup-image.fade-in.active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.about-tabs-section {
  padding: 56px 0;
}

@media (max-width: 1023px) {
  .about-tabs-section {
    padding-top: 56px;
    padding-bottom: 0px;
  }
}

.about-tabs-section .about-tabs-nav {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  cursor: -webkit-grab;
  cursor: grab;
  border-bottom: 1px solid #DEDEDE;
  margin-bottom: 50px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  text-align: center;
}

.about-tabs-section .about-tabs-nav::-webkit-scrollbar {
  height: 0;
  display: none;
}

.about-tabs-section .about-tabs-nav ul.nav-tabs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 767px) {
  .about-tabs-section .about-tabs-nav ul.nav-tabs {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: auto;
    padding-bottom: 0px;
  }
}

.about-tabs-section .about-tabs-nav .nav-tab-item {
  margin-right: 0px !important;
  padding-bottom: 20px;
  position: relative;
}

.about-tabs-section .about-tabs-nav .nav-tab-item:last-child {
  margin-right: 0;
}

@media (max-width: 767px) {
  .about-tabs-section .about-tabs-nav .nav-tab-item {
    width: 220px !important;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 25px;
  }
}

.about-tabs-section .about-tabs-nav .nav-tab-item a {
  font-size: 16px;
  font-weight: 500;
  color: #636363;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about-tabs-section .about-tabs-nav .nav-tab-item a:hover {
  color: #000;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .about-tabs-section .about-tabs-nav .nav-tab-item a {
    width: 300px !important;
  }
}

.about-tabs-section .about-tabs-nav .nav-tab-item.active a {
  color: #000;
}

.about-tabs-section .about-tabs-nav .nav-tab-item.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
}

@media (max-width: 767px) {
  .about-tabs-section .about-tabs-nav .nav-tab-item {
    margin-right: 25px;
    padding-bottom: 15px;
  }
}

.about-tabs-section .about-content-section {
  padding: 80px 0;
}

@media (max-width: 991px) {
  .about-tabs-section .about-content-section {
    padding: 60px 0;
  }
}

.about-tabs-section .about-content-section .about-text-content {
  height: 100%;
  padding-top: 16px;
  gap: 100px !important;
}

@media (max-width: 1023px) {
  .about-tabs-section .about-content-section .about-text-content {
    padding-top: 0;
  }
}

@media (max-width: 991px) {
  .about-tabs-section .about-content-section .about-text-content {
    padding-right: 0;
  }
}

.about-tabs-section .about-content-section .about-text-content .about-section-title {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.3;
}

@media (max-width: 1023px) {
  .about-tabs-section .about-content-section .about-text-content .about-section-title {
    padding-bottom: 30px !important;
  }
}

.about-tabs-section .about-content-section .about-text-content .about-paragraphs {
  margin-top: auto;
}

.about-tabs-section .about-content-section .about-text-content .about-paragraphs p {
  font-size: 16px;
  line-height: 1.7;
  color: #1A1B1E;
  font-weight: 500;
}

.about-tabs-section .about-content-section .about-text-content .about-paragraphs p:last-child {
  margin-bottom: 0;
}

.about-tabs-section .about-content-section .about-image-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
}

.about-tabs-section .about-content-section .about-image-wrapper .about-section-image {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .about-tabs-section .about-content-section .about-image-wrapper .about-section-image {
    width: 100%;
  }
}

.about-tabs-section .about-content-section .about-image-wrapper .about-section-image img {
  width: 100%;
  height: unset;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.about-section-image-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 78%;
  margin-left: auto;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 60%;
}

@media (min-width: 1600px) {
  .about-section-image-wrapper {
    height: 100%;
  }
}

@media (max-width: 1023px) {
  .about-section-image-wrapper {
    height: 100%;
    width: 100%;
    position: relative;
  }
}

.about-section-image-wrapper .about-section-image {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  margin-left: auto;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.about-section-image-wrapper .about-section-image img {
  width: 100%;
  height: unset;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media (max-width: 1023px) {
  .about-section-image-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 30px;
  }
  .about-section-image-wrapper .about-section-image {
    width: 100% !important;
  }
}

.about-section-2 {
  padding-top: 144px;
  padding-bottom: 0px;
}

@media (min-width: 1200px) {
  .about-section-2 .col-lg-3 {
    margin-right: 20px;
  }
  .about-section-2 #about-feature-content-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 31.333333%;
  }
}

@media (max-width: 1023px) {
  .about-section-2 {
    padding: 72px 0;
  }
}

.about-section-2 #about-section-2-header {
  margin-bottom: 56px;
}

.about-section-2 .about-feature-image {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.about-section-2 .about-feature-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1023px) {
  .about-section-2 .about-feature-image {
    margin-bottom: 30px;
  }
}

.about-section-2 .about-feature-content {
  height: 100%;
  width: 100%;
}

@media (min-width: 1200px) {
  .about-section-2 .about-feature-content {
    width: 88%;
  }
}

.about-section-2 .about-feature-content:first-child .feature-text {
  text-align: left;
  margin-left: 0;
}

.about-section-2 .about-feature-content .feature-text {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #1A1B1E;
  font-weight: 500;
  width: 90%;
}

.col-lg-4:last-child .about-section-2 .about-feature-content .feature-text {
  text-align: right;
}

.about-section-2 .about-feature-content .feature-text:last-child {
  margin-bottom: 0;
}

@media (max-width: 1023px) {
  .about-section-2 .row.about-section-2-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-section-2 .row.about-section-2-content .col-lg-3, .about-section-2 .row.about-section-2-content .col-lg-4 {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .about-section-2 .row.about-section-2-content .col-lg-1 {
    display: none;
  }
}

#about-section-2-title {
  width: 51.66%;
}

@media (max-width: 1023px) {
  #about-section-2-title {
    width: 100%;
    padding: 0;
  }
}

@media (max-width: 1023px) {
  .row.about-section-2-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .row.about-section-2-content .col-lg-3, .row.about-section-2-content .col-lg-4 {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .row.about-section-2-content .col-lg-1 {
    display: none;
  }
  .row.about-section-2-content .about-feature-content {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .row.about-section-2-content .about-feature-content .feature-text {
    width: 100% !important;
    text-align: left !important;
  }
  .row.about-section-2-content .about-feature-image {
    width: 100%;
  }
  .row.about-section-2-content .about-feature-image img {
    width: 100%;
  }
}

@media (min-width: 1024px) and (max-width: 1200px) {
  .row.about-section-2-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .row.about-section-2-content .col-lg-3 {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-bottom: 40px;
  }
  .row.about-section-2-content .col-lg-3 .about-feature-image {
    width: 100%;
    aspect-ratio: 16/9;
  }
  .row.about-section-2-content .col-lg-3 .about-feature-image img {
    width: 100%;
  }
  .row.about-section-2-content .col-lg-1 {
    display: none;
  }
  .row.about-section-2-content .col-lg-4 {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .row.about-section-2-content .col-lg-4 .about-feature-content .feature-text {
    width: 100%;
  }
  .row.about-section-2-content .col-lg-4:nth-child(3) .about-feature-content {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .row.about-section-2-content .col-lg-4:nth-child(3) .about-feature-content .feature-text {
    text-align: left;
  }
  .row.about-section-2-content .col-lg-4:nth-child(4) .about-feature-content {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .row.about-section-2-content .col-lg-4:nth-child(4) .about-feature-content .feature-text {
    text-align: left;
  }
}

.about-new-section {
  padding-top: 80px;
  padding-bottom: 144px;
  position: relative;
}

@media (max-width: 1023px) {
  .about-new-section {
    padding: 60px 0;
  }
}

.about-new-section .about-mission-content {
  margin-top: -90px;
}

@media (max-width: 1023px) {
  .about-new-section .about-mission-content {
    margin-top: 0;
  }
}

.about-new-section .about-mission-content .mission-image-large {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.about-new-section .about-mission-content .mission-image-large img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-new-section .about-mission-content .mission-image-small {
  width: 100%;
  height: 216px;
  overflow: hidden;
}

.about-new-section .about-mission-content .mission-image-small img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-new-section .about-mission-content .mission-text {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.about-new-section .about-mission-content .mission-text p {
  font-size: 20px;
  line-height: 1.7;
  color: #1A1B1E;
  font-weight: 500;
}

@media (max-width: 1023px) {
  .about-new-section .about-mission-content .mission-text {
    height: 0;
  }
}

@media (max-width: 991px) {
  .about-new-section .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-new-section .col-lg-3, .about-new-section .col-lg-5 {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .about-new-section .col-lg-1 {
    display: none;
  }
  .about-new-section .mission-text {
    margin-top: 30px;
  }
}

#about-title-new-title {
  width: 36.66%;
}

@media (max-width: 1023px) {
  #about-title-new-title {
    width: 100%;
    padding: 0;
  }
}

#about-image {
  width: 30%;
}

#about-image img {
  width: 90%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1023px) {
  #about-seciton-2 {
    padding-top: 0 !important;
  }
}

/* About Mission Content için mobil düzenlemeler (1023px altı) */
@media (max-width: 1023px) {
  .about-mission-content {
    margin-top: 0;
    padding-top: 20px !important;
    /* Üstten boşluk ekliyoruz */
    /* Yanyana kolonlar */
    /* İlk görselin yüksekliği */
    /* İkinci görselin yüksekliği */
    /* İkinci resim ALTA hizalı olsun */
    /* Boşluk kolonunu gizle */
    /* Metin KESİNLİKLE ALTTA olacak */
  }
  .about-mission-content .row {
    display: block !important;
  }
  .about-mission-content .col-lg-3 {
    width: 50% !important;
    max-width: 50% !important;
    float: left !important;
    display: block !important;
    height: auto !important;
    margin-bottom: 0 !important;
  }
  .about-mission-content .mission-image-large {
    height: 208px !important;
    width: 100% !important;
  }
  .about-mission-content .mission-image-large img {
    height: 208px !important;
    width: 100% !important;
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .about-mission-content .mission-image-small {
    height: 112px !important;
    width: 100% !important;
  }
  .about-mission-content .mission-image-small img {
    height: 112px !important;
    width: 100% !important;
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .about-mission-content .col-lg-3.d-flex.align-items-end {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
    height: 208px !important;
    padding-left: 5px !important;
    /* Sol görsel ile arasına 50px mesafe */
  }
  .about-mission-content .col-lg-1 {
    display: none !important;
    width: 0 !important;
  }
  .about-mission-content .col-lg-5 {
    width: 100% !important;
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 100% !important;
            flex: 0 0 100% !important;
    max-width: 100% !important;
    float: none !important;
    display: block !important;
    margin-top: 20px !important;
    /* Görseller ile metin arası boşluk */
    padding-top: 20px !important;
    /* Ek üst boşluk */
    clear: both !important;
  }
  .about-mission-content .mission-text {
    position: static !important;
    height: auto !important;
    width: 100% !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 1023px) {
  .about-mission-content {
    margin-top: 0;
    padding-top: 20px !important;
    /* Üstten boşluk ekliyoruz */
    /* Yanyana kolonlar */
    /* İlk görselin yüksekliği */
    /* İkinci görselin yüksekliği */
    /* İkinci resim ALTA hizalı olsun */
    /* Boşluk kolonunu gizle */
    /* Metin KESİNLİKLE ALTTA olacak */
  }
  .about-mission-content .row {
    display: block !important;
  }
  .about-mission-content .col-lg-3 {
    width: 50% !important;
    max-width: 50% !important;
    float: left !important;
    display: block !important;
    height: auto !important;
    margin-bottom: 0 !important;
  }
  .about-mission-content .mission-image-large {
    height: 208px !important;
    width: 100% !important;
  }
  .about-mission-content .mission-image-large img {
    height: 208px !important;
    width: 100% !important;
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .about-mission-content .mission-image-small {
    height: 112px !important;
    width: 100% !important;
  }
  .about-mission-content .mission-image-small img {
    height: 112px !important;
    width: 100% !important;
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .about-mission-content .col-lg-3.d-flex.align-items-end {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
    height: 208px !important;
    padding-left: 5px !important;
    /* Sol görsel ile arasına 50px mesafe */
  }
  .about-mission-content .col-lg-1 {
    display: none !important;
    width: 0 !important;
  }
  .about-mission-content .col-lg-5 {
    width: 100% !important;
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 100% !important;
            flex: 0 0 100% !important;
    max-width: 100% !important;
    float: none !important;
    display: block !important;
    margin-top: 20px !important;
    /* Görseller ile metin arası boşluk */
    padding-top: 20px !important;
    /* Ek üst boşluk */
    clear: both !important;
  }
  .about-mission-content .mission-text {
    position: static !important;
    height: auto !important;
    width: 100% !important;
    margin-top: 0 !important;
  }
}

#about-section-2-header {
  margin-bottom: 56px;
}

@media (max-width: 1023px) {
  #about-section-2-header {
    margin-bottom: 0px;
  }
}

#production-section-1 {
  padding-top: 0px !important;
}

#production-section-2 {
  background: url("../images/production-swiper.jpg") no-repeat center center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 144px;
}

@media (max-width: 1023px) {
  #production-section-2 {
    margin-bottom: 72px;
  }
}

#about-tab-item {
  width: -webkit-fill-available !important;
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

@media (max-width: 1023px) {
  #about-tab-item {
    width: 50% !important;
    margin: 0 auto !important;
  }
}

.process-content {
  margin-top: 56px;
  margin-bottom: 72px;
}

@media (min-width: 1023px) and (max-width: 1200px) {
  .process-content {
    margin-top: 0px;
    margin-bottom: 0px;
  }
}

.process-images-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.process-image-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.process-image-top img {
  width: 80%;
  height: unset;
  aspect-ratio: 1 / 0.5;
  -o-object-fit: cover;
     object-fit: cover;
}

.process-image-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.process-image-bottom img {
  width: 60%;
  height: unset;
  aspect-ratio: 1 / 0.5;
  -o-object-fit: cover;
     object-fit: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.process-image-right img {
  width: 100%;
  height: unset;
  aspect-ratio: 1 / 0.5;
  -o-object-fit: cover;
     object-fit: cover;
}

.process-text {
  margin-top: 56px;
}

.process-text p {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.6;
  color: #1A1B1E;
}

@media (max-width: 1200px) and (min-width: 1024px) {
  .process-text {
    margin-top: 0px;
  }
  .process-text p {
    font-size: 18px;
  }
  .process-content .col-lg-2 {
    display: block;
    margin-top: -30px !important;
    width: 20%;
    height: unset;
    aspect-ratio: 1 / 0.5;
  }
  .process-content #bosluk-procress {
    display: none;
  }
  .process-content .col-lg-5 {
    width: 66%;
  }
}

@media (max-width: 1023px) {
  .process-content {
    margin-top: 10px;
  }
  .process-text {
    margin-top: 10px;
    padding: 20px 0;
  }
}

@media (max-width: 1023px) {
  .process-content .col-lg-3, .process-content .col-lg-5, .process-content .col-lg-2 {
    margin-bottom: 10px;
  }
  .process-content .process-images-left {
    gap: 20px;
  }
  .process-content .process-image-right {
    display: block;
    /* Mobilde sağdaki görsel gizlensin */
  }
}

@media (max-width: 767px) {
  .process-images-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    /* Mobilde sol görseller yan yana */
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .process-image-top, .process-image-bottom {
    width: 48%;
    /* İki görsel yan yana */
  }
  .process-image-top img, .process-image-bottom img {
    width: 100%;
    height: 180px;
    /* Mobilde küçültülmüş yükseklik */
  }
  .process-text {
    margin-top: 0px;
  }
  /* Sağdaki görsel mobilde gizlensin */
  .col-lg-2 {
    display: block;
  }
}

@media (max-width: 576px) {
  .process-images-left .process-image-top, .process-images-left .process-image-bottom {
    width: 100%;
    /* Çok küçük ekranlarda alt alta */
    margin-bottom: 15px;
  }
}

/* Mevcut kodu silip, tek ve net bir çözüm ekleyelim */
/* 1023px altında (tablet ve mobil) */
@media (max-width: 1023px) {
  /* Sağdaki görseli gizle */
  .process-image-right {
    display: block;
  }
  /* Sol görselleri yan yana hizala */
  .process-images-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 15px;
  }
  .process-image-top, .process-image-bottom {
    width: 48%;
  }
  .process-image-top img, .process-image-bottom img {
    width: 100%;
    height: unset;
    aspect-ratio: 1 / 0.5;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/* 1023px altında (tablet ve mobil) */
@media (max-width: 1023px) {
  /* Sağdaki görseli gizle */
  .col-lg-2 {
    display: block;
  }
  /* Sol görselleri yan yana hizala */
  .process-images-left {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
    width: 100% !important;
  }
  .process-image-top, .process-image-bottom {
    width: 48% !important;
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 48% !important;
            flex: 0 0 48% !important;
    max-width: 48% !important;
  }
  .process-image-top img, .process-image-bottom img {
    width: 100% !important;
    height: unset;
    aspect-ratio: 1 / 0.7 !important;
  }
}

/* Doğrudan id ile hedefleyelim - bu en yüksek önceliğe sahip */
@media (max-width: 1023px) {
  #fixedImages {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    gap: 10px !important;
  }
  #fixedImages > div {
    width: 48% !important;
    aspect-ratio: 1 / 0.7;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .col-lg-2 {
    display: block !important;
  }
}

@media (max-width: 1023px) {
  /* İkinci görsel daha küçük */
  .process-image-bottom img {
    height: unset !important;
    aspect-ratio: 0 / 0.7 !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media (max-width: 1023px) {
  #secondImage-1 {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
    height: unset !important;
    aspect-ratio: 1 / 0.7;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.scroll-reveal-section {
  position: relative;
  margin: 144px 0;
}

@media (min-width: 1023px) and (max-width: 1200px) {
  .scroll-reveal-section {
    margin-top: 0px;
  }
}

.scroll-reveal-section .item {
  position: -webkit-sticky;
  position: sticky;
  min-height: 85vh;
  padding-top: 90px !important;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 50px 0;
  padding: 0;
}

.scroll-reveal-section .item .image-holder {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 50%;
  height: 85vh;
  z-index: 1;
  overflow: hidden;
}

.scroll-reveal-section .item .image-holder img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
}

.scroll-reveal-section .item .text-holder {
  width: 50%;
  height: 85vh;
  padding: 0px 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (min-width: 1024px) and (max-width: 1400px) {
  .scroll-reveal-section .item .text-holder {
    padding: 0px 50px;
  }
}

.scroll-reveal-section .item .text-holder .process-title {
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  padding-top: 25px;
  margin-bottom: 24px;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding-bottom: 16px;
  color: #3B3D42;
  gap: 10px;
  width: 100%;
}

.scroll-reveal-section .item .text-holder .process-title span {
  color: #D9D9DB;
}

.scroll-reveal-section .item .text-holder .process-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #E3E3E4;
}

.scroll-reveal-section .item .text-holder .content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 85%;
  margin: auto 0;
  position: absolute;
}

@media (max-width: 1023px) {
  .scroll-reveal-section .item .text-holder .content-wrapper {
    position: relative;
  }
}

.scroll-reveal-section .item .text-holder h2 {
  font-size: 56px !important;
  font-weight: 500;
  margin-bottom: 15px;
}

.scroll-reveal-section .item .text-holder p {
  font-size: 20px !important;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 0;
}

.scroll-reveal-section #seciton-process-title {
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  padding-top: 25px;
  margin-bottom: 24px;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding-bottom: 16px;
  color: #3B3D42;
  gap: 10px;
  width: 100%;
  margin-bottom: 40px !important;
}

.scroll-reveal-section #seciton-process-title span {
  color: #D9D9DB;
}

.scroll-reveal-section #seciton-process-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #E3E3E4;
}

@media (min-width: 1023px) {
  .scroll-reveal-section #seciton-process-title {
    display: none;
  }
}

@media (max-width: 1023px) {
  .scroll-reveal-section {
    margin-top: 60px;
    margin-bottom: 0px;
  }
  .scroll-reveal-section .item {
    min-height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0px !important;
    padding-top: 0px !important;
  }
  .scroll-reveal-section .item .image-holder {
    width: 100%;
    height: 50vh;
  }
  .scroll-reveal-section .item .text-holder {
    width: 100%;
    height: auto;
    min-height: unset !important;
    padding: 0px 0px;
  }
  .scroll-reveal-section .item .text-holder .process-title {
    margin-bottom: 30px;
  }
  .scroll-reveal-section .item .text-holder .content-wrapper {
    margin-top: 20px;
    height: 100%;
  }
  .scroll-reveal-section .item .text-holder h2 {
    font-size: 32px !important;
  }
  .scroll-reveal-section .item .text-holder p {
    font-size: 18px !important;
    height: 100%;
  }
}

@media (max-width: 1023px) {
  .scroll-reveal-section {
    margin-top: 60px;
  }
  .scroll-reveal-section .item {
    min-height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 60px !important;
    position: relative;
  }
  .scroll-reveal-section .item .image-holder {
    width: 100%;
    height: 50vh;
    position: relative;
  }
  .scroll-reveal-section .item .image-holder img {
    opacity: 1 !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
  .scroll-reveal-section .item .text-holder {
    width: 100%;
    height: auto;
    min-height: 300px;
    padding: 20px 0px;
  }
  .scroll-reveal-section .item .text-holder .process-title {
    opacity: 1 !important;
    -webkit-transition: none !important;
    transition: none !important;
    display: none;
  }
  .scroll-reveal-section .item .text-holder h2 {
    opacity: 1 !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
  .scroll-reveal-section .item .text-holder p {
    opacity: 1 !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
  .scroll-reveal-section .item:hover .image-holder img,
  .scroll-reveal-section .item:hover .text-holder .process-title,
  .scroll-reveal-section .item:hover .text-holder h2,
  .scroll-reveal-section .item:hover .text-holder p {
    opacity: 1 !important;
  }
  .scroll-reveal-section .item.active .image-holder img,
  .scroll-reveal-section .item.active .text-holder .process-title,
  .scroll-reveal-section .item.active .text-holder h2,
  .scroll-reveal-section .item.active .text-holder p {
    opacity: 1 !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}

@media screen and (max-width: 1023px) {
  .scroll-reveal-section .item .image-holder {
    width: 100%;
    aspect-ratio: 1/1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .scroll-reveal-section .item .image-holder img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media screen and (max-width: 1023px) {
  .scroll-reveal-section .item .text-holder h2, .scroll-reveal-section .item .text-holder p {
    display: block;
    overflow: visible;
    text-overflow: unset;
  }
}

.scroll-reveal-section {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

.scroll-reveal-section .item {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.curiosities-accordion {
  padding: 0 0 144px 0;
}

@media (max-width: 1023px) {
  .curiosities-accordion {
    padding: 0 0 72px 0;
  }
}

.curiosities-accordion .accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
}

.curiosities-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.curiosities-accordion .accordion-item .accordion-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 24px 0;
  cursor: pointer;
}

.curiosities-accordion .accordion-item .accordion-header .accordion-title {
  font-size: 24px;
  color: #1A1B1E;
  font-weight: 500;
}

.curiosities-accordion .accordion-item .accordion-header .accordion-icon {
  width: 24px;
  height: 24px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.curiosities-accordion .accordion-item .accordion-content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}

.curiosities-accordion .accordion-item .accordion-content p {
  margin: 0;
  font-size: 18px;
  padding-bottom: 40px;
  color: #1A1B1E;
  font-weight: 500;
}

.curiosities-accordion .accordion-item.active .accordion-icon {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.experience-showcase {
  padding: 0 0 144px 0;
}

@media (max-width: 1023px) {
  .experience-showcase {
    padding: 0 0 72px 0 !important;
  }
}

.experience-showcase .col-lg-5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: s;
      -ms-flex-pack: s;
          justify-content: s;
}

.experience-showcase .showcase-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}

.experience-showcase .showcase-content .showcase-title {
  font-size: 56px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.2;
  color: #1A1B1E;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

@media (max-width: 1023px) {
  .experience-showcase .showcase-content .showcase-title {
    padding-bottom: 40px !important;
  }
}

.experience-showcase .showcase-content .showcase-text {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  color: #1A1B1E;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-top: auto;
  margin-bottom: 60px;
}

@media (max-width: 1023px) {
  .experience-showcase .showcase-content .showcase-text {
    padding-bottom: 40px !important;
    margin-bottom: 0px !important;
  }
}

.experience-showcase .col-lg-6 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.experience-showcase .showcase-gallery {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.experience-showcase .showcase-gallery .gallerySwiper {
  width: 100%;
  height: unset;
  aspect-ratio: 1 / 0.9;
  margin-left: auto;
  margin-right: 0;
}

.experience-showcase .showcase-gallery .gallerySwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.experience-showcase .showcase-gallery .gallerySwiper .swiper-button-next,
.experience-showcase .showcase-gallery .gallerySwiper .swiper-button-prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 10;
  cursor: pointer;
}

.experience-showcase .showcase-gallery .gallerySwiper .swiper-button-next::after,
.experience-showcase .showcase-gallery .gallerySwiper .swiper-button-prev::after {
  display: none;
}

.experience-showcase .showcase-gallery .gallerySwiper .swiper-button-next img,
.experience-showcase .showcase-gallery .gallerySwiper .swiper-button-prev img {
  width: 40px;
  height: 40px;
}

.experience-showcase .showcase-gallery .gallerySwiper .swiper-button-prev {
  left: 20px;
}

.experience-showcase .showcase-gallery .gallerySwiper .swiper-button-next {
  right: 20px;
}

.experience-showcase .showcase-gallery .gallery-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
  width: 100%;
  position: relative;
}

.experience-showcase .showcase-gallery .gallery-navigation .swiper-pagination {
  position: static;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-right: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.experience-showcase .showcase-gallery .gallery-navigation .swiper-pagination .swiper-pagination-bullet {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: auto;
  height: 2px;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 1;
  margin: 0 0px !important;
}

.experience-showcase .showcase-gallery .gallery-navigation .swiper-pagination .swiper-pagination-bullet-active {
  background: #000;
}

.experience-showcase .showcase-gallery .gallery-navigation .gallery-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.gallery-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
  width: 100%;
}

.gallery-navigation .gallery-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.gallery-navigation .gallery-buttons .gallery-prev-button,
.gallery-navigation .gallery-buttons .gallery-next-button {
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 100;
}

.experience-showcase .showcase-gallery .gallery-navigation .swiper-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 2px;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 1;
  margin: 0 4px;
}

.experience-showcase .showcase-gallery .gallery-navigation .swiper-pagination .swiper-pagination-bullet-active {
  background: #000;
}

.experience-showcase-alt {
  padding: 0 0 144px 0;
}

@media (max-width: 1023px) {
  .experience-showcase-alt {
    padding: 0 0 72px 0 !important;
  }
}

.experience-showcase-alt .col-lg-5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (max-width: 1023px) {
  .experience-showcase-alt .col-lg-5 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.experience-showcase-alt .col-lg-6 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (max-width: 1023px) {
  .experience-showcase-alt .col-lg-6 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.experience-showcase-alt .showcase-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  padding-left: 50px;
}

.experience-showcase-alt .showcase-content .showcase-title {
  font-size: 56px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.2;
  color: #1A1B1E;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

@media (max-width: 1023px) {
  .experience-showcase-alt .showcase-content .showcase-title {
    padding-bottom: 0px !important;
  }
}

.experience-showcase-alt .showcase-content .showcase-text {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  color: #1A1B1E;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-top: auto;
  margin-bottom: 60px;
}

@media (max-width: 1023px) {
  .experience-showcase-alt .showcase-content .showcase-text {
    padding-bottom: 40px !important;
    margin-bottom: 40px !important;
  }
}

.experience-showcase-alt .showcase-gallery {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.experience-showcase-alt .showcase-gallery .gallerySwiperAlt {
  width: 100%;
  height: unset;
  aspect-ratio: 1 / 0.9;
  margin-left: 0;
  margin-right: auto;
}

.experience-showcase-alt .showcase-gallery .gallerySwiperAlt .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.experience-showcase-alt .showcase-gallery .gallery-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
  width: 100%;
  position: relative;
}

.experience-showcase-alt .showcase-gallery .gallery-navigation .swiper-pagination {
  position: static;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-right: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.experience-showcase-alt .showcase-gallery .gallery-navigation .swiper-pagination .swiper-pagination-bullet {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: auto;
  height: 2px;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 1;
  margin: 0 !important;
}

.experience-showcase-alt .showcase-gallery .gallery-navigation .swiper-pagination .swiper-pagination-bullet-active {
  background: #000;
}

.experience-showcase-alt .showcase-gallery .gallery-navigation .gallery-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.experience-showcase-alt .showcase-gallery .gallery-navigation .gallery-buttons .gallery-prev-button,
.experience-showcase-alt .showcase-gallery .gallery-navigation .gallery-buttons .gallery-next-button {
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 100;
}

@media (max-width: 1023px) {
  .experience-showcase-alt .showcase-content {
    padding-left: 0;
    margin-top: 30px;
  }
}

/* Alt Gallery Navigation Styles - Üstteki ile aynı stilde */
.alt-gallery-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
  width: 100%;
  position: relative;
}

.alt-gallery-navigation .swiper-pagination {
  position: static;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-right: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.alt-gallery-navigation .swiper-pagination .swiper-pagination-bullet {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: auto;
  height: 2px;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 1;
  margin: 0 0px !important;
}

.alt-gallery-navigation .swiper-pagination .swiper-pagination-bullet-active {
  background: #000;
}

.alt-gallery-navigation .gallery-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

/* Video Popup ve Trigger Stilleri */
.video-trigger {
  position: relative;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.video-trigger img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 5;
}

.play-button img {
  width: 70px;
  /* İkona istediğin boyutu ver */
  height: auto;
  -webkit-filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.3));
  /* Görünürlük için hafif gölge */
}

.video-trigger:hover .play-button {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
  /* Hover efekti için büyütme animasyonu */
}

/* Video Popup Stili */
.video-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.video-popup.active {
  opacity: 1;
  visibility: visible;
}

.video-popup-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 oranı */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.close-video {
  position: absolute;
  top: 0px;
  right: 0px;
  -webkit-backdrop-filter: blur(35px);
          backdrop-filter: blur(35px);
  border-radius: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  outline: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 768px) {
  .video-popup-content {
    width: 95%;
  }
  .close-video {
    top: -40px;
    right: 0;
  }
}

.career-form-section {
  padding: 0px 0;
  margin-bottom: 144px;
}

@media (max-width: 1023px) {
  .career-form-section {
    margin-bottom: 0;
  }
}

.career-form-section .col-lg-6 {
  width: 50%;
  margin-right: 5%;
}

@media (max-width: 1200px) {
  .career-form-section .col-lg-6 {
    width: 100% !important;
  }
}

.career-form-section .col-lg-5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 45%;
}

@media (max-width: 1200px) {
  .career-form-section .col-lg-5 {
    display: none;
  }
}

.career-form-section .form-image {
  width: 100%;
  height: 100% !important;
  position: relative;
  aspect-ratio: 1 / 0.9;
}

.career-form-section .form-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 991px) {
  .career-form-section .form-image {
    padding-top: 80%;
    margin-top: 40px;
  }
}

.career-form-section .form-title {
  margin-top: 0;
  margin-bottom: 56px;
  padding-top: 0;
}

.career-form-section .career-form .form-group {
  margin-bottom: 30px;
}

.career-form-section .career-form .form-group label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #5D6069;
  margin-bottom: 8px;
}

.career-form-section .career-form .form-group input, .career-form-section .career-form .form-group select, .career-form-section .career-form .form-group textarea {
  width: 100%;
  height: 64px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 100px;
  padding: 0 24px;
  font-size: 14px;
  background: transparent;
  color: #000;
}

.career-form-section .career-form .form-group input::-webkit-input-placeholder, .career-form-section .career-form .form-group select::-webkit-input-placeholder, .career-form-section .career-form .form-group textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.career-form-section .career-form .form-group input:-ms-input-placeholder, .career-form-section .career-form .form-group select:-ms-input-placeholder, .career-form-section .career-form .form-group textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.career-form-section .career-form .form-group input::-ms-input-placeholder, .career-form-section .career-form .form-group select::-ms-input-placeholder, .career-form-section .career-form .form-group textarea::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.career-form-section .career-form .form-group input::placeholder, .career-form-section .career-form .form-group select::placeholder, .career-form-section .career-form .form-group textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.career-form-section .career-form .form-group input:focus, .career-form-section .career-form .form-group select:focus, .career-form-section .career-form .form-group textarea:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.3);
}

.career-form-section .career-form .form-group select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("../icons/chevron.svg");
  background-repeat: no-repeat;
  background-position: right 24px center;
  cursor: pointer;
}

.career-form-section .career-form .form-group textarea {
  height: 160px;
  border-radius: 30px;
  padding: 24px;
  resize: none;
}

.career-form-section .career-form .form-group .upload-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 64px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 100px;
  padding: 0 24px;
  cursor: pointer;
  gap: 10px;
}

.career-form-section .career-form .form-group .upload-wrapper span {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
}

.career-form-section .career-form .form-group .upload-wrapper .upload-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.career-form-section .career-form .form-group .upload-wrapper .upload-icon img {
  width: 20px;
  height: 20px;
}

.career-form-section .career-form .form-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0px;
}

@media (max-width: 1023px) {
  .career-form-section .career-form .form-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
    margin-bottom: 20px !important;
  }
}

.career-form-section .career-form .form-bottom .checkbox-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.career-form-section .career-form .form-bottom .checkbox-wrapper input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  cursor: pointer;
}

.career-form-section .career-form .form-bottom .checkbox-wrapper label {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
}

.career-form-section .career-form .form-bottom .checkbox-wrapper label a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.career-form-section .career-form .form-bottom .checkbox-wrapper label a:hover {
  text-decoration: underline;
}

.career-form-section .career-form .form-bottom .submit-btn {
  height: 48px;
  padding: 0 40px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 12px;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.career-form-section .career-form .form-bottom .submit-btn:hover {
  background: #333;
}

@media (max-width: 1023px) {
  .career-form-section {
    padding: 0px 0;
    padding-bottom: 60px !important;
  }
  .career-form-section .form-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .career-form-section .form-bottom .submit-btn {
    width: 100%;
    margin-top: 30px;
  }
  .career-form-section .form-image {
    display: none !important;
  }
}

.career-form .row {
  margin-bottom: 0;
}

.career-form .form-group {
  margin-bottom: 40px;
}

.career-form textarea {
  width: 100%;
  min-height: 120px;
  resize: none;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .career-form .row {
    margin: 0;
  }
  .career-form .col-md-6 {
    padding: 0;
  }
}

.upload-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 64px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 100px;
  padding: 0 24px;
  cursor: pointer;
}

.upload-wrapper span {
  font-size: 14px;
  color: #4F5159 !important;
}

.upload-wrapper .upload-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.upload-wrapper .upload-button span {
  font-size: 12px;
  font-weight: 500;
  color: #4F5159;
}

.upload-wrapper .upload-button img {
  width: 24px;
  height: 24px;
}

.upload-wrapper:hover {
  border-color: rgba(0, 0, 0, 0.3);
}

.upload-wrapper.drag-over {
  border: 2px dashed #1A1B1E;
  background-color: rgba(26, 27, 30, 0.05);
}

.career-form-section .career-form .form-group input::-webkit-input-placeholder, .career-form-section .career-form .form-group select::-webkit-input-placeholder, .career-form-section .career-form .form-group textarea::-webkit-input-placeholder {
  color: #4F5159;
  font-size: 14px;
  font-weight: 500;
}

.career-form-section .career-form .form-group input:-ms-input-placeholder, .career-form-section .career-form .form-group select:-ms-input-placeholder, .career-form-section .career-form .form-group textarea:-ms-input-placeholder {
  color: #4F5159;
  font-size: 14px;
  font-weight: 500;
}

.career-form-section .career-form .form-group input::-ms-input-placeholder, .career-form-section .career-form .form-group select::-ms-input-placeholder, .career-form-section .career-form .form-group textarea::-ms-input-placeholder {
  color: #4F5159;
  font-size: 14px;
  font-weight: 500;
}

.career-form-section .career-form .form-group input::placeholder, .career-form-section .career-form .form-group select::placeholder, .career-form-section .career-form .form-group textarea::placeholder {
  color: #4F5159;
  font-size: 14px;
  font-weight: 500;
}

.career-form-section .career-form .form-group input::-moz-placeholder, .career-form-section .career-form .form-group select::-moz-placeholder, .career-form-section .career-form .form-group textarea::-moz-placeholder {
  color: #4F5159;
  font-size: 14px;
  font-weight: 500;
}

.career-form-section .career-form .form-group input::-webkit-input-placeholder, .career-form-section .career-form .form-group select::-webkit-input-placeholder, .career-form-section .career-form .form-group textarea::-webkit-input-placeholder {
  color: #4F5159;
  font-size: 14px;
  font-weight: 500;
}

.select-wrapper {
  position: relative;
  width: 100%;
}

.select-wrapper select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 30px;
  background: transparent;
  position: relative;
  z-index: 1;
}

.select-wrapper .select-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
  width: 24px;
  height: 24px;
  z-index: 2;
  opacity: 1;
  display: block;
}

.career-form-section .career-form .form-group {
  margin-bottom: 30px;
}

.career-form-section .career-form .form-group textarea {
  margin-bottom: 0;
}

.career-form-section .career-form .radio-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

@media (max-width: 1023px) {
  .career-form-section .career-form .radio-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
}

.career-form-section .career-form .radio-wrapper input[type="radio"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #000;
}

.career-form-section .career-form .radio-wrapper label {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
  margin: 0;
}

.career-form-section .career-form .radio-wrapper label a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.career-form-section .career-form .radio-wrapper label a:hover {
  text-decoration: underline;
}

.file-name {
  color: #4F5159 !important;
}

@media (min-width: 1023px) and (max-width: 1200px) {
  .career-form-section .col-lg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 54%;
  }
  .career-form-section .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 4%;
  }
  .career-form .radio-wrapper label {
    width: 100%;
  }
  .career-form .form-bottom .submit-btn {
    padding: 0 22px !important;
  }
}

.catalog-form-section {
  padding: 0px 0;
}

@media (min-width: 1023px) and (max-width: 1200px) {
  .catalog-form-section {
    padding: 0px 0;
    margin-bottom: 72px;
  }
}

@media (max-width: 1023px) {
  .catalog-form-section {
    padding: 0px 0;
    margin-bottom: 72px;
  }
}

.catalog-form-section .form-title {
  margin-top: 0;
  margin-bottom: 56px;
  color: #1A1B1E;
}

.catalog-form-section .catalog-form .form-group {
  margin-bottom: 30px;
}

.catalog-form-section .catalog-form .form-group label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #5D6069;
  margin-bottom: 8px;
}

.catalog-form-section .catalog-form .form-group input, .catalog-form-section .catalog-form .form-group select {
  width: 100%;
  height: 64px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 100px;
  padding: 0 24px;
  font-size: 14px;
  color: #4F5159;
  background: transparent;
}

.catalog-form-section .catalog-form .form-group input::-webkit-input-placeholder, .catalog-form-section .catalog-form .form-group select::-webkit-input-placeholder {
  color: #4F5159;
  font-size: 14px;
  font-weight: 500;
}

.catalog-form-section .catalog-form .form-group input:-ms-input-placeholder, .catalog-form-section .catalog-form .form-group select:-ms-input-placeholder {
  color: #4F5159;
  font-size: 14px;
  font-weight: 500;
}

.catalog-form-section .catalog-form .form-group input::-ms-input-placeholder, .catalog-form-section .catalog-form .form-group select::-ms-input-placeholder {
  color: #4F5159;
  font-size: 14px;
  font-weight: 500;
}

.catalog-form-section .catalog-form .form-group input::placeholder, .catalog-form-section .catalog-form .form-group select::placeholder {
  color: #4F5159;
  font-size: 14px;
  font-weight: 500;
}

.catalog-form-section .catalog-form .form-group input:focus, .catalog-form-section .catalog-form .form-group select:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.3);
}

.catalog-form-section .catalog-form .form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.catalog-form-section .catalog-form .select-wrapper {
  position: relative;
}

.catalog-form-section .catalog-form .select-wrapper .select-icon {
  position: absolute;
  right: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
  width: 24px;
  height: 24px;
}

.catalog-form-section .catalog-form .form-bottom {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}

.catalog-form-section .catalog-form .form-bottom .radio-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.catalog-form-section .catalog-form .form-bottom .radio-wrapper input[type="radio"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.catalog-form-section .catalog-form .form-bottom .radio-wrapper label {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
}

.catalog-form-section .catalog-form .form-bottom .radio-wrapper label a {
  color: #1A1B1E;
  text-decoration: none;
}

.catalog-form-section .catalog-form .form-bottom .radio-wrapper label a:hover {
  opacity: 0.7;
}

.catalog-form-section .catalog-form .form-bottom .submit-btn {
  width: auto;
  height: 48px;
  background: #1A1B1E;
  border: none;
  border-radius: 100px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0 22px !important;
  white-space: nowrap;
}

.catalog-form-section .catalog-form .form-bottom .submit-btn:hover {
  opacity: 0.8;
}

.catalog-form-section .form-image {
  width: 100%;
  height: 80%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.catalog-form-section .form-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 991px) {
  .catalog-form-section .form-title {
    margin-bottom: 60px;
    font-size: 36px;
  }
  .catalog-form-section .form-image {
    margin-top: 40px;
    min-height: 400px;
  }
}

.catalog-form-section .col-lg-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  margin-right: 5%;
}

@media (max-width: 1200px) {
  .catalog-form-section .col-lg-6 {
    width: 100%;
  }
}

.catalog-form-section .col-lg-5 {
  width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (min-width: 1024px) and (max-width: 1200px) {
  .catalog-form-section .col-lg-5 {
    display: none;
  }
}

@media (max-width: 1023px) {
  .catalog-form-section .col-lg-5 {
    display: none;
  }
}

@media (max-width: 767px) {
  .catalog-form-section .catalog-form .form-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .catalog-form-section .catalog-form .form-bottom .radio-wrapper {
    margin-bottom: 24px;
  }
  .catalog-form-section .catalog-form .form-bottom .submit-btn {
    width: 100%;
  }
}

.catalog-form-section .form-bottom .radio-wrapper input[type="radio"]:checked {
  accent-color: #1A1B1E;
}

.catalog-form-section .form-bottom .radio-wrapper input[type="radio"] {
  width: 20px;
  height: 20px;
  margin-top: 0;
}

.catalog-form-section .form-bottom .radio-wrapper label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
  gap: 5px;
}

.catalog-form-section .form-bottom .radio-wrapper label a {
  color: #1A1B1E;
  text-decoration: none;
}

.catalog-form-section .form-bottom .radio-wrapper label a:hover {
  opacity: 0.7;
}

.navbar .dropdown-menu {
  background: transparent;
  -webkit-backdrop-filter: blur(35px);
          backdrop-filter: blur(35px);
  border: none;
  border-radius: 0;
  padding: 0;
}

.navbar .dropdown-menu .dropdown-item {
  padding: 20px 10px;
  margin-bottom: 15px !important;
  margin-top: 15px !important;
  color: #1A1B1E;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.navbar .dropdown-menu .dropdown-item:last-child {
  margin-bottom: 0;
}

.navbar .dropdown-menu .dropdown-item:hover {
  background: transparent;
  opacity: 0.5;
}
/*# sourceMappingURL=style.css.map */