@charset "UTF-8";
:root {
  --siyah: #000;
  --kirmizi: #CC3D57;
  --bgkirmizi: #CC3D57;
  --gri: #EFEFEF;
  --beyaz: #fff;
  --kbeyaz: #fff;
}

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: var(--siyah);
  background: #fff;
}

input,
textarea,
select {
  font-family: "Open Sans", sans-serif;
}

select {
  background: #fff;
}

input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.bg {
  background-position: center center !important;
  background-attachment: scroll !important;
  background-size: cover !important;
}

svg {
  width: 1em;
  height: 1em;
  display: block;
}

.tamekran {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.duyuru {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-position: center center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.duyuru a {
  max-width: 530px;
  padding: 15px;
  font-size: 17px;
  font-weight: 700;
}
@media (max-width: 1400px) {
  .duyuru a {
    padding: 10px 15px;
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .duyuru a {
    padding: 9px 15px;
    font-size: 13px;
  }
}

.header {
  width: 100%;
  background: #fff;
  position: relative;
  z-index: 99;
  display: flex;
  align-items: center;
  padding: 0 40px 0 45px;
  box-shadow: 0px 6px 59px -19px rgba(0, 0, 0, 0.23);
  flex-shrink: 0;
  height: 116px;
}
@media (max-width: 1400px) {
  .header {
    padding: 0 20px;
    height: 95px;
  }
}
@media (max-width: 576px) {
  .header {
    padding: 0 10px;
    height: 80px;
  }
}

.logo {
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
.logo a img {
  max-width: 225px;
  max-height: 100px;
  display: block;
  flex-shrink: 0;
}
@media (max-width: 1400px) {
  .logo a img {
    max-width: 180px;
    max-height: 90px;
  }
}
@media (max-width: 576px) {
  .logo a img {
    max-width: 150px;
    max-height: 70px;
  }
}

.mac {
  width: 54px;
  height: 54px;
  border-radius: 100%;
  background: #fff;
  box-shadow: 0px -4px 11px -6px rgba(0, 0, 0, 0.11), 0px 6px 16px -3px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-left: 50px;
  margin-right: 25px;
  flex-shrink: 0;
  cursor: pointer;
  transition: 200ms background;
}
@media (max-width: 1400px) {
  .mac {
    margin-left: 30px;
    margin-right: 20px;
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 576px) {
  .mac {
    margin-left: auto;
  }
}
.mac em {
  width: 22px;
  height: 3px;
  background: var(--siyah);
  margin: 2px 0;
  transition: 100ms background;
}
.mac em:last-child {
  width: 16px;
  margin-right: 6px;
}
.mac:hover {
  background: var(--bgkirmizi);
}
.mac:hover em {
  background: var(--kbeyaz);
}

div.ustmenu {
  flex: 1;
  height: 100%;
}
@media (max-width: 1200px) {
  div.ustmenu {
    display: none;
  }
}
div.ustmenu ul {
  display: flex;
  height: 100%;
}
div.ustmenu ul li {
  position: relative;
  height: 100%;
  margin-right: 24px;
}
div.ustmenu ul li::before {
  content: "";
  width: 0;
  height: 6px;
  background: var(--bgkirmizi);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 300ms width;
  pointer-events: none;
}
div.ustmenu ul li.menu-item-has-children {
  display: flex;
  align-items: center;
}
div.ustmenu ul li.menu-item-has-children::after {
  content: "";
  width: 10px;
  height: 10px;
  transform: rotate(135deg);
  background: #fff;
  position: relative;
  top: -5px;
  margin-left: 10px;
  pointer-events: none;
  box-shadow: 2.5px -2.5px 0 var(--kirmizi);
  flex-shrink: 0;
}
div.ustmenu ul li a {
  height: 100%;
  display: flex;
  align-items: center;
  color: var(--siyah);
  font-weight: 600;
  font-size: 17px;
  text-transform: uppercase;
}
@media (max-width: 1730px) {
  div.ustmenu ul li a {
    font-size: 15px;
  }
}
div.ustmenu ul li ul {
  position: absolute;
  left: 0;
  top: 100%;
  background: var(--bgkirmizi);
  flex-direction: column;
  height: auto;
  padding: 20px 25px 25px;
  border-radius: 0 0 25px 25px;
  box-shadow: 0px 24px 25px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 200ms opacity;
}
div.ustmenu ul li ul li::before {
  display: none;
}
div.ustmenu ul li ul li a {
  color: var(--kbeyaz);
  padding: 7px 0;
  display: flex;
  align-items: center;
}
div.ustmenu ul li ul li a::before {
  content: "";
  width: 0;
  height: 15px;
  background: var(--kbeyaz);
  margin-right: 0;
  transition: 200ms width, 200ms margin-right;
}
div.ustmenu ul li ul li a:hover::before {
  width: 6px;
  margin-right: 11px;
}
div.ustmenu ul li:hover::before {
  width: 100%;
}
div.ustmenu ul li:hover ul {
  opacity: 1;
  pointer-events: all;
}

.smac {
  position: relative;
  display: flex;
  align-items: center;
  height: 53px;
  border: 2px solid var(--gri);
  border-radius: 10px;
  padding: 0 24px 0 28px;
  font-size: 15px;
  font-weight: 700;
  color: var(--siyah);
  cursor: pointer;
  transition: 200ms color;
  white-space: nowrap;
}
@media (max-width: 1400px) {
  .smac {
    height: 45px;
    padding: 0 15px 0 19px;
    font-size: 14px;
  }
}
@media (max-width: 1200px) {
  .smac {
    margin-left: auto;
  }
}
@media (max-width: 576px) {
  .smac {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    padding: 0;
    justify-content: center;
    box-shadow: 0px -4px 11px -6px rgba(0, 0, 0, 0.11), 0px 6px 16px -3px rgba(0, 0, 0, 0.25);
    border: 0;
    margin-left: 0;
  }
}
.smac:hover {
  color: var(--kirmizi);
}
.smac em {
  background: #fff;
  position: absolute;
  left: 21px;
  top: -8px;
  font-size: 12px;
  font-weight: 600;
  font-style: normal;
  color: #A3A3A3;
  padding: 0 7px;
}
@media (max-width: 1400px) {
  .smac em {
    left: 13px;
    font-size: 10px;
  }
}
@media (max-width: 576px) {
  .smac em {
    display: none;
  }
}
.smac svg {
  color: var(--kirmizi);
  font-size: 25px;
  margin-left: 11px;
}
@media (max-width: 1400px) {
  .smac svg {
    font-size: 20px;
    margin-left: 7px;
  }
}
@media (max-width: 576px) {
  .smac svg {
    font-size: 24px;
    margin-left: 0;
    flex-shrink: 0;
  }
}
.smac::before {
  content: "BİZİ TAKİP EDİN";
}
@media (max-width: 576px) {
  .smac::before {
    display: none;
  }
}

.buyukslider {
  flex: 1;
  width: 100%;
  position: relative;
}

.anaslider {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.anaslider .swiper-wrapper {
  height: 100%;
}
.anaslider .swiper-wrapper .swiper-slide {
  height: 100%;
  position: relative;
}
.anaslider .swiper-wrapper .swiper-slide::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: black;
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.44) 0%, rgba(0, 0, 0, 0.05) 100%);
  background: -o-linear-gradient(left, rgba(0, 0, 0, 0.44) 0%, rgba(0, 0, 0, 0.05) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.44) 0%, rgba(0, 0, 0, 0.05) 100%);
}
.anaslider .swiper-wrapper .swiper-slide .container {
  height: 100%;
}
.anaslider .swiper-wrapper .swiper-slide .container .asic {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  align-items: flex-start;
  padding-bottom: 60px;
}
.anaslider .swiper-wrapper .swiper-slide .container .asic .astitle {
  font-size: 56px;
  line-height: 68px;
  max-width: 550px;
  text-shadow: 0px 4px 11px rgba(0, 0, 0, 0.15);
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 39px;
  position: relative;
  top: 50px;
  opacity: 0;
  transition: 500ms top, 500ms opacity;
}
@media (max-width: 1400px) {
  .anaslider .swiper-wrapper .swiper-slide .container .asic .astitle {
    font-size: 40px;
    line-height: 50px;
    max-width: 400px;
    margin-bottom: 30px;
  }
}
@media (max-width: 1200px) {
  .anaslider .swiper-wrapper .swiper-slide .container .asic .astitle {
    font-size: 33px;
    line-height: 40px;
    max-width: 330px;
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .anaslider .swiper-wrapper .swiper-slide .container .asic .astitle {
    font-size: 26px;
    line-height: 34px;
    max-width: 280px;
    margin-bottom: 20px;
  }
}
.anaslider .swiper-wrapper .swiper-slide .container .asic a {
  position: relative;
  top: 50px;
  opacity: 0;
}
.anaslider .swiper-wrapper .swiper-slide.swiper-slide-active .asic .astitle {
  opacity: 1;
  top: 0;
  transition: 1000ms top, 1000ms opacity;
  transition-delay: 0.5s;
}
.anaslider .swiper-wrapper .swiper-slide.swiper-slide-active .asic a {
  opacity: 1;
  top: 0;
  transition: 1000ms top, 1000ms opacity;
  transition-delay: 0.7s;
}
.anaslider .swiper-pagination {
  z-index: 2;
  bottom: 95px;
}
@media (max-width: 1400px) {
  .anaslider .swiper-pagination {
    bottom: 75px;
  }
}

.buton {
  height: 50px;
  border-radius: 25px;
  padding: 0 23px;
  background: var(--bgkirmizi);
  color: var(--kbeyaz);
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
}
@media (max-width: 1400px) {
  .buton {
    height: 45px;
    font-size: 14px;
    padding: 0 18px;
  }
}
.buton svg {
  font-size: 26px;
  margin-left: 4px;
  transition: 200ms margin;
}
@media (max-width: 1400px) {
  .buton svg {
    font-size: 23px;
  }
}
.buton:hover svg {
  margin-left: 10px;
}

.swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  display: inline-block;
  border-radius: 50%;
  background: #fff;
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--kirmizi);
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}

div.tammenu {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  pointer-events: none;
}
div.tammenu.umaktif {
  display: block;
  pointer-events: all;
}
div.tammenu.umaktif div.ustmenualan {
  transform: translateX(0);
}
div.tammenu .tmkapat {
  width: 100%;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  display: none;
}
div.tammenu div.ustmenualan {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  max-width: 490px;
  background: #fff;
  overflow: auto;
  padding: 0;
  transform: translateX(-600px);
  transition: 300ms transform;
  height: 100%;
}
@media (max-width: 1400px) {
  div.tammenu div.ustmenualan {
    max-width: 400px;
  }
}
@media (min-width: 992px) {
  div.tammenu div.ustmenualan::-webkit-scrollbar {
    -webkit-appearance: none;
  }
  div.tammenu div.ustmenualan::-webkit-scrollbar:vertical {
    width: 6px;
  }
  div.tammenu div.ustmenualan::-webkit-scrollbar:horizontal {
    height: 6px;
  }
  div.tammenu div.ustmenualan::-webkit-scrollbar-thumb {
    background-color: var(--kirmizi);
    border-radius: 0;
  }
  div.tammenu div.ustmenualan::-webkit-scrollbar-track {
    border-radius: 0;
    background-color: #fff;
  }
}
div.tammenu div.ustmenualan div.ustmenu {
  padding: 30px;
  height: auto;
  flex: none;
}
@media (max-width: 1400px) {
  div.tammenu div.ustmenualan div.ustmenu {
    padding: 20px;
  }
}
@media (max-width: 1200px) {
  div.tammenu div.ustmenualan div.ustmenu {
    display: block;
  }
}
div.tammenu div.ustmenualan div.ustmenu ul {
  flex-direction: column;
  height: auto;
  width: 100%;
}
div.tammenu div.ustmenualan div.ustmenu ul li {
  height: auto;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  cursor: pointer;
}
div.tammenu div.ustmenualan div.ustmenu ul li.current-menu-item > a {
  color: var(--kirmizi);
  font-weight: 700;
}
div.tammenu div.ustmenualan div.ustmenu ul li.current-menu-item::after {
  transform: rotate(-40deg);
}
div.tammenu div.ustmenualan div.ustmenu ul li::before {
  display: none;
}
div.tammenu div.ustmenualan div.ustmenu ul li a {
  padding: 12px 0;
  font-weight: 700;
}
div.tammenu div.ustmenualan div.ustmenu ul li:hover > a {
  color: var(--kirmizi);
}
div.tammenu div.ustmenualan div.ustmenu ul li ul {
  position: relative;
  opacity: 1;
  pointer-events: all;
  width: 100%;
  background: #fff;
  box-shadow: 0 0 0 #fff;
  padding: 0;
  order: 3;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0;
  height: 0;
  overflow: hidden;
}
@media (max-width: 1400px) {
  div.tammenu div.ustmenualan div.ustmenu ul li ul {
    white-space: normal;
    align-items: flex-start;
  }
}
div.tammenu div.ustmenualan div.ustmenu ul li ul.altaktif {
  padding: 5px 0 10px;
  height: auto;
}
@media (max-width: 1400px) {
  div.tammenu div.ustmenualan div.ustmenu ul li ul.altaktif {
    padding-top: 0;
  }
}
div.tammenu div.ustmenualan div.ustmenu ul li ul li {
  width: 50%;
  cursor: default;
  margin-right: 0;
}
div.tammenu div.ustmenualan div.ustmenu ul li ul li a {
  color: var(--siyah);
  font-size: 15px;
  padding: 6px 0;
  font-weight: 400;
  flex: 1;
}
@media (max-width: 1400px) {
  div.tammenu div.ustmenualan div.ustmenu ul li ul li a {
    font-size: 14px;
  }
}
div.tammenu div.ustmenualan div.ustmenu ul li ul li a::before {
  display: none;
}
div.tammenu div.ustmenualan div.ustmenu ul li ul li:hover a {
  color: var(--kirmizi);
}
div.tammenu div.ustmenualan div.ustmenu ul li.menu-item-has-children::after {
  order: 2;
}

.tmust {
  width: 100%;
  background: var(--gri);
  padding: 0 30px;
  height: 95px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1400px) {
  .tmust {
    height: 60px;
    padding: 0 20px;
  }
}
.tmust img {
  max-width: 147px;
  max-height: 75px;
}
@media (max-width: 1400px) {
  .tmust img {
    max-height: 550px;
    max-width: 110px;
  }
}
.tmust span {
  font-size: 18px;
  font-weight: 700;
  color: var(--siyah);
  letter-spacing: -0.075em;
  cursor: pointer;
}
@media (max-width: 1400px) {
  .tmust span {
    font-size: 15px;
  }
}
.tmust span em {
  font-style: normal;
  color: var(--kirmizi);
}

.tmaltmenu {
  width: 100%;
  padding: 22px 30px;
  border-top: 1px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
}
@media (max-width: 1400px) {
  .tmaltmenu {
    padding: 20px;
  }
}
.tmaltmenu ul {
  display: flex;
  flex-wrap: wrap;
}
.tmaltmenu ul li {
  width: 50%;
}
.tmaltmenu ul li a {
  padding: 6px 0;
  font-size: 14px;
  font-weight: 600;
  color: #6B6B6B;
  display: block;
  text-transform: uppercase;
}
@media (max-width: 1400px) {
  .tmaltmenu ul li a {
    font-size: 13px;
  }
}
.tmaltmenu ul li a:hover {
  color: var(--kirmizi);
}

.ttelefon {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 35px 0;
}
@media (max-width: 1400px) {
  .ttelefon {
    padding: 20px 0;
  }
}
.ttelefon em {
  font-size: 16px;
  font-weight: 700;
  color: var(--kirmizi);
  letter-spacing: -0.05em;
  font-style: normal;
}
.ttelefon a {
  font-size: 36px;
  font-weight: 700;
  color: var(--siyah);
  letter-spacing: -0.05em;
  margin-top: 2px;
}

.tamsosyal {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  pointer-events: none;
}
.tamsosyal.smaktif {
  display: block;
  pointer-events: all;
}
.tamsosyal.smaktif div.smalan {
  transform: translateX(0);
}
.tamsosyal .smkapat {
  width: 100%;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  display: none;
}
.tamsosyal div.smalan {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  max-width: 350px;
  background: #fff;
  overflow: auto;
  padding: 0;
  transform: translateX(450px);
  transition: 300ms transform;
  height: 100%;
  padding: 35px;
  text-align: center;
}
.tamsosyal div.smalan img {
  max-width: 147px;
  max-height: 95px;
  margin-bottom: 45px;
}
.tamsosyal div.smalan .smtitle {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: var(--siyah);
  margin-bottom: 48px;
}
.tamsosyal div.smalan .sosyalmedya {
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .tamsosyal div.smalan::-webkit-scrollbar {
    -webkit-appearance: none;
  }
  .tamsosyal div.smalan::-webkit-scrollbar:vertical {
    width: 6px;
  }
  .tamsosyal div.smalan::-webkit-scrollbar:horizontal {
    height: 6px;
  }
  .tamsosyal div.smalan::-webkit-scrollbar-thumb {
    background-color: var(--kirmizi);
    border-radius: 0;
  }
  .tamsosyal div.smalan::-webkit-scrollbar-track {
    border-radius: 0;
    background-color: #fff;
  }
}

.sosyalmedya {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sosyalmedya a {
  width: calc(50% - 5px);
  height: 100px;
  margin-bottom: 10px;
  border-radius: 15px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
  background: var(--gri);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
.sosyalmedya a svg {
  font-size: 34px;
  color: var(--siyah);
  margin-bottom: 8px;
  display: inline-block;
}
.sosyalmedya a b {
  font-size: 14px;
  font-weight: 700;
  color: var(--siyah);
  text-transform: uppercase;
}
.sosyalmedya a:hover {
  background: #E5E5E5;
}

.smk {
  font-size: 18px;
  font-weight: 700;
  color: var(--siyah);
  letter-spacing: -0.075em;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  padding: 12px 20px;
}
.smk em {
  font-style: normal;
  color: var(--kirmizi);
}

.anatelefon {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
}
.anatelefon .ttalan {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  padding-top: 43px;
}
@media (max-width: 1400px) {
  .anatelefon .ttalan {
    padding-top: 30px;
  }
}
@media (max-width: 576px) {
  .anatelefon .ttalan {
    padding-top: 10px;
  }
}
.anatelefon .ttalan span {
  font-weight: 800;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: -0.05em;
  color: #fff;
  text-shadow: 0px 4px 11px rgba(0, 0, 0, 0.15);
}
@media (max-width: 1400px) {
  .anatelefon .ttalan span {
    font-size: 16px;
    line-height: 23px;
  }
}
@media (max-width: 576px) {
  .anatelefon .ttalan span {
    font-size: 14px;
    line-height: 20px;
  }
}
.anatelefon .ttalan a {
  font-weight: 800;
  font-size: 47px;
  line-height: 64px;
  letter-spacing: -0.05em;
  color: #fff;
  text-shadow: 0px 4px 11px rgba(0, 0, 0, 0.15);
  margin-top: -6px;
}
@media (max-width: 1400px) {
  .anatelefon .ttalan a {
    font-size: 38px;
    line-height: 54px;
  }
}
@media (max-width: 576px) {
  .anatelefon .ttalan a {
    font-size: 28px;
    line-height: 36px;
    font-weight: 700;
  }
}

.alan {
  width: 100%;
  margin-bottom: 60px;
}
@media (max-width: 1400px) {
  .alan {
    margin-bottom: 45px;
  }
}
@media (max-width: 768px) {
  .alan {
    margin-bottom: 30px;
  }
}

.bannerlar {
  margin-top: -57px;
  z-index: 2;
  position: relative;
}
@media (max-width: 1400px) {
  .bannerlar {
    margin-top: -45px;
  }
}

.link {
  width: 100%;
  position: relative;
}
@media (max-width: 768px) {
  .link {
    margin-bottom: 15px;
  }
}
.link img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  display: block;
}

.ksic {
  width: 100%;
  background: var(--gri);
  box-shadow: 0px 9px 14px -8px rgba(0, 0, 0, 0.25);
  border-radius: 85.5px 85.5px 25px 25px;
  position: relative;
  transition: 300ms background;
  margin-bottom: 18px;
}
.ksic .kresim {
  position: relative;
  padding-bottom: 100%;
}
.ksic .kresim img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}
.ksic .ktitle {
  padding: 19px 0 24px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--siyah);
}
@media (max-width: 992px) {
  .ksic .ktitle {
    font-size: 14px;
    padding: 15px 0 20px;
  }
}
.ksic .ktitle a {
  color: var(--siyah);
}
.ksic .ktitle a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.ksic:hover .ktitle {
  color: var(--kirmizi);
}
.ksic:hover .ktitle a {
  color: var(--kirmizi);
}

