@import url("./cdrstrap.css");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.5s ease-in-out;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #e8e8e8;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgb(0, 0, 0);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #25425b;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  border-radius: 2px;
  /* Handle on hover */
}
::-webkit-scrollbar-thumb:hover {
  background: #25425b;
}

.mm-menu.mm-theme-dark {
  z-index: 9999;
  background-color: #132c50;
}

.mm-menu.mm-offcanvas {
  z-index: 999 !important;
}

.mm-menu.mm-theme-dark .mm-navbar a, .mm-menu.mm-theme-dark .mm-navbar .mm-prev:not(.mm-close) {
  background: transparent !important;
}

.mm-menu.mm-theme-dark .mm-btn:after, .mm-menu.mm-theme-dark .mm-navbar .mm-btn.mm-prev::before {
  border-color: #ffffff;
}

.mm-menu.mm-theme-dark .mm-btn:after, .mm-menu.mm-theme-dark .mm-navbar .mm-btn.mm-close::before {
  border-color: #ffffff;
}

.mm-menu.mm-theme-dark .mm-btn:after, .mm-menu.mm-theme-dark .mm-navbar .mm-btn.mm-close::after {
  border-color: #ffffff;
}

.mm-menu.mm-theme-dark .mm-navbar a, .mm-menu.mm-theme-dark .mm-navbar .mm-close:not(.mm-prev) {
  background: transparent !important;
}

.mm-menu.mm-theme-dark .mm-navbar a, .mm-menu.mm-theme-dark .mm-navbar > * {
  border: 2px solid #ffffff;
}

.mm-menu.mm-theme-dark .mm-navbar a, .mm-menu.mm-theme-dark .mm-navbar > .mm-close {
  border: 2px solid #ffffff;
}

.mm-listview > li:not(.mm-divider):after {
  background-color: rgba(255, 255, 255, 0.8);
}

#mm-blocker {
  z-index: 11;
}

.mm-clear:before, .mm-close:before {
  right: 1px;
}

@media (max-width: 1024px) {
  .mm-menu.mm-theme-dark .mm-listview > li a:not(.mm-next) {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
  }
  .mm-menu.mm-theme-dark .mm-listview > li a:not(.mm-next) img.header-home-img {
    filter: invert(1);
    height: 25px;
  }
  .mm-menu.mm-theme-dark .mm-listview > li a:not(.mm-next) img {
    height: 20px;
    filter: invert(1);
  }
}
.web-none {
  display: none;
}
@media (max-width: 1024px) {
  .web-none {
    display: block;
  }
}

.mobil-none {
  display: block;
}
@media (max-width: 1024px) {
  .mobil-none {
    display: none;
  }
}

