﻿/* Reset css */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
input,
select,
textarea,
button,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block; }

ol,
ul {
  list-style: none; }

blockquote,
q {
  quotes: none; }

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

a {
  text-decoration: none; }

img {
  border: 0; }

:focus {
  outline: 0; }

.clear {
  clear: both; }

body {
  line-height: 1;
  font-size: 16px;
  font-family: "Montserrat", sans-serif; }

* {
  box-sizing: border-box; }

.over {
  overflow: hidden; }

.mobil-menu {
  position: fixed;
  top: 15px;
  padding: 10px;
  background-color: #fff;
  right: 15px;
  display: none;
  z-index: 4; }
  .mobil-menu img {
    width: 36px;
    height: 36px; }

.button {
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 999;
  font-size: 26px;
  display: none; }

.button a {
  text-decoration: none; }

.btn-open:after {
  content: "";
  display: inline-block;
  transition-property: all .2s linear 0s;
  -moz-transition: all .2s linear 0s;
  -webkit-transition: all .2s linear 0s;
  -o-transition: all .2s linear 0s;
  width: 24px;
  height: 24px;
  background-size: 24px 24px;
  background-image: url(../img/menu.svg); }

.btn-close:after {
  content: "";
  display: inline-block;
  transition-property: all .2s linear 0s;
  -moz-transition: all .2s linear 0s;
  -webkit-transition: all .2s linear 0s;
  -o-transition: all .2s linear 0s;
  width: 24px;
  height: 24px;
  background-size: 24px 24px;
  background-image: url(../img/exit.svg); }

/*overlay*/

.transparan-div {
    opacity: 0.3; /* Transparanlık oranı */
    transition: opacity 0.3s ease; /* Geçiş animasyonu */
}

    .transparan-div:hover {
        opacity: 1; /* Mouse ile üzerine gelince opak hale gelir */
    }


.overlay {
  display: none;
  position: fixed;
  top: 137px;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  padding-bottom: 50px;
  background-color: #113e68;
  overflow: auto;
  z-index: 99999;
  opacity: 0.97; }

.wra {
  color: #e9e9e9;
  text-align: center;
  max-width: 90%;
  margin: 0 auto; }

.wra ul.wra-nav {
  text-transform: capitalize;
  padding: 5vh 10px; }
  .wra ul.wra-nav .fa {
    font-size: 18px;
    opacity: 0.8;
    color: white; }

.wra ul.wra-nav li {
  font-size: 18px;
  font-weight: bold;
  vertical-align: top;
  position: relative;
  padding-top: 1.5vh;
  padding-bottom: 1.5vh;
  cursor: pointer;
  transition: 500ms;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white; }

.wra-nav-in li {
  font-size: 18px !important;
  padding-top: 5px !important;
  padding-bottom: 5px !important; }

.active {
  opacity: 1 !important; }

.wra ul.wra-nav li a {
  color: white;
  padding: 5px 0;
  text-decoration: none;
  transition-property: all .2s linear 0s;
  -moz-transition: all .2s linear 0s;
  -webkit-transition: all .2s linear 0s;
  -o-transition: all .2s linear 0s; }
  .wra ul.wra-nav li a:hover {
    opacity: 1;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    transition: 500ms; }
  .wra ul.wra-nav li a img {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: -2px;
    opacity: 0; }
  .wra ul.wra-nav li a:hover img {
    opacity: 1;
    transition: 500ms; }

#header {
  width: 100%;
  height: 100vh;
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat; }
  #header .menu {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0 30px 0;
    position: relative; }
    #header .menu ul {
      display: flex; }
      #header .menu ul li {
        display: flex;
        align-items: center; }
        #header .menu ul li a {
          color: #fff;
          font-size: 18px;
          font-weight: bold;
          padding-bottom: 10px;
          border-bottom: 1px solid transparent;
          display: flex;
          align-items: center;
          transition: 300ms all; }
          #header .menu ul li a:hover {
            border-color: #fff; }
        #header .menu ul li img {
          margin-right: 10px; }
        #header .menu ul li:not(:last-child) {
          margin-right: 50px; }
        #header .menu ul li.loginBtn a {
          background-color: #db5816;
          border-radius: 23px;
          padding: 8px 10px;
          border: 2px solid #db5816; }
          #header .menu ul li.loginBtn a:hover {
            background-color: transparent;
            border-color: #db5816; }
    #header .menu .logo {
      margin: 0 55px; }

