html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}


html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
a {
  text-decoration: none;
  margin: 0;
  padding: 0;
}

a,
button {
  cursor: pointer;
}

a {
  color: inherit;
  /* Renk, çevreleyen elemanın rengini miras alır */
  text-decoration: none;
  /* Alt çizgi gibi dekorasyonları kaldırır */
}

a:hover,
a:focus,
a:active {
  color: inherit;
  /* Hover, focus ve active durumlarında da renk değişmez */
  text-decoration: none;
  /* Hover, focus ve active durumlarında dekorasyon olmaz */
}

button {
  cursor: pointer;
}

* {
  box-sizing: border-box;
}

video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-style: oblique;
}

button {
  background-color: transparent;
  margin: 0;
  padding: 0;
  border-style: none;
}

body {
  overflow: hidden;
  overflow-y: scroll;
}

* {
  margin: 0;
  padding: 0;
}

:root {
  --theme-light: #ffffff;
  --carrot-orange-500: #f1750f;
  --carrot-orange-600: #d5530a;
  --carrot-orange-100: #fde9c8;
  --carrot-orange-200: #fbd28c;
  --carrot-orange-50: #fff7eb;
  --neutral-50: #fafafa;
  --neutral-400: #a3a3a3;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-800: #262626;
  --neutral-950: #0a0a0a;
  --neutural-900: #171717;
  font-family: Urbanist;
  color: var(--neutral-50);
}

* {
  box-sizing: border-box;
  font-family: Urbanist;
}

.section-title {
  font-size: 48px;
  font-weight: 600;
  line-height: 57.6px;
  letter-spacing: -0.02em;
  color: var(--neutral-950);
}

.section-content {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.03em;
  text-align: left;
  color: var(--neutral-600);
}

body {
  background-color: var(--theme-light);
  color: var(--neutral-950);
  margin: 0;
  padding: 0;
}

.size-limit-1200 {
  max-width: 1200px;
  margin: auto;
}

.size-limit-1400 {
  max-width: 1400px;
}

.size-limit-1760 {
  max-width: 1760px;
  padding: 0 80px;
}

section {
  display: flex;
  margin: auto;
}

.top-banner {
  display: flex;
  flex-direction: row;
  gap: 24px;
  padding: 12px 0;
  max-height: 40px;
  margin: auto;
  width: 100%;
  align-items: center;
}

.base-icons {
  font-size: 16px;
  color: var(--neutral-400);
}

.banner-icon-container {
  display: flex;
  padding-right: 24px;
  flex-direction: row;
  gap: 16px;
  border-right: 1px solid var(--neutral-200);
}

.flex {
  flex: 1;
}

.orange {
  color: var(--carrot-orange-500) !important;
}

.bg-orange {
  background-color: var(--carrot-orange-500) !important;
  border: none !important;
  max-height: 40px;
  padding: 8px 20px !important;
  color: var(--neutral-50) !important;
}

.nav-textes {
  font-weight: 600;
  font-size: 12px;
  line-height: 14.4px;
  letter-spacing: 3%;
  color: var(--neutral-600);
}

.top-banner-right-frame {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}

.nav-icons {
  font-size: 16px;
  color: var(--neutral-600);
  margin: auto 0;
}

header {
  display: flex;
  width: 100%;
  flex-direction: column;
}

nav {
  display: flex;
  position: relative;
  width: 100%;
  justify-content: center;
  max-height: 73px;
  align-items: center;
  border-top: 1px solid var(--neutral-200);
}

.nav-logo {
  max-width: 144px;
  max-height: 26px;
}

.nav-inside {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 73px;
}

.nav-logo {
  width: 200px;
  height: 36px;
}

.nav-items-list {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.lang-flags {
  display: flex;
  flex-direction: row;
  gap: 12px;
  font-size: 20px;
}

.nav-items {
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  color: var(--neutral-500);
  padding: 6px 12px;
}

.hero-image-t1 {
  flex: 1;
  object-fit: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
}

.hero-title {
  font-weight: 600;
  font-size: 64px;
  line-height: 76.8px;
  letter-spacing: -2%;
  text-align: center;
  color: var(--neutral-50);
}

.hero-inside-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 64px 0;
  gap: 24px;
}

.hero-overlay {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  background: linear-gradient(180deg,
      rgba(241, 117, 15, 0.6) 0%,
      rgba(149, 39, 11, 0.6) 100%);
}

.hero {
  background-repeat: no-repeat;
  object-fit: contain;
  object-position: center;
  height: 640px;
  flex-direction: column;
  align-items: center;
  max-height: 640px;
  border-radius: 64px 64px 0 0;
  z-index: 10;
  position: relative;

  .hero-overlay {
    border-radius: 64px 64px 0 0;
  }

  img {
    border-radius: 64px 64px 0 0;
  }
}

.hero-bottom-area {
  display: flex;
  flex-direction: row;
  height: 160px;
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
  margin-bottom: -80px;
  z-index: 30;
  border: 8px solid rgba(255, 255, 255, 0.06);
}

.hero-products {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 16px;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.hero-product-images {
  border-radius: 0 !important;
  position: absolute;
  top: 0;
  left: 0;
  flex: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: all 0.5s ease;
}

.hero-products-overlay {
  display: flex;
  z-index: -1;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  opacity: 0.9;
  background: linear-gradient(0deg,
      var(--Carrot-Orange-500, #f1750f),
      var(--Carrot-Orange-500, #f1750f)),
    linear-gradient(0deg, rgba(241, 117, 15, 0.7), rgba(241, 117, 15, 0.7));
  transition: all 0.4s ease;
}

.dark-overlay {
  background: linear-gradient(0deg, #902b10, #902b10),
    linear-gradient(0deg, rgba(144, 43, 16, 0.7), rgba(144, 43, 16, 0.7));
}

.hero-products-span {
  font-size: 16px;
  font-weight: 600;
  line-height: 19.2px;
  letter-spacing: -0.02em;
  text-align: left;
  text-transform: uppercase;
  color: var(--carrot-orange-200);
  position: relative;
  transition: all 0.3s ease;
}

.hero-products-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: left;
  color: var(--neutral-50);
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s ease;
}

.leader-span {
  padding: 6px 24px;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  gap: 8px;
  border-radius: 48px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--carrot-orange-50);
  text-align: center;
  border: 1px solid var(--neutral-50);
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0.07) 100%);
}

.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 32px 80px;
  justify-content: flex-end;
  align-items: flex-end;
  background-color: var(--neutral-50);
}

