html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-family: sans-serif;
  }
  body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    background-color: #000;
  }
/* Genel ayarlar */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden; /* Yalnızca animasyon sırasında sayfa kaydırması olmasın */
  background-color: #000; /* Tüm sayfanın arka plan rengi siyah */
}

/* Hoş geldin ekranı */
#welcome-screen {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw; /* Genişliği %100 yaparak ekranı tamamen kaplar */
  background-color: #000; /* Hoş geldin ekranı arka plan rengi siyah */
  position: absolute; /* Tüm ekranı kaplaması için konumlandırma */
  top: 0; /* Üstten sıfırdan başlar */
  left: 0; /* Soldan sıfırdan başlar */
  z-index: 999; /* Diğer içeriklerin üstünde görünmesi için */
}

/* Neon yazı stili */
.neon-text {
  font-family: 'Arial', sans-serif;
  font-size: 5rem; /* Desktop için yazı boyutu */
  font-weight: bold;
  color: hsl(0, 0%, 98%); /* Kırmızı yazı rengi */
  text-shadow: 
      0 0 5px #000000, 
      0 0 10px #02770d,  /* Kırmızı ışık */
      0 0 15px #09de1b,  /* Açık kırmızı ışık */
      0 0 20px #1d6113,  /* Kırmızı ışık */
      0 0 25px #53ee87;  /* Açık kırmızı ışık */
  animation: neon-glow 4s ease-in-out forwards, 
             text-move 2.5s ease-out forwards, 
             flicker 0.1s ease-in-out infinite alternate;
}

/* Düşen görsellerin stili */
.falling-item {
  position: absolute;
  top: -50px; /* Ekranın üstünden başlaması için */
  opacity: 0.8; /* Şeffaflık */
  animation: fall 6s infinite; /* Sürekli düşme animasyonu */
  width: 80px;
}

/* Düşen görsellerin animasyonu */
@keyframes fall {
  0% {
      transform: translateY(0);
  }
  100% {
      transform: translateY(100vh); /* Ekranın altına kadar düşmesi için */
  }
}

/* Neon parlaması ve büyüme */
@keyframes neon-glow {
  0% {
      opacity: 0;
      text-shadow: 0 0 10px #047432, 0 0 20px #0aa141, 0 0 30px #017b1a; /* Kırmızı ışık */
  }
  50% {
      opacity: 1;
      text-shadow: 0 0 20px #049d4c, 0 0 30px #046a10; /* Kırmızı ışık */
  }
  100% {
      opacity: 1;
      text-shadow: 0 0 30px #038544, 0 0 40px #138675; /* Kırmızı ışık */
  }
}

/* Yazı titreşimi */
@keyframes flicker {
  0% {
      opacity: 0.8;
  }
  50% {
      opacity: 1;
  }
  100% {
      opacity: 0.8;
  }
}

/* Yazının ekrana büyüyerek gelmesi */
@keyframes text-move {
  0% {
      transform: scale(0.5);
      opacity: 0;
  }
  80% {
      transform: scale(1);
      opacity: 1;
  }
  100% {
      transform: scale(1); /* Son kısımda büyümeyi koruyacak */
      opacity: 1; /* Tamamen görünür olmalı */
  }
}


/* Ana içerik başlangıçta gizlenir, daha sonra görünür olacak */
#main-content {
  display: none;
}

