/*--------------------------
    Project Name: Lamba
    Version: 1.0
    Author: 7oorof
    Devloped by: Ahmed Abdallah (a.abdallah999@gmail.com)
    Relase Date: July 2020
---------------------------*/
/*---------------------------
      Table of Contents
    -------------------------
    
    01- Global Styles
    02- Helper Classes
    03- Background & Colors
    04- Typography
    05- page title 
    06- Buttons
    07- Forms
    08- Tabs
    09- Icons
    10- Breadcrumb
    11- Pagination
    12- Alerts
    13- Header & Navbar 
    14- Accordions
    15- Banners
    16- About
    17- Footer
    18- Call to Action
    19- Carousel
    20- Slider
    21- Video
    22- Progress Bars
    23- Fancybox
    24- portfolio
    25- Team
    26- Testimonials
    27- Clients
    28- Blog
    29- Contact
    30- Pricing
    31- Counters
    32- Shop
    33- Sidebar
    34- Countdown
    35- Awards
    36- Page 404
 
----------------------------*/
/*--------------------------
      Global Styles
---------------------------*/
body {
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #9b9b9b;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 100px;
 
}

body::-webkit-scrollbar{
    display: none;
}

::-moz-selection {
  background-color: #1b1a1a;
  color: #ffffff;
}

::selection {
  background-color: #1b1a1a;
  color: #ffffff;
}


a {
  color: inherit;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}

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

textarea {
  resize: none;
}

section {
  position: relative;
  padding-top: 60px;
  padding-bottom: 100px;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
}

/*-------------------------
     RESET Default Styles
 --------------------------*/