.subPageMenu {
  background-color: #113e68;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0px, 3.125vw, 0px) 0 clamp(0px, 1.5625vw, 0px) 0; }
  .subPageMenu ul {
    display: flex; }
    .subPageMenu ul li {
      display: flex;
      align-items: center; }
      .subPageMenu ul li a {
        color: #fff;
        font-size: clamp(14px, 0.94vw, 18px);
        font-weight: bold;
        padding-bottom: 10px;
        border-bottom: 1px solid transparent;
        display: flex;
        align-items: center;
        transition: 300ms all; }
        .subPageMenu ul li a:hover {
          border-color: #fff; }
      .subPageMenu ul li img {
        margin-right: 10px; }
      .subPageMenu ul li:not(:last-child) {
        margin-right: clamp(20px, 2.6vw, 50px); }
      .subPageMenu ul li.loginBtn {
        -webkit-transform: translateY(-5px);
                transform: translateY(-5px); }
        .subPageMenu ul li.loginBtn a {
          background-color: #db5816;
          border-radius: 23px;
          padding: 8px 10px;
          border: 2px solid #db5816; }
          .subPageMenu ul li.loginBtn a:hover {
            background-color: transparent;
            border-color: #db5816; }
  .subPageMenu .logo {
    margin: 0 55px; }

.page-title {
  text-align: center;
  color: #db5816;
  font-weight: bold;
  font-size: clamp(22px, 1.57vw, 30px);
  margin: clamp(40px, 3.9vw, 75px) 0; }

.page-title h3 {
  text-align: start;
  color: #db5816;
  font-weight: bold;
  font-size: clamp(20px, 1.36vw, 30px); }

#scooters .item {
  color: #000;
  display: block;
  transition: 300ms all;
  padding: 20px 0;
  margin-bottom: 30px; }
  #scooters .item .image {
    width: 100%;
    height: 370px;
    overflow: hidden;
    margin-bottom: 35px; }
    #scooters .item .image img {
      width: 100%;
      height: 100%;
      -o-object-fit: contain;
         object-fit: contain; }
  #scooters .item h3 {
    color: #db5816;
    font-weight: bold;
    font-size: clamp(15px, 1.05vw, 20px);
    text-transform: uppercase;
    padding: 0 20px; }
  #scooters .item span {
    margin: 15px 0 7px 0;
    font-style: normal;
    font-weight: 500;
    font-size: clamp(14px, 0.94vw, 18px);
    display: block;
    text-transform: uppercase;
    padding: 0 20px; }
  #scooters .item strong {
    font-weight: bold;
    font-size: clamp(18px, 1.36vw, 26px); }
  #scooters .item .bottom {
    padding: 0 20px; }
  #scooters .item .bottom img {
    transition: 300ms all;
    width: 26px;
    height: 26px; }
  #scooters .item .bottom:hover img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2); }
  #scooters .item:hover {
    -o-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    margin-top: -10px; }

#services {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 500px;
  margin: 75px 0 105px 0;
  display: block;
  overflow: hidden; }
  #services .image {
    display: block;
    width: 100%;
    height: 100%; }
    #services .image img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: center;
         object-position: center;
      transition: 300ms all; }
      #services .image img:hover {
        -webkit-transform: scale(1.2);
                transform: scale(1.2); }

#sections .image {
  overflow: hidden;
  width: 100%;
  height: 350px;
  display: block;
  margin-bottom: 30px; }
  #sections .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    transition: 300ms all; }
  #sections .image:hover img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2); }