.kategorislider {
  width: 100%;
  overflow: hidden;
}

.baslik {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 1400px) {
  .baslik {
    margin-bottom: 35px;
  }
}
@media (max-width: 1200px) {
  .baslik {
    margin-bottom: 30px;
  }
}
.baslik .title {
  font-size: 24px;
  font-weight: 600;
  color: var(--siyah);
  flex: 1;
  display: flex;
  align-items: flex-end;
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .baslik .title {
    font-size: 20px;
  }
}
.baslik .title::after {
  content: "";
  width: 100%;
  height: 11px;
  margin-left: 28px;
  background: var(--gri);
  border-radius: 6px;
  margin-bottom: 7px;
}
@media (max-width: 1200px) {
  .baslik .title::after {
    margin-left: 20px;
    margin-bottom: 5px;
  }
}
.baslik a {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--siyah);
  margin-left: 19px;
}
@media (max-width: 1200px) {
  .baslik a {
    margin-left: 15px;
    font-size: 16px;
  }
}
.baslik a:hover {
  color: var(--kirmizi);
}
.baslik a svg {
  font-size: 24px;
  color: var(--kirmizi);
}

.urun {
  width: 100%;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  background: var(--gri);
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
}
.urun .urunresim {
  padding-bottom: 62.5%;
  width: 100%;
  position: relative;
}
.urun .urunresim::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: 300ms opacity;
}
.urun .urunresim img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}
.urun .uic {
  width: 100%;
  display: flex;
  padding: 19px 24px 23px;
}
.urun .uic .utitle {
  font-size: 20px;
  font-weight: 400;
  color: var(--siyah);
  width: 100%;
  height: 54px;
  overflow: hidden;
}
.detay p:empty{
  display: none;
}
@media (max-width: 1400px) {
  .urun .uic .utitle {
    font-size: 16px;
    line-height: 22px;
    height: 44px;
  }
}
.urun .uic .utitle a {
  color: var(--siyah);
}
.urun .uic .utitle a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.urun .uic .ufiyat {
  flex-shrink: 0;
  display: flex;
  position: relative;
  align-items: flex-end;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
}
.urun .uic .ufiyat em {
  position: absolute;
  right: 0;
  top: -30px;
  padding: 0 7px;
  height: 28px;
  border-radius: 5px;
  background: var(--bgkirmizi);
  color: var(--kbeyaz);
  font-style: normal;
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.urun .uic .ufiyat b {
  font-size: 20px;
  font-weight: 600;
  color: var(--kirmizi);
}
@media (max-width: 1400px) {
  .urun .uic .ufiyat b {
    font-size: 18px;
  }
}
.urun .uic .ufiyat del {
  font-size: 16px;
  font-weight: 400;
  color: var(--siyah);
}
@media (max-width: 1400px) {
  .urun .uic .ufiyat del {
    font-size: 14px;
  }
}
.urun:hover .urunresim::before {
  opacity: 1;
}

.efe {
  overflow: hidden;
}
.efe::before {
  content: "";
  width: 200px;
  height: 130%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.41) 48.96%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.41) 48.96%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.41) 48.96%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  left: calc(0% + -200px);
  top: -15%;
  opacity: 0.4;
  transform: rotate(15deg);
  pointer-events: none;
  z-index: 1;
}
.efe:hover::before {
  left: calc(100% + 200px);
  transition: 1000ms left;
}

