* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: normal;
  background: #141414;
}

header.main-header.active {
  transition: .3s;
  background: #870110;
  position: fixed !important;
  top: 0;
  padding: 20px 70px 20px 200px;
}

ul,
a {
  text-decoration: none;
  list-style: none;
}

header.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 70px 40px 200px;
  position: fixed;
  width: 100%;
  z-index: 3;
  transition: .3s;
  top: 0;
}

.header-right {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
}

.header-right .header-menu ul {
  display: flex;
  gap: 45px;
  align-items: center;
}

.header-right .header-menu ul li a {
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
  transition: .4s;
}

.header-right .header-menu ul li a.active {
  font-weight: 800;
}

.header-right .header-menu ul li a:hover {
  transition: .4s;
  font-weight: 800;
}

.homeBanner {
  position: relative;
}

.banner-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}

.bannerContainer.container {
  display: flex;
  align-items: center;
  height: 100vh;
}

.banner-left h4 {
  font-size: 37px;
  color: #D10000;
  font-style: italic;
  font-weight: 200;
  margin-bottom: 10px;
}

.banner-left h1 {
  font-size: 65px;
  color: #fff;
  margin-bottom: 10px;
}

.banner-left p {
  font-size: 17px;
  font-weight: 200;
  color: #fff;
  margin-bottom: 100px;
  width: 50%;
}

.banner-left a {
  padding: 16px 22px;
  font-size: 20px;
  color: #870110;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
  transition: .4s;
}

.banner-left a:hover {
  transition: .4s;
  background: #870110;
  border: 1px solid #870110;
  color: #fff;
}

.banner-right {
  position: absolute;
  right: 9%;
  top: 17%;
  animation: donme 20s linear infinite;
  z-index: 1;
}

.banner-right img {
  width: 100%;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #870110;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader img {
  width: 50%;
  position: absolute;
  z-index: 6;
  animation: donme2 20s linear infinite;
}

@keyframes donme2 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes donme {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.product-card {
  background: #870110;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  padding-bottom: 44px;
  padding-left: 22px;
  padding-right: 22px;
  transition: 0.4s ease;
  color: #000
}

.product-card:hover {
  transition: .4s;
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  background: #870110;
}

.product-card img {
  max-width: 250px;
  margin-top: -53px;
  width: 100%;
}

.urunlerContainer {
  position: relative;
  margin-top: 60px;
}

/* .urunlerContainer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(169 0 19 / 77%), rgb(20 20 20)), repeating-linear-gradient(45deg, rgb(255 255 255 / 23%) 0, rgb(255 255 255 / 0%) 2px, transparent 2px, transparent 20px);
  z-index: -1;
} */

.urunler-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 33%;
  opacity: 0;
}

.urunlerContainer .container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 230px;
  gap: 150px;
}

.urunler-top {
  display: flex;
  flex-direction: column;
  align-items: end;
  margin-bottom: 50px;
}

.urunler-top h3 {
  font-size: 52px;
  color: #fff;
  font-weight: 300;
  width: 50%;
  text-align: end;
}

.urunler-top h3 strong {
  font-weight: 800;
}

.urunler-top p {
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  margin-top: 25px;
  width: 45%;
  text-align: end;
}

.urunler-bg img {
  width: 100%;
}

.swiper.urunSwiper.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
  padding: 85px 25px;
}

.product-card p.title {
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  font-weight: 600;
  transition: .3s;
}

.product-card p.detail {
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
}

.product-card:hover p.title {
  transition: .3s;
  color: #fff;
}

.product-card:hover p.detail {
  transition: .3s;
  color: #fff;
}

.urunler-bottom {
  padding: 0 65px;
  position: relative;
}

.contact-container {
  display: flex;
}

.contact-left {
  flex: 1;
  width: 100%;
}

.contact-right {
  flex: 1;
  width: 100%;
  padding: 100px 85px 0;
  background: #212121;
}

header.main-header.relative {
  position: relative;
}