/* Mobil uyumlu ayarlar */
@media (max-width: 768px) {
  .neon-text {
      font-size: 3rem; /* Mobilde daha küçük yazı boyutu */
  }

  .falling-item {
      width: 50px; /* Mobilde düşen görsellerin boyutu */
  }
}


  article,
  aside,
  details,
  figcaption,
  figure,
  footer,
  header,
  hgroup,
  main,
  menu,
  nav,
  section,
  summary {
    display: block;
  }
  audio,
  canvas,
  progress,
  video {
    vertical-align: baseline;
    display: inline-block;
  }
  audio:not([controls]) {
    height: 0;
    display: none;
  }
  [hidden],
  template {
    display: none;
  }
  a {
    background-color: #0000;
  }
  a:active,
  a:hover {
    outline: 0;
  }
  abbr[title] {
    border-bottom: 1px dotted;
  }
  b,
  strong {
    font-weight: 700;
  }
  dfn {
    font-style: italic;
  }
  h1 {
    margin: 0.67em 0;
    font-size: 2em;
  }
  mark {
    color: #000;
    background: #ff0;
  }
  small {
    font-size: 80%;
  }
  sub,
  sup {
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
    position: relative;
  }
  sup {
    top: -0.5em;
  }
  sub {
    bottom: -0.25em;
  }
  img {
    border: 0;
  }
  
  hr {
    box-sizing: content-box;
    height: 0;
  }
  pre {
    overflow: auto;
  }
  code,
  kbd,
  pre,
  samp {
    font-family: monospace;
    font-size: 1em;
  }
  button,
  input,
  optgroup,
  select,
  textarea {
    color: inherit;
    font: inherit;
    margin: 0;
  }
  button {
    overflow: visible;
  }
  button,
  select {
    text-transform: none;
  }
  button,
  html input[type="button"],
  input[type="reset"] {
    -webkit-appearance: button;
    cursor: pointer;
  }
  button[disabled],
  html input[disabled] {
    cursor: default;
  }
  button::-moz-focus-inner,
  input::-moz-focus-inner {
    border: 0;
    padding: 0;
  }
  input {
    line-height: normal;
  }
  input[type="checkbox"],
  input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
  }
  input[type="number"]::-webkit-inner-spin-button,
  input[type="number"]::-webkit-outer-spin-button {
    height: auto;
  }
  input[type="search"] {
    -webkit-appearance: none;
  }
  input[type="search"]::-webkit-search-cancel-button,
  input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  legend {
    border: 0;
    padding: 0;
  }
  textarea {
    overflow: auto;
  }
  optgroup {
    font-weight: 700;
  }
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  td,
  th {
    padding: 0;
  }
  @font-face {
    font-family: webflow-icons;
    src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBiUAAAC8AAAAYGNtYXDpP+a4AAABHAAAAFxnYXNwAAAAEAAAAXgAAAAIZ2x5ZmhS2XEAAAGAAAADHGhlYWQTFw3HAAAEnAAAADZoaGVhCXYFgQAABNQAAAAkaG10eCe4A1oAAAT4AAAAMGxvY2EDtALGAAAFKAAAABptYXhwABAAPgAABUQAAAAgbmFtZSoCsMsAAAVkAAABznBvc3QAAwAAAAAHNAAAACAAAwP4AZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpAwPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAQAAAAAwACAACAAQAAQAg5gPpA//9//8AAAAAACDmAOkA//3//wAB/+MaBBcIAAMAAQAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEBIAAAAyADgAAFAAAJAQcJARcDIP5AQAGA/oBAAcABwED+gP6AQAABAOAAAALgA4AABQAAEwEXCQEH4AHAQP6AAYBAAcABwED+gP6AQAAAAwDAAOADQALAAA8AHwAvAAABISIGHQEUFjMhMjY9ATQmByEiBh0BFBYzITI2PQE0JgchIgYdARQWMyEyNj0BNCYDIP3ADRMTDQJADRMTDf3ADRMTDQJADRMTDf3ADRMTDQJADRMTAsATDSANExMNIA0TwBMNIA0TEw0gDRPAEw0gDRMTDSANEwAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFVz+fAGEAAAAAAL//f+9BAMDwwAEAAkAABcBJwEXAwE3AQdpA5ps/GZsbAOabPxmbEMDmmz8ZmwDmvxmbAOabAAAAgAA/8AEAAPAAB0AOwAABSInLgEnJjU0Nz4BNzYzMTIXHgEXFhUUBw4BBwYjNTI3PgE3NjU0Jy4BJyYjMSIHDgEHBhUUFx4BFxYzAgBqXV6LKCgoKIteXWpqXV6LKCgoKIteXWpVSktvICEhIG9LSlVVSktvICEhIG9LSlVAKCiLXl1qal1eiygoKCiLXl1qal1eiygoZiEgb0tKVVVKS28gISEgb0tKVVVKS28gIQABAAABwAIAA8AAEgAAEzQ3PgE3NjMxFSIHDgEHBhUxIwAoKIteXWpVSktvICFmAcBqXV6LKChmISBvS0pVAAAAAgAA/8AFtgPAADIAOgAAARYXHgEXFhUUBw4BBwYHIxUhIicuAScmNTQ3PgE3NjMxOAExNDc+ATc2MzIXHgEXFhcVATMJATMVMzUEjD83NlAXFxYXTjU1PQL8kz01Nk8XFxcXTzY1PSIjd1BQWlJJSXInJw3+mdv+2/7c25MCUQYcHFg5OUA/ODlXHBwIAhcXTzY1PTw1Nk8XF1tQUHcjIhwcYUNDTgL+3QFt/pOTkwABAAAAAQAAmM7nP18PPPUACwQAAAAAANciZKUAAAAA1yJkpf/9/70FtgPDAAAACAACAAAAAAAAAAEAAAPA/8AAAAW3//3//QW2AAEAAAAAAAAAAAAAAAAAAAAMBAAAAAAAAAAAAAAAAgAAAAQAASAEAADgBAAAwAQAAJ0EAP/9BAAAAAQAAAAFtwAAAAAAAAAKABQAHgAyAEYAjACiAL4BFgE2AY4AAAABAAAADAA8AAMAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADQAAAAEAAAAAAAIABwCWAAEAAAAAAAMADQBIAAEAAAAAAAQADQCrAAEAAAAAAAUACwAnAAEAAAAAAAYADQBvAAEAAAAAAAoAGgDSAAMAAQQJAAEAGgANAAMAAQQJAAIADgCdAAMAAQQJAAMAGgBVAAMAAQQJAAQAGgC4AAMAAQQJAAUAFgAyAAMAAQQJAAYAGgB8AAMAAQQJAAoANADsd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzUmVndWxhcgBSAGUAZwB1AGwAYQByd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==)
      format("truetype");
    font-weight: 400;
    font-style: normal;
  }
  [class^="w-icon-"],
  [class*="\ w-icon-"] {
    speak: none;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    font-family: webflow-icons !important;
  }
  .w-icon-slider-right:before {
    content: "î˜€";
  }
  .w-icon-slider-left:before {
    content: "î˜";
  }
  .w-icon-nav-menu:before {
    content: "î˜‚";
  }
  .w-icon-arrow-down:before,
  .w-icon-dropdown-toggle:before {
    content: "î˜ƒ";
  }
  .w-icon-file-upload-remove:before {
    content: "î¤€";
  }
  .w-icon-file-upload-icon:before {
    content: "î¤ƒ";
  }
  * {
    box-sizing: border-box;
  }
  html {
    height: 100%;
  }
  body {
    color: #333;
    background-color: #fff;
    min-height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
  }
  img {
    vertical-align: middle;
    max-width: 100%;
    display: inline-block;
  }
  html.w-mod-touch * {
    background-attachment: scroll !important;
  }
  .w-block {
    display: block;
  }
  .w-inline-block {
    max-width: 100%;
    display: inline-block;
  }
  .w-clearfix:before,
  .w-clearfix:after {
    content: " ";
    grid-area: 1/1/2/2;
    display: table;
  }
  .w-clearfix:after {
    clear: both;
  }
  .w-hidden {
    display: none;
  }
  .w-button {
    color: #fff;
    line-height: inherit;
    cursor: pointer;
    background-color: #3898ec;
    border: 0;
    border-radius: 0;
    padding: 9px 15px;
    text-decoration: none;
    display: inline-block;
  }
  input.w-button {
    -webkit-appearance: button;
  }
  html[data-w-dynpage] [data-w-cloak] {
    color: #0000 !important;
  }
  .w-code-block {
    margin: unset;
  }
  pre.w-code-block code {
    all: inherit;
  }
  .w-optimization {
    display: contents;
  }
  .w-webflow-badge,
  .w-webflow-badge * {
    z-index: auto;
    visibility: visible;
    box-sizing: border-box;
    float: none;
    clear: none;
    box-shadow: none;
    opacity: 1;
    direction: ltr;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-style: inherit;
    font-variant: inherit;
    text-align: inherit;
    letter-spacing: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
    text-indent: 0;
    text-transform: inherit;
    text-shadow: none;
    font-smoothing: auto;
    vertical-align: baseline;
    cursor: inherit;
    white-space: inherit;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    background: 0 0;
    border: 0 #0000;
    border-radius: 0;
    width: auto;
    min-width: 0;
    max-width: none;
    height: auto;
    min-height: 0;
    max-height: none;
    margin: 0;
    padding: 0;
    list-style-type: disc;
    transition: none;
    display: block;
    position: static;
    inset: auto;
    overflow: visible;
    transform: none;
  }
  .w-webflow-badge {
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 0 0 1px #0000001a, 0 1px 3px #0000001a;
    visibility: visible !important;
    z-index: 2147483647 !important;
    color: #aaadb0 !important;
    opacity: 1 !important;
    background-color: #fff !important;
    border-radius: 3px !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 6px !important;
    font-size: 12px !important;
    line-height: 14px !important;
    text-decoration: none !important;
    display: inline-block !important;
    position: fixed !important;
    inset: auto 12px 12px auto !important;
    overflow: visible !important;
    transform: none !important;
  }
  .w-webflow-badge > img {
    visibility: visible !important;
    opacity: 1 !important;
    vertical-align: middle !important;
    display: inline-block !important;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: 10px;
    font-weight: 700;
  }
  h1 {
    margin-top: 20px;
    font-size: 38px;
    line-height: 44px;
  }
  h2 {
    margin-top: 20px;
    font-size: 32px;
    line-height: 36px;
  }
  h3 {
    margin-top: 20px;
    font-size: 24px;
    line-height: 30px;
  }
  h4 {
    margin-top: 10px;
    font-size: 18px;
    line-height: 24px;
  }
  h5 {
    margin-top: 10px;
    font-size: 14px;
    line-height: 20px;
  }
  h6 {
    margin-top: 10px;
    font-size: 12px;
    line-height: 18px;
  }
  p {
    margin-top: 0;
    margin-bottom: 10px;
  }
  blockquote {
    border-left: 5px solid #e2e2e2;
    margin: 0 0 10px;
    padding: 10px 20px;
    font-size: 18px;
    line-height: 22px;
  }
  figure {
    margin: 0 0 10px;
  }
  figcaption {
    text-align: center;
    margin-top: 5px;
  }
  ul,
  ol {
    margin-top: 0;
    margin-bottom: 10px;
    padding-left: 40px;
  }
  .w-list-unstyled {
    padding-left: 0;
    list-style: none;
  }
  .w-embed:before,
  .w-embed:after {
    content: " ";
    grid-area: 1/1/2/2;
    display: table;
  }
  .w-embed:after {
    clear: both;
  }
  .w-video {
    width: 100%;
    padding: 0;
    position: relative;
  }
  .w-video iframe,
  .w-video object,
  .w-video embed {
    border: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  fieldset {
    border: 0;
    margin: 0;
    padding: 0;
  }
  button,
  [type="button"],
  [type="reset"] {
    cursor: pointer;
    -webkit-appearance: button;
    border: 0;
  }
  .w-form {
    margin: 0 0 15px;
  }
  .w-form-done {
    text-align: center;
    background-color: #ddd;
    padding: 20px;
    display: none;
  }
  .w-form-fail {
    background-color: #ffdede;
    margin-top: 10px;
    padding: 10px;
    display: none;
  }
  label {
    margin-bottom: 5px;
    font-weight: 700;
    display: block;
  }
  .w-input,
  .w-select {
    color: #333;
    vertical-align: middle;
    background-color: #fff;
    border: 1px solid #ccc;
    width: 100%;
    height: 38px;
    margin-bottom: 10px;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.42857;
    display: block;
  }
  .w-input::placeholder,
  .w-select::placeholder {
    color: #999;
  }
  .w-input:focus,
  .w-select:focus {
    border-color: #3898ec;
    outline: 0;
  }
  .w-input[disabled],
  .w-select[disabled],
  .w-input[readonly],
  .w-select[readonly],
  fieldset[disabled] .w-input,
  fieldset[disabled] .w-select {
    cursor: not-allowed;
  }
  .w-input[disabled]:not(.w-input-disabled),
  .w-select[disabled]:not(.w-input-disabled),
  .w-input[readonly],
  .w-select[readonly],
  fieldset[disabled]:not(.w-input-disabled) .w-input,
  fieldset[disabled]:not(.w-input-disabled) .w-select {
    background-color: #eee;
  }
  textarea.w-input,
  textarea.w-select {
    height: auto;
  }
  .w-select {
    background-color: #f3f3f3;
  }
  .w-select[multiple] {
    height: auto;
  }
  .w-form-label {
    cursor: pointer;
    margin-bottom: 0;
    font-weight: 400;
    display: inline-block;
  }
  .w-radio {
    margin-bottom: 5px;
    padding-left: 20px;
    display: block;
  }
  .w-radio:before,
  .w-radio:after {
    content: " ";
    grid-area: 1/1/2/2;
    display: table;
  }
  .w-radio:after {
    clear: both;
  }
  .w-radio-input {
    float: left;
    margin: 3px 0 0 -20px;
    line-height: normal;
  }
  .w-file-upload {
    margin-bottom: 10px;
    display: block;
  }
  .w-file-upload-input {
    opacity: 0;
    z-index: -100;
    width: 0.1px;
    height: 0.1px;
    position: absolute;
    overflow: hidden;
  }
  .w-file-upload-default,
  .w-file-upload-uploading,
  .w-file-upload-success {
    color: #333;
    display: inline-block;
  }
  .w-file-upload-error {
    margin-top: 10px;
    display: block;
  }
  .w-file-upload-default.w-hidden,
  .w-file-upload-uploading.w-hidden,
  .w-file-upload-error.w-hidden,
  .w-file-upload-success.w-hidden {
    display: none;
  }
  .w-file-upload-uploading-btn {
    cursor: pointer;
    background-color: #fafafa;
    border: 1px solid #ccc;
    margin: 0;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 400;
    display: flex;
  }
  .w-file-upload-file {
    background-color: #fafafa;
    border: 1px solid #ccc;
    flex-grow: 1;
    justify-content: space-between;
    margin: 0;
    padding: 8px 9px 8px 11px;
    display: flex;
  }
  .w-file-upload-file-name {
    font-size: 14px;
    font-weight: 400;
    display: block;
  }
  .w-file-remove-link {
    cursor: pointer;
    width: auto;
    height: auto;
    margin-top: 3px;
    margin-left: 10px;
    padding: 3px;
    display: block;
  }
  .w-icon-file-upload-remove {
    margin: auto;
    font-size: 10px;
  }
  .w-file-upload-error-msg {
    color: #ea384c;
    padding: 2px 0;
    display: inline-block;
  }
  .w-file-upload-info {
    padding: 0 12px;
    line-height: 38px;
    display: inline-block;
  }
  .w-file-upload-label {
    cursor: pointer;
    background-color: #fafafa;
    border: 1px solid #ccc;
    margin: 0;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
  }
  .w-icon-file-upload-icon,
  .w-icon-file-upload-uploading {
    width: 20px;
    margin-right: 8px;
    display: inline-block;
  }
  .w-icon-file-upload-uploading {
    height: 20px;
  }
  .w-container {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
  }
  .w-container:before,
  .w-container:after {
    content: " ";
    grid-area: 1/1/2/2;
    display: table;
  }
  .w-container:after {
    clear: both;
  }
  .w-container .w-row {
    margin-left: -10px;
    margin-right: -10px;
  }
  .w-row:before,
  .w-row:after {
    content: " ";
    grid-area: 1/1/2/2;
    display: table;
  }
  .w-row:after {
    clear: both;
  }
  .w-row .w-row {
    margin-left: 0;
    margin-right: 0;
  }
  .w-col {
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
  }
  .w-col .w-col {
    padding-left: 0;
    padding-right: 0;
  }
  .w-col-1 {
    width: 8.33333%;
  }
  .w-col-2 {
    width: 16.6667%;
  }
  .w-col-3 {
    width: 25%;
  }
  .w-col-4 {
    width: 33.3333%;
  }
  .w-col-5 {
    width: 41.6667%;
  }
  .w-col-6 {
    width: 50%;
  }
  .w-col-7 {
    width: 58.3333%;
  }
  .w-col-8 {
    width: 66.6667%;
  }
  .w-col-9 {
    width: 75%;
  }
  .w-col-10 {
    width: 83.3333%;
  }
  .w-col-11 {
    width: 91.6667%;
  }
  .w-col-12 {
    width: 100%;
  }
  .w-hidden-main {
    display: none !important;
  }
  @media screen and (max-width: 991px) {
    .w-container {
      max-width: 728px;
    }
    .w-hidden-main {
      display: inherit !important;
    }
    .w-hidden-medium {
      display: none !important;
    }
    .w-col-medium-1 {
      width: 8.33333%;
    }
    .w-col-medium-2 {
      width: 16.6667%;
    }
    .w-col-medium-3 {
      width: 25%;
    }
    .w-col-medium-4 {
      width: 33.3333%;
    }
    .w-col-medium-5 {
      width: 41.6667%;
    }
    .w-col-medium-6 {
      width: 50%;
    }
    .w-col-medium-7 {
      width: 58.3333%;
    }
    .w-col-medium-8 {
      width: 66.6667%;
    }
    .w-col-medium-9 {
      width: 75%;
    }
    .w-col-medium-10 {
      width: 83.3333%;
    }
    .w-col-medium-11 {
      width: 91.6667%;
    }
    .w-col-medium-12 {
      width: 100%;
    }
    .w-col-stack {
      width: 100%;
      left: auto;
      right: auto;
    }
  }
  @media screen and (max-width: 767px) {
    .w-hidden-main,
    .w-hidden-medium {
      display: inherit !important;
    }
    .w-hidden-small {
      display: none !important;
    }
    .w-row,
    .w-container .w-row {
      margin-left: 0;
      margin-right: 0;
    }
    .w-col {
      width: 100%;
      left: auto;
      right: auto;
    }
    .w-col-small-1 {
      width: 8.33333%;
    }
    .w-col-small-2 {
      width: 16.6667%;
    }
    .w-col-small-3 {
      width: 25%;
    }
    .w-col-small-4 {
      width: 33.3333%;
    }
    .w-col-small-5 {
      width: 41.6667%;
    }
    .w-col-small-6 {
      width: 50%;
    }
    .w-col-small-7 {
      width: 58.3333%;
    }
    .w-col-small-8 {
      width: 66.6667%;
    }
    .w-col-small-9 {
      width: 75%;
    }
    .w-col-small-10 {
      width: 83.3333%;
    }
    .w-col-small-11 {
      width: 91.6667%;
    }
    .w-col-small-12 {
      width: 100%;
    }
  }
  @media screen and (max-width: 479px) {
    .w-container {
      max-width: none;
    }
    .w-hidden-main,
    .w-hidden-medium,
    .w-hidden-small {
      display: inherit !important;
    }
    .w-hidden-tiny {
      display: none !important;
    }
    .w-col {
      width: 100%;
    }
    .w-col-tiny-1 {
      width: 8.33333%;
    }
    .w-col-tiny-2 {
      width: 16.6667%;
    }
    .w-col-tiny-3 {
      width: 25%;
    }
    .w-col-tiny-4 {
      width: 33.3333%;
    }
    .w-col-tiny-5 {
      width: 41.6667%;
    }
    .w-col-tiny-6 {
      width: 50%;
    }
    .w-col-tiny-7 {
      width: 58.3333%;
    }
    .w-col-tiny-8 {
      width: 66.6667%;
    }
    .w-col-tiny-9 {
      width: 75%;
    }
    .w-col-tiny-10 {
      width: 83.3333%;
    }
    .w-col-tiny-11 {
      width: 91.6667%;
    }
    .w-col-tiny-12 {
      width: 100%;
    }
  }
  .w-widget {
    position: relative;
  }
  .w-widget-map {
    width: 100%;
    height: 400px;
  }
  .w-widget-map label {
    width: auto;
    display: inline;
  }
  .w-widget-map img {
    max-width: inherit;
  }
  .w-widget-map .gm-style-iw {
    text-align: center;
  }
  .w-widget-map .gm-style-iw > button {
    display: none !important;
  }
  .w-widget-twitter {
    overflow: hidden;
  }
  .w-widget-twitter-count-shim {
    vertical-align: top;
    text-align: center;
    background: #fff;
    border: 1px solid #758696;
    border-radius: 3px;
    width: 28px;
    height: 20px;
    display: inline-block;
    position: relative;
  }
  .w-widget-twitter-count-shim * {
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
  }
  .w-widget-twitter-count-shim .w-widget-twitter-count-inner {
    text-align: center;
    color: #999;
    font-family: serif;
    font-size: 15px;
    line-height: 12px;
    position: relative;
  }
  .w-widget-twitter-count-shim .w-widget-twitter-count-clear {
    display: block;
    position: relative;
  }
  .w-widget-twitter-count-shim.w--large {
    width: 36px;
    height: 28px;
  }
  .w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
    font-size: 18px;
    line-height: 18px;
  }
  .w-widget-twitter-count-shim:not(.w--vertical) {
    margin-left: 5px;
    margin-right: 8px;
  }
  .w-widget-twitter-count-shim:not(.w--vertical).w--large {
    margin-left: 6px;
  }
  .w-widget-twitter-count-shim:not(.w--vertical):before,
  .w-widget-twitter-count-shim:not(.w--vertical):after {
    content: " ";
    pointer-events: none;
    border: solid #0000;
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    left: 0;
  }
  .w-widget-twitter-count-shim:not(.w--vertical):before {
    border-width: 4px;
    border-color: #75869600 #5d6c7b #75869600 #75869600;
    margin-top: -4px;
    margin-left: -9px;
  }
  .w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
    border-width: 5px;
    margin-top: -5px;
    margin-left: -10px;
  }
  .w-widget-twitter-count-shim:not(.w--vertical):after {
    border-width: 4px;
    border-color: #fff0 #fff #fff0 #fff0;
    margin-top: -4px;
    margin-left: -8px;
  }
  .w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
    border-width: 5px;
    margin-top: -5px;
    margin-left: -9px;
  }
  .w-widget-twitter-count-shim.w--vertical {
    width: 61px;
    height: 33px;
    margin-bottom: 8px;
  }
  .w-widget-twitter-count-shim.w--vertical:before,
  .w-widget-twitter-count-shim.w--vertical:after {
    content: " ";
    pointer-events: none;
    border: solid #0000;
    width: 0;
    height: 0;
    position: absolute;
    top: 100%;
    left: 50%;
  }
  .w-widget-twitter-count-shim.w--vertical:before {
    border-width: 5px;
    border-color: #5d6c7b #75869600 #75869600;
    margin-left: -5px;
  }
  .w-widget-twitter-count-shim.w--vertical:after {
    border-width: 4px;
    border-color: #fff #fff0 #fff0;
    margin-left: -4px;
  }
  .w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
    font-size: 18px;
    line-height: 22px;
  }
  .w-widget-twitter-count-shim.w--vertical.w--large {
    width: 76px;
  }
  .w-background-video {
    color: #fff;
    height: 500px;
    position: relative;
    overflow: hidden;
  }
  .w-background-video > video {
    object-fit: cover;
    z-index: -100;
    background-position: 50%;
    background-size: cover;
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    inset: -100%;
  }
  .w-background-video > video::-webkit-media-controls-start-playback-button {
    -webkit-appearance: none;
    display: none !important;
  }
  .w-background-video--control {
    background-color: #0000;
    padding: 0;
    position: absolute;
    bottom: 1em;
    right: 1em;
  }
  .w-background-video--control > [hidden] {
    display: none !important;
  }
  .w-slider {
    text-align: center;
    clear: both;
    -webkit-tap-highlight-color: #0000;
    tap-highlight-color: #0000;
    background: #ddd;
    height: 300px;
    position: relative;
  }
  .w-slider-mask {
    z-index: 1;
    white-space: nowrap;
    height: 100%;
    display: block;
    position: relative;
    left: 0;
    right: 0;
    overflow: hidden;
  }
  .w-slide {
    vertical-align: top;
    white-space: normal;
    text-align: left;
    width: 100%;
    height: 100%;
    display: inline-block;
    position: relative;
  }
  .w-slider-nav {
    z-index: 2;
    text-align: center;
    -webkit-tap-highlight-color: #0000;
    tap-highlight-color: #0000;
    height: 40px;
    margin: auto;
    padding-top: 10px;
    position: absolute;
    inset: auto 0 0;
  }
  .w-slider-nav.w-round > div {
    border-radius: 100%;
  }
  .w-slider-nav.w-num > div {
    font-size: inherit;
    line-height: inherit;
    width: auto;
    height: auto;
    padding: 0.2em 0.5em;
  }
  .w-slider-nav.w-shadow > div {
    box-shadow: 0 0 3px #3336;
  }
  .w-slider-nav-invert {
    color: #fff;
  }
  .w-slider-nav-invert > div {
    background-color: #2226;
  }
  .w-slider-nav-invert > div.w-active {
    background-color: #222;
  }
  .w-slider-dot {
    cursor: pointer;
    background-color: #fff6;
    width: 1em;
    height: 1em;
    margin: 0 3px 0.5em;
    transition: background-color 0.1s, color 0.1s;
    display: inline-block;
    position: relative;
  }
  .w-slider-dot.w-active {
    background-color: #fff;
  }
  .w-slider-dot:focus {
    outline: none;
    box-shadow: 0 0 0 2px #fff;
  }
  .w-slider-dot:focus.w-active {
    box-shadow: none;
  }
  .w-slider-arrow-left,
  .w-slider-arrow-right {
    cursor: pointer;
    color: #fff;
    -webkit-tap-highlight-color: #0000;
    tap-highlight-color: #0000;
    -webkit-user-select: none;
    user-select: none;
    width: 80px;
    margin: auto;
    font-size: 40px;
    position: absolute;
    inset: 0;
    overflow: hidden;
  }
  .w-slider-arrow-left [class^="w-icon-"],
  .w-slider-arrow-right [class^="w-icon-"],
  .w-slider-arrow-left [class*="\ w-icon-"],
  .w-slider-arrow-right [class*="\ w-icon-"] {
    position: absolute;
  }
  .w-slider-arrow-left:focus,
  .w-slider-arrow-right:focus {
    outline: 0;
  }
  .w-slider-arrow-left {
    z-index: 3;
    right: auto;
  }
  .w-slider-arrow-right {
    z-index: 4;
    left: auto;
  }
  .w-icon-slider-left,
  .w-icon-slider-right {
    width: 1em;
    height: 1em;
    margin: auto;
    inset: 0;
  }
  .w-slider-aria-label {
    clip: rect(0 0 0 0);
    border: 0;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    position: absolute;
    overflow: hidden;
  }
  .w-slider-force-show {
    display: block !important;
  }
  .w-dropdown {
    text-align: left;
    z-index: 900;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
    position: relative;
  }
  .w-dropdown-btn,
  .w-dropdown-toggle,
  .w-dropdown-link {
    vertical-align: top;
    color: #222;
    text-align: left;
    white-space: nowrap;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    text-decoration: none;
    position: relative;
  }
  .w-dropdown-toggle {
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    padding-right: 40px;
    display: inline-block;
  }
  .w-dropdown-toggle:focus {
    outline: 0;
  }
  .w-icon-dropdown-toggle {
    width: 1em;
    height: 1em;
    margin: auto 20px auto auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
  }
  .w-dropdown-list {
    background: #ddd;
    min-width: 100%;
    display: none;
    position: absolute;
  }
  .w-dropdown-list.w--open {
    display: block;
  }
  .w-dropdown-link {
    color: #222;
    padding: 10px 20px;
    display: block;
  }
  .w-dropdown-link.w--current {
    color: #0082f3;
  }
  .w-dropdown-link:focus {
    outline: 0;
  }
  @media screen and (max-width: 767px) {
    .w-nav-brand {
      padding-left: 10px;
    }
  }
  .w-lightbox-backdrop {
    cursor: auto;
    letter-spacing: normal;
    text-indent: 0;
    text-shadow: none;
    text-transform: none;
    visibility: visible;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    color: #fff;
    text-align: center;
    z-index: 2000;
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -webkit-tap-highlight-color: transparent;
    background: #000000e6;
    outline: 0;
    font-family: Helvetica Neue, Helvetica, Ubuntu, Segoe UI, Verdana, sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.2;
    list-style: disc;
    position: fixed;
    inset: 0;
    -webkit-transform: translate(0);
  }
  .w-lightbox-backdrop,
  .w-lightbox-container {
    -webkit-overflow-scrolling: touch;
    height: 100%;
    overflow: auto;
  }
  .w-lightbox-content {
    height: 100vh;
    position: relative;
    overflow: hidden;
  }
  .w-lightbox-view {
    opacity: 0;
    width: 100vw;
    height: 100vh;
    position: absolute;
  }
  .w-lightbox-view:before {
    content: "";
    height: 100vh;
  }
  .w-lightbox-group,
  .w-lightbox-group .w-lightbox-view,
  .w-lightbox-group .w-lightbox-view:before {
    height: 86vh;
  }
  .w-lightbox-frame,
  .w-lightbox-view:before {
    vertical-align: middle;
    display: inline-block;
  }
  .w-lightbox-figure {
    margin: 0;
    position: relative;
  }
  .w-lightbox-group .w-lightbox-figure {
    cursor: pointer;
  }
  .w-lightbox-img {
    width: auto;
    max-width: none;
    height: auto;
  }
  .w-lightbox-image {
    float: none;
    max-width: 100vw;
    max-height: 100vh;
    display: block;
  }
  .w-lightbox-group .w-lightbox-image {
    max-height: 86vh;
  }
  .w-lightbox-caption {
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: #0006;
    padding: 0.5em 1em;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
  }
  .w-lightbox-embed {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
  }
  .w-lightbox-control {
    cursor: pointer;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 24px;
    width: 4em;
    transition: all 0.3s;
    position: absolute;
    top: 0;
  }
  .w-lightbox-left {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg==);
    display: none;
    bottom: 0;
    left: 0;
  }
  .w-lightbox-right {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+);
    display: none;
    bottom: 0;
    right: 0;
  }
  .w-lightbox-close {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=);
    background-size: 18px;
    height: 2.6em;
    right: 0;
  }
  .w-lightbox-strip {
    white-space: nowrap;
    padding: 0 1vh;
    line-height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: auto hidden;
  }
  .w-lightbox-item {
    box-sizing: content-box;
    cursor: pointer;
    width: 10vh;
    padding: 2vh 1vh;
    display: inline-block;
    -webkit-transform: translate(0, 0);
  }
  .w-lightbox-active {
    opacity: 0.3;
  }
  .w-lightbox-thumbnail {
    background: #222;
    height: 10vh;
    position: relative;
    overflow: hidden;
  }
  .w-lightbox-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0;
  }
  .w-lightbox-thumbnail .w-lightbox-tall {
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
  }
  .w-lightbox-thumbnail .w-lightbox-wide {
    height: 100%;
    left: 50%;
    transform: translate(-50%);
  }
  .w-lightbox-spinner {
    box-sizing: border-box;
    border: 5px solid #0006;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    animation: 0.8s linear infinite spin;
    position: absolute;
    top: 50%;
    left: 50%;
  }
  .w-lightbox-spinner:after {
    content: "";
    border: 3px solid #0000;
    border-bottom-color: #fff;
    border-radius: 50%;
    position: absolute;
    inset: -4px;
  }
  .w-lightbox-hide {
    display: none;
  }
  .w-lightbox-noscroll {
    overflow: hidden;
  }
  @media (min-width: 768px) {
    .w-lightbox-content {
      height: 96vh;
      margin-top: 2vh;
    }
    .w-lightbox-view,
    .w-lightbox-view:before {
      height: 96vh;
    }
    .w-lightbox-group,
    .w-lightbox-group .w-lightbox-view,
    .w-lightbox-group .w-lightbox-view:before {
      height: 84vh;
    }
    .w-lightbox-image {
      max-width: 96vw;
      max-height: 96vh;
    }
    .w-lightbox-group .w-lightbox-image {
      max-width: 82.3vw;
      max-height: 84vh;
    }
    .w-lightbox-left,
    .w-lightbox-right {
      opacity: 0.5;
      display: block;
    }
    .w-lightbox-close {
      opacity: 0.8;
    }
    .w-lightbox-control:hover {
      opacity: 1;
    }
  }
  .w-lightbox-inactive,
  .w-lightbox-inactive:hover {
    opacity: 0;
  }
  .w-richtext:before,
  .w-richtext:after {
    content: " ";
    grid-area: 1/1/2/2;
    display: table;
  }
  .w-richtext:after {
    clear: both;
  }
  .w-richtext[contenteditable="true"]:before,
  .w-richtext[contenteditable="true"]:after {
    white-space: initial;
  }
  .w-richtext ol,
  .w-richtext ul {
    overflow: hidden;
  }
  .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:after,
  .w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:after,
  .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div,
  .w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
    outline: 2px solid #2895f7;
  }
  .w-richtext figure.w-richtext-figure-type-video > div:after,
  .w-richtext figure[data-rt-type="video"] > div:after {
    content: "";
    display: none;
    position: absolute;
    inset: 0;
  }
  .w-richtext figure {
    max-width: 60%;
    position: relative;
  }
  .w-richtext figure > div:before {
    cursor: default !important;
  }
  .w-richtext figure img {
    width: 100%;
  }
  .w-richtext figure figcaption.w-richtext-figcaption-placeholder {
    opacity: 0.6;
  }
  .w-richtext figure div {
    color: #0000;
    font-size: 0;
  }
  .w-richtext figure.w-richtext-figure-type-image,
  .w-richtext figure[data-rt-type="image"] {
    display: table;
  }
  .w-richtext figure.w-richtext-figure-type-image > div,
  .w-richtext figure[data-rt-type="image"] > div {
    display: inline-block;
  }
  .w-richtext figure.w-richtext-figure-type-image > figcaption,
  .w-richtext figure[data-rt-type="image"] > figcaption {
    caption-side: bottom;
    display: table-caption;
  }
  .w-richtext figure.w-richtext-figure-type-video,
  .w-richtext figure[data-rt-type="video"] {
    width: 60%;
    height: 0;
  }
  .w-richtext figure.w-richtext-figure-type-video iframe,
  .w-richtext figure[data-rt-type="video"] iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .w-richtext figure.w-richtext-figure-type-video > div,
  .w-richtext figure[data-rt-type="video"] > div {
    width: 100%;
  }
  .w-richtext figure.w-richtext-align-center {
    clear: both;
    margin-left: auto;
    margin-right: auto;
  }
  .w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div,
  .w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
    max-width: 100%;
  }
  .w-richtext figure.w-richtext-align-normal {
    clear: both;
  }
  .w-richtext figure.w-richtext-align-fullwidth {
    text-align: center;
    clear: both;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .w-richtext figure.w-richtext-align-fullwidth > div {
    padding-bottom: inherit;
    display: inline-block;
  }
  .w-richtext figure.w-richtext-align-fullwidth > figcaption {
    display: block;
  }
  .w-richtext figure.w-richtext-align-floatleft {
    float: left;
    clear: none;
    margin-right: 15px;
  }
  .w-richtext figure.w-richtext-align-floatright {
    float: right;
    clear: none;
    margin-left: 15px;
  }
  .w-nav {
    z-index: 1000;
    background: #ddd;
    position: relative;
  }
  .w-nav:before,
  .w-nav:after {
    content: " ";
    grid-area: 1/1/2/2;
    display: table;
  }
  .w-nav:after {
    clear: both;
  }
  .w-nav-brand {
    float: left;
    color: #333;
    text-decoration: none;
    position: relative;
  }
  .w-nav-link {
    vertical-align: top;
    color: #222;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    text-decoration: none;
    display: inline-block;
    position: relative;
  }
  .w-nav-link.w--current {
    color: #0082f3;
  }
  .w-nav-menu {
    float: right;
    position: relative;
  }
  [data-nav-menu-open] {
    text-align: center;
    background: #c8c8c8;
    min-width: 200px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    overflow: visible;
    display: block !important;
  }
  .w--nav-link-open {
    display: block;
    position: relative;
  }
  .w-nav-overlay {
    width: 100%;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    overflow: hidden;
  }
  .w-nav-overlay [data-nav-menu-open] {
    top: 0;
  }
  .w-nav[data-animation="over-left"] .w-nav-overlay {
    width: auto;
  }
  .w-nav[data-animation="over-left"] .w-nav-overlay,
  .w-nav[data-animation="over-left"] [data-nav-menu-open] {
    z-index: 1;
    top: 0;
    right: auto;
  }
  .w-nav[data-animation="over-right"] .w-nav-overlay {
    width: auto;
  }
  .w-nav[data-animation="over-right"] .w-nav-overlay,
  .w-nav[data-animation="over-right"] [data-nav-menu-open] {
    z-index: 1;
    top: 0;
    left: auto;
  }
  .w-nav-button {
    float: right;
    cursor: pointer;
    -webkit-tap-highlight-color: #0000;
    tap-highlight-color: #0000;
    -webkit-user-select: none;
    user-select: none;
    padding: 18px;
    font-size: 24px;
    display: none;
    position: relative;
  }
  .w-nav-button:focus {
    outline: 0;
  }
  .w-nav-button.w--open {
    color: #fff;
    background-color: #c8c8c8;
  }
  .w-nav[data-collapse="all"] .w-nav-menu {
    display: none;
  }
  .w-nav[data-collapse="all"] .w-nav-button,
  .w--nav-dropdown-open,
  .w--nav-dropdown-toggle-open {
    display: block;
  }
  .w--nav-dropdown-list-open {
    position: static;
  }
  @media screen and (max-width: 991px) {
    .w-nav[data-collapse="medium"] .w-nav-menu {
      display: none;
    }
    .w-nav[data-collapse="medium"] .w-nav-button {
      display: block;
    }
  }
  @media screen and (max-width: 767px) {
    .w-nav[data-collapse="small"] .w-nav-menu {
      display: none;
    }
    .w-nav[data-collapse="small"] .w-nav-button {
      display: block;
    }
    .w-nav-brand {
      padding-left: 10px;
    }
  }
  @media screen and (max-width: 479px) {
    .w-nav[data-collapse="tiny"] .w-nav-menu {
      display: none;
    }
    .w-nav[data-collapse="tiny"] .w-nav-button {
      display: block;
    }
  }
  
  .w-tabs {
    position: relative;
  }
  .w-tabs:before,
  .w-tabs:after {
    content: " ";
    grid-area: 1/1/2/2;
    display: table;
  }
  .w-tabs:after {
    clear: both;
  }
  .w-tab-menu {
    position: relative;
  }
  .w-tab-link {
    vertical-align: top;
    text-align: left;
    cursor: pointer;
    color: #222;
    background-color: #ddd;
    padding: 9px 30px;
    text-decoration: none;
    display: inline-block;
    position: relative;
  }
  .w-tab-link.w--current {
    background-color: #c8c8c8;
  }
  .w-tab-link:focus {
    outline: 0;
  }
  .w-tab-content {
    display: block;
    position: relative;
    overflow: hidden;
  }
  .w-tab-pane {
    display: none;
    position: relative;
  }
  .w--tab-active {
    display: block;
  }
  @media screen and (max-width: 479px) {
    .w-tab-link {
      display: block;
    }
  }
  .w-ix-emptyfix:after {
    content: "";
  }
  @keyframes spin {
    0% {
      transform: rotate(0);
    }
    to {
      transform: rotate(360deg);
    }
  }
  .w-dyn-empty {
    background-color: #ddd;
    padding: 10px;
  }
  .w-dyn-hide,
  .w-dyn-bind-empty,
  .w-condition-invisible {
    display: none !important;
  }
  .wf-layout-layout {
    display: grid;
  }
  .w-code-component > * {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  :root {
    --background: black;
    --lite-text: #ffff;
    --input-border: 0.1em;
    --buttons: white;
    --placeholder-text: #ffffff80;
    --dk-text: #000;
    --gray-3: #dad5e4;
    --button-border: 0.15em;
    --gray-2: #f1effa;
    --transparent: #fff0;
    --gray-1: #f8f6fc;
    --yt-red: red;
    --tik-blue: #6feeeb;
    --tw-blu: #1da1f2;
    --fb-blu: #3b5997;
    --pin-red: #c8232c;
    --li-blu: #0072b1;
    --dk-orng: #f48a17;
    --ig-pink: #ae388a;
    --reach-purple: #7260db;
    --gray-5: #805f94;
    --dk-grn: #3ca350;
    --dk-blu: #206fca;
    --dk-red: #ef4552;
    --lite-brwn: #ca6c01;
    --dk-prpl: #7260db;
    --lite-red: #ff4823;
    --lite-grn: #69b782;
    --dk-brwn: #853a2b;
    --dk-yell: #f9dd4a;
    --lite-yell: #fcf793;
    --lite-prpl: #9989f7;
    --dk-pnk: #f13c4d;
    --lite-pnk: #e1a8a0;
    --lite-blu: #3694e7;
    --lite-orng: #f4b14e;
    --gg-yell: #f4b400;
    --gray-4: #d3b9ba;
    --ta-grn: #00af87;
    --yp-red: #af3526;
    --primary-color: #685bc7;
    --secondary-color: #3a913f;
    --border-white-10: #f9fbfd33;
    --colorize0: var(--dk-grn);
    --colorize25: var(--dk-blu);
    --colorize50: var(--dk-prpl);
    --colorize75: var(--dk-red);
    --colorize100: var(--dk-orng);
    --dropcaps-size: 3em;
    --dropcaps-height: 0.9em;
    --lightbox-backdrop: var(--background);
    --lightbox-border-radius: 0.5em;
    --zoom-border-radius: 0.25em;
    --zoom-overlay: var(--background);
    --down-1: 0.9em;
  }
  .w-checkbox {
    margin-bottom: 5px;
    padding-left: 20px;
    display: block;
  }
  .w-checkbox:before {
    content: " ";
    grid-area: 1/1/2/2;
    display: table;
  }
  .w-checkbox:after {
    content: " ";
    clear: both;
    grid-area: 1/1/2/2;
    display: table;
  }
  .w-users-userformpagewrap {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    max-width: 340px;
    height: 100vh;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }
  .w-users-userloginformwrapper {
    margin-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
  }
  .w-users-userformheader {
    text-align: center;
  }
  .w-users-userformbutton {
    text-align: center;
    width: 100%;
  }
  .w-users-userformfooter {
    justify-content: space-between;
    margin-top: 12px;
    display: flex;
  }
  .w-users-userformerrorstate {
    margin-left: 20px;
    margin-right: 20px;
    position: absolute;
    top: 100%;
    left: 0%;
    right: 0%;
  }
  .w-users-usersignupformwrapper {
    margin-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
  }
  .w-users-userformsuccessstate {
    display: none;
  }
  .w-checkbox-input {
    float: left;
    margin: 4px 0 0 -20px;
    line-height: normal;
  }
  .w-checkbox-input--inputType-custom {
    border: 1px solid #ccc;
    border-radius: 2px;
    width: 12px;
    height: 12px;
  }
  .w-checkbox-input--inputType-custom.w--redirected-checked {
    background-color: #3898ec;
    background-image: url(https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-color: #3898ec;
  }
  .w-checkbox-input--inputType-custom.w--redirected-focus {
    box-shadow: 0 0 3px 1px #3898ec;
  }
  .w-users-usersignupverificationmessage {
    display: none;
  }
  .w-users-userresetpasswordformwrapper,
  .w-users-userupdatepasswordformwrapper {
    margin-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
  }
  .w-users-useraccountwrapper {
    background-color: #f5f5f5;
    width: 100%;
    min-height: 100vh;
    padding: 20px;
  }
  .w-users-blockheader {
    background-color: #fff;
    border: 1px solid #e6e6e6;
    justify-content: space-between;
    align-items: baseline;
    padding: 4px 20px;
    display: flex;
  }
  .w-users-blockcontent {
    background-color: #fff;
    border-bottom: 1px solid #e6e6e6;
    border-left: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    margin-bottom: 20px;
    padding: 20px;
  }
  .w-users-useraccountformsavebutton {
    text-align: center;
    margin-right: 8px;
  }
  .w-users-useraccountformcancelbutton {
    text-align: center;
    color: #333;
    background-color: #d3d3d3;
  }
  .w-users-useraccountsubscriptionlist {
    -webkit-overflow-scrolling: touch;
    flex: 1;
    overflow: auto;
  }
  .w-users-useraccountsubscriptionlistitem {
    align-items: flex-start;
    display: flex;
  }
  .w-commerce-commercecartitemimage {
    width: 60px;
    height: 0%;
  }
  .w-commerce-commercecartiteminfo {
    flex-direction: column;
    flex: 1;
    margin-left: 16px;
    margin-right: 16px;
    display: flex;
  }
  .w-commerce-commercecartproductname {
    font-weight: 700;
  }
  .w-users-gridrow {
    grid-column-gap: 8px;
    grid-template-columns: auto auto;
    justify-content: flex-start;
    display: grid;
  }
  .w-users-flexcolumn {
    flex-direction: column;
    display: flex;
  }
  .w-users-useraccountsubscriptioncancelbutton {
    color: #3898ec;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-color: #0000;
    padding: 0;
  }
  body {
    background-color: var(--background);
    color: #ffffff;
    scrollbar-width: none;
    padding-top: 5em;
    font-family: Prompt, sans-serif;
    font-size: 1vw;
    font-weight: 400;
    line-height: 1em;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0;
    padding: 0;
    font-size: 1em;
    font-weight: 400;
    line-height: 1em;
  }
  p {
    margin: 0;
    padding: 0;
    font-size: 1em;
    line-height: 1em;
  }
  a {
    color: #48dc00;
    cursor: pointer;
    text-decoration: none;
  }
  a:hover,
  a:focus {
    filter: saturate(130%);
  }
  ul,
  ol,
  li {
    margin: 0;
    padding: 0;
    font-size: 1em;
    line-height: 1em;
  }
  img {
    max-width: 100%;
    display: inline-block;
  }
  strong {
    font-weight: 400;
  }
  em {
    font-style: normal;
  }
  blockquote {
    border: 1px #000;
    margin: 0;
    padding: 0;
    font-size: 1em;
    line-height: 1em;
  }
  figure {
    margin-bottom: 0;
  }
  figcaption {
    margin-top: 0;
  }
  .form__wrapper {
    background-color: #0000;
    margin: 0;
    padding: 0;
    position: relative;
  }
  .form__wrapper.form__wrapper--rsvp {
    height: 13.6em;
  }
  .form__wrapper.form__wrapper--newsletter,
  .form__wrapper.form__wrapper--updates {
    height: 3em;
  }
  .input {
    border-top-style: solid;
    border-top-width: var(--input-border);
    border-top-color: var(--lite-text);
    border-right-style: solid;
    border-right-width: var(--input-border);
    border-right-color: var(--lite-text);
    border-bottom-style: solid;
    border-bottom-width: var(--input-border);
    border-bottom-color: var(--lite-text);
    border-left-style: solid;
    border-left-width: var(--input-border);
    border-left-color: var(--lite-text);
    color: var(--lite-text);
    -webkit-appearance: none;
    appearance: none;
    background-color: #0000;
    border-radius: 0.35em;
    justify-content: space-between;
    width: 100%;
    height: 3em;
    min-height: 0;
    margin: 0;
    padding: 0.1em 0.76em 0 0.75em;
    font-size: 1em;
    font-weight: 400;
    line-height: 1em;
    display: block;
  }
  .input:focus {
    border-color: var(--buttons);
    outline-style: none;
  }
  .input::placeholder {
    color: var(--placeholder-text);
    font-weight: 300;
  }
  .input.input__select {
    background-image: url(https://cdn.prod.website-files.com/667f02e0521ad9fc4f06c43e/66818c617b9052d51b6ab055_chevron-down-regular-white.svg);
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: 2em 1.1em;
    align-items: center;
    display: flex;
  }
  .input.input__message {
    height: auto;
    min-height: 6em;
    padding-top: 0.7em;
    line-height: 1.5em;
  }
  .input.input__button {
    background-color: var(--buttons);
    color: var(--dk-text);
    text-align: center;
    text-transform: uppercase;
    border-style: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 0.15em;
    font-weight: 700;
    text-decoration: none;
    display: flex;
  }
  .input.input__button.input__button--inline {
    border-radius: 0 1.5em 1.5em 0;
    width: auto;
    padding-left: 0.7em;
    padding-right: 1.3em;
  }
  .input.input__filter {
    filter: grayscale();
    background-image: url(https://cdn.prod.website-files.com/667f02e0521ad9fc4f06c43e/667f02e0521ad9fc4f06c551_icon-filter-med-blue.svg);
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: 3em 1.5em;
  }
  .input.input__filter:focus {
    filter: none;
  }
  .input.input-check {
    z-index: 1;
    border-color: var(--gray-3);
    white-space: nowrap;
    background-color: #0000;
    justify-content: center;
    align-items: center;
    padding-left: 0.6em;
    padding-right: 0.6em;
    display: flex;
    position: relative;
  }
  .input.input--subscribe {
    border-width: var(--button-border);
    border-radius: 1.5em 0 0 1.5em;
    flex: 1;
    padding-right: 0.5em;
    font-weight: 500;
  }
  .input.input__success {
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0.5em;
    display: flex;
  }
  .input.input__button--expand {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    flex: 1;
  }
  .check {
    text-align: left;
    margin-bottom: 0;
    padding-left: 0;
    display: flex;
    position: relative;
  }
  .check__box {
    border: 1px solid var(--gray-2);
    color: #3898ec;
    background-color: #fff;
    background-image: url(https://cdn.prod.website-files.com/667f02e0521ad9fc4f06c43e/667f02e0521ad9fc4f06c549_check-solid-white.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 2px;
    width: 1em;
    height: 1em;
    margin: 0;
    font-size: 1.1em;
    display: inline-block;
  }
  .check__box.w--redirected-checked {
    background-image: url(https://cdn.prod.website-files.com/667f02e0521ad9fc4f06c43e/667f02e0521ad9fc4f06c549_check-solid-white.svg);
    background-size: contain;
    border-color: #3898ec;
    width: 1em;
    height: 1em;
    margin: 0;
  }
  .check__box.w--redirected-focus {
    box-shadow: none;
    border-color: #3898ec;
  }
  .check__text {
    z-index: 1;
    flex: 1;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0.5em;
    padding-right: 1em;
    line-height: 1.1em;
  }
  .form__error {
    color: #d60101;
    text-align: center;
    background-color: #0000;
    margin-top: 1em;
    padding: 0;
    font-weight: 700;
  }
  .main {
    z-index: 0;
    font-size: 1em;
    position: relative;
  }
  .container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1em;
    padding-right: 1em;
  }
  .container.container-80 {
    width: 80%;
  }
  .container.container-60 {
    width: 60%;
  }
  .container.container-90 {
    width: 90%;
  }
  .container.container-50 {
    width: 50%;
  }
  .container.container-70 {
    width: 70%;
  }
  .columns {
    flex-wrap: wrap;
    margin-left: -1em;
    margin-right: -1em;
    display: flex;
  }
  .column {
    flex: 1;
    padding-left: 1em;
    padding-right: 1em;
  }
  .column.column--shrink {
    flex: 0 auto;
  }
  .column.column--20 {
    flex: 0 auto;
    width: 20%;
  }
  .column.column--30 {
    flex: 0 auto;
    width: 30%;
  }
  .column.column--25 {
    flex: 0 auto;
    width: 25%;
  }
  .column.column--35 {
    flex: 0 auto;
    width: 35%;
  }
  .column.column--40 {
    flex: 0 auto;
    width: 40%;
  }
  .column.column--45 {
    flex: 0 auto;
    width: 45%;
  }
  .column.column--50 {
    flex: 0 auto;
    width: 50%;
  }
  .form__block,
  .form__block.form__block--nospace {
    margin-bottom: 0;
  }
  .brand {
    align-items: center;
    width: 100%;
    height: 100%;
    padding-left: 0;
    text-decoration: none;
    display: flex;
  }
  .search__input {
    background-color: var(--gray-3);
    background-image: url(https://cdn.prod.website-files.com/667f02e0521ad9fc4f06c43e/667f02e0521ad9fc4f06c4af_search-glass-compressed.svg);
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: 2.5em 1.5em;
    border: 1px #000;
    border-radius: 2.5em;
    height: 2.5em;
    margin-bottom: 0;
    padding: 0 3em 0 1em;
    font-size: 1em;
    transition: filter 0.2s;
  }
  .search__input:focus {
    filter: grayscale(0%);
  }
  .search__input::placeholder {
    color: #9ca9b4;
    font-style: italic;
  }
  .search__input.search__input--animate {
    opacity: 0.5;
    background-color: #0000;
    border-radius: 1.25em;
    width: 2.5em;
    min-width: 2.5em;
    height: 2.5em;
    padding-left: 2.5em;
    padding-right: 0;
    transition: padding 0.2s, opacity 0.2s, flex 0.2s, background-color 0.2s,
      filter 0.2s;
  }
  .search__input.search__input--animate:focus {
    opacity: 1;
    filter: grayscale(0%);
    background-color: #f3f6fa;
    flex: 1;
    padding-left: 1em;
  }
  .search__input.search__input--grow {
    background-size: 2.75em 1.4em;
    width: 80%;
    transition: width 0.1s;
  }
  .search__input.search__input--grow:focus {
    width: 100%;
  }
  .dropdown {
    z-index: 1;
    margin: 0;
  }
  .social__icon {
    color: var(--lite-text);
    margin: 0.4em;
  }
  .nav__button {
    z-index: 1;
    float: none;
    width: 3em;
    height: 3em;
    padding: 0;
    font-size: 1em;
    line-height: 1em;
    position: relative;
  }
  .nav__button.w--open {
    background-color: var(--transparent);
  }
  .dropdown__pane {
    border: 1px solid var(--gray-2);
    background-color: var(--gray-1);
    border-radius: 0.25em;
    justify-content: flex-start;
    align-items: center;
    padding: 1em;
    position: relative;
  }
  .search {
    align-items: center;
    width: 100%;
    margin-bottom: 0;
    display: flex;
    position: relative;
  }
  .cart__button {
    color: #000;
    background-color: #0000;
    justify-content: center;
    height: 100%;
    padding: 0;
  }
  .nav__drawer {
    background-color: var(--background);
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    display: none;
    inset: 100% 0% auto auto;
  }
  .social {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    display: flex;
}
  .social.social__vertical {
    flex-direction: column;
    align-items: center;
  }
  .social.social__contact {
    opacity: 0.7;
    justify-content: center;
    padding-left: 1em;
    padding-right: 1em;
    font-size: 1.5em;
  }
  .social.social__contact:hover {
    opacity: 1;
  }
  .nav {
    color: var(--lite-text);
    background-color: #0000;
    flex: 1;
    height: 5em;
  }
  .social__text {
    text-align: center;
    white-space: nowrap;
    margin: 0.4em;
    line-height: 1.2em;
  }
  .nav__brand {
    z-index: 1;
    align-items: center;
    width: 16em;
    margin-right: 2em;
    display: flex;
    position: relative;
  }
  .dropdown__menu {
    background-color: #0000;
    min-width: 0;
    min-height: 0;
    padding-top: 1em;
    padding-bottom: 1em;
    top: 100%;
    left: 50%;
    transform: translate(-50%);
  }
  .dropdown__menu.dropdown__menu--upleft {
    top: auto;
    bottom: 100%;
    left: 0%;
    transform: none;
  }
  .dropdown__menu.dropdown__menu--upcenter {
    top: auto;
    bottom: 100%;
  }
  .dropdown__menu.dropdown__menu--upright {
    inset: auto 0% 100% auto;
    transform: none;
  }
  .dropdown__menu.dropdown__menu--downleft {
    left: 0%;
    transform: none;
  }
  .dropdown__menu.dropdown__menu--downright {
    left: auto;
    right: 0%;
    transform: none;
  }
  .footer {
    z-index: 1;
    padding-top: 4em;
    padding-bottom: 1em;
    font-size: 1em;
    position: relative;
  }
  .motto__middle {
    text-align: center;
    flex: 0 auto;
    width: 43%;
    padding-top: 0.3em;
  }
  .sentiment__icon {
    width: 2em;
    height: 2em;
    margin-left: 0.5em;
    margin-right: 0.5em;
    text-decoration: none;
    position: relative;
  }
  .nav__list__h2 {
    text-transform: uppercase;
    column-span: all;
    margin-bottom: 1em;
    font-size: 1.2em;
    font-weight: 600;
  }
  .motto__brand {
    width: 14em;
    margin-bottom: 0.4em;
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1em;
    text-decoration: none;
    position: relative;
  }
  .nav__list--link {
    opacity: 0.5;
    text-transform: uppercase;
    cursor: pointer;
    background-color: #0000;
    align-items: center;
    height: 2.6em;
    font-weight: 300;
    text-decoration: none;
    transition: opacity 0.4s;
    display: flex;
  }
  .nav__list--link:hover {
    opacity: 1;
  }
  .motto {
    justify-content: center; /* Yatayda ortalamak için */
    align-items: center; /* Dikeyde ortalamak için */
    padding-top: 3em;
    padding-bottom: 5em;
    line-height: 8em;
    display: flex;
    height: 100vh; /* Tüm sayfa yüksekliğini kaplamak için */
    text-align: center; /* Metni ortalamak için */
}
  .form__fields {
    flex-wrap: wrap;
    margin-right: -0.5em;
    padding: 0;
    display: flex;
    overflow: hidden;
  }
  .form__fields.form__fields--flex {
    flex-wrap: wrap;
    align-items: center;
    display: flex;
  }
  .docs__h2 {
    margin-top: 1em;
    margin-bottom: 0.5em;
    padding-top: 0.5em;
    font-size: 2em;
    font-weight: 700;
    line-height: 1.1em;
  }
  .icon {
    justify-content: center;
    align-items: center;
    width: 1em;
    height: 1em;
    font-size: 1em;
    line-height: 1em;
    display: flex;
  }
  .icon.icon--fb:hover {
    color: #3b5997;
  }
  .icon.icon__tw:hover {
    color: #1da1f2;
  }
  .icon.icon__pin:hover {
    color: #c8232c;
  }
  .icon.icon__in:hover {
    color: #0e76a8;
  }
  .icon.icon--ig:hover {
    color: #bc2a8d;
  }
  .icon.icon__right {
    margin-right: 0.5em;
  }
  .icon.icon-logo {
    margin-right: 0.2em;
    font-size: 1.6em;
  }
  .icon.icon__menu {
    font-size: 1.5em;
  }
  .icon.icon--yt {
    font-size: 1.2em;
  }
  .icon.icon--yt:hover {
    color: var(--yt-red);
  }
  .icon.icon--tik:hover {
    color: var(--tik-blue);
  }
  .icon.icon--snap:hover {
    color: #fefb58;
  }
  .icon.icon--twitch:hover {
    color: #8c52f6;
  }
  .icon.icon--cameo:hover {
    color: #e4325e;
  }
  .icon.icon--discord {
    font-size: 1.1em;
  }
  .icon.icon--discord:hover {
    color: #606aeb;
  }
  .icon.icon--x:hover {
    color: var(--tw-blu);
  }
  .icon.icon--location {
    font-size: 1.2em;
    line-height: 1em;
  }
  .feedback__block {
    text-align: center;
    width: 100%;
    margin-top: 1em;
    margin-bottom: 0;
    font-size: 0.8em;
    overflow: hidden;
  }
  .feedback__wrapper {
    width: 20em;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
  }
  .feedback__heading {
    opacity: 0.5;
    color: #434343;
    margin-top: 0.1em;
    margin-left: 0.5em;
    margin-right: 0.5em;
  }
  .feedback__icon {
    opacity: 0.5;
    filter: grayscale();
    margin-left: 0.5em;
    margin-right: 0.5em;
    display: block;
    position: relative;
  }
  .feedback__icon.feedback__icon--down {
    margin-top: 0.1em;
  }
  .feedback__icon.feedback__icon--up {
    margin-bottom: 0.1em;
  }
  .docs__social {
    justify-content: space-around;
    align-items: center;
    display: flex;
  }
  .dropdown__demo {
    width: 15em;
  }
  .button {
    z-index: 1;
    border: var(--button-border) solid transparent;
    background-color: var(--lite-text);
    color: var(--dk-text);
    text-transform: uppercase;
    border-radius: 1.5em;
    justify-content: center;
    align-items: center;
    height: 2.8em;
    padding: 0 1em;
    font-weight: 700;
    line-height: 1em;
    text-decoration: none;
    display: flex;
    position: relative;
    overflow: hidden;
  }
  .button.button-fb {
    background-color: var(--fb-blu);
  }
  .button.button-tw {
    background-color: var(--tw-blu);
  }
  .button.button-pin {
    background-color: var(--pin-red);
  }
  .button.button-li {
    background-color: var(--li-blu);
  }
  .button.button-em {
    background-color: var(--dk-orng);
  }
  .button.button-ig {
    background-color: var(--ig-pink);
  }


  .button.button--inverted {
      border-color: #095619;
      background-color: var(--transparent);
      color: #ffff;
      font-weight: 600;
      transition: color 0.2s, background-color 0.2s;
  }

  #Hero-MeetMatt-Button {
    display: block !important; /* Her zaman görünür yapar */
    visibility: visible !important; /* Görünür olmasını sağlar */
    position: relative; /* Diğer öğelere göre konumlandırır */
    z-index: 9999; /* Diğer öğelerin üstünde görünmesini sağlar */
    opacity: 1; /* Opaklığını tam yapar */
    text-align: center; /* Yazıyı yatay olarak ortalar */
    line-height: normal; /* Varsayılan satır yüksekliği */
}

.button {
    position: relative; /* Gerekirse pozisyonunu ayarlayın */
    z-index: 1; /* Normal butonlar için z-index */
    text-align: center; /* Yazıyı ortalar */
}

@media (max-width: 768px) {
    #Hero-MeetMatt-Button {
        display: block !important; /* Mobilde görünür yapar */
        visibility: visible !important; /* Görünür olmasını sağlar */
        opacity: 1; /* Opaklık tam */
        z-index: 9999; /* Diğerlerinin üstünde görünmesini sağlar */
        text-align: center; /* Yazıyı ortalar */
    }
}
  .button.button--inverted:hover {
    background-color: var(--lite-text);
    color: var(--dk-text);
  }
  .button.button--inverted.button-fb {
    border-color: var(--fb-blu);
    color: var(--fb-blu);
  }
  .button.button--inverted.button-fb:hover {
    background-color: var(--fb-blu);
    color: var(--lite-text);
  }
  .button.button--inverted.button-pin {
    border-color: var(--pin-red);
    color: var(--pin-red);
  }
  .button.button--inverted.button-pin:hover {
    background-color: var(--pin-red);
    color: var(--lite-text);
  }
  .button.button--inverted.button-tw {
    border-color: var(--tw-blu);
    color: var(--tw-blu);
  }
  .button.button--inverted.button-tw:hover {
    background-color: var(--tw-blu);
    color: var(--lite-text);
  }
  .button.button--inverted.button-li {
    border-color: var(--li-blu);
    color: var(--li-blu);
  }
  .button.button--inverted.button-li:hover {
    background-color: var(--li-blu);
    color: var(--lite-text);
  }
  .button.button--inverted.button-em {
    border-color: var(--dk-orng);
    color: var(--dk-orng);
  }
  .button.button--inverted.button-em:hover {
    background-color: var(--dk-orng);
    color: var(--lite-text);
  }
  .button.button--inverted.button-ig2 {
    border-style: solid;
    border-color: var(--ig-pink);
    color: var(--ig-pink);
    background-image: none;
  }
  .button.button--inverted.button-ig2:hover {
    color: var(--lite-text);
    background-image: linear-gradient(
      45deg,
      #f9da50,
      #e5652f 33.33%,
      #d32d31 66.66%,
      #aa23ae
    );
    border-style: none;
  }
  .button.button--inverted.button-ig {
    border-color: var(--ig-pink);
    color: var(--ig-pink);
  }
  .button.button--inverted.button-ig:hover {
    background-color: var(--ig-pink);
    color: var(--lite-text);
  }
  @media only screen and (max-width: 768px) {
    .button.button--inverted {
      display: none !important;
    }
  }
  
  .button.button--isolated {
    color: var(--reach-purple);
    background-color: #0000;
  }
  .button.button--isolated.button-ig {
    color: var(--ig-pink);
  }
  .button.button--isolated.button-ig2 {
    background-image: none;
  }
  .button.button--isolated.button-fb {
    color: var(--fb-blu);
  }
  .button.button--isolated.button-tw {
    color: var(--tw-blu);
  }
  .button.button--isolated.button-pin {
    color: var(--pin-red);
  }
  .button.button--isolated.button-li {
    color: var(--li-blu);
  }
  .button.button--isolated.button-em {
    color: var(--dk-orng);
  }
  .button.button__form--success {
    border-color: var(--buttons);
    color: var(--buttons);
    background-color: #f9fbfd12;
  }
  .button.buttonform__trigger {
    flex: 1;
  }
  .button.button-ig2 {
    border-style: none;
  }
  .dropdown__toggle {
    border: 1px solid var(--gray-2);
    background-color: #0000;
    border-radius: 0.3em;
    align-items: center;
    height: 3em;
    padding: 0 0.5em;
    display: flex;
    position: relative;
  }
  .docs__social--vert {
    flex: 1;
    justify-content: center;
    display: flex;
  }
  .docs__social--horiz {
    flex: 1;
  }
  .pw__wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    max-height: 100%;
    padding-left: 1em;
    padding-right: 1em;
    font-family: Lato, sans-serif;
    font-size: 1vw;
    line-height: 1em;
    display: flex;
    position: relative;
  }
  .pw__wrapper.pw__wrapper--hidden {
    display: none;
  }
  .search__button {
    background-color: #0000;
    width: 3em;
    padding: 0;
    display: none;
    position: absolute;
    inset: 0% auto 0% 0%;
  }
  .body--nospace {
    padding-top: 0;
  }
  .pw__form {
    border: 0.2em solid var(--lite-text);
    border-radius: 1.5em;
    align-items: center;
    width: 20em;
    height: 2.9em;
    padding: 0 0.25em 0 1em;
    display: flex;
  }
  .pw__submit {
    z-index: 1;
    cursor: pointer;
    background-color: #0000;
    width: 100%;
    height: 100%;
    padding: 0;
    position: absolute;
    inset: 0%;
  }
  .pw__input {
    background-color: var(--transparent);
    color: var(--lite-text);
    letter-spacing: 0.1em;
    border: 0 #000;
    flex: 1;
    min-width: 0;
    margin: 0;
    padding: 0;
    font-size: 1.3em;
    font-weight: 900;
  }
  .pw__input::placeholder {
    font-weight: 600;
  }
  .pw__error {
    text-align: center;
    background-color: #0000;
    margin-top: 0.5em;
    padding: 0;
    font-size: 0.5em;
    line-height: 1.4em;
    position: absolute;
    inset: 100% 0% auto;
  }
  .spacer {
    flex: 1;
    align-self: stretch;
    width: auto;
    height: auto;
  }
  .dropdown__content {
    color: #1b2229;
    text-align: center;
  }
  .docs__h3 {
    color: var(--gray-5);
    text-transform: uppercase;
    margin-top: 1em;
    margin-bottom: 0.7em;
    padding-top: 1em;
    font-size: 1.3em;
    font-weight: 700;
  }
  .docs__h4 {
    color: #9ca9b4;
    text-align: left;
    width: 100%;
    margin-top: 1.5em;
    margin-bottom: 1em;
    font-size: 1.3em;
  }
  .form__field {
    flex: 1;
    margin-bottom: 0.5em;
    margin-right: 0.5em;
    position: relative;
  }
  .form__field.form__field--shrink {
    flex: 0 auto;
  }
  .form__field.form__field--100,
  .form__field.form__field--guests {
    flex: 0 auto;
    width: 100%;
  }
  .search__icon {
    opacity: 0.5;
    filter: grayscale();
    color: #5398df;
    justify-content: center;
    align-items: center;
    width: 2.5em;
    height: 2.5em;
    transition: filter 0.2s, opacity 0.2s;
    display: flex;
  }
  .search__icon:hover {
    opacity: 1;
    filter: grayscale(0%);
  }
  .dropdown__text {
    margin-left: 0.2em;
    margin-right: 0.2em;
  }
  .filter {
    margin-bottom: 0;
  }
  .filter__button {
    display: none;
  }
  .badge {
    color: #7260db;
    border-radius: 1.5em;
    justify-content: center;
    align-items: stretch;
    width: 12em;
    height: 3em;
    padding-top: 0.9em;
    padding-bottom: 0.9em;
    line-height: 1.2em;
    text-decoration: none;
    display: flex;
  }
  .badge:hover,
  .badge.w--open {
    background-color: #f3f6fa;
  }
  .badge__wrapper {
    justify-content: center;
    align-items: center;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    display: flex;
  }
  .video {
    z-index: 1;
    object-fit: cover;
    background-image: url(https://cdn.prod.website-files.com/667f02e0521ad9fc4f06c43e/667f02e0521ad9fc4f06c4b0_infinite.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 6em;
    width: 100%;
    height: 100%;
    line-height: 0;
    position: relative;
    overflow: hidden;
  }
  .video.video-overlay {
    position: absolute;
    inset: 0%;
  }
  .drawer__link {
    text-align: right;
    text-transform: uppercase;
    border-radius: 0.3em;
    justify-content: center;
    align-items: center;
    min-height: 2.5em;
    padding-top: 0.15em;
    font-size: 1.2em;
    font-weight: 600;
    text-decoration: none;
    transition: padding 0.2s;
    display: flex;
  }
  .drawer__link:hover {
    padding-left: 0.75em;
    padding-right: 0.75em;
  }
  .drawer__link.w--current {
    border-right: 0.3em solid #0000;
  }
  .drawer__link.drawer__link--green:hover {
    color: var(--dk-grn);
  }
  .drawer__link.drawer__link--blue:hover {
    color: var(--dk-blu);
  }
  .drawer__link.drawer__link--orange:hover {
    color: var(--dk-orng);
  }
  .drawer__link.drawer__link--red:hover {
    color: var(--dk-red);
  }
  .drawer__link.drawer__link--button {
    transition: color 0.2s, background-color 0.2s, padding 0.2s;
  }
  .drawer__link.drawer__link--button:hover {
    background-color: var(--reach-purple);
    color: var(--lite-text);
    padding-right: 0.5em;
  }
  .drawer__link.drawer__link--brown:hover {
    color: var(--lite-brwn);
  }
  .drawer__link.drawer__link--purple:hover {
    color: var(--dk-prpl);
  }
  .drawer {
    background-color: black;
    border-bottom-right-radius: 0.5em;
    border-bottom-left-radius: 0.5em;
    flex-direction: column;
    flex: 1;
    width: 100%;
    height: 100%;
    padding: 0.5em 1em;
    display: flex;
    overflow: hidden;
  }
  .drawer__link--icon {
    margin-right: 0.8em;
    font-size: 1.1em;
  }
  .toc__link--arrow {
    margin-left: auto;
    font-size: 1.3em;
  }
  .form__trigger {
    color: #1b2229;
    align-items: center;
    text-decoration: none;
    display: block;
  }
  .morph__trigger {
    z-index: 1;
    color: #fff;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    display: block;
    position: absolute;
    inset: 0%;
  }
  .popup__close {
    color: #1b2229;
    background-color: #fff;
    border-radius: 50%;
    margin-bottom: 0.2em;
    font-size: 2em;
    position: absolute;
    inset: auto 0% 100% auto;
  }
  .blog__main {
    margin-bottom: 3em;
  }
  .nav__list {
    margin-bottom: 3em;
    display: flex;
  }
  .blog__article {
    margin-bottom: 2em;
  }
  .shadow-lg {
    box-shadow: 0 10px 1em -1em #00000080;
  }
  .border-lg {
    border-radius: 1em;
    overflow: hidden;
  }
  .border-md {
    border-radius: 0.5em;
    overflow: hidden;
  }
  .shadow-md {
    box-shadow: 0 7px 1em -1em #00000080;
  }
  .player__load {
    z-index: 0;
    opacity: 0.85;
    color: #fff;
    justify-content: center;
    align-items: center;
    font-size: 3.5em;
    transition: opacity 0.2s;
    display: flex;
    position: absolute;
    inset: 0%;
  }
  .player__load:hover {
    opacity: 1;
  }
  .nav__button--icon {
    width: 60%;
  }
  .accordion__menu {
    background-color: #0000;
    position: static;
    overflow: hidden;
  }
  .nav__links {
    z-index: 1;
    align-self: stretch;
    margin-left: auto;
    display: flex;
    position: relative;
  }
  .nav__container {
    z-index: 1;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1em;
    padding-right: 1em;
    display: flex;
    position: relative;
  }
  .accordion__click--hover {
    display: block;
  }
  .parallax-up {
    clear: none;
  }
  .dk-red {
    color: var(--dk-red);
  }
  .lite-red {
    color: var(--lite-red);
  }
  .dk-grn {
    color: var(--dk-grn);
  }
  .lite-grn {
    color: var(--lite-grn);
  }
  .dk-brwn {
    color: var(--dk-brwn);
  }
  .lite-brwn {
    color: var(--lite-brwn);
  }
  .dk-yell {
    color: var(--dk-yell);
  }
  .lite-yell {
    color: var(--lite-yell);
  }
  .dk-prpl {
    color: var(--dk-prpl);
  }
  .lite-prpl {
    color: var(--lite-prpl);
  }
  .dk-pnk {
    color: var(--dk-pnk);
  }
  .lite-pnk {
    color: var(--lite-pnk);
  }
  .dk-blu {
    color: var(--dk-blu);
  }
  .lite-blu {
    color: var(--lite-blu);
  }
  .dk-orng {
    color: var(--dk-orng);
  }
  .lite-orng {
    color: var(--lite-orng);
  }
  .dk-text {
    color: var(--dk-text);
  }
  .fb-blu {
    color: var(--fb-blu);
  }
  .tw-blu {
    color: var(--tw-blu);
  }
  .pin-red {
    color: var(--pin-red);
  }
  .yt-red {
    color: var(--yt-red);
  }
  .gg-yell {
    color: var(--gg-yell);
  }
  .li-blu {
    color: var(--li-blu);
  }
  .gray-1 {
    color: var(--gray-1);
  }
  .gray-3 {
    color: var(--gray-3);
  }
  .gray-4 {
    color: var(--gray-4);
  }
  .gray-5 {
    color: var(--gray-5);
  }
  .ta-grn {
    color: var(--ta-grn);
  }
  .docs__h2--div {
    margin-bottom: 4em;
  }
  .feedback {
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    font-size: 0.9em;
    display: flex;
  }
  .styles__filter {
    margin-top: 1em;
  }
  .toc-h2 {
    margin-top: 1.3em;
    margin-bottom: 0.6em;
    font-weight: 700;
  }
  .toc-h3 {
    margin-bottom: 0.6em;
  }
  .yp-red {
    color: var(--yp-red);
  }
  .border-sm {
    border-radius: 0.25em;
    overflow: hidden;
  }
  .docs__img {
    width: 10em;
    height: 10em;
  }
  .border-circle {
    border-radius: 100%;
    overflow: hidden;
  }
  .shadow-sm {
    box-shadow: 0 3px 1em -1em #000;
  }
  .shadow-xl {
    box-shadow: 0 10px 1em -0.8em #00000080;
  }
  .docs__containers {
    border-right: 1em solid var(--gray-2);
    border-left: 1em solid var(--gray-2);
    outline-color: var(--gray-3);
    outline-offset: -0.3em;
    text-align: center;
    outline-width: 0.3em;
    outline-style: dashed;
    justify-content: center;
    align-items: center;
    height: 5em;
    margin-bottom: 1em;
    display: flex;
  }
  .ig-pnk {
    color: var(--ig-pink);
  }
  .docs__caption {
    opacity: 0.75;
    text-align: center;
    letter-spacing: 0;
    margin-top: 1em;
    margin-bottom: 0.75em;
    font-size: 0.9em;
    font-style: normal;
    line-height: 1.1em;
    position: absolute;
    inset: 100% 0% auto;
  }
  .border-none {
    border-radius: 0;
  }
  .docs__block {
    flex-direction: column;
    flex: 1;
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative;
  }
  .shadow-none {
    box-shadow: 0 0 #0000;
  }
  .dk-brwn-bg {
    background-color: var(--dk-brwn);
  }
  .lite-brwn-bg {
    background-color: var(--lite-brwn);
  }
  .dk-grn-bg {
    background-color: var(--dk-grn);
  }
  .lite-grn-bg {
    background-color: var(--lite-grn);
  }
  .dk-blu-bg {
    background-color: var(--dk-blu);
  }
  .lite-blu-bg {
    background-color: var(--lite-blu);
  }
  .dk-prpl-bg {
    background-color: var(--dk-prpl);
  }
  .lite-prpl-bg {
    background-color: var(--lite-prpl);
  }
  .dk-pnk-bg {
    background-color: var(--dk-pnk);
  }
  .lite-pnk-bg {
    background-color: var(--lite-pnk);
  }
  .dk-red-bg {
    background-color: var(--dk-red);
  }
  .lite-red-bg {
    background-color: var(--lite-red);
  }
  .dk-orng-bg {
    background-color: var(--dk-orng);
  }
  .lite-orng-bg {
    background-color: var(--lite-orng);
  }
  .dk-yell-bg {
    background-color: var(--dk-yell);
  }
  .lite-yell-bg {
    background-color: var(--lite-yell);
  }
  .ta-grn-bg {
    background-color: var(--ta-grn);
  }
  .fb-blu-bg {
    background-color: var(--fb-blu);
  }
  .li-blu-bg {
    background-color: var(--li-blu);
  }
  .tw-blu-bg {
    background-color: var(--tw-blu);
  }
  .yp-red-bg {
    background-color: var(--yp-red);
  }
  .pin-red-bg {
    background-color: var(--pin-red);
  }
  .yt-red-bg {
    background-color: var(--yt-red);
  }
  .gg-yell-bg {
    background-color: var(--gg-yell);
  }
  .check__button {
    float: none;
    background-color: #0000;
    border-style: none;
    border-radius: 0.35em;
    width: auto;
    height: auto;
    margin: 0;
    line-height: 1em;
    position: absolute;
    inset: 0%;
  }
  .check__button.w--redirected-checked {
    background-color: #363636;
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    border-style: none;
    width: auto;
    height: auto;
    margin: 0;
    line-height: 1em;
  }
  .form__desc {
    font-size: 1.1em;
    line-height: 1.5em;
  }
  .link {
    border-bottom: 1px dotted var(--lite-text);
  }
  .form__h2 {
    align-items: center;
    font-size: 1.2em;
    font-weight: 700;
    line-height: 1.3em;
  }
  .form__heading--link {
    display: flex;
  }
  .navlist__highlight {
    background-color: var(--gray-1);
    color: var(--dk-text);
    border-radius: 0.25em;
    margin-left: 1em;
    padding: 0.3em 0.7em;
    font-size: 0.7em;
  }
  .navlist__highlight:hover {
    background-color: var(--gray-2);
  }
  .motto__right {
    flex: 1;
  }
  .newsletter__fields {
    display: flex;
  }
  .motto__left {
    flex: 1;
  }
  .motto__text {
    font-size: 1.4em;
    font-style: italic;
    font-weight: 200;
    line-height: 1.1em;
  }
  .accordion {
    display: block;
  }
  .accordion__toggle {
    justify-content: center;
    align-items: center;
    height: 3em;
    padding: 0;
    display: flex;
  }
  .form__default {
    background-color: #0000;
    margin: 0;
    padding: 0;
  }
  .form__default.form__default--contact {
    height: 13em;
  }
  .form__default.form__default--partners {
    height: 43.5em;
  }
  .form__success {
    border: 1px solid var(--lite-text);
    border-radius: 0.5em;
    justify-content: center;
    align-items: center;
    height: 100%;
    max-height: 100vh;
    line-height: 1.3em;
    display: flex;
  }
  .form__success.form__success--newsletter {
    border-radius: 1.5em;
  }
  .form__success.form__success--partners {
    flex-flow: column;
    padding-bottom: 2em;
  }
  .form__success.form__success--updates {
    border-style: none;
  }
  .flexbreak {
    width: 100%;
  }
  .form__heading {
    justify-content: center;
    align-items: center;
    margin-bottom: 0.6em;
    display: flex;
  }
  .isotope-container {
    position: relative;
  }
  .isotope-item.isotope-3col,
  .isotope-sizer.isotope-3col {
    width: 33.333%;
  }
  .gray-1-bg {
    background-color: var(--gray-1);
  }
  .gray-2-bg {
    background-color: var(--gray-2);
  }
  .gray-3-bg {
    background-color: var(--gray-3);
  }
  .gray-4-bg {
    background-color: var(--gray-4);
  }
  .gray-5-bg {
    background-color: var(--gray-5);
    color: var(--lite-text);
  }
  .dk-bg {
    background-color: var(--dk-text);
    color: var(--lite-text);
  }
  .form__list {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
  }
  .scale1 {
    font-size: 1.1em;
  }
  .scale2 {
    font-size: 1.2em;
  }
  .scale3 {
    font-size: 1.3em;
  }
  .scale4 {
    font-size: 1.4em;
  }
  .scale5 {
    font-size: 1.5em;
  }
  .scale6 {
    font-size: 1.6em;
  }
  .scale7 {
    font-size: 1.7em;
  }
  .scale9 {
    font-size: 1.9em;
  }
  .scale8 {
    font-size: 1.8em;
  }
  .scale10 {
    font-size: 2em;
  }
  .scale-1 {
    font-size: 0.9em;
  }
  .scale-2 {
    font-size: 0.8em;
  }
  .scale-3 {
    font-size: 0.7em;
  }
  .styles__video {
    height: 36em;
    margin-bottom: 2em;
    position: relative;
  }
  .video-muted {
    z-index: 4;
    opacity: 0.7;
    background-image: url(https://cdn.prod.website-files.com/667f02e0521ad9fc4f06c43e/667f02e0521ad9fc4f06c55b_volume-mute-regular-white.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 50%;
    width: 1em;
    height: 1em;
    font-size: 5.4em;
    transition: opacity 0.2s;
    display: block;
    position: absolute;
    inset: auto 0% 0% auto;
  }
  .video-muted:hover {
    opacity: 1;
  }
  .video-muted.video-unmuted {
    opacity: 1;
    background-image: url(https://cdn.prod.website-files.com/667f02e0521ad9fc4f06c43e/667f02e0521ad9fc4f06c552_volume-regular-white.svg);
  }
  .capture {
    padding-top: 4em;
    padding-bottom: 4em;
  }
  .space-1 {
    margin-bottom: 1em;
  }
  .space-2 {
    margin-bottom: 2em;
  }
  .space-3 {
    margin-bottom: 3em;
  }
  .space-4 {
    margin-bottom: 4em;
  }
  .space-5 {
    margin-bottom: 5em;
  }
  .space-7 {
    margin-bottom: 7em;
  }
  .space-6 {
    margin-bottom: 6em;
  }
  .button__embed {
    z-index: 1;
    position: absolute;
    inset: 0%;
  }
  .form__success__lottie {
    width: 2em;
    height: 2em;
  }
  .form__success__trigger {
    display: none;
  }
  .form__success__icon.form__success__icon--partners {
    margin-bottom: 0.5em;
    font-size: 1.9em;
  }
  .nav__search--trigger {
    z-index: 1;
    justify-content: center;
    align-items: center;
    width: 3em;
    display: flex;
    position: absolute;
    inset: 0% auto 0% 0%;
  }
  .sonar__icon {
    z-index: 1;
    width: 1em;
    height: 1em;
    font-size: 0.5em;
    position: relative;
    top: -0.2em;
  }
  .button__text {
    z-index: 2;
    text-transform: uppercase;
    white-space: nowrap;
    margin-left: 0.2em;
    margin-right: 0.2em;
    padding-top: 0.15em;
    line-height: 1em;
    position: relative;
  }
  .button__text.button-ig2 {
    color: var(--lite-text);
  }
  .button__text.button__text--lg {
    font-size: 1.2em;
  }
  .spacer1 {
    width: 1em;
    height: 1em;
  }
  .hidden {
    display: none;
  }
  .cookies__check--heading {
    margin-bottom: 0.2em;
    line-height: 1.3em;
    display: block;
  }
  .cookies__check--label {
    z-index: 1;
    letter-spacing: 0;
    flex: 1;
    order: -1;
    margin-bottom: 0;
    display: block;
    position: relative;
  }
  .cookies__check--box {
    z-index: 0;
    float: right;
    letter-spacing: 0;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 0.1em;
    width: 1em;
    min-width: 1em;
    height: 1em;
    min-height: 1em;
    margin: 0;
    font-size: 1.2em;
    position: relative;
  }
  .cookies__check--box.w--redirected-checked {
    background-color: #fff;
    background-image: url(https://cdn.prod.website-files.com/667f02e0521ad9fc4f06c43e/66804ca77e137db3c6544442_check-solid-compressed.svg);
    background-size: 75%;
    border-style: none;
    border-radius: 0.1em;
    width: 1em;
    height: 1em;
    margin: 0;
  }
  .cookies__check--box.cookies__check--static {
    background-image: url(https://cdn.prod.website-files.com/667f02e0521ad9fc4f06c43e/66804ca77e137db3c6544442_check-solid-compressed.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 75%;
  }
  .cookies__fields {
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin-top: 0.5em;
    display: flex;
  }
  .cookies__check--note {
    opacity: 0.5;
    margin-top: 0.1em;
    display: block;
  }
  .cookies__icon {
    width: 1em;
    height: 1em;
    margin-right: 0.4em;
    font-size: 1.7em;
  }
  .cookies {
    z-index: 1000;
    width: 100%;
    font-family: Lato, sans-serif;
    font-size: 1vw;
    position: fixed;
    inset: auto 0% 0%;
  }
  .cookies__link {
    opacity: 0.5;
    color: var(--dk-text);
    line-height: 1em;
    text-decoration: none;
    transition: opacity 0.2s;
  }
  .cookies__link:hover {
    opacity: 1;
  }
  .cookies__button {
    background-color: #000;
    border-radius: 0.25em;
    margin-left: 0.9em;
    padding: 0.7em 0.9em 0.65em;
    font-weight: 700;
    line-height: 1em;
    text-decoration: none;
  }
  .cookies__form--block {
    z-index: 1;
    margin-bottom: 0;
    display: flex;
    position: relative;
  }
  .cookies__check {
    width: 48%;
    margin-top: 1em;
    margin-bottom: 0;
    padding-left: 0;
    line-height: 1.2em;
  }
  .cookies__policy {
    color: var(--dk-text);
  }
  .cookies__close {
    z-index: 1;
    cursor: default;
    position: absolute;
    inset: 0%;
  }
  .cookies__preferences {
    z-index: 1000;
    justify-content: center;
    align-items: flex-end;
    display: none;
    position: fixed;
    inset: 0%;
  }
  .cookies__banner {
    z-index: 2;
    color: var(--dk-text);
    background-color: #fff;
    border-radius: 0.3em;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 43em;
    margin-bottom: 2em;
    padding: 0.8em 0.8em 0.8em 1em;
    font-size: 1.2em;
    display: flex;
    position: relative;
  }
  .cookies__text {
    white-space: nowrap;
    flex: 1;
    font-size: 1.2em;
    line-height: 1.2em;
  }
  .cookies__optin {
    z-index: 1000;
    justify-content: center;
    align-items: flex-end;
    height: 0;
    display: none;
    position: fixed;
    inset: auto 0% 0%;
  }
  .richtext {
    font-size: 1.3em;
  }
  .richtext h6 {
    text-transform: uppercase;
    margin-top: 1.25em;
    margin-bottom: 0.7em;
    font-weight: 400;
    line-height: 1.2em;
  }
  .richtext h5 {
    margin-top: 1em;
    margin-bottom: 0.7em;
    font-size: 1.1em;
    font-weight: 500;
    line-height: 1.2em;
  }
  .richtext h4 {
    margin-top: 1em;
    margin-bottom: 0.6em;
    font-size: 1.3em;
    font-weight: 500;
    line-height: 1.2em;
  }
  .richtext h3 {
    margin-top: 1em;
    margin-bottom: 0.5em;
    font-size: 1.5em;
    font-weight: 500;
    line-height: 1.2em;
  }
  .richtext h2 {
    text-transform: uppercase;
    margin-top: 1em;
    margin-bottom: 0.5em;
    font-size: 1.7em;
    font-weight: 600;
    line-height: 1.2em;
  }
  .richtext h1 {
    text-transform: uppercase;
    margin-bottom: 0.5em;
    font-size: 2em;
    font-weight: 600;
    line-height: 1.2em;
  }
  .richtext p {
    margin-bottom: 1em;
    font-size: 1em;
    font-weight: 300;
    line-height: 1.5em;
  }
  .richtext blockquote {
    width: 70%;
    margin: 1.5em auto;
    font-size: 1.3em;
    line-height: 1.5em;
  }
  .richtext strong {
    font-weight: 700;
  }
  .richtext em {
    font-style: italic;
  }
  .richtext a {
    border-bottom: 1px dotted #000;
  }
  .richtext ol {
    margin-bottom: 1em;
    padding-left: 1.25em;
    list-style-type: decimal;
  }
  .richtext ul {
    margin-bottom: 1em;
    padding-left: 1.25em;
    list-style-type: disc;
  }
  .richtext li {
    margin-bottom: 0.25em;
    line-height: 1.4em;
  }
  .richtext.richtext__about {
    padding-top: 2em;
  }
  .utility__container {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    max-height: 100%;
    padding-left: 1em;
    padding-right: 1em;
    font-size: 1em;
    display: flex;
    position: relative;
  }
  .utility__nav {
    justify-content: center;
    align-items: center;
    margin-top: 1.5em;
    font-size: 1.3em;
    display: flex;
  }
  .pw__form--wrapper {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    font-size: 1.7em;
    position: relative;
  }
  .pw__eyes {
    justify-content: center;
    align-items: center;
    font-size: 2em;
    display: flex;
  }
  .pw__eye {
    background-color: var(--lite-text);
    border-radius: 50%;
    width: 1em;
    height: 1em;
    margin-left: 1em;
    margin-right: 1em;
  }
  .pw__lock {
    z-index: -1;
    color: var(--reach-purple);
    position: absolute;
    inset: 0%;
  }
  .pw__lock--wrapper {
    justify-content: center;
    align-items: center;
    width: 20em;
    height: 23em;
    margin-bottom: 2em;
    padding-top: 9em;
    display: flex;
    position: relative;
  }
  .pw__button {
    background-color: var(--lite-text);
    color: var(--dk-text);
    border-radius: 50%;
    width: 2em;
    height: 2em;
    transition: transform 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
  }
  .pw__button:hover {
    transform: rotate(45deg);
  }
  .pw__icon {
    width: 100%;
    height: 100%;
    padding: 0.5em;
  }
  .nav__section {
    align-items: center;
    display: flex;
  }
  .nav__section.nav__section--left {
    flex: 1;
    justify-content: flex-start;
  }
  .nav__section.nav__section--right {
    flex: 1;
    justify-content: flex-end;
    align-self: stretch;
  }
  .brand__embed {
    width: 100%;
    height: 100%;
    line-height: 0;
  }
  .dash__animation--trigger {
    z-index: -1;
    position: absolute;
    inset: 0%;
  }
  .toc {
    float: left;
    border: 1px solid var(--gray-2);
    background-color: var(--gray-1);
    border-radius: 0.5em;
    flex: 1;
    width: 100%;
    height: 100%;
    padding-bottom: 1.25em;
    padding-left: 1.7em;
    padding-right: 1.5em;
    font-size: 1.1em;
    list-style-type: none;
    overflow: scroll;
  }
  .button__form--check {
    border-radius: 50%;
    width: 1em;
    height: 1em;
    margin-left: 0.5em;
    font-size: 1.3em;
  }
  .form__buttonform {
    z-index: 0;
    margin-bottom: 0;
    display: none;
    position: absolute;
    inset: 0%;
  }
  .buttonform {
    width: 12em;
    height: 3em;
    position: relative;
  }
  .buttonform__fields {
    display: flex;
  }
  .nav__bg {
    z-index: 0;
    background-color: var(--background);
    position: absolute;
    inset: 0%;
  }
  .primary-color {
    color: var(--primary-color);
  }
  .primary-color-bg {
    background-color: var(--primary-color);
  }
  .secondary-color {
    color: var(--secondary-color);
  }
  .secondary-color-bg {
    background-color: var(--secondary-color);
  }
  .docs__h3--div {
    flex-wrap: wrap;
    flex: 1;
  }
  .button-ig2 {
    background-image: linear-gradient(
      45deg,
      #f9da50,
      #e5652f 33.33%,
      #d32d31 66.66%,
      #aa23ae
    );
  }
  .nav__list--column {
    flex: 1;
  }
  .form__brand {
    height: 1em;
  }
  .form__buttons--label {
    margin-top: 1em;
    margin-bottom: 1em;
    font-weight: 700;
  }
  .form__disclaimer {
    color: var(--gray-5);
    text-align: center;
    width: 100%;
    font-size: 0.9em;
    font-style: italic;
  }
  .badge__icon {
    width: 1em;
    height: 1em;
    font-size: 1.2em;
  }
  .docs__h1 {
    text-align: center;
    width: 12em;
    margin-bottom: 0.4em;
    margin-left: auto;
    margin-right: auto;
    font-family: Alice, sans-serif;
    font-size: 3.7em;
    font-weight: 400;
    line-height: 1.1em;
  }
  .docs__desc {
    text-align: center;
    width: 21em;
    margin-bottom: 1em;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.8em;
    line-height: 1.3em;
  }
  .header {
    z-index: 4;
    font-size: 1em;
    position: fixed;
    inset: 0% 0% auto;
  }
  .docs__lottie {
    z-index: -1;
    height: 27em;
    margin-top: -2.5em;
    margin-bottom: -2.5em;
    position: relative;
  }
  .docs__cta {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    display: flex;
  }
  .docs__cta.docs__cta--left {
    justify-content: flex-start;
  }
  .nav__link {
    text-transform: uppercase;
    justify-content: center;
    align-items: center;
    padding-top: 0.15em;
    padding-left: 0.7em;
    padding-right: 0.7em;
    font-size: 1.1em;
    font-weight: 500;
    display: flex;
  }
  .bold {
    font-weight: 700;
  }
  .italic {
    font-style: italic;
  }
  .docs {
    margin-left: auto;
    padding-top: 5em;
  }
  .docs__nav {
    float: left;
    width: 100%;
    height: 100vh;
    padding-top: 4.5em;
    padding-bottom: 1em;
    position: sticky;
    top: 0;
  }
  .docs__p {
    margin-bottom: 0.7em;
    font-size: 1.3em;
    line-height: 1.5em;
  }
  .docs__title {
    margin-bottom: 0.3em;
    font-size: 3em;
    font-weight: 700;
    line-height: 1.1em;
  }
  .docs__subtitle {
    margin-bottom: 1em;
    font-size: 1.5em;
    line-height: 1.4em;
  }
  .docs__buttons {
    flex-direction: column;
    display: flex;
    position: relative;
  }
  .docs__row {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 3em;
    display: flex;
  }
  .docs__row.docs__row--between {
    justify-content: space-between;
  }
  .docs__row.docs__row--around {
    justify-content: space-around;
  }
  .docs__logo {
    width: 100%;
    height: 6em;
    padding-top: 1.2em;
    padding-bottom: 1.2em;
    position: relative;
  }
  .docs__logos {
    flex-direction: column;
    flex: 1;
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative;
  }
  .docs__identity {
    text-align: center;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    width: 33.333%;
    height: 3em;
    margin-bottom: 4em;
    font-style: italic;
    display: flex;
    position: relative;
  }
  .docs__color {
    color: var(--lite-text);
    text-align: center;
    flex: 1;
    line-height: 1.6em;
    position: relative;
  }
  .docs__color.docs__color--colorize {
    color: var(--dk-text);
  }
  .docs__color.docs__color--colorizehue {
    color: var(--reach-purple);
  }
  .docs__color.docs__color--colorizebg {
    background-color: var(--gray-4);
  }
  .docs__h4--div {
    flex: 1;
  }
  .docs__element {
    outline-color: var(--gray-3);
    outline-offset: -0.3em;
    text-align: center;
    outline-width: 0.3em;
    outline-style: dashed;
    flex-direction: column;
    justify-content: space-around;
    align-items: stretch;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    padding: 0.3em;
    display: flex;
    position: relative;
  }
  .docs__element.docs__element--header {
    height: 4em;
  }
  .docs__element.docs__element--main {
    height: 14em;
    margin-top: 1em;
    margin-bottom: 1em;
  }
  .docs__element.docs__element--footer {
    height: 6em;
  }
  .docs__element.docs__element--container {
    border-right: 1em solid var(--gray-2);
    border-left: 1em solid var(--gray-2);
    flex: 1;
  }
  .docs__parallax {
    text-align: center;
    flex: 1;
  }
  .docs__border,
  .docs__shadow {
    position: relative;
  }
  .docs__font {
    text-align: center;
    letter-spacing: 0.3em;
    white-space: break-spaces;
    flex: 1;
    margin-bottom: 4em;
    line-height: 2em;
    position: relative;
  }
  .docs__font--1 {
    font-family: Bitcheese, sans-serif;
  }
  .docs__font--3 {
    font-family: Alice, sans-serif;
  }
  .lite-text {
    color: var(--lite-text);
  }
  .lite-bg {
    background-color: var(--lite-text);
  }
  .button__icon {
    width: 1em;
    height: 1em;
    margin-left: 0.2em;
    margin-right: 0.2em;
    font-size: 1em;
  }
  .button__icon.button-ig2 {
    background-image: linear-gradient(
      45deg,
      #f9da50,
      #e5652f 33.33%,
      #d32d31 66.66%,
      #aa23ae
    );
  }
  .spacer-half {
    width: 0.5em;
    height: 0.5em;
  }
  .knockout {
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
  }
  .docs__code {
    border: 1px solid var(--gray-2);
    background-color: var(--gray-1);
    text-align: center;
    border-radius: 0.25em;
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.8em 0.7em 0.8em 0.8em;
    font-family: Source Code Pro, sans-serif;
    position: relative;
  }
  .docs__hero {
    flex-direction: column;
    align-items: center;
    display: flex;
  }
  .docs__code--selector {
    color: var(--gray-5);
  }
  .docs__code--property {
    color: var(--lite-blu);
  }
  .docs__code--value {
    color: var(--lite-grn);
  }
  .docs__code--row {
    display: flex;
  }
  .docs__code--label {
    color: var(--gray-5);
    letter-spacing: -0.02em;
    align-items: center;
    padding-left: 0.9em;
    padding-right: 0.7em;
    display: flex;
    position: absolute;
    inset: 0% auto 0% 100%;
  }
  .docs__code--arrow {
    width: 2.5em;
    position: absolute;
    inset: -12% 70% auto auto;
  }
  .docs__code--op {
    font-family: Lato, sans-serif;
    font-size: 1.2em;
    font-weight: 700;
    position: relative;
  }
  .docs__dropdown {
    justify-content: space-around;
    width: 33.333%;
    margin-bottom: 5em;
    display: flex;
    position: relative;
  }
  .dropdown__icon {
    width: 1em;
    height: 1em;
    margin-left: 0.2em;
    margin-right: 0.2em;
  }
  .dropdown__caret {
    background-color: var(--gray-1);
    border-radius: 0.2em;
    width: 1em;
    height: 1em;
    font-size: 1.2em;
    position: absolute;
    inset: -0.5em auto auto 50%;
    transform: translate(-50%) rotate(45deg);
  }
  .dropdown__caret.dropdown__caret--upleft {
    top: auto;
    bottom: -0.5em;
    left: 1em;
    transform: rotate(45deg);
  }
  .dropdown__caret.dropdown__caret--upcenter {
    inset: auto auto -0.5em 50%;
    transform: translate(-50%) rotate(45deg);
  }
  .dropdown__caret.dropdown__caret--upright {
    inset: auto 1em -0.5em auto;
    transform: rotate(45deg);
  }
  .dropdown__caret.dropdown__caret--downleft {
    left: 1em;
    transform: rotate(45deg);
  }
  .dropdown__caret.dropdown__caret--downright {
    left: auto;
    right: 1em;
    transform: rotate(45deg);
  }
  .accordion__text {
    margin-left: 0.2em;
    margin-right: auto;
  }
  .accordion__icon {
    width: 1em;
    height: 1em;
    margin-left: 0.2em;
    margin-right: 0.2em;
  }
  .accordion__pane {
    border: 1px solid var(--gray-2);
    background-color: var(--gray-1);
    border-radius: 0.2em;
    padding: 1em;
  }
  .docs__note {
    background-color: #ffcbcc40;
    border: 1px solid #ffcbcc8a;
    border-radius: 0.25em;
    padding: 1em 1.1em;
  }
  .docs__note--text {
    font-size: 1.2em;
    line-height: 1.5em;
  }
  .toc-active {
    list-style-type: disc;
  }
  .toc__embed {
    display: none;
  }
  .docs__richtext {
    border: 1px solid var(--gray-2);
    border-radius: 0.5em;
    padding: 1.5em;
  }
  .docs__accordion {
    width: 49%;
    position: relative;
  }
  .docs__balancetext {
    border: 1px solid var(--gray-2);
    text-align: center;
    border-radius: 0.5em;
    justify-content: center;
    align-items: center;
    width: 49%;
    height: 5em;
    margin-bottom: 4em;
    padding: 1em;
    line-height: 1.3em;
    display: flex;
    position: relative;
  }
  .docs__dropcaps {
    border: 1px solid var(--gray-2);
    border-radius: 0.5em;
    width: 49%;
    margin-bottom: 3em;
    padding-top: 1em;
    padding-left: 1em;
    padding-right: 1em;
    position: relative;
  }
  .docs__class {
    color: var(--lite-text);
    letter-spacing: 0.03em;
    background-color: #327bed;
    border-radius: 0.25em;
    margin-left: 0.1em;
    margin-right: 0.1em;
    padding-left: 0.5em;
    padding-right: 0.5em;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
      Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 0.8em;
    font-weight: 200;
    line-height: 1.8em;
    display: inline-block;
    position: relative;
    top: -0.15em;
  }
  .docs__class.docs__class--var {
    background-color: var(--reach-purple);
  }
  .docs__class.docs__class--block {
    margin-top: 0.1em;
    margin-bottom: 0.1em;
    font-size: 1em;
  }
  .docs__class.docs__class--attribute {
    background-color: #363636;
  }
  .docs__knockout {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 49%;
    margin-bottom: 4em;
    display: flex;
    position: relative;
  }
  .docs__knockout--demo {
    background-image: linear-gradient(to right, var(--reach-purple), white);
    border-radius: 0.15em;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 4em;
    font-weight: 900;
    line-height: 1.4em;
    display: flex;
  }
  .sonar {
    z-index: 1;
    justify-content: center;
    align-items: center;
    width: 1em;
    height: 1em;
    margin-right: 0.1em;
    display: flex;
    position: relative;
  }
  .live-indicator-icon {
    z-index: 1;
    width: 0.8em;
    height: 0.8em;
    position: relative;
  }
  .sonar__lottie {
    z-index: 0;
    opacity: 0.5;
    width: 1em;
    height: 1em;
    font-size: 10em;
    position: absolute;
    inset: 50% auto auto 45%;
    transform: translate(-50%, -50%);
  }
  .docs__company {
    justify-content: center;
    align-items: center;
    width: 33.333%;
    height: 4em;
    margin-bottom: 5em;
    padding-left: 1em;
    padding-right: 1em;
    display: flex;
    position: relative;
  }
  .docs__h3--row {
    text-align: center;
    display: flex;
  }
  .dropcaps__p {
    margin-bottom: 1em;
    font-size: 1.3em;
    line-height: 1.4em;
  }
  .smallcaps {
    font-variant: small-caps;
  }
  .ellipsis {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .isotope-list {
    margin-left: -1%;
    margin-right: -1%;
  }
  .docs__isotope__item {
    border: 1px solid var(--gray-2);
    border-radius: 0.5em;
    flex-direction: column;
    place-content: center;
    align-items: center;
    height: 8em;
    display: flex;
  }
  .docs__code2 {
    border: 1px solid var(--gray-2);
    border-radius: 0.25em;
    margin-top: 2em;
    margin-bottom: 2em;
    position: relative;
    overflow: hidden;
  }
  .docs__code2__row {
    line-height: 1.6em;
  }
  .docs__code2__embed {
    position: absolute;
    inset: 0%;
  }
  .docs__animation {
    width: 100%;
    overflow: hidden;
  }
  .docs__isotope {
    margin-bottom: 2em;
  }
  .agency {
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    font-family: Lato, sans-serif;
    line-height: 1em;
    display: flex;
    position: relative;
  }
  .agency__link {
    border-radius: 0.25em;
    justify-content: center;
    align-items: center;
    padding: 0.8em 1.3em;
    text-decoration: none;
    display: flex;
  }
  .agency__link:hover {
    background-color: #ffffff14;
  }
  .agency__link.agency__link--trademark {
    width: 100%;
  }
  .agency__icon {
    width: 1em;
    height: 1em;
    margin-right: 0.5em;
  }
  .agency__text {
    line-height: 1.6em;
  }
  .home__hero {
    text-align: center;
    background-image: url(./logo/Caps4.GIF);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 56em;
    max-height: 100vh;
    overflow: hidden;
  }
  @media only screen and (max-width: 768px) {
    .events__marquee {
        margin-top: -5px; /* Minimal yukarı kaydır */
        border-top: 2px solid #000; /* Üstte bir çizgi ekle */
        border-bottom: 2px solid #000; /* Altta bir çizgi ekle */
        background-color: #fff; /* Arka plan rengi */
        padding: 10px 0; /* Boşluk ekle */
    }
}

  .events__marquee {
      font-size: 12px; /* Marquee metin boyutunu küçült */
      margin-top: 15px; /* Marquee üstündeki boşluk */
  }


  .nav__cta {
    
    font-size: 0.9em;
  }
  .nav__cta {
    display: inline-block; /* Butonları yan yana yerleştirir */
    margin-right: 10px; /* Sağ tarafta mesafe */
}

.nav__cta:last-child {
    margin-right: 0; /* Son butonun sağında mesafe olmasın */
}
  .nav__button__div {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    line-height: 0;
    display: flex;
  }
  .home__hero__content {
    background-image: linear-gradient(#00000080 5%, #fff0 20% 55%, #000 80%);
    flex-flow: column;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    padding-bottom: 1.5em;
    display: flex;
  }
  .home__h1 {
    text-transform: uppercase;
    text-shadow: 0.03em 0.03em #000;
    margin-bottom: 0.2em;
    font-size: 4.5em;
    font-weight: 700;
  }
  .home__hero__ctas {
    justify-content: center;
    align-items: center;
    margin-bottom: 2.5em;
    font-size: 1.1em;
    display: flex;
  }
  .events__marquee {
    border: 2px solid var(--border-white-10);
    background-color: var(--background);
    border-radius: 1.35em;
    justify-content: center;
    align-items: center;
    height: 3em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    font-size: 1.5em;
    display: flex;
    overflow: hidden;
}

  .events__marquee__coll {
    flex: 1;
  }
  .events__marquee__coll.events__marquee__coll--2 {
    position: absolute;
    inset: 0% auto 0% 100%;
  }
  .events__marquee__list {
    display: flex;
  }
  .events__marquee__item {
    border-right: 1px solid var(--border-white-10);
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    padding-left: 1.6em;
    padding-right: 1.6em;
    font-weight: 300;
    display: flex;
  }
  .events__marquee__track {
    font-size: 1em;
    display: flex;
    position: relative;
    animation: marquee 40s linear infinite; /* Animasyonu 40 saniyede tamamlayacak şekilde ayarladım */
    white-space: nowrap;
}

  .events__marquee__button {
    border: 1px solid var(--lite-text);
    text-transform: uppercase;
    white-space: nowrap;
    border-radius: 1em;
    justify-content: center;
    align-items: center;
    height: 2em;
    margin-left: 0.5em;
    padding-top: 0.1em;
    padding-left: 1em;
    padding-right: 1em;
    font-size: 0.8em;
    font-weight: 200;
    line-height: 1em;
    transition: color 0.2s, background-color 0.2s;
    display: flex;
  }
  .events__marquee__button:hover {
    color: var(--dk-text);
    background-color: #fff;
  }
  .events__marquee__text {
    white-space: nowrap;
    padding-top: 0.15em;
  }
  .events__marquee__text.events__marquee__text--bold {
    text-transform: uppercase;
    font-weight: 400;
  }
  .events__marquee__embed {
    display: none;
  }
  
  .events__marquee__track {
    font-size: 1em;
    display: flex;
    position: relative;
    animation: marquee 80s linear infinite; /* Animasyonu yavaşlattım */
    white-space: nowrap;
}

.events__marquee__track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
   
}

.events__marquee__list {
    display: flex;
}

.events__marquee__item {
    border-right: 1px solid var(--border-white-10);
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    padding-left: 1.6em;
    padding-right: 1.6em;
    font-weight: 300;
    display: flex;
}

  .gallery {
    padding-top: 8em;
    padding-bottom: 8em;
    overflow: hidden;
  }
  .section__header {
    text-align: center; /* Başlığı ortala */
    margin-bottom: 1em; /* Başlık ile sosyal ikonlar arasında boşluk */
}
  .section__h2 {
    text-transform: uppercase;
    margin-bottom: 0.3em;
    font-size: 3em;
    font-weight: 600;
  }
  .gallery__socials {
    font-size: 3em;
  }
  .grid__gradient {
    background-image: linear-gradient(#fff0, #000 50%);
    height: 50em;
    position: absolute;
    inset: auto 0% 0%;
  }
  .gallery__grid {
    margin-bottom: -25em;
  }
  .events {
    padding-top: 6em;
}

.events__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}




/* .gallery'nin masaüstü görünümünde ortalanması ve kutuların büyütülmesi */
.gallery {
    padding-top: 8em;
    padding-bottom: 8em;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center; /* İçeriği hem dikey hem yatayda ortalar */
    align-items: center;
    min-height: 100vh; /* Sayfanın tam yüksekliğini kaplar */
}

.section__header {
    text-align: center; /* Başlığı ortala */
    margin-bottom: 1em; /* Başlık ile sosyal ikonlar arasında boşluk */
}

.section__h2 {
    text-transform: uppercase;
    margin-bottom: 0.3em;
    font-size: 5em; 
    font-weight: 700; 
}

.gallery__socials {
    font-size: 4em; /* Sosyal medya ikonlarını büyüttüm */
    display: flex;
    justify-content: center; /* Sosyal medya ikonlarını ortala */
    gap: 2em; /* İkonlar arasındaki boşluğu büyüttüm */
}

.grid__gradient {
    background-image: linear-gradient(#fff0, #000 50%);
    height: 60em; /* Yüksekliği biraz daha büyüttüm */
    position: absolute;
    inset: auto 0% 0%;
}

.gallery__grid {
    margin-bottom: -20em; /* Grid düzenini hafifçe yukarı çektim */
}

/* Responsive ayarlar (opsiyonel) */
@media (max-width: 1024px) {
    .gallery {
        padding-top: 4em;
        padding-bottom: 4em;
    }

    .section__h2 {
        font-size: 2em;
    }

    .gallery__socials {
        font-size: 2.5em;
        gap: 1em;
    }
}



.vip {
    display: flex;
    justify-content: center; /* Ortala */
    flex-wrap: wrap; /* Birden fazla satıra yayılmasını sağlar */
    margin: 2em 0; /* Üst ve alt boşluk */
}

.card-container {
  display: flex;
  justify-content: center;
  padding: 0.5em; /* Üst ve alt boşlukları daralt */
}

.card {
  width: 100%; 
  max-width: 220px; /* Kartın genişliğini daha da daralttım */
  margin: 0.5em; /* Kartların arasındaki boşluğu korudum */
  background: linear-gradient(135deg, #095619, #0000); 
  border-radius: 12px; 
  overflow: hidden;
  transition: transform 0.3s; 
}

.card:hover {
  transform: scale(1.05); 
}

.card__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: white;
  padding: 0.5em; 

.card__image {
  max-width: 60%;
  height: auto; 
  margin-bottom: 0.3em; /
}
}
.card__content {
  text-align: center; 
}

.card__venue {
  font-size: 1em; 
  font-weight: bold; 
}

.card__date {
  font-size: 0.8em; 
  margin: 0.2em 0; 
}

.card__cta {
  margin-top: 0.5em; 
}

.button {
  background-color: #095619;
  color: #fff;
  padding: 0.4em 0.6em; /* Butonun boyutunu korudum */
  border-radius: 4px; 
  cursor: pointer; 
  transition: background-color 0.2s; 
}

.button:hover {
    background-color: #0ed400; /* Hover sırasında renk değişimi */
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .card-container {
        flex-direction: column; /* Mobilde dikey düzen */
        align-items: center; /* Ortala */
    }

    .card {
        max-width: 90%; /* Mobilde maksimum genişlik */
    }
}

.button {
    background-color: #095619;  /* Buton arka plan rengi */
    color: #fff; /* Buton metni rengi */
    padding: 0.5em 1em; /* Buton içi boşluk */
    border-radius: 4px; /* Buton kenarlarını yuvarla */
    cursor: pointer; /* İmleci el yap */
    transition: background-color 0.2s; /* Hover için geçiş */
}

.button:hover {
    background-color: #095619; /* Hover sırasında renk değişimi */
}

/* Desktop görünüm ayarları */
@media (min-width: 769px) {
    .card {
        max-width: 80%; /* Desktop için genişlik ayarla */
        margin: 2em auto; /* Üstte ve altta boşluk, ortala */
    }
}

/* Mobil görünüm için ayarlar */
@media (max-width: 768px) {
    .card {
        max-width: 100%; /* Mobilde tam genişlik */
        margin: 1em; /* Üstte ve altta boşluk */
    }
}

.button {
    background-color:#095619; /* Buton arka plan rengi */
    color: #fff; /* Buton metni rengi */
    padding: 0.5em 1em; /* Buton içi boşluk */
    border-radius: 4px; /* Buton kenarlarını yuvarla */
    cursor: pointer; /* İmleci el yap */
    transition: background-color 0.3s, transform 0.3s; /* Hover için geçiş */
}

.button:hover {
    background-color: var(--primary-dark-color); /* Hover sırasında renk değişimi */
    transform: scale(1.05); /* Hover sırasında butonu büyüt */
}

/* Mobil görünüm için */
@media (max-width: 768px) {
    .events__item {
        width: calc(100% - 1em); /* Mobilde tam genişlik */
    }
}
.button {
    background-color: #095619; /* Buton arka plan rengi */
    color: #fff; /* Buton metni rengi */
    padding: 0.5em 1em; /* Buton içi boşluk */
    border-radius: 4px; /* Buton kenarlarını yuvarla */
    cursor: pointer; /* İmleci el yap */
    transition: background-color 0.2s; /* Hover için geçiş */
}

.button:hover {
    background-color: var(--primary-dark-color); /* Hover sırasında renk değişimi */
}



.events__coll {
  display: flex; /* Flexbox kullanarak kutuları yan yana diz */
  flex-wrap: wrap; /* Gerekirse kutuların bir alt satıra geçmesine izin ver */
  justify-content: center; /* Kutuları ortala */
  gap: 2em; /* Kutular arasında boşluk bırak */
  max-width: 1850px; /* Konteynerin maksimum genişliği */
  margin: 0 auto; /* Konteyneri ortalamak için otomatik kenar boşluğu */
}

/* Varsayılan kutu stili */
.events__item {
  flex: 0 0 250px; /* Her kutu sabit olarak 250px genişlikte olacak */
  background: linear-gradient(135deg, #0000, #095619); /* Arka plan gradyanı */
  border-radius: 10px; /* Köşeleri yuvarla */
  transition: transform 0.3s, box-shadow 0.3s; /* Geçiş efektleri */
  overflow: hidden; /* Taşmayı önle */
  padding: 2em; /* İçerik etrafında boşluk */
  text-align: center; /* İçerik ortalaması */
  margin: 1em; /* Kutular arasında boşluk */
  box-sizing: border-box; /* Box-sizing ayarı */
}

/* Hover durumunda büyüme ve gölge efekti */
.events__item:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Görsel ayarları */
.events__image {
  max-width: 100%; 
  height: auto; /* Yükseklik oranını koru */
  margin-bottom: 2.5em; /* Resim ile metin arasında boşluk ekle */
}

/* Tarih stili */
.event__date {
  font-size: 0.85em;
  font-weight: 600;
  text-align: center;
}

/* Buton stili */
.button {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 0.7em 1.2em;
  border-radius: 4px;
  font-size: 0.8em;
  cursor: pointer;
  margin-top: 2em;
}

/* Hover durumunda buton rengi */
.button:hover {
  background-color: #69df01;
}

/* 1366px ve üzeri büyük ekranlar için */
@media (min-width: 1366px) {
  .events__item {
    flex: 0 0 250px; /* Her kutu sabit olarak 250px genişlikte olacak */
  }
}

/* 1980px ve üzeri büyük ekranlar için */
@media (min-width: 1980px) {
  .events__coll {
    max-width: 1980px; /* Konteynerin maksimum genişliği */
  }

  .events__item {
    flex: 0 0 calc(19.2% - 2em); /* 5 kutu yan yana sığacak şekilde %19.2 genişlik ayarla, aradaki boşlukları hesaba kat */
  }
}



/* Mobil görünüm ayarları */
@media (max-width: 767px) {
  .events__item {
    flex: 1 1 calc(45% - 1em); /* İki kutu yan yana olacak şekilde %45 genişlik */
    max-width: 200px; /* Mobilde maksimum genişliği ayarla */
  }
}


  .page__wrapper {
    display: flex;
  }
  .page__wrapper.page__wrapper--cruises {
    flex-flow: column;
    display: block;
  }
  .image {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .page__h2 {
    text-transform: uppercase;
    margin-top: 1.5em;
    margin-bottom: 0.7em;
    font-size: 2.4em;
    font-weight: 500;
  }
  .page__h2.page__h2--first {
    margin-top: 0.5em;
  }
  .event__hero {
    justify-content: center;
    align-items: center;
    padding-top: 4em;
    padding-bottom: 4em;
    display: flex;
  }
  .event__hero__details {
    flex-flow: column;
    flex: 1;
    justify-content: center;
    align-items: flex-start;
    margin-right: 1em;
    padding-top: 0.8em;
    font-size: 1.1em;
    display: flex;
  }
  .event__rsvp {
    width: 20em;
    position: relative;
  }
  .event__gallery {
    margin-bottom: 1em;
  }
  .grid__three--wrapper {
    margin-right: -2%;
    position: relative;
  }
  .grid__three--item {
    width: 31.333%;
    margin-bottom: 2%;
    margin-right: 2%;
    display: inline-block;
    position: relative;
  }
  .event__form {
    margin-bottom: 0;
  }
  .form__success__text {
    margin-right: 0.5em;
  }
  .event__closed {
    z-index: 2;
    background-color: #000000b3;
    position: absolute;
    inset: 0%;
  }
  .photos__empty {
    padding: 0;
  }
  .events__empty {
    background-color: #0000;
    padding: 0;
  }
  .events__empty--text {
    border: 1px solid var(--border-white-10);
    text-align: center;
    justify-content: center;
    align-items: center;
    height: 15em;
    font-size: 1.3em;
    font-weight: 300;
    display: flex;
  }
  .tm {
    vertical-align: sub;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
      Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 0.5em;
    font-style: normal;
    font-weight: 100;
    line-height: 0;
    position: relative;
    top: -0.15em;
  }
  .tm.tm--brand {
    font-size: 1em;
    position: absolute;
    inset: auto -0.7em 0.15em auto;
  }
  .partners__hero {
    width: 80%;
    margin-bottom: 4em;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }
  .partners__content {
    flex-flow: column;
    flex: 1;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }
  .partners__socials {
    margin-left: 5em;
    position: relative;
    overflow: hidden;
  }
  .partners__embed {
    display: none;
  }
  .partners__h1 {
    text-transform: uppercase;
    margin-bottom: 0.3em;
    font-size: 3.2em;
    font-weight: 600;
    line-height: 1.1em;
  }
  .partners__socials__coll.partners__socials__coll--2 {
    position: absolute;
    inset: 100% 0% auto;
  }
  .partners__socials__link {
    border-radius: 0.5em;
    justify-content: flex-start;
    align-items: center;
    padding: 0.9em 1em;
    display: flex;
    position: relative;
    overflow: hidden;
  }
  .partners__socials__icon {
    width: 1em;
    height: 1em;
    margin-right: 0.5em;
    font-size: 2.5em;
  }
  .partners__socials__reach {
    text-shadow: 0 1px 1px #0003;
    font-size: 1.5em;
  }
  .partners__socials__track {
    position: relative;
  }
  .partners__socials__bg {
    z-index: -1;
    background-color: var(--gray-5);
    opacity: 0;
    position: absolute;
    inset: 0%;
  }
  .partners__socials__gradient {
    background-image: linear-gradient(#000, #fff0);
    height: 4em;
    position: absolute;
    inset: 0% 0% auto;
  }
  .partners__socials__gradient.partners__socials__gradient--bottom {
    background-image: linear-gradient(#fff0, #000);
    inset: auto 0% 0%;
  }
  .partners__p {
    margin-bottom: 0.8em;
    font-size: 1.9em;
    font-weight: 300;
    line-height: 1.4em;
  }
  .partners__cta {
    display: flex;
  }
  .partners__h3 {
    margin-bottom: 0.4em;
    font-size: 2em;
    font-weight: 500;
  }
  .partners__h3__p {
    color: var(--gray-3);
    font-size: 1.4em;
    font-weight: 300;
    line-height: 1.4em;
  }
  .partners__item {
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 5em;
    display: flex;
  }
  .partners__item:nth-child(2n) {
    flex-flow: row-reverse;
  }
  .partners__coll {
    margin-top: 5em;
  }
  .partners__h2 {
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 0.4em;
    font-size: 2.5em;
    font-weight: 600;
  }
  .partners__h2.partners__h2--form {
    font-size: 2em;
  }
  .partners__desc {
    flex: 1;
    padding-left: 5em;
    padding-right: 5em;
  }
  .partners__logo {
    object-fit: contain;
    width: 24em;
    height: 10em;
  }
  .partners__app__logo {
    align-self: center;
    width: 25em;
    margin: 1em auto 1.5em;
    font-size: 1.7em;
    position: relative;
  }
  .form__label {
    color: var(--lite-text);
    text-align: center;
    white-space: nowrap;
    flex: 0 auto;
    width: 100%;
    margin-top: 1em;
    margin-bottom: 0.6em;
    margin-right: 0.5em;
    font-size: 1.3em;
    line-height: 1em;
  }
  .form__row {
    flex-wrap: wrap;
    width: 100%;
    display: flex;
  }
  .form__content {
    flex-direction: column;
    height: 100%;
    display: flex;
  }
  .partners__app__p {
    text-align: center;
    text-wrap: balance;
    margin-bottom: 1.3em;
    font-size: 1.5em;
    font-weight: 300;
    line-height: 1.4em;
  }
  .modal {
    background-color: #f6f9fc;
    border-radius: 0.5em;
    justify-content: flex-start;
    align-items: center;
    padding: 1em;
    position: relative;
  }
  .modal.modal__transparent {
    background-color: #0000;
  }
  .partners__app {
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2em;
  }
  .links__social {
    margin-top: 0.5em;
    margin-bottom: 1em;
    font-size: 1.3em;
    display: block;
  }
  .links__footer {
    justify-content: center;
    align-items: stretch;
    height: 3em;
    font-size: 0.8em;
    display: flex;
    position: absolute;
    inset: auto 0% 0%;
  }
  .links__cookies {
    justify-content: center;
    align-items: center;
    font-weight: 300;
    display: flex;
  }
  .links {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    width: 100vw;
    min-width: 100vw;
    height: 100vh;
    min-height: 100vh;
    padding-left: 38.8em;
    padding-right: 38.8em;
    display: flex;
    position: relative;
    overflow: scroll;
  }
  .links__button {
    text-transform: uppercase;
    border: 1px solid #f1f1f1;
    border-radius: 0.25em;
    justify-content: center;
    align-items: center;
    height: 3.3em;
    min-height: 3.3em;
    margin-bottom: 1em;
    text-decoration: none;
    display: flex;
    box-shadow: 0 4px 0.8em 0.1em #00000012;
  }
  .links__button:hover {
    color: #040f19;
    background-image: linear-gradient(90deg, #ececec, #fafafa);
  }
  .links__button.links__button--cta {
    color: var(--dk-text);
    background-color: #fff;
    font-weight: 700;
  }
  .links__handle {
    margin-bottom: 0.5em;
    font-size: 2em;
    font-weight: 600;
    line-height: 1em;
    display: none;
  }
  .links__logo {
    align-self: center;
    width: 100%;
    margin-bottom: 2em;
    padding-left: 2.8em;
  }
  .link__logo__embed {
    width: 100%;
  }
  .contact__form {
    padding-top: 1em;
    padding-bottom: 1em;
    font-size: 1.2em;
  }
  ._404__numbers {
    justify-content: center;
    align-items: center;
    height: 0.8em;
    min-height: 0.8em;
    max-height: 0.8em;
    margin-top: 0.2em;
    margin-bottom: 0.1em;
    font-size: 20em;
    font-weight: 700;
    display: flex;
    overflow: hidden;
  }
  ._404__number {
    line-height: 0.8em;
  }
  .utility__p {
    width: 33em;
    margin-bottom: 0.7em;
    font-size: 1.5em;
    line-height: 1.5em;
  }
  ._404__ul {
    width: 0.7em;
    height: 0.8em;
    list-style-type: none;
    position: relative;
  }
  .utility__logo {
    width: 20em;
    margin-bottom: 1em;
    margin-left: auto;
    margin-right: auto;
    font-size: 2em;
    position: relative;
  }
  .contact__options {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5em;
    display: flex;
  }
  .contact__options__link {
    opacity: 0.7;
    flex: 1;
    font-size: 1.1em;
    font-weight: 200;
    line-height: 1.8em;
    display: block;
  }
  .contact__options__link:hover {
    opacity: 1;
  }
  .contact__options__col {
    flex: 1;
  }
  .contact__h1 {
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 0.4em;
    font-size: 1.5em;
    font-weight: 600;
    line-height: 1.3em;
  }
  .motto__text--span {
    margin-left: -0.15em;
  }
  .const__h1 {
    text-align: center;
    text-transform: uppercase;
    margin-top: 3em;
    margin-bottom: 0.5em;
    font-size: 3em;
    font-weight: 600;
  }
  .const__p {
    text-align: center;
    width: 50%;
    margin-bottom: 4em;
    margin-left: auto;
    margin-right: auto;
    font-size: 2em;
    font-weight: 200;
    line-height: 1.3em;
  }
  .events__h1 {
    text-transform: uppercase;
    margin-bottom: 0.3em;
    font-size: 2.6em;
    font-weight: 600;
    line-height: 1.1em;
  }
  .cruises__h1 {
    text-transform: uppercase;
    margin-bottom: 0.1em;
    font-size: 2.8em;
    font-weight: 600;
    line-height: 1.2em;
  }
  .news__coll {
    text-align: center;
    margin-top: 3em;
  }
  .news__link {
    padding: 1.4em 1em;
    transition: background-color 0.2s;
    display: block;
  }
  .news__link:hover {
    background-color: #1b1b1b;
  }
  .news__outlet.news__outlet--spacer {
    margin-left: 0.2em;
    margin-right: 0.2em;
  }
  .news__header {
    opacity: 0.7;
    justify-content: center;
    align-items: center;
    margin-top: 0.5em;
    margin-bottom: 1em;
    font-weight: 200;
    display: flex;
  }
  .news__h2 {
    text-wrap: balance;
    font-size: 2em;
    line-height: 1.3em;
  }
  .page__p {
    text-align: center;
    width: 27em;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.6em;
    font-weight: 200;
    line-height: 1.6em;
  }
  .form__hidden {
    display: none;
  }
  .event__cruise__img {
    object-fit: cover;
    width: 100%;
    height: 20em;
    margin-bottom: 1em;
    display: block;
  }
  .event__h2 {
    text-align: center;
    margin-bottom: 0.7em;
  }
  .event__h2.event__h2--lg {
    font-size: 1.5em;
  }
  .venue__gallery__img {
    border-radius: 0.5em;
    width: 100%;
    margin-bottom: 1em;
    display: block;
  }
  .page__hero {
    margin-bottom: 4em;
  }
  .venues__row {
    justify-content: space-between;
    margin-bottom: 3em;
    display: flex;
  }
  .venues__text {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    width: 40%;
    display: flex;
  }
  .venues__img {
    object-fit: cover;
    border-radius: 0.5em;
    width: 50%;
    height: 20em;
  }
  .venues__h2 {
    text-transform: uppercase;
    text-wrap: balance;
    margin-bottom: 0.5em;
    font-size: 2.2em;
    font-weight: 500;
    line-height: 1.1em;
  }
  .venues__address {
    margin-bottom: 1.2em;
    font-size: 1.5em;
    font-weight: 300;
    line-height: 1.4em;
  }
  .venue__cta {
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5em;
    display: flex;
  }
  .venue__address {
    text-align: center;
    margin-top: 0.8em;
    margin-bottom: 0.8em;
    font-size: 1.6em;
    font-weight: 300;
    line-height: 1.4em;
  }
  .venue__banner {
    object-fit: cover;
    border-radius: 0.5em;
    width: 100%;
    height: 30em;
    display: block;
  }
  .updates__banner {
    border: 1px solid #d5dde4;
    border-radius: 0.5em;
    justify-content: center;
    align-items: center;
    margin-top: 3em;
    margin-bottom: 5em;
    padding: 1em;
    display: flex;
  }
  .updates__banner.updates__form--home {
    align-items: center;
    margin-top: 0;
    display: flex;
  }
  .input-2 {
    color: #1b2229;
    background-color: #fff;
    border: 1px solid #eff5fa;
    border-radius: 0.35em;
    justify-content: space-between;
    width: 100%;
    height: 3em;
    min-height: 0;
    margin: 0 0 0 0;
    padding: 1em 0.76em 0.9em 0.75em;
    font-size: 1em;
    line-height: 1em;
    display: block;
  }
  .input-2:focus {
    border-color: #0c43b8;
  }
  .input-2::placeholder {
    color: #000;
  }
  .input-2.input__button {
    color: #fff;
    text-align: center;
    background-color: #0c43b8;
    border-style: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-decoration: none;
    display: flex;
  }
  .updates__form {
    flex: 1;
  }
  .updates__h2 {
    text-transform: uppercase;
    white-space: nowrap;
    flex: 1;
    margin-right: 1em;
    padding-top: 0.1em;
    font-size: 2em;
    font-weight: 600;
    line-height: 1em;
  }
  .form__success-2 {
    background-color: #0000;
    padding: 0;
  }
  .form__error-2 {
    color: #d60101;
    text-align: center;
    background-color: #0000;
    margin-top: 0;
    padding: 0;
    font-weight: 700;
  }
  .events__item {
    width: 25%;
  }
  .events__item.events__item--3col {
    width: 33.333%;
  }

  
  @media screen and (max-width: 991px) {
    .agency {
      text-align: center;
    }
  }
  @media screen and (max-width: 767px) {
    .footer {
      flex-direction: column;
    }
  }
  @media screen and (max-width: 479px) {
    body {
      font-size: 3.333vw;
    }
    .form__wrapper.form__wrapper--rsvp {
      height: 13.6em;
    }
    .form__wrapper.form__wrapper--updates {
      height: 6.5em;
    }
    .input.input-check {
      padding-left: 0.6em;
      padding-right: 0.6em;
    }
    .form__error {
      margin-top: 0.5em;
    }
    .container.container-80,
    .container.container-60,
    .container.container-90,
    .container.container-50,
    .container.container-70 {
      width: 100%;
    }
    .columns {
      display: block;
    }
    .column {
      flex: 0 auto;
      width: 100%;
    }
    .column.column--20,
    .column.column--30,
    .column.column--25,
    .column.column--35,
    .column.column--40,
    .column.column--45,
    .column.column--50 {
      width: 100%;
    }
    
    .social__icon {
      margin: 0.3em;
    }
    .dropdown__pane {
      border-style: none;
    }
    .nav__drawer {
      width: 100%;
      font-size: 1.3em;
      display: block;
    }
    .nav {
      z-index: 2;
    }
    .nav__brand {
      width: 17em;
      margin-right: 1em;
    }
    .footer {
      padding-bottom: 2em;
    }
    .motto__middle {
      width: 100%;
      margin-top: 1.5em;
      margin-bottom: 1.5em;
    }
    .motto__brand {
      margin-bottom: 0.5em;
    }
    .nav__list--link {
      justify-content: center;
    }
    .motto {
      flex-direction: column;
    }
    .icon.icon__menu {
      font-size: 2em;
    }
    .pw__wrapper {
      font-size: 3.333vw;
    }
    .pw__form {
      width: 20em;
    }
    .dropdown__content {
      padding: 0.5em;
    }
    .docs__h3 {
      margin-right: 2em;
    }
    .form__field.form__field--message,
    .form__field.form__field--mobile,
    .form__field.form__field--doc {
      flex: 0 auto;
      width: 100%;
    }
    .search__icon {
      opacity: 1;
      filter: none;
      color: var(--dk-text);
      display: flex;
    }
    .drawer__link {
      text-transform: uppercase;
      font-size: 1.1em;
    }
    .popup__close {
      margin-top: 0.3em;
      font-size: 3em;
      display: none;
      inset: 100% auto auto 50%;
      transform: translate(-50%);
    }
    .nav__list {
      text-align: center;
      flex-wrap: wrap;
    }
    .nav__links {
      font-size: 0.9em;
      display: none;
    }
    .nav__container {
      border-radius: 0;
      width: 100%;
      padding-right: 0.5em;
    }
    .dk-grn {
      display: block;
    }
    .feedback {
      font-size: 1em;
    }
    .docs__img {
      width: 6em;
      height: 6em;
    }
    .docs__caption {
      font-size: 0.9em;
    }
    .docs__block {
      flex: 0 auto;
      width: 100%;
      margin-bottom: 1em;
    }
    .link {
      line-height: 1em;
    }
    .motto__right {
      width: 70%;
      margin-left: auto;
      margin-right: auto;
      font-size: 1em;
    }
    .motto__left {
      text-align: center;
      margin-bottom: 1em;
    }
    .motto__text {
      font-size: 1.4em;
    }
    .form__default.form__default--contact {
      height: 20em;
    }
    .form__default.form__default--partners {
      height: 56.5em;
    }
    .isotope-item.isotope-3col {
      width: 50%;
    }
    .styles__video {
      height: 17em;
    }
    .nav__search--trigger {
      display: none;
    }
    .cookies__fields {
      font-size: 1.1em;
    }
    .cookies__icon {
      font-size: 2.2em;
    }
    .cookies {
      text-align: left;
      font-size: 3.33vw;
      inset: auto 0% 0%;
      transform: none;
    }
    .cookies__link {
      display: none;
    }
    .cookies__text--span {
      display: block;
    }
    .cookies__form--block {
      width: 100%;
    }
    .cookies__check {
      width: 100%;
      margin-top: 1.5em;
    }
    .cookies__banner {
      border-radius: 0;
      width: 100%;
      margin-bottom: 0;
    }
    .cookies__form {
      width: 100%;
    }
    .cookies__text {
      margin-right: 0;
      font-size: 1.1em;
      line-height: 1.1em;
    }
    .cookies__optin {
      width: 100%;
    }
    .richtext,
    .richtext h5 {
      font-size: 1.1em;
    }
    .richtext h4 {
      font-size: 1.3em;
    }
    .richtext h3 {
      font-size: 1.6em;
    }
    .richtext h2 {
      font-size: 1.9em;
    }
    .utility__nav {
      font-size: 1.1em;
    }
    .pw__form--wrapper {
      font-size: 1.4em;
    }
    .nav__section.nav__section--right {
      flex: 0 auto;
    }
    .toc {
      column-count: 3;
      padding: 1em 1em 0.5em;
    }
    .nav__list--column {
      flex: 0 auto;
      width: 50%;
      margin-bottom: 3em;
    }
    .docs__h1 {
      width: 100%;
      font-size: 2.5em;
    }
    .docs__desc {
      width: 100%;
      font-size: 1.3em;
    }
    .docs__lottie {
      width: 200%;
      height: 16em;
    }
    .docs__cta {
      font-size: 1em;
    }
    .docs {
      width: 100%;
      padding-top: 2em;
      overflow: hidden;
    }
    .docs__nav {
      float: none;
      width: 100%;
      height: auto;
      padding-top: 1em;
      position: relative;
    }
    .docs__title {
      font-size: 2.8em;
    }
    .docs__subtitle {
      font-size: 1.4em;
    }
    .docs__logo {
      padding-top: 1.8em;
      padding-bottom: 1.8em;
    }
    .docs__identity {
      width: 50%;
    }
    .docs__dropdown {
      width: 100%;
    }
    .docs__balancetext {
      flex: 0 auto;
      width: 100%;
    }
    .isotope-list {
      margin-left: -2%;
      margin-right: -2%;
    }
    .agency {
      height: auto;
    }
    .agency__link {
      padding-left: 0.5em;
      padding-right: 0.5em;
    }
    .agency__link.agency__link--copyright {
      width: 100%;
    }
    .agency__icon {
      margin-right: 0.4em;
    }
    .agency__text {
      font-weight: 300;
    }
    .home__hero {
      background-position: 49%;
      height: 50em;
    }
    .home__h1 {
      margin-bottom: 0.4em;
      font-size: 2.3em;
    }
    .home__hero__ctas {
      font-size: 0.9em;
    }
    .events__marquee__item {
      padding-left: 1.6em;
      padding-right: 1.6em;
    }
    .quicklinks {
      margin-right: 0;
      padding-top: 1em;
      padding-bottom: 1em;
      display: block;
    }
    .quicklink__wrapper {
      height: 20em;
      margin-bottom: 1em;
      padding-bottom: 0;
      padding-right: 0;
    }
    .quicklink__wrapper.quicklink__vert {
      width: 100%;
      height: 43em;
    }
    .quicklink__right {
      display: block;
    }
    .nav__socials {
      display: none;
    }
    .drawer__cta {
      margin-bottom: 0.5em;
    }
    .grid__five--wrapper {
      margin-right: -3%;
    }
    .grid__five--item {
      width: 47%;
      margin-bottom: 3%;
      margin-right: 3%;
    }
    .section__h2 {
      margin-bottom: 0.4em;
      font-size: 3em;
    }
    .gallery__socials {
      font-size: 2.1em;
    }
    .gallery__grid {
      margin-bottom: -25em;
    
    }
    .events__link {
      border-bottom: 1px solid var(--border-white-10);
      border-left-style: none;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: auto;
    }
    .events__link:last-child {
      border-bottom-style: none;
    }
    .events__link.events__item--3col {
      width: 100%;
    }
    
/* Tüm etkinlik koleksiyonu için metni ortala */
.events__coll {
  text-align: center;
}

/* Etkinlik öğeleri için alan oluşturma */
.events__item {
  margin-bottom: 2em; /* Her bir etkinlik arasında daha fazla boşluk */
  display: inline-block; /* Yan yana yerleşim için */
  margin-right: 0.5em; /* Kutular arasında sağdan boşluk ekle */
  width: calc(55% - 1em); /* Kutuların genişliğini ayarla (yan yana) */
}

/* Etkinlik tarihlerini ortala ve esnek yap */
.event__dates {
  display: flex; /* Flexbox kullanarak düzen sağla */
  flex-direction: column; /* Dikey düzen */
  align-items: center; /* Dikeyde ortala */
  margin-bottom: 0.5em; /* Altında boşluk ekle */
}

/* Görsel boyutunu artır */
.events__link img {
  max-width: 100%; /* Görselin maksimum genişliği %100 olsun */
  height: auto; /* Yükseklik orantılı kalsın */
}

/* Görselin boyutunu desktop için ayarla */
@media (min-width: 769px) {
  .events__link img {
      width: 350px; /* Yatay dikdörtgen şekli için genişlik */
      height: 220px; /* Yükseklik ayarı */
  }

  .events__item {
      width: calc(30% - 1em); /* Kutuların genişliğini ayarla (yan yana) */
  }
}

/* Çağrı alanının konumlandırılması */
.event__cta {
  margin-top: 2em; /* Üstten daha fazla boşluk ekle */
}

/* Etkinlik adresini esnek yap ve ortala */
.event__address {
  display: flex; /* Flexbox kullanarak düzen sağla */
  flex-direction: column; /* Dikey düzen */
  align-items: center; /* Dikeyde ortala */
  margin-bottom: 1em; /* Altında boşluk ekle */
}

/* Etkinlik türünü konumlandır */
.event__type {
  align-self: center; /* Ortaya al */
}

/* Etkinlik kahraman resmi ayarları */
.events__hero {
  width: 100%;
  height: 43em; /* Yükseklik ayarı */
  max-height: 100vh; /* Ekran yüksekliğini aşmaması için */
  margin-bottom: 3em; /* Alt boşluk */
  padding-top: 0; /* Üst boşluk */
  padding-bottom: 0; /* Alt boşluk */
}

/* Özel sayfa kahramanı ayarları */
.events__hero.page__hero--cruises {
  height: 29em; /* Belirli sayfalar için yükseklik */
}

/* Başlık boyutu ayarı */
.page__h1 {
  font-size: 2.2em; /* Başlık boyutu */
}

/* Mobil görünüm için ek ayarlar */
@media (max-width: 768px) {
  .events__item {
      width: calc(45% - 1em); /* Kutuların genişliğini ayarla */
      margin: 0 0.5em 0.5em; /* Yukarıdan boşluk sıfır, sağdan ve soldan 1em, alttan 2em */
      text-align: center; /* İçerikleri ortala */
      height: 150px; /* Yükseklik ayarı */
      display: flex; /* Flexbox ile içeriği ortalamak için */
      flex-direction: column; /* Dikey yönde hizalama */
      justify-content: center; /* Dikey olarak merkezde hizalama */
      
  }

  .events__link {
      margin-top: 0.5em; /* Görsel ile yazı arasındaki boşluk */
      margin-bottom: 0; /* Buton ile yazı arasındaki boşluğu sıfırla */
  }

  .events__link img {
      max-width: 100%; /* Mobilde görsel boyutunu ayarla */
      height: auto; /* Yükseklik orantılı kalsın */
  }

  .events__button {
      margin-top: auto; /* Butonu aşağıya itmek için */
      display: inline-block; /* Butonu ortalamak için */
      padding: 10px 20px; /* Butonun iç boşluk ayarı */
      text-align: center; /* Metni ortala */
  }
}
    .events__p {
      font-size: 1.3em;
    }
    .events__container {
      width: 100%;
      margin-left: 0;
      padding-top: 0;
      display: flex;
  flex-wrap: wrap;
  justify-content: space-between; 
  max-width: 1920px; /* İsteğe bağlı: Kapsayıcıyı belirli bir genişlikle sınırlayabilirsiniz */

    }
    .events__content {
      text-align: center;
      background-image: linear-gradient(#fff0 50%, #000c 89%);
      justify-content: flex-end;
      align-items: center;
      padding-right: 1em;
    }
    .events__content.page__content--cruises {
      background-image: linear-gradient(#fff0 50%, #000c 70%);
      font-size: 1em;
    }
    .page__wrapper {
      padding-top: 5em;
      display: block;
    }
    .page__h2 {
      text-align: center;
      font-size: 2.2em;
    }
    .event__hero {
      padding-top: 2em;
      padding-bottom: 2em;
      display: block;
    }
    .event__hero__details {
      text-align: center;
      justify-content: center;
      align-items: center;
      margin-bottom: 2em;
      margin-right: 0;
      padding-top: 0;
      font-size: 1.2em;
    }
    .event__rsvp {
      width: 100%;
      font-size: 1.2em;
    }
    .grid__three--wrapper {
      margin-top: -3%;
      margin-right: -3%;
    }
    .grid__three--item {
      width: 47%;
      margin-bottom: 3%;
      margin-right: 3%;
    }
     
    .links__footer {
      font-size: 0.7em;
    }
    .links {
      width: auto;
      height: auto;
      padding: 3em 1em;
      font-size: 1.3em;
      overflow: visible;
    }
    .links__button,
    .links__handle {
      margin-bottom: 0.5em;
    }
    .links__logo {
      padding-left: 2.5em;
    }
    .contact__form {
      font-size: 1em;
    }
    ._404__numbers {
      font-size: 13em;
    }
    .utility__p {
      width: 100%;
      font-size: 1.3em;
    }
    .utility__logo {
      width: 95%;
      font-size: 1.3em;
    }
    .contact__options {
      margin-bottom: -0.5em;
      display: block;
    }
    .contact__options__col {
      margin-bottom: 2em;
    }
    .const__h1 {
      font-size: 3em;
    }
    .const__p {
      width: 100%;
      font-size: 1.6em;
    }
    .events__h1,
    .cruises__h1 {
      font-size: 2.4em;
    }
    .news__h2 {
      font-size: 1.7em;
    }
    .page__p {
      width: 100%;
      font-size: 1.3em;
    }
    .event__cruise__img {
      height: 14em;
    }
    .venues__row {
      flex-flow: column;
      margin-bottom: 5em;
    }
    .venues__text {
      justify-content: center;
      align-items: center;
      width: 100%;
      margin-bottom: 2em;
    }
    .venues__img {
      width: 100%;
      height: 16em;
    }
    .venues__h2 {
      text-align: center;
      font-size: 1.9em;
    }
    .venue__banner {
      height: 17em;
    }
    .updates__banner {
      margin-top: 2em;
      margin-bottom: 3em;
      padding: 0.7em 0.5em 0.5em;
      display: block;
    }
    .updates__banner.updates__form--home {
      display: block;
    }
    .updates__h2 {
      text-align: center;
      white-space: normal;
      margin-bottom: 0.4em;
      margin-right: 0;
      font-size: 1.8em;
      line-height: 1.2em;
    }
    .events__item,
    .events__item.events__item--3col {
      width: 100%;
    }
  }
  @font-face {
    font-family: "Alice";
    src: url("https://cdn.prod.website-files.com/667f02e0521ad9fc4f06c43e/667f02e0521ad9fc4f06c59d_Alice-Regular.ttf")
      format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Bitcheese";
    src: url("https://cdn.prod.website-files.com/667f02e0521ad9fc4f06c43e/667f02e0521ad9fc4f06c59c_Bitcheese.otf")
      format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  <style>
  .cart__button {
      cursor: pointer;
      touch-action: manipulation;
  }

  .feedback__icon {
      cursor: pointer;
      touch-action: manipulation;
  }

  .morph__trigger {
      cursor: pointer;
      touch-action: manipulation;
  }

  .popup__close {
      cursor: pointer;
      touch-action: manipulation;
  }

  .accordion__click--hover {
      cursor: pointer;
      touch-action: manipulation;
  }

  .nav__search--trigger {
      cursor: pointer;
      touch-action: manipulation;
  }

  .button.button__form--trigger-old {
      cursor: pointer;
      touch-action: manipulation;
  }

  .button.buttonform__trigger {
      cursor: pointer;
      touch-action: manipulation;
  }

  .accordion.accordion__click {
      cursor: pointer;
      touch-action: manipulation;
  }

  .form__success__icon {
      cursor: pointer;
      touch-action: manipulation;
  }
</style>
<style>
  .nav__search--trigger {
      cursor: pointer;
      touch-action: manipulation;
  }

  .accordion.accordion__click {
      cursor: pointer;
      touch-action: manipulation;
  }
</style>
<style>
  .cart__button {
      cursor: pointer;
      touch-action: manipulation;
  }

  .feedback__icon {
      cursor: pointer;
      touch-action: manipulation;
  }

  .morph__trigger {
      cursor: pointer;
      touch-action: manipulation;
  }

  .popup__close {
      cursor: pointer;
      touch-action: manipulation;
  }

  .accordion__click--hover {
      cursor: pointer;
      touch-action: manipulation;
  }

  .nav__search--trigger {
      cursor: pointer;
      touch-action: manipulation;
  }

  .button.button__form--trigger-old {
      cursor: pointer;
      touch-action: manipulation;
  }

  .button.buttonform__trigger {
      cursor: pointer;
      touch-action: manipulation;
  }

  .accordion.accordion__click {
      cursor: pointer;
      touch-action: manipulation;
  }

  .form__success__icon {
      cursor: pointer;
      touch-action: manipulation;
  }
</style>
<style>
  .nav__search--trigger {
      cursor: pointer;
      touch-action: manipulation;
  }

  .accordion.accordion__click {
      cursor: pointer;
      touch-action: manipulation;
  }
</style>
<style>
  .cart__button {
      cursor: pointer;
      touch-action: manipulation;
  }

  .feedback__icon {
      cursor: pointer;
      touch-action: manipulation;
  }

  .morph__trigger {
      cursor: pointer;
      touch-action: manipulation;
  }

  .popup__close {
      cursor: pointer;
      touch-action: manipulation;
  }

  .accordion__click--hover {
      cursor: pointer;
      touch-action: manipulation;
  }

  .nav__search--trigger {
      cursor: pointer;
      touch-action: manipulation;
  }

  .button.button__form--trigger-old {
      cursor: pointer;
      touch-action: manipulation;
  }

  .button.buttonform__trigger {
      cursor: pointer;
      touch-action: manipulation;
  }

  .accordion.accordion__click {
      cursor: pointer;
      touch-action: manipulation;
  }

  .form__success__icon {
      cursor: pointer;
      touch-action: manipulation;
  }
</style>
<style>
  .nav__search--trigger {
      cursor: pointer;
      touch-action: manipulation;
  }

  .accordion.accordion__click {
      cursor: pointer;
      touch-action: manipulation;
  }
</style>

/* snow start */
.snowflake {
  color: #fff;
  font-size: 1em;
  font-family: Arial;
  text-shadow: 0 0 1px #000;
}

@-webkit-keyframes snowflakes-fall{0%{top:-10%}100%{top:100%}}@-webkit-keyframes snowflakes-shake{0%{-webkit-transform:translateX(0px);transform:translateX(0px)}50%{-webkit-transform:translateX(80px);transform:translateX(80px)}100%{-webkit-transform:translateX(0px);transform:translateX(0px)}}@keyframes snowflakes-fall{0%{top:-10%}100%{top:100%}}@keyframes snowflakes-shake{0%{transform:translateX(0px)}50%{transform:translateX(80px)}100%{transform:translateX(0px)}}.snowflake{position:fixed;top:-10%;z-index:9999;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default;-webkit-animation-name:snowflakes-fall,snowflakes-shake;-webkit-animation-duration:10s,3s;-webkit-animation-timing-function:linear,ease-in-out;-webkit-animation-iteration-count:infinite,infinite;-webkit-animation-play-state:running,running;animation-name:snowflakes-fall,snowflakes-shake;animation-duration:10s,3s;animation-timing-function:linear,ease-in-out;animation-iteration-count:infinite,infinite;animation-play-state:running,running}.snowflake:nth-of-type(0){left:1%;-webkit-animation-delay:0s,0s;animation-delay:0s,0s}.snowflake:nth-of-type(1){left:10%;-webkit-animation-delay:1s,1s;animation-delay:1s,1s}.snowflake:nth-of-type(2){left:20%;-webkit-animation-delay:6s,.5s;animation-delay:6s,.5s}.snowflake:nth-of-type(3){left:30%;-webkit-animation-delay:4s,2s;animation-delay:4s,2s}.snowflake:nth-of-type(4){left:40%;-webkit-animation-delay:2s,2s;animation-delay:2s,2s}.snowflake:nth-of-type(5){left:50%;-webkit-animation-delay:8s,3s;animation-delay:8s,3s}.snowflake:nth-of-type(6){left:60%;-webkit-animation-delay:6s,2s;animation-delay:6s,2s}.snowflake:nth-of-type(7){left:70%;-webkit-animation-delay:2.5s,1s;animation-delay:2.5s,1s}.snowflake:nth-of-type(8){left:80%;-webkit-animation-delay:1s,0s;animation-delay:1s,0s}.snowflake:nth-of-type(9){left:90%;-webkit-animation-delay:3s,1.5s;animation-delay:3s,1.5s}
/* Demo Purpose Only*/
.demo {
  font-family: 'Raleway', sans-serif;
 color:#fff;
    display: block;
    margin: 0 auto;
    padding: 15px 0;
    text-align: center;
}
.demo a{
  font-family: 'Raleway', sans-serif;
color: #000;  
}
/* snow end */