*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

:root{
  --color0: #db2b1a;
  --color1: #d1925c;
  --color2: #c03427;

  --bg-color0: #0b0b0b;
  --bg-color1: #222222;
  --bg-color2: #333333;

  --white: #FFFFFF;
  --white1: #e5e5e5;
  --lgray: #ebebeb;
  --lgray1: #bbbbbb;
  --gray: #777777;
  --lred: #e83943;
  --black: #000000;

  --border-color : #2f2f2f;
  font-size: 16px;
}

/* bg seçenekleri */
.bg-white { background: var(--white); color: var(--black); }
.bg-gray { background: var(--gray); color: var(--white); }
.bg-lgray { background: var(--lgray); color: var(--black); }
.bg-lred { background: var(--lred); color: var(--white); }
.bg-wlts1 {
  background: url(/img/bg/bgw4.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--black);
}
.bg-lredlts1 {
  background: url(/img/bg/bglr2.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--white);
}
/* ---- */

.flex-col{ display: flex; justify-content: center; flex-direction: column; }
.flex-img{ display: flex; justify-content: center; align-items: center; }
.flex-col.left { align-items: flex-end; }
.section-text { max-width: 550px; margin: 120px; }

body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-family: 'Open Sans', sans-serif;
  background: var(--white);
  color : var(--black);
}

svg{ display: inline-block; font-size: inherit; }
img, picture, video, canvas { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }
button{ border:none; margin: 0; padding: 0; background: none; cursor: pointer; }

/* margin ve padding */
.mb-1{ margin-bottom: 1rem; }
.mb-2{ margin-bottom: 2rem; }
.mb-3{ margin-bottom: 3rem; }
.mb-4{ margin-bottom: 4rem; }
.mb-5{ margin-bottom: 5rem; }

.mt-1{ margin-top: 1rem; }
.mt-2{ margin-top: 2rem; }
.mt-3{ margin-top: 3rem; }
.mt-4{ margin-top: 4rem; }
.mt-5{ margin-top: 5rem; }

/* Tüm heading elemanlarına ortak stil */
h1, h2, h3, h4, h5, h6 {
  margin-top: .75rem; 
  line-height: 1.2; 
  font-weight: bold; 
}

 h5::after, h6::after {
  content: "";
  display: block; 
  width: 50px;
  height: 2px; 
  background-color: var(--color0); 
  margin-top: 8px; 
}

p{ margin: 1rem 0; }

h1 { font-size: 3em; margin-bottom: 0.75em; }
h2 { font-size: 2em; margin-bottom: 0.75em; }
h3 { font-size: 1.75em; margin-bottom: 0.75em; }
h4 { font-size: 1.5em; margin-bottom: 0.75em; }
h5 { font-size: 1.25em; margin-bottom: 0.75em; }
h6 { font-size: 1em; margin-bottom: 0.75em; }

a{ text-decoration: none; color: var(--black); }
a:hover{ color: var(--active-hover-color); }

#root, #__next { isolation: isolate; }

.container{
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 1.4rem;
}
.container.pad{ padding: 3rem 1.4rem; }

.row { display: flex; flex-wrap: wrap; }
.col-1 { flex: 0 0 8.33%; max-width: 8.33%; padding: 15px; }
.col-2 { flex: 0 0 16.66%; max-width: 16.66%; padding: 15px; }
.col-3 { flex: 0 0 25%; max-width: 25%; padding: 15px; }
.col-4 { flex: 0 0 33.33%; max-width: 33.33%; padding: 15px; }
.col-5 { flex: 0 0 41.66%; max-width: 41.66%; padding: 15px; }
.col-6 { flex: 0 0 50%; max-width: 50%; padding: 15px; }
.col-7 { flex: 0 0 58.33%; max-width: 58.33%; padding: 15px; }
.col-8 { flex: 0 0 66.66%; max-width: 66.66%; padding: 15px; }
.col-9 { flex: 0 0 75%; max-width: 75%; padding: 15px; }
.col-10 { flex: 0 0 83.33%; max-width: 83.33%; padding: 15px; }
.col-11 { flex: 0 0 91.66%; max-width: 91.66%; padding: 15px; }
.col-12 { flex: 0 0 100%; max-width: 100%; padding: 15px; }
.col { padding: 20px; margin-bottom: 20px; }

/* CHR */
#header {
  background-color: var(--bg-color0);
  width: 100%;
}
#header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
#logo {
  display: flex;
  align-items: center;
}

