@charset "UTF-8";
/* --------------------------------

Breakpoints

-------------------------------- */
/* --------------------------------

Nasıl Uygulanır?

  @include mq("mobil") {
    font-size: 3.8rem;
    width: 80%;
 }

 @include mq("tablet") {
    font-size: 3.2rem;
    text-align: left;
    width: 100%;
 }

-------------------------------- */
/* --------------------------------

Some common breakpoints for devices with different screen sizes are:

320px — 480px: Mobile devices
481px — 768px: iPads, Tablets
769px — 1024px: Small screens, laptops
1025px — 1200px: Desktops, large screens
1201px and more —  Extra large screens, TV

-------------------------------- */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/*! formalize.css | MIT License | github.com/interacthings/formalize */
*, *:before, *:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
}

img {
  vertical-align: middle;
}

blockquote, dl, dd, h1, h2, h3, h4, h5, h6, figure, p, pre, fieldset, ul, ol, menu, form {
  margin: 0;
}

button, fieldset, iframe {
  border: 0;
}

fieldset, ul, ol, button, menu {
  padding: 0;
}

ol, ul {
  list-style: none;
}

textarea {
  resize: vertical;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

td {
  padding: 0;
}

* {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

html,
body {
  width: 100%;
  color: #fafafa;
  scroll-behavior: smooth;
  backface-visibility: hidden;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #0b0b0b;
}

html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none;
}

img {
  object-fit: cover;
  display: block;
}

button {
  cursor: pointer;
  background-color: transparent;
}

.container {
  width: 90%;
  max-width: 184rem;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.container-s {
  width: 72%;
  max-width: 184rem;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 768px) {
  .container-s {
    width: 80%;
  }
}

a,
a:visited,
a:hover,
a:active {
  text-decoration: none !important;
}

.bg-black {
  background-color: #0b0b0b;
  color: #fafafa;
}

.bg-white {
  background-color: #fafafa;
  color: #0b0b0b;
}

.bg-gradient {
  background: linear-gradient(to bottom, rgb(11, 11, 11) 50%, rgb(250, 250, 250) 50%);
}

.pd {
  padding-top: 12.5rem;
  padding-bottom: 12.5rem;
}
@media (max-width: 1024px) {
  .pd {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
@media (max-width: 768px) {
  .pd {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
}

.pd-s {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media (max-width: 1024px) {
  .pd-s {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
@media (max-width: 768px) {
  .pd-s {
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
  }
}

.full-screen {
  width: 100%;
  height: 100dvh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-image: url(/img/wave1.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 480px) {
  .full-screen {
    height: 80dvh;
    justify-content: flex-start;
  }
}

.Header {
  margin: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100;
}
.Header-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.Header-nav li a {
  color: #fafafa;
  font-weight: 400;
  font-size: 0.75rem;
}
.Header-nav li a:hover {
  color: #c90d0d;
}
.Header-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 130;
}
.Header-toggle .Header-toggle-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}
.Header-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 7, 7, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 120;
}
@media (max-width: 1024px) {
  .Header-nav {
    position: fixed;
    top: 0;
    right: -50%;
    width: 36%;
    height: 100%;
    background: #0b0b0b;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem;
    transition: right 0.3s ease;
    z-index: 125;
  }
  .Header-nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .Header-nav {
    width: 50%;
  }
}
.Header.is-open .Header-nav {
  right: 0;
}
.Header.is-open .Header-overlay {
  opacity: 1;
  visibility: visible;
}
.Header.is-open .Header-toggle-icon {
  transform: rotate(90deg);
}
@media (max-width: 1024px) {
  .Header-toggle {
    display: flex;
  }
  .Header-nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }
}

html.no-scroll,
body.no-scroll {
  overflow: hidden;
  height: 100%;
}

.AboveText {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-left: auto;
  margin-right: auto;
  transform: translateY(-8rem);
}
@media (max-width: 1920px) {
  .AboveText {
    transform: translateY(-4rem);
  }
}
@media (max-width: 480px) {
  .AboveText {
    transform: translateY(60%);
    gap: 0.4rem;
  }
}
.AboveText-h {
  font-weight: 300;
  font-size: 10vw;
  font-size: clamp(1rem, 10vw, 12rem);
  text-align: center;
}
.AboveText-h span {
  font-weight: 700;
}
.AboveText-p {
  width: 72%;
  font-weight: 300;
  font-size: 1.25rem;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 1200px) {
  .AboveText-p {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .AboveText-p {
    font-size: 1rem;
  }
}

.Scroll {
  transform: translateY(-2.5rem);
}
@media (max-width: 480px) {
  .Scroll {
    display: none;
  }
}
.Scroll span {
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 1px solid #a3a3a3;
  border-right: 1px solid #a3a3a3;
  transform: rotate(45deg);
  margin: -8px;
  animation: animate 2s infinite;
}
.Scroll span:nth-child(2) {
  animation-delay: -0.2s;
}
.Scroll span:nth-child(3) {
  animation-delay: -0.4s;
}
@keyframes animate {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-16px, -16px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(16px, 16px);
  }
}

.Before {
  padding-top: 6.25rem;
  padding-bottom: 12.5rem;
  position: relative;
}
@media (max-width: 1024px) {
  .Before {
    padding-top: 4rem;
    padding-bottom: 8rem;
  }
}
@media (max-width: 768px) {
  .Before {
    padding-top: 3.125rem;
    padding-bottom: 6.25rem;
  }
}
.Before-header {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.Before-header-t {
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 1.6px;
}
.Before-header-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.Before-header-button-l {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1.6px;
  color: #c90d0d;
}
.Before-content {
  margin-top: 2.5rem;
}
.Before-content-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .Before-content-item {
    flex-direction: column;
    align-items: center;
  }
}
.Before-content-item-img {
  width: 50%;
  height: 72dvh;
}
@media (max-width: 1920px) {
  .Before-content-item-img {
    height: 60dvh;
  }
}
@media (max-width: 768px) {
  .Before-content-item-img {
    width: 100%;
    height: 100%;
  }
}
.Before-content-item-img img {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .Before-content-item-img img {
    aspect-ratio: 4/2.5;
  }
}
.Before-content-item-info {
  width: 45%;
}
@media (max-width: 768px) {
  .Before-content-item-info {
    margin-top: 2.4rem;
    width: 100%;
  }
}
.Before-content-item-info-h {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 4px;
}
.Before-content-item-info-h span {
  font-weight: 700;
}
.Before-content-item-info-p {
  font-size: 1rem;
  line-height: 1.4;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}
.Before-content-item-info-p p + p {
  margin-top: 0.625rem;
}
.Before-content-item-info-icons {
  display: flex;
  width: 66%;
  flex-wrap: wrap;
  gap: 2.25rem;
  column-gap: 2.25rem;
}
@media (max-width: 768px) {
  .Before-content-item-info-icons {
    width: 100%;
    justify-content: space-around;
  }
}
.Before-content-item-info-icons-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 20%;
}
.Before-content-item-info-icons-item-t {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 300;
}
.Before .swiper-wrapper {
  padding-bottom: 5rem !important;
}
@media (max-width: 768px) {
  .Before .swiper-wrapper {
    padding-bottom: 0;
  }
}
.Before .swiper-pagination {
  display: flex;
  justify-content: center;
  width: 100% !important;
  margin-left: auto;
  margin-right: auto;
}
.Before .swiper-pagination-bullet {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 0.875rem;
  color: #fafafa;
  opacity: 1;
  background-color: #0b0b0b;
}
.Before .swiper-pagination-bullet-active {
  color: #fafafa;
  border: solid 1px #c90d0d;
}
.Before .swiper-horizontal > .swiper-pagination-bullets,
.Before .swiper-pagination-bullets.swiper-pagination-horizontal,
.Before .swiper-pagination-custom,
.Before .swiper-pagination-fraction {
  width: auto;
}

.Video-media {
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
}
@media (max-width: 768px) {
  .Video-media {
    aspect-ratio: 4/3;
  }
}

.Advantages {
  color: #0b0b0b;
}
.Advantages .accordion-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 4rem;
}
@media (max-width: 768px) {
  .Advantages .accordion-wrapper {
    flex-direction: column-reverse;
  }
}
.Advantages-h2 {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 3.2px;
  width: 60%;
  margin-bottom: 5rem;
  margin-top: 2.5rem;
}
@media (max-width: 1200px) {
  .Advantages-h2 {
    width: 80%;
  }
}
@media (max-width: 1024px) {
  .Advantages-h2 {
    width: 88%;
  }
}
@media (max-width: 768px) {
  .Advantages-h2 {
    width: 100%;
    font-size: 1.5rem;
    letter-spacing: 1.8px;
    margin-bottom: 2rem;
  }
}
.Advantages-accordion {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
}
@media (max-width: 768px) {
  .Advantages-accordion {
    width: 100%;
  }
}
.Advantages-accordion-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-bottom: 1px solid #d1d1d1;
  padding: 1.5rem 0;
}
.Advantages-accordion-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.Advantages-accordion-item-head-h {
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 2px;
}
.Advantages-accordion-item-content {
  max-height: 0;
  overflow: hidden;
}
.Advantages-accordion-item-content p {
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 300;
  width: 90%;
}
.Advantages-accordion-item.active .Advantages-accordion-item-head-h {
  font-weight: 700;
  color: #c90d0d;
}
.Advantages-accordion-item.active .Advantages-accordion-item-content {
  max-height: 300px;
  margin-top: 1rem;
}
.Advantages-accordion-item.active .Advantages-accordion-item-head-icon img {
  transform: rotate(180deg);
}
.Advantages-image {
  width: 50%;
  height: auto;
  aspect-ratio: 4/3.5;
  position: relative;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .Advantages-image {
    width: 100%;
  }
}
.Advantages-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .Advantages-image img {
    aspect-ratio: 4/2.5;
  }
}

.Usage {
  padding-top: 12.5rem;
  padding-bottom: 6.25rem;
}
@media (max-width: 1024px) {
  .Usage {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }
}
@media (max-width: 768px) {
  .Usage {
    padding-top: 6.25rem;
    padding-bottom: 3.125rem;
  }
}
.Usage-content {
  width: 100%;
}
.Usage-content-item-img {
  width: 100%;
  overflow: hidden;
}
.Usage-content-item-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  transition: transform 0.6s ease;
  transform: scale(1);
}
.Usage-content-item-img:hover img {
  transform: scale(1.02);
}
.Usage-content-item-info {
  margin-top: 2.5rem;
}
.Usage-content-item-info-t {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 3.2px;
}
.Usage-content-item-info-p {
  width: 92%;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 1rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .Usage-content-item-info-p {
    width: 100%;
  }
}