#footer {
  margin-top: 130px;
  background-color: #113e68;
  color: #fff;
  padding: 80px 0 0 0;
  line-height: 32px; }
  #footer a {
    color: #fff;
    line-height: 32px; }
    #footer a:hover {
      text-decoration: underline; }
  #footer img {
    margin-bottom: 30px; }
  #footer ul {
    margin-bottom: 30px; }
  #footer .footer-bottom {
    width: 100%;
    padding: 20px 0;
    text-align: center;
    background-color: #e1e1e1;
    margin-top: 30px; }
    #footer .footer-bottom p {
      font-style: normal;
      font-weight: normal;
      font-size: clamp(12px, 0.84vw, 16px);
      line-height: 27px;
      color: #000; }

#product-detail {
  margin: 80px 0; }
  #product-detail .left h1 {
    font-weight: 800;
    font-size: clamp(18px, 1.5625vw, 30px);
    color: #db5816; }
  #product-detail .left p {
    font-weight: 500;
    font-size: clamp(14px, 0.94vw, 18px);
    line-height: 20px;
    text-align: justify;
    margin: clamp(20px, 2.09vw, 40px) 0; }
  #product-detail .left ul li {
    font-weight: 500;
    font-size: clamp(14px, 0.94vw, 18px);
    line-height: 20px;
    color: #113e68; }
    #product-detail .left ul li span {
      color: #000;
      margin-left: clamp(10px, 1.05vw, 20px); }
  #product-detail .left strong {
    margin: clamp(20px, 2.09vw, 40px) 0;
    font-weight: bold;
    font-size: clamp(18px, 1.5625vw, 30px);
    display: block; }
  #product-detail .left a {
    background: #163d69;
    color: #fff;
    transition: 300ms all;
    border-radius: 31px;
    margin-bottom: 20px;
    padding: 15px 50px;
    margin-right: auto;
    min-width: 375px;
    font-weight: bold;
    font-size: clamp(14px, 0.94vw, 18px);
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent; }
    #product-detail .left a:hover {
      border-color: #113e68;
      background-color: transparent;
      color: #113e68; }

.xzoom {
  width: 100% !important;
  height: auto;
  }

#detail {
  width: 100%;
  padding: 65px 0 35px 0;
  color: #fff;
  background-color: #113e68; }
  #detail .item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px; }
    #detail .item strong {
      font-weight: normal;
      font-size: clamp(16px, 1.05vw, 20px);
      line-height: 20px;
      margin-bottom: 3px;
      display: block; }
    #detail .item span {
      font-weight: bold;
      font-size: clamp(18px, 1.35vw, 26px);
      line-height: 20px; }
  #detail .icon {
    margin-right: clamp(20px, 2.09vw, 40px); }

table {
  width: 100%; }

td {
  text-align: left;
  padding: 0 10px;
  font-size: clamp(14px, 0.943vw, 18px);
  line-height: 40px; }