#header a.logo {
  display: flex;
  align-items: center;
  letter-spacing: -1px;
  color: var(--white);
  font-size: 30px;
  font-weight: 500;
}
#header .color { color: var(--color0); }

.lts{ color: var(--white); font-weight: 800; font-style: italic; padding-right: 10px; }
.ribaund{ color: #ccc; }
#mobile-menu-icon { display: none; font-size: 2rem; margin-left: 20px; color: var(--white); }
#header .navigation { list-style: none; margin: 0; padding: 0; display: flex; }
#header .navigation>li { margin-right: 30px; }
#header .navigation>li>a, #header .navigation>li>button {
  position: relative;
  display: inline-block;
  color: var(--white1);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 10px 0;
}
#header .navigation>li>a::after, 
#header .navigation>li>button::after {
  content: ""; 
  display: block; 
  position: absolute; 
  left: 50%;
  bottom: 0px; 
  width: 0px; 
  height: 2px; 
  background-color: var(--color0);
  transition: width 0.3s ease, left 0.3s ease;
}

#header .navigation>li>a.active::after, 
#header .navigation>li>button.active::after {
  left: 0;
  width: 100%; 
}
#header .navigation>li>a:hover::after, 
#header .navigation>li>button:hover::after {
  left: 0;
  width: 100%; 
}

a.wheelchair-model span {
  font-size: 13px;
  font-weight: 600;
  color: var(--color0);
  width: 85px;
  float: right;
  margin-left: 20px;
}

/* lang select */
button.langselect {
  position: relative;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  background-color: var(--bg-color1);
  color: var(--lgray1);
  padding: 6px 18px 6px 8px;
}
button.langselect:hover{ background-color: var(--bg-color2); }
button.langselect::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 7px;
    transform: translateY(-50%) rotate(45deg); 
    border: solid var(--lgray1);
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 2px;
  }
  .langselect-content { display: none; }
  button.langselect:hover .langselect-content { 
    display: block; 
    position: absolute;
    left: 0;
    top: 30px;
    background-color: var(--bg-color1);
    border: 1px solid var(--border-color);
    padding: 0 3px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  .langselect-content a {
    color: var(--lgray1);
    padding: 6px 8px;
    text-decoration: none;
    display: block;
  }
  .langselect-content a:hover {
    background-color: var(--color0);
    color: var(--white);
  }


/* dropdown*/
.dropdown-content {
  display: block;
  position: absolute;
  background-color: var(--bg-color0);
  border: 1px solid var(--border-color);
  max-height: 0;
  opacity: 0;
  transition: max-height 1s ease, opacity 1s ease ;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
}
.dropdown-content a { display: none; border-radius: 4px; color: var(--white); padding: 12px 16px; }
.dropdown-content a:hover { background-color: var(--bg-color1); }
.dropdown:hover .dropdown-content{ max-height: 500px; opacity: 1; }
.dropdown:hover .dropdown-content a { display: block; }

#mobile-menu-close {
  display: none;
  position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1rem;
    width: 30px;
    height: 30px;
    border: 1px solid var(--border-color);
    background-color:  var(--bg-color1); ;
    color: var(--white);
    border-radius: 6px;
}

/* Hero */
#hero-wrapper {
  padding: 1.4rem 0;
  background-image: url('/img/bg/bg.svg');
  background-position: bottom;
  background-repeat: no-repeat;
  background-color: var(--bg-color0);
  color: var(--white1);
  min-height: 600px;
  border-bottom: 1px solid var(--border-color);
}

.headline { color: var(--color0); font-size: 22px; letter-spacing: 2px; margin: 0; }
.subheadline { font-size: 18px; margin-bottom: 4rem; }
.hero-img { max-width: 500px; width: 100%; }
/* --- */
#subhead { background: url('/img/bg/picheader.jpg'); color: var(--white);}
.nav{ display: flex; justify-content: space-between; padding: 0; }
.nav h1.title{ display: flex; font-size: 1.5rem; font-weight: 400; padding: 1.4rem; flex: 1; margin: 0; color: var(--white);}
.nav .breadcrumb{ display: flex;  align-items: flex-end; padding: 1rem; color: var(--white); font-size: .8rem; }
.nav .breadcrumb a { color: var(--white); margin-right: 5px; }
.nav .breadcrumb a:hover { text-decoration: underline; }
.nav .breadcrumb a::after { content: '>'; display: inline-block; padding-left: 5px; }