.urunslider {
  width: calc(100% + 48px);
  margin-left: -24px;
  margin-right: -24px;
  padding: 0 24px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .urunslider {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }
}

.usi {
  width: 63px;
  height: 63px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--bgkirmizi);
  color: var(--kbeyaz);
  position: absolute;
  right: 0;
  top: 47%;
  transform: translateY(-50%);
  z-index: 1;
  border-radius: 100%;
  transition: 300ms transform;
  overflow: hidden;
}
@media (max-width: 1400px) {
  .usi {
    width: 50px;
    height: 50px;
    top: 45%;
  }
}
@media (max-width: 768px) {
  .usi {
    right: 10px;
    top: 38%;
  }
}
.usi::before {
  content: "";
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  left: 0;
  top: 0;
  transition: 300ms width;
  border-radius: 100%;
}
.usi:hover::before {
  width: 100%;
}
.usi svg {
  font-size: 40px;
}
.usi.swiper-button-disabled {
  transform: translateY(-50%) scale(0);
}

.usg {
  width: 63px;
  height: 63px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--bgkirmizi);
  color: var(--kbeyaz);
  position: absolute;
  left: 0;
  top: 47%;
  transform: translateY(-50%) rotate(180deg);
  z-index: 1;
  border-radius: 100%;
  transition: 300ms transform;
  overflow: hidden;
}
@media (max-width: 1400px) {
  .usg {
    width: 50px;
    height: 50px;
    top: 45%;
  }
}
@media (max-width: 768px) {
  .usg {
    left: 10px;
    top: 38%;
  }
}
.usg::before {
  content: "";
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  right: 0;
  top: 0;
  transition: 300ms width;
  border-radius: 100%;
}
.usg:hover::before {
  width: 100%;
}
.usg svg {
  font-size: 40px;
}
.usg.swiper-button-disabled {
  transform: translateY(-50%) rotate(180deg) scale(0);
}