.contact-left .top {
  padding: 50px 150px 80px 150px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.breadcramp ul {
  display: flex;
  gap: 10px;
}

.breadcramp ul li {
  color: rgba(250, 250, 250, .6);
}

.breadcramp ul li a {
  color: rgba(250, 250, 250, .6);
  font-size: 18px;
  transition: .4s;
}

.breadcramp ul li a.active {
  color: #fff;
}

.breadcramp ul li a:hover {
  transition: .4s;
  color: #fff;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info h3 {
  color: #fff;
  font-size: 25px;
  font-weight: 600;
}

.contact-info h4 {
  color: #fff;
  font-size: 25px;
  font-weight: 400;
}

.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info ul li a {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 20px;
  color: #fff;
  width: 78%;
}

.contact-left .bottom iframe {
  width: 100% !important;
  filter: grayscale(100%);
  height: 100% !important;
}

.contact-left .bottom {
  height: 300px;
}

.contact-right h1 {
  color: #fff;
  margin-bottom: 70px;
  font-size: 55px;
}

.contact-right form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.group-input {
  display: flex;
  gap: 20px;
}

.input-container input {
  width: 100%;
  height: 50px;
  padding: 20px;
  font-size: 18px;
  outline: none;
  background: #3B3B3B;
  border: none;
  color: #fff;
  transition: .3s;
}

.input-container {
  width: 100%;
}

.input-container input:focus {
  transition: .3s;
  background: #fff;
  color: #3B3B3B;
}

.input-container textarea {
  width: 100%;
  height: 180px;
  padding: 20px;
  font-size: 18px;
  outline: none;
  background: #3B3B3B;
  border: none;
  color: #fff;
  transition: .3s;
  resize: none;
}

.input-container textarea::placeholder{
  font-family: 'Montserrat', sans-serif;
}

.input-container textarea:focus {
  transition: .3s;
  background: #fff;
  color: #3B3B3B;
}

.kvkk-container {
  display: flex;
  margin: 22px 0;
  gap: 20px;
  align-items: center;
}

.kvkk-input {
  position: relative;
}

.kvkk-input input#kvkk {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}

.kvkk-input label {
  width: 38px;
  height: 38px;
  background: #fff;
  display: flex;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
}

.kvkk-container p {
  display: flex;
  gap: 10px;
  color: #fff;
}

.kvkk-container p a {
  color: #fff;
  transition: .4s;
}

.kvkk-container p a:hover {
  transition: .4s;
  color: #870110;
}

.kvkk-input label span {
  width: 20px;
  height: 20px;
  display: flex;
  background: #870110;
  border-radius: 100%;
  transform: scale(0);
  transition: .3s;
}

.kvkk-input label.active span {
  transition: .3s;
  transform: scale(1);
}

.kvkk-input input#kvkk:checked~label span {
  transition: .3s;
  transform: scale(1);
}

.contact-right button {
  background: #fff;
  display: flex;
  width: 215px;
  justify-content: space-between;
  align-items: center;
  outline: none;
  border: 1px solid #fff;
  border-radius: 35px;
  position: relative;
  height: 60px;
  font-size: 20px;
  font-weight: 600;
  padding-left: 65px;
  padding-right: 10px;
  cursor: pointer;
  transition: .3s;
}

.contact-right button span {
  display: flex;
  width: 38px;
  height: 38px;
  justify-content: center;
  align-items: center;
  background: #870110;
  border-radius: 100%;
}

.contact-right button:hover {
  transition: .3s;
  background: #870110;
  color: #fff;
  border: 1px solid #870110;
}

.bayilik-top {
  margin-top: 65px;
  display: flex;
  gap: 45px;
  margin-bottom: 100px;
}

.bayilik-left h1 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 15px;
}

.bayilik-left h1::after {
  width: 51%;
  height: 10px;
  display: flex;
  content: "";
  background: #870110;
  margin-top: 5px;
}

.bayilik-left p {
  font-size: 20px;
  color: #fff;
  margin-bottom: 60px;
}

ul.bayilik-ul li {
  display: flex;
  align-items: center;
  gap: 20px;
}

ul.bayilik-ul li p {
  margin: 0;
}

ul.bayilik-ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bayilik-right {
  display: flex;
  flex-direction: column;
  gap: 35px;
  flex: 1;
  width: 100%;
}

.bayilik-info {
  padding: 25px;
  background: #212121;
  border-radius: 12px;
  position: relative;
}