#footer {
  background-color: var(--bg-color0);
  color: var(--lgray1);
  font-size: 14px;
  padding: 50px 0;
  border-top: 1px solid var(--border-color);
}

#footer-social a{ padding: 0 5px; color: #FFFFFF; }
#footer-social a:hover{ color: #8f8f8f; }
#footer-social svg{ width: 30px; height: 30px; }
#footer div{ text-align: center; margin-bottom: 20px; display: flex; justify-content: center; flex-wrap: wrap; }
#footer-links{ color: #ffffff; font-weight: 600; }
#footer-links a{ color: #ffffff; font-weight: 600; padding: 0 15px; text-wrap: nowrap; }
#footer-links a:hover{ color: var(--color0); }
#footer-logo a{ font-size: 22px; }
#footer-logo .lts{ font-weight: 800; font-style: italic; color: #ffffff; }
#footer-logo .ribaund{ color: var(--lgray1); }
#footer-terms a{ color: var(--lgray1); padding: 0 10px; text-wrap: nowrap; }
#footer-terms a:hover{ color: var(--color0); }
#footer-copyright{ color: var(--gray); }


ul.checklist { list-style-type: disc; padding: 0 1.5rem; }
ul.checklist li { margin-bottom: 1rem; }
ul.checklist li::marker { color: var(--color0); }
ul.checklist.part2 { margin-top: 4rem; }


/* Dialog */
dialog { max-height: 800px; border-radius: 0.2em; border: 1px solid #fff; padding: 0; margin: auto; }
dialog::backdrop { background: rgba(0, 0, 0, 0.8); }
dialog[open] { animation: zoom 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes zoom { from { transform: scale(0.95); } to { transform: scale(1); } }
dialog[open]::backdrop { animation: fade 0.2s ease-out; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
#closeDialog {
  font-family: monospace;
  position: absolute;
  top: 5px;
  right: 5px;
  border: 2px solid #fff;
  background: #000;
  color: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
#closeDialog:hover { background: #fff; color: #000; }


@media (max-width: 1024px) {
  /* .dropdown-content{right: 0;} */
  .section-text { margin: 40px; }
}

@media (max-width: 820px) {
  .md-2{ flex: 0 0 50%; max-width: 50%; }
  .md-0{ display: none; }
}

@media (max-width: 768px) {
  .col-4, .col-6, .col-12 { flex: 0 0 100%; max-width: 100%; }
  .md-2{ flex: 0 0 50%; max-width: 50%; }
  .md-0{ display: none; }
  .hero-img { margin: 2rem auto; }
}

@media (max-width: 820px),(max-width: 768px){
  #mobile-menu-icon { display: block; }
  #mobile-menu-close { display: block; }
  #header .navigation{ display: none; position: absolute; background: var(--bg-color0); 
    z-index: 99; width: 100%; top: 0; left: 0; padding: 20px; border: 1px solid #555555; }
  #header .navigation.open{ display: block; }

  .section-text { margin: 40px; }
  .bg-img{ min-height: 300px; }
  .flex-col.left { align-items: flex-start; }

}

@media (max-width: 576px) {

  :root { font-size: 13px; }

  .col-1, .col-2, .col-3, .col-5, .col-7, 
  .col-8, .col-9, .col-10, .col-11, .col-12 { 
    flex: 0 0 100%; max-width: 100%; padding: 10px; }

  .col-3.center{ display: flex; justify-content: center; }
  
  h1 { font-size: 2em; }
  h2 { font-size: 1.75em; }
  h3 { font-size: 1.5em; }
  h4 { font-size: 1.25em; }
  h5 { font-size: 1em; }
  h6 { font-size: 0.875em; }

  .sm-2{ flex: 0 0 50%; max-width: 50%; }
  .sm-1{ flex: 0 0 100%; max-width: 100%; padding: 5px 15px; }
  .sm-0{ display: none; }

  #logo-img { max-width: 30px; }
  #header a.logo { font-size: 25px; }
  #head-top .contact {display: none;}

  .nav .breadcrumb{ display: none; }

  #mobile-menu-icon { display: block; }
  #mobile-menu-close { display: block; }

  #header .navigation{ display: none; }
  #header .navigation.open{ display: block; }

  #hero-wrapper { padding: 0; }
  .section-text { margin: 20px; }
  .bg-img{ min-height: 250px; }
  .subheadline { margin-bottom: 2rem; }

}