.hero-left-inside {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.deal-button {
  padding: 12px 24px;
  background-color: var(--neutral-950);
  color: var(--neutral-50);
  font-size: 16px;
  letter-spacing: 3%;
  line-height: 24px;
  font-weight: 600;
}

.hero-left-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-description {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 3%;
  text-align: center;
  color: var(--neutral-50);
  max-width: 1100px;
  opacity: 0.7;
  display: flex;
  flex-direction: column;
}

.hero-description-orange {
  color: var(--carrot-orange-500);
  margin-top: 20px;
}

.hero-bottom-frame {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin: 0 auto;
}

.bg-light {
  background-color: var(--neutral-50);
}

.play-button {
  width: 48px;
  height: 48px;
  color: var(--carrot-orange-500);
  display: flex;
  padding: 0 0;
  justify-content: center;
  align-items: center;

  i {
    font-size: 24px;
    margin-left: 2px;
    color: var(--carrot-orange-500);
  }
}

.rounded-button {
  padding: 12px 24px;
  border-radius: 48px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 3%;
  color: var(--neutral-50);
}

.bg-orange {
  background-color: var(--carrot-orange-500);
}

.hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  aspect-ratio: 960/900;
  max-height: 960px;
  position: relative;
  justify-content: flex-end;
}

.hero-image {
  aspect-ratio: 960/900;
  flex: 1;
  width: 100%;
  height: 100%;
  z-index: -2;
  max-height: 960px;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}

.hero-right-card {
  padding: 48px;
  color: var(--neutral-50);
  gap: 8px;
  background-color: var(--carrot-orange-500);
  max-width: 500px;
  max-height: 300px;
  margin-bottom: 128px;
  margin-left: -48px;
}

.hero-right-card-title {
  font-weight: 600;
  font-size: 32px;
  line-height: 38.4px;
  letter-spacing: -2%;
}

.hero-rigt-card-content-frame {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 19.5px 0;
  text-transform: uppercase;
}

.hero-right-card-desc {
  font-weight: 600;
  font-size: 16px;
  line-height: 19.2px;
  letter-spacing: -2%;
  color: var(--carrot-orange-200);
}

.hero-right-card-product {
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -2%;
  color: var(--neutral-50);
}

.hero-right-card-bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.hero-right-card-detail-button {
  padding: 8px 16px;
  border: 1px solid var(--neutral-50);
  text-transform: none;
}

.hero-rigt-card-arrows {
  font-size: 24px;
  color: var(--neutral-50);
}

.hero-left-bottom-frame {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}

.detail-frame {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 3%;
  color: var(--neutral-600);
}

.detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background-color: var(--neutral-200);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}

.products-inside-frame {
  display: flex;
  flex-direction: column;
  padding: 64px 0;
  gap: 64px;
  margin: auto;
  width: 100%;
}

.products-top-frame {
  gap: 128px;
  display: flex;
  flex-direction: row;
}

.products-top-desc {
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 3%;
  color: var(--neutral-600);
  max-width: 574px;
}

.products-pagination {
  display: flex;
  flex-direction: row;
  height: 100%;
  gap: 16px;
}

.products-pagination-buttons {
  padding: 8px;
  color: var(--carrot-orange-500);
  font-size: 24px;
  border: 1px solid var(--carrot-orange-500);
}

.products-card-frame {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.upper {
  text-transform: uppercase;
}

.product-card {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 24px;
}

.product-card-name {
  font-weight: 600;
  font-size: 18px;
  line-height: 21.6px;
  letter-spacing: 3%;
  color: var(--neutral-950);
}

.product-card-image {
  width: 282px;
  height: 250px;
}

.splitter-hr {
  width: 100%;
  border-width: 0.5px;
  opacity: 0.09;
  height: 0.5px;
  border-color: var(--neutral-800);
  background-color: var(--neutral-800);
}

.splitter {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  gap: 24px;
}

.splitter-rounded-button {
  height: 48px;
  justify-content: center;
  align-items: center;
  border-radius: 48px;
  padding: 12px, 24px, 12px, 24px !important;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.03em;
  text-align: left;
}

.base-button {
  display: flex;
  padding: 8px 20px;
  border-style: solid;
  border-width: 1px;
  border-color: var(--neutral-800);
  color: var(--neutral-800);
  min-width: fit-content;
  width: fit-content;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.03em;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.full-orange {
  color: var(--carrot-orange-500);
  border-color: var(--carrot-orange-500);
}

.about {
  background-color: var(--neutral-200);
}

.references {
  flex-direction: column;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 64px 0;
  position: relative;

  .references-top-frame {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    width: 100%;

    h2 {
      font-size: 56px;
      font-weight: 600;
      line-height: 67.2px;
      letter-spacing: -0.02em;
      text-align: left;
    }

    span {
      color: var(--neutral-400);
      font-size: 16px;
      font-weight: 500;
      line-height: 24px;
      letter-spacing: 0.03em;
      text-align: left;
      margin-left: 60px;
      margin-right: 60px;
    }
  }

  .references-bottom-frame {
    display: flex;
    flex-direction: row;
    gap: 24px;
    width: 100%;
  }

  div:last-of-type {
    flex-direction: row;
    display: flex;
    align-items: center;
    gap: 16px;

    i {
      font-size: 19px;
    }
  }
}

.references-slide {
  display: flex;
  flex: 1;
  position: relative;
  min-width: 400px;
  max-width: 400px;
  height: 600px;
  flex-direction: column;
  padding: 32px;
  justify-content: flex-end;
  color: var(--neutral-50);
  border-radius: 32px;
  overflow: hidden;
  z-index: 10;

  img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -2;
  }

  article {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f1750f4d;
  }

  h4 {
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.64px;
    width: 100%;
  }
}

.about-inside {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 128px 0;
  margin: auto;
  width: 100%;
}

.hero-outside {
  display: flex;
  flex: 1;
  max-height: calc(100% - 80px);
  flex-direction: column;
  justify-content: center;
}

.about-question {
  font-weight: 300;
  font-size: 24px;
  line-height: 42px;
  color: var(--neutral-600);
}

.about-answer {
  max-width: 876px;
  font-weight: 300;
  font-size: 28px;
  line-height: 42px;
  letter-spacing: 3%;
  color: var(--neutral-950);
}

.propose {
  background-color: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 128px 0;
}

.propose-inside {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 24px;
  align-items: center;
  z-index: 10;
}

.propose-left {
  display: flex;
  flex-direction: column;
  padding: 32px;
  gap: 20px;
  max-width: 588px;
}

.section-content {
  font-family: Urbanist;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: -2%;
  color: var(--neutral-400);
}

.four-image-frame {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 24px;
  max-width: 588px;
  max-height: 564px;
}

.four-image-frame-left {
  padding-top: 64px;
  gap: 20px;
  display: flex;
  flex-direction: column;
}

.four-image-frame-right {
  gap: 20px;
  display: flex;
  flex-direction: column;
}

.button-frame {
  display: flex;
  flex-direction: row;
  gap: 16px;
  text-transform: uppercase;
}

.four-images-frame {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  width: 282px;
  height: 240px;
}

.four-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: #f1750f4d;
}

.four-images {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
}

.colored-button {
  background-color: var(--carrot-orange-500);
  color: var(--carrot-orange-50);
  border: none;
}