.markaslider {
  width: calc(100% + 48px);
  margin-left: -24px;
  margin-right: -24px;
  padding: 0 24px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1400px) {
  .markaslider {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .markaslider {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }
}

.msi {
  width: 41px;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--bgkirmizi);
  color: var(--kbeyaz);
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  border-radius: 100%;
  transition: 300ms transform;
  overflow: hidden;
}
.msi::before {
  content: "";
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  left: 0;
  top: 0;
  transition: 300ms width;
  border-radius: 100%;
}
.msi:hover::before {
  width: 100%;
}
.msi svg {
  font-size: 28px;
}
.msi.swiper-button-disabled {
  transform: translateY(-50%) scale(0);
}

.msg {
  width: 41px;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--bgkirmizi);
  color: var(--kbeyaz);
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  z-index: 1;
  border-radius: 100%;
  transition: 300ms transform;
  overflow: hidden;
}
.msg::before {
  content: "";
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  right: 0;
  top: 0;
  transition: 300ms width;
  border-radius: 100%;
}
.msg:hover::before {
  width: 100%;
}
.msg svg {
  font-size: 28px;
}
.msg.swiper-button-disabled {
  transform: translateY(-50%) rotate(180deg) scale(0);
}

.marka {
  width: 100%;
  height: 150px;
  border-radius: 15px;
  background: #fff;
  border: 2px solid var(--gri);
  transition: 300ms border;
}
.marka:hover {
  border-color: #D4D4D4;
}
.marka a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.marka a img {
  max-height: 80%;
  max-width: 80%;
  display: block;
}

.hakkimizda {
  padding: 67px 0;
  background: var(--gri);
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .hakkimizda {
    padding: 40px 0;
  }
}

.hakkimizdaic {
  width: 100%;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .hakkimizdaic {
    flex-direction: column;
  }
}

