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

Breakpoints

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

Nasıl Uygulanır?

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

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

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

Some common breakpoints for devices with different screen sizes are:

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

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

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

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

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

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

a {
  text-decoration: none;
}

img {
  vertical-align: middle;
}

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

button, fieldset, iframe {
  border: 0;
}

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

ol, ul {
  list-style: none;
}

textarea {
  resize: vertical;
}

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

td {
  padding: 0;
}

* {
  font-size: 10px;
  font-family: "Poppins", sans-serif;
}
* ::-webkit-scrollbar {
  display: none;
}

html {
  scroll-behavior: smooth;
}

button {
  cursor: pointer;
}

p {
  margin-bottom: 0.5rem;
}

.white-bg {
  background: #ffffff;
}

.blue-bg {
  background-color: #1731a4;
}

.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 4rem;
  padding-right: 4rem;
  max-width: 124rem;
}
@media (max-width: 480px) {
  .container {
    max-width: 48rem;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 76.8rem;
  }
}
@media (max-width: 1024px) {
  .container {
    max-width: 102.4rem;
  }
}
@media (max-width: 1200px) {
  .container {
    max-width: 120rem;
  }
}

.opacity50 {
  opacity: 0.5;
}

.Container {
  width: 100%;
  height: 100%;
  background: url("/img/Xobject2.png"), linear-gradient(180deg, #1731a4 0%, #0d2254 40%, #0d2254 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.Header {
  color: #ffffff;
  padding-top: 2.8rem;
  padding-bottom: 2rem;
}
.Header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 124rem;
}
.Header_menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: auto;
}
@media (max-width: 480px) {
  .Header_menu {
    flex-direction: column;
    gap: 1rem;
  }
}
.Header_menu_items {
  margin-right: 4rem;
}
@media (max-width: 1024px) {
  .Header_menu_items {
    display: none;
  }
}
.Header_menu_items_item {
  color: #ffffff;
  margin-right: 44px;
  font-size: 1.4rem;
}
.Header_menu_items_item:hover {
  color: #76e1e5;
}
.Header_menu_items_item:last-child {
  margin-right: 0;
  font-weight: 500;
}
.Header_menu_language {
  margin-right: 4rem;
}
@media (max-width: 480px) {
  .Header_menu_language {
    margin-right: 0;
  }
}
.Header_menu_language_item {
  color: #ffffff;
  margin-right: 1rem;
  font-size: 1.4rem;
}
.Header_menu_language_item:hover {
  color: #76e1e5;
}
.Header_menu_language_item:last-child {
  margin-right: 0;
  font-weight: 500;
}
.Header_menu_button_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.2rem 1.6rem;
  background: #4053fa;
  border-radius: 0.8rem;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 2.1rem;
  text-align: center;
  color: #ffffff;
}

.Main {
  color: #ffffff;
  padding-top: 4rem;
}
.Main .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.8rem;
}
.Main_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.Main_text_h1 {
  font-weight: 800;
  font-size: 4.4rem;
  line-height: 4.8rem;
  text-align: center;
  background: linear-gradient(270deg, #f9fea5 -0.1%, #20e2d7 100.1%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  .Main_text_h1 {
    font-size: 3rem;
    line-height: 3.2rem;
  }
}
.Main_text_info {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2.7rem;
  text-align: center;
  color: #ffffff;
}
.Main_text_p {
  max-width: 80%;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 2.4rem;
  text-align: center;
  color: #ffffff;
}
@media (max-width: 1024px) {
  .Main_text_p {
    max-width: 70%;
  }
}
@media (max-width: 768px) {
  .Main_text_p {
    max-width: 80%;
  }
}
.Main_img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.Main_img img {
  width: 90%;
}

.Counter {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 3.6rem 0;
}
.Counter .container {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 480px) {
  .Counter .container {
    flex-direction: column;
  }
}
.Counter_item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.Counter_item + .Counter_item {
  margin-left: 8rem;
}
@media (max-width: 480px) {
  .Counter_item + .Counter_item {
    margin-left: 0;
    margin-top: 2rem;
  }
}
.Counter_item_number span {
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 4.2rem;
  text-align: center;
  color: #ffffff;
}
.Counter_item_tag span {
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 2.7rem;
  text-align: center;
  color: #ffffff;
  margin-top: -0.4rem;
}

