@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap");
@font-face {
  font-family: NBInternationalPro-Bold;
  src: url("./../fonts/NBInternationalPro-Bold.otf") format("opentype");
}
button:focus {
  outline: none !important;
  box-shadow: none !important;
}

body,
html {
  font-family: "NBInternationalPro-Bold";
}

.menu-layout {
  transition: all 1s;
  z-index: 999;
}
.menu-layout.disabled-anim span {
  display: none;
}
.menu-layout.disabled-anim .show-menu-button {
  display: none;
}
.menu-layout.disabled-anim .menu-page-close-btn {
  display: block;
}
.menu-layout span {
  cursor: pointer;
  transition: all 1s;
  font-weight: 100;
  font-family: "Roboto Mono", monospace;
  font-size: 14px !important;
}
.menu-layout span:hover {
  color: white !important;
}

.home-page-title-section {
  transition: all 1s;
}
.home-page-title-section.disabled-anim {
  opacity: 0;
}
.home-page-title-section-title {
  font-size: 8rem;
  font-family: "NBInternationalPro-Bold";
}
.home-page-title-section-description {
  position: relative;
  font-size: 2rem;
  transition: all 0.6s;
}
.home-page-title-section-description:hover {
  color: white !important;
}
.home-page-title-section-description::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -95%;
  width: 95%;
  height: 1px;
  background-color: var(--current-color);
}
.home-page-title-section .slide-box {
  overflow: hidden;
}
.home-page-title-section .slide-box-item {
  overflow: hidden;
  width: 100% !important;
}
.home-page-title-section .slide-box-item:last-child {
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}
.home-page-title-section .slide-box-item.child {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
}
.home-page-title-section .slide-box-item-char {
  transition: all 1s;
  font-size: 6rem;
  font-family: "NBInternationalPro-Bold";
  display: inline-block;
}
.home-page-title-section .slide-box-item-char.active {
  transform: translateY(0%);
}
.home-page-title-section .slide-box-item-char.disabled {
  transform: translateY(-100%);
}

#custom-cursor {
  position: absolute;
  width: 48px;
  left: -10000px;
}

.menu-page {
  position: relative;
  transition: all 2s;
  background-color: #2c3b8e;
  color: white;
}
.menu-page.disabled {
  opacity: 0;
}
.menu-page-close-btn {
  font-size: 24px;
  transition: all 0.5s;
  display: none;
}
.menu-page-row {
  padding-top: 5rem;
  padding-bottom: 10rem;
}
.menu-page img {
  transition: all 1s;
}
.menu-page-item a {
  color: white;
  text-decoration: none;
}
.menu-page-item h2 {
  transition: all 0.5s;
  text-align: left;
  letter-spacing: 2px;
  margin-top: 2rem;
  word-break: break-word;
}
.menu-page-item-list span {
  transition: all 0.5s;
  display: block;
  text-align: left;
  font-family: "Quicksand", sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-top: 0.5rem;
  cursor: pointer;
  word-break: break-word;
}

.home-page-title-section .content__item {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  counter-increment: itemcounter;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  pointer-events: none;
}
.home-page-title-section .content__item::before {
  color: var(--color-number);
  position: absolute;
  top: 0;
  left: 0;
}
.home-page-title-section .button {
  pointer-events: auto;
  cursor: pointer;
  border: none;
  padding: 1.5rem 3rem;
  margin: 0;
  font-family: "Roboto Mono", monospace;
  font-size: inherit;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}
.home-page-title-section .button--skoll {
  overflow: hidden;
  border-radius: 50%;
  background-color: transparent;
  width: 100px;
  height: 100px;
  padding: 0;
  font-weight: 500;
  border-width: 1px;
  border-style: solid;
}
.home-page-title-section .button--skoll:hover span {
  color: white !important;
}
.home-page-title-section .button--skoll span {
  display: block;
  position: relative;
}
.home-page-title-section .button--skoll > span {
  overflow: hidden;
}
.home-page-title-section .button--skoll:hover > span > span {
  animation: MoveUpInitial 0.2s forwards, MoveUpEnd 0.2s forwards 0.2s;
}
.home-page-title-section .button--skoll::before {
  content: "";
  background: var(--current-color);
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  border-radius: 50%;
  transform: translate3d(0, 100%, 0);
  transition: transform 0.3s;
  transition-timing-function: cubic-bezier(0.7, 0, 0.2, 1);
}
.home-page-title-section .button--skoll:hover::before {
  transform: translate3d(0, 0, 0);
}
.home-page-title-section .button::before,
.home-page-title-section .button::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home-page-title-section .direction-arrow-left {
  position: fixed;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  width: 96px;
  height: 96px;
}
.home-page-title-section .direction-arrow-right {
  position: fixed;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  width: 96px;
  height: 96px;
}
.home-page-title-section.disabled-anim .direction-arrow-left {
  transition: all 0.5s;
  transform: translateX(-250%) translateY(-50%);
}
.home-page-title-section.disabled-anim .direction-arrow-right {
  transition: all 0.5s;
  transform: translateX(250%) translateY(-50%);
}