.haksol {
  width: 54%;
  position: relative;
  padding-bottom: 42%;
}
@media (max-width: 768px) {
  .haksol {
    width: 100%;
    padding-bottom: 78%;
  }
}
.haksol .hr1 {
  width: 48%;
  padding-bottom: 66%;
  overflow: hidden;
  border-radius: 103px 29px 29px 29px;
  position: absolute;
  left: 0;
  top: 0;
}
.haksol .hr1 img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.haksol .hr2 {
  width: 49.2977%;
  padding-bottom: 39.886%;
  overflow: hidden;
  border-radius: 29px 96px 29px 29px;
  position: absolute;
  right: 0;
  top: 0;
}
.haksol .hr2 img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.haksol .hr3 {
  width: 62.1659%;
  padding-bottom: 35.4%;
  overflow: hidden;
  box-shadow: -27px 0px 32px -12px rgba(0, 0, 0, 0.25);
  border-radius: 29px 29px 96px 29px;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.haksol .hr3 img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.haksag {
  flex: 1;
  margin-left: 53px;
  padding-top: 50px;
}
@media (max-width: 1200px) {
  .haksag {
    margin-left: 30px;
    padding-top: 20px;
  }
}
@media (max-width: 768px) {
  .haksag {
    margin-left: 0;
    padding-top: 10px;
  }
}
.haksag span {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  color: var(--siyah);
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}
@media (max-width: 1400px) {
  .haksag span {
    font-size: 20px;
  }
}
@media (max-width: 1200px) {
  .haksag span {
    font-size: 18px;
  }
}
.haksag span::before {
  content: "";
  width: 0.25em;
  height: 0.25em;
  border-radius: 100%;
  background: var(--kirmizi);
  margin-right: 0.35em;
  margin-top: 0.37em;
  box-shadow: 0 0.45em 0 var(--kirmizi);
  flex-shrink: 0;
}
.haksag .hatitle {
  font-weight: 700;
  font-size: 46px;
  line-height: 49px;
  letter-spacing: -0.075em;
  color: var(--siyah);
  margin-bottom: 25px;
}
@media (max-width: 1400px) {
  .haksag .hatitle {
    font-size: 37px;
    line-height: 42px;
  }
}
@media (max-width: 1200px) {
  .haksag .hatitle {
    font-size: 30px;
    line-height: 36px;
  }
}
.haksag .hatitle b {
  color: var(--kirmizi);
}
.haksag p {
  font-weight: 400;
  font-size: 17px;
  line-height: 31px;
  letter-spacing: -0.025em;
  color: #545454;
  margin-bottom: 20px;
}
@media (max-width: 1400px) {
  .haksag p {
    font-size: 15px;
    line-height: 27px;
  }
}
@media (max-width: 1200px) {
  .haksag p {
    font-size: 14px;
    line-height: 23px;
  }
}
.haksag a {
  width: 47px;
  height: 47px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bgkirmizi);
  color: var(--kbeyaz);
  overflow: hidden;
  position: relative;
}
.haksag a svg {
  font-size: 29px;
}
.haksag a::before {
  content: "";
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  left: 0;
  top: 0;
  transition: 300ms width;
  border-radius: 100%;
}
.haksag a:hover::before {
  width: 100%;
}

.footer {
  width: 100%;
  padding: 48px 0 53px;
}
@media (max-width: 576px) {
  .footer {
    padding: 35px 0;
  }
}

.footeric {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 33px;
  border-bottom: 4px solid var(--gri);
}
@media (max-width: 992px) {
  .footeric {
    flex-wrap: wrap;
  }
}

.fbilgi {
  width: 430px;
}
@media (max-width: 1400px) {
  .fbilgi {
    width: 400px;
  }
}
@media (max-width: 1200px) {
  .fbilgi {
    width: 330px;
  }
}
@media (max-width: 992px) {
  .fbilgi {
    width: 100%;
    margin-bottom: 20px;
  }
}
.fbilgi img {
  max-width: 184px;
  margin-bottom: 17px;
}
.fbilgi > p {
  font-size: 14px;
  line-height: 25px;
  font-weight: 400;
  color: var(--siyah);
  letter-spacing: -0.025em;
  margin-bottom: 25px;
}

.adres {
  width: 100%;
  background: var(--gri);
  border-radius: 15px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
  position: relative;
  padding: 15px 20px;
}
.adres span {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 7px 0;
}
.adres span svg {
  font-size: 22px;
  flex-shrink: 0;
  color: var(--kirmizi);
}
.adres span p {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: var(--siyah);
  margin-left: 15px;
}
.adres span p a {
  color: var(--siyah);
}
.adres::before {
  content: "";
  border: 15px solid transparent;
  border-bottom: 15px solid var(--gri);
  position: absolute;
  left: 38px;
  top: -30px;
}