.About {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.About .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.About_head {
  gap: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.About_head_h2 {
  width: 100%;
}
.About_head h2 {
  font-weight: 800;
  font-size: 4rem;
  line-height: 4.8rem;
  text-align: center;
  color: #3f3f3f;
}
@media (max-width: 768px) {
  .About_head h2 {
    font-size: 3rem;
    line-height: 3.2rem;
  }
}
.About_head_p p {
  max-width: 80%;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 2.4rem;
  text-align: center;
  color: #717171;
  margin-left: auto;
  margin-right: auto;
}
.About_icons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 2rem;
  width: 100vw;
  padding-left: 20rem;
  padding-right: 20rem;
  max-width: 124rem;
}
@media (max-width: 768px) {
  .About_icons {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }
}
.About_icons_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 4rem 2rem 4rem;
}
.About_icons_item_info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.About_icons_item_info_number span {
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 3.6rem;
  text-align: center;
  color: #4053fa;
}
.About_icons_item_info_p span {
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 2.7rem;
  text-align: center;
  color: #3f3f3f;
}

.Video {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 120rem;
  margin-left: auto;
  margin-right: auto;
}
.Video video {
  width: 100%;
  border-radius: 1.2rem;
}

.Programme {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 10rem;
  padding-bottom: 12rem;
  align-items: center;
  max-width: 120rem;
  margin-left: auto;
  margin-right: auto;
}
.Programme .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 124rem;
}
.Programme_head {
  gap: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.Programme_head_h2 h2 {
  font-weight: 800;
  font-size: 4rem;
  line-height: 4.8rem;
  text-align: center;
  color: #3f3f3f;
}
@media (max-width: 768px) {
  .Programme_head_h2 h2 {
    font-size: 3rem;
    line-height: 3.2rem;
  }
}
.Programme_head_p p {
  max-width: 72%;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 2.4rem;
  text-align: center;
  color: #717171;
  margin-left: auto;
  margin-right: auto;
}
.Programme_tab {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  width: 100%;
  margin-top: 4rem;
  margin-bottom: 4.8rem;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
.Programme_tab_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 2.6rem;
  background-color: #ffffff;
  color: #4053fa;
  border: 0.2rem solid #4053fa;
  border-radius: 1rem;
  width: 20%;
  height: 7.2rem;
  text-align: center;
  padding: 1rem;
}
@media (max-width: 1024px) {
  .Programme_tab_item {
    width: 25%;
  }
}
@media (max-width: 768px) {
  .Programme_tab_item {
    width: 33.33%;
  }
}
@media (max-width: 480px) {
  .Programme_tab_item {
    width: 50%;
  }
}
.Programme_tab_item button {
  text-align: center;
}
.Programme_tab .tab_active {
  color: #ffffff;
  border: 0;
  background-color: #4053fa;
}
.Programme_content {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-left: 3rem;
  border-left: 0.2rem dashed #4053fa;
}
@media (max-width: 768px) {
  .Programme_content {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .Programme_content {
    border-left: 0;
  }
}
.Programme_content_row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .Programme_content_row {
    border: 0.15rem solid #4053fa;
  }
}
.Programme_content_row + .Programme_content_row {
  margin-top: 2rem;
}
.Programme_content_row_nav {
  transform: translateX(-3em);
}
.Programme_content_row_nav_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  border: 0.2rem dashed #4053fa;
  border-radius: 6rem;
  background-color: #ffffff;
  transform: translateY(2rem);
}
@media (max-width: 768px) {
  .Programme_content_row_nav_icon {
    display: none;
  }
}
.Programme_content_row_index {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 2rem;
  border-radius: 1rem;
}
@media (max-width: 1024px) {
  .Programme_content_row_index {
    padding: 4rem;
  }
}
.Programme_content_row_index_topinfo {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 768px) {
  .Programme_content_row_index_topinfo {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
}
.Programme_content_row_index_topinfo_date {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #717171;
  margin-right: 2.8rem;
}
.Programme_content_row_index_midinfo {
  display: flex;
  flex-direction: column;
}
.Programme_content_row_index_midinfo_h {
  font-weight: 600;
  font-size: 2.8rem;
  line-height: 3.6rem;
  color: #3f3f3f;
}
.Programme_content_row_index_midinfo_speaker {
  display: none;
  margin-top: 0;
}
@media (max-width: 480px) {
  .Programme_content_row_index_midinfo_speaker {
    display: flex;
    margin-top: 1rem;
  }
}
.Programme_content_row_index_midinfo_speaker_person {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.3rem;
  color: #3f3f3f;
}
.Programme_content_row_index_midinfo_speaker_person + .Programme_content_row_index_midinfo_speaker_person {
  margin-left: 2rem;
}
.Programme_content_row_index_speaker {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  flex: 1 1 auto;
  gap: 1.6rem;
  margin-top: 1.2rem;
}
@media (max-width: 480px) {
  .Programme_content_row_index_speaker {
    flex-direction: column;
  }
}
.Programme_content_row_index_speaker_img {
  display: flex;
  align-items: center;
  flex-direction: column;
  filter: drop-shadow(0px 8px 12px rgba(142, 167, 227, 0.2));
  display: flex;
  flex-direction: column;
  height: 100%;
}
.Programme_content_row_index_speaker_img img {
  width: 24rem;
  border-radius: 0.8rem 0.8rem 0 0;
}
@media (max-width: 480px) {
  .Programme_content_row_index_speaker_img img {
    width: 100%;
  }
}
.Programme_content_row_index_speaker_info {
  background-color: #0d2254;
  border-radius: 0 0 0.8rem 0.8rem;
  width: 24rem;
  padding: 1rem;
  box-sizing: border-box;
  height: 10rem;
}
@media (max-width: 480px) {
  .Programme_content_row_index_speaker_info {
    height: 9rem;
    width: 100%;
  }
}
.Programme_content_row_index_speaker_info_h {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.8rem;
  text-align: center;
  color: #ffffff;
  margin-bottom: 0.4rem;
}
.Programme_content_row_index_speaker_info_p {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.4rem;
  text-align: center;
  color: #ffffff;
}

.Sponsors {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #1731a4;
}
.Sponsors .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 124rem;
}
.Sponsors_head {
  gap: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.Sponsors_head_h2 {
  width: 100%;
}
.Sponsors_head h2 {
  font-weight: 800;
  font-size: 4rem;
  line-height: 4.8rem;
  text-align: center;
  color: #ffffff;
}
@media (max-width: 768px) {
  .Sponsors_head h2 {
    font-size: 3rem;
    line-height: 3.2rem;
  }
}
.Sponsors_head_p p {
  max-width: 72%;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 2.4rem;
  text-align: center;
  color: #ffffff;
  margin-left: auto;
  margin-right: auto;
}
.Sponsors_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1rem;
}
.Sponsors_content_row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.Sponsors_content_row + .Sponsors_content_row {
  margin-top: 6rem;
}
.Sponsors_content_row_h {
  font-weight: 600;
  font-size: 2.8rem;
  line-height: 4.8rem;
  text-align: center;
  color: #ffffff;
}
@media (max-width: 768px) {
  .Sponsors_content_row_h {
    font-size: 2rem;
  }
}
.Sponsors_content_row_logos {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  width: 100vw;
  max-width: 124rem;
}
.Sponsors_content_row_logos_item {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  margin-top: 1.2rem;
  margin-left: 1.2rem;
  margin-right: 1.2rem;
}
.Sponsors_content_row_logos_item img {
  width: 100%;
}

