/** Shopify CDN: Minification failed

Line 26:19 Expected identifier but found whitespace
Line 26:21 Unexpected "{"
Line 26:30 Expected ":"
Line 28:18 Expected identifier but found whitespace
Line 28:20 Unexpected "{"
Line 28:29 Expected ":"
Line 236:16 Expected identifier but found whitespace
Line 236:18 Unexpected "{"
Line 236:27 Expected ":"
Line 236:59 Expected ":"
... and 8 more hidden warnings

**/


/* CSS from section stylesheet tags */
/* ===================================
      Crafto - Web agency
  ====================================== */
  /* font */
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
  /* variable */
  :root {     
      --base-color: {{ section.settings.accent_color }};
      --medium-gray:#6F7071;
      --dark-gray: {{ section.settings.text_color }}; 
      --alt-font: 'Inter', sans-serif;
      --primary-font: 'Inter', sans-serif;
  }
  
  body {
      font-size: 17px;
      line-height: 32px;
  }
  
  /* section styles */
  .section-dark {
    padding: 120px 0;
    position: relative;
  }
  
  .section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
  }
  
  /* Görsel konumlandırma sınıfları - Daha büyük görünmesi için değiştirildi */
  .outside-box-left-30 {
    margin-left: -35%;
  }
  
  .outside-box-right-30 {
    margin-right: -35%;
  }
  
  .outside-box-left-20 {
    margin-left: -20%;
  }
  
  .outside-box-right-20 {
    margin-right: -20%;
  }
  
  .outside-box-left-15 {
    margin-left: -15%;
  }
  
  .outside-box-right-15 {
    margin-right: -15%;
  }
  
  /* Görsel için özel stil */
  .about-image {
    max-width: 140%;
    height: auto;
    width: 140%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  .xl-outside-box-left-25 {
    margin-left: -25%;
  }
  
  .xl-outside-box-right-25 {
    margin-right: -25%;
  }
  
  .bottom-minus-70px {
    bottom: -100px;
  }
  
  /* Arka plan metni için yeni konum sınıfı */
  .bottom-minus-150px {
    bottom: -150px;
  }
  
  /* Arka plan metni için daha aşağıda konum sınıfı */
  .bottom-minus-300px {
    bottom: -300px;
  }
  
  /* Arka plan metni için -200px konum sınıfı */
  .bottom-minus-200px {
    bottom: -200px;
  }
  
  .z-index-1 {
    z-index: 1;
  }
  
  .z-index-2 {
    z-index: 2;
  }
  
  .z-index-3 {
    z-index: 3;
  }
  
  .fw-600 {
    font-weight: 600;
  }
  
  .fw-700 {
    font-weight: 700;
  }
  
  .ls-5px {
    letter-spacing: 5px;
  }
  
  .ls-minus-20px {
    letter-spacing: -20px;
  }
  
  .word-break-normal {
    word-break: normal;
  }
  
  .mb-40px {
    margin-bottom: 40px;
  }
  
  .mb-30px {
    margin-bottom: 30px;
  }
  
  .w-95 {
    width: 95%;
  }
  
  .lh-34 {
    line-height: 34px;
  }
  
  .fs-300 {
    font-size: 300px;
  }
  
  /* button styles */
  .btn {
    display: inline-block;
    text-decoration: none;
    padding: 12px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .button-container {
    display: block;
    width: 100%;
  }
  
  .text-left {
    text-align: left;
  }
  
  .text-center {
    text-align: center;
  }
  
  .text-right {
    text-align: right;
  }
  
  .btn-rounded {
    border-radius: 50px;
  }
  
  .btn-large {
    padding: 16px 36px;
    font-size: 16px;
  }
  
  .btn-expand-ltr span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  
  .btn-expand-ltr:hover span {
    transform: translateX(0);
  }
  
  .btn.btn-base-color {
    color: var(--dark-gray);
  }
  
  /* skrollable classes */
  .skrollable {
    position: relative;
    transition: transform 0.1s ease-in;
  }
  
  .skrollable-between {
    display: block;
  }
  
  /* Responsive ayarlamalar */
  @media (min-width: 768px) {
    /* heading tag */
    h1 {
      font-size: {{ section.settings.heading_font_size }}px;
      line-height: normal;
    }
    h2 {
      font-size: 3.75rem;
      line-height: 3.75rem;
    }
    h3 {
      font-size: 3.125rem;
      line-height: 3.125rem;
    }
  }
  
  @media (max-width: 1399px) {
    .ls-minus-20px {
      letter-spacing: -15px;
    }
    .fs-300 {
      font-size: 210px;
    }
    .about-image {
      max-width: 100%;
      width: 100%;
    }
  }
  
  @media (max-width: 1199px) {
    .ls-minus-20px {
      letter-spacing: -15px;
    }
    .xl-fs-250 {
      font-size: 250px;
    }
    .about-image {
      max-width: 125%;
      width: 125%;
    }
  }
  
  @media (max-width: 991px) {
    .md-outside-box-left-15 {
      margin-left: -15%;
    }
    
    .md-outside-box-right-15 {
      margin-right: -15%;
    }
    
    .md-outside-box-left-0 {
      margin-left: 0;
    }
    
    .md-outside-box-right-0 {
      margin-right: 0;
    }
    
    .md-mt-35px {
      margin-top: 35px;
    }
    
    .md-mb-35px {
      margin-bottom: 35px;
    }
    
    .md-mb-25px {
      margin-bottom: 25px;
    }
    
    .lg-w-100 {
      width: 100%;
    }
    
    .lg-fs-200 {
      font-size: 200px;
    }
    
    .ls-minus-20px {
      letter-spacing: -10px;
    }
    
    .section-dark {
      padding: 100px 0;
    }
    
    .about-image {
      max-width: 115%;
      width: 115%;
    }
  }
  
  @media (max-width: 767px) {
    .section-dark {
      padding: 60px 0;
    }
    
    .d-none {
      display: none;
    }
    
    .ls-minus-20px {
      letter-spacing: -4px;
    }
    
    .sm-mt-0 {
      margin-top: 0 !important;
    }
    
    .sm-mb-0 {
      margin-bottom: 0 !important;
    }
    
    .sm-outside-box-left-0 {
      margin-left: 0;
    }
    
    .sm-outside-box-right-0 {
      margin-right: 0;
    }
    
    .about-image {
      max-width: 100%;
      width: 100%;
    }
    
    /* Mobilde sabit başlık boyutu */
    h1 {
      font-size: 25px !important;
      line-height: 1.3 !important;
    }
  }
  
  @media (max-width: 575px) {
    .ls-minus-20px {
      letter-spacing: -3px;
    }
    
    .section-dark {
      padding: 40px 0;
    }
    
    h1 {
      font-size: 3.5rem;
      line-height: 2.8rem;
    }
    
    .mb-40px {
      margin-bottom: 25px;
    }
    
    .outside-box-left-15, .outside-box-right-15 {
      margin-left: 0;
      margin-right: 0;
    }
  }
  
  /* Yeni eklenen responsive sınıflar */
  .img-fluid {
    max-width: 100%;
    height: auto;
  }
.footer-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.footer-marquee .items__container {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  will-change: transform;
}

.footer-marquee .item {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.footer-marquee .item__text {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  margin-right: 1rem;
}

.footer-marquee .item__image {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.footer-marquee .item__image svg {
  width: 100%;
  height: 100%;
}
.logogrid-container {
  position: relative;
  padding: 3rem 1rem;
  border-radius: 10px;
  overflow: hidden;
  margin: 2rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logogrid {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.logogrid__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  width: calc((100% / {{ section.settings.columns_desktop }}) - 2rem);
  
  @media screen and (max-width: 749px) {
    width: calc(50% - 2rem);
  }
}

.logogrid__img {
  object-fit: contain;
  max-width: {{ section.settings.logo_max_width }}px;
  max-height: {{ section.settings.logo_max_height }}px;
  width: 100%;
  transition: filter .3s ease, transform .3s ease;
}

.logogrid__img:hover {
  filter: none !important;
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(2deg); }
  50% { transform: rotate(0deg); }
  75% { transform: rotate(-2deg); }
  100% { transform: rotate(0deg); }
}