.propose-title {
  font-size: 48px;
  font-weight: 600;
  line-height: 57.6px;
  letter-spacing: -0.02em;
  text-align: left;
  color: var(--neutral-950);
}

.news-top-frame {
  gap: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  max-width: 700px;
  align-items: center;
  text-align: center;
}

.news-bottom-frame {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.news {
  background-color: var(--neutral-50);
  padding: 64px 0;
  gap: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--neutural-900);
}

.news-content-frame {
  display: flex;
  flex-direction: column;
  max-width: 282px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--neutral-200);
}

.news-content-bottom-frame {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 12px;
}

.news-image {
  width: 282px;
  height: 200px;
}

.news-content {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -2%;
  font-family: Urbanist;
}

.news-detail {
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 3%;
  font-family: Urbanist;
  display: flex;
  flex-direction: row;
  color: var(--neutral-500);
  justify-content: space-between;
}

.news-detail-nav-label {
  color: var(--carrot-orange-500);
}

.news-desc {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 3%;
  color: var(--neutral-500);
}

.contact-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: var(--carrot-orange-500);
}

.contact-left-frame {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 600px;
  color: var(--neutral-50);
}

.light {
  color: var(--neutral-50);
}

.light-button {
  max-height: 56px;
  justify-content: center;
  align-items: center;
  background-color: var(--neutral-50);
  color: var(--carrot-orange-500);
  font-weight: 800;
  font-size: 20px;
  padding: 12px 24px;
  margin-left: auto;
  border: none;
}

.contact-inside-frame {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  padding: 128px 0;
}

.contact-span {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.03em;
  text-align: left;
  color: var(--neutral-50);
  opacity: 0.7;
}

footer {
  background-color: var(--neutural-900) !important;
  padding: 64px 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer-inside {
  display: flex;
  flex-direction: row;
  font-family: Urbanist;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 3%;
  color: var(--neutral-400);
  gap: 64px;
  margin: auto;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 568px;
}

.footer-logo {
  width: 144px;
  height: 26px;
}

.footer-right {
  max-height: 144px;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 16px 64px;
}

.footer-nav-items {
  width: 252px;
  min-height: 24px;
  color: var(--neutral-400);
}

.footer-contact-frame {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: center;
  gap: 32px;

  i {
    color: var(--neutral-400);
  }
}

footer {
  background-color: var(--neutral-950);
  padding: 64px 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
  color: var(--neutral-400);
}

.single-product-section {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  height: 600px;
  margin-top: 48px;
  margin-bottom: 63px;
  width: 100%;

  .base-button {
    min-width: 48px;
    justify-content: center;
    align-items: center;
  }

  div {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 588px;

    h5 {
      color: var(--neutral-500);
      font-weight: 600;
      font-size: 18px;
      line-height: 19.2px;
      letter-spacing: -2%;
    }

    h2 {
      font-size: 48px;
      font-weight: 600;
      line-height: 57.6px;
      letter-spacing: -0.02em;
      text-align: left;
    }

    span {
      font-family: Urbanist;
      font-size: 16px;
      font-weight: 500;
      line-height: 24px;
      letter-spacing: 0.03em;
      text-align: left;
      color: var(--neutral-500);
    }

    article {
      display: flex;
      flex-direction: row;
      gap: 16px;
    }
  }

  img {
    height: 100%;
    aspect-ratio: 588/600;
    object-fit: cover;
    border-radius: 256px 0;
  }
}

.product {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
  position: relative;
}

.partners-frame {
  width: 100%;
  justify-content: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 48px 0px 48px 0px;
  gap: 64px;
  border: 0px 0px 1px 0px;
  opacity: 0px;
}

.info-frame {
  display: flex;
  flex-direction: row;
  padding: 32px 0px 32px 0px;
  gap: 32px;
  border: 0px 0px 1px 0px;
}

.info-area {
  padding: 20px;
  gap: 20px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.info-area-icon {
  color: var(--carrot-orange-500);
  font-size: 40px;
  display: flex;
  margin-left: -4px;
}

.nfo-area-title {
  font-family: Manrope;
  font-size: 24px;
  font-weight: 600;
  line-height: 32.78px;
  letter-spacing: -0.03em;
  text-align: left;
}

.info-area-content {
  font-family: Manrope;
  font-size: 16px;
  font-weight: 500;
  line-height: 21.86px;
  letter-spacing: -0.01em;
  text-align: left;
  color: #6b7280;
}

.info-area-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.flags-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 48px 0;
  gap: 72px;
  justify-content: center;
  max-width: 100%;
  overflow: hidden;
  background-color: var(--carrot-orange-100);
}

.fi {
  min-width: 80px;
  min-height: 60px;
  opacity: 0.6;
}

.our-products {
  border: 0px 0px 1px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
}

.our-products-inside {
  width: 100%;
  padding: 64px 0px 64px 0px;
  gap: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.our-products-inside-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.our-products-desc {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.03em;
  text-align: center;
  color: var(--neutral-600);
}

.products-grid-frame {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px 24px;
}

.product-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 588px;
}

.product-card-image {
  width: 100%;
  aspect-ratio: 588/250;
  object-fit: cover;
}

.product-card-name {
  font-size: 18px;
  font-weight: 600;
  line-height: 21.6px;
  letter-spacing: 0.03em;
  text-align: left;
  text-transform: uppercase;
  color: var(--neutral-950, #0a0a0a);
}

.news-inside-frame {
  gap: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.contact-title {
  font-size: 56px;
  font-weight: 600;
  line-height: 67.2px;
  letter-spacing: -0.02em;
  text-align: left;
}

.breadcrump {
  height: 39px;
  padding: 12px 0px 12px 0px;
  border-top: 1px solid #e5e5e5;
  background: var(--neutral-100);
}

.breadcrump-inside-frame {
  display: flex;
  margin: auto;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  width: 100%;
  height: 10px;
}

.breadcrump-icon {
  font-size: 16px;
  color: var(--neutral-400);
}

.breadcrump-text {
  font-size: 13px;
  font-weight: 600;
  line-height: 15.6px;
  letter-spacing: 0.03em;
  text-align: left;
  color: var(--neutral-400);
  min-width: fit-content;
}

.about-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 673px;
  padding: 256px 0px 256px 0px;
  gap: 12px;
  opacity: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border-top: 1px solid var(--neutral-200);

  img {
    width: 100%;
    height: 100%;
    top: 0;
    position: absolute;
  }
}

.about-hero-title {
  z-index: 10;
  font-size: 64px;
  font-weight: 600;
  line-height: 76.8px;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--neutral-50);
}

.about-hero-span {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.03em;
  text-align: center;
  color: var(--neutral-50);
  z-index: 10;
  max-width: 800px;
  opacity: 0.8;
}

.about-hero-layer {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    linear-gradient(180deg,
      rgba(241, 117, 15, 0.6) 0%,
      rgba(149, 39, 11, 0.6) 100%);
}

.description-inside {
  margin: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 64px 0px 64px 0px;
}

.description-article {
  display: flex;
  flex-direction: column;
  padding: 32px;
  gap: 20px;
}

.description-p {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.03em;
  text-align: left;
  color: var(--neutral-500);
}

.about-description-image {
  width: 100%;
  aspect-ratio: 3;
}

.product-about-inside {
  margin: auto;
  width: 100%;
  flex-direction: column;
  display: flex;
  padding: 64px 0px 64px 0px;
}

.product-about-content-areas {
  padding: 32px;
  gap: 20px;
  display: flex;
  flex-direction: column;
}

.mid-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 38.4px;
  letter-spacing: -0.02em;
  text-align: left;
  color: var(--neutral-950);
}