.Shortcut {
  padding-bottom: 6.25rem;
}
.Shortcut .container-s {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .Shortcut .container-s {
    flex-direction: column;
  }
}
.Shortcut-item {
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 2rem;
  box-sizing: border-box;
  border: 1px solid #c90d0d;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 1.8px;
  color: #c90d0d;
  text-align: center;
}
@media (max-width: 768px) {
  .Shortcut-item {
    width: 100%;
    padding: 2rem 1rem;
    font-size: 1rem;
  }
}
.Shortcut-item:hover {
  border: 1px solid #fafafa;
  background-color: #fafafa;
  color: #0b0b0b;
}

.Footer {
  color: #0b0b0b;
  text-align: center;
  font-size: 1rem;
  font-weight: 300;
  padding: 1.25rem 0;
}
@media (max-width: 768px) {
  .Footer {
    font-size: 0.75rem;
  }
}
.Footer span {
  font-weight: 500;
  color: #c90d0d;
}

.half-screen {
  width: 100%;
  height: 60dvh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url(/img/wave2.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .half-screen {
    height: 48dvh;
  }
}

.AboveText2 {
  margin-left: auto;
  margin-right: auto;
  transform: translateY(75%);
}
@media (max-width: 1024px) {
  .AboveText2 {
    transform: translateY(150%);
  }
}
.AboveText2-h {
  font-weight: 300;
  font-size: 10vw;
  font-size: clamp(2rem, 5vw, 12rem);
  text-align: center;
}
.AboveText2-h span {
  font-weight: 700;
}

.Journey .container-s {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.Journey-year {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.Journey-year-t {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 2px;
}
.Journey-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
.Journey-item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.Journey-item-head {
  width: 80%;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 4px;
}
@media (max-width: 768px) {
  .Journey-item-head {
    width: 100%;
    font-size: 1.5rem;
    letter-spacing: 1.8px;
  }
}
.Journey-item-head span {
  font-weight: 700;
}
.Journey-item-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
}
.Journey-item-content-img {
  width: 100%;
}
.Journey-item-content-img img {
  width: 100%;
  aspect-ratio: 2/1;
}
.Journey-item-content-text {
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 400;
}
@media (max-width: 768px) {
  .Journey-item-content-text {
    font-size: 1rem;
  }
}
.Journey-item-content-text p + p {
  margin-top: 0.625rem;
}
.Journey-item-content-text span {
  color: #c90d0d;
  font-weight: 900;
}
.Journey-item-content-table {
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}
.Journey-item-content-table .ihale-tablosu {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  min-width: 600px;
}
.Journey-item-content-table .ihale-tablosu th,
.Journey-item-content-table .ihale-tablosu td {
  border: 1px solid #d1d1d1;
  padding: 0.75rem 0.25rem;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
.Journey-item-content-table .ihale-tablosu th {
  font-weight: 900;
  background-color: #fafafa;
  color: #0b0b0b;
}
.Journey-item-content-table .ihale-tablosu th span {
  font-weight: 400;
}
.Journey-item-content-table .ihale-tablosu tfoot td {
  color: #c90d0d;
  font-weight: 900;
}
.Journey .Journey-item + .Journey-item {
  padding-top: 3.75rem;
  border-top: 0.02px solid #a3a3a3;
}

.Faq {
  padding-top: 12.5rem;
  padding-bottom: 6.25rem;
}
@media (max-width: 1024px) {
  .Faq {
    padding-top: 8rem;
  }
}
@media (max-width: 768px) {
  .Faq {
    padding-top: 6.25rem;
  }
}
.Faq-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.Faq-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fafafa;
  padding-bottom: 2.5rem;
  border-bottom: 0.4px solid #a3a3a3;
}
.Faq-list-item-content {
  display: flex;
  flex-direction: column;
}
.Faq-list-item-content-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  cursor: pointer;
}
.Faq-list-item-content-head-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 2px;
  width: 80%;
}
@media (max-width: 768px) {
  .Faq-list-item-content-head-title {
    width: 92%;
  }
}
.Faq-list-item-content-head-arrow {
  margin-top: 4px;
}
.Faq-list-item-content-p {
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 1.8px;
  font-weight: 300;
  color: #a3a3a3;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.Faq .Faq-list-item.active .Faq-list-item-content-head-arrow {
  transform: rotate(180deg);
}/*# sourceMappingURL=main.css.map */