.bayilik-info .title {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 25px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 20px;
}

.bayilik-info .info {
  font-size: 23px;
  color: #fff;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

.underline-segment {
  position: absolute;
  height: 8px;
  background-color: #870110;
  width: 89% !important;
  z-index: 1;
}

.underline-segment:last-child {
  width: 50% !important;
}

.bayilik-right img {
  max-width: 730px;
  width: 100%;
  height: auto;
}

.bayilik-left {
  flex: 1;
  width: 100%;
}

.big-title {
  display: flex;
  margin-bottom: 20px;
}

.big-title h3 {
  display: flex;
  font-size: 44px;
  background: #870110;
  width: 70%;
  justify-content: center;
  align-items: center;
  padding: 11px 0;
  color: #fff;
}

.big-title p {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  font-size: 30px;
  font-weight: 200;
  color: #870110;
}

.bayilik-items .row {
  gap: 21px 0;
}

.bayilik-items .item {
  background: #212121;
  padding: 20px 25px;
  display: flex;
  gap: 20px;
  align-items: center;
  color: #fff;
  font-size: 22px;
  border-radius: 13px;
}

.bayilik-container.container {
  margin-bottom: 100px;
}

.contact-right.bayilk-form {
  padding: 100px 0;
}

.about-us-banner {
  height: 450px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-left: 200px;
  padding-bottom: 20px;
}

.about-us-banner::after {
  content: "";
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(33, 33, 33, .6);
  z-index: 1;
}

.about-us-container .items {
  display: flex;
  margin-top: -100px;
  position: relative;
  gap: 25px;
  margin-bottom: 50px;
  z-index: 2;
}

.about-us-container .items .item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 25px 0;
  position: relative;
  transition: .3s;
  width: 100%;
}

.about-us-container .items .item h4 {
  font-size: 20px;
  transition: .3s;
  position: relative;
  z-index: 1;
}

.about-us-container .items .item p {
  width: 65%;
  text-align: center;
  transition: .3s;
  position: relative;
  z-index: 1;
}

.about-us-container .items .item::after {
  content: "";
  height: 8px;
  bottom: 0;
  position: absolute;
  background: #750208;
  width: 100%;
  transition: .3s;
}

.about-us-container .items .item:hover::after,
.about-us-container .items .item.active::after {
  height: 100%;
}

.about-us-container .items .item span {
  position: relative;
  z-index: 1;
}

.about-us-container .items .item:hover h4,
.about-us-container .items .item.active h4 {
  transition: .3s;
  color: #fff;
}

.about-us-container .items .item:hover p,
.about-us-container .items .item.active p {
  transition: .3s;
  color: #fff;
}

.about-us-info {
  margin-bottom: 100px;
  display: flex;
  gap: 100px;
}

.about-us-info h4 {
  margin-bottom: 25px;
  font-size: 25px;
  color: #fff;
}

.about-us-info p {
  color: #ddd;
}

.about-us-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-us-bottom span {
  margin-bottom: 65px;
}

.about-us-bottom p {
  color: #fff;
  width: 63%;
  text-align: center;
  font-size: 18px;
  margin-bottom: 65px;
}

.fancy {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 33px;
}

.fancy a {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fancy a img {
  width: 100%;
  height: 100%;
}

.fancy-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 33px;
}