.transparent-p {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.03em;
  text-align: left;
  color: var(--neutral-500);
}

.certificate-frame {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.certificate-card {
  flex: 1;
  display: flex;
  max-width: 266px;
  aspect-ratio: 266/392;
  border-radius: 32px;
  border: 1px solid #e5e5e5;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
}

.certificate-img {
  aspect-ratio: 266/328;
  width: 100%;
  object-fit: cover;
}

.certificate-name {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: left;
  color: var(--neutral-950);
}

.products-inside {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 32px 0;
  gap: 24px;
  margin: auto;
}

.products-inside-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}

.product-inside-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 384px;
  max-width: 384px;
  aspect-ratio: 384/424;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--Neutral-200, #e5e5e5);
}

.product-page-card-image {
  width: 100%;
  aspect-ratio: 384/300;
  object-fit: cover;
}

.product-page-card-bottom {
  display: flex;
  flex: 1;
  padding: 10px;
  gap: 20px;
  flex-direction: column;
}

.product-page-card-name {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: left;
  color: var(--Neutral-950, #0a0a0a);
}

.product-page-card-button {
  width: 100%;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid var(--carrot-orange-500);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--carrot-orange-500);
}

.category-detail-inside-frame {
  margin: auto;
  width: 100%;
  padding: 32px 0;
  gap: 24px;
  display: flex;
  flex-direction: column;
}

.category-detail-inside-top-frame {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.category-detail-inside-top-frame-splitter {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.category-splitter-hr {
  flex: 1;
  height: 0.5px;
  opacity: 0.2;
}

.category-card-frame {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}

.fit-card {
  aspect-ratio: unset;
  border: 1px solid var(--Neutral-200, #e5e5e5);
  box-shadow: 0px 1px 8px 0px #0000001f;
}

.fit-card-bottom {
  display: flex;
  padding: 20px;
  gap: 20px;
}

.fit-card-bottom-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fit-card-middle-frame {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fit-card-middle-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.03em;
  text-align: left;
  color: var(--carrot-orange-500);
}

.fit-card-middle-rows {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  line-height: 24px;
  letter-spacing: 0.03em;
  text-align: left;
  color: var(--neutral-500);
}

.fit-card-middle-hr {
  opacity: 0.2;
}

.fit-card-middle-right {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.03em;
  text-align: left;
  color: var(--neutral-600);
}

.category-description-inside {
  margin: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 32px 0;
}

.no-padding {
  padding: 0 !important;
}

.category-description-letter-frame {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 32px;
  gap: 20px;
}

.rounded-video {
  border-radius: 64px;
  overflow: hidden;
}

.category-detail {
  .transparent-p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* number of lines to show */
    line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
  }
}

.product-content-inside {
  display: flex;
  flex-direction: column;
  margin: auto;
  width: 100%;
  padding: 32px 0;
  gap: 24px;
}

.swiper {
  width: 100%;
  height: 500px;
  border-radius: 32px;
  overflow: hidden;
}

.swiper-slide {
  width: 400px;
  height: 600px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 32px;
}

.swiper-button {
  /* color: var(--neutral-50); */
  height: 48px;
  width: 48px;
}

.product-content-inside-top-frame {
  display: flex;
  width: 100%;
  padding: 32px 0;
  gap: 40px;
  flex-direction: column;
}

.product-detail-title-frame {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}

.product-detail-title {
  font-size: 48px;
  font-weight: 600;
  line-height: 57.6px;
  letter-spacing: -0.02em;
  text-align: left;
  color: var(--neutral-950);
}

.product-detail-hr {
  opacity: 0.2;
}

.product-detail-title-bottom {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
}

.product-detail-title-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-detail-title-bold {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.03em;
  text-align: left;
  color: var(--neutral-950);
}

.product-content-inside-info-cards-frame {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.product-content-inside-info-card-big {
  flex: 1;
  border-radius: 32px;
  border: 1px solid var(--neutral-200);
  box-shadow: 0px 1px 8px 0px #0000001f;
  padding: 32px;
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.product-content-info-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 38.4px;
  letter-spacing: -0.02em;
  text-align: left;
  color: var(--neutral-950);
}

.product-content-inside-info-card-default {
  padding: 20px;
  gap: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  box-shadow: 0px 1px 8px 0px #0000001f;
  border: 1px solid var(--Neutral-200, #e5e5e5);
  font-size: 16px;
  font-weight: 600;
  line-height: 19.2px;
  letter-spacing: -0.02em;
  text-align: left;
  color: var(--neutral-950);

  i {
    font-size: 32px;
    color: var(--carrot-orange-500);
  }
}

.product-content-inside-info-table {
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--neutral-200);
  box-shadow: 0px 1px 8px 0px #0000001f;

  #capacityProperties {
    display: none;
  }

  li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 16px 32px;
    gap: 8px;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.03em;
    text-align: left;
    color: var(--neutral-950);
  }

  ul li:nth-child(even) {
    background-color: var(--neutral-50);
  }

  ul li:nth-last-child(1) {
    padding-bottom: 32px;
  }
}

.product-content-table-top {
  display: flex;
  width: 100%;
  padding: 32px 32px 0px 32px;
  gap: 20px;
  flex-direction: column;
}

.product-table-switch-frame {
  display: flex;
  flex-direction: row;
  height: 49px;
  border-radius: 12px;
  padding: 4px;
  position: relative;
  gap: 4px;
  background-color: var(--neutral-100);
}

.product-table-switch-frame .product-table-switch-button:nth-child(even) {
  color: var(--carrot-orange-500);
}

.product-table-switch-button {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 16.8px;
  letter-spacing: 0.03em;
  text-align: center;
  color: var(--neutral-950);
  z-index: 5;
}

.product-table-switch-cursor {
  position: absolute;
  transition: 0.5s;
  width: 50%;
  left: 4px;
  height: 41px;
  background-color: white;
  border-radius: 8px;
  z-index: 1;
  box-shadow: 0px 1px 2px 1px #12121229;
}

.product-content-info-area {}

.product-content-inside-info-table .product-content-info-area:nth-child(odd) {
  /* Tek sayı indexli elemanlar için stil */
  /* Örnek stil */
}

.product-content-table-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 38.4px;
  letter-spacing: -0.02em;
  text-align: left;
  color: var(--neutral-950);
}