.Transport {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 12rem;
}
.Transport .container {
  display: flex;
  flex-direction: column;
  align-content: center;
}
.Transport_head {
  gap: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.Transport_head_h2 h2 {
  font-weight: 800;
  font-size: 4rem;
  line-height: 4.8rem;
  text-align: center;
  color: #3f3f3f;
}
@media (max-width: 768px) {
  .Transport_head_h2 h2 {
    font-size: 3rem;
    line-height: 3.2rem;
  }
}
.Transport_head_p p {
  max-width: 72%;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 2.4rem;
  text-align: center;
  color: #717171;
  margin-left: auto;
  margin-right: auto;
}
.Transport_context {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
  gap: 10rem;
}
@media (max-width: 1024px) {
  .Transport_context {
    flex-direction: column;
  }
}
.Transport_context_info {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.Transport_context_info_address {
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: #717171;
}
@media (max-width: 1024px) {
  .Transport_context_info_address {
    text-align: center;
  }
}
.Transport_context_info_address span {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: #717171;
}
.Transport_context_info_option {
  display: flex;
  flex-direction: column;
}
.Transport_context_info_option_item {
  display: flex;
  flex-direction: row;
  gap: 1.6rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .Transport_context_info_option_item {
    flex-direction: column;
  }
}
.Transport_context_info_option_item + .Transport_context_info_option_item {
  margin-top: 2rem;
}
.Transport_context_info_option_item_p p {
  width: 100%;
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 2.2rem;
  color: #717171;
  text-align: left;
}
@media (max-width: 768px) {
  .Transport_context_info_option_item_p p {
    text-align: center;
    width: 100%;
  }
}
.Transport_context_info_option_item_p a {
  width: 100%;
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 2.2rem;
  color: #717171;
  text-align: left;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .Transport_context_info_option_item_p a {
    text-align: center;
    width: 100%;
  }
}
.Transport_context_map {
  height: auto;
  display: flex;
  justify-content: center;
}
@media (max-width: 1024px) {
  .Transport_context_map {
    width: 100%;
  }
}
.Transport_context_map iframe {
  border-radius: 0.8rem;
}
@media (max-width: 1024px) {
  .Transport_context_map iframe {
    width: 80%;
  }
}

.Footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 3rem;
  background: #0d2254;
}
.Footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.Footer_menu {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.Footer_menu_item a {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2.1rem;
  text-align: center;
  color: #ffffff;
  gap: 4.8rem;
  margin-left: 2.4rem;
  margin-right: 2.4rem;
}
.Footer_menu_item a:hover {
  color: #4053fa;
}
.Footer_social {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 3.2rem;
  margin-bottom: 3.2rem;
  gap: 1.2rem;
}
.Footer_copyright p {
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 2.3rem;
  text-align: center;
  color: #99a1e4;
}

.lb span {
  color: #76e1e5;
}

.h1_animation {
  background: linear-gradient(-90deg, #f9fea5, #20e2d7, #20e2d7, #f9fea5);
  background-size: 300%;
  background-clip: text;
  animation: animated_text 8s ease-in-out infinite;
}

@keyframes animated_text {
  0% {
    background-position: 0px 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0px 50%;
  }
}
.Header_menu_button {
  position: relative;
  display: inline-block;
}

.Header_menu_button_content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  width: 16rem;
  border-radius: 0.8rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.Header_menu_button_content a {
  padding: 1.5rem;
  text-decoration: none;
  display: block;
  font-weight: 400;
  font-size: 1.2rem;
  text-align: center;
  color: #717171;
}

.Header_menu_button_content a:hover {
  color: #76e1e5;
}

.Header_menu_button:hover .Header_menu_button_content {
  display: block;
}

.Header {
  padding-top: 2.8rem;
  padding-bottom: 2rem;
}
.Header .container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  max-width: 124rem;
}

.Update {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.Update .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}
.Update_labels {
  display: flex;
  flex-direction: column;
  width: 72%;
  gap: 2.5rem;
  margin-top: 3.2rem;
  margin-bottom: 3.2rem;
}
@media (max-width: 768px) {
  .Update_labels {
    width: 100%;
  }
}
.Update_labels_h {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 2.6rem;
  color: #000;
}
.Update_labels_item input {
  margin-top: 1rem;
}
.Update_labels label {
  font-weight: 400;
  font-size: 1.6rem;
  outline: none;
  background: #fff;
  color: #333;
}
.Update_labels input,
.Update_labels select,
.Update_labels option {
  width: 100%;
  padding-left: 2.4rem;
  height: 6.4rem;
  border-radius: 0.8rem;
  font-weight: 400;
  font-size: 1.6rem;
  outline: none;
  background: #fff;
  color: #333;
  border: 0.2rem solid #bfbfbf;
}
.Update_labels input:focus,
.Update_labels select:focus,
.Update_labels option:focus {
  border: 0.2rem solid #0066cc;
}
.Update_labels .error-message {
  font-size: 1.4rem;
  color: red;
  margin-top: 0.5rem;
}
.Update_button {
  width: 100%;
}
.Update_button input {
  width: 100%;
  border-radius: 1rem;
  background: #0066cc;
  height: 6.4rem;
  text-align: center;
  font-weight: 600;
  font-size: 1.8rem;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* Genel popup stil ayarları */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Yarı saydam siyah arka plan */
  display: none;
  justify-content: center; /* Yatayda merkezle */
  align-items: flex-start; /* Popup'ı yukarıda hizalamak için */
  z-index: 9999;
}

/* Popup içerik alanı */
.popup {
  background-color: #fff;
  padding: 5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  position: relative; /* close butonunun popup içinde düzgün konumlanması için */
  width: 90%;
  max-width: fit-content;
  margin-top: 16%;
}

/* Başlık stil */
.popup h2 {
  font-weight: 500;
  font-size: 2rem;
  line-height: 2.4rem;
  color: #3f3f3f;
  text-align: left;
}

/* Kapanış butonu */
.close {
  font-size: 3rem;
  color: #3f3f3f;
  text-decoration: none;
  position: absolute;
  top: 10px;
  right: 10px;
  transition: all 0.3s ease;
  z-index: 10000; /* Butonun üstte kalmasını sağlar */
}

/* Kapanış butonu üzerine hover efekti */
.close:hover {
  color: #e74c3c;
}

/* Popup gösterildiğinde overlay'i aç */
.overlay.show {
  display: flex;
}/*# sourceMappingURL=main.css.map */