.fancy-2 a {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fancy-2 a img {
  width: 100%;
  height: 100%;
}

.banner-medium {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 33px;
}

.banner-medium a {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-medium a img {
  width: 100%;
  height: 100%;
}

.main-blog {
  height: 100vh;
  position: relative;
  margin-bottom: 150px;
}

.main-blog img {
  width: 100%;
  height: 100%;
}

.main-blog a {
  position: absolute;
  left: 200px;
  bottom: 70px;
}

.main-blog a .blog-link {

  display: flex;

  flex-direction: column;

  gap: 20px;

  font-size: 45px;

  color: #fff;

  width: 60%;

  font-weight: 700;

  transition: .3s;

  position: relative;

  padding: 20px 0;
}

.main-blog a .blog-link span {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 17px;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.main-blog a .blog-link::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 9px;
  background: #870110;
  left: -45px;
  transition: .5s;
  top: 0;
  bottom: 0;
}

.main-blog a:hover .blog-link::before {
  transition: .5s;
  width: 100%;
}

.main-blog a .blog-link h3 {
  position: relative;
  z-index: 1;
}

.blog-conatiner .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px 40px;
}

.blog-item img {
  width: 100%;
  /* max-height: 315px; */
  height: 100%;
  border-radius: 15px;
  margin-bottom: 30px;
}

.blog-item a .blog-item-detail {
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.blog-item-detail h3 {
  font-size: 26px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.blog-item-detail p {
  font-size: 17px;
  color: #fff;
  font-weight: 200;
  position: relative;
  z-index: 1;
}

.blog-item-detail span {
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  position: relative;
  z-index: 1;
}

.blog-item a .blog-item-detail::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  width: 9px;
  background: #870110;
  left: 0;
  transition: .4s;
}

.blog-item a:hover .blog-item-detail::before {
  transition: .4s;
  width: 100%;
}

.blog-item a {
  width: 100%;
  display: flex;
  flex-direction: column;
}

footer {
  /* display: none; */
}

.blog-deatil {
  display: flex;
  gap: 50px;
}

.blog-deatil h2{
  color: #fff;
  margin: 5px 0;
}

.blog-deatil h3{
  color: #fff;
  margin: 5px 0;
}

.blog-deatil .left {
  flex: 2;
  width: 100%;
}

.blog-deatil .right {
  flex: 1;
  width: 100%;
}

.blog-deatil .left h4 {
  font-size: 25px;
  color: #fff;
  margin-bottom: 45px;
}

.blog-deatil .left .custom-p {
  padding-left: 35px;
  position: relative;
}

.blog-deatil .left p {
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
}

.blog-deatil .left .custom-p::before {
  content: "";
  width: 9px;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  background: #870110;
  display: flex;
  position: absolute;
}

.recent-blog {
  background: #2A2A2A;
  padding: 20px 30px;
  border-radius: 20px;
}

.recent-blog h5 {
  font-size: 25px;
  margin-bottom: 35px;
  color: #fff;
  font-weight: 300;
}

.recent-item a .blog-item-detail h3 {
  font-size: 18px;
  font-weight: 400;
  transition: .3s;
}

.blog-item.recent-item a .blog-item-detail {
  gap: 11px;
}

.recent-item a .blog-item-detail span {
  font-size: 15px;
  transition: .3s;
}

.blog-item.recent-item a .blog-item-detail::before {
  background: #fff;
}

.blog-item.recent-item img {
  margin-bottom: 18px;
}

.recent-item a:hover .blog-item-detail h3 {
  transition: .3s;
  color: #870110;
}

.recent-item a:hover .blog-item-detail span {
  transition: .3s;
  color: #870110;
}

.recent-item a .blog-item-detail span svg * {
  transition: .3s;
}

.recent-item a:hover .blog-item-detail span svg * {
  transition: .3s;
  fill: #870110;
}

.recent-itemss {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.concept-container.container {
  margin-top: 120px;
}

.concept-container.container h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  font-size: 52px;
  color: #fff;
}

.concept-container.container p {
  color: #fff;
  margin-bottom: 77px;
  width: 50%;
  display: flex;
  justify-self: center;
  text-align: center;
}

.concept-container.container .buttom {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.concept-container.container .buttom2 {
  margin-top: -100px;
}

@media screen and (max-width:767px) {
  .concept-container.container .buttom2 {
    margin-top: 0px;
  }
  .banner-medium{
    flex-direction: column;
  }
  .banner-medium a{
        width: 100% !important;
  }
}

.not-found {
  width: 100vw;
  height: 100vh;
  position: relative;
}

.not-found img {
  width: 100%;
  height: 100%;
  display: flex;
}

.not-found .info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #fff;
  align-items: center;
  width: 100%;
}

.not-found .info a {
  color: #fff;
  font-size: 37px;
  text-decoration: underline;
  font-family: "Oooh Baby", cursive;
}

.not-found .info h2 {
  font-size: 22px;
}

.not-found .info h1 {
  font-size: 32px;
}

.about-us-banner h2 {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 64px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.about-us-banner .breadcramp {
  position: relative;
  z-index: 7;
}

.product-container.container {
  margin-top: 150px;
  margin-bottom: 150px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.bayi-banner {
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 100px;
}

.bayi-banner .bayi-info h1 {
  font-size: 47px;
  color: #FFF;
  margin-bottom: 35px;
}

.bayi-banner .bayi-info {
  position: relative;
}

.bayi-banner .bayi-info p.custom {
  position: absolute;
  top: 12%;
  font-family: "Oooh Baby", cursive;
  color: #fff;
  font-size: 67px;
  width: max-content;
  left: 26%;
  transform: rotate(-8deg);
  -webkit-text-stroke: 0.4px #870110;;
}

.bayi-banner .bayi-info p {
  font-size: 23px;
  font-weight: 200;
  color: #fff;
  margin-bottom: 40px;
}

.bayi-banner .bayi-info a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 310px;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  background: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid #fff;
  transition: .4s;
}

.bayi-banner .bayi-info a span {
  background: #870110;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  transition: .3s;
}

.bayi-banner .bayi-info a:hover {
  transition: .3s;
  background: #870110;
  color: #fff;
}

.bayi-banner .bayi-info a:hover span {
  transition: .3s;
  background: #fff;
}

.bayi-banner .bayi-info a span svg * {
  transition: .3s;
}

.bayi-banner .bayi-info a:hover span svg * {
  transition: .3s;
  fill: #870110;
  stroke: #870110;
}

img.bayi-kucuk {
  transform: translateY(-94px);
}

.product-detail.container {
  margin-top: 180px;
  display: flex;
  gap: 110px;
  align-items: center;
}

.product-detail.container h1 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 35px;
}

.product-detail.container p {
  color: #fff;
  font-size: 18px;
  margin-bottom: 35px;
}

a.custom-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: max-content;
  gap: 80px;
  padding: 15px;
  background: #fff;
  border-radius: 35px;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  transition: .3s;
}

a.custom-btn span {
  width: 38px;
  height: 38px;
  background: #870110;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  transition: .3s;
}

a.custom-btn:hover {
  transition: .3s;
  background: #870110;
  color: #fff;
}

a.custom-btn:hover span {
  transition: .3s;
  background: #fff;
}

a.custom-btn span svg * {
  transition: .3s;
}

a.custom-btn:hover span svg * {
  transition: .3s;
  fill: #870110;
  stroke: #870110;
}

.product-detail.container .left {
  flex: 1;
  width: 100%;
}

.product-detail.container .right {
  flex: 1;
  width: 100%;
}

.product-detail.container .right img {
  width: 100%;
}

.blog-home-container.container {
  display: flex;
  gap: 45px;
  align-items: center;
  justify-content: space-evenly;
  margin-top: 100px;
}

.blog-inf h3 {
  font-size: 25px;
  color: #fff;
  margin-bottom: 20px;
}

.blog-inf p {
  font-size: 18px;
  color: #fff;
  margin-bottom: 80px;
}

.home ul.items {
  margin-top: 100px !important;
}

.bayi-banner.home {
  margin-top: 216px;
}

.footer-main {
  margin-top: 100px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  padding-left: 200px;
}

.fotter-logo {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: min-content;
}

.fotter-logo p {
  color: #fff;
  width: 300px;
}

.footer-link ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-link ul li a {
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: .3s;
}

.footer-link ul li a::before {
  display: flex;
  content: "";
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 100%;
  opacity: 0;
  transition: .3s;
}

.footer-link ul li a:hover::before {
  transition: .3s;
  opacity: 1;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.header-hamburger-menu {
  cursor: pointer;
}

.footer-contact a {
  width: 230px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 10px;
  background: #fff;
  border-radius: 20px;
  color: #870110;
  position: relative;
  z-index: 1;
  transition: .3s;
}

.footer-contact a::after {
  content: "";
  width: 43px;
  height: 100%;
  position: absolute;
  right: -1px;
  top: 0;
  bottom: 0;
  background: #750208;
  border-radius: 20px;
  transition: .3s;
  z-index: -1;
}

.footer-contact a span {
  position: relative;
  z-index: 1;
}

.footer-contact a:hover::after {
  transition: .3s;
  left: -1px;
  width: 101%;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-social ul.social {
  display: flex;
  gap: 14px;
}

.footer-social {
  display: flex;
  flex-direction: column;
  background: #870110;
  padding: 60px 80px;
}

.footer-social ul.social li a svg {
  transition: .3s;
}

.footer-social ul.social li a:hover svg {
  transition: .3s;
  transform: scale(1.1);
}

.footer-social .contact {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #fff;
  gap: 15px;
}

.footer-social .contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 16px;
  width: 69%;
}

.footer-container {
  display: flex;
  margin-top: 20px;
  justify-content: space-between;
  align-items: center;
}

.footer-container img {
  width: 150px;
  margin-bottom: 20px;
}

p.chapche {
  color: #fff;
}

.bayilik-form-side {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
}

.bayilik-form-side .contact-container {
  height: 100vh;
}

.bayilik-form-side .contact-right {
  background: #EDEDED;
  padding: 0;
  display: flex;
  transform: translateX(100%);
  height: 100%;
}

.bayilik-form-side .contact-right h1 {
  color: #3B3B3B;
}

.bayilik-form-side .kvkk-input label {
  background: #D9D9D9;
}

.bayilik-form-side .kvkk-container p {
  color: #3B3B3B
}

.bayilik-form-side .kvkk-container p a {
  color: #3B3B3B
}

.bayilik-form-side .contact-left {
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

.bayilik-form-side .contact-right .wrapp {
  padding: 85px 100px;
  width: 100%;
}

.close-tab {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 70px 30px;
  background: #870110;
  align-items: center;
}

.close-tab .close-btn {
  cursor: pointer;
}

.close-tab ul.social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.close-tab ul.social li a svg {
  width: 35px;
}

.bayilik-form-side.active .contact-left {
  transition: .3s;
  opacity: 1;
  visibility: visible;
}

.bayilik-form-side.active .contact-right {
  transition: .3s;
  transform: translateX(0);
}

.bayilik-form-side .content-right-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #870110;
  width: 100%;
  height: 100%;
  z-index: 1;
  transform: translateX(100%);
  transition: .5s;
}

.content-right-wrap {
  position: relative;
  overflow: hidden;
}

.bayilik-form-side.active .content-right-wrap::before {
  transition: .5s;
  transform: translateX(-100%);
}

.bayilik-form-side.active {
  opacity: 1;
  visibility: visible;
}

.footer-social ul.social li a svg {
  width: 35px;
  height: 35px;
}

.banner-bg .mobile {
  display: none;
}

.fancy-2{
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap !important;
  gap: 20px;
  /* -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-perspective: 1000px;
  perspective: 1000px; */
  margin-top: 80px;
}

.fancy-2 a {
  position: relative;
  height: 250px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  cursor: pointer;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  width: 20%;
}

.fancy-2 a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}

.fancy-2 a:hover {
  -webkit-transform: translateZ(110px);
  transform: translateZ(110px);
}

.banner-medium{
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap !important;
  gap: 20px;
  /* -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-perspective: 1000px;
  perspective: 1000px; */
  margin-top: 80px;
}

.banner-medium a {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  cursor: pointer;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  width: 20%;
}

.banner-medium a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}