.contact-areas {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  flex: 1;
  min-height: 100%;
  padding: 128px, 32px, 128px, 0px;
}

.ai-end {
  align-items: flex-end;
}

.contact-area {
  display: flex;
  flex-direction: row;
  height: fit-content;
}

.contact-form {
  display: flex;
  flex-direction: column;
  padding: 0 32px;
  gap: 24px;
  width: 588px;
}

.contact-areas-left {
  display: flex;
  padding: 128px 32px 128px 0;
  flex-direction: column;
  justify-content: center;
}

.contact-areas-right {
  padding: 64px;
  min-height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--carrot-orange-500);
}

.contact-form-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
  text-align: left;
  color: var(--neutral-950);
}

.contact-form-description {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  text-align: left;
  color: var(--neutral-400);
}

input {
  outline: none;
  border: none;
}

.contact-form-text-fields {
  height: 46px;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  line-height: 21.6px;
  text-align: left;
  color: var(--neutral-400);
  padding: 12px 0;
  border-bottom: 1px solid var(--Neutral-300, #d4d4d4);
}

.contact-form-bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form-text-area {
  min-height: 80px;
  width: 100%;
  border: none;
  outline: none;
  padding: 12px 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 21.6px;
  text-align: left;
  color: var(--neutral-400);
  border-bottom: 1px solid var(--Neutral-300, #d4d4d4);
}

.contact-form-button {
  width: 100%;
  padding: 8px 12px;
  background-color: var(--carrot-orange-500);
  height: 40px;
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.03em;
  color: var(--neutral-50);
  text-transform: uppercase;
}

.contact-form-text-fields::placeholder {
  color: var(--neutral-400);
  /* Firefox */
}

.contact-form-text-area::placeholder {
  color: var(--neutral-400);
  /* Firefox */
}

.contact-form-checkbox-row {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 16.8px;
  text-align: left;
  gap: 8px;
  align-items: center;
}

.contact-form-checkbox {
  margin: auto 0;
  display: flex;
  height: 15px;
  width: 15px;
}

.p-64 {
  box-sizing: border-box;
  padding: 0 64px 0 64px !important;
}

.contact-area-title {
  max-width: 832px;
  margin: 0 64px;
  font-size: 56px;
  font-weight: 600;
  line-height: 67.2px;
  letter-spacing: -0.02em;
  text-align: left;
  color: var(--neutral-50);
}

.contact-area-span {
  font-size: 16px;
  margin: 0 64px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.03em;
  text-align: left;
  color: var(--neutral-50);
  opacity: 0.7;
  max-width: 832px;
}

.references-content {
  margin: auto;
  padding: 32px 0;
  gap: 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.references-button-frame {
  display: flex;
  flex-direction: row;
  width: 100%;
  flex-wrap: wrap;
  gap: 12px;
}

.references-button {
  padding: 8px 16px;
  display: flex;
  font-size: 14px;
  font-weight: 600;
  line-height: 16.8px;
  letter-spacing: 0.03em;
  text-align: center;
  color: var(--neutral-600);
  border-radius: 24px;
  border: 1px solid var(--Neutral-600, #525252);
}

.references-top {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}

.references-bottom {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}

.reference-content-inside {
  display: flex;
  flex-direction: column;
  padding: 32px 0;
  width: 100%;
  margin: auto;
}

.reference-content-top-slider {
  display: flex;
  flex-direction: row;
  overflow: hidden;
  overflow-x: scroll;
  gap: 24px;
  height: 500px;
  max-width: 100%;
}

.reference-content-top-slider-image {
  height: 500px;
  min-width: 800px;
  object-fit: cover;
  border-radius: 64px;
}

.reference-content-bottom-frame {
  display: flex;
  flex-direction: column;
  padding: 32px 0;
  gap: 24px;
}

.common-referances {
  background-color: var(--neutral-100);
}

.common-referances-inside {
  display: flex;
  width: 100%;
  margin: auto;
  padding: 64px 0;
  gap: 24px;
  flex-direction: column;
  align-items: center;
}

.common-referances-list {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.references-rows {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.references-rows-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 588px;
}

.references-row-image {
  border-radius: 128px 32px 128px 32px;
  height: 500px;
  aspect-ratio: 588/500;
  object-fit: cover;
}

.references-rows-title {
  font-size: 48px;
  font-weight: 600;
  line-height: 57.6px;
  letter-spacing: -0.02em;
  text-align: left;
  color: var(--neutral-950);
}

.references-rows:nth-child(odd) .references-rows-left {
  order: 2;
}

.references-rows:nth-child(odd) .references-row-image {
  order: 1;
}

.references-rows:nth-child(even) .references-rows-left {
  order: 1;
}

.references-rows:nth-child(even) .references-row-image {
  order: 2;
}

.fairs {
  padding: 32px 0;
}

.fairDetail-inside {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
}

.fairDetail-top-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top;
  border-radius: 24px;
}

.fairDetail-content-frame {
  display: flex;
  flex-direction: row;
  padding: 64px 0;
  gap: 24px;
  align-items: center;
}

.fairDetail-content-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 588px;
}

.fairDetail-content-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 38.4px;
  letter-spacing: -0.02em;
  text-align: left;
  color: var(--neutral-950);
}

.fairDetail-content-right {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 588px;
  height: 246px;

  .product-content-inside-info-card-default {
    min-width: 282px !important;
    width: 282px !important;
    padding: 20px;
    gap: 20px;
  }
}

.fairDetail-images-frame {
  display: flex;
  flex-direction: row;
  column-gap: 20px;
  row-gap: 24px;
  flex-wrap: wrap;
  width: 100%;
}

.fair-detail-images {
  flex: 1;
  min-width: 590px;
  height: 240px;
  border-radius: 32px;
}

.mw-600 {
  max-width: 600px;
}

.ta-center {
  text-align: center;
}

.blog-card {
  height: fit-content !important;
  aspect-ratio: none !important;
}

.blog-detail-content {
  display: flex;
  flex-direction: column;
  padding: 32px 0;
}

.blog-detail-content-image {
  width: 100%;
  height: 500px;
  border-radius: 64px;
  object-fit: cover;
  transition: all 0.5s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.blog-detail-description {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 64px 0;
  gap: 24px;
}

.g-24 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info {
  display: flex;
  padding: 64px 0;
  margin-top: -5px;
  background-color: var(--neutral-50);
}

.menu-lang-flags {
  display: none;
  flex-direction: row;
  gap: 8px;
  padding: 6px 12px;
}

.contact-rows {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.f2 {
  flex: 11;
}

.contact-info-area {
  display: flex;
  flex: 1;
  border-radius: 24px;
  flex-direction: column;
  padding: 20px;
  gap: 20px;
  border: 1px solid var(--Neutral-200, #e5e5e5);
}

.contact-area-desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  text-align: left;
  color: var(--neutral-400);
}

.contact-info-area {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
  background-color: white;
  color: var(--neutral-950);

  i {
    font-size: 32px;
    color: var(--carrot-orange-500);
  }
}

.mw-384 {
  max-width: 384px;
}

.menu-icon {
  font-size: 24px;
  display: none;
}

.menu-hr {
  display: none;
}

.about-description-image-vertical {
  display: none;
}

header {
  position: fixed;
  top: 0px;
  z-index: -20;
}

main {
  z-index: 1;
  background-color: white;
  border-radius: 64px;
}

.flag-active {
  padding: 2px;
  display: flex;
  margin: auto 0;
  max-height: 19px;
  justify-content: center;
  align-items: center;
  background-color: var(--carrot-orange-200);
}

@media (max-width: 1024px) {
  header {
    z-index: 99;
    background-color: white;
  }

  .menu-lang-flags span {
    min-width: 20px;
    margin: none;
    padding: none;
    aspect-ratio: 20/15;
    min-height: 15px;
  }

  .banner-icon-container {
    display: none;
  }

  .clock-icon {
    display: none;
  }

  .clock-text {
    display: none;
  }

  .top-banner-right-frame {
    margin: auto;
  }

  .size-limit-1200 {
    width: calc(100% - 32px);
  }

  .nav-items-list {
    display: none;
  }

  .lang-flags {
    display: none;
  }

  .menu-icon {
    display: flex;
  }

  .hero-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: -0.02em;
    text-align: center;
  }

  .hero-products-span {
    display: none;
  }

  .hero-products-title {
    font-size: 12px;
    font-weight: 600;
    line-height: 14.4px;
    letter-spacing: -0.02em;
    text-align: center;
  }

  .hero-bottom-area {
    height: 100px;
    margin-bottom: -50px;
    border: none;
    border-radius: 32px;
    width: calc(100% - 32px);
    min-width: calc(100% - 32px);
    max-width: calc(100% - 32px);
  }

  .single-product-section {
    flex-direction: column;
    margin-bottom: 80px;
    height: auto;
    gap: 32px;

    img {
      width: 100%;
      aspect-ratio: 348/300;
    }
  }

  .products-grid-frame {
    flex-direction: column;
  }

  .product-card {
    max-width: 100%;
    width: 100%;
    min-width: 100%;
  }

  .product-card-image {
    aspect-ratio: 348/250;
    height: unset;
  }

  .video {
    aspect-ratio: 380/400;
    height: unset;
  }

  .propose {
    padding: 32px 0;
  }

  .propose-inside {
    flex-direction: column;
    gap: 24px;
  }

  .four-images-frame {
    max-width: 100%;
    width: 100%;
    display: flex;
    border-radius: 32px;
  }

  .four-image-frame {
    width: 100%;
    height: 400px;
    gap: 24px;
    display: flex !important;
  }

  .four-image-frame-left {
    flex: 1;
  }

  .four-image-frame-right {
    flex: 1;
    padding-bottom: 64px;
  }

  .propose-left {
    padding: 0;
  }

  .news-top-frame {
    width: calc(100% - 32px);
  }

  .news-inside-frame {
    padding: 0;
  }

  .news {}

  .news-bottom-frame {
    flex-direction: column;
    padding: 0;
    margin: 0;
  }

  .news-content-frame {
    width: 100% !important;
    aspect-ratio: unset;
    max-width: 100%;
    min-width: 100% !important;
  }

  .news-image {
    width: 100%;
    aspect-ratio: unset;
    object-fit: cover;
    object-position: center;
  }

  .contact-inside-frame {
    flex-direction: column;
    align-items: flex-start;
    padding: 64px 16px;
    gap: 24px;

    a {
      margin: unset;
    }
  }

  .footer-inside {
    display: flex;
    flex-direction: column;
    width: calc(100% - 32px);
  }

  .footer-nav-items {
    flex: 1 !important;
    width: fit-content;
  }

  .nav-items-list {
    position: absolute;
    top: 100%;
    padding: 16px;
    gap: 8px;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    z-index: 10;
    transition: 0.5s;
    overflow: hidden;
    height: 0px;
    padding: 0px;
    left: 0;
    border-radius: 0 0 32px 32px;
    background: var(--Neutral-50, #fafafa);
  }

  .nav-items {
    padding: 6px 12px;
    width: 100%;
    text-align: center;
  }

  .menu-lang-flags {
    display: flex;
    width: 100%;
    justify-content: center;
    height: 100%;
    flex-direction: row;
  }

  .menu-hr {
    display: flex;
    width: 100%;
    opacity: 0.2;
  }

  .about-hero {
    height: 484px;
    padding: 128px 16px;
    gap: 12px;
  }

  .about-hero-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: -0.02em;
    text-align: center;
  }

  .about-hero-span {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.03em;
    text-align: center;
  }

  .description-inside {
    padding: 32px 0;
  }

  .description-article {
    padding: 0;
  }

  .about-description-image-vertical {
    display: flex;
    width: 100%;
  }

  .about-description-image {
    display: none;
  }

  .description-inside {
    gap: 32px;
  }

  .product-about-inside {
    padding: 32px 0;
    gap: 32px;
    flex-direction: column;
  }

  .product-about-content-areas {
    padding: 0;
  }

  .certificate-frame {
    flex-direction: column;
  }

  .certificate-card {
    width: 100%;
    min-width: 100%;
    aspect-ratio: unset;
  }

  .certificate-name {
    padding: 20px;
  }

  .product-inside-card {
    min-width: 100%;
    aspect-ratio: unset;
  }

  .references-rows {
    flex-direction: column;
  }

  .references-rows-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 28.8px;
    letter-spacing: -0.02em;
    text-align: left;
  }

  .references-row-image {
    width: 100%;
    height: unset;
    aspect-ratio: 348/300;
    order: 2 !important;
  }

  .references-content {
    gap: 32px;
  }

  .product-detail-title-bottom {
    flex-direction: column;
    gap: 20px;

    a {
      width: 100%;
    }
  }

  .product-detail-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: -0.02em;
    text-align: left;
  }

  .product-content-inside-info-cards-frame {
    flex-direction: column;
  }

  .product-content-info-area {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.03em;
    text-align: left;
  }

  .contact-area {
    display: flex;
    flex-direction: column;
    background-color: var(--Neutral-50);
  }

  .contact-form {
    padding: 0;
    width: 100%;
  }

  .contact-areas-left {
    width: 100%;
    padding: 0;
    padding: 64px 16px;
    background-color: var(--neutral-50);
  }

  .contact-form-top {
    gap: 8px;
    display: flex;
    flex-direction: column;
  }

  .contact-areas-right {
    display: flex;
    padding: 64px 16px;
    gap: 24px;
    flex-direction: column;
    align-items: flex-start !important;
  }

  .contact-area-title {
    min-width: 100%;
    margin: 0;
    text-align: left !important;
  }

  .contact-area-span {
    margin: 0;
    text-align: left !important;
  }

  .category-description-letter-frame {
    padding: 0;
    gap: 20px;
    padding: 16px 0;
  }

  .rounded-video {
    height: 400px;

    iframe {
      max-height: 100%;
    }
  }

  .contact-info {
    background-color: white;
  }

  .contact-rows {
    flex-direction: column;
  }
}

.lang-flags span {
  min-width: 20px !important;
  width: 20px;
}

.background-layer-image {
  position: absolute;
  margin: auto;
  display: flex;
  flex: 1;
  z-index: 0;
  align-self: center;
  height: calc(100% - 180px);
  padding: 89px 0;
}

.single-product-section {
  z-index: 5;
}

.swiper {
  width: 100%;
  height: 100%;
}

.references-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  height: 600px;
  min-width: 400px;
  max-width: 400px;

  img {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: -2;
  }

  h4 {
    margin: 32px;
    color: var(--neutral-50) !important;
    text-align: left;
    font-family: Urbanist;
    font-size: 32px;
    font-weight: 600;
    line-height: 38.4px;
    letter-spacing: -0.02em;
    text-align: left;
  }

  article {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    transition: 0.2s;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0) 49.73%,
        rgba(0, 0, 0, 0.7) 100%),
      linear-gradient(0deg, rgba(241, 117, 15, 0.3), rgba(241, 117, 15, 0.3));
  }
}