@media (max-width: 768px) {
  div.fmenu {
    width: 100%;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--gri);
    padding-bottom: 15px;
  }
}
@media (max-width: 768px) {
  div.fmenu ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  div.fmenu ul li {
    width: 50%;
  }
}
div.fmenu ul li a {
  white-space: nowrap;
  font-size: 15px;
  padding: 8px 0 9px;
  display: block;
  color: var(--siyah);
  font-weight: 600;
  text-transform: uppercase;
}
@media (max-width: 1400px) {
  div.fmenu ul li a {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  div.fmenu ul li a {
    white-space: normal;
  }
}
@media (max-width: 576px) {
  div.fmenu ul li a {
    font-size: 13px;
    padding: 6px 0 7px;
  }
}
div.fmenu ul li a:hover {
  color: var(--kirmizi);
}

.fumenu {
  width: 460px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1400px) {
  .fumenu {
    width: 400px;
  }
}
@media (max-width: 1200px) {
  .fumenu {
    width: 330px;
  }
}
@media (max-width: 992px) {
  .fumenu {
    width: 430px;
  }
}
@media (max-width: 768px) {
  .fumenu {
    width: 100%;
    border-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
}
.fumenu ul {
  display: flex;
  flex-wrap: wrap;
}
.fumenu ul li {
  width: 50%;
}
.fumenu .ttelefon {
  width: 50%;
  margin-left: auto;
  align-items: flex-start;
  margin-top: 25px;
}
@media (max-width: 768px) {
  .fumenu .ttelefon {
    width: 100%;
    margin-top: 15px;
    padding-bottom: 0;
  }
}
@media (max-width: 576px) {
  .fumenu .ttelefon {
    align-items: center;
  }
}

.falt {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-top: 21px;
}
@media (max-width: 576px) {
  .falt {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
.falt p {
  font-size: 14px;
  font-weight: 600;
  color: var(--siyah);
  letter-spacing: -0.025em;
}
@media (max-width: 576px) {
  .falt a {
    margin-top: 10px;
  }
}
.falt a svg {
  width: 29px;
  height: 33px;
}

@media (max-width: 1200px) {
  .populer {
    margin-bottom: 30px;
  }
}

.ustic {
  height: auto !important;
}

.icerikler {
  width: 100%;
  padding: 35px 0 100px;
  border-bottom: 18px solid var(--kirmizi);
}
@media (max-width: 768px) {
  .icerikler {
    padding: 20px 0 50px;
    border-bottom-width: 10px;
  }
}

.band {
  width: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  margin-bottom: 16px;
  overflow: hidden;
}
.band li {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  color: var(--siyah);
}
@media (max-width: 768px) {
  .band li {
    font-size: 12px;
  }
}
.band li::after {
  content: "";
  width: 9px;
  height: 9px;
  transform: rotate(45deg);
  background: #fff;
  position: relative;
  left: -5px;
  margin-left: 10px;
  pointer-events: none;
  box-shadow: 2px -2px 0 var(--kirmizi);
  flex-shrink: 0;
  margin: 0 10px;
}
@media (max-width: 768px) {
  .band li::after {
    margin: 0 5px;
  }
}
.band li:last-child::after {
  display: none;
}
.band li a {
  color: var(--siyah);
}
.band li a:hover {
  color: var(--kirmizi);
}

.ictitle {
  width: 100%;
  font-size: 36px;
  font-weight: 600;
  color: var(--siyah);
  margin-bottom: 43px;
}
@media (max-width: 1200px) {
  .ictitle {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .ictitle {
    font-size: 20px;
    margin-bottom: 15px;
  }
}

.icsolmenu {
  width: 100%;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  background: var(--gri);
}
@media (max-width: 992px) {
  .icsolmenu {
    display: none;
  }
}
.icsolmenu div.ustmenu {
  padding: 30px;
  height: auto;
  flex: none;
}
@media (max-width: 1400px) {
  .icsolmenu div.ustmenu {
    padding: 20px;
  }
}
@media (max-width: 1200px) {
  .icsolmenu div.ustmenu {
    display: block;
  }
}
.icsolmenu div.ustmenu ul {
  flex-direction: column;
  height: auto;
  width: 100%;
}
.icsolmenu div.ustmenu ul li {
  height: auto;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  cursor: pointer;
}
.icsolmenu div.ustmenu ul li.current-menu-item > a {
  color: var(--kirmizi);
  font-weight: 700;
}
.icsolmenu div.ustmenu ul li::before {
  display: none;
}
.icsolmenu div.ustmenu ul li a {
  padding: 12px 0;
  font-weight: 700;
}
.icsolmenu div.ustmenu ul li:hover > a {
  color: var(--kirmizi);
}
.icsolmenu div.ustmenu ul li ul {
  position: relative;
  opacity: 1;
  pointer-events: all;
  width: 100%;
  background: var(--gri);
  box-shadow: 0 0 0 var(--gri);
  padding: 0;
  order: 3;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0;
  height: 0;
  overflow: hidden;
}
@media (max-width: 1400px) {
  .icsolmenu div.ustmenu ul li ul {
    white-space: normal;
    align-items: flex-start;
  }
}
.icsolmenu div.ustmenu ul li ul.altaktif {
  padding: 5px 0 10px;
  height: auto;
}
@media (max-width: 1400px) {
  .icsolmenu div.ustmenu ul li ul.altaktif {
    padding-top: 0;
  }
}
.icsolmenu div.ustmenu ul li ul li {
  width: 100%;
  cursor: default;
  margin-right: 0;
}
.icsolmenu div.ustmenu ul li ul li a {
  color: var(--siyah);
  font-size: 15px;
  padding: 6px 0;
  font-weight: 400;
  flex: 1;
}
@media (max-width: 1400px) {
  .icsolmenu div.ustmenu ul li ul li a {
    font-size: 14px;
  }
}
.icsolmenu div.ustmenu ul li ul li a::before {
  display: none;
}
.icsolmenu div.ustmenu ul li ul li:hover a {
  color: var(--kirmizi);
}
.icsolmenu div.ustmenu ul li.menu-item-has-children::after {
  order: 2;
  background: var(--gri) !important;
}

.icurunlist .urun .uic {
  flex-direction: column;
  padding: 15px 18px 24px;
}
.icurunlist .urun .uic .utitle {
  font-size: 18px;
  line-height: 25px;
  height: 50px;
  max-height: 50px;
}
@media (max-width: 768px) {
  .icurunlist .urun .uic .utitle {
    height: auto;
    max-height: none;
  }
}
.icurunlist .urun .uic .ufiyat {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin-top: 7px;
  flex-wrap: wrap;
}
.icurunlist .urun .uic .ufiyat em {
  position: relative;
  top: 0;
  order: 3;
}
.icurunlist .urun .uic .ufiyat del {
  margin: 0 11px;
}

.sayfalama {
  width: 100%;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .sayfalama {
    margin-top: 30px;
  }
}
.sayfalama div {
  margin: 0 15px;
  position: relative;
}
@media (max-width: 768px) {
  .sayfalama div {
    margin: 0 5px;
  }
}
.sayfalama div a {
  padding: 0 37px;
  height: 42px;
  border-radius: 21px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .sayfalama div a {
    font-size: 14px;
    padding: 0 25px;
    height: 38px;
  }
}
.sayfalama div.onceki a {
  background: var(--gri);
  color: var(--siyah);
}
.sayfalama div.sonraki a {
  background: var(--bgkirmizi);
  color: var(--kbeyaz);
}

.kurumsal {
  width: 100%;
  padding-left: 33px;
}
@media (max-width: 992px) {
  .kurumsal {
    padding-left: 0;
  }
}
.kurumsal h2, .kurumsal h3, .kurumsal h4, .kurumsal h5, .kurumsal h6 {
  position: relative;
  font-weight: 700;
  color: var(--siyah);
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}
@media (max-width: 576px) {
  .kurumsal h2, .kurumsal h3, .kurumsal h4, .kurumsal h5, .kurumsal h6 {
    margin-bottom: 15px;
  }
}
.kurumsal h2::before, .kurumsal h3::before, .kurumsal h4::before, .kurumsal h5::before, .kurumsal h6::before {
  content: "";
  width: 0.25em;
  height: 0.25em;
  border-radius: 100%;
  background: var(--kirmizi);
  margin-right: 0.35em;
  margin-top: 0.37em;
  box-shadow: 0 0.45em 0 var(--kirmizi);
  flex-shrink: 0;
}
.kurumsal img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  display: block;
}
.kurumsal h2 {
  font-size: 30px;
}
@media (max-width: 1400px) {
  .kurumsal h2 {
    font-size: 24px;
  }
}
.kurumsal h3 {
  font-size: 21px;
}
@media (max-width: 1400px) {
  .kurumsal h3 {
    font-size: 18px;
  }
}
.kurumsal h4 {
  font-size: 18px;
}
@media (max-width: 1400px) {
  .kurumsal h4 {
    font-size: 16px;
  }
}
.kurumsal h5, .kurumsal h6 {
  font-size: 16px;
}
@media (max-width: 1400px) {
  .kurumsal h5, .kurumsal h6 {
    font-size: 14px;
  }
}
.kurumsal blockquote {
  padding: 10px 20px;
  border-left: 10px solid var(--kirmizi);
  color: var(--siyah);
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
@media (max-width: 992px) {
  .kurumsal blockquote {
    font-size: 14px;
    border-left-width: 7px;
    padding: 5px 15px;
  }
}
@media (max-width: 576px) {
  .kurumsal blockquote {
    margin-bottom: 15px;
  }
}
.kurumsal p {
  color: var(--siyah);
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: -0.02em;
}
@media (max-width: 992px) {
  .kurumsal p {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .kurumsal p {
    margin-bottom: 15px;
  }
}
.kurumsal b, .kurumsal strong {
  font-weight: 600;
}
.kurumsal a {
  font-weight: 700;
  color: var(--kirmizi);
}
.kurumsal a:hover {
  text-decoration: underline;
}
.kurumsal ul, .kurumsal ol {
  padding-bottom: 8px;
}
.kurumsal ul li, .kurumsal ol li {
  color: var(--siyah);
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 400;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
}
@media (max-width: 576px) {
  .kurumsal ul li, .kurumsal ol li {
    margin-bottom: 15px;
    font-size: 14px;
  }
}
.kurumsal ul li::before, .kurumsal ol li::before {
  content: "";
  width: 11px;
  height: 11px;
  background: var(--kirmizi);
  margin-right: 15px;
}
@media (max-width: 576px) {
  .kurumsal ul li::before, .kurumsal ol li::before {
    margin-right: 10px;
  }
}
.kurumsal ol li::before {
  border-radius: 100%;
}

.iadres {
  width: 100%;
  background: var(--gri);
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  padding: 35px;
  min-height: 100%;
}
@media (max-width: 576px) {
  .iadres {
    padding: 20px;
  }
}
.iadres .fbilgi {
  width: 100%;
}
.iadres .fbilgi .adres {
  background: #fff;
}
.iadres .fbilgi .adres::before {
  border-bottom-color: #fff;
}

.isosyal {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
}
.isosyal .smtitle {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  padding: 40px 0 35px;
  text-align: center;
}

.iform {
  width: 100%;
  background: var(--gri);
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  padding: 25px;
  min-height: 100%;
}
@media (max-width: 1200px) {
  .iform {
    margin-top: 25px;
  }
}
@media (max-width: 576px) {
  .iform {
    padding: 20px;
  }
}
.iform .iftitle {
  font-size: 21px;
  display: flex;
  align-items: flex-start;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--siyah);
}
@media (max-width: 992px) {
  .iform .iftitle {
    font-size: 17px;
  }
}
.iform .iftitle::before {
  content: "";
  width: 0.25em;
  height: 0.25em;
  border-radius: 100%;
  background: var(--kirmizi);
  margin-right: 0.35em;
  margin-top: 0.37em;
  box-shadow: 0 0.45em 0 var(--kirmizi);
  flex-shrink: 0;
}

.ialan {
  position: relative;
  margin-bottom: 1px;
}
.ialan span.wpcf7-not-valid-tip {
  position: absolute;
  right: 0;
  font-size: 11px;
  top: 0;
  color: rgba(255, 0, 0, 0.7);
  font-weight: 700;
  pointer-events: none;
  height: 100%;
  background: rgba(255, 0, 0, 0.15);
  width: 100%;
  border: 2px solid rgba(255, 0, 0, 0.35);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 5px;
  text-transform: uppercase;
}
.ialan span{
  display: block;
}

.itext {
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
  height: 57px;
  padding: 0 19px;
  font-weight: 700;
  font-size: 14px;
  color: var(--siyah);
  border: 0;
  width: 100%;
  line-height: 57px;
}
.itext::placeholder {
  color: var(--siyah);
  opacity: 0.4;
}
.itext:focus::placeholder {
  opacity: 0;
}

.iformalan {
  margin-top: 25px;
}

.iarea {
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
  height: 105px;
  padding: 19px;
  font-weight: 700;
  font-size: 14px;
  color: var(--siyah);
  border: 0;
  width: 100%;
  display: block;
}
.iarea::placeholder {
  color: var(--siyah);
  opacity: 0.4;
}
.iarea:focus::placeholder {
  opacity: 0;
}

.ibuton {
  width: 100%;
  height: 57px;
  background: var(--bgkirmizi);
  position: relative;
  border: 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  color: var(--kbeyaz);
}

.ibutons {
  width: 100%;
  position: relative;
}

.map {
  width: 100%;
  margin-top: 35px;
  border-radius: 15px;
  height: 530px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .map {
    height: 400px;
  }
}
@media (max-width: 576px) {
  .map {
    height: 250px;
  }
}
.map iframe {
  width: 100% !important;
  height: 100% !important;
}

.dslider {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.dsliderthumb {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-top: 15px;
}
@media (max-width: 576px) {
  .dsliderthumb {
    margin-top: 10px;
  }
}

.dsic {
  cursor: pointer;
  position: relative;
  padding-bottom: 62.5%;
}
.dsic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.dstic {
  width: 100%;
  padding-bottom: 10.5%;
  position: relative;
  cursor: pointer;
  max-width: 130px;
}
@media (max-width: 1200px) {
  .dstic {
    padding-bottom: 12.6%;
  }
}
@media (max-width: 576px) {
  .dstic {
    padding-bottom: 15.75%;
  }
}
.dstic img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 15px;
  object-fit: cover;
}
.dstic.swiper-slide-thumb-active::before {
  content: "";
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border: 3px solid var(--kirmizi);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  border-radius: 15px;
}

.zoom {
  position: absolute;
  left: 15px;
  top: 15px;
  pointer-events: none;
  z-index: 2;
}
.zoom img {
  width: 35px;
  display: block;
}
@media (max-width: 576px) {
  .zoom img {
    height: 25px;
  }
}

.dsalani {
  margin-top: 15px;
  width: 100%;
}
@media (max-width: 768px) {
  .dsalani {
    margin-top: 0;
  }
}

.dsi {
  position: absolute;
  padding: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 2;
  opacity: 0.5;
  transition: 300ms opacity;
}
.dsi:hover {
  opacity: 1;
}
.dsi svg {
  font-size: 60px;
  color: #fff;
}
@media (max-width: 576px) {
  .dsi svg {
    font-size: 40px;
  }
}

.dsg {
  position: absolute;
  padding: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  cursor: pointer;
  z-index: 2;
  opacity: 0.5;
  transition: 300ms opacity;
}
.dsg:hover {
  opacity: 1;
}
.dsg svg {
  font-size: 60px;
  color: #fff;
}
@media (max-width: 576px) {
  .dsg svg {
    font-size: 40px;
  }
}

.detay {
  width: 100%;
  padding: 20px 15px;
}
@media (max-width: 992px) {
  .detay {
    padding: 30px 0;
  }
}
@media (max-width: 576px) {
  .detay {
    padding: 20px 0;
  }
}
.detay .kod {
  font-size: 16px;
  font-weight: 700;
  color: var(--kirmizi);
  margin-bottom: 4px;
}
@media (max-width: 1400px) {
  .detay .kod {
    font-size: 14px;
  }
}
.detay .dtitle {
  font-size: 27px;
  font-weight: 600;
  color: var(--siyah);
  margin-bottom: 10px;
}
@media (max-width: 1400px) {
  .detay .dtitle {
    font-size: 24px;
  }
}
.detay p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--siyah);
  margin-bottom: 40px;
}
@media (max-width: 1400px) {
  .detay p {
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 24px;
  }
}
.detay .dfiyat {
  display: flex;
  align-items: center;
  margin-bottom: 43px;
}
@media (max-width: 1400px) {
  .detay .dfiyat {
    margin-bottom: 30px;
  }
}
.detay .dfiyat em {
  padding: 0 9px;
  height: 57px;
  border-radius: 5px;
  background: var(--bgkirmizi);
  font-size: 18px;
  font-weight: 700;
  color: var(--kbeyaz);
  font-style: normal;
  display: flex;
  align-items: center;
}
@media (max-width: 1400px) {
  .detay .dfiyat em {
    font-size: 16px;
    height: 45px;
  }
}
.detay .dfiyat span {
  margin-left: 13px;
  display: flex;
  flex-direction: column;
}
.detay .dfiyat span b {
  font-size: 24px;
  font-weight: 600;
  color: var(--kirmizi);
}
@media (max-width: 1400px) {
  .detay .dfiyat span b {
    font-size: 20px;
    font-weight: 700;
  }
}
.detay .dfiyat span del {
  font-size: 18px;
  font-weight: 400;
  color: var(--siyah);
}
@media (max-width: 1400px) {
  .detay .dfiyat span del {
    font-size: 16px;
  }
}
.detay .baac {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 57px;
  border-radius: 15px;
  background: var(--bgkirmizi);
  color: var(--kbeyaz);
  cursor: pointer;
  position: relative;
  margin-bottom: 45px;
}
@media (max-width: 1400px) {
  .detay .baac {
    height: 45px;
    margin-bottom: 35px;
  }
}
.detay .baac svg {
  font-size: 22px;
  margin-right: 14px;
}
@media (max-width: 1400px) {
  .detay .baac svg {
    font-size: 18px;
  }
}
.detay .baac b {
  font-size: 16px;
  font-weight: 800;
}
@media (max-width: 1400px) {
  .detay .baac b {
    font-size: 14px;
  }
}
.detay .dlist {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.detay .dlist span {
  font-size: 17px;
  font-weight: 700;
  color: var(--siyah);
  letter-spacing: -0.025em;
}
@media (max-width: 1400px) {
  .detay .dlist span {
    font-size: 15px;
  }
}
.detay .dlist ul {
  width: 100%;
  background: var(--gri);
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  padding: 25px 20px 15px;
  position: relative;
  margin-top: 24px;
}
@media (max-width: 1400px) {
  .detay .dlist ul {
    margin-top: 20px;
    padding: 20px 20px 10px;
  }
}
.detay .dlist ul::before {
  content: "";
  border: 15px solid transparent;
  border-bottom: 15px solid var(--gri);
  position: absolute;
  left: 65px;
  top: -30px;
}
@media (max-width: 1400px) {
  .detay .dlist ul::before {
    left: 60px;
    border-width: 10px;
    top: -20px;
  }
}
.detay .dlist ul li {
  font-size: 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}
@media (max-width: 1400px) {
  .detay .dlist ul li {
    font-size: 14px;
    margin-bottom: 8px;
  }
}
.detay .dlist ul li::before {
  content: "L";
  flex-shrink: 0;
  font-size: 24px;
  line-height: 24px;
  color: var(--kirmizi);
  font-weight: 600;
  margin-right: 11px;
  transform: scaleX(-1) rotate(-35deg);
  pointer-events: none;
}

.tabmenu {
  width: 100%;
  margin-top: 60px;
  margin-bottom: 50px;
}
@media (max-width: 1400px) {
  .tabmenu {
    margin-top: 40px;
  }
}
@media (max-width: 992px) {
  .tabmenu {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.tabmenu > ul {
  width: 100%;
  display: flex;
  background: var(--gri);
  border-radius: 34px;
  height: 67px;
  padding: 5px;
  white-space: nowrap;
  overflow: auto;
}
@media (max-width: 1400px) {
  .tabmenu > ul {
    height: 55px;
  }
}
@media (max-width: 576px) {
  .tabmenu > ul {
    padding: 0;
    border-radius: 0;
    background: #fff;
    height: 45px;
  }
  .tabmenu > ul::-webkit-scrollbar {
    display: none;
  }
}
.tabmenu > ul li {
  height: 100%;
  padding: 0 39px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--siyah);
  transition: 300ms color;
  cursor: pointer;
}
@media (max-width: 1400px) {
  .tabmenu > ul li {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .tabmenu > ul li {
    background: var(--gri);
    margin-right: 7px;
  }
}
.tabmenu > ul li:hover {
  color: var(--kirmizi);
}
.tabmenu > ul li.tabaktif {
  background: var(--bgkirmizi);
  color: var(--kbeyaz);
  position: relative;
  pointer-events: none;
}

.tic {
  width: 100%;
  padding: 30px 40px;
  display: none;
}
@media (max-width: 1400px) {
  .tic {
    padding: 30px;
  }
}
@media (max-width: 576px) {
  .tic {
    padding: 20px 10px;
  }
}
.tic.goster {
  display: block;
}
.tic h2, .tic h3, .tic h4, .tic h5, .tic h6 {
  font-weight: 700;
  color: var(--siyah);
  margin-bottom: 20px;
}
@media (max-width: 1400px) {
  .tic h2, .tic h3, .tic h4, .tic h5, .tic h6 {
    margin-bottom: 15px;
  }
}
.tic h2 {
  font-size: 24px;
}
.tic h3 {
  font-size: 18px;
}
.tic h4 {
  font-size: 16px;
}
.tic h5 {
  font-size: 14px;
}
.tic h6 {
  font-size: 12px;
}
.tic p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 28px;
}
@media (max-width: 1400px) {
  .tic p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 15px;
  }
}
.tic a {
  font-weight: 700;
  color: var(--kirmizi);
}
.tic a:hover {
  text-decoration: underline;
}
.tic ul, .tic ol {
  width: 100%;
  margin-bottom: 20px;
}
@media (max-width: 1400px) {
  .tic ul, .tic ol {
    margin-bottom: 15px;
  }
}
.tic ul li, .tic ol li {
  font-size: 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}
@media (max-width: 1400px) {
  .tic ul li, .tic ol li {
    font-size: 14px;
    margin-bottom: 7px;
  }
}
.tic ul li::before, .tic ol li::before {
  content: "L";
  flex-shrink: 0;
  font-size: 24px;
  line-height: 24px;
  color: var(--kirmizi);
  font-weight: 600;
  margin-right: 11px;
  transform: scaleX(-1) rotate(-35deg);
  pointer-events: none;
}

.tambeniara {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.4);
  display: none;
}
.tambeniara .beniara {
  width: 100%;
  max-width: 450px;
  background: #fff;
  border-radius: 15px;
  padding: 30px 35px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .tambeniara .beniara {
    max-width: 90%;
    padding: 20px;
  }
}
.tambeniara .beniara .baust {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
.tambeniara .beniara .baust span {
  font-size: 16px;
  font-weight: 700;
  color: var(--kirmizi);
  letter-spacing: -0.05em;
}
.tambeniara .beniara .baust a {
  font-size: 31px;
  line-height: 42px;
  color: var(--siyah);
  letter-spacing: -0.05em;
  font-weight: 700;
}
.tambeniara .beniara .yada {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #B8B8B8;
  font-size: 14px;
  font-weight: 600;
  margin: 15px 0 24px;
}
.tambeniara .beniara .yada::before {
  content: "";
  width: 69px;
  height: 3px;
  border-radius: 2px;
  background: var(--gri);
  margin-right: 15px;
}
.tambeniara .beniara .yada::after {
  content: "";
  width: 69px;
  height: 3px;
  border-radius: 2px;
  background: var(--gri);
  margin-left: 15px;
}
.tambeniara .beniara .baform {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.tambeniara .beniara .baform h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--siyah);
  text-align: center;
  max-width: 320px;
  margin-bottom: 20px;
}
.tambeniara .beniara .baform .balan {
  width: 100%;
  position: relative;
  margin-bottom: 1px;
}
.tambeniara .beniara .baform .balan span.wpcf7-not-valid-tip {
  position: absolute;
  right: 0;
  font-size: 11px;
  top: 0;
  color: rgba(255, 0, 0, 0.7);
  font-weight: 700;
  pointer-events: none;
  height: 100%;
  background: rgba(255, 0, 0, 0.05);
  width: 100%;
  border: 2px solid rgba(255, 0, 0, 0.35);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 5px;
  text-transform: uppercase;
}
.tambeniara .beniara .baform .balan span{
  display: block;
}

.btext {
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
  height: 57px;
  padding: 0 19px;
  font-weight: 700;
  font-size: 14px;
  color: var(--siyah);
  border: 0;
  width: 100%;
  line-height: 57px;
  background: var(--gri);
}
.btext::placeholder {
  color: var(--siyah);
  opacity: 0.4;
}
.btext:focus::placeholder {
  opacity: 0;
}

.bbuton {
  width: 100%;
  height: 57px;
  background: var(--bgkirmizi);
  position: relative;
  border: 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  color: var(--kbeyaz);
}
.urunyok{
  width: 100%;
  text-align: center;
}
.urunyok p{
  font-size: 15px;
  font-weight: 600;
  color: var(--siyah);
  padding: 15px;
}
.wpcf7 form .wpcf7-response-output {
  margin: 0;
  padding: 10px;
  border: 0 solid #00a0d2; /* Blue */
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450; /* Green */
  color: #46b450;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  border-color: #dc3232; /* Red */
  color: #dc3232;
}

.wpcf7 form.spam .wpcf7-response-output {
  border-color: #f56e28; /* Orange */
  color: #f56e28;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  border-color: #ffb900; /* Yellow */
  color: #ffb900;
}
.wpcf7 .ajax-loader{
  position: absolute;
  right: 0;
  top: 50%;
  margin: 0 10px;
  margin-top: -12px;
}