.banner-medium a:hover {
  -webkit-transform: translateZ(110px);
  transform: translateZ(110px);
}

.fancy {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-perspective: 1000px;
  perspective: 1000px;
  margin-top: 80px;
}

.fancy a {
  position: relative;
  height: 250px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  cursor: pointer;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  width: 20%;
}

.fancy a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}

.fancy a:hover {
  -webkit-transform: translateZ(110px);
  transform: translateZ(110px);
}

.swiper-left-btn {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.swiper-right-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.fancy a:hover+* {
  -webkit-transform: translateZ(80px) rotateY(20deg);
  transform: translateZ(80px) rotateY(20deg);
}

.fancy a:hover+*+* {
  -webkit-transform: translateZ(50px) rotateY(15deg);
  transform: translateZ(50px) rotateY(15deg);
}

.fancy a:hover+*+*+* {
  -webkit-transform: translateZ(20px) rotateY(8deg);
  transform: translateZ(20px) rotateY(8deg);
}

.fancy a:has(+ *:hover) {
  -webkit-transform: translateZ(80px) rotateY(-20deg);
  transform: translateZ(80px) rotateY(-20deg);
}

.fancy a:has(+ * + *:hover) {
  -webkit-transform: translateZ(50px) rotateY(-15deg);
  transform: translateZ(50px) rotateY(-15deg);
}

.fancy a:has(+ * + * + *:hover) {
  -webkit-transform: translateZ(20px) rotateY(-8deg);
  transform: translateZ(20px) rotateY(-8deg);
}


.fancy-2 a:hover+* {
  -webkit-transform: translateZ(80px) rotateY(20deg);
  transform: translateZ(80px) rotateY(20deg);
}

.fancy-2 a:hover+*+* {
  -webkit-transform: translateZ(50px) rotateY(15deg);
  transform: translateZ(50px) rotateY(15deg);
}

.fancy-2 a:hover+*+*+* {
  -webkit-transform: translateZ(20px) rotateY(8deg);
  transform: translateZ(20px) rotateY(8deg);
}

.fancy-2 a:has(+ *:hover) {
  -webkit-transform: translateZ(80px) rotateY(-20deg);
  transform: translateZ(80px) rotateY(-20deg);
}

.fancy-2 a:has(+ * + *:hover) {
  -webkit-transform: translateZ(50px) rotateY(-15deg);
  transform: translateZ(50px) rotateY(-15deg);
}

.fancy-2 a:has(+ * + * + *:hover) {
  -webkit-transform: translateZ(20px) rotateY(-8deg);
  transform: translateZ(20px) rotateY(-8deg);
}

.bayilik-form-side .header-menu {
  display: none;
}

.bg-animation {
  width: 100%;
  display: flex;
  justify-content: center;
}

.bg-animation img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
}