.references-layer {
  height: 614px;
  margin: auto;
  top: 167px;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.video-container {
  position: relative;
}

.layer-text {
  font-family: Urbanist;
  font-size: 512px;
  font-weight: 600;
  line-height: 614.4px;
  letter-spacing: -0.02em;
  color: transparent;
  overflow: visible;
  min-width: 100%;
  -webkit-text-stroke: 1px var(--neutral-200);
  display: inline-block;
  min-width: fit-content;
  text-wrap: nowrap;
}

.propose .background-layer-image {
  padding-top: 240px;
}

.news .background-layer-image {
  padding-top: 30px;
}

.animated-button {
  color: transparent !important;
}

.animated-button::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  top: 0%;
  transition: 0.2s;
  color: var(--carrot-orange-500);
}

.animated-button::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  display: flex;
  height: 100%;
  width: 100%;
  top: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: 0.2s;
  color: var(--carrot-orange-500);
}

.animated-button:hover::after {
  top: 0%;
}

.animated-button:hover::before {
  top: -100%;
}

.color-white.animated-button::before,
.color-white.animated-button::after {
  color: white !important;
}

.border-white {
  border-color: var(--neutral-50);
}

.references-slide button {
  margin-right: auto;
  margin-bottom: -76px;
  transition: 0.2s;
}