button {
  all: unset;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

button,
button:focus,.btn:focus-visible,
.btn.focus,
.btn:focus,.btn:focus-visible,
.form-control,
.form-control:focus,.form-control:focus-visible,
.btn-dark:not(:disabled):not(.disabled):active {
  outline: none; 
  -webkit-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

*:focus {
  outline: 0;
}

textarea {
  resize: none;
}

select {
  background-color: transparent;
}

.sticky-top {
  top: 100px;
  z-index: 500;
}

/* li::marker {
  content: ' ';
} */

@media (max-width: 1200px) {
  html {
    overflow-x: hidden;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .container {
    max-width: 100%;
  }
  .slider-container{
    padding: 0 0 0 60px;
  }
}

@media (min-width: 576px) and (max-width: 768px) {
  .container {
    max-width: 100%;
  }
}

@media (min-width: 1300px) {

  .team-boxed,
  .navbar>.container,
  .google-map .container-fluid,
  .video-banner .container-fluid,
  .slider-layout1 .slick-carousel,
  .slider-layout3 .slick-carousel,
  .slider-layout2 .container-fluid,
  .page-title-layout5 .container-fluid,
  .portfolio-masonry .container-fluid {
    padding-right: 35px;
    padding-left: 35px;
  }
}

@media (min-width: 1500px) {

  .team-boxed,
  .navbar>.container,
  .google-map .container-fluid,
  .video-banner .container-fluid,
  .slider-layout1 .slick-carousel,
  .slider-layout3 .slick-carousel,
  .slider-layout2 .container-fluid,
  .page-title-layout5 .container-fluid,
  .portfolio-masonry .container-fluid {
    padding-right: 70px;
    padding-left: 70px;
  }
}

/*----------------------------
      Helper Classes
----------------------------*/
.col-padding-0>.row {
  margin: 0;
}

.col-padding-0,
.col-padding-0>.row>[class*="col-"] {
  padding: 0;
}

.col-padding-5>.row {
  margin-right: -5px;
  margin-left: -5px;
}

.col-padding-5,
.col-padding-5>.row>[class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}

.inner-padding {
  padding: 30px 65px;
}

@media (min-width: 1400px) {
  .inner-padding {
    padding: 70px 140px;
  }
}

.vertical-align-center {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.background-banner {
  min-height: 500px;
}

.width-auto {
  width: auto !important;
}

.lh-1 {
  line-height: 1 !important;
}

.vh-100 {
  height: 100vh !important;
}

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

.align-v-h {
  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;
}

.fz-13 {
  font-size: 13px;
}

.fz-16 {
  font-size: 16px;
  line-height: 26px;
}

.border-top {
  border-top: 1px solid #e9e9e9;
}

@media (min-width: 992px) {
  .col-lg-5th {
    -ms-flex: 0 0 20%;
    -webkit-box-flex: 0;
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/*  margin Top */
.mt-0 {
  margin-top: 0 !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mt-120 {
  margin-top: 120px !important;
}

/* Margin Bottom */
.mb-0 {
  margin-bottom: 0 !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-45 {
  margin-bottom: 45px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.mt--100 {
  margin-top: -100px;
}

/* Margin Right */
.mr-0 {
  margin-right: 0 !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

/* Margin Left */
.ml-0 {
  margin-left: 0 !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

/* padding Top */
.pb-10 {
  padding-top: 10px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pt-110 {
  padding-top: 110px !important;
}

.pt-120 {
  padding-top: 120px !important;
}

.pt-130 {
  padding-top: 130px !important;
}

.pt-140 {
  padding-top: 140px !important;
}

.pt-150 {
  padding-top: 150px !important;
}

.pt-170 {
  padding-top: 170px !important;
}

/*  Padding Bottom */
.pb-10 {
  padding-bottom: 10px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.pb-110 {
  padding-bottom: 110px !important;
}

.pb-120 {
  padding-bottom: 120px !important;
}

.pb-130 {
  padding-bottom: 130px !important;
}

.pb-140 {
  padding-bottom: 140px !important;
}

.pb-150 {
  padding-bottom: 150px !important;
}

.pb-170 {
  padding-bottom: 170px !important;
}

/* padding Right */
.pr-0 {
  padding-right: 0 !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.pr-70 {
  padding-right: 70px !important;
}

.pr-100 {
  padding-right: 100px !important;
}

/* padding Left */
.pl-0 {
  padding-left: 0 !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.pl-70 {
  padding-left: 70px !important;
}

.pl-100 {
  padding-left: 100px !important;
}

@media (max-width: 992px) {
  .text-center-xs-sm-md {
    text-align: center !important;
  }
}

/* Large Devices */
@media (min-width: 992px) and (max-width: 1200px) {
  .inner-padding {
    padding: 20px 50px;
  }
}

/* Medium Devices */
@media (min-width: 768px) and (max-width: 991px) {

  section {
    padding: 75px 0;
  }

  .inner-padding {
    padding: 100px 50px !important;
  }

  .mt-30 {
    margin-top: 26.66667px !important;
  }

  .mt-40 {
    margin-top: 26.66667px !important;
  }

  .mt-50 {
    margin-top: 33.33333px !important;
  }

  .mt-60 {
    margin-top: 40px !important;
  }

  .mt-70 {
    margin-top: 46.66667px !important;
  }

  .mt-80 {
    margin-top: 53.33333px !important;
  }

  .mt-90 {
    margin-top: 60px !important;
  }

  .mt-100 {
    margin-top: 66.66667px !important;
  }

  .mb-30 {
    margin-bottom: 20px !important;
  }

  .mb-40 {
    margin-bottom: 26.66667px !important;
  }

  .mb-50 {
    margin-bottom: 33.33333px !important;
  }

  .mb-60 {
    margin-bottom: 40px !important;
  }

  .mb-70 {
    margin-bottom: 46.66667px !important;
  }

  .mb-80 {
    margin-bottom: 53.33333px !important;
  }

  .mb-90 {
    margin-bottom: 60px !important;
  }

  .mb-100 {
    margin-bottom: 66.66667px !important;
  }

  /* Margin Right */
  .mr-30 {
    margin-right: 20px !important;
  }

  .mr-40 {
    margin-right: 26.66667px !important;
  }

  .mr-50 {
    margin-right: 33.33333px !important;
  }

  /* Margin Left */
  .ml-30 {
    margin-left: 20px !important;
  }

  .ml-40 {
    margin-left: 26.66667px !important;
  }

  .ml-50 {
    margin-left: 33.33333px !important;
  }

  /* padding Top */
  .pt-30 {
    padding-top: 20px !important;
  }

  .pt-40 {
    padding-top: 26.66667px !important;
  }

  .pt-50 {
    padding-top: 33.33333px !important;
  }

  .pt-60 {
    padding-top: 40px !important;
  }

  .pt-70 {
    padding-top: 46.66667px !important;
  }

  .pt-80 {
    padding-top: 53.33333px !important;
  }

  .pt-90 {
    padding-top: 60px !important;
  }

  .pt-100 {
    padding-top: 66.66667px !important;
  }

  .pt-110 {
    padding-top: 73.33333px !important;
  }

  .pt-120 {
    padding-top: 80px !important;
  }

  .pt-130 {
    padding-top: 93.33333px !important;
  }

  .pt-140 {
    padding-top: 93.33333px !important;
  }

  .pt-150 {
    padding-top: 100px !important;
  }

  .pt-160 {
    padding-top: 106.66667px !important;
  }

  .pt-170 {
    padding-top: 113.33333px !important;
  }

  /*  Padding Bottom */
  .pb-30 {
    padding-bottom: 20px !important;
  }

  .pb-40 {
    padding-bottom: 26.66667px !important;
  }

  .pb-50 {
    padding-bottom: 33.33333px !important;
  }

  .pb-60 {
    padding-bottom: 40px !important;
  }

  .pb-70 {
    padding-bottom: 46.66667px !important;
  }

  .pb-80 {
    padding-bottom: 53.33333px !important;
  }

  .pb-90 {
    padding-bottom: 60px !important;
  }

  .pb-100 {
    padding-bottom: 66.66667px !important;
  }

  .pb-110 {
    padding-bottom: 73.33333px !important;
  }

  .pb-120 {
    padding-bottom: 80px !important;
  }

  .pb-130 {
    padding-bottom: 86.66667px !important;
  }

  .pb-140 {
    padding-bottom: 93.33333px !important;
  }

  .pb-150 {
    padding-bottom: 100px !important;
  }

  .pb-160 {
    padding-bottom: 106.66667px !important;
  }

  .pb-170 {
    padding-bottom: 113.33333px !important;
  }
}

/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  section {
    padding: 10px 0;
  }

  .inner-padding {
    padding: 20px !important;
  }

  .text-center-xs-sm {
    text-align: center !important;
  }

  .mt-30 {
    margin-top: 15px !important;
  }

  .mt-40 {
    margin-top: 20px !important;
  }

  .mt-50 {
    margin-top: 25px !important;
  }

  .mt-60 {
    margin-top: 30px !important;
  }

  .mt-70 {
    margin-top: 35px !important;
  }

  .mt-80 {
    margin-top: 40px !important;
  }

  .mt-90 {
    margin-top: 45px !important;
  }

  .mt-100 {
    margin-top: 50px !important;
  }

  .mb-30 {
    margin-bottom: 15px !important;
  }

  .mb-40 {
    margin-bottom: 20px !important;
  }

  .mb-50 {
    margin-bottom: 25px !important;
  }

  .mb-60 {
    margin-bottom: 30px !important;
  }

  .mb-70 {
    margin-bottom: 35px !important;
  }

  .mb-80 {
    margin-bottom: 40px !important;
  }

  .mb-90 {
    margin-bottom: 45px !important;
  }

  .mb-100 {
    margin-bottom: 50px !important;
  }

  /* Margin Right */
  .mr-30 {
    margin-right: 15px !important;
  }

  .mr-40 {
    margin-right: 20px !important;
  }

  .mr-50 {
    margin-right: 25px !important;
  }

  /* Margin Left */
  .ml-30 {
    margin-left: 15px !important;
  }

  .ml-40 {
    margin-left: 20px !important;
  }

  .ml-50 {
    margin-left: 25px !important;
  }

  /* padding Top */
  .pt-30 {
    padding-top: 15px !important;
  }

  .pt-40 {
    padding-top: 20px !important;
  }

  .pt-50 {
    padding-top: 25px !important;
  }

  .pt-60 {
    padding-top: 30px !important;
  }

  .pt-70 {
    padding-top: 35px !important;
  }

  .pt-80 {
    padding-top: 40px !important;
  }

  .pt-90 {
    padding-top: 45px !important;
  }

  .pt-100 {
    padding-top: 50px !important;
  }

  .pt-110 {
    padding-top: 55px !important;
  }

  .pt-120 {
    padding-top: 60px !important;
  }

  .pt-130 {
    padding-top: 70px !important;
  }

  .pt-140 {
    padding-top: 70px !important;
  }

  .pt-150 {
    padding-top: 75px !important;
  }

  .pt-160 {
    padding-top: 80px !important;
  }

  .pt-170 {
    padding-top: 85px !important;
  }

  /*  Padding Bottom */
  .pb-30 {
    padding-bottom: 15px !important;
  }

  .pb-40 {
    padding-bottom: 20px !important;
  }

  .pb-50 {
    padding-bottom: 25px !important;
  }

  .pb-60 {
    padding-bottom: 30px !important;
  }

  .pb-70 {
    padding-bottom: 35px !important;
  }

  .pb-80 {
    padding-bottom: 40px !important;
  }

  .pb-90 {
    padding-bottom: 45px !important;
  }

  .pb-100 {
    padding-bottom: 50px !important;
  }

  .pb-110 {
    padding-bottom: 55px !important;
  }

  .pb-120 {
    padding-bottom: 60px !important;
  }

  .pb-130 {
    padding-bottom: 65px !important;
  }

  .pb-140 {
    padding-bottom: 70px !important;
  }

  .pb-150 {
    padding-bottom: 75px !important;
  }

  .pb-160 {
    padding-bottom: 80px !important;
  }

  .pb-170 {
    padding-bottom: 85px !important;
  }
}

/*-------------------------
   Background & Colors
--------------------------*/
/* Colors */
.color-white {
  color: #ffffff !important;
}

.color-gray {
  color: #f9f9f9 !important;
}

.color-dark {
  color: #1b1a1a !important;
}

.color-theme {
  color: #1b1a1a !important;
}

.color-heading {
  color: #1b1a1a !important;
}

.color-body {
  color: #9b9b9b !important;
}

/* backgrounds */
.bg-white {
  background-color: #ffffff !important;
}

.bg-gray2 {
  background-color: #f9f9f9 !important;
}

.bg-gray {
  background-color: #f9f9f9 !important;
}

.bg-dark {
  background-color: #1b1a1a !important;
}

.bg-heading {
  background-color: #1b1a1a !important;
}

.bg-theme {
  background-color: #1b1a1a !important;
}

.bg-img {
  position: relative;
  z-index: 1;
}

.bg-overlay:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(27, 26, 26, 0.25);
}

.bg-parallax {
  background-attachment: fixed;
}

/*-------------------------
   Typography
--------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1b1a1a;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .3px;
  margin-bottom: 20px;
}

p {
  margin-bottom: 15px;
}

h1 {
  font-size: 52px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 38px;
}

h4 {
  font-size: 32px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 18px;
}

.heading-subtitle {
  position: relative;
  font-size: 20px;
  color: #222222;
  margin-bottom: 10px;
  font-weight: 500;
  color: #000000;
}

.heading-subtitle:before {
  content: '';
  position: absolute;
  left: -70px;
  top: 50%;
  width: 40px;
  height: 2px;
  background-color: #222222;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.heading-desc {
  margin-bottom: 0;
}

.heading-light .heading-subtitle {
  color: #f9f9f9;
}

.heading-light .heading-title,
.heading-light .heading-desc {
  color: #ffffff;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .heading-title {
    font-size: 35px;
    margin-bottom: 15px;
  }

  .heading-subtitle:before {
    left: -50px;
  }
}

/*-------------------------
    page title 
-------------------------*/
.header-transparent+.page-title {
  margin-top: -100px;
}

.pagetitle__subheading {
  font-family: "Work Sans", sans-serif;
  font-size: 17px;
  line-height: 1;
  color: #f9f9f9;
  display: block;
  margin-bottom: 24px;
}

.pagetitle__heading {
  color: #ffffff;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
}

.pagetitle__desc {
  font-size: 17px;
  font-weight: 700;
  line-height: 27px;
  color: #ffffff;
}

.page-title {
  padding-top: 28px;
  padding-bottom: 5px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #A04F3E;
  background-color: #F7DFBA;
}

.breadcrumb-item,
.breadcrumb-arrow {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 4px;
}

.breadcrumb-item a {
  text-decoration: none;
  color: #A04F3E;
}

.breadcrumb-item.active {
  color: #A04F3E;
  font-weight: 500;
}


.page-title-layout1 .breadcrumb .breadcrumb-item a {
  color: #ffffff;
}

.page-title-layout1 .breadcrumb .breadcrumb-item.active {
  color: #681B0B;
  line-height: 26px;
  font-size: 18px;
}

.page-title-layout1 .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  content: "";
  color: #681B0B;
}

.page-title-layout1 .breadcrumb li i svg:nth-child(1) {
  margin-left: 15px;
}

.page-title-layout1 .breadcrumb .breadcrumb-item i {
  font-size: 16px;
}

.page-title-layout2 {
  padding-top: 195px;
  padding-bottom: 195px;
}

.page-title-layout2 .pagetitle__heading {
  color: #1b1a1a;
  font-size: 55px;
  font-weight: 800;
}

.page-title-layout3 {
  padding-top: 195px;
  padding-bottom: 195px;
}

.page-title-layout3 .pagetitle__heading {
  color: #ffffff;
  font-size: 65px;
  font-weight: 800;
}

.page-title-layout4 .breadcrumb:before {
  content: '';
  position: absolute;
  left: -70px;
  top: 50%;
  width: 40px;
  height: 2px;
  background-color: #222222;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.page-title-layout6 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.page-title-layout6 .pagetitle__heading {
  color: #ffffff;
  font-size: 45px;
  font-weight: 800;
}

.page-title-layout7 {
  padding-top: 370px;
  padding-bottom: 270px;
}

.page-title-layout7 .pagetitle__heading {
  color: #1b1a1a;
  font-size: 55px;
  font-weight: 800;
}

/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .pagetitle__heading {
    font-size: 19px;
  }

  .page-title-layout2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .page-title-layout2 .pagetitle__heading {
    font-size: 30px;
  }
}

/*--------------------
   Buttons
---------------------*/
.btn {
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  font-size: 15px;
  font-weight: 700;
  min-width: 170px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0 15px;
  letter-spacing: 1px;
  border: 0;
  border-radius: 1px;
  overflow: hidden;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  transition: none;

}

.btn-change {
  color: #FFFFFF !important;
  background-color: #A04F3E;
}

.btn-change:hover {
  color: #9B5040 !important;

}

.btn-change::before {
  display: none !important;
}

.btn-change::after {
  background-color: #FBB732 !important;
}

.btn:focus,
.btn.active,
.btn:active {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

.btn:not(.btn__link):after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #000000;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right center;
  transform-origin: right center;
  -webkit-transition: transform 0.24s cubic-bezier(0.37, 0.31, 0.31, 0.9);
  -webkit-transition: -webkit-transform 0.24s cubic-bezier(0.37, 0.31, 0.31, 0.9);
  transition: -webkit-transform 0.24s cubic-bezier(0.37, 0.31, 0.31, 0.9);
  transition: transform 0.24s cubic-bezier(0.37, 0.31, 0.31, 0.9);
  transition: transform 0.24s cubic-bezier(0.37, 0.31, 0.31, 0.9), -webkit-transform 0.24s cubic-bezier(0.37, 0.31, 0.31, 0.9);
}

.btn:not(.btn__link):before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 2px;
  width: 20px;
  height: 2px;
  margin-right: 10px;
  background-color: #494848;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.btn:not(.btn__link):hover:after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.btn__primary {
  background-color: #1b1a1a;
  color: #ffffff;
}

.btn__primary:hover {
  color: #ffffff;
}

.btn__primary:active,
.btn__primary:focus {
  background-color: #1b1a1a;
  color: #ffffff;
}

.btn__primary.btn__bordered {
  background-color: transparent;
  border: 2px solid #1b1a1a;
  color: #1b1a1a;
}

.btn__primary.btn__bordered:hover {
  color: #ffffff;
}

.btn__primary.btn__bordered:before {
  background-color: #1b1a1a;
}

.btn__secondary {
  background-color: #1b1a1a;
  color: #ffffff;
}

.btn__secondary:before {
  background-color: #1b1a1a !important;
}

.btn__secondary:hover {
  color: #ffffff;
}

.btn__secondary:active,
.btn__secondary:focus {
  background-color: #1b1a1a;
  color: #ffffff;
}

.btn__secondary.btn__bordered {
  background-color: transparent;
  border: 2px solid #1b1a1a;
  color: #1b1a1a;
}

.btn__secondary.btn__bordered:hover {
  border-color: #1b1a1a;
  color: #ffffff;
}

.btn__secondary.btn__bordered:before {
  background-color: #1b1a1a;
}

.btn__white {
  background-color: #ffffff;
  color: #1b1a1a;
}

.btn__white:hover {
  color: #ffffff;
}

.btn__white:active,
.btn__white:focus {
  background-color: #ffffff;
  color: #1b1a1a;
}

.btn__white.btn__bordered {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn__white.btn__bordered:hover {
  color: #1b1a1a;
}

.btn__white.btn__bordered:before {
  background-color: #ffffff;
}

.btn__bordered {
  background-color: transparent;
}

.btn__link {
  background-color: transparent;
  border-color: transparent;
  min-width: 0;
  line-height: 1;
  height: auto;
  padding: 0 0 4px 0;
  border: none;
}

.btn__link:after,
.btn__link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
}

.btn__link:before {
  width: 0;
  z-index: 2;
  -webkit-transition: all 0.6s linear;
  transition: all 0.6s linear;
}

.btn__link:hover:before {
  width: 100%;
}

.btn__link.btn__primary {
  color: #1b1a1a;
}

.btn__link.btn__primary:active,
.btn__link.btn__primary:focus,
.btn__link.btn__primary:hover {
  color: #1b1a1a;
  background-color: transparent;
  border-color: transparent;
}

.btn__link.btn__primary:active:before,
.btn__link.btn__primary:focus:before,
.btn__link.btn__primary:hover:before {
  background-color: #1b1a1a;
}

.btn__link.btn__primary:after {
  background-color: #1b1a1a;
}

.btn__link.btn__secondary {
  color: #1b1a1a;
}

.btn__link.btn__secondary:active,
.btn__link.btn__secondary:focus,
.btn__link.btn__secondary:hover {
  color: #1b1a1a;
  background-color: transparent;
  border-color: transparent;
}

.btn__link.btn__secondary:active:before,
.btn__link.btn__secondary:focus:before,
.btn__link.btn__secondary:hover:before {
  background-color: #1b1a1a;
}

.btn__link.btn__secondary:after {
  background-color: #1b1a1a;
}

.btn__rounded {
  border-radius: 50px;
}

.btn__block {
  width: 100%;
}

.btn__lg {
  min-width: 270px;
}

.btn__icon {
  display: -ms-inline-flexbox;
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}

.btn__icon span {
  margin-right: 5px;
}

.btn__icon i {
  margin-left: 5px;
}

/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .btn {
    font-size: 13px;
    min-width: 100px;
    height: 40px;
    line-height: 40px;
  }
}

/*----------------------
        Forms
----------------------*/
.form-group {
  position: relative;
  margin-bottom: 20px;
}

label.error {
  position: absolute;
  bottom: -30px;
  color: red;
}

.form-control {
  border: 0;
  padding: 0;
  border-radius: 0;
  height: 55px;
  border-bottom: 2px solid #e9e9e9;
}

.form-control::-webkit-input-placeholder {
  color: #9b9b9b;
}

.form-control:-moz-placeholder {
  color: #9b9b9b;
}

.form-control::-moz-placeholder {
  color: #9b9b9b;
}

.form-control:-ms-input-placeholder {
  color: #9b9b9b;
}

.form-control:focus {
  border-color: #e9e9e9;
}

.form-control~.focus-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  width: 0;
  z-index: 2;
  -webkit-transition: width 0.6s;
  transition: width 0.6s;
  background-color: #1b1a1a;
}

.form-control:focus~.focus-border {
  width: 100%;
  -webkit-transition: width 0.2s;
  transition: width 0.2s;
}

textarea.form-control {
  min-height: 90px;
}

.nice-select.form-control {
  border: 2px solid #e9e9e9;
}

.nice-select .list {
  width: 100%;
}

/*--------------------
    Tabs
--------------------*/
.nav-tabs {
  border-bottom: 1px solid #1b1a1a;
}

.nav-tabs .nav__link {
  position: relative;
  color: #222222;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 10px;
  margin-right: 20px;
  display: block;
}

.nav-tabs .nav__link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0;
  height: 1px;
  margin: auto;
  display: block;
  background-color: #1b1a1a;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.nav-tabs .nav__link:last-of-type {
  margin-right: 0;
}

.nav-tabs .nav__link:hover:before,
.nav-tabs .nav__link.active:before {
  width: 100%;
}

.tab-content {
  padding-top: 36px;
}

/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .nav__link {
    margin-right: 7px;
  }
}

/*------------------- 
    Icons
------------------*/
.social-icons {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.social-icons li {
  margin-right: 20px;
}

.social-icons li:last-of-type {
  margin-right: 0;
}

.social-icons li a {
  margin-right: 20px;
  font-size: 15px;
  color: #1b1a1a;
}

.social-icons-white li a {
  color: #ffffff;
}

.social-icons-white li a:hover {
  color: #f9f9f9;
}

.social-icons.flex-column li {
  margin-right: 0;
  margin-bottom: 10px;
}

.social-icons.flex-column li:last-child {
  margin-bottom: 0;
}

.icon-arrow-right,
.icon-arrow-left {
  font-size: 60%;
}

.arrow-right {
  display: inline-block;
  width: 20px;
  border: 1px solid #1b1a1a;
  position: relative;
  -webkit-transition: width 0.4s linear;
  transition: width 0.4s linear;
}

.arrow-right:before {
  content: "";
  position: absolute;
  width: 10px;
  top: 2px;
  right: -2px;
  border: 1px solid #1b1a1a;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.arrow-right:after {
  content: "";
  position: absolute;
  width: 10px;
  top: -4px;
  right: -2px;
  border: 1px solid #1b1a1a;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.icon-menu {
  color: #1b1a1a;
  display: inline-block;
  height: 24px;
  width: 21px;
  cursor: pointer;
  position: relative;
}

.icon-menu span {
  position: absolute;
  top: 15px;
  right: 0;
  width: 21px;
  height: 2px;
  background-color: #1b1a1a;
}

.icon-menu:before,
.icon-menu:after {
  content: '';
  position: absolute;
  right: 0;
  height: 2px;
  background-color: #1b1a1a;
  -webkit-transition: width 0.2s linear;
  transition: width 0.2s linear;
}

.icon-menu:before {
  top: 9px;
  width: 15px;
}

.icon-menu:after {
  top: 21px;
  width: 11px;
}

.icon-menu:hover:before,
.icon-menu:hover:after {
  width: 21px;
}

/*-------------------------
    Breadcrumb
--------------------------*/
.breadcrumb {
  padding: 0;
  position: relative;
  background-color: transparent;
}

.breadcrumb .breadcrumb-item {
  font-family: "Poppins", sans-serif;
}

.breadcrumb .breadcrumb-item a {
  color: #222222;
}

.breadcrumb .breadcrumb-item.active {
  color: #222222;
}

.breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  content: "/";
  color: #222222;
}

/*----------------------
    Pagination
-----------------------*/
.pagination {
  margin-bottom: 0;
}

.pagination li {
  margin-right: 10px;
}

.pagination li:last-child {
  margin-right: 0;
}

.pagination li a {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border: 0;
  text-align: center;
  color: #ffffff;
  background-color: #1b1a1a;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.pagination li a:hover,
.pagination li a.current {
  background-color: #000000;
  border-color: #000000;
}

/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .pagination li a {
    font-size: 15px;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}

/*-----------------------
    Alerts
-----------------------*/
.alert-panel {
  position: relative;
  padding: 20px;
  border: 2px solid #e9e9e9;
  border-radius: 3px;
}

.alert__title {
  font-family: "Work Sans", sans-serif;
  color: #1b1a1a;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 0;
}

/*------------------------
    Animations
-----------------------*/
@-webkit-keyframes translateHeader {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

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

@keyframes translateHeader {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

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

@-webkit-keyframes slideTopDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideTopDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes zooming {
  0% {
    opacity: 0.5;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  40% {
    opacity: 0.7;
    -webkit-transform: scale(1.09);
    transform: scale(1.09);
  }

  100% {
    opacity: 0.8;
    -webkit-transform: scale(1.11);
    transform: scale(1.11);
  }
}

@keyframes zooming {
  0% {
    opacity: 0.5;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  40% {
    opacity: 0.7;
    -webkit-transform: scale(1.09);
    transform: scale(1.09);
  }

  100% {
    opacity: 0.8;
    -webkit-transform: scale(1.11);
    transform: scale(1.11);
  }
}

@-webkit-keyframes pulsing {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}

@keyframes pulsing {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}

/*----------------------
    Accordions
------------------------*/
.baski-detayi-1 {
  .container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
  }
}

.side-bar-flex,
.main-image,
.details {
  background: #F5F5F5;
  padding: 20px;
}

.side-bar-flex {
  flex: 1;
  text-align: -webkit-center;
  min-width: 200px;
  position: relative;
  min-height: 700px;
  height: auto;
}

.btn-sidebar {
  position: relative;
  margin: 0;
  width: 100%;
}

.btn-sidebar button {
  width: 100%;
}

.btn-sidebar button::before {
  display: none !important;
}

.sidebar-baski {
  width: 100%;
  max-width: 100%;
}

.main-image {
  flex: 2;
  text-align: center;
}

.details {
  flex: 1;
  min-width: 250px;
}

.details h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 24px;
}

.details h4 {
  font-size: 20px;
  color: #000000;
  font-weight: 500;
}

.details p {
  display: flex;
  font-size: 16px;
  color: #93929A;
  justify-content: space-between;
}

.details p span {
  font-size: 16px;
  color: #333333;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #fafafa;
}

.accordion-content.open {
  padding: 12px 16px;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: white;
  transition: max-height 0.4s ease;
}

.accordion-inner .nice-select {
  display: none !important;
}

.accordion-inner {
  padding: 15px;
  padding: 15px;
  overflow: visible;
  background: #FFFFFF;

}

.accordion-inner select {
  display: block !important;
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 15px;
  /* appearance: auto; */
  background: #fff;
  /* appearance: none; */
  /* -webkit-appearance: none;
  -moz-appearance: none; */
}


.thumbnail-row img {
  width: 80px;
  height: 80px;
  margin: 5px;
  cursor: pointer;
}

.size-box {
  padding: 10px;
  background: #eee;
  display: inline-block;
  margin-top: 10px;
}

.highlight {
  color: green;
  font-weight: bold;
}


.cart-msg {
  margin-top: 10px;
  color: green;
  display: none;
}

@media (max-width: 768px) {

  .baski-detayi-1 {
    flex-direction: column;
  }
}

/*----------------------------
     Header & Navbar 
-----------------------------*/
/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  max-height: 100px;
  padding: 0;
  z-index: 1040;
  background-color: #ffffff;
  border-bottom: 1px solid #ededed;
  /*  dropdown-menu  */
}

.navbar .container {
  padding-inline: 1rem;
}

.container-70 {
  padding-left: 70px;
  padding-right: 70px;
  width: 100%;
}

.navbar>.container {
  position: relative;
  height: 100px;
  max-width: 1400px;
}

.navbar .navbar-brand {
  padding: 0;
  margin: 0;
  line-height: 100px;
  white-space: normal;
}

.navbar .navbar-toggler {
  padding: 0;
  border: none;
  border-radius: 0;
  width: 23px;
  position: relative;
}

.navbar .navbar-toggler .menu-lines {
  display: inline-block;
}

.navbar .navbar-toggler .menu-lines:before,
.navbar .navbar-toggler .menu-lines:after {
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  width: 23px;
  height: 2px;
  display: inline-block;
  background-color: #1b1a1a;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.navbar .navbar-toggler .menu-lines:after {
  top: 10px;
}

.navbar .navbar-toggler .menu-lines span {
  position: absolute;
  top: 0;
  left: 0;
  width: 23px;
  height: 2px;
  background-color: #1b1a1a;
}

.navbar .navbar-toggler.actived .menu-lines>span {
  opacity: 0;
}

.navbar .navbar-toggler.actived .menu-lines:before {
  top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.navbar .navbar-toggler.actived .menu-lines:after {
  top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navbar .nav__item {
  position: relative;
  margin-right: 30px;
}

.navbar .nav__item .nav__item-link {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
  display: inline-block;
  position: relative;
  color: #1b1a1a;
  line-height: 100px;
  letter-spacing: .4px;
}

.navbar .nav__item .nav__item-link:before {
  content: '';
  position: absolute;
  bottom: 35px;
  left: 0;
  right: 0;
  width: 0;
  height: 2px;
  margin: auto;
  display: block;
  background-color: #1b1a1a;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.navbar .nav__item .nav__item-link.active:before,
.navbar .nav__item .nav__item-link:hover:before {
  width: 100%;
}


.navbar .dropdown-menu {
  border-radius: 0;
  border: none;
  margin: 0;
  background-color: #1b1a1a;
}

.navbar .dropdown-menu .nav__item {
  padding: 0 40px;
  margin-right: 0;
}

.navbar .dropdown-menu .nav__item .nav__item-link {
  color: #f9f9f9;
  text-transform: capitalize;
  font-weight: 400;
  line-height: 37px;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
}

.navbar .dropdown-menu .nav__item .nav__item-link:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

.navbar .dropdown-menu .dropdown-toggle:after {
  right: 0;
}

.navbar .dropdown-menu__title {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 5px;
}

.navbar .siparisOlustur {
  color: #FFFFFF;
  background-color: #A04F3E !important;
  font-weight: 400;
}

a:not([href]):hover {
  color: #9B5040;
  font-size: 16px;
  font-weight: 400;
  transition: none;
}

.navbar .btn.siparisOlustur:not(.btn__link):before {
  display: none;
}

.btn:not(.btn__link):after {
  background-color: #FCD78E;
  color: #9B5040;
}

/* sticky-navbar */
.sticky-navbar {
  border-bottom: 0 !important;
  background-color: #ffffff !important;
  -webkit-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.07);
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.07);
  -webkit-animation: translateHeader 0.8s;
  animation: translateHeader 0.8s;
}

.header-transparent .navbar {
  background-color: transparent !important;
}

.header-transparent .navbar.sticky-navbar {
  background-color: #ffffff !important;
}

/* navbar-actions */
.navbar-actions__list>li>a {
  margin-left: 20px;
}

.action-btn {
  position: relative;
  color: #1b1a1a;
}

.action-btn:hover {
  color: #1b1a1a;
}

.cart__counter {
  position: absolute;
  top: -10px;
  right: -9px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  border-radius: 50%;
  text-align: center;
  background-color: #1b1a1a;
  color: #ffffff;
  font-size: 12px;
}

.search-popup,
.hamburger-menu {
  position: fixed;
  z-index: 2300;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(27, 26, 26, 0.98);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

/* search-popup */
.search-popup.active {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.search-popup.active .search-popup__form {
  -webkit-transform: translateY(-50%) scaleX(1);
  transform: translateY(-50%) scaleX(1);
}

.search-popup.inActive {
  opacity: 0;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.search-popup.inActive .search-popup__form {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transform: translateY(-50%) scaleX(0);
  transform: translateY(-50%) scaleX(0);
}

.search-popup .search-popup__close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 35px;
  color: #f9f9f9;
  cursor: pointer;
  font-style: normal;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.search-popup .search-popup__close:hover {
  color: #ffffff;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.search-popup .search-popup__form {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 550px;
  margin: -40px auto 0;
  -webkit-transform: translateY(-50%) scaleX(0);
  transform: translateY(-50%) scaleX(0);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.search-popup .search-popup__form__input {
  color: #ffffff;
  z-index: 1;
  height: 80px;
  padding: 0 0 0 40px;
  background: transparent;
  border: none;
  border-bottom: 2px solid #f9f9f9;
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 35px;
  font-weight: 300;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.search-popup .search-popup__form__input:focus {
  outline: 0;
  border-bottom: 2px solid #ffffff;
}

.search-popup .search-popup__form__input::-webkit-input-placeholder {
  color: #f9f9f9;
}

.search-popup .search-popup__form__input:-ms-input-placeholder {
  color: #f9f9f9;
}

.search-popup .search-popup__form__input::-ms-input-placeholder {
  color: #f9f9f9;
}

.search-popup .search-popup__form__input::placeholder {
  color: #f9f9f9;
}

.search-popup .search-popup__btn {
  position: absolute;
  top: 0;
  left: 0;
  line-height: 80px;
  text-align: center;
  font-size: 28px;
  cursor: pointer;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  color: #ffffff;
}

.search-popup .search-popup__btn:hover {
  color: #f9f9f9;
}

/* hamburger-menu */
.hamburger-menu {
  background-color: #161616;
  max-width: 510px;
  padding: 75px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.hamburger-menu.active {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.hamburger-menu.inActive {
  opacity: 0;
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.hamburger-menu.inActive .hamburger-menu__content {
  opacity: 0;
  -webkit-transform: scale(0.97);
  transform: scale(0.97);
}

.hamburger-menu .hamburger-menu__content {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.hamburger-menu .hamburger-menu__close {
  position: absolute;
  top: 40px;
  right: 40px;
  cursor: pointer;
  font-style: normal;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.hamburger-menu .hamburger-menu__close:hover {
  color: #f9f9f9;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.hamburger-menu .hamburger-menu__close,
.hamburger-menu .hamburger-menu__email,
.hamburger-menu .hamburger-menu__title {
  color: #ffffff;
  font-size: 23px;
}

.hamburger-menu .hamburger-menu__title {
  margin-bottom: 15px;
}

.hamburger-menu .hamburger-menu__email {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  position: relative;
  padding-bottom: 5px;
  display: inline-block;
}

.hamburger-menu .hamburger-menu__email:after,
.hamburger-menu .hamburger-menu__email:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
}

.hamburger-menu .hamburger-menu__email:after {
  width: 100%;
  background-color: #ffffff;
}

.hamburger-menu .hamburger-menu__email:before {
  width: 0;
  z-index: 2;
  background-color: #f9f9f9;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.hamburger-menu .hamburger-menu__email:hover {
  color: #f9f9f9;
}

.hamburger-menu .hamburger-menu__email:hover:before {
  width: 100%;
}

.hamburger-menu .social-icons li a {
  color: #ffffff;
}

/* cart-popup */
.cart-popup {
  background-color: #1b1a1a;
  width: 330px;
  padding: 40px;
  position: absolute;
  top: 100%;
  right: 30px;
  z-index: 1055;
  opacity: 0;
  visibility: hidden;
  -webkit-box-shadow: 0px 2px 6px 0px rgba(40, 40, 40, 0.1);
  box-shadow: 0px 2px 6px 0px rgba(40, 40, 40, 0.1);
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

.cart-popup.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.cart-popup .cart-item {
  position: relative;
  margin-bottom: 20px;
}

.cart-popup .cart-item .cart__item-img {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 2px;
  margin-right: 15px;
}

.cart-popup .cart-item .cart__item-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-right: 22px;
}

.cart-popup .cart-item .cart__item-title {
  color: #ffffff;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 4px;
}

.cart-popup .cart-item .cart__item-detail {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.cart-popup .cart-item .cart__item-detail span:first-child {
  padding-right: 4px;
}

.cart-popup .cart-item .cart__item-delete {
  width: 20px;
  height: 20px;
  line-height: 20px;
  background-color: #ffffff;
  color: #1b1a1a;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  font-style: normal;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.cart-popup .cart-item .cart__item-delete:hover {
  background-color: #1b1a1a;
}

.cart-popup .cart-subtotal span {
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  line-height: 1;
  font-size: 18px;
  font-weight: 700;
}

.cart-popup .cart-action .btn {
  min-width: 105px;
  height: 40px;
  line-height: 40px;
}

/* menu-popup */
.menu-popup {
  position: fixed;
  z-index: 2300;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: rgba(27, 26, 26, 0.98);
  -webkit-transform: scaleX(0.7);
  transform: scaleX(0.7);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.menu-popup.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.menu-popup .menu-popup__close {
  position: absolute;
  top: 30px;
  right: 40px;
  cursor: pointer;
  font-style: normal;
  font-size: 30px;
  color: #ffffff;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.menu-popup .menu-popup__close:hover {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.menu-popup .menu-popup__banner {
  -ms-flex: 0 0 44%;
  -webkit-box-flex: 0;
  flex: 0 0 44%;
  max-width: 44%;
}

.menu-popup .menu-popup__content {
  -ms-flex: 0 0 56%;
  -webkit-box-flex: 0;
  flex: 0 0 56%;
  max-width: 56%;
  padding: 50px;
  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;
}

.menu-popup .menu-popup__list li a {
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  font-weight: 500;
  font-size: 56px;
  display: block;
}

.menu-popup .menu-popup__list li a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.menu-popup .menu-popup__contact-list li a {
  display: block;
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 3px;
}

.menu-popup .social-icons li a {
  color: #ffffff;
}

.menu-popup .social-icons li a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.with-dropdown{
    display: flex;
    align-items: center; 
    gap: 8px;
}

/* Mobile and Tablets */
@media (max-width: 991px) {
  .baski-detayi-1 {
    flex-direction: column;
  }

  .side-bar-flex {
    min-height: auto;
  }

  .sidebar-baski {
    width: 50%;
  }

  .main-image {
    width: 100% !important;
  }

  .details {
    width: 100% !important;
    padding-right: 50px;
  }

  .btn-sidebar button {
    width: 50%;
  }

  .navbar .navbar-toggler {
    position: absolute;
    right: 15px;
    height: 13px;
  }

  .bankalar .bank-card .img {
    gap: 10px
  }

  .navbar .collapse:not(.show) {
    display: block;
  }

  .navbar .navbar-nav {
    margin: 0 !important;
  }

  .navbar .nav__item {
    margin-right: 0;
    position: relative;
  }

  .navbar .nav__item svg {
    left: -27%;
    width: 100%;
    top: 15px;
    bottom: 20px;
    position: absolute;
  }

  .navbar .nav__item .nav__item-link {
    display: block;
    color: #1b1a1a;
    line-height: 35px;
    padding-left: 15px;
  }

  .navbar .nav__item .nav__item-link:hover {
    color: #1b1a1a;
  }

  .navbar .nav__item .nav__item-link:before {
    display: none;
  }

  .navbar .navbar-collapse {
    background-color: white;
    -webkit-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.07);
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.07);
    z-index: 50;
    padding: 15px 0;
    position: absolute;
    left: 0;
    width: 100%;
    top: 100%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  .navbar .navbar-collapse .navbar-actions {
    padding: 0 15px;
  }

  .navbar .menu-opened.navbar-collapse {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  .navbar .nav__item.opened>.dropdown-toggle:after,
  .navbar .nav__item.show>.dropdown-toggle:after {
    content: "\f106";
  }

  .navbar .dropdown-menu {
    background-color: white;
  }

  .navbar .dropdown-menu .nav__item {
    padding: 0 15px 0 30px;
  }

  .navbar .dropdown-menu .nav__item .nav__item-link {
    color: #1b1a1a;
    padding-left: 0;
  }

  .navbar .nav__item.dropdown-submenu>.dropdown-menu.show {
    padding-left: 10px;
  }

  .navbar .dropdown-submenu .dropdown-menu .nav__item {
    padding: 0 0 0 15px;
  }

  .navbar .navbar-nav .dropdown-menu.show {
    padding: 0;
  }

  .navbar .mega-dropdown-menu .container {
    max-width: none;
  }

  .navbar .mega-dropdown-menu>.nav__item {
    padding: 0 10px;
  }

  .navbar .mega-dropdown-menu .nav__item {
    padding: 0;
  }

  .sticky-navbar {
    -webkit-animation: none;
    animation: none;
  }

  .navbar-actions__list {
    position: absolute;
    top: 50%;
    right: 60px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .header-transparent+.page-title {
    margin-top: 0;
  }

  .header .navbar {
    background-color: #ffffff;
  }

  .header .action-btn {
    color: #1b1a1a;
  }

  .header .navbar .navbar-toggler .menu-lines:before,
  .header .navbar .navbar-toggler .menu-lines:after,
  .header .navbar .navbar-toggler .menu-lines span {
    background-color: #1b1a1a;
  }

  .header .navbar-expand-lg>.container,
  .header .navbar-expand-lg>.container-fluid {
    width: 100%;
    max-width: inherit;
  }

  .header .navbar,
  .header .navbar>.container,
  .header .navbar>.container-fluid {
    height: 80px;
    width: 100%;
  }

  .header .navbar-brand {
    margin-left: 15px;
    line-height: 80px;
  }

  .header-transparent .navbar {
    background-color: #ffffff !important;
    -webkit-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.07);
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.07);
  }

  .cart-popup {
    right: 15px;
  }

  .header__topbar>.container {
    max-width: none;
  }

  .menu-popup .menu-popup__banner {
    display: none;
  }

  .menu-popup .menu-popup__list li a {
    font-size: 30px;
  }

  .menu-popup .menu-popup__content {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 50px;
  }

  .action-btn__contact {
    background-color: #1b1a1a;
    color: #ffffff !important;
  }
}

/* Medium and large Screens */
@media (min-width: 992px) {
  .navbar .dropdown-menu {
    width: auto;
    min-width: 235px;
    -webkit-box-shadow: 0px 2px 6px 0px rgba(40, 40, 40, 0.1);
    box-shadow: 0px 2px 6px 0px rgba(40, 40, 40, 0.1);
    padding: 25px 0 23px;
  }

  .navbar .dropdown-menu .nav__item .nav__item-link:before {
    display: none;
  }

  .navbar .dropdown-menu.mega-dropdown-menu {
    padding: 30px;
  }

  .navbar .nav__item.with-dropdown>.dropdown-menu,
  .navbar .nav__item.dropdown-submenu>.mega-menu,
  .navbar .nav__item.with-dropdown>.mega-menu,
  .navbar .nav__item.with-dropdown>.dropdown-menu>.nav__item.dropdown-submenu>.dropdown-menu {
    display: block;
    position: absolute;
    left: 0;
    right: auto;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -webkit-box-shadow: 0px 5px 83px 0 rgba(40, 40, 40, 0.08);
    box-shadow: 0px 5px 83px 0 rgba(40, 40, 40, 0.08);
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  .navbar .nav__item.with-dropdown>.dropdown-menu>.nav__item.dropdown-submenu>.dropdown-menu,
  .navbar .nav__item.dropdown-submenu>.dropdown-menu>.nav__item.with-dropdown>.dropdown-menu {
    top: 0;
    left: auto;
    right: 100%;
  }

  .navbar .nav__item.with-dropdown:hover>.dropdown-menu,
  .navbar .nav__item.dropdown-submenu:hover>.mega-menu,
  .navbar .nav__item.with-dropdown:hover>.mega-menu,
  .navbar .nav__item.with-dropdown>.dropdown-menu>.nav__item.dropdown-submenu:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  .navbar .nav__item.with-dropdown.mega-dropdown {
    position: static;
  }

  .navbar .nav__item.with-dropdown .mega-dropdown-menu {
    width: 100%;
  }

  .navbar .dropdown-menu.mega-dropdown-menu .nav__item {
    padding: 0;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  .dropdown-menu.mega-dropdown-menu>.nav__item {
    padding: 0 15px;
  }

  .cart-popup {
    width: 300px;
    padding: 15px;
    left: 15px;
  }
}

@media (min-width: 320px) and (max-width: 575px) {
  .hamburger-menu {
    padding: 20px;
  }

  .hamburger-menu __close {
    top: 20px;
    right: 20px;
  }

  .hamburger-menu __email,
  .hamburger-menu __title {
    font-size: 16px;
  }

  .hamburger-menu .hamburger-menu__email {
    margin-bottom: 20px !important;
  }

  .search-popup .search-popup__form {
    max-width: 90%;
  }

  .search-popup .search-popup__form__input {
    font-size: 20px;
    font-weight: 400;
  }

  .cart-popup {
    left: 10px;
  }
}

/*-----------------------
    Banners
------------------------*/
/* .banner-layout1 {
  margin-right: 90px;
} */

.banner-layout1 .banner-panel {
  background-color: #ffffff;
  padding: 90px 0 90px 90px;
}

.banner-layout2 .banner-panel,
.banner-layout3 .banner-panel {
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  padding: 100px;
}

.banner-layout2 .banner-panel {
  margin-left: -160px;
}

.banner-layout3 .banner-panel {
  margin-right: -160px;
}

/* @media (min-width: 1400px) {
  .banner-layout1 {
    margin-right: 110px;
  }

  .banner-layout1 .banner-panel {
    padding: 110px 0 110px 110px;
  }
} */

@media (min-width: 320px) and (max-width: 992px) {
  .banner-layout1 {
    margin-right: 30px;
  }

  .banner-layout1 .banner-panel {
    padding: 30px 0 30px 30px;
  }

  .banner-layout2 .banner-panel {
    padding: 40px;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {

  .banner-layout2 .banner-panel,
  .banner-layout3 .banner-panel {
    padding: 40px;
  }
}

/*----------------------
    About
------------------------*/

.about__img img {
  -webkit-box-shadow: 0px 1px 73px 0px rgba(40, 40, 40, 0.15);
  box-shadow: 0px 1px 73px 0px rgba(40, 40, 40, 0.15);
}

.about__imgs-wrapper {
  position: relative;
}

.about-layout1 .container {
  max-width: 1240px;
}

.about-layout1 .about__imgs-wrapper {
  padding-right: 40px;
}

.about-layout1 .about__img:first-child {
  padding-top: 30px;
  padding-right: 30px;
}

.about-layout1 .cta__box {
  bottom: 0;
  left: 0;
}

.about-layout1 .cta__box,
.about-layout2 .cta__box,
.about-layout3 .cta__box {
  position: absolute;
  width: 220px;
  border-radius: 0 4px 0 4px;
}

.about-layout2 .about__img {
  padding-right: 50px;
}

.about-layout2 .cta__box {
  bottom: 40px;
  left: -40px;
}

.about-layout3 .about__img {
  padding-right: 50px;
}

.about-layout3 .heading-desc-primary {
  font-size: 17px;
  font-weight: 700;
  color: #1b1a1a;
}

.about-layout3 .about__carousel {
  background-color: #1b1a1a;
  padding: 40px;
  position: absolute;
  bottom: -40px;
  left: 40px;
  border-radius: 4px;
  max-width: 340px;
}

.about-layout3 .about__carousel:after {
  content: '';
  position: absolute;
  left: 10px;
  bottom: -12px;
  border: 7px solid;
  border-color: #1b1a1a #1b1a1a transparent transparent;
}

.about-layout3 .about__carousel .owl-dots {
  position: absolute;
  top: 0;
  right: 0;
}

.about-layout3 .text__block-title {
  font-size: 17px;
  color: #ffffff;
}

.about-layout3 .text__block-desc {
  color: #f9f9f9;
  margin-bottom: 0;
}

.about-layout4 .quote__panel {
  position: absolute;
  bottom: -30px;
  left: -30px;
  z-index: 1;
  max-width: 350px;
}

.about-layout4 .quote__panel .quote__panel-content {
  padding: 50px;
  border-radius: 4px;
  background-color: #1b1a1a;
}

.about-layout4 .quote__panel:before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50px;
  background-image: url(../images/icons/quote-icon2.png);
  width: 56px;
  height: 40px;
}

.about-layout4 .quote__panel:after {
  content: '';
  position: absolute;
  background-color: #efefef;
  top: -30px;
  right: -30px;
  z-index: -1;
  width: calc(100% - 15px);
  height: 100%;
  border-radius: 0 4px 0 0;
}

.about-layout4 .quote__panel .quote__panel-text {
  color: #ffffff;
  letter-spacing: .4px;
}

[class^="about-layout"] .heading-desc {
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 25px;
}

@media (min-width: 1300px) {
  .about-layout3 .content-wrapper {
    max-width: 700px;
    margin: auto;
  }
}

@media (max-width: 1200px) {
  .about-layout1 .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 992px) {
  .about-layout2 .about__img {
    padding-right: 0;
    margin-bottom: 20px;
  }

  .about-layout2 .cta__box {
    bottom: 0;
    left: 0;
  }

  .about-layout3 .col-padding-0>.row {
    margin-right: -15px;
    margin-left: -15px;
  }

  .about-layout3 .col-padding-0,
  .about-layout3 .col-padding-0>.row>[class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
  }

  .about-layout3 .about__img {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .about-layout4 .content-wrapper {
    margin-top: 70px;
  }
}

@media (min-width: 320px) and (max-width: 575px) {
  .about-layout1 .about__imgs-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .about-layout1 .about__imgs-wrapper .about__img:first-child {
    padding: 0 0 10px 0;
  }

  .about-layout3 .about__carousel {
    padding: 20px;
    bottom: -20px;
    left: 20px;
    max-width: 300px;
  }

  [class^=about-layout] .heading-desc {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 10px;
  }
}

@media (min-width: 320px) and (max-width: 365px) {
  .about-layout4 .quote__panel {
    left: 0;
    max-width: 300px;
  }

  .about-layout4 .quote__panel .quote__panel-content {
    padding: 30px;
  }

  .about-layout4 .quote__panel:after {
    width: calc(100% + 15px);
  }
}

/*-------------------------
    Footer
--------------------------*/
.footer {
  padding-top: 120px;
  padding-bottom: 70px;
  background-color: #1b1a1a;
}

.footer .footer-widget {
  margin-bottom: 35px;
}

.footer .footer-widget__title {
  color: #ffffff;
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 19px;
}

.footer .footer-newsletter {
  margin-bottom: 65px;
}

.footer .footer-newsletter__title span {
  color: #ffffff;
  font-size: 23px;
  display: block;
  margin-bottom: 13px;
}

.footer .footer-newsletter__title a {
  border-bottom: 2px solid #ffffff;
}

.footer .footer-newsletter__title a:hover {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

.footer .footer-newsletter__form {
  position: relative;
}

.footer .footer-newsletter__form .form-control {
  color: #ffffff;
  background-color: transparent;
  border: 2px solid #ffffff;
  padding-left: 20px;
}

.footer .footer-newsletter__form .form-control:focus {
  background-color: transparent;
  border-color: #f9f9f9;
}

.footer .footer-newsletter__form .form-control::-webkit-input-placeholder {
  color: #ffffff;
}

.footer .footer-newsletter__form .form-control:-moz-placeholder {
  color: #ffffff;
}

.footer .footer-newsletter__form .form-control::-moz-placeholder {
  color: #ffffff;
}

.footer .footer-newsletter__form .form-control:-ms-input-placeholder {
  color: #ffffff;
}

.footer .footer-newsletter__form .submit-btn {
  width: 55px;
  height: 55px;
  line-height: 53px;
  margin-left: -2px;
  font-size: 18px;
  color: #ffffff;
  border: 2px solid #ffffff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.footer .footer-newsletter__form .submit-btn:hover {
  color: #1b1a1a;
  background-color: #ffffff;
}

.footer .social-icons li a {
  color: #ffffff;
}

.footer .footer-copyright a {
  color: rgba(249, 249, 249, 0.8);
}

/* Scroll Top Button */
#scrollTopBtn {
  position: fixed;
  right: 10px;
  bottom: 30px;
  width: 45px;
  height: 45px;
  opacity: 0;
  z-index: 1000;
  font-size: 18px;
  overflow: hidden;
  border-radius: 3px;
  text-align: center;
  color: #ffffff;
  background-color: #000000;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#scrollTopBtn:hover {
  background-color: #000000;
}

#scrollTopBtn.actived {
  right: 30px;
  opacity: 1;
}

/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {


  .footer .footer-widget__title {
    margin-bottom: 10px;
  }

  .footer .footer-newsletter__title span {
    font-size: 16px;
  }

  .footer .footer-copyright {
    margin-top: 0 !important;
  }

  .footer h6 {
    color: #AAAAAA;
    font-size: 14px;
  }

}

/* Extra Small Devices */
@media (min-width: 320px) and (max-width: 575px) {
  #scrollTopBtn {
    bottom: 20px;
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  #scrollTopBtn.actived {
    right: 20px;
  }
}

/*----------------------
    Carousel
-----------------------*/
/* .slick-list {
  margin: 0 -10px;
} */

.slick-slide {
  margin-right: 10px;
}

.m-slides-0 .slick-list {
  margin: 0;
}

.m-slides-0 .slick-slide {
  margin: 0;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 65px;
  height: 65px;
  line-height: 65px;
  font-size: 0;
  z-index: 3;
  text-align: center;
  color: #ffffff;
  background-color: #1b1a1a;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.slick-arrow:hover,
.slick-arrow:focus {
  background-color: #000000;
}

.slick-arrow.slick-next:before,
.slick-arrow.slick-prev:before {
  font-family: 'icomoon';
  font-size: 12px;
}

.slick-arrow.slick-next {
  right: 30px;
}

.slick-arrow.slick-next:before {
  content: "\e903";
}

.slick-arrow.slick-prev {
  left: 30px;
}

.slick-arrow.slick-prev:before {
  content: "\e902";
}

.slick-carousel.slider .slick-prev::after {
  content: ' Geri';
  font-size: 14px;
  color: black;
  margin-left: 8px;
}

.slick-carousel.slider .slick-next::after {
  content: ' İleri';
  font-size: 14px;
  color: black;
  margin-right: 8px;
}

.carousel-arrows-light .slick-arrow {
  color: #1b1a1a;
  background-color: #ffffff;
}

.slick-dots {
  list-style: none;
  padding: 0;
  text-align: center;
  margin-bottom: 0;
  z-index: 2;
}

.slick-dots li {
  display: inline-block;
  margin: 2px;
  position: relative;
  z-index: 1;
  padding: 0;
  font-size: 0;
  width: 30px;
  height: 2px;
  cursor: pointer;
  border-radius: 1px;
  background-color: #494848;
}

.slick-dots li button {
  font-size: 0;
  width: 100%;
}

.slick-dots li.slick-active {
  background-color: #1b1a1a;
}

.carousel-dots-light .slick-dots li {
  background-color: rgba(255, 255, 255, 0.6);
}

.carousel-dots-light .slick-dots li.slick-active {
  background-color: #ffffff;
}

/*------------------------
    Slider 
--------------------------*/
.header-transparent+.slider {
  margin-top: -100px;
}

.header-transparent+.slider .slide-item__content {
  padding-top: 100px;
}

.hero__subtitle,
.slide-item__subtitle {
  font-size: 17px;
  margin-bottom: 20px;
  font-weight: bold;
}

.hero__title,
.slide-item__title {
  font-size: 65px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero__desc,
.slide-item__desc {
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 28px;
}

.slider {
  padding: 0;
}

.slider .slide-item {
  height: calc(100vh - 100px);
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}

.slider .slick-arrow {
  position: absolute;
  top: auto;
  bottom: 50px;
  width: 50px;
  height: auto;
  line-height: 23px;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  color: #1b1a1a;
  background-color: transparent;
}

.slider .slick-arrow:before {
  position: absolute;
  top: 13px;
  opacity: 0;
  -webkit-transition: opacity .2s ease, -webkit-transform .4s ease;
  transition: opacity .2s ease, -webkit-transform .4s ease;
  transition: transform .4s ease, opacity .2s ease;
  transition: transform .4s ease, opacity .2s ease, -webkit-transform .4s ease;
}

.slider .slick-arrow:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-bottom: 2px solid #1b1a1a;
}

.slider .slick-arrow.slick-prev {
  left: 35px;
}

@media (min-width: 1500px) {
  .slider .slick-arrow.slick-prev {
    left: 70px;
  }
}

.slider .slick-arrow.slick-prev:before {
  left: 0;
}

.slider .slick-arrow.slick-prev:hover:before {
  opacity: 1;
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}

.slider .slick-arrow.slick-prev:after {
  content: "Prev";
  text-align: right;
}

.slider .slick-arrow.slick-next {
  right: 35px;
}

@media (min-width: 1500px) {
  .slider .slick-arrow.slick-next {
    right: 83px;
  }
}

.slider .slick-arrow.slick-next:before {
  right: 0;
}

.slider .slick-arrow.slick-next:hover:before {
  opacity: 1;
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}

.slider .slick-arrow.slick-next:after {
  content: "Next";
  text-align: left;
}

.slider .slick-dots {
  position: absolute;
  left: 50%;
  bottom: 30px;
  text-align: center;
  padding: 0 20px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  counter-reset: count;
  /*
        li {
            &:before {
                counter-increment: count;
                content: "0"counter(count) "";
                font-size: 15px;
                font-weight: 700;
                color: $color-dark;
                display: block;
            }

            &:not(:last-child):before {
                // transform: translate(-30px, -11px);
            }

            &:last-child:before {
                // transform: translate(30px, -11px);
                position: absolute;
                top: 0;
                right: 0;
            }

            &:not(.slick-active):before,
            &:not(:last-child):before {
                opacity: 0;
            }

            &.slick-active:before,
            &:last-child:before {
                opacity: 1 !important;
            }
        }
        */
}

.slider-layout2 .slide-item__title {
  font-size: 50px;
}

.slider-layout2 .slick-arrow.slick-next {
  right: 0;
}

.slider-layout2 .slick-arrow.slick-prev {
  left: 0;
}

.slider-layout2 .social-icons {
  position: absolute;
  right: 10px;
  top: 50%;
  z-index: 2;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.slider-layout3 .slick-arrow.slick-next {
  right: calc(50% - 65px);
}

.slider-layout3 .slick-arrow.slick-prev {
  left: calc(50% - 65px);
}

@media (min-width: 1500px) {
  .slider-layout2 .social-icons {
    right: 25px;
  }
}

@media (max-width: 1300px) {
  .slider-layout2 .social-icons {
    display: none;
  }
}

/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .header-transparent+.slider {
    margin-top: 0;
  }

  .slider .slide-item {
    height: calc(60vh - 50px);
  }

  .header-transparent+.slider .slide-item__content {
    padding-top: 0;
  }
}

/* Large Size Devices */
/* Medium Size Devices */
@media (min-width: 768px) and (max-width: 991px) {

  .hero__title,
  .slide-item__title {
    font-size: 50px;
  }
}

/* tablets */
@media (min-width: 576px) and (max-width: 767px) {

  .hero__title,
  .slide-item__title {
    font-size: 40px;
  }
}

/* Mobile Phones */
@media (min-width: 320px) and (max-width: 575px) {

  .hero__subtitle,
  .slide-item__subtitle {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 20px;
  }

  .hero__title,
  .slide-item__title {
    font-size: 30px;
    margin-bottom: 15px;
  }

  .hero__desc,
  .slide-item__desc {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 20px;
  }
}

/*--------------------------
      Video
--------------------------*/
.video-btn {
  text-align: center;
  display: inline-block;
  position: relative;
  padding-left: 110px;
  height: 110px;
}

.video-btn .video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 110px;
  height: 110px;
  line-height: 110px;
  border-radius: 50%;
  background-color: #1b1a1a;
  color: #ffffff;
}

.video-btn .video-player:before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: -1;
  border-radius: 50%;
  background-color: #1b1a1a;
  -webkit-animation: pulsing 1.5s linear infinite;
  animation: pulsing 1.5s linear infinite;
}

.video-btn .video-player:hover:before {
  opacity: 0;
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.video-btn .video-btn-title {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
}

.video-btn-white .video-player {
  background-color: #ffffff !important;
  color: #1b1a1a;
}

.video-btn-white .video-player:before {
  background-color: #ffffff;
}

.video-banner {
  min-height: 700px;
}

/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .video-banner {
    min-height: 300px;
  }

  .popup-video .video-player {
    font-size: 18px;
    width: 70px;
    height: 70px;
    line-height: 70px;
  }
}

/*-----------------------
    Progress Bars
------------------------*/
.progress-item {
  margin-bottom: 27px;
  overflow: hidden;
}

.progress {
  background-color: #e9e9e9;
  border-radius: 6px;
  width: 100%;
  height: 6px;
  overflow: visible;
  position: relative;
}

.progress-bar {
  position: relative;
  border-radius: 6px;
  height: 6px;
  width: 0;
  overflow: visible;
  background-color: #1b1a1a;
  -webkit-transition: width 2s ease;
  transition: width 2s ease;
}

.progress-item__title {
  position: relative;
  z-index: 2;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.progress-item__percentage {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: -18px;
  right: 0;
  color: #9b9b9b;
}

/*-----------------------
     Fancybox 
------------------------*/
.fancybox-item {
  position: relative;
  margin-bottom: 30px;
}

.fancybox-item .fancybox-item__icon {
  font-size: 20px;
  line-height: 1;
  color: #1b1a1a;
  margin-bottom: 26px;
}

.fancybox-item .fancybox-item__icon img {
  max-height: 100%;
}

.fancybox-item .fancybox-item__title {
  color: #000000;
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 100%;
}

.fancybox-item .fancybox-item__title.change-color {
  color: #FBB732;
}

.fancybox-item .fancybox-item__desc {
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 0;
  height: 121px;
}

.fancybox-item .fancybox-item__more {
  display: inline-block;
  margin-top: 10px;
}

.fancybox-item:hover .fancybox-item__icon {
  -webkit-animation: slideTopDown .8s ease-in-out .1s infinite;
  animation: slideTopDown .8s ease-in-out .1s infinite;
}

.fancybox-item:hover .fancybox-item__more .arrow-right {
  width: 60px;
}

.fancybox-layout1 .fancybox-item .fancybox-item__icon {
  height: 60px;
}

.fancybox-layout1 .web-button {
  display: flex;
}

.fancybox-layout1 .mobile-button {
  display: none;
}

.anasayfa.fancybox-layout2 {
  margin-top: 140px;
}

.fancybox-layout2 .fancybox-item .fancybox-item__heading {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 90px;
  flex: 0 0 90px;
  padding-right: 30px;
}

.fancybox-layout2 .fancybox-item .fancybox-item__title {
  position: relative;
  font-size: 16px;
  text-align: right;
  padding-bottom: 4px;
}

.fancybox-layout2 .fancybox-item .fancybox-item__title:after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20px;
  height: 2px;
  background-color: #222222;
}

/*-----------------------
    portfolio
------------------------*/
.portfolio-item {
  bottom: 0px;
}

.portfolio-item .portfolio-item__img {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.portfolio-item .portfolio-item__img img {
  width: 100%;
}

.portfolio-item .portfolio-item__hover {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  overflow: hidden;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  background-color: rgba(27, 26, 26, 0.95);
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.portfolio-item .portfolio-item__hover__inner {
  background: #FCD78E;
  -webkit-transform: translateY(-30px);
  transform: translateY(-30px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.portfolio-item .portfolio-item__hover__inner .portfolio-item__info {
  position: absolute;
  bottom: 0px;
  background: #FCD78E;
  display: flex;
  align-items: center;
  height: 50px;
  padding: 20px;
  margin-top: 0;
}

.portfolio-item .portfolio-item__hover__inner .portfolio-item__info .portfolio-item__cat a {
  color: #A04F3E !important;
  font-size: 16px;
  line-height: 100%;
  font-weight: 600;
}

.portfolio-item:hover .portfolio-item__hover {
  opacity: 1;
}

.portfolio-item:hover .portfolio-item__hover__inner {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.portfolio-item .portfolio-item__info {
  margin-top: 25px;
}

.portfolio-item .portfolio-item__title {
  font-size: 22px;
  margin-bottom: 8px;
}

.portfolio-item .portfolio-item__title a {
  color: #1b1a1a;
}

.portfolio-item .portfolio-item__title a:hover {
  color: #000000;
}

.portfolio-item .portfolio-item__cat a {
  position: relative;
  color: #9b9b9b;
  padding-right: 7px;
}

.portfolio-item .portfolio-item__cat a:hover {
  color: #1b1a1a;
}

.portfolio-item .portfolio-item__cat a::after {
  content: ',';
  position: absolute;
  top: 0;
  right: 2px;
}

.portfolio-item .portfolio-item__cat a:last-child {
  padding-right: 0;
}

.portfolio-item .portfolio-item__cat a:last-child:after {
  display: none;
}

.portfolio-item .portfolio__desc {
  margin-bottom: 0;
}

.portfolio-item .portfolio__link {
  color: #1b1a1a;
  line-height: 1;
}

.portfolio-item .zoom__icon {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
}

.portfolio-grid .portfolio-item {
  margin-bottom: 45px;
}

.portfolio-filter li {
  margin-right: 25px;
}

.portfolio-filter li:last-child {
  margin-right: 0;
}

.portfolio-filter li a {
  color: #1b1a1a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
  display: block;
  margin-bottom: 0;
}

.portfolio-filter li a:hover,
.portfolio-filter li a.active {
  color: #1b1a1a;
}

.portfolio-gallery-layout2 .portfolio-item {
  margin-bottom: 0;
}

.portfolio-gallery-layout2 .portfolio-item .portfolio-item__img {
  border-radius: 0;
}

.portfolio-gallery-layout2 .portfolio-item .portfolio-item__hover {
  background-color: #1b1a1a;
}

.portfolio-gallery-layout2 .portfolio-item .portfolio-item__hover .portfolio-item__info .portfolio-item__title a:hover,
.portfolio-gallery-layout2 .portfolio-item .portfolio-item__hover .portfolio-item__info .portfolio-item__cat a:hover {
  color: #1b1a1a;
}

/* portfolio-masonry */
.portfolio-masonry .portfolio-item__hover__inner {
  position: absolute;
  left: 35px;
  bottom: 35px;
}

.portfolio-masonry-layout2 .portfolio-item .portfolio-item__hover {
  background-color: transparent;
}

.portfolio-masonry-layout2 .portfolio-item .portfolio-item__hover__inner {
  width: auto;
  left: auto;
  bottom: 60%;
  -webkit-transform: translateX(30px) translateY(0);
  transform: translateX(30px) translateY(0);
}

.portfolio-masonry-layout2 .portfolio-item .portfolio-item__hover__inner .portfolio-item__title {
  margin-bottom: 0;
  background-color: #1b1a1a;
}

.portfolio-masonry-layout2 .portfolio-item .portfolio-item__hover__inner .portfolio-item__cat {
  display: inline;
  padding: 3px;
  background-color: #1b1a1a;
}

.portfolio-masonry-layout2 .portfolio-item .portfolio-item__hover__inner .portfolio-item__cat a {
  color: #9b9b9b;
}

.portfolio-masonry-layout2 .portfolio-item .portfolio-item__hover__inner .portfolio-item__cat a:hover {
  color: #ffffff;
}

.portfolio-masonry-layout2 .portfolio-item:hover .portfolio-item__hover__inner {
  -webkit-transform: translateX(0) translateY(0);
  transform: translateX(0) translateY(0);
}

.portfolio-masonry-layout3 .portfolio-item .portfolio-item__hover {
  background-color: #ffffff;
}

.portfolio-masonry-layout3 .portfolio-item .portfolio-item__hover {
  top: auto;
  padding: 40px;
  height: auto;
  text-align: left;
  width: calc(100% - 40px);
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.portfolio-masonry-layout3 .portfolio-item .portfolio-item__info .portfolio-item__title a,
.portfolio-masonry-layout3 .portfolio-item .portfolio-item__info .portfolio-item__cat a {
  color: #1b1a1a;
}

.portfolio-masonry-layout3 .portfolio-item .portfolio-item__info .portfolio-item__title a:hover,
.portfolio-masonry-layout3 .portfolio-item .portfolio-item__info .portfolio-item__cat a:hover {
  color: #000000;
}

.portfolio-masonry-layout3 .portfolio-item .portfolio-item__hover__inner {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* portfolio single */
.portfolio-single .portfolio-item__title {
  font-size: 35px;
}

.portfolio-single .portfolio-item__img {
  overflow: hidden;
  margin-bottom: 30px;
}

.portfolio-single .portfolio-item__img img {
  -webkit-transition: 0.9s ease;
  transition: 0.9s ease;
}

.portfolio-single .portfolio-item__img:hover img {
  -webkit-transform: scale(1.1) rotate(0.3deg);
  transform: scale(1.1) rotate(0.3deg);
}

.portfolio-single .portfolio-item__desc p {
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 23px;
}

.portfolio-single .portfolio-item__desc p:last-of-type {
  margin-bottom: 0;
}

.portfolio-meta__list li {
  font-family: "Poppins", sans-serif;
  margin-bottom: 17px;
}

.portfolio-meta__list li strong {
  font-size: 16px;
  color: #1b1a1a;
  min-width: 110px;
  display: inline-block;
}

.portfolio-meta__list li span {
  font-size: 15px;
}

.portfolio-nav a:not(.portfolio-nav-all) {
  position: relative;
  color: #1b1a1a;
  padding-bottom: 3px;
  font-size: 14px;
  font-weight: 700;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.portfolio-nav a:not(.portfolio-nav-all):before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #1b1a1a;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.portfolio-nav a:not(.portfolio-nav-all):hover {
  color: #1b1a1a;
}

.portfolio-nav a:not(.portfolio-nav-all):hover:before {
  background-color: #1b1a1a;
}

.portfolio-nav .nav__prev a:before {
  left: auto;
  right: 0;
}

.portfolio-nav .portfolio-nav-all {
  font-size: 23px;
  line-height: 50px;
  color: #1b1a1a;
  display: block;
  text-align: center;
}

.portfolio-nav .portfolio-nav-all:hover {
  color: #1b1a1a;
}

.portfolio-hidden>.portfolio-item {
  display: none;
}

@media (min-width: 1300px) {
  .portfolio-masonry-layout2 .portfolio-item {
    padding: 30px;
  }
}

@media (min-width: 320px) and (max-width: 992px) {
  .portfolio-meta__list li {
    margin-bottom: 25px;
  }

  .portfolio-nav a:not(.portfolio-nav-all):before {
    left: -20px;
  }

  .portfolio-nav .nav__prev a:before {
    left: auto;
    right: -20px;
  }

  .portfolio-meta__list li {
    margin-bottom: 15px;
  }

  .portfolio-meta__list li span {
    margin-bottom: 0;
  }

  .portfolio-meta__list li strong {
    font-size: 15px;
  }

  .portfolio-masonry-layout3 .portfolio-item .portfolio-item__hover {
    padding: 20px;
  }
}

/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .portfolio-single .portfolio-item__title {
    font-size: 20px;
  }

  .portfolio-nav {
    display: block;
  }

  .portfolio-nav .portfolio-nav-content h6 {
    font-size: 14px;
    line-height: 24px;
  }

  .portfolio-meta__list {
    display: block !important;
  }
}

/* Mobile Phones */
@media (min-width: 320px) and (max-width: 575px) {
  .portfolio-item {
    max-width: 400px;
    margin: 0 auto 30px;
  }

  .portfolio-filter li {
    margin-right: 10px;
    margin-bottom: 10px;
  }

  .portfolio-filter li a {
    font-size: 13px;
  }

  .portfolio-masonry .portfolio-item {
    margin-bottom: 15px;
  }
}

/*--------------------
     Team
---------------------*/
.member {
  position: relative;
  margin-bottom: 40px;
}

.member .member__img {
  position: relative;
  overflow: hidden;
}

.member .member__img img {
  width: 100%;
  -webkit-transition: -webkit-transform .9s linear, -webkit-filter .5s linear;
  transition: -webkit-transform .9s linear, -webkit-filter .5s linear;
  transition: transform .9s linear, filter .5s linear;
  transition: transform .9s linear, filter .5s linear, -webkit-transform .9s linear, -webkit-filter .5s linear;
}

.member:hover .member__img img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transform: scale(1.05) rotate(1deg);
  transform: scale(1.05) rotate(1deg);
}

.member .member__info {
  padding-top: 27px;
}

.index-team .member .member__info .member__name {
  margin-bottom: 0;
  font-size: 26px;
  font-weight: bold;
  color: #000000;
  line-height: 55px;
}

.index-team .member .member__info .member__desc {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  line-height: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.about-team .member .member__desc {
  color: #000000;
  font-size: 26px;
  font-weight: 100;
  font-style: italic;
}

.about-team .member .member__info .member__desc {
  margin-bottom: 0;
  font-size: 20px;
  font-style: italic;
  color: #000000;
  font-weight: 200;
}

.about-team .member__name {
  margin-bottom: 7px !important;
  font-weight: 500;
}

.member .social-icons li a {
  font-size: 16px;
}

.member .member__img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  padding: 35px;
  background-color: #1b1a1a;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.member .member__img-hover .social-icons li a {
  color: #ffffff;
}

.member .member__img-hover .social-icons li a:hover {
  color: #1b1a1a;
}

.member .member__img-hover .member__info .member__name,
.member .member__img-hover .member__info .member__desc {
  color: #ffffff;
}

.member:hover .member__img-hover {
  opacity: 1;
}

/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .member {
    margin-bottom: 0;
  }

  .member .member__info .member__name {
    font-size: 20px !important;
    margin-bottom: 0px;
  }

  .about-team .member .member__info .member__desc {
    font-size: 14px;
  }
}

/*----------------------------
     Testimonial
------------------------------*/
/* .testimonial-item {
  position: relative;
} */

.testimonial-item .testimonial-item__desc {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 300;
  color: #1b1a1a;
  margin-bottom: 30px;
}

.testimonial-item__meta__title {
  font-size: 16px;
  margin-bottom: 2px;
}

.testimonial-item__meta__desc {
  margin-bottom: 0;
}

.testimonial-item__thumb {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 50%;
  cursor: pointer;
  margin-right: 20px;
}

.testimonial-item__thumb img {
  max-width: 100%;
  border-radius: 50%;
}

.testimonials {
  margin-top: 120px;
  margin-bottom: 100px;
}

.testimonials .heading__title {
  font-size: 14px;
}

.testimonials .slick-list,
.testimonials .slick-slide {
  margin: 0;
}

.testimonials .slick-list,
.testimonials .slick-slide {
  margin: 0;
}

.testimonials .slick-slider {
  position: static;
}

.testimonials .slider .slick-arrow {
  top: 120%;
}

.testimonials .slider .slick-arrow.slick-prev:after {
  content: "Öncesi" !important;
  text-align: right;
}

.testimonials .slider .slick-arrow.slick-next:after {
  content: "Sonrası";
  text-align: left;
}

.testimonials .slider .slick-arrow.slick-next {
  right: 50%;
}

.testimonials .slider .slick-arrow.slick-prev {
  left: 27%;
}

@media (max-width: 1200px) {
  .testimonials .slick-carousel {
    padding-bottom: 40px;
  }

  .testimonials .slick-arrow.slick-arrow {
    top: 93%;
  }

  .testimonials .slick-arrow.slick-arrow.slick-next {
    right: 30px;
  }

  .testimonials .slick-arrow.slick-arrow.slick-prev {
    left: 30px;
  }
}

/* Medium Size Screens */
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial-item .testimonial-item__desc {
    font-size: 18px;
    line-height: 28px;
  }
}

/* Mobile Phones and tablets */
@media (max-width: 992px) {
  .testimonial-item .testimonial-item__desc {
    font-size: 17px;
    margin-bottom: 15px;
  }
}

/*-------------------------
    Call To Action
---------------------------*/
.cta__box {
  background-color: #1b1a1a;
  padding: 37px;
}

.cta__box img {
  margin-bottom: 27px;
}

.cta__box .cta__box-title {
  font-size: 17px;
  line-height: 1.4;
  color: #ffffff;
  margin-bottom: 0;
}

.cta__desc {
  font-size: 17px;
  font-weight: 700;
}

.cta__subtitle {
  font-size: 17px;
  font-weight: 700;
  display: block;
}

.cta-layout1 {
  padding-top: 210px;
  padding-bottom: 210px;
}

.cta-layout1 .cta__title {
  font-size: 85px;
  color: #ffffff;
}

.cta-layout1 .cta__desc {
  color: #ffffff;
}

.cta-layout2 {
  padding-top: 200px;
  padding-bottom: 200px;
}

.cta-layout2 .cta__subtitle {
  color: #ffffff;
}

.cta-layout2 .cta__title {
  font-size: 95px;
  color: #ffffff;
}

.cta-layout3 {
  padding-top: 160px;
  padding-bottom: 160px;
}

.cta-layout3 .cta__subtitle {
  color: #ffffff;
}

.cta-layout3 .cta__title {
  font-size: 75px;
  color: #ffffff;
}

.cta-layout4 {
  padding-top: 150px;
  padding-bottom: 140px;
}

.cta-layout4 .cta__subtitle {
  color: #ffffff;
}

.cta-layout4 .cta__title {
  font-size: 75px;
  color: #ffffff;
}

.cta-layout5 {
  padding-top: 190px;
  padding-bottom: 190px;
}

.cta-layout5 .cta__subtitle {
  color: #ffffff;
}

.cta-layout5 .cta__title {
  font-size: 85px;
  color: #ffffff;
}

.cta-layout5 .cta__desc {
  font-size: 14px;
  color: #ffffff;
}

.cta-layout5 .cta__form {
  max-width: 570px;
  margin: 30px auto;
}

.cta-layout5 .cta__form .form-control {
  color: #ffffff;
  max-width: 370px;
}

.cta-layout5 .cta__form .form-control::-webkit-input-placeholder {
  color: #ffffff;
}

.cta-layout5 .cta__form .form-control:-moz-placeholder {
  color: #ffffff;
}

.cta-layout5 .cta__form .form-control::-moz-placeholder {
  color: #ffffff;
}

.cta-layout5 .cta__form .form-control:-ms-input-placeholder {
  color: #ffffff;
}

@media (max-width: 1200px) {
  .cta__desc {
    font-size: 15px;
    font-weight: 400;
  }

  .cta-layout1,
  .cta-layout2,
  .cta-layout3,
  .cta-layout4,
  .cta-layout5 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .cta-layout1 .cta__title,
  .cta-layout2 .cta__title,
  .cta-layout3 .cta__title,
  .cta-layout4 .cta__title,
  .cta-layout5 .cta__title {
    font-size: 50px;
    margin-bottom: 30px !important;
  }
}

/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .cta__box {
    padding: 15px;
  }

  .cta__desc {
    font-size: 14px;
    font-weight: 400;
  }

  .cta-layout1,
  .cta-layout2,
  .cta-layout3,
  .cta-layout4,
  .cta-layout5 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .cta-layout1 .cta__title,
  .cta-layout2 .cta__title,
  .cta-layout3 .cta__title,
  .cta-layout4 .cta__title,
  .cta-layout5 .cta__title {
    font-size: 30px;
  }

  .cta-layout5 .cta__form .form-control {
    height: 40px;
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .cta-layout5 .cta__form {
    display: block !important;
  }

  .cta-layout5 .cta__form .btn {
    width: 100%;
    margin-top: 10px;
  }
}

/*----------------------- 
    Clients
-----------------------*/

.clients .slick-list {
  overflow: visible;
}

.clients .slick-list:before {
  content: '';
  position: absolute;
  top: -20px;
  right: 10px;
  width: 1px;
  height: calc(100% + 40px);
  height: -webkit-calc(100% + 40px);
  background-color: #e9e9e9;
}

.clients .slick-slide {
  -webkit-transition: opacity .3s ease, visibility .3s ease;
  transition: opacity .3s ease, visibility .3s ease;
}

.clients .slick-slide.slick-active {
  opacity: 1;
  visibility: visible;
}

.clients .slick-slide:not(.slick-active) {
  opacity: 0;
  visibility: hidden;
}

.clients .client {
  position: relative;
  text-align: center;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 120px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

/* .clients .client img {
  width: 150px !important;
  max-width: 100%;
} */

.clients .client:after {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 1px;
  height: 160px;
  background-color: #e9e9e9;
}

/*--------------------
     Blog
-------------------*/
.blog-grid .post-item {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  background: #fff;
  height: 100%;
}

.blog-grid .post-item .post-item__img {
  position: relative;
  overflow: hidden;
  margin-bottom: 27px;
}

.blog-grid .post-item .post-item__img img {
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}

.blog-grid .post-item .post-item__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 20px 0px;
}

.blog-grid .post-item .post-item__meta {
  margin-bottom: 10px;
  font-size: 14px;
  color: #777;
}

.blog-grid .post-item .post-item__meta>* {
  position: relative;
  color: #222222;
  padding-right: 10px;
  margin-right: 10px;
}

.blog-grid .post-item .post-item__meta>*:after {
  content: '-';
  position: absolute;
  top: 0;
  right: -3px;
  color: #222222;
}

.blog-grid .post-item .post-item__meta>*:last-child {
  margin-right: 0;
  padding-right: 10px;
}

.blog-grid .post-item .post-item__meta>*:last-child:after {
  display: none;
}

.blog-grid .post-item .post-item__title {
  font-size: 19px;
  color: #000000;
  font-weight: 600;
  margin: 0 0 12px;
  line-height: 1.4;
}

.blog-grid .post-item .post-item__desc {
  font-size: 14px;
  color: #9B9B9B;
  line-height: 27px;
  margin-bottom: auto;
  /* Boşluğu alta iter */
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-grid .post-item__more {
  margin-top: 20px;
  align-self: flex-start;
  font-size: 18px;
  color: black;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 50px;
}

.blog-grid .post-item .post-item__title a {
  color: #1b1a1a;
}

.blog-grid .post-item:hover .post-item__img img {
  -webkit-transform: scale(1.1) rotate(2deg);
  transform: scale(1.1) rotate(2deg);
}

.blog-grid .post-item:hover .post-item__title a {
  color: #000000;
}

.blog-grid .post-item:hover .post-item__more .arrow-right {
  width: 60px;
}


/* Blog single */
.sidebar {
  font-family: Arial, sans-serif;
  color: #222;
  padding: 20px;
}

.sidebar .widget ul li svg {
  margin-right: 8px;
}

.widget {
  margin-bottom: 30px;
}

.widget h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget ul li {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #000000;
  text-indent: -1.5em;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tags span {
  font-size: 13px;
  padding: 5px 10px;
  background-color: #EAEAEA;
  cursor: pointer;
  font-size: 14px;
  color: #000000;
}

.blog-single .blog-detail {
  margin-top: 100px;
}

.blog-detail h2 {
  font-size: 30px;
  font-weight: 700;
}

.blog-detail.blog-grid {
  margin-bottom: 120px;
}

/* .blog-detail.blog-grid .post-item .post-item__desc {
  height: 200px;
} */

.blog-detail.blog-grid.post-item__more {
  margin-bottom: 0px;
}

.blog-detail .slider .slick-arrow.slick-prev:before {
  left: -68px;
}

.blog-detail .slider .slick-arrow.slick-next:before {
  right: -68px;
}

.blog-single img {
  margin-bottom: 27px;
}

.blog-single .post-item .post-item__meta {
  margin-bottom: 21px;
}

.blog-single .post-item .post-item__title {
  font-size: 32px;
  margin-bottom: 19px;
  margin-top: 50px;
}

.blog-single .post-item .post-item__meta__date {
  font-size: 32px;
  font-weight: 600;
  color: #000000;
}

.blog-single .post-item .post-item__meta__date::before {
  display: none;
}

.blog-single .post-item .post-item__desc {
  margin-bottom: 33px;
  color: #9B9B9B;
  font-weight: 400;
  margin-bottom: 50px;

}

.blog-single .post-item .left-p {
  position: relative;
  left: 27px;
}

.blog-single .post-item span {
  position: relative;
  font-size: 16px;
  color: #000000;
  font-weight: 700;
}

.blog-single .post-item span::before {
  content: '';
  position: absolute;
  left: -25px;
  top: 50%;
  width: 20px;
  height: 1px;
  background-color: #000000;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.post-author {
  padding: 40px;
  border-radius: 4px;
}

.post-author .post-author__avatar {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 120px;
  flex: 0 0 120px;
  max-width: 120px;
  margin-right: 30px;
}

.post-author .post-author__avatar img {
  width: 100%;
  max-width: 100%;
  border-radius: 2px;
}

.post-author .post-author__name {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 5px;
}

.post-author .post-author__bio {
  line-height: 26px;
  margin-bottom: 17px;
}

.post-author .social-icons li {
  margin-right: 25px;
}

.post-author .social-icons li:last-child {
  margin-right: 0;
}

.posts-nav {
  border-top: 2px solid #e9e9e9;
}

.posts-nav a {
  position: relative;
  color: #1b1a1a;
  padding-bottom: 3px;
  font-size: 14px;
  font-weight: 700;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.posts-nav a:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #1b1a1a;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.posts-nav a:hover {
  color: #1b1a1a;
}

.posts-nav a:hover:before {
  background-color: #1b1a1a;
}

.posts-nav .nav__prev a:before {
  left: auto;
  right: 0;
}

.blog__widget-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 34px;
}

.post-comments {
  padding-top: 60px;
  border-top: 2px solid #e9e9e9;
}

.post-comments-form .form-group {
  margin-bottom: 40px;
}

.comments-list .comment-item {
  position: relative;
  margin-bottom: 30px;
}

.comments-list .comment-item .comment-item__avatar {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  overflow: hidden;
}

.comments-list .comment-item .comment-item__avatar img {
  border-radius: 3px;
}

.comments-list .comment-item .comment-item__body {
  padding-left: 70px;
}

.comments-list .comment-item .comment-item__body .comment-item__author {
  font-size: 16px;
  margin-bottom: 0;
}

.comments-list .comment-item .comment-item__body .comment-item__date {
  color: #222222;
  font-size: 13px;
  display: block;
  margin-bottom: 9px;
}

.comments-list .comment-item .comment-item__body .comment-item__desc {
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 10px;
}

.comments-list .comment-item .comment-item__body .comment-item__reply {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1;
  color: #1b1a1a;
  display: -block;
}

.comments-list .comment-item .comment-item__body .comment-item__reply:hover {
  color: #000000;
}

/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {

  .post-item,
  .blog-single .post-item {
    margin-top: 50px;
  }


  .post-item .post-item__desc {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .post-item .post-item__meta>* {
    font-size: 12px;
    margin-right: 10px;
  }

  .blog-single .post-item .post-item__title {
    font-size: 17px;
    line-height: 26px;
    margin-bottom: 10px;
  }

  .blog-single .post-item .post-item__desc {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 25px;
  }

  .blog-single .post-item .post-item__meta {
    margin-bottom: 10px;
  }

  .post-author {
    display: block !important;
    padding: 15px;
  }

  .post-author .post-author__avatar {
    margin-bottom: 25px;
  }

  .post-comments {
    padding-top: 20px;
  }

  .comments-list .comment-item .comment-item__avatar {
    width: 40px;
    height: 40px;
  }

  .comments-list .comment-item .comment-item__body {
    padding-left: 60px;
  }

  .posts-nav {
    display: block;
  }

  .posts-nav .nav__prev {
    margin-bottom: 20px;
  }
}

/*----------------------------
    Contact
----------------------------*/
.contact-box {
  position: relative;
  min-height: 70px;
  margin-bottom: 30px;
  margin-top: 60px;
}

.contact-box .contact-box__icon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.contact-box .contact-box__icon i {
  color: #e8e8e8;
  font-size: 65px;
  line-height: 1;
}

.contact-box .contact-box__content {
  padding-left: 40px;
}

.contact-box .contact-box__title {
  font-size: 16px;
  margin-bottom: 0;
}

.contact-box .contact-box__desc {
  margin-bottom: 0;
}



.contact-layout1 a {
  color: #316CF4;
  text-decoration: underline;
}

.contact-info-layout2 .contact-box {
  min-height: auto;
}

.contact-layout1 .btn-anasayfa-form {
  height: 50px;
}


.contact-layout1 .heading-desc {
  width: 80%;
  font-size: 16px;
  color: #9B9B9B;
  font-weight: 400;
  line-height: 25px;
}

.mobile-line {
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #A04F3E;
  left: 0px;
  margin-bottom: 56px;
}

.contact-layout1 .map {
  width: 100%;
  position: relative;
  left: 0px;
  height: 350px;
}

.contact-layout1 .map img {
  height: 290px;
  margin-bottom: 10px;
  object-fit: initial;
  width: 100%;

}

.contact-layout1 .map button {
  position: absolute;
  bottom: 0;
  right: 0px;
  top: 88%
}

.contact-info .konum .contact-box__icon {
  right: 0;
  left: initial;
  margin-right: 180px;
}

.contact-info .telefon .contact-box__icon {
  margin-right: 70px;
  left: initial;
}

/*--------------------------
        pricing
--------------------------*/
.pricing-item {
  position: relative;
  background-color: #1b1a1a;
  -webkit-box-shadow: 0px 5px 83px 0px rgba(40, 40, 40, 0.08);
  box-shadow: 0px 5px 83px 0px rgba(40, 40, 40, 0.08);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.pricing-item .pricing-item__header {
  position: relative;
  padding: 57px 60px 60px;
}

.pricing-item .pricing-item__header:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 40px);
  height: 2px;
  background-color: #d7d7d7;
}

.pricing-item .pricing-item__title {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 0;
}

.pricing-item .pricing-item__price {
  color: #ffffff;
  font-size: 60px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 20px;
}

.pricing-item .pricing-item__currency {
  font-size: 45px;
}

.pricing-item .pricing-item__time {
  font-size: 15px;
}

.pricing-item .pricing-item__content {
  padding: 45px 60px 60px;
}

.pricing-item .pricing-item__list {
  margin-bottom: 36px;
}

.pricing-item .pricing-item__list li {
  color: #ffffff;
  position: relative;
  padding-left: 27px;
  font-size: 15px;
  margin-bottom: 8px;
  text-transform: capitalize;
}

.pricing-item .pricing-item__list li:after {
  content: "\f00c";
  font-family: FontAwesome;
  position: absolute;
  top: 0;
  left: 0;
  color: #9b9b9b;
}

@media (max-width: 992px) {
  .page-title-layout4+.pricing {
    margin-top: 0;
  }
}

/* Medium Size Screens */
@media (min-width: 768px) and (max-width: 991px) {
  .pricing .container {
    max-width: none;
    padding: 0 15px;
  }

  .pricing-item .pricing-item__header,
  .pricing-item .pricing-item__content {
    padding: 20px;
  }

  .pricing-item .pricing-item__list {
    margin-bottom: 20px;
  }

  .pricing-item .pricing-item__title {
    margin-bottom: 30px;
  }

  .pricing-item .pricing-item__price {
    font-size: 50px;
    margin-bottom: 10px;
  }
}

/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .pricing-item .pricing-item__list {
    margin-bottom: 20px;
  }

  .pricing-item .pricing-item__header,
  .pricing-item .pricing-item__content {
    padding: 20px;
  }
}

/*---------------------------
    Counters
--------------------------*/
.counters {
  margin-top: 70px;
  margin-bottom: 70px;
}

.counter-item .counter {
  font-size: 60px;
  font-weight: 300;
  line-height: 1;
  color: #1E1E1E;
  margin-bottom: 13px;
}

.counter-item .plus {
  font-weight: 200;
  color: #1E1E1E;
  font-size: 55px;
}

.counter-item .counter-item__desc {
  color: #1E1E1E;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: .5px;
  margin-bottom: 0;
}

.counter-light .counter-item .counter,
.counter-light .counter-item .counter-item__desc {
  color: #ffffff;
}

.counter,
.plus,
.counter-item__desc {
  transition: color 0.3s ease;
  /* Her zaman geçiş efekti hazır */
}

.counter-item:hover .counter,
.counter-item:hover .plus,
.counter-item:hover .counter-item__desc {
  color: #FCD78E;
  /* Sarı renk */
}

/*------------------------
    Shop
--------------------------*/
.product-item {
  position: relative;
  text-align: center;
  margin-bottom: 50px;
}

.product-item .product-item__img {
  overflow: hidden;
  position: relative;
  margin-bottom: 26px;
}

.product-item .product-item__img img {
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.product-item .product-item__action {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.product-item:hover .product-item__action {
  bottom: 30px;
}

.product-item:hover .product-item__img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.product-item__title {
  font-size: 20px;
  margin-bottom: 0;
}

.product-item__title a {
  color: #1b1a1a;
}

.product-item__title a:hover {
  color: #1b1a1a;
}

.product-item__price {
  display: block;
  font-size: 19px;
  font-weight: 600;
}

/* Shop Single */
.shop-single .product-item__title {
  margin-bottom: 15px;
}

.shop-single .product-item__img {
  padding-right: 30px;
}

.shop-single .product-item__rating {
  margin-right: 37px;
}

.shop-single .product-item__rating i {
  font-size: 13px;
}

.shop-single .product-item__rating i.active {
  color: #1b1a1a;
}

.shop-single .product-item__price {
  font-size: 26px;
  font-weight: 400;
}

.shop-single .product-item__desc {
  font-size: 15px;
  line-height: 26px;
}

.product-item__details li {
  line-height: 2;
  font-size: 15px;
}

.product-item__details li strong {
  font-size: 16px;
  font-weight: 700;
  color: #1b1a1a;
  min-width: 120px;
  display: inline-block;
}

.related-products__title {
  font-size: 22px;
  font-weight: 500;
}

.product__quantity-title {
  margin-bottom: 0;
  display: inline-block;
  margin-right: 10px;
}

.quantity__input-wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  width: 80px;
  max-height: 50px;
  border-radius: 3px;
  border: 2px solid #1b1a1a;
}

.quantity__input-wrap i {
  width: 25px;
  height: 25px;
  line-height: 25px;
  font-size: 10px;
  text-align: center;
  color: #1b1a1a;
  cursor: pointer;
  position: absolute;
  right: 0;
  font-style: normal;
  border-left: 1px solid #1b1a1a;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.quantity__input-wrap .decrease-qty {
  bottom: 0;
  border-top: 1px solid #1b1a1a;
}

.quantity__input-wrap .qty-input {
  background-color: transparent;
  text-align: center;
  color: #1b1a1a;
  font-weight: 600;
  font-size: 16px;
  padding: 0;
  margin: 0;
  width: 50px;
  height: 50px;
  border: 0;
  outline: 0;
  -moz-appearance: textfield;
}

.quantity__input-wrap .qty-input::-webkit-inner-spin-button,
.quantity__input-wrap .qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

.product__tabs .tab-content {
  padding-top: 20px;
}

.product__tabs .tab-content p {
  font-size: 15px;
  line-height: 22px;
}

.product__tabs .tab-content p:last-child {
  margin-bottom: 0;
}

.magnifier {
  z-index: 3000 !important;
}

.sort-box .nice-select.form-control {
  min-width: 230px;
}

/* Shopping Cart */
.cart-table {
  margin-bottom: 50px;
}

.cart-table .table {
  border: 0;
  border-radius: 0;
  margin-bottom: 0;
}

.cart-table thead {
  background-color: transparent;
}

.cart-table thead tr th {
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  color: #1b1a1a;
  border: 0 !important;
  padding: 15px 0;
}

.cart-table tbody tr td {
  padding: 15px;
  border-color: #1b1a1a;
  vertical-align: middle;
}

.cart-table .btn__primary:before {
  display: none !important;
}

.cart-table .cart-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cart-table .cart-item__price,
.cart-table .cart-item__total {
  font-size: 16px;
  font-weight: 700;
  color: #9b9b9b;
  text-align: center;
}

.cart-table .cart-item__quantity {
  text-align: center;
}

.cart-table .cart-item__img {
  width: 50px;
  margin-right: 20px;
}

.cart-table .cart-item__title {
  font-size: 16px;
}

.cart-table .cart-item__remove {
  width: 19px;
  height: 19px;
  line-height: 19px;
  font-size: 9px;
  background-color: #1b1a1a;
  color: #ffffff;
  border-radius: 1px;
  text-align: center;
  cursor: pointer;
  margin-right: 20px;
}

.cart-table .cart-item__remove:hover {
  background-color: #1b1a1a;
}

.cart-table .cart-item__action td {
  padding: 30px 20px 20px;
}

.cart-table .cart-item__action td .form-control {
  font-size: 12px;
  font-weight: 400;
  width: 250px;
  height: 42px;
  padding: 15px;
  border: 1px solid #dbdbdb;
}

.cart-table .cart-item__action td .btn {
  line-height: 39px;
  height: 42px;
  min-width: 134px;
}

.cart-table .cart-item__action td .cart-item__action-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.cart-total__amount ul li {
  font-size: 15px;
  line-height: 36px;
  border-bottom: 1px solid #1b1a1a;
}

.cart-total__amount ul li span:first-of-type {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #1b1a1a;
  min-width: 190px;
  display: inline-block;
}

/* Mobile Phones */
@media (min-width: 320px) and (max-width: 575px) {
  .product-item {
    margin-bottom: 30px;
  }

  .product-item img {
    width: 100%;
  }

  .shop-single .product-item__img {
    padding-right: 0;
  }

  .filtering-options span {
    font-size: 12px;
  }

  .filtering-options .sort-box .nice-select.form-control {
    height: 40px;
    min-width: 190px;
    line-height: 26px;
    border-width: 1px;
    padding-left: 10px;
    padding-right: 20px;
  }

  .filtering-options .sort-box .nice-select.form-control .option {
    font-size: 12px;
    min-height: 35px;
    line-height: 35px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 320px) and (max-width: 400px) {
  .cart-table tbody tr td {
    padding: 5px;
  }

  .cart-table .cart-item__img {
    width: 40px;
    margin-right: 5px;
  }

  .cart-table .cart-item__title {
    font-size: 12px;
    font-weight: 400;
  }

  .cart-table .cart-item__price,
  .cart-table .cart-item__total {
    font-size: 10px;
  }

  .cart-table .cart-item__action-content {
    display: block !important;
  }

  .cart-table .cart-item__price,
  .cart-table .cart-item__total {
    font-size: 10px;
    font-weight: 400;
    padding: 0;
  }

  .cart-table thead tr th {
    font-size: 10px;
  }
}

/*--------------------
    Sidebar
----------------------*/
.fixed-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 290px;
  height: 100%;
  padding: 60px;
  border-right: 1px solid #e9e9e9;
}

.fixed-sidebar .nav__item-link {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #1b1a1a;
  margin-bottom: 20px;
}

.sidebar-wide {
  padding: 50px 50px 40px;
  background-color: #f9f9f9;
  border-radius: 1px;
}

.widget {
  margin-bottom: 35px;
}

.widget:last-child {
  margin-bottom: 0;
}

.widget .widget-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 17px;
}

.widget-search .widget-search__form {
  position: relative;
}

.widget-search .widget-search__form .form-control {
  padding-right: 30px;
}

.widget-search .widget-search__form button {
  position: absolute;
  top: 50%;
  right: 0;
  width: auto;
  color: #1b1a1a;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.widget-about img {
  margin-bottom: 23px;
}

.widget-categories li a {
  display: block;
  position: relative;
  color: #1b1a1a;
  font-size: 15px;
  margin-bottom: 8px;
}

.widget-categories li a:hover {
  color: #000000;
}

.widget-tags ul li a {
  position: relative;
  display: block;
  font-size: 14px;
  color: #222222;
  line-height: 1;
  text-transform: capitalize;
  padding-right: 10px;
  margin: 0 5px 9px 0;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.widget-tags ul li a:after {
  content: '-';
  position: absolute;
  top: 0;
  right: 0;
  color: #222222;
}

.widget-tags ul li a:hover {
  color: #000000;
}

.widget-tags ul li:last-child a {
  padding-right: 0;
}

.widget-tags ul li:last-child a:after {
  display: none;
}

.instagram-images li {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 90px;
  flex: 0 0 90px;
  max-width: 90px;
  margin: 5px;
}

.instagram-images li img {
  max-width: 100%;
}

/* Widget Filter */
.ui-slider {
  position: relative;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-widget.ui-widget-content {
  border: none;
}

.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
  -webkit-filter: inherit;
  filter: inherit;
}

.ui-slider-horizontal .ui-slider-handle {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background-color: #1b1a1a;
}

.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}

.widget-filter .ui-slider {
  background-color: rgba(34, 34, 34, 0.06);
  border-radius: 0;
  height: 4px;
  margin-bottom: 18px;
}

.widget-filter .ui-slider-range {
  height: 4px;
  background-color: #1b1a1a;
}

.widget-filter .price-output {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.widget-filter label {
  color: #9b9b9b;
  font-size: 14px;
  margin-bottom: 0;
}

.widget-filter input {
  background-color: transparent;
  color: #9b9b9b;
  font-size: 14px;
  border: none;
}

.widget-filter .filter__btn {
  font-size: 14px;
  font-weight: 700;
  color: #1b1a1a;
}

@media (min-width: 1200px) {

  .has-fixed-sidebar {
    padding-left: 290px;
  }
}

@media (max-width: 1200px) {
  .fixed-sidebar {
    position: static;
    padding: 30px;
    border-right: 0;
    width: 100%;
    height: auto;
  }
}

/*----------------------
    Countdown
-----------------------*/
.countdown-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.countdown-section {
  display: block;
  width: 100%;
}

.countdown-section:last-of-type {
  display: none;
}

.countdown-amount {
  color: #1b1a1a;
  font-size: 60px;
  font-weight: 400;
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}

.countdown-period {
  color: #1b1a1a;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
}

/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .countdown-amount {
    font-size: 30px;
  }
}

/*-------------------------
    Awards
-------------------------*/
.award-item {
  padding-bottom: 23px;
  border-bottom: 2px solid #e9e9e9;
  margin-bottom: 25px;
}

.award-item:last-of-type {
  padding-bottom: 0;
  border-bottom: 0;
}

.award-item .award-item__title {
  font-size: 20px;
  margin-bottom: 5px;
}

.award-item .award-item__desc {
  margin-bottom: 0;
}

/*----------------------
    Page 404
-----------------------*/
.page-404 .error-code {
  font-size: 130px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 30px;
}

.page-404 .error-title {
  font-size: 14px;
  position: relative;
  margin-bottom: 15px;
}

.page-404 .error-title:before {
  content: '';
  position: absolute;
  left: -70px;
  top: 50%;
  width: 40px;
  height: 2px;
  background-color: #1b1a1a;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.page-404 .error-subtitle {
  font-size: 44px;
  margin-bottom: 32px;
}

.page-404 .subscribe-form {
  position: relative;
}

.page-404 .subscribe-form .form-control {
  color: #1b1a1a;
  background-color: transparent;
  border: 2px solid #1b1a1a;
  padding-left: 20px;
}

.page-404 .subscribe-form .form-control:focus {
  background-color: transparent;
  border-color: #1b1a1a;
}

.page-404 .subscribe-form .form-control::-webkit-input-placeholder {
  color: #1b1a1a;
}

.page-404 .subscribe-form .form-control:-moz-placeholder {
  color: #1b1a1a;
}

.page-404 .subscribe-form .form-control::-moz-placeholder {
  color: #1b1a1a;
}

.page-404 .subscribe-form .form-control:-ms-input-placeholder {
  color: #1b1a1a;
}

.page-404 .subscribe-form .submit-btn {
  width: 55px;
  height: 55px;
  line-height: 53px;
  margin-left: -2px;
  font-size: 18px;
  color: #1b1a1a;
  border: 2px solid #1b1a1a;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.page-404 .subscribe-form .submit-btn:hover {
  color: #ffffff;
  background-color: #1b1a1a;
}

/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .page-404 {
    padding-top: 80px;
  }

  .page-404 .error-code {
    font-size: 90px;
    margin-bottom: 20px;
  }

  .page-404 .error-subtitle {
    font-size: 30px;
    margin-bottom: 20px;
  }
}


/* web eklemeler  */
/* tarayıcı hizmeti tablo css */
.table-tarama {
  background: #f2f2f2;
  padding: 100px 0;
}

.custom-table {
  border-collapse: collapse;
  overflow-x: scroll;
  position: relative;
  border-collapse: collapse;
  text-align: left;
  white-space: nowrap;
  min-width: 100px;
  width: auto;
  /* Değişiklik burada */
  table-layout: auto;
  /* veya bunu kaldır */
}

.custom-table .table-title th {
  font-size: 14px !important;
  font-weight: bold !important;
}

.custom-table tr:first-child {
  border-top: none;
}

.custom-table th,
.custom-table td {
  padding: 10px 15px;
  text-align: center;
  transition: background-color 0.3s ease;
  font-size: 15px;
  font-weight: 400;
  /* Renk geçiş efekti */
}

.custom-table thead th {
  background-color: transparent;
  font-weight: 600;
}

.custom-table::-webkit-scrollbar {
  height: 6px;
}

.custom-table::-webkit-scrollbar-thumb {
  background-color: #4a4a4a;
  border-radius: 10px;
}

.custom-table::-webkit-scrollbar-track {
  background: #ddd;
}

/* Scrollbar genel ayarları (Chrome/Safari/Edge) */
.custom-table::-webkit-scrollbar {
  height: 8px;
  /* yatay scroll için kalınlık */
}

.custom-table::-webkit-scrollbar-thumb {
  background-color: #888;
  /* scroll tutacağının rengi */
  border-radius: 4px;
  /* köşe yumuşatma */
  width: 40px;
  /* yatay scroll tutacağının uzunluğu (dolaylı olarak) */
}

.custom-table::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* scroll bar arkası */
}

/* Firefox için */
.custom-table {
  scrollbar-width: thin;
  /* kalınlık: auto | thin | none */
  scrollbar-color: #888 #f1f1f1;
  /* thumb rengi, track rengi */
}

.custom-table tbody td:first-child {
  background-color: #d3d3d3;
  font-weight: 600;
  text-align: left;
  font-size: 15px;
  font-weight: bold;
}

.custom-table .bg-table td {
  background-color: #f2f2f2;
}

.custom-table tbody tr:nth-child(odd) {
  background-color: #FFFFFF;
  transition: background-color 0.3s ease;
}

/* tarayıcı hizmeti tablo css son  */
/* alışveriş sepeti başlangıç */
.banner-layout1 .video-mobile {
  display: none;
}

.cart-container {
  max-width: 1000px;
  margin: auto;
}

.hero-alisveris-sepeti {
  margin-top: 50px;
}

.hero-alisveris-sepeti table thead th {
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  padding: 6px 15px;
}

.hero-alisveris-sepeti table .product-card-table {
  text-align: left;
  align-items: start;
  width: 300px;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.cart-table th,
.cart-table td {
  /* border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc; */
  text-align: left;
  padding: 15px;
  vertical-align: top;
}

.cart-table tbody tr {
  border-left: 1px solid #D9D9D9;
  border-right: 1px solid #D9D9D9;
}

.cart-table tbody tr:nth-child(1) {
  border-top: 1px solid #D9D9D9;

}

.cart-table tbody tr:nth-child(2) {
  border-bottom: 1px solid #D9D9D9;

}

.product-info {
  padding: 15px;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-card img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  max-width: 300px;
  max-height: 200px;
}

.product-details p {
  margin: 5px 0 0;
  font-size: 0.9em;
  color: #000000;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  justify-content: center;
  padding: 10px 0;
}

.quantity-control span {
  margin-bottom: -3px;
}

.quantity-control button {
  width: 25px;
  height: 25px;
  background-color: #fff;
  cursor: pointer;
  font-size: 20px;
}

.cart-footer {
  margin-top: 20px;
}

.cart-buttons {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
}

.cart-buttons button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

.cart-buttons .continue {
  background: #fff;
  border: 1px solid #000;
  color: #000000;
}

.cart-buttons .continue svg {
  margin-right: 10px;
}

.cart-buttons .checkout {
  background: #000;
  color: #fff;
  border: none;
}

.cart-buttons .checkout svg {
  margin-left: 10px;
}

.coupon-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #D9D9D9;
  width: 100%;
  overflow: hidden;
  height: 49px;
  padding: 0 0 0 18px;
}

.code {
  width: 100%;
}

.code input {
  border: none;
  width: 100%;
}

.coupon-code button {
  border: none;
  max-width: 261px;
  height: 100%;
  width: 100%;
  background: #A04F3E;
  font-weight: 400;
  outline: none;
  border: none;
  color: #fff;
  transition: color 0.2s ease-out, background 0.2s ease-out;
}

.coupon-code button:hover {
  background: #FCD78E;
  color: #A04F3E;
  transition: color 0.2s ease-in, background 0.2s ease-in;
}

.coupon-code i {
  font-size: 20px;
  color: #98A4AC;
}

/* alışveriş sepeti son */
/* giriş yap - kayıt ol */


.aliveris-sepeti.cart-table td>* {
  flex: 1;
}

.aliveris-sepeti.cart-footer-row td {
  display: block;
  padding: 1rem 0;
}

.kayit-ol {
  margin: 30px 0 150px 0;
}

.form-kayit-ol {
  border: 1px solid #D9D9D9;
  padding: 30px;
}

.kayit-ol .login h5 {
  font-weight: 600;
  color: #000000;
  font-size: 24px;
}

.kayit-ol .login p {
  color: #9B9B9B;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 40px;
}

.kayit-ol .kayit-buton,
.giris-buton {
  width: 100%;
  text-align: center;
  margin-top: 50px;
}

.kayit-ol .form-check-label {
  font-weight: 400;
  color: #000000;
  font-size: 14px;
  cursor: pointer;
}

.kayit-ol .kayit-buton button {
  min-width: 250px;
}

.giris-yap {
  margin: 30px 0 150px 0;
}

.giris-yap h5 {
  font-weight: 600;
  color: #000000;
  font-size: 24px;
}

.giris-yap p {
  color: #9B9B9B;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 40px;
}

.giris-yap .form-check {
  display: flex;
  justify-content: space-between;
}

.giris-yap .form-check a {
  color: #316CF4;
  font-size: 14px;

}

.giris-yap .form-check a:hover {
  color: #316CF4;
}

.giris-yap .giris-buton button {
  min-width: 250px;
}


.siparisSurecDiv h2 {
  font-size: 36px;
  font-weight: bold;
  color: #000000;
}

.siparisSurecDiv {}

.section-anasayfa-video .heading-subtitle {
  font-size: 20px;
  color: #000000;
  font-weight: 500;
}

.section-anasayfa-video .heading-title {
  font-size: 40px;
  color: #000000;
  font-weight: bold;
}

.section-anasayfa-video .heading-desc {
  font-size: 16px;
  color: #BAB9C0;
  font-weight: 400;
}

/*----------------------
    Accordions
------------------------*/
.accordion-item {
  border-bottom: 1px solid #e9e9e9;
  background-color: #ffffff;
  margin-bottom: 15px;
  padding: 27px 0 24px;
}

.accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-item .accordion-item__title {
  color: #1b1a1a;
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  display: block;
  position: relative;
}

.accordion-item .accordion-item__title:after {
  position: absolute;
  right: 0;
  top: 0;
  content: "+";
  font-family: fontawesome;
  color: #1b1a1a;
  font-size: 25px;
  font-weight: 800;
  text-align: center;
  width: 20px;
  height: 20px;
  line-height: 20px;
}

.accordion-item.opened .accordion-item__header:not(.collapsed) .accordion-item__title {
  color: #1b1a1a;
}

.accordion-item.opened .accordion-item__header:not(.collapsed) .accordion-item__title:after {
  color: #1b1a1a;
  content: " ";
  background-image: url('../images/icons/close.png');
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;

}

.accordion-item .accordion-item__body {
  padding-top: 25px;
}

.accordion-item .accordion-item__body p {
  margin-bottom: 0;
  line-height: 25px;
  color: #9B9B9B;
}

/* bankalar başlangıç */
.bankalar h2 {
  color: #000000;
  font-size: 44px;
  font-weight: bold;
  margin-top: 36px;
}

.bankalar .first-p {
  color: #9B9B9B;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 36px;
}

.bankalar .bank-card {
  background: #fff;
  border: 1px solid #EBEEF1;
  padding: 20px;
  margin-bottom: 20px;
}

.bank-logo {
  max-height: 60px;
  object-fit: cover;
  width: 180px;
}

.bank-card-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bank-inf {
  border: 1px solid #CACACA;
  padding: 50px;
}

.bank-inf .img-bank {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bank-info {
  margin-top: 20px;
  width: 100%;
}

.bank-table {
  margin: 0 auto;
  margin-top: 10px;
  width: 100%;
  max-width: 600px;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.bank-table td {
  padding: 10px;

}

.bank-table tr td:nth-child(1) {
  font-size: 15px;
  color: #000000;
  font-weight: 600;
}

.bank-table tr td:nth-child(2) {
  color: #474444;
  font-size: 15px;
  padding: 8px 13px;
  font-weight: 400;
}

.bank-table td span {
  margin-bottom: 0px;
}

.bank-table td:first-child {
  font-weight: bold;
  width: 150px;
}

.verification-code {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.verification-code input {
  font-size: 14px;
  padding: 0px 10px;
  background: #F7F9FA;
  flex: 1;
  border: 1px solid #AAAAAA;
}

.iban-copy {
  display: flex;
  justify-content: space-between;
}

.form-section-bankalar {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 20px;
  margin-top: 30px;
}

.form-section-bankalar h5 {
  margin-left: 40px;
  font-size: 18px;
  color: #A04F3E;
}

.form-section-bankalar ul li {
  font-size: 14px;
  line-height: 30px;
  color: #474444;
}

.form-section-bankalar button {
  background: #1B1A1A;
}

.form-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

label {
  font-weight: 500;
}

.custom-file-input {
  position: relative;
  overflow: hidden;
  opacity: 1;
  border-bottom: 2px solid #e9e9e9;
}

.custom-file-input input[type=file] {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
}

.custom-file-icon {
  border-bottom: 1px solid red;

  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 38px;
  padding: 0 10px;
  background-color: #fff;
}

.custom-file-icon i {
  font-size: 20px;
  color: #495057;
}

.finetb .table-striped tbody tr:nth-of-type(odd) {
  background-color: #F3F6F8;
}

/* Hizmetler sayfası animasyonlu geçiş kodları */
.hizmetler-animasyon .left {
  width: 50vw;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.hizmetler-animasyon .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
  position: absolute;
}

.hizmetler-animasyon .left img.visible {
  opacity: 1;
  position: relative;
}

.hizmetler-animasyon .right {
  width: 50vw;
}

.hizmetler-animasyon .ref-block {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
  opacity: 0.2;
  transform: translateY(30px);
  transition: all .8s ease;
}

.hizmetler-animasyon .ref-block.active {
  opacity: 1;
  transform: translateY(0);
}

.hizmetler-animasyon .ref-title {
  font-size: 2rem;
  margin-bottom: .5rem;
  transition: opacity .6s ease .2s;
}

.hizmetler-animasyon .ref-desc {
  font-size: 1.2rem;
  color: #555;
  max-width: 80%;
  transition: opacity .6s ease .4s;
}

/* Hizmetler sayfası animasyonlu geçiş kodları  bitiş*/

/* bankalar bitiş */
.file-upload-wrapper {
  position: relative;
  display: inline-block;
  margin: 30px 0px;
}

.file-upload-button {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  border: 1px solid #A04F3E;
  background-color: white;
  color: #A04F3E;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  font-family: sans-serif;
}

.file-upload-button svg {
  margin-left: 8px;
  width: 18px;
  height: 18px;
  fill: #A04F3E;
}

.file-upload-input {
  display: none;
}

.portfolio-masonry-layout3 {
  padding-top: 70px;
}

.faqs .heading-title {
  width: 60%;
}

.services .hero .text-block {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* padding: 80px 20px; */
  box-sizing: border-box;
  display: flex;
  align-items: center;
  min-height: 650px;
  /* ihtiyaca göre ayarlayabilirsin */
  margin-bottom: 80px;
}

/* Hizmetler arka plan resim */
.fineart-back {
  background: url(../images/services/fineart/top.jpg);

}

.cerceve-back {
  background: url(../images/services/cerceveleme/top.jpg);

}

.services .hero .text-block.main-back {
  background: url(../images/services/main/top.jpg);
  min-height: 450px;
  
}

.hero-hizmetler a {
  margin-bottom: 80px;
}

.hero-hizmetler .img-hizmet {
  position: relative;
  display: inline-block;
}

.hero-hizmetler .overlay-hizmet {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  /* tıklamaları engellemez */
}

.hero-hizmetler .img-hizmet:hover .overlay-hizmet {
  opacity: 0.7;
  /* Şeffaf siyah katman */
}

.hero-hizmetler .txt-hizmet {
  margin-bottom: 80px;
  margin-top: 24px;
}

.hero-hizmetler .txt-hizmet p {
  color: #000000;
  font-weight: bold;
  font-size: 22px;

}

.fotograf-baskısı {
  background: url(../images/services/fotograf/top.jpg);
}

.canvas-back {
  background: url(../images/services/canvas/top.jpg);
}

.services .hero .text-block .text-block-1 {
  text-align: left;
  margin: 0px 0 0 100px;
}

.services .hero .text-block .text-block-1 .main-title {
  width: 60%;
}

.Photo-baski {
  background: url(../images/services/fineart/bakground.png);
  height: 750px;
  width: 100%;
  max-width: 100%;
  background-repeat: no-repeat;  
  margin: 150px 0px;
  background-size: cover;
  background-position: right center;
}

.Photo-baski.canvas {
  margin: 0 0 100px 0;
}

.Photo-baski .services-desc {
  height: 651px;
  display: table-cell;
  vertical-align: middle;
  text-align: start;
  align-items: center;
}

.Photo-baski .services-desc h5 {
  font-size: 34px;
}

.Photo-baski .services-desc p {
  font-size: 15px;
}

.anasayfa .heading-title {
  font-size: 28px;
}

.page-title-layout1 .breadcrumb .breadcrumb-item a {
  color: #681B0B;
  line-height: 26px;
  font-size: 18px;
}

/* Menü kutusu */
.menu-box {
  display: contents;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  width: 90%;
  max-width: 800px;
  margin-bottom: 40px;
}

/* Menü butonları */
.blog-grid .menu-items {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
}

.blog-grid .menu-items button {
  background-color: #FFF4DB;
  color: #9B5040;
  border: none;
  padding: 8px 12px;
  font-weight: 500;
  cursor: pointer;
  font-size: 14px;
  transition: transform 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  transform-origin: center;
}

.blog-grid .menu-items button:hover {
  transform: scale(1.01);
  color: #000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Arama çubuğu */
.search-bar {
  justify-content: space-between;
  display: flex;
  align-items: center;
  border: 1px solid #979797;
  padding: 5px 10px;
  margin-bottom: 50px;
}

.search-bar input {
  border: none;
  outline: none;
  font-size: 14px;
  padding: 13px 24px;
}

.search-icon {
  margin-left: 8px;
  color: #999;
}

.search-bar input::placeholder {
  color: #979797;
  /* istediğin renk */
}

.team-layout1-p {
  color: #000000;
  font-size: 35px;
}

.team-layout1 .team-layout1-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.team-layout1 .team-layout1-top a {
  color: #1E1E1E;
  font-size: 20px;
  font-weight: 500;
}

.clients-p {
  font-weight: 500;
  line-height: 35px;
  font-size: 24px;
  color: #000000;
}

.step {
  margin-bottom: 30px;
}

.heading-desc {
  color: #000000;
  line-height: 38px;
  font-size: 19px;
  font-weight: 500;
}

.about-section .heading-title {
  font-size: 40px;
  font-weight: bold;

}

.about-section .heading-desc {
  line-height: 25px;
  font-size: 14px;
  font-weight: 400;
  color: #9B9B9B;
  text-align: justify;
}

.about-section-2 .heading-desc {
  color: #9B9B9B;
  line-height: 30px;
  font-size: 16px;
  font-weight: 300;
}

.about-section-2 .fancybox-item__title {
  font-size: 20px;
  color: #000000;
  font-weight: bold;
}

.about-section-2 .fancybox-item__desc {
  font-size: 14px;
  font-weight: 300;
  color: #9B9B9B;
}

.about-section .hakkimizda-video {
  background-image: url("../images/about/video.jpg");
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100%;
  height: 100%;
  min-height: 246px;
}

.anasayfa-video {
  background-image: url("../images/backgrounds/videoback.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  min-height: 246px;
}

.my-slider {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: auto;
  margin-right: auto;
}

.my-slider .slick-carousel {
  margin: 0 !important;
  padding: 0 !important;
}

.my-slider .slick-carousel .slide-item {
  padding: 0 5px;
  /* istersen azaltabilirsin */
  box-sizing: border-box;
}

.my-slider .slick-list {
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
}

.my-slider .slick-track {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.heading-title {
  font-size: 44px;
  font-weight: bold;
  margin: 4% 0px;
}

.slider-cerceve.slick-carousel {
  display: flex;
  gap: 20px;
}

.slider.slider-cerceve .slick-arrow {
  top: 96%;
  width: 100px;
}

.slider.slider-cerceve .slick-arrow.slick-prev {
  left: -7%;
}

.slider.slider-cerceve .slick-arrow.slick-next {
  right: 7%;
}

.slider.slider-cerceve .slick-arrow.slick-next:after {
  content: "Sonraki Adım" !important;
  left: 70px;
}

.slider.slider-cerceve .slick-arrow.slick-prev:after {
  content: "Önceki Adım" !important;
  left: 70px;
}

.slider.slider-cerceve .slick-arrow.slick-prev:before {
  left: 82%;
}

.slider.slider-cerceve .slick-arrow.slick-next:before {
  right: -80%;
}

.slider-cerceve.slick-carousel .post-item {
  flex: 0 0 calc(33.333% - 13.33px);
  scroll-snap-align: start;
  transition: transform 0.3s ease;
  margin-right: 10px;
  padding-right: 10px;
}

.slider-cerceve .post-item:hover {
  transform: scale(1.02);
}

.slider-cerceve .member .member__info {
  padding: 0 3px;
}

.slider-cerceve .member__img {
  overflow: hidden;
  margin-bottom: 12px;
  position: relative;
}

.slider-cerceve .member__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-cerceve .member__img svg {
  position: absolute;
  bottom: 0;
  right: 0;
}

/* .slider-cerceve .member__name {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 6px;
  color: #000000;
  line-height: 25px;
} */

.slider-cerceve .member__desc {
  font-size: 16px;
  color: #000000;
}

/* Slick geldikten sonra flex'i kapat */
.slider-cerceve .slick-initialized {
  display: block !important;
  overflow: visible !important;
}

@media (max-width: 992px) {
  .slick-carousel.slider-cerceve .post-item {
    flex: 0 0 100%;
  }
}

.step-number {
  font-size: 2rem;
  font-weight: bold;
  color: #ccc;
  min-width: 70px;
  margin-right: 20px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  padding: 10px 0;
  height: 70px;
  border: 1px solid;
}

.step-number:hover,
.step h4:hover {
  color: #FCD78E;
  transition: color 0.3s ease;
  /* Her zaman geçiş efekti hazır */
}

.step {
  align-items: flex-start;
}

.step h4 {
  font-size: 24px;
  font-weight: bold;
  color: #000000;
}

.step p {
  font-size: 16px;
  font-weight: 300;
  color: #9B9B9B;
}

.order-process {
  margin-bottom: 100px;
}

.order-process p {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #BAB9C0;
}

.order-process h5 {
  font-size: 1.1rem;
}

.order-process img {
  max-width: fit-content;
}

.order-process button {
  margin-left: 100px;
}

.btnSiparisSurec::after {
  background-color: #FCD78E !important;
}

.testimonial-item__desc {
  font-size: 1.1rem;
  font-style: italic;
  max-width: 800px;
  margin: auto;
}

.custom-prev,
.custom-next {
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.testimonial-item__meta img {
  object-fit: cover;
}


.custom-arrow {
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #000;
  border-bottom: 2px solid #000;
  padding: 4px 10px;
  transition: all 0.2s ease-in-out;
}

.custom-arrow:hover {
  color: #444;
  border-color: #444;
}

/* .testimonials .slick-arrow {
  position: relative;
}

.testimonials .custom-prev:before {
  right: 46px !important;
  left: auto;
}

.testimonials .custom-next:before {
  left: 54px !important;
  right: auto;
}

.testimonials .slick-arrow:before {
  top: 38px;
} */



/*slider*/

.slider-container {
  max-width: 1460px !important;
}

/* vision mision*/
.visionmision {
  margin-top: 140px;
  margin-bottom: 100px;
}

.visionmision .fancybox-item__title {
  color: #000000;
  font-size: 20px !important;
  font-weight: 600;
}

.visionmision .fancybox-item__desc {
  font-size: 16px;
  font-weight: 400;
}

/*/*/

.page-title-layout1 {
  background-color: #F6D898;
}

.nav__item .icon {
  font-size: 18px;
  padding: 0 8px;
  color: #333;
  display: flex;
  align-items: center;
}

.nav__item .icon:hover {
  color: #000;
}

.btn-outline-dark {
  border: 1px solid #333;
  color: #333;
  text-decoration: none;
  transition: 0.3s ease;
  min-width: 100px;
}

.btn-outline-dark:after {
  display: none;
  background-color: #FFFFFF !important;
  color: #fff;
}

.btn-outline-dark:hover {
  background-color: #FFFFFF;
  color: #000;
}

.nav__item-link i {
  font-size: 18px;
  color: #333;
}

.nav__item-link:hover i {
  color: #000;
}

.girisYap::before {
  display: none !important;
}

.with-dropdown .acılırMenu {
  position: relative !important;
}

.with-dropdown .acılırMenu::after {
  content: "▼" !important;
  font-size: 1rem !important;
  top: 6px !important;
  right: 10px !important;
  position: absolute !important;
}

.slider .slick-arrow.slick-prev:after {
  content: "Önceki" !important;
  text-align: right;
}

.slider .slick-arrow.slick-next:after {
  content: "Sonraki";
  text-align: left;
}

.ebulten-decs {
  display: flex;
  margin-left: 50px;
}

.ebulten-decs .ebulten-decs-1 {

  margin-right: 60px;
}

.ebulten-decs .ebulten-decs-1 h6 {

  font-size: 18px;
  font-weight: bold;
  color: #1B191A;
  line-height: 20px;

}

.ebulten-decs .ebulten-decs-1 p {

  color: #1B191A;

}


.ebulten {
  border-top: 2px solid #FEF5E2;
}

.ebulten .form-inline {
  position: relative;
}

.ebulten .ebulten-logo {
  width: 221px;
  height: 81px;
}

.ebulten .ebulten-logo img {
  object-fit: cover;
}

.ebulten .ebulten-form {
  display: flex;
  justify-content: end;
}

.ebulten .ebulten-form .form-ebulten {
  border: 2px solid #1B191A;
  width: 280px;
  text-indent: 10px;
  border-style: solid
}

.btn-ebulten {
  position: absolute;
  margin: 0;
  padding: 0;
  overflow: visible;
  right: 0;
  top: 0;
  border-left: 2px solid #1B191A;
}

.ebulten .btn-ebulten .web {
  display: block;
}

.ebulten .btn-ebulten .mobile {
  display: none;
}

/* .footer,
h6,
span {
  color: #AAAAAA;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;

} */
.footer h6 {
  color: #AAAAAA;
  font-size: 14px;
  font-weight: 500;
}

.footer ul li {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 20px;
}

.footer ul li a:hover {
  color: #FCD78E;
}

.footer .social-icons a:hover,
.footer .social-icons a:hover svg path {
  color: #FCD78E;
  opacity: .6;
  fill: #FCD78E;
}

.footer ul {
  line-height: 30px;
}

.footer span {
  font-size: 14px;
  color: #FFFFFF !important;
  font-weight: 400;
}

.social-icons a {
  margin-right: 20px;
}

.footer .bank-card img {
  height: fit-content;
}

.slick-track:after,
.slick-track:before,
.clients .client:after,
.clients .slick-list:before {
  display: none !important;
}

.slider.slider-blog .slick-arrow {
  position: absolute;
  top: auto;
  width: 100px;
  height: auto;
  line-height: 23px;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  color: #1b1a1a;
  background-color: transparent;
}

.slider.slider-blog .slick-arrow.slick-prev:after {
  content: "Önceki Yazı" !important;
  left: -80px;
}

.slider.slider-blog .slick-arrow.slick-next:after {
  content: "Sonraki Yazı" !important;
  left: 70px;
}




.contact-info .heading p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

.hizmet-top-section .services-desc,
.canvas-hizmeti .services-desc {
  margin-bottom: 150px;
}

.services li::marker {
  content: none;
}

.services img {
  width: 100%;
}

.services svg {
  margin-right: 15px;
}

.services .services-top img {
  width: 100%;
}

.services li {
  line-height: 25px;
}

.services .hero-gallery {
  margin-top: 80px;
}

.hero-gallery .slider a {
  padding: 0 4px;
}

.services .hero-gallery h5 {
  font-size: 36px;
}

/* Kart yüksekliğini eşitlemek için */
.services .hero-gallery .member {
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 8px;
}

/* Bilgi alanı */
.services .hero-gallery .member__info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 1rem;
}

/* Başlık hizalaması için sabit yükseklik */
.services .hero-gallery .member__name {
  margin-top: 30px;
  font-size: 19px;
  font-weight: bold;
  min-height: 3.5em;
  /* Tüm başlıklar aynı yükseklikte olsun */
  margin-bottom: 0.5rem;
  color: #000000;
}

/* Açıklama hizalaması için sabit yükseklik */
.services .hero-gallery .member__desc {
  font-size: 12px;
  color: #000000;
  min-height: 6em;
  /* Tüm açıklamalar hizalı dursun */
  font-weight: 400;
  line-height: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hello-steps {
  margin-top: 120px;
}

.hello-steps .list-step {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
  margin-top: 50px;
  justify-content: space-between;
}

.hello-steps .list-step li {
  flex: 1 1 100px;
  max-width: 100%;
}

.hello-steps .list-step img {
  width: 40px;
  height: auto;
  margin-bottom: 0.5rem;
}

/* Responsive mobil görünüm */
@media (max-width: 768px) {
  .hello-steps .list-step {
    flex-direction: column;
    align-items: center;
  }

  .hello-steps .list-step li {
    max-width: none;
  }
}

.services .services-desc p {
  font-weight: 400;
  font-size: 16px;
  color: #9B9B9B;
  line-height: 26px;
}

.services .services-item {
  margin-bottom: 60px;
}

.services .services-desc-2 h5 {
  font-weight: 700;
  font-size: 34px;
  color: #000000;
  line-height: 100%;
  margin-top: 30px;
  margin-bottom: 50px;
}

.services .services-desc-2 p {
  font-weight: 400;
  font-size: 15px;
  color: #9B9B9B;
}

.services .services-desc table img {
  width: inherit;
}

.baski-hesaplama {
  background-color: #f9f9f9;
  padding: 150px 0 100px;
  
}

.baski-hesaplama .card-hesap-makinası {
  justify-content: center;
  display: flex;
}

.services .text-services {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.services-desc-2 .row {
  margin-bottom: 160px;
}

.services-desc-2 .img-services img {
  object-fit: contain;
}

.text-services p {
  margin-bottom: 60px;
}

.table-sevices th,
.table-sevices td {
  padding: 10px;
  width: 100px;
  height: 100px;
  /* eşit yükseklik için sabit değer */
  border: 1px solid #D9D9D9;
  text-align: left;
  vertical-align: middle;
}

.table-sevices .span-bottom {
  display: block;
  line-height: 1.2;
  margin-bottom: 5px;
}

.table-sevices p {
  margin: 0;
}

.table-sevices img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.table-sevices tr:first-child th span,
.table-sevices tr:first-child td img {
  display: inline-block;
  color: #000000;
  font-weight: 600;
  vertical-align: top;
  min-height: 3em;
}


.table.table-sevices-2 {
  text-align: center;
  color: #000000;
}

.table.table-sevices-2 th {
  font-weight: 400;
  font-size: 12px;
}

.table-bordered.table.table-sevices-2 {
  border-top: none;
  border-left: none;
  border-right: none;
}

.table-bordered.table.table-sevices-2 .table-title span {
  font-weight: bold;
  color: #000000;
  font-size: 13px;
}

.table-title img {
  margin-right: 10px;
}

.table-title th {
  font-weight: bold;
}

/* .table-title tr:nth-child(1),
.table-title th:nth-child(2),
.table-title th:nth-child(3) {
  font-weight: 600 !important;

} */

.table-title th,
.table-title {
  border: none;
  background-color: transparent;
  font-size: 16px;
}

.card.card-calculate {
  background-color: #ffffff;
  border-radius: 0px;
  padding: 30px;
  width: 100%;
  max-width: 600px;
}

.card-calculate h2 {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

.calculate-desc h4 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 40px;
}

.calculate-desc li h6 {
  font-size: 22px;
  font-weight: 500;
  line-height: 25px;
  color: #000000;
  margin-bottom: 10px;
}

.calculate-desc li p {
  font-size: 15px;
  font-weight: 400;
  color: #1E1E1E;
}

.card-calculate .price-box {
  background-color: #FFEBC5;
  color: #A04F3E;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  padding: 15px;
  border: 1px dashed #A04F3E;
  margin-bottom: 25px;
}

.card-calculate .kdv {
  background: #EBDCD9;
  margin-bottom: 20px;
  color: #9B5040;
  font-size: 20px;
  font-weight: 600;
  padding: 6px;
  text-align: center;
}

.card-calculate label {
  display: block;
  font-size: 14px;
  margin: 12px 0 6px;
}

.card-calculate select,
input[type="number"] {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.card-calculate .size-inputs {
  display: flex;
  gap: 10px;
  align-items: center;
}

.card-calculate .size-inputs input {
  flex: 1;
}

.card-calculate .size-inputs span {
  font-weight: bold;
}

.services .hello-steps ul p {
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  color: #333333;
}

.services .hello-steps img {
  width: auto;
  margin-bottom: 20px;
}

.services-step .img {
  margin-bottom: 50px;
}

.services-step .img img {
  max-width: fit-content;
  margin-top: 50px;
}

.fullwidth-img {
  width: 100vw !important;
  max-width: none;
  margin-left: calc(-50vw + 50%);
}


.button-group-cerceve .cerceve {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.button-group-cerceve .button {
  padding: 10px 16px;
  border: 2px solid black;
  background-color: white;
  cursor: pointer;
  flex: 1 1 auto;
}

.button.selected {
  background-color: black;
  color: white;
}

.group-1 .button-group-cerceve {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 10px;
}

.group-2 .button-group-cerceve {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.group-3 .button-group-cerceve {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (max-width: 768px) {
  .button {
    padding: 8px 12px;
    font-size: 14px;
  }

  .group-1 .button-group-cerceve .group-2 .button-group-cerceve .group-3 .button-group-cerceve {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .group-1 .button-group-cerceve button:nth-child(3) {
    width: 100%;
    justify-self: start;
    grid-column: 1 / span 2;
  }
}

@media (max-width: 480px) {
  .card-calculate.card {
    padding: 20px;
  }
}

.calculate-desc li {
  position: relative;
  color: #000000;
  line-height: 20px;
  margin-bottom: 30px;
}

.calculate-desc li .img {
  position: absolute;
  left: -30px;
  top: 20px;
}

.calculate-desc li::marker {
  content: " ";
}

.services-avantaj {
  color: #9B9B9B;
}

.services-avantaj .fancybox-item p {
  color: #333333;
  font-weight: 400;
  font-size: 16px;
}


.services .subheading {
  font-size: 18px;
  color: #000000;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.services .main-title {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #000000;
}

.dropdown-toggle::after {
  display: none;
}

.fancybox-item.item-bayi {
  border: 1px solid #ECECEC;
  background: #f9f9f9;
  max-height: 600px;
  height: 100%;
}

.fancybox-item.item-bayi .fancybox-item__content {
  padding: 40px 24px;
}

.fancybox-item.item-bayi .fancybox-item__content h5 {
  color: #000000;
  font-size: 18px;
}

.fancybox-item.item-bayi .fancybox-item__content .bayi-title {
  color: #9B5040;
  font-size: 34px;
  font-weight: bold;
}

.fancybox-item.item-bayi .fancybox-item__content p {
  color: #000000;
  font-size: 16px;
  font-weight: 300;
}

.fancybox-item.item-bayi .fancybox-item__content ul {
  list-style: none;
  padding-left: 0px;
}


.fancybox-item.item-bayi .fancybox-item__content ul li {

  line-height: 35px;
  border-bottom: 1px solid #ECECEC;
  color: #000;
}

.fancybox-item.item-bayi .fancybox-item__content ul li svg {
  margin-right: 10px;
}

.hero-bayi .services-desc {
  margin-bottom: 30px;
}

.hero-bayi .services-desc h2 {
  font-size: 40px;
  color: #000000;
  font-weight: bold;
  width: 60%;
}



.hero-bayi p {
  font-size: 16px;
  color: #9B9B9B;
  font-weight: 400;
}

.hero-bayi .step-number {
  color: #DFB8B0;
}

.hero-bayi img {
  max-width: fit-content;
}

.center-button {
  background-color: black;
  color: white;
  font-size: 16px;
  border: none;
  width: 100%;
  /* tam sütun genişliğini kapla */
}

.center-button:hover {
  background-color: #FBB732;
}

.hero-tarama-hizmeti .row {
  background: #FEFBF5;
  align-items: center;
  margin-bottom: 20px;
}

.hero-tarama-hizmeti .text-hero ul {
  padding-left: 0px;
  line-height: 30px;
}

.hero-tarama-hizmeti .text-hero ul li svg {
  margin-right: 10px;
}

.hero-tarama-hizmeti img:nth-child(1),
.text-hero:nth-child(1) {
  margin: 20px 0;
}

.hero-tarama-hizmeti-form .form-check-label {
  margin-top: 1px;
  color: #000000;
  margin-bottom: 30px;
}

/* baskı olustur baslangıç */
/* Üst Stepper */
.step-bar {
  margin-top: 50px;
}

.stepper {
  display: flex;
  align-items: center;
  padding: 20px 2px 0 0;
  gap: 0px;
  justify-content: space-between;
  align-items: baseline;
}

.stepper::-webkit-scrollbar {
  display: none;
}

.stepper .step.active {
  color: #000000;
  font-weight: 700;
}

.stepper .step.active .label {
  font-size: 12px;
  font-weight: 500;
  color: #1E1E1E;
}

.stepper .step.active p {
  color: #1E1E1E;
  font-weight: 400;
  font-size: 10px;
}

.stepper .step .label {
  font-size: 12px;
  text-align: left;
  font-weight: 500;
  color: #6C757D;
}

.stepper .step p {
  color: #6C757D;
  margin: 0;
  font-weight: 400;
  font-size: 10px;
}

.step-group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.step {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 160px;
  flex: 0 0 auto;
}

.stepper .circle {
  width: 30px;
  height: 30px;
  background-color: #ADB5BD;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.stepper .step.active .circle {
  background-color: #1E1E1E;

}

.stepper .line {
  height: 2px;
  background-color: #ADB5BD;
  width: 60px;
  /* Çizgi uzunluğu */
  margin: 0 10px;
  flex-shrink: 0;
}

.step.active+.line {
  background-color: #FCD78E;
  /* Aktif renginiz */
}

/* Ana içerik */
.baski-olustur .main {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  background: #f4f4f4;
  min-height: calc(100vh - 100px);
}

.baski-olustur .left,
.baski-olustur .right {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.baski-olustur .left {
  background: url('../images/services/baski-olustur/1.png') no-repeat center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: left;
  min-height: 400px;
}

.baski-olustur .left-content {
  padding: 30px 0 0 62px;
  text-align: left;
  max-width: 80%;
}

.baski-olustur .left-content h1 {
  font-size: 60px;
  margin-bottom: 16px;
  font-weight: bold;
}

.baski-olustur .left-content ul {
  list-style: none;
  padding: 0;
  line-height: 1.8;
  font-size: 15px;
}

.baski-olustur .left-content ul li {
  font-size: 20px;
  color: #000000;
}

.baski-olustur .left-content ul li::before {
  content: "✓";
  color: #374957;
  margin-right: 8px;
}

.baski-olustur .right {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FCFCFC;
}

.baski-olustur .dropzone {
  border: 2px dashed #BAB9C0;
  background: #FCFCFC;
  padding: 100px 40px;
  text-align: center;
  width: 100%;
  max-width: 500px;
  height: 400px;
  display: grid;
  align-items: center;
  justify-self: center;
}

.baski-olustur .dz-message {
  font-size: 16px;
  color: #666;
  display: block;
}

.baski-olustur .dz-message img {
  width: 60px;
  margin-bottom: 16px;
  opacity: 0.6;
}

.baski-olustur .dz-message h6 {
  font-size: 20px;
  color: #000000;
  font-weight: bold;
}

.baski-olustur .dz-message p {
  font-size: 14px;
  color: #000000;
  font-weight: 400;
}

.baski-olustur .dz-message .loading {
  font-size: 14px;
  color: #000000;
  font-weight: 400;
}

.baski-olustur .btn-mobile {
  display: none;
}

/* baskı olustur son */


/* baskı detayları başlangıç */
.baski-detayi {
  background: #F5F5F5;
  margin: 50px 0;
}

.baski-detayi-1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  /* alt alta düşmesini engeller */
  gap: 20px;
  box-sizing: border-box;
}

/* sol panel */
.accordion-inner-left {
  text-align: left;
}

.accordion-inner-left .radio-group label {
  display: inline-block;
  margin-right: 15px;
  font-size: 14px;
}

.accordion-inner-left .size-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.accordion-inner-left .size-inputs input {
  width: 120px;
  padding: 10px;
  font-size: 16px;
  border-radius: 6px;
  background-color: #f9f9f9;
  border: none;
  height: 60px;
}

.accordion-inner-left .dpi-info p {
  font-size: 14px;
  margin: 5px 0;
}

.accordion-inner-left .dpi-info .warning {
  color: #e00031;
  margin: 30px 0;
}

.accordion-inner-left .info-icon {
  font-weight: bold;
  margin-left: 5px;
  cursor: pointer;
}

.accordion-inner-left .border-size-group {
  display: flex;
  flex-direction: column;
}

.accordion-inner-left .border-inputs {
  display: flex;
  gap: 5px;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.accordion-inner-left .border-inputs div {
  display: flex;
  flex-direction: column;
  width: 22%;
}

.accordion-inner-left .border-inputs label {
  font-size: 13px;
  margin-bottom: 5px;
}

.accordion-inner-left .border-inputs input {
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  background-color: #f5f5f5;
  width: 100%;
  box-sizing: border-box;
}

.accordion-inner-left .range input {
  width: 100%;
}


.option-radio {
  display: flex;
  justify-content: space-between;
  width: 100%
}

.accordion-inner-left .radio-type-button {
  display: inline-block;
  vertical-align: top;
  width: auto;
  margin: 10px 10px 5px 0px;
  padding: 0px;
}

.accordion-inner-left .radio-type-button input {
  visibility: hidden;
  position: absolute;
}

.accordion-inner-left .radio-type-button span {
  padding: 0;
  display: block;
}

/* .accordion-inner-left .radio-type-button img {
  display: block;
  opacity: 0.2;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
} */

.accordion-inner-left .radio-type-button:hover img {
  opacity: 0.5;
}

.accordion-inner-left .radio-type-button span.active img {
  opacity: 1;
}

.accordion-inner-left .radio-type-button2 {
  display: inline-block;
  vertical-align: top;
  width: auto;
  margin: 10px 7px 5px 0px;
  padding: 0px;
}

.accordion-inner-left .radio-type-button2 input {
  visibility: hidden;
  position: absolute;
}

.option-none-span-without-img {
  width: 70px !important;
  height: 70px !important;
  margin: 5px;
  line-height: 60px !important;
  border-radius: 0 !important;
  background: #fbfbfb !important;
  color: #666 !important;
}

.accordion-inner-left .radio-type-button2 span {
  background: none;
  height: 33px;
  min-width: 33px;
  display: block;
  text-align: center;
  padding: 5px 10px 6px 10px;
  border: 1px solid #b1b1b1;
  transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
}

.accordion-inner-left .radio-type-button img {
  width: 70px !important;
  height: 70px !important;
}

.accordion-inner-left .radio-type-button2 span:hover {
  color: #000;
}

.accordion-inner-left .radio-type-button2 span.active {
  background: #fb5b04;
  color: #fff;
  border: 1px solid #000;
}

.accordion-inner-left .radio-2 .box-radio {
  width: 65px;
  height: 65px;

}

.accordion-inner-left .radio.active .option-none-span-without-img {
  border: 5px solid #26acff;
}

.accordion-inner-left .radio.active img {
  border: 5px solid #26acff;
}

.back-button {
  text-align: left;
  margin-bottom: 50px;
}

.back-button button {
  font-weight: 600;
}

.back-button button::before {
  display: none !important;
}

.back-button svg {
  margin-right: 8px;
}

/* Product info -> Buttons */


/* Accordion */
.accordion-header-2 {
  background: #262525;
  color: #FFFFFF;
  cursor: pointer;
  padding: 12px 16px;
  width: 100%;
  border: none;
  display: flex;
  justify-content: space-between;
  font-weight: 200;
  font-size: 16px;
  transition: background 0.3s;
}

.accordion-icon-2 svg {
  transition: transform 0.3s ease;
}

.accordion-header-2.active .accordion-icon-2 svg {
  transform: rotate(180deg);
}

.accordion-header-2 .arrow {
  transition: transform 0.3s;
}

.accordion-header-2.active .arrow {
  transform: rotate(90deg);
}

.accordion-content-2 {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-content-2.open {
  padding: 12px 16px;
}

.accordion-content-2 label,
.accordion-content-2 select {
  display: block;
  margin: 8px 0;
}

/* Orta Panel */
.main-image {
  padding: 20px;
  width: 55%;
  min-width: 300px;
  text-align: center;
}

.main-image-2 img {
  width: 100%;
  max-width: 100%;
  height: 500px;
  object-fit: contain;
  aspect-ratio: 1 / 1;
}

.slider-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.sliderNavProduct {
  margin-top: 10px;
  width: 100%;
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.sliderNavProduct .slick-track {
  display: flex !important;
  gap: 10px !important;
  margin-left: 7px;
}

.sliderNavProduct .slick-slide {
  /* width: 20% !important;
  max-width: 20% !important;
  min-width: 20% !important; */
  height: auto !important;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.sliderNavProduct .thumbnail-row-wrapper-2 {
  width: 25% !important;
  /* width: 100%; */
  height: 60px;
  overflow: hidden;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.sliderNavProduct img {
  width: 100% !important;
  height: 80% !important;
  object-fit: cover !important;
  cursor: pointer !important;
}

/* Slick nav arrows styling */
.sliderNavProduct .slick-prev,
.sliderNavProduct .slick-next {

  background: transparent;
  color: #fff !important;
  width: 16px;
  height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sliderNavProduct .slick-prev {
  left: -40px;
}

.sliderNavProduct .slick-next {
  right: -40px;
}

.sliderNavProduct .slick-prev,
.sliderNavProduct .slick-next {
  height: 30px;
  width: 30px;
  font-size: 16px;
  line-height: 1;
  opacity: 1;
  color: #000;
}

.sliderNavProduct .slick-prev:before,
.sliderNavProduct .slick-next:before {
  display: none;
  font-size: 16px;
  line-height: 1;
  opacity: 1;
  color: #000;
}

.size-box {
  padding: 10px;
  background: #eee;
  display: inline-block;
  margin-top: 10px;
}

.highlight {
  color: green;
  font-weight: bold;
}

.add-to-cart-btn {
  background: #FFFFFF;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 0px;
  padding: 16px 13px;
}

.add-to-cart-btn svg {
  margin-right: 5px;
  margin-bottom: 3px;
}

.add-to-cart-btn:hover {
  background: #FFFFFF;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 0px;
  padding: 16px 13px;
}

.btn-sepet {
  background: #FFFFFF;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 0px;
}

.cart-msg {
  margin-top: 10px;
  color: green;
  display: none;
}

/* Sağ Panel */
.details {
  height: 800px;
  width: 30%;
  min-width: 250px;
  background: #fff;
  padding-left: 50px;
  position: relative;
}

.details h3 {
  margin-top: 0;
  color: #333;
}

.details p {
  margin: 0;
  font-size: 15px;
}

.details .highlight {
  font-size: 22px;
  font-weight: bold;
}

.details .size-box {
  padding: 8px 12px;
  background: #f0f0f0;
  display: inline-block;
  margin-top: 5px;
}

.details .button-grup {
  position: absolute;  
  bottom: 20px;
  display: flex;
  gap: 20px;
  width: 100%;
}

.details .button-grup button {
  margin-right: 20px;
}

.baski-boyutu {
  margin-bottom: 60px;
}

.print-area {
  position: relative;
  height: 400px;
}

.print-area .box {
  width: 250px;
  height: 140px;
  background: #e0e0e0;
  position: relative;
}

/* Yatay çizgi */
.print-area .horizontal-line {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #aaa;
}

.horizontal-line::before,
.horizontal-line::after {
  content: '';
  position: absolute;
  top: -6px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
}

.horizontal-line::before {
  left: -7px;
  border-right-color: #aaa;
}

.horizontal-line::after {
  right: -7px;
  border-left-color: #aaa;
}

.horizontal-text {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
  font-size: 14px;
}

/* Dikey çizgi */
.vertical-line {
  position: absolute;
  right: -20px;
  top: 0;
  width: 1px;
  height: 100%;
  background: #aaa;
}

.vertical-line::before,
.vertical-line::after {
  content: '';
  position: absolute;
  left: -6px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
}

.vertical-line::before {
  top: -7px;
  border-bottom-color: #aaa;
}

.vertical-line::after {
  bottom: -7px;
  border-top-color: #aaa;
}

.vertical-text {
  position: absolute;
  right: -45px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-weight: bold;
  font-size: 14px;
}

.details .img-boyut {
  margin-top: 50px;
  border-top: 1px solid #D9D9D9;
}

.details .img-boyut h3 {
  margin-top: 30px;
}

.details .img-boyut img {
  margin-top: 38px;
}

.button-grup button::before {
  display: none !important;
  width: 0;
}

.details .line {
  border: 1px solid #D9D9D9;
  margin-top: auto;
  position: absolute;
  right: 0;
  left: 0;
  top: 88%;
}

/* modal */
.modal-product .cart-table {
  border-bottom: 1px solid #D9D9D9;
}

.modal-product .cart-table tbody tr td {
  padding: 8px;
}

.modal-body .product-card {
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 10px;
}

.modal-body .product-card img {
  max-width: 160px;
  max-height: 110px;
}

.modal-product .modal-header {
  padding: 2rem 2rem;
  border-bottom: none;
}

.modal-product .modal-body {
  padding: 0 30px;
}

.modal-product .modal-body h4 {
  font-size: 26px;
  color: #000000;
  font-weight: 700;
}

.modal-product .modal-body table thead th {
  text-align: left;
  font-size: 11px;
}

.modal-product .modal-body table tbody .product-info h5 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: left;
}

.modal-product .modal-body table tbody .product-info p {
  font-size: 11px;
  font-weight: 300;
  color: #000000;
  text-align: left;
}

.modal-product .modal-body table tbody.product-info-2 {
  color: #000000;
  font-weight: 300;
  font-size: 14px;
}

.modal-product .summary-box {
  background: #1B1A1A;
  padding: 20px;
  color: #FFFFFF;
}

.modal-product .summary-box h4 {
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
}

.modal-product .summary-box .col {
  font-size: 14px;
  line-height: 30px;
}

.modal-product .summary-box .total .text-end {
  font-size: 20px;
  font-weight: bold;
}

.modal-product .modal-footer {
  justify-content: space-evenly;
  border-top: none;
}

.modal-product .modal-footer button {
  width: 46%;
}

/* 
/* baskı detayları son */

/* aydinlatma-metni BAŞLANGIÇ */

.aydinlatma-metni {
  margin-top: 50px;
}

.aydinlatma-metni h4 {
  font-size: 25px;
  font-weight: bold;
  line-height: 30px;
  margin: 50px 0px;
}

.aydinlatma-metni p,
span {
  font-size: 14px;
  line-height: 25px;
}

/* aydinlatma-metni SON */

/* siparis alındı başlangıç */
.siparis-alindi {
  margin-bottom: 150px;
}

.siparis-alindi h4 {
  font-size: 26px;
  font-weight: 600px;
  margin-top: 50px;
}

.siparis-alindi .txt-box {
  display: flex;
  justify-content: left;
  align-items: center;
  color: #2B8B40;
  background: #EDFFF1;
  padding: 25px 25px;
}

.siparis-alindi .txt-box .check {
  margin-right: 20px;
}

.siparis-alindi .txt-box .txt-title {}

.siparis-alindi .txt-box .txt-title h6 {
  color: #2B8B40;
  font-size: 20px;
  font-weight: bold;
  line-height: 20px;
}

.siparis-alindi .txt-box .txt-title p {
  font-size: 14px;
  line-height: 25px;
}

/* siparis alındı son */
/*  adres-fatura başlangıç */

.adres-fatura .txt-box {
  display: flex;
  justify-content: left;
  align-items: center;
  color: #000000;
  padding: 25px 25px;
  border: 1px solid #1E1E1E;
}

.adres-fatura .txt-box .check {
  margin-right: 20px;
  margin-bottom: 12px;
}

.adres-fatura .txt-box .txt-decs a {
  border-bottom: 1px solid #1E1E1E;
  color: #1E1E1E;
  font-weight: bold;
}


.adres-fatura .form-section {
  margin-bottom: 30px;
}

.adres-fatura .form-section h2 {
  font-size: 26px;
  margin: 50px 0;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
  margin-right: 0;
  margin-left: 0;
}

.adres-fatura .form-group {
  flex: 1;
  
}

.form-row label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #555;
}

.adres-fatura .nice-select {
  border: none !important;
  border-bottom: 1px solid #aaa !important;
  border-radius: 0 !important;
  background: transparent !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  line-height: normal !important;
  box-shadow: none !important;
}

.adres-fatura .nice-select::after {
  content: " " !important;
  position: absolute;
  border: none;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.2s ease;
  width: 10px;
  height: 6px;
  background-image: url("../images/services/icons/slect-icon.png") !important;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.adres-fatura .nice-select.open::after {
  transform: translateY(-50%) rotate(180deg);
}

.nice-select .list {
  border-radius: 0px;
  box-shadow: none;
}

.form-row input,
.form-row select,
.form-row textarea {
  border: none !important;
  border-bottom: 1px solid #aaa !important;
  appearance: none !important;
  box-shadow: none
}

.form-row input,
.form-row select,
.form-row textarea { 
  border-bottom: 1px solid #aaa !important;
  width: 100%;
  padding: 8px 4px;
  background: transparent;
  font-size: 14px;
  appearance: none !important;
  box-shadow: none
}

.adres-fatura input:focus,
.adres-fatura select:focus,
.adres-fatura textarea:focus {
  border-bottom: 2px solid #007BFF;
}

/* Select'e özel bir ok yerleştirmek isterseniz: */
.adres-fatura select {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2210%22%20height%3D%227%22%20viewBox%3D%220%200%2010%207%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M1%201L5%205L9%201%22%20stroke%3D%22%23666%22%20stroke-width%3D%222%22/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 10px 7px;
  padding-right: 24px;
}

.adres-fatura textarea {
  resize: vertical;
}

/*  adres-fatura son */


/* siparis-odeme başlangıç */

.siparis-odeme h4,
.adres-fatura h4 {
  font-size: 26px;
  color: #000000;
  font-weight: 600;
  margin: 0;
  padding: 20px 0;  
}

.siparis-odeme h5 {
  font-size: 24px;
  color: #000000;
  font-weight: bold;
}

.siparis-odeme .title-1 {
  margin-bottom: 40px;
  font-size: 20px;
  color: #000000;
  font-weight: bold;
}

.siparis-detay {
  background-color: #F5F5F5;
  border: 1px solid #d1d5db;
  padding: 20px;
  margin-bottom: 30px;
}

.siparis-odeme-1 {
  padding: 20px;
  border: 1px solid #d1d5db;
}

.siparis strong {
  color: #000000;
  font-size: 18px;
  font-weight: 800;

}

.siparis-detay p {
  color: #000000;
  font-size: 16px;

}

.siparis-detay-1 {
  display: flex;
}

.siparis-detay-1 img {
  margin-right: 20px;
  width: 250px;
  margin-bottom: 50px;
}

.siparis-detay .ücret-detay p {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #000000;
}

.kargo-secimi {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 15px;
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 10px;
}

.kargo-secimi .span-wrapper {
  display: flex;
}

.kargo-secimi:last-child {
  border-bottom: none;
}

.kargo-secimi input[type="radio"] {
  margin-right: 6px;
}

.kargo-secimi .secenek,
.odeme-yontemi {
  font-weight: 500;
  min-width: 150px;
  font-size: 15px;
  color: #000000;
  font-weight: 500;
}

.kargo-secimi .aciklama {
  color: #79838E;
  font-size: 12px;
  background: #E9EBED;
  padding: 4px 8px;
  font-weight: 300;
}

.siparis-odeme .form-group {
  margin-bottom: 20px;
}

.siparis-odeme input[type="text"],
.siparis-odeme textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  font-size: 14px;
  transition: border 0.2s ease;
  border: 0;
  padding: 0;
  border-radius: 0;
  height: 55px;
  border-bottom: 2px solid #e9e9e9;
}

.siparis-odeme input[type="radio"] {
  accent-color: #9B5040;
}

.siparis-odemeinput[type="text"]:focus,
.siparis-odeme textarea:focus {
  border-color: #2563eb;
  outline: none;
}

.card-info,
.havale-info {
  padding: 20px;
  border: 1px solid #e5e7eb;
  margin-top: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.hidden {
  display: none;
}

.toplam {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
}

.siparis-odeme button {
  padding: 9px 40px;
  font-size: 15px;
  background-color: #FCD78E;
  color: #A04F3E;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.siparis-odeme button:disabled {
  background-color: #1B1A1A;
  cursor: not-allowed;
  color: #fff;
}

.siparis-odeme button:hover:not(:disabled) {
  background-color: #FCD78E;
  color: #A04F3E;
}

.siparis-odeme input[type="checkbox"] {
  margin-right: 8px;
  accent-color: #9B5040;
}

.siparis-odeme label {
  font-weight: 500;
}

/* Temel stil */
.ozel-checkbox {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  color: #000000;
  cursor: pointer;
  line-height: 1.4;
}

.ozel-checkbox .kutu {
  width: 16px;
  height: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: white;
  position: relative;
  margin: 0;
  flex-shrink: 0;
}

.ozel-checkbox a {
  color: #316CF4;
  border-bottom: 1px solid #316CF4;
  white-space: nowrap;
}

.ozel-checkbox input[type="checkbox"] {
  display: none;
}

.özel-checkbox a {
  color: #007bff;
  text-decoration: underline;
}

/* Görünür kutu */

.ozel-checkbox .kutu {
  width: 16px;
  height: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  position: relative;
  transition: border-color 0.3s ease;
  background-color: white;
  margin: initial;
  margin-right: 8px;
}

/* Check olduğunda kenar ve tik rengi */
.ozel-checkbox input[type="checkbox"]:checked+.kutu {
  border-color: #9B5040;
}

/* Tik işareti */
.ozel-checkbox .kutu::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 0px;
  width: 6px;
  height: 10px;
  border: solid #9B5040;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* Tik işareti aktif */
.ozel-checkbox input[type="checkbox"]:checked+.kutu::after {
  opacity: 1;
}

/* siparis-odeme son */

/* kullanıcı paneli başlangıç */
.kullanici-paneli {
  padding: 60px 0px;
  background: #FAFAFA;
}

.sidebar-menu {
  background-color: #fff;
  min-height: 7%;
  padding-top: 50px;
  padding-left: 24px;
  width: 30%;
  max-height: 580px;
  height: 580px;
  position: relative;
}

.sidebar-menu .nav-link {
  color: #333;
  font-weight: 500;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-menu .nav-link.active,
.sidebar-menu .nav-link:hover {
  background-color: #fef6e0;
  color: #000;
}

.sidebar-menu .cikis-yap {
  position: absolute;
  bottom: 20%;
  left: 16%;
}

.sidebar-menu .cikis-yap {
  color: #374957;
  font-weight: 600;
  font-size: 15px;
}

.sidebar-menu .cikis-yap:hover {
  color: #374957;
}

.sidebar-menu .cikis-yap img {
  margin-right: 7px;
}

#hesap h4 {
  margin-top: 40px;
}

.position-sticky {
  position: relative;
  height: 600px;
}

#hesap button::before {
  display: none;
}

.position-sticky .nav-item.mt-4 {
  bottom: 0px;
  position: absolute;
  color: #000000;
}

.kullanici-paneli .kullanici-paneli-1 {
  display: flex;
  gap: 10px;
}

.menu-content {
  padding: 2rem;
  background: #FFFFFF;
  width: 70%;
}

.menu-content h4 {
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 10px;
}

.menu-content p {
  margin-bottom: 2 0px;
}

.file-thumbnail {
  width: 300px;
  /* istersen ayarla */
}

.image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

.file-actions {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  /* siyah yarı saydam */
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  /* başta tıklanamaz */

}

.image-wrapper:hover .file-actions {
  opacity: 1;
  pointer-events: auto;
  /* hoverda aktif */
}

.file-actions button {
  background: transparent;
  border: none;
  cursor: pointer;
}

.file-actions button:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.file-thumbnail p {
  margin-top: 8px;
  font-size: 14px;
  color: #333;
  /* Burada ekstra pointer-events vs yok, çünkü artık hover sadece image-wrapper üzerinde */
}

/* Siparişlerim */
.content {
  flex: 1;
  padding: 30px;
}

.tabs {
  margin-bottom: 20px;
}

.tabs button {
  margin-right: 10px;
  padding: 8px 15px;
  border: 1px solid #ccc;
  background: white;
  cursor: pointer;
}

.menu-content .tabs .active {
  border: 1px solid #9B5040;
  color: #9B5040;
}

.menu-content table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.menu-content th,
.menu-content td {
  padding: 12px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.menu-content th {
  background-color: #000;
  color: #fff;
}

.badge {
  background-color: #fcecc7;
  color: #c28f2c;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
}

.address-card {
  background: #fff;
  border: 1px solid #ddd;
  max-width: 350px;
  margin-top: 50px;
}

.address-card h5 {
  background: #1E1E1E;
  color: #FFFFFF;
  padding: 20px 20px;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.address-card p:nth-child(1) {
  font-size: 14px;
  color: #010101;
  font-weight: 600;
  margin-bottom: 10px;
}

.address-card p:nth-child(2) {
  font-size: 12px;
  color: #010101;
  font-weight: 400;
}

.address-card .body {
  padding: 10px;
}

.buton-adres-box {
  display: flex;
  justify-content: space-between;
}


.buton-adres-box button::before,
.yeni::before {
  display: none;
}

.modal-adres {
  max-width: 700px;
}

.modal-adres .modal-header {
  border-bottom: none;
  padding-top: 25px;
  padding-right: 30px;

}

.modal-adres .modal-body {
  padding: 2rem;
}

.modal-adres .modal-footer {
  justify-content: space-evenly;
  border-top: none;
}

.modal-adres .modal-footer button {
  width: 45%;
}

.modal-adres .modal-footer button::before {
  display: none;
}

.form-hesap label {
  font-size: 14px;
  font-weight: 400;
  color: #93929A;
}

.form-hesap button {
  font-weight: 400;
  color: #FFFFFF;
  margin-top: 20px;
}

.alert-warning {
  background-color: #FFF6E3;
  border-color: #E2991A;
}

#siparis .content {
  padding: 0px;
}

#dosyalar .file {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

#dosyalar .file-right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

#dosyalar .file-right p {
  margin: auto;
}

.buton-adres-box button::before {
  display: none !important;
}

.buton-adres-box button {
  min-width: 153px;
  font-size: 13px;
}

.sifre-hide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #e9e9e9;
}

.sifre-hide input {
  border-bottom: none;
}

.notification-box {
  border: none;
  border-left: 4px solid #000000;
  padding: 14px 14px 1px 14px;
  margin-bottom: 16px;
  background-color: #fff;
  box-shadow: 0 0 0 1px #e0e0e0;
}

#bildirim .btn-group button::before {
  display: none;
}

#bildirim .btn-group button {
  border: 1px solid #000000;
}

#bildirim .btn-group .btn.active {
  background-color: #FFFFFF;
  color: #9B5040;
  border-color: #9B5040;
}


/*Güncel CSS ler*/

.register-alert{
    display: flex;
    justify-content: left;
    align-items: center;
    color: #000000;
    padding: 25px 25px;
    border: 1px solid #1E1E1E;
    margin: 0 0 30px;
}

.register-alert .txt-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.register-alert .txt-box p{
    margin: 0;
}

.register-alert .txt-box .txt-decs a {
    border-bottom: 1px solid #1E1E1E;
    color: #1E1E1E;
    font-weight: bold;
}

.register-alert .txt-box .txt-decs a:hover{
    color: #5f5f5f;
}

.siparis-odeme .accordion .accordion-button::after,
.adres-fatura .accordion .accordion-button::after{
    display: none;    
}

.siparis-odeme .accordion .accordion-button,
.adres-fatura .accordion .accordion-button{
    justify-content: space-between;
    background: none;
    padding: 0;
    border-bottom: 1px solid #ddd;
}

.siparis-odeme .accordion .accordion-button:focus,
.adres-fatura .accordion .accordion-button:focus{
    box-shadow: none;
}

.siparis-odeme .accordion .accordion-button i,
.adres-fatura .accordion .accordion-button i{
    font-size: 30px;
    transition: 0.3s;
    color: #000;
}

.siparis-odeme .accordion .accordion-button:not(.collapsed) i,
.adres-fatura .accordion .accordion-button:not(.collapsed) i{
    transform: rotate(-180deg);
    transition: 0.3s; 
    display: flex;
}

.siparis-odeme .accordion .accordion-button:hover,
.adres-fatura .accordion .accordion-button:hover{
    background: none;
}

.siparis-odeme-1{
    border-top: none;
}

#collapseShippingAdress .form-section,
#collapseFatura .form-section,
#collapseSirketFatura .form-section{
    margin: 20px 0;
}

.order-area{
    margin: 0 0 80px;
}

.siparis-odeme .accordion .accordion-button, 
.adres-fatura .accordion .accordion-button{
    background: none !important;
    box-shadow: none;
}



.project-panel-2{
    background: #fff;
}

.project-panel-2 {
    position: relative;
    background: white; 
}

.hizmet-cards {
    position: relative;
}

.table-karşılaştırma{
    background-color: #fff;
    position: relative;
    z-index: 1;
    padding: 0 0 150px;
}


.select2-baski .select2-container--default .select2-selection--single{
  height: 50px;  
}


.form-group input::-webkit-outer-spin-button,
.form-group input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; 
}

.form-group input[type=number] {  
  border-radius: 0;
  
}

.blog-detail.blog-grid .heading p,
.tarama-hizmeti .heading p{
    font-size: 16px;
    line-height: 26px;
}

.about-section .playbtn{
    width: 100%; 
    position: absolute; 
    top: 170px; 
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    cursor: pointer;
}

.cerceve .slider.slider-cerceve .slick-arrow.slick-next{
    right: 10%;
}

.cerceve .slider.slider-cerceve .slick-arrow.slick-next:after{
    content: "Sonraki" !important;
}

.cerceve .slider.slider-cerceve .slick-arrow.slick-prev:after{
    content: "Önceki" !important;
}

.sidebar-baski{
    max-width: 496px;
    width: 100%;
}

.services-desc-2 .row.panel:nth-child(2n+2){        
    flex-direction: row-reverse;
}


.white-popup-block {
    background: #fff;
    padding: 40px;
    text-align: left;
    max-width: 885px;
    margin: 40px auto;
    position: relative;
}



#bayi_form textarea.form-control{
    min-height: auto;
}

#bayi_form .nice-select{
  display: none;
}

#bayi_form .form-group input[type=number] {
    border-radius: 0;
    border-bottom: 2px solid #e9e9e9;
    border-top: none;
    border-right: none;
    border-left: none;
    padding: 0;
    font-size: 20px;
}

#bayi_form .btn-area{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}


#bayi_form .btn-area button{
    width: 100%;
    font-weight: 400;
    line-height: 20px;
}

#bayi_form .btn-geri::before,#bayi_form .btn-basvur::before{
    display: none;  
}

#bayi_form .btn-geri{
    background: #fff;
    border: 2px solid #000;
    color: #000;
    transition: 0.2s;
}

#bayi_form .btn-geri:hover::after{
    display: none;
}

#bayi_form .btn-geri:hover{
    background: #000;
    color: #fff;
    transition: 0.2s;
}
#bayi_form .btn-basvur{
   transition: 0.2s;
}
#bayi_form .btn-basvur:hover{
    color: #000;
    background: #FBB732;
    transition: 0.2s;
}

#bayi_form .form-check{
    padding: 0 16px 0;
    margin: 15px 0 40px;
}

#bayi_form .form-check .form-check-label{
    cursor: pointer;
    user-select: none;
    margin: 0 0 0 36px;
}

#bayi_form .select2-container .select2-selection--single{
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 2px solid #e9e9e9;
    border-radius: 0;
    padding: 8px 0 50px;
    margin: 0;
    
}

#bayi_form .select2-container .select2-selection--single .select2-selection__rendered{
    line-height: 28px;   
    padding: 0 0 0px;
    color: rgb(150, 150, 150);
    font-size: 20px;
    
}

#bayi_form .form-check a:hover{
  color: #FCD78E;
}

#bayi_form .btn-basvur:hover::after{
  display: none;
}


#bayi_form .form-check-label{
   font-size: 20px;
   line-height: 26px;
   color: #000;
   font-weight: 400;
}


#bayi_form .form-control{
  font-size: 20px;
}    

#bayi_form .select2-container--default .select2-selection--single .select2-selection__arrow{
  top: 4px;
}

#bayi_form h2, #bayi_form p{
  margin: 0;
}

#bayi_form h2{
  font-size: 26px;
  line-height: 35px;
  color: #000;
  font-weight: 600;
  margin: 0 0 12px;
}

#bayi_form p{
  font-size: 18px;
  line-height: 20px;
  color: #9B9B9B;
}

#bayi_form .head-item{
  margin: 0 0 40px;
}

#bayi_form .mfp-close{
    top: 40px;
    right: 40px;
}

#bayi_form .select2-container--default .select2-selection--single .select2-selection__arrow b{
    height: 10px;
    width: 10px;
    border-style: solid;
    border-color: #979797;
    border-width: 0px 2.5px 2.5px 0px;
    border-radius: 3px;
    transform: rotate(45deg);
    transition: border-width 150ms ease-in-out;
}

#bayi_form .form-check-input[type=checkbox] {
    min-width: 24px;
    width: 24px;
    height: 24px;
    margin: 0;
}
#bayi_form .form-check-input:checked,#bayi_form .form-check-input:focus,#bayi_form .form-check-input:focus-visible{
    box-shadow: none;
}

#bayi_form .form-check-input:checked{
    
    background-color: #FBB732;
    border-color: #FBB732;   
}


/* .iade-degisim .form{
    margin: 80px auto 60px;
}

.iade-degisim label{
    display: block;
}

.iade-degisim .form-control{
    width: 100%;
}

.iade-degisim .form-control.select{
    border-top: none;
    border-left: none;
    border-right: none;
    margin: 0 0 24px;
}
.iade-degisim .form-control.select span{
  line-height: 62px;
}

.iade-degisim .nice-select:after{
    top: 63%;
}

.iade-degisim .form-group.kvkk{
    margin: 0 0 20px 20px;    
}  

.iade-degisim .form{
    padding: 0 24px;
}

.iade-degisim .form .container{
    padding: 0;
}

.iade-degisim form{
    margin: 24px 0 0;
}

.iade-degisim form input{
    height: 40px;
}

.iade-degisim .form-group.kvkk input{
    height: 14px;
}

.iade-degisim .form-check-label{
    user-select: none;
}

.iade-degisim .form-check-input:checked{
    background-color: #A04F3E;
    border-color: #A04F3E;
    
} */
.form-check-input:checked[type=checkbox]{
    color: #fff;
}
/* .iade-degisim .form-check-input:focus{
    box-shadow: none;
} 
.iade-degisim .form-check-input,.iade-degisim .form-check-input:focus{
    border-color: #dee2e6;
} */
.print-btn .btn{
    margin: 0;
    min-width: 120px;

}
.print-btn .btn:not(.btn__link):before{
    display: none;
}

.print-btn .btn i{
    margin: 0 8px 0 0;
    display: inline-flex;
}

.print-btn{
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    position: absolute;
    bottom: 48px;
    left: 0;
}


/* .services .services-desc-2 h5{
    padding: 50px 0 0;
} */
/* kullanıcı paneli son */

/* hizmetler */
/* mobile eklemeler */
@media (min-width: 992px) and (max-width: 1440px) {

  .details .button-grup {
    display: flex;
  }

  .details .button-grup button {
    margin-right: 6px;
    min-width: 150px;

  }
  
}

@media (min-width: 1400px) {

  .container-menu {
    margin-left: 55px;
    margin-right: 63px;
  }

  .slide-item__content {
    margin-left: initial;
  }

  .order-process img {
    max-width: -webkit-fill-available !important;
    height: 629px;
  }

  .order-process buutton {
    margin-left: 100px;
  }

  

}

@media (min-width: 992px) and (max-width: 1500px) {
  .details {
    height: 840px;
  }

  .details .button-grup {
    position: absolute;
    bottom: 20px;
    display: flex !important;
    left: 8px;
    gap: 3px;
  }

  .details .button-grup button {
    margin-right: 0px;
  }

  .slider-container{
    padding: 0 0 0 90px;
  }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {

  .details .button-grup {
    display: block;
  }

  .details .button-grup button {
    min-width: 150px;
    font-size: 14px;
  }

  .details .button-grup {
    position: absolute;
    bottom: 20px;
    display: flex;
    left: 8px;
    gap: 3px;
  }

  .main-image {
    padding: 20px;
    width: 30%;
    min-width: 300px;
    text-align: center;
  }

  .main-image-2 img {
    width: 100%;
    max-width: inherit;
    height: inherit;
    object-fit: contain;
    aspect-ratio: 0;
  }

  .sidebar-baski {
    width: 310px;
  }

  .order-process img {
    max-width: -webkit-fill-available !important;
    height: 629px;
  }

  .footer {
    padding: 0px 50px;
  }

  .order-process {
    margin: 0px 100px;
  }

  .container-menu {
    margin-left: 20px;
    margin-right: 20px;
  }

  .slide-item__content {
    margin-left: 50px;
  }

  /* .container{
    max-width: 1170px;
  } */
}

#mobileMenuBtn {
  display: none;
}

.kullanici-paneli-breadcrumb {
  display: none;
}


@media screen and (max-width: 992px){
    .about-section .playbtn{
        top: 120px;
    }
}


@media screen and (max-width: 860px){
    .services-desc-2 .row.panel{
        margin-bottom: 60px;
    }
    .hizmet-top-section .services-desc{
        margin-bottom: 40px;
    }
    .baski-hesaplama{
        padding: 50px 0;
    }
    .table-karşılaştırma{
        padding: 0 0 80px;
    }
    .baski-hesaplama .row{
        gap: 30px;
    }
    .services-avantaj .item{
        flex: 0 0 50%;
        max-width: 50%;        
    }
    .slider.slider-blog .slick-arrow.slick-next:after{
        left: 24px;
    }
    .slider.slider-blog .slick-arrow.slick-prev:after{
        left: -43px;
    }
}

@media screen and (max-width: 768px) {
  .blog-grid .post-item .post-item__content {
    margin-bottom: 50px;
  }

  .calculate-desc li .img {
    left: 0px;
  }

  .calculate-desc li h6,
  .calculate-desc li p {
    margin-left: 30px;
  }

  .back-button {
    margin: 20px 0 30px 0;
  }

  .button-group-cerceve .button {
    font-size: 13px;
  }

  .slider .slick-arrow:before {
    display: none;
  }

  .coupon-code button {
    max-width: 100px;
  }

  .coupon-code input::placeholder {
    font-size: 12px;
  }

  .sidebar-baski {
    width: 100%;
  }

  .btn-sidebar button {
    width: 100%;
  }


  .team-layout1-top {
    flex-direction: column-reverse;
    align-items: flex-start;
    align-items: inherit !important;
  }

  .team-layout1-top .heading-subtitle {
    width: 100%;
  }

  .team-layout1-top a {
    width: 100%;
    text-align: right;
    margin-bottom: 30px;
    margin-top: 20px;
    font-size: 16px !important;
  }

  .slider.slider-cerceve .slick-arrow {
    top: 95%;
  }

  .slider.slider-cerceve .slick-arrow.slick-prev {
    left: -17%;
  }

  .slider.slider-cerceve .slick-arrow.slick-next {
    right: 24%;
  }

  #siparis table th {
    min-width: 200px;
  }

  #siparis .alert-warning {
    font-size: 13px !important;
  }

  .tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .tabs button {
    padding: 10px;
    flex: 1 1 1 calc(33.33% - 10px);
    /* varsayılan: 3'lü satır */
  }

  /* Son iki buton için alt satıra al ve 2'li yerleştir */
  .tabs button:nth-child(n+4) {
    flex: 1 1 calc(50% - 10px);
  }

  .tabs button:nth-child(1) {
    width: 147px;
  }

  .tabs button:nth-child(2) {
    width: 72px;
  }

  .tabs button:nth-child(3) {
    width: 71px;
  }

  .kullanici-paneli {
    padding: 0px;
  }

  .kullanici-paneli-breadcrumb {
    display: block;
    margin-bottom: 20px;
  }

  .kullanici-paneli-breadcrumb .page-title {
    padding-top: 18px;
    padding-bottom: 0px;
  }

  .file {
    position: relative;
  }

  .file .file-left {
    position: absolute;
    top: 100%;
  }

  #dosyalar .file-right {
    justify-content: space-between;
    width: 100%;
  }

  #adres .d-flex {
    margin-bottom: 20px;
  }

  #dosyalar .file-right p,
  #dosyalar .file-righ svg {
    margin: 0px;
  }

  #hesap button {
    width: 100%;
  }

  #adres button {
    min-width: 150px;
  }

  #adres button::before {
    display: none;
  }

  /* kullanıcı paneli  */
  /* Menü butonu */
  #mobileMenuBtn {
    display: block;
  }

  .menu-content {
    padding: 30px 10px;
    width: 100%;
    margin-bottom: 80px;

  }

  #mobileMenuBtn {
    margin-left: 15px;
    margin-bottom: 15px;
    z-index: 1100;
    background: #FCD78E;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 18px;
    cursor: pointer;
  }

  /* Yan menü */
  .sidebar-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    background: #fff;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1050;
    padding: 20px;
    box-sizing: border-box;
  }

  /* Menü açıkken */
  .sidebar-menu.active {
    transform: translateX(0);
  }

  /* Overlay (arka plan karartma) */
  #overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1040;
  }

  /* Overlay aktifken */
  #overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  /* Menü içeriği örneği */
  .sidebar-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .sidebar-menu ul li {
    margin-bottom: 15px;
  }

  .sidebar-menu ul li a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
  }

  .sidebar-menu ul li a:hover {
    color: #007bff;
  }

  /* Sayfa içerik örneği */
  main {
    padding: 60px 20px;
  }

  /* kullanıcı paneli  */
  .baski-detayi {
    margin-top: -50px;
  }

  .cart-footer-row {
    border: none !important;
  }

  .cart-table tbody tr:nth-child(1) {
    border-top: none !important;
    border-bottom: none !important;
  }

  .cart-table tbody tr:nth-child(1) {
    border-left: none !important;
    border-right: none !important;
  }

  .finetb .table-striped tbody tr:nth-of-type(odd) {
    background-color: transparent;
  }

  .bank-table,
  .bank-table tr,
  .bank-table td {
    display: block;
    width: 100%;
  }

  .bank-table tr {
    border-bottom: none !important;

  }

  .bank-table tr td:nth-child(1) {
    font-size: 16px;
    color: #000000;
    font-weight: 600;
    padding: 13px 0 0 13px;
    width: 100%;
  }

  .bank-table tr td:nth-child(2) {
    color: #474444;
    font-size: 16px;
    padding: 8px 13px;
    font-weight: 400;
  }

  .form-section-bankalar .order-md-1 {
    margin-top: 40px;
  }

  .table-tarama {
    padding: 40px 0 0;
  }

  .bank-table tr td.bg-table {
    background-color: #F3F6F8;
  }

  .form-section-bankalar {
    margin-bottom: 30px;
  }


  .bank-table tr {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
  }

  .bank-table td:first-child {
    font-weight: bold;
    color: #444;
    margin-bottom: 5px;
  }

  .bank-table td:last-child {
    margin-top: 5px;
  }

  .bank-table td {
    padding: 5px 0;
  }

  .siparis-alindi h4 {
    font-size: 20px;
  }

  .siparis-alindi .txt-box {
    display: block;
    text-align: center;
  }

  .siparis-alindi .txt-box .check {
    margin: 20px 0;
  }

  .aydinlatma-metni {
    margin-bottom: 40px;
  }

  .aydinlatma-metni h4 {
    font-size: 18px;
    margin: 20px 0;
  }

  .form-kayit-ol {
    border: none;
    padding: 0px;
  }

  .kayit-ol .kayit-buton button,
  .giris-yap .giris-buton button {
    min-width: 100%;
    height: 50px;
    font-size: 14px;
  }

  .slider .slick-arrow {
    bottom: 20px;
  }

  .widget-social {
    margin: 60px 0px;
  }

  .widget-social .widget-title {
    font-size: 16px;
    margin-bottom: 0px;
  }

  .widget-social .social-icons li {
    margin-right: 0px;
  }

  .blog-grid .post-item {
    margin-bottom: 0px;
  }

  .blog-grid .post-item .post-item__desc {
    margin-bottom: 0;
  }

  .about-section {
    padding: 0px;
  }

  .about-section .heading-title {
    font-size: 20px;
  }

  .about-section .heading-desc {
    font-size: 14px;
  }

  .banner-layout1 .video-mobile {
    display: block;
    margin-bottom: 50px;
  }

  /* .banner-layout1 {
    background-image: none !important;
    margin-right: 0px;
  }

  .banner-layout1 button {
    display: none;
  } */

  .banner-layout1 .banner-panel {
    padding: 0 15px;
  }

  .section-anasayfa-video .heading-subtitle {
    font-size: 16px;
    font-weight: 500;
  }

  .section-anasayfa-video .heading-title {
    font-size: 20px;
    font-weight: 600;
  }

  .section-anasayfa-video .heading-desc {
    font-size: 14px;
    color: #BAB9C0;
    line-height: 25px;
  }

  .section-anasayfa-video .btn__primary {
    margin-bottom: 50px;
    min-width: 100%;
  }

  .team-layout1 .slider .slick-arrow {
    bottom: 10px !important;
  }

  .navbar .nav__item svg {
    left: 100px;
    width: max-content;
  }

  .footer {
    margin-top: 0px;
    padding-top: 0px;
    padding-bottom: 30px;
  }

  .footer ul li {
    margin-bottom: 6px;
  }

  .social-icons a {
    margin-right: 16px;
  }

  .ebulten {
    background: #1b1a1a;
    padding-top: 50px;
  }

  .ebulten .container-70 {
    padding-left: 0px;
    margin-left: 20px;
  }

  .ebulten-decs .ebulten-decs-1 h6 {
    color: #FFFFFF;
  }

  .ebulten-decs .ebulten-decs-1 p {
    color: #FFFFFF;
  }

  .btn-ebulten {
    border-left: 2px solid #FFFFFF;
    ;
  }

  .ebulten .btn-ebulten .web {
    display: none;
  }

  .ebulten .btn-ebulten .mobile {
    display: block;
  }

  .ebulten .ebulten-logo {
    display: none;
  }

  .ebulten .ebulten-decs {
    display: block;
    margin-left: 0px;
  }

  .ebulten .ebulten-form .form-ebulten {
    width: 340px;
    border: 2px solid #FFFFFF;
  }

  .fancybox-item .fancybox-item__more {
    margin-top: 30px;
  }

  .testimonials .d-flex {
    justify-content: flex-start;
  }

  .ebulten .ebulten-form {
    justify-content: start;
  }

  .siparisSurecDiv {
    margin-top: 70px;
  }

  .order-process .siparisSurecDiv h2 {
    font-size: 20px;
  }

  .order-process p {
    font-size: 14px;
  }

  .order-process .order-1 {
    padding: 0px;
  }

  .order-process img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
  }

  .index-team .heading h2 {
    font-size: 20px;
    font-weight: 500;
    width: 80%;
    line-height: 35px;
  }

  .index-team .heading h3 {
    font-size: 17px;
    font-weight: 500;
    margin: inherit;
  }

  .counter-item h4 {
    margin-bottom: 0px;
  }

  .counter-item .counter-item__desc {
    font-size: 16px;
  }

  .counter-item .counter {
    font-size: 28px;
  }

  .counter-item .plus {
    font-size: 26px;
  }

  #grid-wrapper {
    position: relative;
    height: 2910.81px !important;
  }





  .portfolio-masonry-layout3 {
    padding-top: 0px;
  }

  .visionmision {
    margin: 40px 0;
  }

  .visionmision .fancybox-item {
    align-items: flex-start;
    gap: 1rem;
  }

  .visionmision .fancybox-item .fancybox-item__heading {
    min-width: 110px;
    /* Başlığın genişliği sabit */
    flex-shrink: 0;
    /* Küçülmesin */
  }

  .visionmision .fancybox-item .fancybox-item__content {
    flex: 1;
    /* Sağ alanı kaplasın */
  }

  .visionmision .fancybox-item .fancybox-item__desc {
    margin: 0;
    line-height: 1.9;
    height: inherit;
    font-size: 14px;
  }


  .visionmision .fancybox-item__title {
    font-size: 16px !important;
    margin-top: 7px;
  }

  .fancybox-layout2 .fancybox-item .fancybox-item__title:after {
    width: 50px !important;
  }

  .anasayfa.fancybox-layout2 {
    margin-top: 50px;
  }

  .form-info h5,
  ul {
    padding-left: 0px;
    margin-left: 0px;
  }

  .form-info ul li {
    font-size: 12px;
  }

  .bank-table td:first-child {
    width: 100px;
  }

  .bank-table td,
  .iban-copy span {
    font-size: 11px;
  }

  .iban-copy svg {
    width: 15px;
  }

  .bankalar .bank-card {}

  .bank-inf {
    padding: 10px;
    border: none;
  }

  .bankalar h2 {
    font-size: 22px !important;
  }

  .form-content {
    flex-direction: row;
  }

  .bank-card-flex {
    flex-direction: row;
    text-align: left;
    align-items: center;
  }

  .bank-logo {
    margin-right: 30px;
  }

  .bank-info {
    margin-top: 0;
  }

  .main-image {
    width: 100%;
  }

  .main-image img {
    height: 300px;
  }

  .sliderNavProduct .slick-prev {
    left: -20px;
  }

  .sliderNavProduct .slick-next {
    right: -20px;
  }

  .details {
    height: auto;
    width: 100%;
    padding: 20px;
  }

  .details .button-grup {
    position: relative;
    bottom: 0;
    margin-top: 50px;
    border-top: 1px solid #D9D9D9;
    padding-top: 20px;
    width: 100%;
    display: flex !important;
  }

  .print-area {
    height: 300px;
  }

  .details .button-grup button {
    margin-right: 0px;
  }

  .details .button-grup button:first-child {
    width: 45%;
  }

  .option-radio {
    display: contents;
  }

  .modal-product .cart-table .quantity-control {
    justify-content: end;
  }

  .add-to-cart-btn {
    display: none;
  }

  .fancybox-item.item-bayi .fancybox-item__content .fancybox-item__title {
    margin: 0px;
  }

  .siparis-alindi {
    margin-bottom: 70px;
  }

  .siparis-odeme button {
    background: #FCD78E !important;
    width: 100%;
    color: #1B1A1A !important;
    
  }

  .kargo-secimi .aciklama {
    font-size: 11px;
  }

  .kargo-secimi .span-wrapper {
    display: block;
  }

  .kargo-secimi .span-wrapper div {
    margin-top: 10px;
  }

  .siparis-detay {
    background: #F5F5F5;
  }

  .siparis-odeme .title h4 {
    font-size: 18px;
  }

  .siparis-odeme-1 h5 {
    font-size: 18px;
  }

  .siparis-odeme-1 {
    padding: 0px;
    border: none;
  }

  .siparis-detay-1 strong {
    font-size: 14px;
  }

  .siparis-detay-1 p {
    font-size: 12px;
  }

  .siparis-detay-1 img {
    max-width: 129px;
    height: 85px;
  }

  .adres-fatura .txt-box .check {
    width: 50%;
    margin-right: 0px;
    margin-bottom: 0px;
  }

  .aliveris-sepeti.cart-table thead {
    display: none;
  }

  .aliveris-sepeti.cart-table tbody tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    padding: 0.5rem;
  }

  .aliveris-sepeti.cart-table td::before {
    content: attr(data-label);
    font-weight: bold;
    flex: 0 0 40%;
    text-align: left;
  }

  .hero-alisveris-sepeti .cart-buttons button {
    width: 100%;
    margin-bottom: 10px;
  }

  .aliveris-sepeti.cart-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border: none;
    width: 100%;
    color: #000000;
    font-weight: 600;
    font-size: 15px;
  }

  .modal-product .aliveris-sepeti.cart-table td:first-child {
    display: block;
  }

  .modal-product .cart-table {
    border: none;
  }

  .modal-body .product-card {
    flex-direction: row;
    margin-left: 0;
  }

  .modal-body .product-card img {
    margin-right: 10px;
    width: 33%;
  }

  .modal-product .modal-body h4 {
    font-size: 18px;
  }

  .hero-alisveris-sepeti h4 {
    font-size: 20px;
  }

  .quantity-control {
    max-width: 30%;
  }

  .hero-alisveris-sepeti table .product-card-table {
    margin-top: 7px;
  }

  .hero-alisveris-sepeti .aliveris-sepeti.cart-table td:first-child {
    display: block;
  }

  .aliveris-sepeti.cart-table td {
    border-bottom: 1px solid #D9D9D9 !important;
    padding: 15px 0px;
  }

  .aliveris-sepeti.cart-table td:last-child {
    border-bottom: none !important;
  }

  .hero-alisveris-sepeti .cart-buttons {
    display: block;
  }

  .hero-alisveris-sepeti .product-card-table {
    display: flex;
    width: 100% !important;
  }

  .hero-alisveris-sepeti .product-card-table img {
    margin-right: 10px;
    width: 40%;
  }

  .hero-alisveris-sepeti .product-card-table p {
    font-size: 12px;
    line-height: 25px;
  }

  .hero-alisveris-sepeti .product-card-table .product-details {
    width: 60%;
  }


  .stepper {
    display: none;
  }

  .link-group.mobile-d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .link-group.mobile-d a {
    text-align: center;
    padding: 12px;
    border: 1px solid black;
    text-decoration: none;
    font-family: sans-serif;
    font-weight: 500;
  }

  .link-group.mobile-d a:first-child {
    background-color: black;
    color: white;
  }

  .link-group.mobile-d a.full-width {
    grid-column: 1 / 3;
    margin-top: -14px;
    /* iki sütunu kaplasın */
  }

  .services .hello-steps ul {
    display: block;
  }

  .services .hello-steps ul li {
    margin-bottom: 40px;
  }

  .services .hello-steps ul li p {
    font-size: 16px;
  }

  .hero-tarama-hizmeti-form {
    button {
      width: 100%;
    }
  }

  .file-upload-wrapper {
    margin-left: 110px;
  }

  .hero-tarama-hizmeti-2 h4 {
    font-size: 20px;
  }

  .tarama-tb {
    margin-bottom: 50px;
  }

  .text-hero h4 {
    font-size: 18px;
  }

  .faqs .heading-title {
    width: 100%;
  }

  .baski-olustur {
    padding: 0px;
    margin-top: -50px;
  }

  .baski-olustur .stepper {
    flex-direction: column;
    align-items: flex-start;
  }

  .baski-olustur .left-content {
    margin-left: 20px;
    padding: 0px;
    width: 100%;
    position: absolute;
    top: 20px;
  }

  .baski-olustur .left-content h1 {
    font-size: 30px;
  }

  .baski-olustur .left-content ul li {
    font-size: 18px;
  }

  .baski-olustur .line {
    display: none;
  }

  .baski-olustur .step {
    flex-direction: row;
    align-items: center;
    margin-bottom: 10px;
  }

  .baski-olustur .label {
    margin-left: 10px;
    margin-top: 0;
  }

  .baski-olustur .main {
    flex-direction: column;
  }

  .baski-olustur .right {
    max-height: 230px;
  }

  .baski-olustur .dropzone {
    border: none;
    background: transparent;
    padding: 0px 40px;
    height: inherit;
  }

  .baski-olustur .btn-mobile {
    display: block;
    margin-bottom: 20px;
  }

  .baski-olustur .dz-message {
    display: none;
  }

  .baski-olustur .btn-mobile::before {
    display: none;
  }


  .baski-olustur .left {
    background: url('../images/services/baski-olustur/back-mobile.jpg') no-repeat center;
    top: 0px;
    background-size: cover;
  }

  .hero-bayi .row-reverse {
    flex-direction: row-reverse;
  }

  .hero-bayi img {
    max-width: inherit;
  }

  .services .text-block,
  .services .image-block {
    position: static;
    transform: none;
    max-width: 100%;
    text-align: center;
    margin-bottom: 2rem;
  }

  .services .hero {
    margin-left: -15px;
    margin-right: -15px;
  }

  .fineart-back {
    background: url(../images/services/fineart/mobile-top.png);
  }

  .cerceve-back {
    background: url(../images/services/cerceveleme/mobile-bg.png);
  }

  .fotograf-baskısı {
    background: url(../images/services/fotograf/bg-mobile.png);
  }

  .canvas-back {
    background: url(../images/services/canvas/mobile-bg.png);
  }

  .services .hero .text-block .text-block-1 .main-title {
    font-size: 30px;
    width: 64%;
  }

  .hizmet-top-section .services-desc,
  .canvas-hizmeti .services-desc {
    margin-bottom: 50px;
  }

  .services .hero-gallery .member__info {
    margin-top: 0px;
  }

  .hero-gallery .slider a {
    padding: 0px;
  }

  .hello-steps {
    margin-top: 80px;
  }

  .services .hero-gallery h5 {
    font-size: 20px;
  }

  .services-step {
    margin-bottom: 70px;
  }

  .hero-bayi .services-desc h2 {
    font-size: 20px;
    width: 100%;
  }

  .fancybox-layout1 .web-button {
    display: none;
  }

  .fancybox-layout1 .mobile-button {
    display: block;
    min-width: 100%;
  }

  .fancybox-layout1 .mobile-button button {
    min-width: 100%;
    height: 50px;
  }

  .fancybox-item.item-bayi .fancybox-item__content {
    padding: 26px 24px;
  }

  .services .hero .text-block {
    margin-bottom: 10px;
    height: 400px;
    display: block;
    background-size: contain;
    text-align: center;
    background-repeat: no-repeat;
    min-height: 400px;
  }

  .services .hero .text-block {
    position: relative;
  }

  .services .hero .text-block .text-block-1 {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translate(-50%, -50%);
  }

  .slider.slider-blog .slick-arrow {
    bottom: 0px !important;
  }

  .hizmet-top-section .services-desc,
  .services-desc-2 .row {
    margin-bottom: 40px;
  }

  .baski-hesaplama {
    padding: 55px 0;    
  }

  .services .hero .text-block-1 .subheading {
    display: none;
  }

  .hero-tarama-hizmeti-form {
    margin-bottom: 80px;
  }

  .hero-tarama-hizmeti-form h4 {
    font-size: 20px;
  }

  .hero-tarama-hizmeti-2 button {
    min-width: 100%;
    margin-bottom: 40px;
  }

  .services .services-desc,
  .hero-gallery {
    padding: 0px;
  }

  .services .services-desc h5 {
    font-size: 20px;
    margin: 34px 0 14px;
  }
  .services .services-desc{
    margin: 34px 0 0;
  }
  .services .services-desc p {
    font-size: 16px;
  }

  .services .image-block img {
    padding: 1rem;
  }

  .anasayfa .heading-title {
    font-size: 20px;
    margin: 30px 0px;
  }

  .siparisOlustur {
    margin-bottom: 20px;
  }

  .contact-info {
    margin-top: 50px;
  }

  .contact-layout1 .btn {
    min-width: 100%;
    margin-bottom: 50px;
  }




  .contact-layout1 .map img {
    height: 240px;
    margin-bottom: 0;
  }

  .mobile-line {
    margin: 30px 0;
  }

  .contact-box {
    margin: 20px 0;
  }

  .contact-box__content {
    position: absolute;
    left: 0px;
  }

  .contact-info .konum .contact-box__icon {
    left: 0px;
  }

  .contact-info .telefon .contact-box__icon {
    left: 0px;
  }

  .blog-detail h2 {
    font-size: 20px;
  }

  .sidebar {
    margin-top: 50px;
    border-top: 1px solid #A04F3E;
  }

  .slider.slider-blog .slick-arrow.slick-next:after {
    left: 20px
  }

  .slider.slider-blog .slick-arrow.slick-prev:after {
    left: -43px;
  }

  .menu-box {
    flex-direction: column;
    align-items: stretch;
  }

  .menu-items {
    margin: 50px 0;
  }

  .pagination-area {
    margin-bottom: 40px;
  }

  .search-bar {
    width: 100%;
    margin-bottom: 0px;
  }

  .blog-grid .post-item__more {
    margin-bottom: 0px;
  }

  .search-bar input {
    width: 100%;
  }

  .page-title-layout1 .breadcrumb .breadcrumb-item.active {
    display: inline-block;
    max-width: 230px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
    font-size: 14px;
  }

  .adres-fatura p {
    font-size: 13px;
    line-height: 25px;
  }

  .details .line {
    display: none;
  }

  .details p {
    margin-bottom: 15px;
  }

  .details .img-boyut img {
    margin-top: 6px;
  }

  .faqs {
    margin: 50px 0;
  }

  .team-layout1-p {
    color: #000000;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 70px;
  }

  .clients-p {
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
  }

  .order-process {
    margin-bottom: 30px;
  }

  .team-layout1 {
    background-color: transparent;
    padding-bottom: 1px !important;
  }

  .btnSiparisSurec {
    height: 50px;
    min-width: 250px;
    margin-left: 60px;
  }

  .order-process h4 {
    font-size: 21px;
  }

  .order-process .img {
    margin-bottom: 50px;
    padding: 0px;
  }

  .order-process img {
    max-width: -webkit-fill-available;
    padding: 0px;

  }

  .fancybox-item .fancybox-item__desc {
    height: 50px;
  }

  .about-section .order-1 {
    padding: 0px !important;
  }

  .heading-subtitle {
    font-size: 16px;
  }

  .heading-title {
    font-size: 20px;
    line-height: 30px;
  }

  .my-slider {
    margin: 50px 0px;
  }

  .clients .heading-subtitle {
    font-weight: 500;
    font-size: 14px;

  }

  .clients .heading-title {
    font-weight: 500;
    line-height: 27px;
    font-size: 16px;
  }

  .table-responsive.finetb {
    margin-left: 20px;
    margin-right: 20px;
  }


  .table-sevices-2 {
    overflow-x: scroll;
    position: relative;
    border-collapse: collapse;
    text-align: left;
    white-space: nowrap;
    min-width: 1000px;
    width: auto;
    /* Değişiklik burada */
    table-layout: auto;
    /* veya bunu kaldır */
  }

  .table-sevices-2 th,
  .table-sevices-2 td {
    border: 1px solid #ddd;
    padding: 8px 46px;
    white-space: nowrap;
    /* Hücre içinde kelime kırılmasın */
  }

  .services-avantaj {
    margin-top: 30px;
  }

  .services-avantaj h4 {
    font-size: 20px;
    font-weight: 700;
  }

  .services-avantaj .fancybox-item {
    margin-bottom: 70px;
  }

  .Photo-baski {
    background: url(../images/services/fineart/mobile-bg.png);
    background-repeat: no-repeat;
    height: 236px;
    margin: 70px 0px;
    background-size: cover;

  }

  .table-karşılaştırma .services-desc h4 {
    font-size: 20px;
  }

  .table-karşılaştırma .services-desc p {
    font-size: 14px;
  }

  .Photo-baski p {
    display: none;
  }

  .Photo-baski .services-desc {
    height: 220px;
    max-width: 200px;
  }

  .Photo-baski .services-desc h5 {
    font-size: 16px;
    font-weight: 700;
  }

  .Photo-baski .btnSiparisSurec {
    margin-left: 0px;
    height: 36px;
    min-width: 150px;
  }

  .blog-detail.services {
    margin-bottom: 70px;
  }

  .calculate-desc h4 {
    font-size: 19px;
    margin-top: 0px;
    padding-left: 0px;
  }

  .hizmet-top-section {
    padding-top: 0px;
  }
  .register-alert{
    flex-direction: column;
    padding: 15px;
    gap: 0;
  }
  .register-alert .txt-box .check {
    width: 50%;
    margin-right: 0px;
    margin-bottom: 0px;
   }
   .register-alert p {
     font-size: 13px;
     line-height: 25px;
   }
    .siparis-detay{
    border-top: none;
   }
   .siparis-odeme .accordion .accordion-button i, 
   .adres-fatura .accordion .accordion-button i{
    font-size: 20px;
   }
   .slider-container{
    padding: 0 0 0 40px;
  }
  .navbar .navbar-toggler:focus,.navbar .navbar-toggler:focus-visible{
     box-shadow: none;
  }

   .with-dropdown{
     display: block;
     
   }

   .hizmet-cards{
        width: 100%;
        margin-left: 0;
        margin-right: 0;
   }
   .panel{
        margin: 0;
        padding: 0;
   }
   
   .hizmet-cards .desc, .hizmet-cards .image{
        padding: 0;
   }

   .hizmet-cards .desc h5{
        margin: 64px 0 12px;
   }
   
   .hizmet-cards .desc p{
      margin: 0 0 24px;
   }
   .about-section .heading-subtitle{
      margin-top: 40px;
   }
   .cerceve .slider.slider-cerceve .slick-arrow.slick-prev{
        left: -21%;
   }
   .cerceve .slider.slider-cerceve .slick-arrow.slick-next:after{
        left: 62px;
   }
   .cerceve .slider .slick-arrow:after{
        width: 67%;
    }
    .services-step .img img {
        margin: 0 0 0;
    }
    .services-step .img{
        margin: 64px 0 26px 0;
    }
    .member__desc{
        margin: 0;
    }
    .blog-single .post-item .left-p{
        padding: 0 0 0 26px;
        position: static;
    }
    .contact-layout1 .map{ 
        height: auto;
        
    }
    .contact-layout1 .map img{
        margin: 0 0 70px;
    }
    .baski-hesaplama .row{
        flex-direction: column-reverse;
    }
    .services-desc-2 .col-sm-12{
        padding: 0;
    }
    .services-desc-2 .row.panel:nth-child(2n+2) {
        flex-direction: column-reverse;
    }
    .services-avantaj .row, .about-section-2 .row{
        row-gap: 50px;
    }
     .services-avantaj .item, .about-section-2 .item{
        flex: 0 0 50%;
        max-width: 50%;        
    }
    .service-cards .row .item{
        max-width: 100%;
    }
    .hero-hizmetler .img-hizmet{
        width: 100%;
    }
    #bayi_form{
      padding: 20px;
    }
    #bayi_form h2{
      font-size: 18px;
      line-height: 25px;     
    }

    #bayi_form p{
      font-size: 16px;
      line-height: 20px;      
    }

    #bayi_form .head-item{
      margin: 0 0 20px;
    }

    #bayi_form .mfp-close{
        top: 20px;
        right: 20px;
    }

    #bayi_form .form-control,
    #bayi_form .form-group input[type=number],
    #bayi_form .select2-container .select2-selection--single .select2-selection__rendered,
    #bayi_form .form-check .form-check-label{
      font-size: 16px;
    }
    #bayi_form .select2-container .select2-selection--single{
      padding: 10px 0 40px;
    }
    #bayi_form textarea.form-control{
      height: 40px;
      margin: 10px 0 0;
    }
    #bayi_form .form-check{
      margin: 8px 0 20px;
    }
    #bayi_form .select2-container--default .select2-selection--single .select2-selection__arrow{
      top: 16px;
    }
    #bayi_form .form-group{
      margin-bottom: 14px;
    }
    #bayi_form .form-check-input[type=checkbox] {
      min-width: 18px;
      width: 18px;
      height: 18px;      
    }
    #bayi_form .form-check .form-check-label{
      margin: 0 0 0 24px;
      line-height: 20px;
    }

    /* .iade-degisim{
        padding: 0;
    }
    .iade-degisim h2{
        font-size: 34px;
    }
    .iade-degisim .form{
        margin: 60px auto;
    } */
}