tr:nth-child(odd) {
  background-color: #f1f1f1; }

.Sub-head {
  background-color: #e1e1e1; }
  .Sub-head-in {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(20px, 2.09vw, 40px) 0; }
    .Sub-head-in h1 {
      font-size: clamp(20px, 1.98vw, 38px);
      font-weight: bold;
      color: #163d69; }

.List-in {
  padding-top: clamp(40px, 4.17vw, 80px);
  display: flex;
  flex-wrap: wrap; }

.List-item {
  width: calc(33.3% - 60px);
  margin-bottom: 100px;
  margin-right: 60px; }
  .List-item-img {
    margin-bottom: clamp(15px, 1.78vw, 34px); }
    .List-item-img img {
      width: 100%;
      transition: all 500ms; }
  .List-item-text span {
    display: block; }
  .List-item-text-category-title {
    font-size: clamp(16px, 1.25vw, 24px);
    font-weight: bold;
    color: #db5816;
    margin-bottom: 15px; }
  .List-item-text-title {
    max-width: 278px;
    font-size: clamp(16px, 1.25vw, 24px);
    font-weight: 500;
    color: #000;
    margin-bottom: 10px; }
  .List-item-price {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .List-item-price b {
      font-size: clamp(18px, 1.98vw, 38px);
      font-weight: bold;
      color: #000; }
    .List-item-price a {
      display: flex;
      cursor: pointer; }
      .List-item-price a .icon-search {
        display: block;
        width: 32px;
        height: 32px;
        background-size: 100% 100%;
        background-image: url(../img/icon-search.svg);
        transition: all 500ms; }
      .List-item-price a:hover {
        transition: all 500ms; }
        .List-item-price a:hover .icon-search {
          -webkit-transform: scale(1.1);
                  transform: scale(1.1); }
  .List-item:hover {
    transition: all 500ms; }
    .List-item:hover img {
      -webkit-transform: scale(1.1);
              transform: scale(1.1); }

.Kurumsal-in {
  padding-top: clamp(40px, 5.73vw, 110px); }
  .Kurumsal-in h2, .Kurumsal-in p {
    font-size: clamp(15px, 1.15vw, 22px);
    line-height: 1.45;
    color: #000;
    text-align: justify;
    margin-bottom: clamp(15px, 1.57vw, 30px); }
  .Kurumsal-in h2 {
    font-weight: 800; }
  .Kurumsal-in img {
    width: 100%;
    margin-bottom: 20px; }
  .Kurumsal-in p {
    display: flex; }
    .Kurumsal-in p img {
      width: 100%;
      max-width: 600px;
      margin-right: 20px;
      margin-bottom: 0; }

.Kurumsal .Galeri {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px; }
  .Kurumsal .Galeri-item {
    width: calc(25% - 15px);
    margin-right: 15px;
    margin-bottom: 15px; }
    .Kurumsal .Galeri-item a {
      display: flex;
      width: 100%; }
    .Kurumsal .Galeri-item img {
      width: 100%;
      height: 200px;
      margin-bottom: 0;
      -o-object-fit: cover;
         object-fit: cover; }

.Kurumsal-filter {
  padding-top: clamp(30px, 3.125vw, 60px); }

.Bilgi-in {
  padding-top: clamp(30px, 3.125vw, 60px); }

.Bilgi-text {
  font-size: clamp(14px, 1.15vw, 22px);
  text-align: center;
  color: #000;
  margin-top: clamp(40px, 5.2vw, 100px); }

.Bilgi-desc {
  margin-bottom: 40px; }
  .Bilgi-desc h3 {
    font-size: clamp(14px, 1.15vw, 22px);
    color: #000;
    font-weight: bold;
    margin-bottom: 20px; }
  .Bilgi-desc p {
    font-size: clamp(14px, 0.84vw, 16px);
    margin-bottom: 15px;
    line-height: 1.3; }

.Form {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px; }
  .Form-item {
    width: calc(50% - 20px);
    margin-right: 20px; }
    .Form-item.message {
      width: 100%; }
    .Form-item label {
      width: 100%; }
      .Form-item label input, .Form-item label textarea {
        width: 100%;
        border: solid 1px #ccc;
        background-color: #fff;
        font-size: clamp(14px, 0.84vw, 16px);
        font-weight: 500;
        line-height: normal;
        color: #6b6b6b;
        padding: 15px clamp(15px, 1.83vw, 35px);
        transition: all 500ms;
        margin-bottom: 20px; }
        .Form-item label input:focus, .Form-item label textarea:focus {
          border-color: #163d69;
          mso-border-shadow: yes; }
  .Form button[type=submit] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: clamp(16px, 1.15vw, 22px);
    font-weight: 600;
    text-align: center;
    color: #fff;
    background-color: #113e68;
    padding: 15px 0;
    border: 1px solid transparent;
    transition: all 500ms;
    margin-right: 20px; }
    .Form button[type=submit]:hover {
      border-color: #163d69;
      color: #163d69;
      background-color: #fff; }

.Map {
  height: auto;
  z-index: 9;
  position: relative;
  }
  .Map #map {
    width: 100%;
    height: auto;
    }

.Contact {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px; }
  .Contact-item {
    width: calc(50% - 20px);
    display: flex;
    flex-direction: column; }
    .Contact-item p, .Contact-item a {
      font-size: clamp(14px, 1.15vw, 22px);
      font-weight: 500;
      color: #000;
      font-style: normal;
      display: flex;
      margin-bottom: 15px;
      transition: all 500ms; }
      .Contact-item p i, .Contact-item a i {
        display: block;
        background-size: 100% 100%;
        width: 22px;
        height: 22px;
        margin-right: 15px;
        display: inline-block;
        padding: 0;
        }
        .Contact-item p i.icon-address, .Contact-item a i.icon-address {
          background-image: url(../img/placeholder.svg); }
        .Contact-item p i.icon-phone, .Contact-item a i.icon-phone {
          background-image: url(../img/call.svg); }
        .Contact-item p i.icon-mail, .Contact-item a i.icon-mail {
          background-image: url(../img/email.svg); }
    .Contact-item a:hover {
      color: #163d69;
      transition: all 500ms; }

.box-content {
  display: flex;
  flex-direction: column; }

.form {
  margin-bottom: 50px; }
  .form-group {
    display: flex;
    justify-content: space-between; }
    .form-group div {
      width: calc(50% - 10px); }

.Satis-in {
  padding-top: 60px; }

.Satis .table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
  border-collapse: collapse; }

.Satis .table-bordered {
  border: 1px solid #dee2e6; }

.Satis .table td, .Satis .table th {
  padding: .75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
  font-size: 14px; }

.Satis thead tr {
  border-color: red; }

.Satis thead tr th {
  font-weight: bold;
  border-bottom-color: #dee2e6 !important; }

.Satis .table-bordered td, .Satis .table-bordered th {
  border: 1px solid #dee2e6; }

.Satis .table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6; }

.Satis .table-bordered thead td, .Satis .table-bordered thead th {
  border-bottom-width: 2px; }

.Satis .table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05); }

.Satis a {
  color: #00549F; }

.Slider {
  position: relative;
  z-index: 1; }
  .Slider .swiper-container .swiper-slide {
    position: relative;
    height: 100vh;
    max-height: 690px;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover; }
    .Slider .swiper-container .swiper-slide .slider-mobil {
      width: 100%;
      display: none; }
  .Slider-text {
    display: flex;
    flex-direction: column;
    max-width: 430px;
    z-index: 2;
    position: absolute;
    left: 70px;
    bottom: 45px; }
    .Slider-text img {
      max-width: clamp(150px, 13vw, 250px);
      position: absolute;
      left: clamp(100px, 9.4vw, 180px);
      top: -50px; }
    .Slider-text h1 {
      font-size: clamp(32px, 4.42vw, 85px);
      font-weight: 500;
      line-height: 1.2;
      color: #ffffff; }
    .Slider-text p {
      font-size: clamp(14px, 0.93vw, 18px);
      font-weight: 300;
      line-height: 1.53;
      color: #ffffff; }
      .Slider-text p span {
        font-size: clamp(18px, 1.2vw, 23px);
        font-weight: bold;
        color: #dd1d17;
        display: block; }
    .Slider-text-button {
      display: flex;
      width: 100%;
      margin-top: 20px; }
      .Slider-text-button .buton {
        border: solid 0.5px #ffffff;
        font-size: 14px;
        font-weight: 300;
        line-height: 1.2;
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
        transition: all 500ms; }
        .Slider-text-button .buton:hover {
          background-color: #dd1d17; }
        .Slider-text-button .buton-red {
          background-color: #dd1d17;
          border: solid 0.5px transparent;
          margin-right: 20px; }
          .Slider-text-button .buton-red:hover {
            border: solid 0.5px #ffffff; }

.Support {
  position: fixed;
  right: 0;
  bottom: 60px;
  display: flex;
  z-index: 99;
  flex-direction: column; }
  .Support-item {
    background-color: #113e68;
    border: 1px solid #fff;
    padding: 10px;
    margin-bottom: 10px;
    position: relative; }
    .Support-item img {
      width: 45px;
      height: 45px; }
    .Support-item:last-child {
      margin-bottom: 0; }
      .Support-item:last-child img {
        -webkit-filter: invert(1);
                filter: invert(1); }

.dataTables_wrapper label {
  width: 100%;
  display: flex;
  align-items: center; }

.dataTables_length,
.dataTables_filter {
  width: 100%; }

table.dataTable.no-footer {
  border: none; }

table.dataTable tbody td {
  padding: 10px 20px;
  font-size: clamp(14px, 1.1vw, 20px);
  color: #7b7b7b; }

table.dataTable thead th, table.dataTable tfoot th {
  font-size: clamp(14px, 1.1vw, 20px);
  font-weight: normal; }

.dataTables_wrapper .dataTables_length select {
  margin-right: 10px; }

.dataTables_filter label {
  justify-content: flex-end; }

.dataTables_wrapper .dataTables_filter label input {
  margin-left: 10px; }

.dataTables_wrapper label select,
.dataTables_wrapper label input {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content; }

.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_paginate {
  margin-top: 10px; }

table.dataTable thead th, table.dataTable thead td {
  border: none; }

.dataTables_wrapper .dataTables_paginate .paginate_button {
  border: none;
  padding: 0; }

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  border: none;
  background: none; }

table.dataTable tbody tr.even {
  background-color: #fff; }

table.dataTable tbody tr.odd {
  background-color: #f6f4f4 !important; }

table.dataTable.display tbody tr.odd > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 {
  background-color: transparent; }

@media only screen and (max-width: 991px) {
  .menu-left,
  .menu-right {
    display: none; }
  .mobil-menu {
    display: block; }
  .List-item {
    width: calc(50% - 30px);
    margin-bottom: 50px;
    margin-right: 30px; }
    .List-item-img {
      margin-bottom: clamp(15px, 1.78vw, 34px); }
      .List-item-img img {
        width: 100%;
        transition: all 500ms; }
    .List-item-text span {
      display: block; }
    .List-item-text-category-title {
      font-size: clamp(16px, 1.25vw, 24px);
      font-weight: bold;
      color: #db5816;
      margin-bottom: 15px; }
    .List-item-text-title {
      max-width: 278px;
      font-size: clamp(16px, 1.25vw, 24px);
      font-weight: 500;
      color: #000;
      margin-bottom: 10px; }
    .List-item-price {
      display: flex;
      align-items: center;
      justify-content: space-between; }
      .List-item-price b {
        font-size: clamp(18px, 1.98vw, 38px);
        font-weight: bold;
        color: #000; }
      .List-item-price a {
        display: flex;
        cursor: pointer; }
        .List-item-price a .icon-search {
          display: block;
          width: 32px;
          height: 32px;
          background-size: 100% 100%;
          background-image: url(../img/icon-search.svg);
          transition: all 500ms; }
        .List-item-price a:hover {
          transition: all 500ms; }
          .List-item-price a:hover .icon-search {
            -webkit-transform: scale(1.1);
                    transform: scale(1.1); }
    .List-item:hover {
      transition: all 500ms; }
      .List-item:hover img {
        -webkit-transform: scale(1.1);
                transform: scale(1.1); }
  .Form {
    margin-right: 0; }
    .Form-item {
      width: 100%;
      margin-right: 0; }
    .Form button[type=submit] {
      margin-right: 0; }
  .Contact {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 30px; }
    .Contact-item {
      width: 100%; }
  .subPageMenu {
    padding: 32px 0; }
  .button {
    position: absolute;
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 999;
    font-size: 26px;
    display: block;
    background-color: #fff;
    padding: 15px; }
  .button a {
    text-decoration: none; }
  .btn-open:after {
    content: "";
    display: inline-block;
    transition-property: all .2s linear 0s;
    -moz-transition: all .2s linear 0s;
    -webkit-transition: all .2s linear 0s;
    -o-transition: all .2s linear 0s;
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
    background-image: url(../img/menu.svg); }
  .btn-close:after {
    content: "";
    display: inline-block;
    transition-property: all .2s linear 0s;
    -moz-transition: all .2s linear 0s;
    -webkit-transition: all .2s linear 0s;
    -o-transition: all .2s linear 0s;
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
    background-image: url(../img/exit.svg); }
  .mobile {
    display: block !important; }
  .overlay-active {
    display: block; }
  .Slider {
    overflow: hidden; }
    .Slider .swiper-container .swiper-slide {
      height: 100%;
      background-image: none; }
      .Slider .swiper-container .swiper-slide .slider-mobil {
        display: block; }
    .Slider-text {
      position: absolute;
      top: 50%;
      width: calc(100% - 60px);
      padding-left: 30px;
      padding-right: 30px;
      left: 50%;
      text-align: center;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      display: flex;
      flex-direction: column;
      align-items: center; }
      .Slider-text img {
        position: static; }
      .Slider-text h1 {
        font-size: 40px;
        letter-spacing: -2px; }
      .Slider-text-button {
        flex-direction: column;
        align-items: center; }
        .Slider-text-button .buton {
          width: -webkit-max-content;
          width: -moz-max-content;
          width: max-content;
          margin-bottom: 10px;
          margin-right: 0; }
          .Slider-text-button .buton:last-child {
            margin-bottom: 0; }
  .Kurumsal-in p {
    flex-direction: column; }
    .Kurumsal-in p img {
      width: 100%;
      max-width: 100%;
      margin-right: 0;
      margin-bottom: 20px; }
  .Kurumsal .Galeri {
    margin-right: -10px; }
    .Kurumsal .Galeri-item {
      width: calc(50% - 10px);
      margin-right: 10px;
      margin-bottom: 10px; }
      .Kurumsal .Galeri-item img {
        width: 100%;
        height: 200px; }
  .dataTables_wrapper.container-fluid {
    padding: 0 !important; }
  .dataTables_wrapper .col-sm-12 {
    padding: 0 !important; }
  table.dataTable tbody td {
    padding: 10px;
    font-size: 12px; }
  table.dataTable thead th,
  table.dataTable tfoot th {
    font-size: 12px; } }

@media (max-width: 768px) {
  .dataTables_filter label {
    justify-content: flex-start; } }

@media only screen and (max-width: 468px) {
  #product-detail .left a {
    min-width: 100% !important; }
  .xzoom {
   /* height: 400px !important; MUHAMMED*/ } }


#product-detail .col-lg-4 iframe{
	width:100%;
}
#product-detail .col-lg-4{
	width:45%
}
#product-detail .col-lg-8{
	width:55%
}
.xzoom-gallery{
	border:1px solid #eaeaea
}
#map iframe{
	width: 100% !important;
}
#footer .container > .row > .col-lg-3 > a > img{
	width:150px
}
.Contact-item p i.icon-address{
	    width: 42px;
}
#googleMap{
	margin-bottom:30px
}
div.featured-box{
	margin-top:0 !important
}
.featured-box .box-content .form-horizontal .form-group > .col-lg-6{
	position:relative;
}
.featured-box .box-content .form-horizontal .form-group > .col-lg-6::before{
	content: '▼';
	position:absolute;
	right: 15px;
	top:50%;
	transform:translateY(-50%);
	color: #333;
	font-size: 15px;
}
@media(max-width:1450px){
	#product-detail .col-lg-4,
	#product-detail .col-lg-8{
		width:50%
	}
	html{
		overflow-x:hidden
	}
}
@media(max-width:992px){
	#product-detail .col-lg-4,
	#product-detail .col-lg-8{
		width:100%
	}
	.xzoom-source{
		display:none
	}
}