.references-slide:hover button {
  margin-bottom: 0px;
}

.references-slide:hover article {
  background: var(--carrot-orange-500);
  opacity: 0.8;
}

.footer-bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;

  div:last-of-type {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  span:first-of-type {
    font-family: Urbanist;
    font-size: 12px;
    font-weight: 600;
    line-height: 14.4px;
    letter-spacing: 0.03em;
    text-align: left;
    color: var(--neutral-50);
    opacity: 0.7;
  }

  span:last-of-type {
    font-family: Urbanist;
    font-size: 12px;
    font-weight: 600;
    line-height: 14.4px;
    letter-spacing: 0.03em;
    text-align: left;
    color: var(--neutral-50);
  }

  i {
    color: var(--neutral-50);
    margin: auto 0;
    font-size: 16px;
    margin-bottom: 3px;
  }
}

#breadcrumbs {
  display: flex;
  flex-direction: row;
  gap: 4px;
  font-family: Urbanist;
  font-size: 13px;
  font-weight: 600;
  line-height: 15.6px;
  letter-spacing: 0.03em;
  text-align: left;
  color: var(--neutral-400);

  i {
    font-size: 16px;
  }

  span span:last-of-type {
    color: var(--carrot-orange-500);
  }
}

.form-message {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.contact-form label.error {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}

.contact-form input.error,
.contact-form textarea.error {
  border-color: #dc3545;
}

.contact-form-checkbox.error+label {
  color: #dc3545;
}

.category-description {
  width: 100%;
  padding: 80px 0;
  background-color: var(--neutral-50);
  position: relative;
}

.category-description-inside {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 20px;
}

.category-description-inside p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: var(--neutral-600);
  margin-bottom: 16px;
}

.category-description-inside h1,
.category-description-inside h2,
.category-description-inside h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--neutral-950);
  margin-bottom: 24px;
}

.category-description-inside ul,
.category-description-inside ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.category-description-inside li {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--neutral-600);
  margin-bottom: 8px;
}

@media (max-width: 1024px) {
  .category-description {
    padding: 48px 0;
  }

  .category-description-inside h1,
  .category-description-inside h2,
  .category-description-inside h3 {
    font-size: 24px;
  }
}

/* Hover Effects */
.product-page-card-button {
  transition: all 0.3s ease;
}

.product-page-card-button:hover {
  background-color: var(--carrot-orange-500);
  color: var(--neutral-50);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(241, 117, 15, 0.2);
}

.base-button {
  transition: all 0.3s ease;
}

.base-button:hover {
  background-color: var(--carrot-orange-500);
  color: var(--neutral-50);
  border-color: var(--carrot-orange-500);
  transform: translateY(-2px);
}

.full-orange:hover {
  background-color: var(--carrot-orange-600);
  border-color: var(--carrot-orange-600);
  color: var(--neutral-50);
}

.nav-items {
  transition: all 0.3s ease;
}

.nav-items:hover {
  color: var(--carrot-orange-500);
  transform: translateY(-1px);
}

.references-button {
  transition: all 0.3s ease;
}

.references-button:hover {
  background-color: var(--carrot-orange-500);
  color: var(--neutral-50);
  border-color: var(--carrot-orange-500);
}