.footer-layout {
  bottom: 0;
  transition: all 1s;
  font-weight: 100;
  font-family: "Roboto Mono", monospace;
}
.footer-layout span,
.footer-layout a {
  font-size: 14px !important;
}
.footer-layout.disabled-anim {
  transform: translateY(150%);
}
.footer-layout.disabled-anim .show-menu-button {
  display: none;
}
.footer-layout-left {
  font-weight: 500;
}
.footer-layout #footer-sound {
  font-size: 24px;
}
.footer-layout .show-menu-button {
  cursor: pointer;
  color: white;
}
.footer-layout-lang {
  padding: 0.25rem 0.5rem !important;
  border: 1px solid var(--current-color);
  border-radius: 20px;
  transition: all 0.45s;
}
.footer-layout-lang:hover {
  color: #fff !important;
  border-color: #fff !important;
  opacity: 0.7;
  text-decoration: none;
}

.company-subpage,
.product-subpage,
.production-subpage,
.sustainability-subpage,
.human-resources-subpage {
  user-select: auto;
  background-color: #171717;
  color: white;
}
.company-subpage .scroll-down-img,
.product-subpage .scroll-down-img,
.production-subpage .scroll-down-img,
.sustainability-subpage .scroll-down-img,
.human-resources-subpage .scroll-down-img {
  position: absolute;
  top: 10vh;
  right: 15vw;
  -webkit-user-drag: none;
  max-width: 15%;
}
.company-subpage .menu-layout.anim .text-xl-left,
.product-subpage .menu-layout.anim .text-xl-left,
.production-subpage .menu-layout.anim .text-xl-left,
.sustainability-subpage .menu-layout.anim .text-xl-left,
.human-resources-subpage .menu-layout.anim .text-xl-left {
  opacity: 0;
  -webkit-animation: customFadeAnimation 2s forwards;
  animation: customFadeAnimation 2s forwards;
}
.company-subpage .menu-layout.anim .text-xl-center,
.product-subpage .menu-layout.anim .text-xl-center,
.production-subpage .menu-layout.anim .text-xl-center,
.sustainability-subpage .menu-layout.anim .text-xl-center,
.human-resources-subpage .menu-layout.anim .text-xl-center {
  opacity: 0;
  -webkit-animation: customFadeAnimation 1s forwards;
  animation: customFadeAnimation 1s forwards;
}
.company-subpage .menu-layout.anim .text-xl-right,
.product-subpage .menu-layout.anim .text-xl-right,
.production-subpage .menu-layout.anim .text-xl-right,
.sustainability-subpage .menu-layout.anim .text-xl-right,
.human-resources-subpage .menu-layout.anim .text-xl-right {
  opacity: 0;
  -webkit-animation: customFadeAnimation 2s forwards;
  animation: customFadeAnimation 2s forwards;
}
.company-subpage .menu-layout span,
.product-subpage .menu-layout span,
.production-subpage .menu-layout span,
.sustainability-subpage .menu-layout span,
.human-resources-subpage .menu-layout span {
  color: #41c0ed;
}
.company-subpage #starter-section h4,
.company-subpage #starter-section h1,
.company-subpage #starter-section h2,
.company-subpage #starter-section h6,
.company-subpage #starter-section p:not(.wow),
.product-subpage #starter-section h4,
.product-subpage #starter-section h1,
.product-subpage #starter-section h2,
.product-subpage #starter-section h6,
.product-subpage #starter-section p:not(.wow),
.production-subpage #starter-section h4,
.production-subpage #starter-section h1,
.production-subpage #starter-section h2,
.production-subpage #starter-section h6,
.production-subpage #starter-section p:not(.wow),
.sustainability-subpage #starter-section h4,
.sustainability-subpage #starter-section h1,
.sustainability-subpage #starter-section h2,
.sustainability-subpage #starter-section h6,
.sustainability-subpage #starter-section p:not(.wow),
.human-resources-subpage #starter-section h4,
.human-resources-subpage #starter-section h1,
.human-resources-subpage #starter-section h2,
.human-resources-subpage #starter-section h6,
.human-resources-subpage #starter-section p:not(.wow) {
  transition: all 1s;
  opacity: 0;
}
.company-subpage #starter-section.anim h4,
.product-subpage #starter-section.anim h4,
.production-subpage #starter-section.anim h4,
.sustainability-subpage #starter-section.anim h4,
.human-resources-subpage #starter-section.anim h4 {
  -webkit-animation: customFadeAnimation 1s forwards;
  animation: customFadeAnimation 1s forwards;
}
.company-subpage #starter-section.anim h1,
.product-subpage #starter-section.anim h1,
.production-subpage #starter-section.anim h1,
.sustainability-subpage #starter-section.anim h1,
.human-resources-subpage #starter-section.anim h1 {
  -webkit-animation: customFadeAnimation 1s forwards 0.75s;
  animation: customFadeAnimation 1s forwards 0.75s;
}
.company-subpage #starter-section.anim h2,
.company-subpage #starter-section.anim h6,
.product-subpage #starter-section.anim h2,
.product-subpage #starter-section.anim h6,
.production-subpage #starter-section.anim h2,
.production-subpage #starter-section.anim h6,
.sustainability-subpage #starter-section.anim h2,
.sustainability-subpage #starter-section.anim h6,
.human-resources-subpage #starter-section.anim h2,
.human-resources-subpage #starter-section.anim h6 {
  -webkit-animation: customFadeAnimation 1s forwards 1.5s;
  animation: customFadeAnimation 1s forwards 1.5s;
}
.company-subpage #starter-section.anim p:not(.wow),
.product-subpage #starter-section.anim p:not(.wow),
.production-subpage #starter-section.anim p:not(.wow),
.sustainability-subpage #starter-section.anim p:not(.wow),
.human-resources-subpage #starter-section.anim p:not(.wow) {
  -webkit-animation: customFadeAnimation 1s forwards 2.25s;
  animation: customFadeAnimation 1s forwards 2.25s;
}
.company-subpage h1,
.product-subpage h1,
.production-subpage h1,
.sustainability-subpage h1,
.human-resources-subpage h1 {
  font-size: 90px;
  animation: fadeInUp;
  /* referring directly to the animation's @keyframe declaration */
  animation-duration: 1.5s;
  /* don't forget to set a duration! */
}
.company-subpage h2,
.product-subpage h2,
.production-subpage h2,
.sustainability-subpage h2,
.human-resources-subpage h2 {
  font-size: 46px;
  animation: fadeInUp;
  /* referring directly to the animation's @keyframe declaration */
  animation-duration: 1.5s;
  /* don't forget to set a duration! */
}
.company-subpage h3,
.product-subpage h3,
.production-subpage h3,
.sustainability-subpage h3,
.human-resources-subpage h3 {
  font-size: 32px;
  animation: fadeInUp;
  /* referring directly to the animation's @keyframe declaration */
  animation-duration: 1.5s;
  /* don't forget to set a duration! */
  margin-top: 2rem;
}
.company-subpage h4,
.product-subpage h4,
.production-subpage h4,
.sustainability-subpage h4,
.human-resources-subpage h4 {
  color: #efd880;
  position: relative;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 24px;
  animation: fadeInUp;
  /* referring directly to the animation's @keyframe declaration */
  animation-duration: 1.5s;
  /* don't forget to set a duration! */
}
.company-subpage h4::after,
.product-subpage h4::after,
.production-subpage h4::after,
.sustainability-subpage h4::after,
.human-resources-subpage h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -50%;
  width: 296px;
  height: 8px;
  background-color: #efd880;
}
@keyframes customFadeAnimation {
  from {
    transform: translateY(3rem);
  }
  to {
    transform: translateY(0rem);
    opacity: 1;
  }
}
.company-subpage h6,
.product-subpage h6,
.production-subpage h6,
.sustainability-subpage h6,
.human-resources-subpage h6 {
  font-size: 24px;
  animation: fadeInUp;
  /* referring directly to the animation's @keyframe declaration */
  animation-duration: 1.5s;
  /* don't forget to set a duration! */
}
.company-subpage p,
.product-subpage p,
.production-subpage p,
.sustainability-subpage p,
.human-resources-subpage p {
  font-size: 18px;
  letter-spacing: 1.5px;
  line-height: calc(18px * 1.75);
  font-family: "Roboto Mono", monospace;
  margin-top: 3rem;
  font-weight: 500;
}
.company-subpage p.wow,
.product-subpage p.wow,
.production-subpage p.wow,
.sustainability-subpage p.wow,
.human-resources-subpage p.wow {
  animation: fadeInUp;
  /* referring directly to the animation's @keyframe declaration */
  animation-duration: 1.5s;
  /* don't forget to set a duration! */
}
.company-subpage span,
.product-subpage span,
.production-subpage span,
.sustainability-subpage span,
.human-resources-subpage span {
  font-size: 18px;
  letter-spacing: 2px;
  line-height: calc(18px * 1.75);
  font-family: "Roboto Mono", monospace;
  animation: fadeInUp;
  /* referring directly to the animation's @keyframe declaration */
  animation-duration: 1.5s;
  /* don't forget to set a duration! */
}
.company-subpage img.wow,
.product-subpage img.wow,
.production-subpage img.wow,
.sustainability-subpage img.wow,
.human-resources-subpage img.wow {
  animation: fadeInUp;
  /* referring directly to the animation's @keyframe declaration */
  animation-duration: 1.5s;
  /* don't forget to set a duration! */
}
.company-subpage .left-space,
.product-subpage .left-space,
.production-subpage .left-space,
.sustainability-subpage .left-space,
.human-resources-subpage .left-space {
  padding-left: 10rem;
}
.company-subpage .right-space,
.product-subpage .right-space,
.production-subpage .right-space,
.sustainability-subpage .right-space,
.human-resources-subpage .right-space {
  padding-right: 10rem;
}