.swiper.hakkimizdaSwiper.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
  display: none;
}

.alt {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 50px;
  width: 100%;
  align-items: end;
}

.btns {
  width: 83%;
}

.alt .footer-contact {
  display: flex;
  flex-direction: row;
}



/*Whatsapp*/

.btn-whatsapp-pulse {
  background: #0d8c3d;
  color: white;
  position: fixed;
  bottom: 40px;
  right: 40px;
  font-size: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 30px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  z-index: 8;
}

@media only screen and (max-width: 767px) {
  .btn-whatsapp-pulse-border {
    bottom: 40px !important;
  }
}

.btn-whatsapp-pulse-border:hover {
  color: #fff4eb !important;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #0d8c3d;
  }
  80% {
    box-shadow: 0 0 0 14px rgba(40, 211, 37, 0);
  }
}

.btn-whatsapp-pulse-border {
  bottom: 30px;
  right: 30px;
  animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  padding: 25px;
  border: 5px solid #0d8c3d;
  opacity: 0.75;
  animation-name: pulse-border;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

@keyframes pulse-border {
  0% {
    padding: 25px;
    opacity: 0.75;
  }
  75% {
    padding: 50px;
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}


:root{
    --scroll-thumb: #870110;    /* kaydırıcı rengi (kırmızı) */
    --scroll-thumb-hover: #870110;
    --scroll-track: #f5f5f5;    /* arka plan parçası */
    --scroll-track-shadow: rgba(0,0,0,0.06);
    --scroll-width: 12px;
    --scroll-radius: 8px;
  }

  /* ========================
      WebKit tabanlı tarayıcılar
      (Chrome, Edge, Safari)
      ======================== */
  /* Tüm sayfa için */
  ::-webkit-scrollbar {
    width: var(--scroll-width);
    height: var(--scroll-width);
  }
  ::-webkit-scrollbar-track {
    background: var(--scroll-track);
    border-radius: var(--scroll-radius);
    box-shadow: inset 0 0 2px var(--scroll-track-shadow);
  }
  ::-webkit-scrollbar-thumb {
    background-color: var(--scroll-thumb);
    border-radius: var(--scroll-radius);
    border: 3px solid transparent; /* iç boşluk efekti */
    background-clip: content-box;
  }
  ::-webkit-scrollbar-thumb:hover {
    background-color: var(--scroll-thumb-hover);
  }
  ::-webkit-scrollbar-corner {
    background: transparent;
  }