.product-card {
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.news-content-frame {
  transition: all 0.3s ease;
}

.news-content-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-form-button {
  transition: all 0.3s ease;
}

.contact-form-button:hover {
  background-color: var(--carrot-orange-600);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(241, 117, 15, 0.2);
}

.bg-orange:hover {
  background-color: var(--carrot-orange-600);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(241, 117, 15, 0.2);
}

.detail-icon {
  transition: all 0.3s ease;
}

.detail-icon:hover {
  background-color: var(--carrot-orange-500);
  color: var(--neutral-50);
}

.detail-icon:hover i {
  color: var(--neutral-50);
}

.footer-nav-items {
  transition: all 0.3s ease;
}

.footer-nav-items:hover {
  color: var(--carrot-orange-500);
  transform: translateX(4px);
}

.product-table-switch-button {
  transition: all 0.3s ease;
}

.product-table-switch-button:hover {
  color: var(--carrot-orange-500);
}

.contact-info-area {
  transition: all 0.3s ease;
}

.contact-info-area:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.hero-products:hover .hero-products-overlay {
  opacity: 0.95;
  background: var(--carrot-orange-500);
}

.hero-products:hover .dark-overlay {
  opacity: 0.95;
  background: var(--carrot-orange-600);
}

.hero-products:hover .hero-products-span {
  transform: translateY(-4px);
  color: var(--carrot-orange-100);
}

.hero-products:hover .hero-products-title {
  transform: translateY(-4px);
  color: var(--neutral-50);
}

.hero-products:hover .hero-product-images {
  transform: scale(1.05);
}

/* Blog Detail Page Styles */
.blog-detail-content {
  padding: 48px 0;
}

.blog-detail-content-image {
  width: 100%;
  height: 500px;
  border-radius: 64px;
  object-fit: cover;
  transition: all 0.5s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.blog-detail-description {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 64px 0;
  gap: 24px;
}

.category-description-letter-frame.no-padding {
  max-width: 800px;
  margin: 0 auto;
}

.category-description-letter-frame .orange {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.03em;
  color: var(--carrot-orange-500);
  display: inline-block;
  margin-bottom: 8px;
}

.category-description-letter-frame .section-title {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 32px;
  color: var(--neutral-950);
}

.category-description-letter-frame .transparent-p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--neutral-600);
}

.category-description-letter-frame .transparent-p p {
  margin-bottom: 24px;
}

.category-description-letter-frame .transparent-p img {
  border-radius: 24px;
  margin: 32px 0;
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

.category-description-letter-frame .transparent-p img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.category-description-letter-frame .transparent-p a {
  color: var(--carrot-orange-500);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.category-description-letter-frame .transparent-p a:hover {
  color: var(--carrot-orange-600);
  text-decoration: underline;
}

.splitter {
  padding: 32px 0;
  margin-top: 32px;
  border-top: 1px solid var(--neutral-200);
}

.splitter .base-button.bg-orange {
  min-width: 200px;
  justify-content: center;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .blog-detail-content {
    padding: 32px 0;
  }

  .blog-detail-content-image {
    height: 300px;
    border-radius: 32px;
  }

  .blog-detail-description {
    padding: 32px 0;
  }

  .category-description-letter-frame .section-title {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .category-description-letter-frame .transparent-p {
    font-size: 16px;
  }

  .splitter {
    padding: 24px 0;
    margin-top: 24px;
  }

  .splitter .base-button.bg-orange {
    min-width: 160px;
    padding: 12px 20px;
  }
}


/* Contact Form Styles */
.contact-form {
  display: flex !important;
  flex-direction: column !important;
  padding: 0 32px !important;
  gap: 24px !important;
  width: 588px !important;
}

.contact-form-top {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.contact-form-title {
  font-size: 40px !important;
  font-weight: 600 !important;
  line-height: 48px !important;
  text-align: left !important;
  color: var(--neutral-950) !important;
}

.contact-form-description {
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 21px !important;
  text-align: left !important;
  color: var(--neutral-400) !important;
}

.contact-form-bottom {
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
}

.contact-form-text-fields {
  height: 46px !important;
  width: 100% !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  line-height: 21.6px !important;
  text-align: left !important;
  color: var(--neutral-400) !important;
  padding: 12px 0 !important;
  border: none !important;
  border-bottom: 1px solid var(--Neutral-300, #d4d4d4) !important;
  outline: none !important;
  background: transparent !important;
}

.contact-form-text-area {
  min-height: 80px !important;
  width: 100% !important;
  border: none !important;
  outline: none !important;
  padding: 12px 0 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  line-height: 21.6px !important;
  text-align: left !important;
  color: var(--neutral-400) !important;
  border-bottom: 1px solid var(--Neutral-300, #d4d4d4) !important;
  resize: vertical !important;
  background: transparent !important;
}

.contact-form-button {
  width: 100% !important;
  padding: 8px 12px !important;
  background-color: var(--carrot-orange-500) !important;
  height: 40px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 24px !important;
  letter-spacing: 0.03em !important;
  color: var(--neutral-50) !important;
  text-transform: uppercase !important;
  border: none !important;
}

.contact-form-checkbox-row {
  width: 100% !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 16.8px !important;
  text-align: left !important;
  gap: 8px !important;
}

.contact-form-checkbox {
  margin: auto 0 !important;
  display: flex !important;
  height: 15px !important;
  width: 15px !important;
}

/* Gravity Forms Custom Styling */
.gform_wrapper {
  display: flex !important;
  flex-direction: column !important;
  padding: 0 32px !important;
  gap: 24px !important;
  width: 588px !important;
}

.gform_body .gform_fields {
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.gform_body .gfield {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
}

.ginput_container {
  margin: 0 !important;
  padding: 0 !important;
}

.ginput_container input[type="text"],
.ginput_container input[type="tel"],
.ginput_container input[type="email"] {
  height: 46px !important;
  width: 100% !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  line-height: 21.6px !important;
  text-align: left !important;
  color: var(--neutral-400) !important;
  padding: 12px 0 !important;
  margin: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  border-bottom: 1px solid var(--Neutral-300, #d4d4d4) !important;
  outline: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.ginput_container textarea {
  min-height: 80px !important;
  width: 100% !important;
  border: none !important;
  border-radius: 0 !important;
  outline: none !important;
  padding: 12px 0 !important;
  margin: 0 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  line-height: 21.6px !important;
  text-align: left !important;
  color: var(--neutral-400) !important;
  border-bottom: 1px solid var(--Neutral-300, #d4d4d4) !important;
  resize: vertical !important;
  background: transparent !important;
  box-shadow: none !important;
}

.gform_footer {
  width: 100% !important;
  margin: 24px 0 0 0 !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
}

.gform_button {
  width: 100% !important;
  padding: 8px 12px !important;
  background-color: var(--carrot-orange-500) !important;
  height: 40px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 24px !important;
  letter-spacing: 0.03em !important;
  color: var(--neutral-50) !important;
  text-transform: uppercase !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer !important;
}

/* Hide Labels */
.gfield_label,
.gfield_required,
.gform_required_legend {
  display: none !important;
}

/* Validation Styles */
.gform_validation_errors {
  padding: 15px !important;
  margin-bottom: 20px !important;
  border-radius: 4px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  background-color: #f8d7da !important;
  color: #721c24 !important;
  border: 1px solid #f5c6cb !important;
}

.validation_message {
  color: #dc3545 !important;
  font-size: 12px !important;
  margin-top: 5px !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
}

.gfield_error input,
.gfield_error textarea {
  border-color: #dc3545 !important;
}

/* Responsive styles */
@media (max-width: 1024px) {

  .contact-form,
  .gform_wrapper {
    padding: 0 !important;
    width: 100% !important;
  }
}

.references-button-frame .references-button.active {
  background-color: var(--carrot-orange-500) !important;
  color: var(--neutral-50) !important;
  border-color: var(--carrot-orange-500) !important;
}