.company-subpage {
  overflow-x: hidden;
}
.company-subpage .our-values-section img {
  width: auto;
  height: 160px;
}
.company-subpage .certificate-section img {
  border-radius: 30px;
  height: 100px;
}
.company-subpage .policy-section .accordion .card {
  background: transparent;
  overflow: unset;
}
.company-subpage .policy-section .accordion .card-header {
  border-bottom: 2px solid #2b5b6d;
  margin-left: 16rem;
}
.company-subpage .policy-section .accordion .card-header:has(button.collapsed) {
  border-bottom: none !important;
}
.company-subpage .policy-section .accordion .card-header h5 {
  color: white;
  font-family: "Roboto Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 20px;
}
.company-subpage .policy-section .accordion .card-body p {
  margin-left: 17rem;
  margin-top: 1rem;
  font-size: 16px;
}

.product-subpage h6 {
  font-size: 36px;
  line-height: calc(36px * 1.25);
  width: 355%;
}
.product-subpage .starter-section h1 {
  width: 500%;
}
.product-subpage canvas {
  z-index: -1;
}

.production-subpage h6 {
  font-size: 36px;
  line-height: calc(36px * 1.25);
  width: 360%;
}
.production-subpage canvas {
  z-index: -1;
}

.types-page {
  background-color: #171717;
}
.types-page-item {
  position: relative;
  padding-top: 10rem !important;
}
.types-page-item h1 {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%) rotateZ(-90deg);
}
.types-page-item-box {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  height: 55vh;
}

.mobile-menu-trigger {
  display: none;
}

.mobile-menu {
  position: fixed;
  width: 300px;
  height: 100%;
  overflow-y: scroll;
  background-color: #2c3b8e;
  top: 0;
  right: -300px;
  z-index: 999;
  padding: 2rem 1rem;
  transition: all 0.3s ease;
  text-align: left;
}
.mobile-menu.active {
  right: 0;
}

.mobile-menu .mobile-menu-head {
  display: flex;
  justify-content: space-between;
}

.mobile-menu .mobile-menu-head img {
  max-width: 175px;
}

.mobile-menu .mobile-menu-head .mobile-menu-close img {
  max-width: 100%;
}

.mobile-menu .mobile-menu-body {
  padding-top: 4rem;
}

.mobile-menu .mobile-menu-body h3 {
  margin-top: 2rem;
}

.mobile-menu .mobile-menu-body h3:first-child {
  margin-top: 0;
}

.mobile-menu .mobile-menu-body a {
  color: #fff;
}

/* Collapse body'e ekleyerek yukarıdaki border'ı yok et */