header {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  position: sticky;
  z-index: 10;
  background-color: #fff;
}
header .top {
  background-color: #0b1b28;
  min-height: 40px;
}
@media (max-width: 1024px) {
  header .top {
    display: none;
  }
}
header .top .max-width {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  height: 40px;
}
header .top .max-width .left {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 15px;
}
header .top .max-width .left a {
  font-size: 12px;
  color: #fdfdfd;
}
header .top .max-width .left a i {
  margin-right: 7px;
  color: #fdfdfd;
}
header .top .max-width .right {
  display: flex;
  justify-content: end;
  align-items: center;
}
header .top .max-width .right a figure {
  width: 30px;
  height: 30px;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .top .max-width .right a figure img {
  width: 100%;
  float: left;
  filter: invert(1);
}
header .top .max-width .right a:hover figure img {
  filter: invert(0);
}
header .bottom {
  width: 100%;
}
header .bottom nav .max-width2 {
  width: 100%;
  height: 80px;
  max-height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
  padding: 0 100px;
  background-color: #132c50;
}
@media (max-width: 1676px) {
  header .bottom nav .max-width2 {
    padding: 0 50px;
    gap: 0;
  }
}
@media (max-width: 1440px) {
  header .bottom nav .max-width2 {
    padding: 0 50px;
    gap: 42px;
  }
}
@media (max-width: 1280px) {
  header .bottom nav .max-width2 {
    padding: 0 30px;
    gap: 30px;
  }
}
@media (max-width: 1024px) {
  header .bottom nav .max-width2 {
    gap: 20px;
  }
}
@media (max-width: 500px) {
  header .bottom nav .max-width2 {
    gap: 25px;
    padding-right: 10px !important;
    padding-left: 10px !important;
  }
}
header .bottom nav .max-width2:before {
  content: "";
  position: absolute;
  width: 25%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #ffffff;
  z-index: 0;
}
@media (max-width: 1024px) {
  header .bottom nav .max-width2:before {
    width: 32%;
  }
}
@media (max-width: 768px) {
  header .bottom nav .max-width2:before {
    width: 40%;
  }
}
@media (max-width: 600px) {
  header .bottom nav .max-width2:before {
    width: 80%;
  }
}
header .bottom nav .max-width2 a {
  cursor: pointer;
}
header .bottom nav .max-width2 a.logo {
  max-width: 25%;
  width: 100%;
  max-height: 100%;
  display: flex;
  justify-content: start;
  align-content: center;
  height: 100%;
  position: relative;
}
@media (max-width: 1665px) {
  header .bottom nav .max-width2 a.logo {
    max-width: 28%;
  }
}
@media (max-width: 1440px) {
  header .bottom nav .max-width2 a.logo {
    max-width: 20%;
  }
}
@media (max-width: 1024px) {
  header .bottom nav .max-width2 a.logo {
    max-width: 28%;
  }
}
@media (max-width: 768px) {
  header .bottom nav .max-width2 a.logo {
    max-width: 35%;
  }
}
@media (max-width: 600px) {
  header .bottom nav .max-width2 a.logo {
    max-width: 70%;
  }
}
header .bottom nav .max-width2 a.logo img.logo {
  width: 100%;
  float: left;
  max-width: calc(80% - 20px);
}
@media (max-width: 1440px) {
  header .bottom nav .max-width2 a.logo img.logo {
    max-width: 100%;
  }
}
@media (max-width: 500px) {
  header .bottom nav .max-width2 a.logo img.logo {
    padding-top: 0;
    position: static;
  }
}
header .bottom nav .max-width2 .right {
  display: flex;
  justify-content: end;
  align-items: center;
  width: calc(100% - 200px);
  gap: 26px;
}
@media (max-width: 1440px) {
  header .bottom nav .max-width2 .right {
    gap: 20px;
  }
}
@media (max-width: 600px) {
  header .bottom nav .max-width2 .right {
    width: 0;
  }
}
header .bottom nav .max-width2 .right ul {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 26px;
}
@media (max-width: 1440px) {
  header .bottom nav .max-width2 .right ul {
    gap: 20px;
  }
}
@media (max-width: 1280px) {
  header .bottom nav .max-width2 .right ul {
    display: none;
  }
}
header .bottom nav .max-width2 .right ul li {
  color: #ffffff;
  font-weight: 400;
  position: relative;
  line-height: 25px;
  padding: 10px 0;
}
header .bottom nav .max-width2 .right ul li.header-web-none {
  display: none;
}
@media (max-width: 1024px) {
  header .bottom nav .max-width2 .right ul li.header-web-none {
    display: block;
  }
}
header .bottom nav .max-width2 .right ul li.main-li:hover:not(.social-link) > a:before {
  width: calc(50% + 10px);
  height: 2px;
}
header .bottom nav .max-width2 .right ul li.main-li:hover:not(.social-link) > a:after {
  width: calc(50% + 10px);
}
header .bottom nav .max-width2 .right ul li:hover a {
  color: #ff7401;
}
header .bottom nav .max-width2 .right ul li:hover ul {
  padding: 10px 15px;
}
header .bottom nav .max-width2 .right ul li:hover ul.altmenu {
  opacity: 1;
  visibility: visible;
  width: fit-content;
  overflow: unset;
  animation: alt-menu-onhover 0.5s ease-in-out;
  top: 45px;
  border-radius: 5px;
  padding: 0;
}
header .bottom nav .max-width2 .right ul li:hover ul.altmenu li {
  padding: 10px;
}
header .bottom nav .max-width2 .right ul li:hover ul.altmenu li img {
  width: 20px;
  height: 20px;
  opacity: 1;
  visibility: visible;
}
header .bottom nav .max-width2 .right ul li:hover ul.altmenu li a {
  padding: 0 10px;
  font-weight: 600;
}
header .bottom nav .max-width2 .right ul li.social-link:hover ul {
  margin-top: 0;
}
header .bottom nav .max-width2 .right ul li.social-link:hover ul.altmenu li {
  padding: 10px;
}
header .bottom nav .max-width2 .right ul li.social-link:hover ul.altmenu li a {
  padding: 0;
}
header .bottom nav .max-width2 .right ul li.social-link:hover ul.altmenu li:hover img {
  filter: invert(1);
}
header .bottom nav .max-width2 .right ul li.social-link:hover ul.altmenu li:hover a {
  color: #fdfdfd;
}
header .bottom nav .max-width2 .right ul li.social-link:hover ul.altmenu li:hover a span {
  color: #fdfdfd;
}
header .bottom nav .max-width2 .right ul li.main-li form input {
  font-size: 14px;
  line-height: 14px;
  padding: 10px 15px;
  color: #141414;
  height: 38px;
  width: 200px;
}
header .bottom nav .max-width2 .right ul li.main-li form input:focus-visible {
  outline: none;
}
header .bottom nav .max-width2 .right ul li a {
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 1px;
  font-size: 18px;
  line-height: 34px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
header .bottom nav .max-width2 .right ul li a:before {
  content: "";
  position: absolute;
  right: -10px;
  width: 0;
  height: 1px;
  bottom: 12px;
  background-color: #ff7401;
  transform: scaleX(1);
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
header .bottom nav .max-width2 .right ul li a:after {
  content: "";
  position: absolute;
  left: -10px;
  width: 0%;
  height: 2px;
  background-color: #ff7401;
  bottom: 12px;
  transform: scaleX(1);
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
header .bottom nav .max-width2 .right ul li ul.altmenu {
  animation: alt-menu-outhover 0.5s;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  background: #EAEAEA;
  top: 25px;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  z-index: 3;
  width: 0;
  min-width: 0;
  overflow: hidden;
  gap: 0;
}
header .bottom nav .max-width2 .right ul li ul.altmenu li {
  width: 100%;
  min-height: 39px;
  max-height: 39px;
  height: max-content;
  display: flex;
  justify-content: start;
  align-items: center;
  background: #EAEAEA;
  color: #000000;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
header .bottom nav .max-width2 .right ul li ul.altmenu li:nth-last-child(1) {
  border-bottom: none;
}
header .bottom nav .max-width2 .right ul li ul.altmenu li:hover {
  background-color: #132c50;
}
header .bottom nav .max-width2 .right ul li ul.altmenu li:hover a {
  color: #fdfdfd;
}
header .bottom nav .max-width2 .right ul li ul.altmenu li img {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
header .bottom nav .max-width2 .right ul li ul.altmenu li a {
  color: #132c50;
  width: 100%;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  justify-content: flex-start;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
header .bottom nav .max-width2 .right a {
  text-decoration: none;
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
}
header .bottom nav .max-width2 .right a.lang-link img {
  margin: 0;
  width: 18px;
  height: 18px;
}
header .bottom nav .max-width2 .right a.lang-link span {
  font-size: 18px;
  line-height: 28px;
  color: #000000;
  font-weight: 600;
}
header .bottom nav .max-width2 .right .eklinks {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}
@media (max-width: 600px) {
  header .bottom nav .max-width2 .right .eklinks {
    display: none;
  }
}
header .bottom nav .max-width2 .right .eklinks .header-sosyal-ikon {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #fdfdfd;
}
@media (max-width: 1366px) {
  header .bottom nav .max-width2 .right .eklinks .header-sosyal-ikon {
    width: 35px;
    height: 35px;
  }
}
header .bottom nav .max-width2 .right .eklinks .header-sosyal-ikon a {
  padding: 4px;
}
header .bottom nav .max-width2 .right .eklinks .header-sosyal-ikon a svg {
  width: 100%;
  float: left;
}
header .bottom nav .max-width2 .right .eklinks .header-sosyal-ikon a svg path {
  fill: #fdfdfd;
}
header .bottom nav .max-width2 .right .eklinks .header-sosyal-ikon:hover {
  background-color: #ff7401;
}
header .bottom nav .max-width2 .right .eklinks .header-sosyal-ikon:hover a svg path {
  fill: #fdfdfd;
}
header .bottom nav .max-width2 .right .eklinks .header-teklif-al {
  border: 1px solid #fdfdfd;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;
}
header .bottom nav .max-width2 .right .eklinks .header-teklif-al:hover {
  background-color: #ff7401;
}
header .bottom nav .max-width2 .right .eklinks .header-teklif-al:hover a {
  color: #fdfdfd;
}
@media (max-width: 1366px) {
  header .bottom nav .max-width2 .right .eklinks .header-teklif-al {
    height: 35px;
    padding: 0 20px;
  }
}
header .bottom nav .max-width2 .right .eklinks .header-teklif-al a {
  letter-spacing: 1px;
  font-weight: 600;
}
@media (max-width: 1366px) {
  header .bottom nav .max-width2 .right .eklinks .header-teklif-al a {
    font-size: 16px;
  }
}
header .bottom nav .max-width2 #close {
  display: none;
  color: #ffffff;
  right: 0;
  font-size: 24px;
  border: 1px solid #fdfdfd;
}
@media (max-width: 1280px) {
  header .bottom nav .max-width2 #close {
    display: block !important;
    color: #000000;
  }
  header .bottom nav .max-width2 #close i {
    font-size: 26px;
    color: #ffffff;
    width: 30px;
    display: flex;
    height: 30px;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 500px) {
  header .bottom nav .max-width2 #close i {
    font-size: 30px;
  }
}

.owl-carousel .item img.web-slider {
  display: block !important;
}
.owl-carousel .item img.mobil-slider {
  display: none !important;
}
@media (max-width: 768px) {
  .owl-carousel .item img.web-slider {
    display: none !important;
  }
  .owl-carousel .item img.mobil-slider {
    display: block !important;
  }
}

.main-space {
  margin-top: 55px !important;
  margin-bottom: 65px !important;
}
@media (max-width: 500px) {
  .main-space {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
}

.max-width {
  max-width: 1440px !important;
  margin: 0 auto;
  padding-left: 25px !important;
  padding-right: 25px !important;
}
@media (max-width: 768px) {
  .max-width {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

.content-space {
  padding: 55px 0 65px 0;
}

.rl-no-pad {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.tb-no-pad {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

@keyframes alt-menu-onhover {
  from {
    opacity: 0;
    visibility: hidden;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes alt-menu-outhover {
  from {
    opacity: 1;
    visibility: visible;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
.mobil-yuzen-alan {
  opacity: 0;
  visibility: hidden;
  height: 0;
}

@media (max-width: 425px) {
  .mobil-yuzen-alan {
    height: 82px !important;
  }
}
@media (max-width: 375px) {
  .mobil-yuzen-alan {
    height: 72px !important;
  }
}
@media (max-width: 320px) {
  .mobil-yuzen-alan {
    height: 62px !important;
  }
}
@media (max-width: 500px) {
  header nav .max-width {
    justify-content: center;
  }
  .mobil-yuzen-alan {
    opacity: 1;
    visibility: visible;
    height: 90px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    z-index: 1000;
  }
  .mobil-yuzen-alan a {
    height: 90px;
    width: calc((100% - 40px) / 3);
  }
}
.sabitheader {
  position: fixed;
  top: 0;
  background-color: rgb(255, 255, 255);
  transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
}
.sabitheader .bottom nav .max-width a.logo img.logo {
  padding-top: 0;
  position: static;
}

.breadcrumb {
  background-color: rgba(19, 44, 80, 0.4);
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  padding-block: 10px;
  font-family: "Akhand", sans-serif;
  letter-spacing: 1.3px;
}
.breadcrumb a {
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}
.breadcrumb a i {
  width: 20px;
  height: 20px;
  font-size: 20px;
  color: #FFFFFF;
}

.current {
  color: #f7c000;
  font-weight: bold;
  font-family: "Akhand Extrabold", sans-serif;
}

.not-found {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
  width: 100%;
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 768px;
}
@media (max-width: 1024px) {
  .not-found {
    min-height: 600px;
  }
}
.not-found h1 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: #000;
  font-weight: bold;
  padding-top: 75px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

p, b, a, li, i {
  font-family: "Poppins", sans-serif;
}

.anasayfa-h2 {
  display: flex;
  justify-content: start;
  align-items: center;
  font-size: 44px;
  line-height: 110px;
  color: black;
  font-weight: 800;
  position: relative;
  padding-left: 55px;
  z-index: 1;
}
@media (max-width: 1650px) {
  .anasayfa-h2 {
    font-size: 36px;
    line-height: 100px;
    margin-right: 20px;
  }
}
@media (max-width: 1366px) {
  .anasayfa-h2 {
    font-size: 32px;
    line-height: 90px;
  }
}
@media (max-width: 1280px) {
  .anasayfa-h2 {
    font-size: 30px;
    line-height: 80px;
  }
}
@media (max-width: 1024px) {
  .anasayfa-h2 {
    font-size: 44px;
    line-height: 110px;
  }
}
@media (max-width: 600px) {
  .anasayfa-h2 {
    font-size: 34px;
    line-height: 70px;
    padding-left: 30px;
  }
}
@media (max-width: 400px) {
  .anasayfa-h2 {
    padding-left: 30px;
    font-size: 40px;
  }
}
@media (max-width: 360px) {
  .anasayfa-h2 {
    padding-left: 0;
    text-align: center;
    font-size: 36px;
  }
}
.anasayfa-h2 span {
  font-size: 110px;
  line-height: 110px;
  color: rgb(194, 194, 194);
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 1650px) {
  .anasayfa-h2 span {
    font-size: 100px;
    line-height: 100px;
  }
}
@media (max-width: 1440px) {
  .anasayfa-h2 span {
    font-size: 90px;
    line-height: 90px;
  }
}
@media (max-width: 1280px) {
  .anasayfa-h2 span {
    font-size: 80px;
    line-height: 80px;
  }
}
@media (max-width: 1024px) {
  .anasayfa-h2 span {
    font-size: 110px;
    line-height: 110px;
  }
}
@media (max-width: 600px) {
  .anasayfa-h2 span {
    font-size: 70px;
    line-height: 70px;
  }
}

.anasayfa-baslik {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 50px;
}
@media (max-width: 1440px) {
  .anasayfa-baslik {
    gap: 50px;
  }
}
@media (max-width: 1280px) {
  .anasayfa-baslik {
    gap: 40px;
  }
}
@media (max-width: 1024px) {
  .anasayfa-baslik {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .anasayfa-baslik {
    gap: 25px;
  }
}
.anasayfa-baslik h2 {
  width: 100%;
}
@media (max-width: 1024px) {
  .anasayfa-baslik h2 {
    width: 100%;
  }
}
.anasayfa-baslik p {
  width: 100%;
}
@media (max-width: 1024px) {
  .anasayfa-baslik p {
    width: 100%;
  }
}

.max-width2 {
  width: 100%;
  padding: 0 70px;
}
@media (max-width: 1024px) {
  .max-width2 {
    padding: 0 25px;
  }
}
@media (max-width: 500px) {
  .max-width2 {
    padding: 0 10px;
  }
}

p {
  font-size: 18px;
  line-height: 24px;
  margin: 0;
}
@media (max-width: 1366px) {
  p {
    font-size: 17px;
  }
}

.tumunu-incele {
  background-color: #132c50;
  font-size: 18px;
  color: #fdfdfd;
  border: 1px solid #132c50;
  width: max-content;
  padding: 5px 10px;
  letter-spacing: 1px;
  align-self: center;
}
.tumunu-incele:hover {
  background-color: #ff7401;
}

.anasayfa-hakkimizda {
  background-image: url("../../images/user/konular/hakkimizda-bg.jpg");
  background-position: top left;
  background-size: auto 100%;
}
@media (max-width: 768px) {
  .anasayfa-hakkimizda {
    background-size: 100%;
  }
}
.anasayfa-hakkimizda .max-width2 {
  display: flex;
  justify-content: center;
  align-content: center;
  gap: 60px;
}
@media (max-width: 1024px) {
  .anasayfa-hakkimizda .max-width2 {
    flex-direction: column;
  }
}
.anasayfa-hakkimizda .max-width2 figure {
  max-width: calc((100% - 60px) / 2);
  width: 100%;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .anasayfa-hakkimizda .max-width2 figure {
    max-width: 100%;
  }
}
.anasayfa-hakkimizda .max-width2 figure img {
  width: 100%;
  float: left;
}
.anasayfa-hakkimizda .max-width2 figure.seciton-web-img {
  display: block;
}
@media (max-width: 768px) {
  .anasayfa-hakkimizda .max-width2 figure.seciton-web-img {
    display: none;
  }
}
.anasayfa-hakkimizda .max-width2 figure.seciton-mobil-img {
  display: none;
}
@media (max-width: 768px) {
  .anasayfa-hakkimizda .max-width2 figure.seciton-mobil-img {
    display: block;
  }
}
.anasayfa-hakkimizda .max-width2 .text {
  max-width: calc((100% - 60px) / 2);
  display: flex;
  justify-content: center;
  align-content: start;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 1440px) {
  .anasayfa-hakkimizda .max-width2 .text {
    gap: 20px;
  }
}
@media (max-width: 1280px) {
  .anasayfa-hakkimizda .max-width2 .text {
    gap: 30px;
  }
}
@media (max-width: 1024px) {
  .anasayfa-hakkimizda .max-width2 .text {
    max-width: 100%;
  }
}

.anasayfa-urunlerimiz .max-width2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 25px;
}

.urunler {
  display: flex;
  justify-content: start;
  align-items: start;
  width: 100%;
  gap: 10px;
  flex-wrap: wrap;
}
.urunler .urun {
  max-width: calc((100% - 30px) / 4);
  width: 100%;
  position: relative;
}
@media (max-width: 768px) {
  .urunler .urun {
    max-width: calc((100% - 10px) / 2);
  }
}
@media (max-width: 500px) {
  .urunler .urun {
    max-width: 100%;
  }
}
.urunler .urun figure {
  width: 100%;
  overflow: hidden;
}
.urunler .urun figure img {
  width: 100%;
  float: left;
}
.urunler .urun .aciklama {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  position: absolute;
  height: 172px;
  width: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  left: 0;
  padding: 50px 30px;
  gap: 0;
}
@media (max-width: 1024px) {
  .urunler .urun .aciklama {
    padding: 20px 15px;
    height: 108px;
  }
}
@media (max-width: 768px) {
  .urunler .urun .aciklama {
    padding: 50px 30px;
    height: 172px;
  }
}
@media (max-width: 500px) {
  .urunler .urun .aciklama {
    padding: 25px 15px;
    height: unset;
  }
}
.urunler .urun .aciklama h2, .urunler .urun .aciklama h3 {
  font-size: 24px;
  line-height: 32px;
  color: #fdfdfd;
  width: 100%;
  letter-spacing: 1px;
}
@media (max-width: 1280px) {
  .urunler .urun .aciklama h2, .urunler .urun .aciklama h3 {
    font-size: 22px;
    line-height: 28px;
    letter-spacing: 0;
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .urunler .urun .aciklama h2, .urunler .urun .aciklama h3 {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .urunler .urun .aciklama h2, .urunler .urun .aciklama h3 {
    font-size: 26px;
    line-height: 34px;
    letter-spacing: 1px;
    width: 100%;
  }
}
@media (max-width: 500px) {
  .urunler .urun .aciklama h2, .urunler .urun .aciklama h3 {
    width: 100%;
  }
}
.urunler .urun .aciklama .buton {
  color: #ff7401;
  font-size: 0;
  line-height: 0;
}
.urunler .urun:hover {
  transform: scaleY(1.02);
}
.urunler .urun:hover .aciklama {
  height: 100%;
  width: 100%;
  background-color: rgba(19, 44, 80, 0.75);
  gap: 25px;
  padding: 100px 30px;
  background-blend-mode: multiply;
}
.urunler .urun:hover .aciklama h2, .urunler .urun:hover .aciklama h3 {
  width: 100%;
}
.urunler .urun:hover .aciklama .buton {
  font-size: 16px;
  line-height: 16px;
}

.anasayfa-ayricaliklarimiz {
  background-image: url("../../images/user/konular/ayricaliklarimiz-bg.jpg");
  background-position: top left;
  background-size: 100%;
}
.anasayfa-ayricaliklarimiz .max-width2 {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  gap: 0;
}
.anasayfa-ayricaliklarimiz .max-width2 .tumunu-incele {
  margin-top: 25px;
}
.anasayfa-ayricaliklarimiz .baslik {
  display: flex;
  justify-content: start;
  flex-direction: row;
  align-items: center;
  gap: 150px;
}
.anasayfa-ayricaliklarimiz .ayricaliklarimiz {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: stretch;
  gap: 10px;
  margin-top: 50px;
}
@media (max-width: 1440px) {
  .anasayfa-ayricaliklarimiz .ayricaliklarimiz {
    align-items: stretch;
  }
}
@media (max-width: 1280px) {
  .anasayfa-ayricaliklarimiz .ayricaliklarimiz {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.anasayfa-ayricaliklarimiz .ayricaliklarimiz .ayricalik {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  padding: 50px;
  border-bottom: 5px solid #ff7401;
  gap: 15px;
  max-width: calc((100% - 40px) / 5);
  width: 100%;
  background-color: #fdfdfd;
  cursor: pointer;
}
@media (max-width: 1440px) {
  .anasayfa-ayricaliklarimiz .ayricaliklarimiz .ayricalik {
    padding: 25px;
  }
}
@media (max-width: 1280px) {
  .anasayfa-ayricaliklarimiz .ayricaliklarimiz .ayricalik {
    max-width: calc((100% - 20px) / 3);
  }
}
@media (max-width: 600px) {
  .anasayfa-ayricaliklarimiz .ayricaliklarimiz .ayricalik {
    max-width: calc((100% - 10px) / 2);
  }
}
@media (max-width: 400px) {
  .anasayfa-ayricaliklarimiz .ayricaliklarimiz .ayricalik {
    max-width: 100%;
  }
}
.anasayfa-ayricaliklarimiz .ayricaliklarimiz .ayricalik figure {
  display: flex;
  justify-content: center;
  width: 100px;
  height: 100px;
  overflow: hidden;
  padding: 5px;
  border-radius: 100%;
  border: 2px solid #ff7401;
}
.anasayfa-ayricaliklarimiz .ayricaliklarimiz .ayricalik figure svg {
  width: 70%;
}
.anasayfa-ayricaliklarimiz .ayricaliklarimiz .ayricalik figure svg path {
  fill: #ff7401;
}
.anasayfa-ayricaliklarimiz .ayricaliklarimiz .ayricalik h2, .anasayfa-ayricaliklarimiz .ayricaliklarimiz .ayricalik h3 {
  font-size: 24px;
  font-weight: bold;
  color: #000000;
  line-height: 34px;
  min-height: 68px;
  text-align: center;
}
@media (max-width: 1545px) {
  .anasayfa-ayricaliklarimiz .ayricaliklarimiz .ayricalik h2, .anasayfa-ayricaliklarimiz .ayricaliklarimiz .ayricalik h3 {
    padding: 20px;
    line-height: 30px;
  }
}
@media (max-width: 1440px) {
  .anasayfa-ayricaliklarimiz .ayricaliklarimiz .ayricalik h2, .anasayfa-ayricaliklarimiz .ayricaliklarimiz .ayricalik h3 {
    padding: 0;
    line-height: 30px;
    min-height: 60px;
  }
}
@media (max-width: 1280px) {
  .anasayfa-ayricaliklarimiz .ayricaliklarimiz .ayricalik h2, .anasayfa-ayricaliklarimiz .ayricaliklarimiz .ayricalik h3 {
    padding: 10px;
    font-size: 24px;
    line-height: 34px;
    min-height: 68px;
  }
}
@media (max-width: 600px) {
  .anasayfa-ayricaliklarimiz .ayricaliklarimiz .ayricalik h2, .anasayfa-ayricaliklarimiz .ayricaliklarimiz .ayricalik h3 {
    font-size: 20px;
    line-height: 30px;
    min-height: 60px;
  }
}
.anasayfa-ayricaliklarimiz .ayricaliklarimiz .ayricalik .uc-nokta {
  font-size: 66px;
  line-height: 30px;
  color: rgb(194, 194, 194);
}
.anasayfa-ayricaliklarimiz .ayricaliklarimiz .ayricalik:hover {
  border-bottom-color: #132c50;
}
.anasayfa-ayricaliklarimiz .ayricaliklarimiz .ayricalik:hover figure {
  background-color: #132c50;
  border-color: #132c50;
}
.anasayfa-ayricaliklarimiz .ayricaliklarimiz .ayricalik:hover figure svg path {
  fill: #fdfdfd;
}

.anasayfa-konfor .max-width2 .alan {
  background-image: url("../../images/user/konular/teklif-al.jpg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: auto 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 70px;
  gap: 25px;
}
@media (min-width: 2200px) {
  .anasayfa-konfor .max-width2 .alan {
    background-size: 100%;
  }
}
@media (max-width: 1024px) {
  .anasayfa-konfor .max-width2 .alan {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .anasayfa-konfor .max-width2 .alan {
    padding: 25px;
  }
}
@media (max-width: 500px) {
  .anasayfa-konfor .max-width2 .alan {
    padding: 15px;
  }
}
.anasayfa-konfor .max-width2 .alan h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  font-size: 44px;
  line-height: 44px;
  color: #FFFFFF;
  padding: 20px;
}
.anasayfa-konfor .max-width2 .alan h2 span {
  font-size: 50px;
  line-height: 50px;
  color: #FFFFFF;
  font-weight: 600;
}
@media (max-width: 768px) {
  .anasayfa-konfor .max-width2 .alan h2 span {
    font-size: 44px;
    line-height: 44px;
  }
}
@media (max-width: 500px) {
  .anasayfa-konfor .max-width2 .alan h2 span {
    font-size: 36px;
    line-height: 36px;
  }
}
@media (max-width: 768px) {
  .anasayfa-konfor .max-width2 .alan h2 {
    font-size: 30px;
    line-height: 30px;
  }
}
@media (max-width: 500px) {
  .anasayfa-konfor .max-width2 .alan h2 {
    font-size: 40px;
    line-height: 40px;
    flex-direction: column;
    gap: 10px;
  }
}
.anasayfa-konfor .max-width2 .alan p {
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  width: 80%;
  color: #FFFFFF;
  padding: 20px;
}
@media (max-width: 1024px) {
  .anasayfa-konfor .max-width2 .alan p {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .anasayfa-konfor .max-width2 .alan p {
    font-size: 16px;
    line-height: 24px;
    padding: 0;
  }
}
.anasayfa-konfor .max-width2 .alan .teklif-al {
  background-color: #ff7401;
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  color: #fdfdfd;
  width: max-content;
  padding: 10px 25px;
  letter-spacing: 1px;
  align-self: center;
}
.anasayfa-konfor .max-width2 .alan .teklif-al:hover {
  background-color: #fdfdfd;
  color: #ff7401;
}

.anasayfa-referanslarimiz {
  background-color: #f0f0f0;
}
.anasayfa-referanslarimiz .baslik {
  display: flex;
  justify-content: start;
  flex-direction: row;
  align-items: center;
  gap: 150px;
}
.anasayfa-referanslarimiz .max-width2 {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  gap: 0;
}
.anasayfa-referanslarimiz .max-width2 .tumunu-incele {
  margin-top: 25px;
}

.owl-referanslarimiz .item {
  background-color: #fdfdfd;
  cursor: pointer;
  border: 2px solid #c2c2c2;
  filter: grayscale(1);
  overflow: hidden;
  padding: 10px;
}
.owl-referanslarimiz .item img {
  width: 100%;
}
.owl-referanslarimiz .item:hover {
  filter: grayscale(0);
}

.referanslarimiz {
  display: flex;
  justify-content: start;
  align-items: start;
  width: 100%;
  gap: 10px;
  margin-top: 50px;
}
.referanslarimiz .referans {
  max-width: calc((100% - 40px) / 5);
  width: 100%;
  background-color: #fdfdfd;
  cursor: pointer;
  border: 2px solid #c2c2c2;
  filter: grayscale(1);
}
.referanslarimiz .referans figure {
  width: 100%;
  overflow: hidden;
  padding: 10px;
}
.referanslarimiz .referans figure img {
  width: 100%;
  float: left;
}
.referanslarimiz .referans:hover {
  filter: grayscale(0);
}
.referanslarimiz .referans:hover figure img {
  transform: scale(1.05);
}

.anasayfa-haber {
  background-image: url("../../images/user/konular/haberler-bg.jpg");
  background-position: top left;
  background-size: 100%;
}
.anasayfa-haber .max-width2 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.anasayfa-haber .max-width2 .baslik {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 150px;
  width: 100%;
  margin-bottom: 40px;
}
.anasayfa-haber .max-width2 .tumunu-incele {
  background-color: #132c50;
  font-size: 18px;
  color: #fdfdfd;
  border: 1px solid #132c50;
  width: max-content;
  padding: 5px 10px;
  letter-spacing: 1px;
  align-self: center;
  margin-top: 50px;
}
.anasayfa-haber .max-width2 .tumunu-incele:hover {
  background-color: #ff7401;
  border: 1px solid #ff7401;
}

.haberler {
  display: flex;
  justify-content: start;
  align-items: start;
  width: 100%;
  gap: 25px;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .haberler {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
}
.haberler .haber {
  max-width: calc((100% - 50px) / 3);
  width: 100%;
  background-color: #132c50;
}
@media (max-width: 768px) {
  .haberler .haber {
    max-width: calc((100% - 25px) / 2);
  }
}
@media (max-width: 500px) {
  .haberler .haber {
    max-width: 100%;
  }
}
.haberler .haber figure {
  width: 100%;
  overflow: hidden;
  margin-bottom: 5px;
}
.haberler .haber figure img {
  width: 100%;
  float: left;
}
.haberler .haber .text {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  width: 100%;
}
.haberler .haber .text h2, .haberler .haber .text h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  min-height: 132px;
  color: black;
  text-align: start;
  background-color: #FFFFFF;
  width: 100%;
  padding: 15px 25px;
}
@media (max-width: 1024px) {
  .haberler .haber .text h2, .haberler .haber .text h3 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    min-height: 76px;
  }
}
@media (max-width: 500px) {
  .haberler .haber .text h2, .haberler .haber .text h3 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    min-height: 98px;
  }
}
.haberler .haber .text .haberi-oku {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #132c50;
  width: 100%;
  padding: 10px 25px;
}
.haberler .haber .text .haberi-oku p {
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
}
.haberler .haber .text .haberi-oku figure {
  overflow: hidden;
  display: flex;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 3px;
}
.haberler .haber .text .haberi-oku figure svg {
  width: 100%;
}
.haberler .haber .text .haberi-oku figure svg path {
  fill: #ffffff;
}
.haberler .haber:hover {
  background-color: #ff7401;
}
.haberler .haber:hover .text .haberi-oku {
  background-color: #ff7401;
}

footer {
  background-image: url("../../images/user/konular/footer-bg.jpg");
  background-position: top left;
  background-size: 100%;
  background-repeat: no-repeat;
}
@media (max-width: 1024px) {
  footer {
    background-size: auto 100%;
  }
}
footer .max-width {
  display: flex;
  justify-content: start;
  align-items: start;
  max-width: 100%;
  width: 100%;
  gap: 75px;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  footer .max-width {
    gap: 50px;
  }
}
@media (max-width: 768px) {
  footer .max-width {
    gap: 75px;
  }
}
footer .max-width .item {
  max-width: calc((100% - 225px) / 4);
  width: 100%;
}
@media (max-width: 1024px) {
  footer .max-width .item {
    max-width: calc((100% - 150px) / 4);
  }
}
@media (max-width: 768px) {
  footer .max-width .item {
    max-width: calc((100% - 75px) / 2);
    padding-left: 10px;
  }
}
@media (max-width: 500px) {
  footer .max-width .item {
    max-width: 100%;
    padding-left: 10px;
  }
}
footer .max-width .footer-bilgi {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 25px;
}
footer .max-width .footer-bilgi figure.footer-logo {
  width: 100%;
}
footer .max-width .footer-bilgi figure.footer-logo img {
  width: 100%;
  float: left;
}
footer .max-width .footer-bilgi p {
  font-size: 16px;
  line-height: 22px;
  align-items: start;
  color: #FFFFFF;
}
footer .max-width .footer-bilgi .yol-tarifi-al {
  width: 100%;
  color: #fdfdfd;
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
  background-color: #ff7401;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 5px;
}
footer .max-width .footer-bilgi .yol-tarifi-al figure {
  height: 18px;
  overflow: hidden;
  width: auto;
}
footer .max-width .footer-bilgi .yol-tarifi-al figure img {
  width: auto;
  height: 18px;
  float: left;
}
footer .max-width .footer-link h2 {
  color: #FFFFFF;
  font-size: 28px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 15px;
}
footer .max-width .footer-link ul {
  padding-left: 7px;
}
footer .max-width .footer-link ul li {
  list-style: disc;
  color: #FFFFFF;
  font-size: 18px;
}
footer .max-width .footer-link ul li a {
  color: #FFFFFF;
}
footer .max-width .footer-link ul li:hover {
  color: #ff7401;
}
footer .max-width .footer-link ul li:hover a {
  color: #ff7401;
}
footer .max-width .footer-iletisim h2 {
  color: #FFFFFF;
  font-size: 28px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 15px;
}
footer .max-width .footer-iletisim .iletisim-item {
  color: #FFFFFF;
  display: flex;
  justify-content: start;
  align-items: start;
  margin-bottom: 5px;
  gap: 5px;
}
footer .max-width .footer-iletisim .iletisim-item i {
  margin-top: 3px;
}
footer .max-width .footer-iletisim .iletisim-item .yazi {
  font-size: 16px;
  line-height: 22px;
  color: #FFFFFF;
}
footer .max-width .footer-iletisim .iletisim-item a {
  color: #ffffff;
}
footer .max-width .sosyal-ikon {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 7px;
  width: 100%;
  margin-top: 15px;
}
footer .max-width .sosyal-ikon a {
  max-width: calc((100% - 60px) / 5);
  width: 100%;
}
@media (max-width: 768px) {
  footer .max-width .sosyal-ikon a {
    width: 40px;
    height: 40px;
  }
}
footer .max-width .sosyal-ikon a figure {
  width: 100%;
  overflow: hidden;
  border: 1px solid #FFFFFF;
  padding: 7px;
}
footer .max-width .sosyal-ikon a figure svg {
  width: 100%;
  float: left;
}
footer .max-width .sosyal-ikon a figure svg path {
  fill: #FFFFFF;
}
footer .max-width .sosyal-ikon a:hover figure svg path {
  fill: #ff7401;
}

.copyright {
  padding: 10px 0;
}
.copyright .max-width {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 7px 0;
}
@media (max-width: 500px) {
  .copyright .max-width {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
}
@media (max-width: 500px) {
  .copyright .max-width .copyright-left p {
    text-align: center;
  }
}
.copyright .max-width .copyright-right {
  color: black;
}

.normal-sayfa.tanitim {
  border-top: 2px solid rgba(0, 0, 0, 0.2);
  padding-top: 15px !important;
}
.normal-sayfa.tanitim h2 {
  font-size: 28px !important;
  line-height: 38px !important;
  text-align: center;
  width: 100%;
  margin-top: 15px;
}
.normal-sayfa.haber-listesi {
  background-color: #e8e8e8;
}
.normal-sayfa .max-width {
  min-height: 350px;
}
.normal-sayfa .max-width.menulu {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 50px;
}
@media (max-width: 1024px) {
  .normal-sayfa .max-width.menulu {
    flex-direction: column;
  }
}
.normal-sayfa .max-width.menulu .text {
  max-width: calc(100% - 350px);
  width: 100%;
}
@media (max-width: 1024px) {
  .normal-sayfa .max-width.menulu .text {
    max-width: 100%;
  }
}
.normal-sayfa .max-width h1 {
  font-size: 50px;
  line-height: 50px;
  margin-bottom: 25px;
  color: #141414;
}
.normal-sayfa .max-width h2 {
  font-size: 32px;
  line-height: 42px;
  color: #141414;
  font-family: "Made", sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 5px;
}
.normal-sayfa .max-width h3 {
  font-size: 30px;
  line-height: 40px;
  color: #141414;
  font-family: "Made", sans-serif;
  font-weight: 600;
}
.normal-sayfa .max-width h4 {
  font-size: 28px;
  line-height: 38px;
  color: #141414;
  font-family: "Made", sans-serif;
  font-weight: 600;
}
.normal-sayfa .max-width h5 {
  font-size: 26px;
  line-height: 36px;
  color: #141414;
  font-family: "Made", sans-serif;
  font-weight: 600;
}
.normal-sayfa .max-width h6 {
  font-size: 24px;
  line-height: 34px;
  color: #141414;
  font-family: "Made", sans-serif;
  font-weight: 600;
}
.normal-sayfa .max-width p {
  font-size: 18px;
  color: #141414;
  line-height: 26px;
}
.normal-sayfa .max-width b {
  font-size: 18px;
  font-weight: bold;
  color: #141414;
  line-height: 26px;
}
.normal-sayfa .max-width ul {
  margin-top: 20px;
}
.normal-sayfa .max-width ul li {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
  color: #141414;
  position: relative;
}
.normal-sayfa .max-width ul li:before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #25425b;
  position: absolute;
  left: -15px;
  top: 7px;
}
.normal-sayfa .max-width figure.normal {
  max-width: 300px;
  width: 100%;
  float: right;
  cursor: pointer;
  overflow: hidden;
  border: 3px solid #25425b;
  margin: 0 0 15px 15px;
}
@media (max-width: 768px) {
  .normal-sayfa .max-width figure.normal {
    max-width: 250px;
  }
}
@media (max-width: 500px) {
  .normal-sayfa .max-width figure.normal {
    float: unset;
    max-width: 100%;
    height: unset;
    margin-bottom: 25px;
    margin-left: 0;
  }
}
.normal-sayfa .max-width figure.normal:hover img {
  transform: scale(1.05);
}
.normal-sayfa .max-width figure.normal img {
  width: 100%;
  height: auto;
  float: left;
}
.normal-sayfa .max-width .firma-tanitim-baslik {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-direction: column;
  gap: 10px;
}
.normal-sayfa .max-width .firma-tanitim-baslik img {
  max-height: 50px;
}
.normal-sayfa .max-width .firma-tanitim-baslik h1.tanitim-h1 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 0;
}
.normal-sayfa .urunler {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .normal-sayfa .urunler {
    margin-top: 25px;
  }
}
@media (max-width: 1024px) {
  .normal-sayfa .urunler .urun {
    max-width: calc((100% - 20px) / 3);
  }
}
@media (max-width: 768px) {
  .normal-sayfa .urunler .urun {
    max-width: calc((100% - 10px) / 2);
  }
}
@media (max-width: 500px) {
  .normal-sayfa .urunler .urun {
    max-width: 100%;
  }
}
.normal-sayfa .uretim-hatti {
  margin-top: 20px;
  flex-wrap: wrap;
}
.normal-sayfa .haberler {
  flex-wrap: wrap;
}
.normal-sayfa .haberler .text .haberi-oku figure svg path {
  fill: #FFFFFF;
}

.sidemenu {
  max-width: 300px;
  width: 100%;
  margin-top: 75px;
  background-color: #141414;
  min-height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 0;
}
@media (max-width: 500px) {
  .sidemenu {
    max-width: 100%;
  }
}
@media (max-width: 1280px) {
  .sidemenu {
    margin-top: 0;
  }
}
.sidemenu a {
  font-size: 18px;
  color: #fdfdfd;
  background-color: #132c50;
  padding: 10px;
  border-bottom: 2px solid #132c50;
  width: 100%;
  letter-spacing: 0.5px;
}
.sidemenu a:hover {
  color: #fdfdfd;
  background-color: #ff7401;
}
.sidemenu a.active {
  color: #fdfdfd;
  background-color: #ff7401;
}
.sidemenu a.parentPage {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: rgb(10, 19, 35);
}
.sidemenu a.parentPage i {
  width: 24px;
  height: 24px;
  font-size: 18px;
  color: #fdfdfd;
}

.sertifikalar {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 15px;
  width: 100%;
  margin-top: 25px;
  flex-wrap: wrap;
}
.sertifikalar .sertifika {
  max-width: calc((100% - 45px) / 4);
  width: 100%;
  border: 3px solid #25425b;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .sertifikalar .sertifika {
    max-width: calc((100% - 30px) / 3);
  }
}
@media (max-width: 768px) {
  .sertifikalar .sertifika {
    max-width: calc((100% - 15px) / 2);
  }
}
@media (max-width: 500px) {
  .sertifikalar .sertifika {
    max-width: 100%;
  }
}
.sertifikalar .sertifika:hover figure img {
  transform: scale(1.05);
}
.sertifikalar .sertifika figure {
  width: 100%;
}
.sertifikalar .sertifika figure img {
  width: 100%;
  float: left;
}

.videolar {
  display: flex;
  justify-content: start;
  align-content: start;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 25px;
}
.videolar iframe {
  max-width: calc((100% - 30px) / 3);
  width: 100%;
}
@media (max-width: 768px) {
  .videolar iframe {
    max-width: calc((100% - 15px) / 2);
  }
}
@media (max-width: 400px) {
  .videolar iframe {
    max-width: 100%;
  }
}

.iletisim-sayfa .iletisim-cards {
  width: 100%;
  margin-top: 25px;
  margin-bottom: 25px;
  display: flex;
  justify-content: start;
  align-items: stretch;
  gap: 15px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .iletisim-sayfa .iletisim-cards {
    justify-content: center;
  }
}
.iletisim-sayfa .iletisim-cards.tanitim-sayfasi {
  justify-content: center;
  margin-top: 25px;
}
.iletisim-sayfa .iletisim-cards.tanitim-sayfasi .card {
  background-image: none !important;
  background-color: transparent !important;
  border: 3px solid rgba(0, 102, 141, 0.3);
  padding: 25px;
}
@media (max-width: 1024px) {
  .iletisim-sayfa .iletisim-cards.tanitim-sayfasi .card {
    max-width: calc((100% - 30px) / 3);
  }
}
@media (max-width: 768px) {
  .iletisim-sayfa .iletisim-cards.tanitim-sayfasi .card {
    padding: 10px;
  }
}
@media (max-width: 500px) {
  .iletisim-sayfa .iletisim-cards.tanitim-sayfasi .card {
    max-width: calc((100% - 15px) / 2);
  }
}
.iletisim-sayfa .iletisim-cards.tanitim-sayfasi .card:hover {
  background-color: #25425b !important;
}
.iletisim-sayfa .iletisim-cards.tanitim-sayfasi .card:hover h2 {
  color: #fdfdfd;
}
@media (max-width: 768px) {
  .iletisim-sayfa .iletisim-cards.tanitim-sayfasi .card figure {
    max-width: 50%;
  }
}
@media (max-width: 500px) {
  .iletisim-sayfa .iletisim-cards.tanitim-sayfasi .card figure {
    max-width: 65%;
  }
}
.iletisim-sayfa .iletisim-cards.tanitim-sayfasi .card figure img {
  filter: invert(1);
}
.iletisim-sayfa .iletisim-cards.tanitim-sayfasi .card h2 {
  color: #25425b;
  margin-top: 0 !important;
}
@media (max-width: 1024px) {
  .iletisim-sayfa .iletisim-cards.tanitim-sayfasi .card h2 {
    font-size: 32px !important;
  }
}
@media (max-width: 768px) {
  .iletisim-sayfa .iletisim-cards.tanitim-sayfasi .card h2 {
    font-size: 24px !important;
  }
}
@media (max-width: 500px) {
  .iletisim-sayfa .iletisim-cards.tanitim-sayfasi .card h2 {
    font-size: 22px !important;
  }
}
.iletisim-sayfa .iletisim-cards.tanitim-sayfasi .card .text {
  color: #141414;
}
.iletisim-sayfa .iletisim-cards .card {
  background-color: #132c50;
  max-width: calc((100% - 45px) / 4);
  width: 100%;
  padding: 25px;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  border: 3px solid #25425b;
}
@media (max-width: 1280px) {
  .iletisim-sayfa .iletisim-cards .card {
    max-width: calc((100% - 30px) / 3);
  }
}
@media (max-width: 768px) {
  .iletisim-sayfa .iletisim-cards .card {
    max-width: calc((100% - 15px) / 2);
  }
}
@media (max-width: 600px) {
  .iletisim-sayfa .iletisim-cards .card {
    max-width: 100%;
  }
}
.iletisim-sayfa .iletisim-cards .card:hover figure img {
  margin-top: -5px;
  margin-bottom: 5px;
}
.iletisim-sayfa .iletisim-cards .card figure {
  max-width: 30%;
  padding: 10px;
  border: 3px solid #fdfdfd;
}
@media (max-width: 768px) {
  .iletisim-sayfa .iletisim-cards .card figure {
    max-width: 40%;
  }
}
.iletisim-sayfa .iletisim-cards .card figure img {
  width: 100%;
  filter: invert(1);
}
.iletisim-sayfa .iletisim-cards .card h2 {
  color: #fdfdfd;
  font-size: 40px;
  font-weight: 400;
}
.iletisim-sayfa .iletisim-cards .card .text {
  text-align: center;
  font-size: 18px;
  line-height: 28px;
  color: #fdfdfd;
}

.iletisim-formu {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 15px;
  flex-wrap: wrap;
}
.iletisim-formu .item {
  max-width: calc((100% - 15px) / 2);
}
@media (max-width: 600px) {
  .iletisim-formu .item {
    max-width: 100%;
  }
}

input {
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  padding: 10px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  color: #141414;
  border: 1px solid #908c83;
  border-radius: 3px;
}
input:focus {
  border: 1px solid #908c83;
}
input[type=submit] {
  max-width: 25%;
  width: 100%;
  background-color: #132c50;
  color: #FFFFFF;
  font-weight: bold;
}
input[type=submit]:hover {
  background-color: #FFFFFF;
  color: #132c50;
}

select {
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  padding: 12px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  color: #141414;
  border: 1px solid #908c83;
  border-radius: 3px;
}
select option {
  color: black;
}

::placeholder {
  opacity: 1;
}

::-ms-input-placeholder {
  color: #fdfdfd;
}

.bilgilendirme {
  max-width: 100%;
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 7px;
}
.bilgilendirme input[type=checkbox] {
  width: 20px;
}
.bilgilendirme label {
  color: #141414;
  font-family: "Made", sans-serif;
}
.bilgilendirme label a {
  color: #25425b;
  font-weight: bold;
}

textarea {
  max-width: 100%;
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  padding: 10px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  color: #141414;
  border: 1px solid #908c83;
  border-radius: 3px;
  font-family: "Made", sans-serif;
}

.harita_yerlestirme {
  width: 100%;
  margin-top: 25px;
}

.owl-urun-detay {
  max-width: 400px;
  width: 100%;
  margin: 0 0 15px 15px;
  float: right;
  border: 1px solid #dfdfdf;
}
@media (max-width: 768px) {
  .owl-urun-detay {
    max-width: 250px;
  }
}
@media (max-width: 500px) {
  .owl-urun-detay {
    max-width: 100%;
    margin: 0 0 15px 0;
  }
}
.owl-urun-detay .item img {
  float: left;
}
.owl-urun-detay .owl-nav {
  margin-top: 0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.owl-urun-detay .owl-nav button {
  margin: 0 5px !important;
  opacity: 0.5;
  border: 1px solid #25425b;
}
.owl-urun-detay .owl-nav button:hover {
  opacity: 1;
}
.owl-urun-detay .owl-nav button:hover.owl-prev {
  background-color: #141414;
}
.owl-urun-detay .owl-nav button:hover.owl-next {
  background-color: #141414;
}
.owl-urun-detay .owl-nav button.owl-prev {
  background-color: #25425b;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.owl-urun-detay .owl-nav button.owl-prev span {
  margin-top: -5px;
  font-size: 20px;
  line-height: 20px;
  color: #fdfdfd;
}
.owl-urun-detay .owl-nav button.owl-next {
  background-color: #25425b;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.owl-urun-detay .owl-nav button.owl-next span {
  margin-top: -5px;
  font-size: 20px;
  line-height: 20px;
  color: #fdfdfd;
}

.rapor-btns {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 20px;
  flex-wrap: wrap;
}
.rapor-btns .rapor-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #141414;
  color: #fdfdfd;
  font-size: 22px;
  padding: 7px 10px;
}
.rapor-btns .rapor-btn:hover {
  background-color: #25425b;
}

.projeler {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.projeler .proje {
  max-width: calc((100% - 40px) / 3);
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 2px solid #132c50;
}
@media (max-width: 1024px) {
  .projeler .proje {
    max-width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 600px) {
  .projeler .proje {
    max-width: 100%;
  }
}
.projeler .proje figure {
  width: 100%;
  overflow: hidden;
}
.projeler .proje figure img {
  width: 100%;
  float: left;
}
.projeler .proje .text {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  padding: 20px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}
.projeler .proje .text h2, .projeler .proje .text h3 {
  font-size: 30px;
  line-height: 38px;
  color: #FFFFFF;
}
@media (max-width: 1024px) {
  .projeler .proje .text h2, .projeler .proje .text h3 {
    font-size: 26px;
    line-height: 34px;
  }
}
@media (max-width: 600px) {
  .projeler .proje .text h2, .projeler .proje .text h3 {
    font-size: 22px;
    line-height: 30px;
  }
}
.projeler .proje:hover .text {
  bottom: -100%;
}

.owl-referans {
  max-width: 400px;
  width: 100%;
  margin: 0 0 15px 15px;
  float: right;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 12px;
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .owl-referans {
    max-width: 100%;
    margin: 0 0 15px 0;
  }
}
.owl-referans .item img {
  float: left;
}
.owl-referans .owl-nav {
  margin-top: 0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.owl-referans .owl-nav button {
  margin: 0 5px !important;
  opacity: 0.5;
  border: 1px solid #132c50;
}
.owl-referans .owl-nav button:hover {
  opacity: 1;
}
.owl-referans .owl-nav button:hover.owl-prev {
  background-color: #141414;
}
.owl-referans .owl-nav button:hover.owl-next {
  background-color: #141414;
}
.owl-referans .owl-nav button.owl-prev {
  background-color: #132c50;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.owl-referans .owl-nav button.owl-prev span {
  margin-top: -5px;
  font-size: 20px;
  line-height: 20px;
  color: #fdfdfd;
}
.owl-referans .owl-nav button.owl-next {
  background-color: #132c50;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.owl-referans .owl-nav button.owl-next span {
  margin-top: -5px;
  font-size: 20px;
  line-height: 20px;
  color: #fdfdfd;
}

.cozum-ortaklari {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 25px;
}
.cozum-ortaklari .ortak {
  max-width: calc((100% - 45px) / 4);
  width: 100%;
}
.cozum-ortaklari .ortak figure {
  width: 100%;
  overflow: hidden;
  padding: 2px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 7px;
  filter: grayscale(1);
}
.cozum-ortaklari .ortak figure img {
  border-radius: 5px;
  width: 100%;
  float: left;
}
.cozum-ortaklari .ortak h2 {
  width: 100%;
  font-size: 14px;
  line-height: 14px;
  min-height: 38px;
  font-weight: bold;
  padding: 5px 5px;
  display: flex;
  justify-content: start;
  align-items: center;
}
@media (max-width: 768px) {
  .cozum-ortaklari .ortak {
    max-width: calc((100% - 30px) / 3);
  }
}
@media (max-width: 500px) {
  .cozum-ortaklari .ortak {
    max-width: calc((100% - 15px) / 2);
  }
}
.cozum-ortaklari .ortak:hover figure {
  filter: grayscale(0);
}
.cozum-ortaklari .ortak:hover figure img {
  transform: scale(1.03);
}

.yuzenalan {
  display: none;
}
@media only screen and (max-width: 500px) {
  .yuzenalan {
    position: fixed;
    right: 0;
    bottom: 0;
    height: 90px;
    width: 100%;
    background-image: url(../../images/user/site/yuzenalan.png);
    z-index: 999;
    background-size: 100%;
    background-repeat: no-repeat;
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 0;
  }
}
@media only screen and (max-width: 460px) {
  .yuzenalan {
    height: 75px;
  }
}
@media only screen and (max-width: 375px) {
  .yuzenalan {
    height: 72px;
  }
}
@media only screen and (max-width: 360px) {
  .yuzenalan {
    height: 62px;
  }
}
.yuzenalan #whatsapp-message {
  max-width: 30%;
  width: 100%;
  display: block;
  height: 75px;
}
.yuzenalan #callPhone {
  max-width: 30%;
  width: 100%;
  display: block;
  height: 75px;
}
.yuzenalan #yuzenRandevu {
  max-width: 40%;
  width: 100%;
  display: block;
  height: 75px;
}

/*# sourceMappingURL=style.css.map */
