@font-face {
  font-family: 'Nexa';
  src: url('Nexa-Heavy.eot');
  src: url('Nexa-Heavy.eot?#iefix') format('embedded-opentype'),
      url('Nexa-Heavy.woff2') format('woff2'),
      url('Nexa-Heavy.woff') format('woff'),
      url('Nexa-Heavy.ttf') format('truetype'),
      url('Nexa-Heavy.svg#Nexa-Heavy') format('svg');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

.slider {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  position: absolute;
  z-index: -1;
 }
  
 .slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: slider 12.5s infinite;
 }
  
 .no-webp .slider .slide:nth-child(1) {
    background-image: url('bg-1.jpg');
    animation-delay: 0s;
 }
 
 .no-webp .slider .slide:nth-child(2) {
    background-image: url('bg-2.jpg');
    animation-delay: -2.5s;
 }
 
 .no-webp .slider .slide:nth-child(3) {
    background-image: url('bg-4.jpg');
    animation-delay: -5s;
 }
 
 .no-webp .slider .slide:nth-child(4) {
    background-image: url('bg-5.jpg');
    animation-delay: -7.5s;
 }
 
 .no-webp .slider .slide:nth-child(5) {
    background-image: url('bg-6.jpg');
    animation-delay: -10s;
 }

 .webp .slider .slide:nth-child(1) {
  background-image: url('bg-1.webp');
  animation-delay: 0s;
}

.webp .slider .slide:nth-child(2) {
  background-image: url('bg-2.webp');
  animation-delay: -2.5s;
}

.webp .slider .slide:nth-child(3) {
  background-image: url('bg-4.webp');
  animation-delay: -5s;
}

.webp .slider .slide:nth-child(4) {
  background-image: url('bg-5.webp');
  animation-delay: -7.5s;
}

.webp .slider .slide:nth-child(5) {
  background-image: url('bg-6.webp');
  animation-delay: -10s;
}

 

 
 @keyframes slider {
  0%, 16%, 100% {
    transform: translateX(0);
    animation-timing-function: ease;
  }
  20% {
    transform: translateX(-100%);
    animation-timing-function: step-end;
  }
  96% {
    transform: translateX(100%);
    animation-timing-function: ease;
  }
 }

body {
  background-repeat: no-repeat;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nexa', sans-serif;
  overflow: hidden;
  font-weight: 900;
}

body::after {
  content: '';
  width: 100vw;
  height: 100vh;
  background: url(golge.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 9;
  pointer-events: none;
}

.container {
  width: 1200px;
  margin: 0 auto;
}

.logo {
  text-align: center;
  margin-bottom: 10vh;
}

.logo img {
  width: 300px;
}

.buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  max-width: 400px;
}

.buttons a {
  background: #fff;
  padding: 12px;
  border-radius: 24px;
  text-decoration: none;
  margin-top: 24px;
  color: #f99d1b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  height: 64px;
  box-shadow: 0px 32px 16px -16px rgba(0, 0, 0, 0.2);
  transition: all 500ms;
}

.buttons a:hover {
  box-shadow: 0 32px 16px -8px rgba(0,0,0,.5);
}

.buttons a.kurumsal img {
  width: 28px;
  margin-right: 12px;
}

.buttons a.online-siparis img {
  width: 36px;
  margin-right: 8px;
}

body::after {
    content: '';
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0,0,0,.25);
    z-index: -1;
}

@media (max-width: 992px) {
  .buttons {
    max-width: 80vw;
  }
  .buttons a {
    font-size: 22px;
    height: 48px;
  }
  .logo {
    margin-bottom: 10vh;
  }
}