@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.4/font/bootstrap-icons.css");
* {
  padding: 0;
  margin: 0;
  border: 0;
  text-decoration: none;
  box-sizing: border-box;
}

:root {
  --primary: rgb(186, 22, 23);
}

body {
  background: rgb(255, 255, 255);
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  overflow-x: hidden;
}
.top-header {
  position: relative;
  background: rgb(186, 22, 23);
  height: 40px;
  z-index: 11;
}
.top-header .nav-link {
  width: auto;
  height: 40px;
  padding: 0 15px;
  color: #fff;
  display: grid;
  place-items: center;
}
.top-header .nav-link:hover {
  color: #ddd;
}
header {
  margin-top: 10px;
  top: 10px;
  position: sticky;
  width: 100%;
  height: 100px;
  z-index: 10;
}
header nav {
  height: 100%;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;

  box-shadow: 0 0 10px 0 rgb(233 233 233 / 99%);
  border: 1px solid #e9e9e9;
  border-radius: 500px;
  padding: 50px !important;
  background: #fff;
}
header #hamburger {
  font-size: 30px;
  color: #333;
}
header .btn-bar,
header #hamburger {
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
}
header .logo {
  width: auto;
  height: 50px;
}
header nav {
  position: relative;
}
header .nav .nav-link {
  color: #333;
  font-weight: 500;
  font-size: 15px;
  padding: 30px 15px;
  display: flex;
  gap: 10px;
}
header .nav .nav-link::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  background: var(--primary);
  width: 0%;
  height: 3px;
  border-radius: 10px;
  margin-inline: auto;
  transition: 0.1s ease-in-out;
}
header .nav .nav-link:hover {
  color: var(--primary);
}
header .nav .nav-link.active {
  color: var(--primary);
}
header .nav .nav-link.active::after {
  width: 3px;
}
header .nav .myDropdownMenu {
  position: absolute;
  inset: 90px 0 auto 0;
  background: #fff;
  width: 100%;
  padding: 10px 0;
  border-radius: 25px;
  box-shadow: 0px 0px 10px 0px rgba(32, 32, 32, 0.1);
  border: 1px solid #ba1617;
  list-style: none;
  display: none;
  flex-wrap: wrap;
}
header .nav .myDropdownMenu .nav-link {
  position: relative;
  height: auto;
  padding: 15px;
  margin-inline: 10px;
  border-radius: 17px;
  color: #333;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 10px;
  border: 1px solid #dddddd;
}
@media only screen and (max-width: 1370px) {
  header .nav .myDropdownMenu .nav-link {
    font-size: 13px;
    gap: 5px;
  }
}
header .nav .myDropdownMenu .nav-link img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}
header .nav .myDropdownMenu .nav-link::after {
  display: none;
}
header .nav .myDropdownMenu .nav-link:hover {
}
header .nav .myDropdownMenu .myDropdownMenu.ToMenu {
  background: #fff;
  width: 260px;
  padding: 15px 0;
  border-radius: 10px;
  box-shadow: 0px 0px 50px 0px rgba(32, 32, 32, 0.15);
}
header .nav .myDropdownMenu .myDropdownMenu.ToMenu .nav-item:last-child .nav-link {
  border: 0;
}
header .nav .nav-item:hover > .myDropdownMenu {
  display: flex;
  justify-content: center;
}
header .search-wrap {
  background: transparent;
  max-width: 300px;
  width: 100%;
  height: 50px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
}
header .search-wrap #search-input {
  background: transparent;
  width: calc(100% - 50px);
  height: 50px;
  font-size: 14px;
  border: 0;
  padding: 0 0 0 15px;
  flex-grow: 1;
}
header .search-wrap #search-input:focus {
  box-shadow: 0 0 0 0;
  outline: 0;
}
header .search-wrap:has(#search-input:focus) {
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
}
header .search-wrap #search-button {
  background: var(--primary);
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 45px;
  margin-right: 5px;
}
header #search-bar {
  font-size: 22px;
  color: #333;
  display: none;
}
header#opacityheader {
  position: fixed;
  background: transparent;
}
header#opacityheader #hamburger {
  font-size: 30px;
  color: #fff;
}
header#opacityheader .logo {
  height: 30px;
}
header#opacityheader .logo.siyah {
  display: none;
}
header#opacityheader .nav .nav-link {
  color: #fff;
}
header#opacityheader .nav .nav-link::after {
  background: #fff;
}
header#opacityheader .nav .nav-link:hover {
  color: #fff;
}
header#opacityheader .nav .nav-link.active {
  color: var(--primary);
}
header#opacityheader .nav .myDropdownMenu {
  background: #fff;
}
header#opacityheader .nav .myDropdownMenu .nav-link {
  color: #333;
}
header#opacityheader .nav .myDropdownMenu .nav-link:hover {
  background: var(--primary);
  color: rgb(255, 255, 255);
}
header#opacityheader .contact {
  color: #fff;
}
header#opacityheader .contact .bi {
  background: rgb(255, 255, 255);
  color: var(--primary);
}
header#opacityheader.active {
  background: #fff;
}
header#opacityheader.active #hamburger {
  font-size: 30px;
  color: #333;
}
header#opacityheader.active .logo.beyaz {
  display: none;
}
header#opacityheader.active .logo.siyah {
  display: block;
}
header#opacityheader.active .nav .nav-link {
  color: #333;
}
header#opacityheader.active .nav .nav-link::after {
  background: var(--primary);
}
header#opacityheader.active .nav .nav-link:hover {
  color: var(--primary);
}
header#opacityheader.active .nav .nav-link.active {
  color: var(--primary);
}
header#opacityheader.active .nav .myDropdownMenu {
  background: #fff;
}
header#opacityheader.active .nav .myDropdownMenu .nav-link {
  color: #333;
}
header#opacityheader.active .nav .myDropdownMenu .nav-link:hover {
  background: var(--primary);
  color: rgb(255, 255, 255);
}
header#opacityheader.active .contact {
  color: #333;
}
header#opacityheader.active .contact .bi {
  background: rgb(255, 255, 255);
  color: var(--primary);
}
#second-header {
  background: #fff;
  width: 100%;
  height: 50px;
  border-bottom: 1px solid #eee;
}
#second-header .container {
  height: 50px;
  display: flex;
}
#second-header .owl-nav {
  width: 100%;
  height: 0;
  z-index: 1;
  margin: 0;
}
#second-header .owl-nav > button {
  position: absolute;
  width: 60px;
  height: 49px;
  font-size: 22px;
  color: #333;
  margin: 0;
}
#second-header .owl-nav .owl-prev {
  inset: 0 auto 0 0;
  background: linear-gradient(90deg, #fff 60%, transparent 100%);
  text-align: left;
  padding-left: 10px !important;
}
#second-header .owl-nav .owl-next {
  inset: 0 0 0 auto;
  background: linear-gradient(-90deg, #fff 60%, transparent 100%);
  text-align: right;
  padding-right: 10px !important;
}
#second-header .owl-nav .owl-prev.disabled, #second-header .owl-nav .owl-next.disabled {
  opacity: 0;
  visibility: hidden;
}
#second-header .nav-link {
  height: 50px;
  font-weight: 400;
  font-size: 14px;
  color: #333;
  line-height: 50px;
  padding: 0 13px;
}
#second-header .nav-link:hover {
  background: rgba(0, 0, 0, 0.1);
}
#second-header .drop-header {
  position: absolute;
  inset: 50px 0 auto 0;
  background: red;
}
.nav-drill i {
  margin-right: 5px;
}

.nav-is-toggled header#opacityheader #hambuger {
  color: #333 !important;
}
.nav-is-toggled header#opacityheader .logo.beyaz {
  display: none;
}
.nav-is-toggled header#opacityheader .logo.siyah {
  display: block;
}
.nav-is-toggled .nav-drill {
  transform: translateX(0);
}
.nav-is-toggled::after {
  opacity: 1;
  visibility: visible;
}

.nav-drill {
  display: flex;
  position: fixed;
  z-index: 9;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateX(-105%);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.25);
  transition: 0.45s;
  padding-top: 100px;
  display: none;
  z-index: 9;
}
.nav-drill .nav-items {
  flex: 0 0 100%;
  padding: 0;
  list-style-type: none;
}
.nav-drill .nav-item:not(:last-child) {
  border-bottom: solid 1px #eee;
}
.nav-drill .nav-link {
  display: block;
  padding: 0.75em 1em;
  background-color: #fff;
  color: #333;
  font-size: 15px;
  line-height: 2.5em;
  font-weight: 400;
  cursor: pointer;
}
.nav-drill .nav-link .fa-solid {
  margin-right: 15px;
}
.nav-drill .nav-expand-content {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: calc(100% - 100px);
  transform: translateX(100%);
  background-color: #fff;
  transition: 0.3s;
  visibility: hidden;
  overflow-x: hidden;
  overflow-y: auto;
}
.nav-drill .nav-expand-content .nav-expand-content {
  top: 0px;
}
.nav-drill .nav-expand-content .nav-item:not(:last-child) {
  border-bottom: solid 1px #eee;
}
.nav-drill .nav-expand-content .nav-item:first-child {
  background: #000;
}
.nav-drill .nav-expand-content .nav-back-link {
  display: flex;
  align-items: center;
  background-color: #000 !important;
  color: #fff;
}
.nav-drill .nav-expand-content .nav-back-link::before {
  content: "\f284";
  font-family: "bootstrap-icons";
  margin-right: 10px;
}
.nav-drill .nav-expand-link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.nav-drill .nav-expand-link::after {
  content: "\f285";
  font-family: "bootstrap-icons";
  margin-left: auto;
}
.nav-drill .nav-expand.active > .nav-expand-content {
  transform: translateX(0);
  visibility: visible;
}

#banner {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
#banner .owl-stage-outer {
  width: calc(100% + 50px);
  margin-inline: -25px;
}
#banner .owl-stage {
  margin-inline: auto;
}
#banner .owl-item {
  width: 100%;
  margin-block: 25px;
}
#banner .owl-nav {
  position: absolute;
  width: 100%;
  height: 0;
  inset: calc(50% - 25px) 0 auto 0;
  display: flex;
  justify-content: space-between;
}
#banner .owl-prev, #banner .owl-next {
  position: absolute;
  top: -33px;
  background: rgb(186, 22, 23);
  width: 50px;
  height: 50px;
  color: #ffffff;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
}
#banner .owl-prev {
  left: 15px;
}
#banner .owl-next {
  right: 15px;
}
#banner .owl-dots {
  transform: translateY(10px);
}
#banner .owl-dots .owl-dot span {
  background: #eee;
  width: 15px;
  height: 15px;
}
#banner .owl-dots .owl-dot.active span {
  background: #aaa;
}
#banner .banner-item {
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 500px;
  border-radius: 0;
  margin-inline: 25px;
}
/* #banner section.container {
  position: relative;
  top: 20px;
  height: 400px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#banner .owl-stage-outer, #banner .owl-stage {
  height: 100%;
}
#banner .owl-nav {
  position: absolute;
  top: calc(50% - 20px);
  left: 0;
  width: 100%;
  height: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}
#banner .owl-next,
#banner .owl-prev {
  background: transparent;
}
#banner .owl-next i,
#banner .owl-prev i {
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: #fff;
  text-align: center;
  line-height: 40px;
  border-radius: 40px;
  transition: 0.2s ease-in-out;
  display: block;
}
#banner .owl-next i:hover,
#banner .owl-prev i:hover {
  transform: scale(1.2);
}
#banner .owl-dots {
  transform: translateY(25px);
}
#banner .owl-dots .owl-dot span {
  background: #333;
  width: 25px;
  height: 3px;
}
#banner .owl-dots .owl-dot.active span {
  background: #fff;
}
#banner .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}
#banner .container .slogan {
  max-width: 500px;
  width: 100%;
  color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  z-index: 3;
}
#banner .container .slogan h4 {
  position: relative;
  left: 70px;
  width: 160px;
  height: 40px;
  font-weight: 500;
  font-size: 16px;
  line-height: 75px;
}
#banner .container .slogan h4:before {
  content: "";
  background: rgb(255, 255, 255);
  position: absolute;
  top: 35px;
  left: -70px;
  width: 50px;
  height: 2px;
}
#banner .container .slogan h1 {
  font-weight: 300;
  font-size: 50px;
  line-height: 60px;
  margin: 20px 0 0 0;
}
#banner .container .slogan h1 strong {
  font-weight: 600;
  font-size: 60px;
}
#banner .container .slogan p {
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  margin: 20px 0;
}
#banner .container .slogan a {
  background: #fff;
  width: 200px;
  height: 50px;
  font-size: 15px;
  font-weight: 400;
  color: #333;
  text-align: center;
  text-decoration: none;
  line-height: 50px;
  border-radius: 50px;
  transition: 0.1s ease-in-out;
  box-shadow: 3px 3px 3px 0 rgba(0, 0, 0, 0.1);
  display: block;
  float: left;
}
#banner .container .slogan a strong {
  font-size: 15px;
  font-weight: 600;
}
#banner .container .slogan a .bi {
  background: var(--primary);
  color: #fff;
  border-radius: 40px;
  float: right;
  width: 40px;
  height: 40px;
  margin: 5px;
  text-align: center;
  line-height: 40px;
}
#banner .container .slogan a:hover {
  transform: scale(1.1);
  box-shadow: 3px 3px 3px 0 rgba(0, 0, 0, 0.1);
}
#banner .container .slogan .wrap {
  gap: 20px;
}
#banner .container .slogan .video {
  background: transparent;
  width: 180px;
  text-align: left;
  color: rgb(255, 255, 255);
  box-shadow: none;
}
#banner .container .slogan .video .bi {
  float: left;
}
#banner .container .slogan .video:hover {
  background: rgb(255, 255, 255);
  color: var(--primary);
}
#banner .container .slogan .video .icons {
  background: rgb(255, 255, 255);
  width: 44px;
  height: 44px;
  color: var(--primary);
  text-align: center;
  line-height: 44px;
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.1);
  margin: 3px 10px 3px 3px;
  border-radius: 44px;
  float: left;
}
#banner .container .slogan .video:hover .icons {
  background: var(--primary);
  color: rgb(255, 255, 255);
}
#banner .container .slideban {
  max-width: 700px;
  flex: 1 1 300px;
  display: grid;
  place-items: center;
} */

#hizmetlerimiz {
  margin-top: 0px;
  border-radius: 0;
}
#hizmetlerimiz .hizmet-head {
  padding: 0px 30px 0;
  display: flex;
  align-items: flex-start;
}
#hizmetlerimiz h3 {
  background: var(--primary);
  width: auto;
  font-size: 20px;
  text-align: left;
  color: #fff;
  padding: 10px 20px;
  border-radius: 0 10px 10px;
}
#hizmetlerimiz .explain {
  background: #222;
  padding: 5px;
  border-radius: 5px 5px 5px 0;
  text-align: left;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  padding-inline: 20px;
  margin: 0;
}
#hizmetlerimiz a {
  text-decoration: none;
}
#hizmetlerimiz .hizmet-content {
  margin-inline: auto;
  padding: 10px 20px 25px;
}
#hizmetlerimiz .hizmet-content .owl-nav {
  position: absolute;
  inset: -65px 25px auto auto;
}
#hizmetlerimiz .hizmet-content .owl-next,
#hizmetlerimiz .hizmet-content .owl-prev {
  background: transparent;
}
#hizmetlerimiz .hizmet-content .owl-next i,
#hizmetlerimiz .hizmet-content .owl-prev i {
  background-color: #333;
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: #fff;
  text-align: center;
  line-height: 40px;
  border-radius: 40px;
  transition: 0.2s ease-in-out;
  display: block;
}
#hizmetlerimiz .hizmet-content .owl-next i:hover,
#hizmetlerimiz .hizmet-content .owl-prev i:hover {
  transform: scale(1.2);
}
#hizmetlerimiz .hizmet-content .hizmet-item {
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  box-shadow: 0px 0 0 1px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  overflow: hidden;
  transition: 0.2s ease-in-out;
}
#hizmetlerimiz .hizmet-content .hizmet-item > * {
  z-index: 1;
}
#hizmetlerimiz .hizmet-content .hizmet-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
}
#hizmetlerimiz .hizmet-content .hizmet-item:hover {
  box-shadow: 0px 3px 25px 0 rgba(0, 0, 0, 0.1);
  transform: scale(1.02);
}
#hizmetlerimiz .hizmet-content .hizmet-item img {
  width: 50px;
}
#hizmetlerimiz .hizmet-content .hizmet-item h4 {
  font-size: 16px;
  color: #fff;
}

#about {
  position: relative;
  background-size: 50% 100%/cover;
  min-height: 500px;
  padding: 40px 20px;
  border-radius: 40px;
  margin-bottom: 25px;
}
#about .container {
  position: relative;
  height: 100%;
  padding-inline: 0;
  margin-inline: auto;
  z-index: 1;
}
#about .container .about-wall {
  position: relative;
  display: grid;
}
#about .container .about-wall .experience {
  position: absolute;
  inset: auto auto 10% 0;
  background: var(--primary);
  padding: 10px 25px;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
  
}
#about .container .about-wall .experience i {
  font-size: 40px;
}
#about .container .about-wall .experience .f-big {
  font-weight: 600;
}
#about .container .about-wall .bigabout {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-inline: auto;
  border-radius: 0;
  
}
#about .container .about-wall .smallabout {
  position: absolute;
  width: 40%;
  inset: 10% 0 auto auto;
  border-radius: 10px;
  border: 4px solid #fff;
  box-shadow: 2px 2px 10x 0 rgba(0, 0, 0, 0.15);
}
#about .container .about-content {
  height: 100%;
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #333;
  padding: 25px 50px;
}
#about .container h2 {
  font-size: 25px;
  margin-bottom: 30px;
}
#about .container p, #about .container ul {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 30px;
}
.gokurumsal {
  background: rgb(186, 22, 23);
  padding: 12px 40px;
  border-radius: 5px;
  font-weight: 500;
  color: #fff;
  margin-top: 30px;
  transition: 0.2s ease-in-out;
  text-decoration: none;
}
.gokurumsal:hover {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary);
}

#blog {
  border-radius: 40px;
  padding: 25px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-block: 25px;
}
#blog .blog-list .owl-dots {
  display: block;
}
#blog .blog-list .owl-dots {
  margin-block: -15px 15px;
}
#blog .blog-list .owl-dots .owl-dot span {
  margin-top: 20px;
  width: 5px;
  height: 5px;
}
#blog .blog-list .owl-nav {
  position: absolute;
  top: 42.5%;
  left: -30px;
  width: calc(100% + 60px);
  height: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}
#blog .blog-list .owl-next, #blog .blog-list .owl-prev {
  background: transparent;
}
#blog .blog-list .owl-next span, #blog .blog-list .owl-prev span {
  background-color: #222;
  width: 40px;
  height: 40px;
  font-size: 30px;
  color: #fff;
  text-align: center;
  line-height: 35px;
  border-radius: 40px;
  transition: 0.2s ease-in-out;
  display: block;
}
#blog .blog-list .owl-next i:hover, #blog .blog-list .owl-prev i:hover {
  transform: scale(1.2);
}
#blog h2 {
  background: var(--primary);
  width: auto;
  font-size: 20px;
  text-align: left;
  color: #fff;
  padding: 10px 20px;
  border-radius: 0 10px 10px;
}
#blog .explain {
  background: #222;
  padding: 5px;
  border-radius: 5px 5px 5px 0;
  text-align: left;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  padding-inline: 20px;
  margin: 0;
}
#blog .owl-item {
  padding-inline: 1px;
}
#blog .blog-item {
  text-decoration: none;
  margin-block: 30px 20px;
  box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease-in-out;
  display: block;
  border-radius: 0;
  overflow: hidden;
}
#blog .blog-item:hover {
  box-shadow: 3px 3px 20px 0 rgba(0, 0, 0, 0.25);
}
#blog .blog-item img {
  max-width: 100%;
  width: 100%;
  height: 300px;
  margin-inline: auto;
  object-fit: cover;
}
#blog .blog-item .blog-content {
  position: absolute;
  inset: auto 0 20px 0;
  background: linear-gradient(0deg, rgba(0,0,0,.75), rgba(0,0,0,.5), transparent);
  padding: 40px 20px 20px;
  text-align: center;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#blog .blog-item .blog-category {
  background: rgb(250,250,250);
  color: #ddd;
  font-size: 14px;
  border-radius: 5px;
  padding: 5px 10px;
}
#blog .blog-item h5 {
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  color: #eee;
  margin-block: 10px;
}
#blog .blog-item p {
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  color: #ddd;
  text-align: left;
}
#blog .blog-item .more {
  color: #777;
  margin-left: auto;
}
#blog .blog-item a {
  font-size: 15px;
  text-decoration: none;
}
#blog .go-all {
  background: #ddd;
  color: #333;
  margin-inline: auto;
  padding: 10px 30px;
  text-decoration: none;
  display: inline-block;
}
#blog .go-all:hover {
  background: #ccc;
}

#products {
  padding: 25px;
  border-radius: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  margin-block: 25px;
}
#products .liner {
  background: rgba(0, 0, 0, 0.1);
  height: 1px;
  opacity: 1;
  border: 0;
  margin-inline: 10px;
}
#products h3 {
  width: auto;
  font-size: 35px;
  font-weight: bold;
  text-align: left;
  color: #000000;
  border-bottom: 1px solid grey;
  padding: 10px 20px;
  margin: 0;
}
#products .explain {
  padding: 5px;
  border-radius: 0 5px 5px 5px;
  text-align: left;
  font-size: 15px;
  font-weight: 400;
  color: #222;
  padding: 5px 20px;
  margin: 0;
}
#products .nav-pills .owl-nav {
  width: 100%;
  height: 0;
  z-index: 1;
}
#products .nav-pills .owl-nav > button {
  position: absolute;
  width: 60px;
  height: 45px;
  font-size: 22px;
  color: #333;
  margin: 0;
}
#products .nav-pills .owl-nav .owl-prev {
  inset: 0 auto 0 0;
  background: linear-gradient(90deg, #fff 60%, transparent 100%);
  text-align: left;
  padding-left: 10px !important;
}
#products .nav-pills .owl-nav .owl-next {
  inset: 0 0 0 auto;
  background: linear-gradient(-90deg, #fff 60%, transparent 100%);
  text-align: right;
  padding-right: 10px !important;
}
#products .nav-pills .owl-nav .owl-prev.disabled, #products .nav-pills .owl-nav .owl-next.disabled {
  opacity: 0;
  visibility: hidden;
}
#products .nav-pills {
  min-width: 275px;
  height: 100%;
}
#products .nav-pills button.nav-link, #products .nav-pills a.nav-link {
  border-radius: 0;
  color: #333;
  text-align: left;
  display: flex;
  align-items: center;
  border: 1px solid #aaa;
  font-weight: 400;
  font-size: 15px;
  gap: 10px;
  border-radius: 10px;
  padding: 10px 15px
}
#products .nav-pills button.nav-link.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
#products .tab-content {
  flex-grow: 1;
}
#products .product-list {
  display: flex;
  flex-wrap: wrap;
}
#products .product-item {
  background: #fff;
  max-width: 500px;
  height: 100%;
  border-radius: 0;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  flex: 1 1 250px;
  gap: 20px;
  padding: 20px;
}
#products .product-item img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid #d1d1d1;
  margin-inline: auto;
  margin-inline: auto;
  object-fit: contain;
}
#products .product-item .product-content {
  text-align: center;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#products .product-item .product-category {
  color: #999;
  font-size: 14px;
  border-radius: 5px;
}
#products .product-item .h5 {
  background-color: unset;
  color: unset;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  margin-block: 10px;
  line-clamp: 3;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
}
#products .product-item p {
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  color: #555;
  text-align: left;
}
#products .product-item a {
  font-size: 15px;
  text-decoration: none;
}
#products .go-all {
  background: rgba(0, 0, 0, 0.05);
  color: #222;
  font-size: 15px;
  font-weight: 400;
  padding: 13px 30px;
  margin-inline: 10px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
}
#products .go-all:hover {
  background: #ccc;
}

#referans {
  padding: 25px 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  /* align-items: flex-start; */
  border-radius: 0;
}
#referans h3 {
  background: var(--primary);
  width: auto;
  font-size: 20px;
  text-align: left;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px 10px 10px 0;
  margin: 0 0 0 20px
}
#referans .explain {
  text-align: left;
  font-size: 15px;
  font-weight: 400;
  color: #333;
  padding-inline: 30px 20px;
}
#referans .referans-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
#referans .referans-list > * {
  display: grid;
  place-items: center;
}
#referans .referans-list .owl-item {
  display: flex;
  justify-content: center;
}
#referans .referans-list .owl-nav {
  display: none;
}
#referans .referans-list .referanslogo {
  width: auto;
  height: 75px;
  margin-inline: auto;
}

#kurumsalbanner {
  background: var(--primary) url("../img/service.jpg") center center/cover;
  width: 100%;
  height: 300px;
  color: #fff;
  margin-top: 40px;
  border-radius: 0;
}
#kurumsalbanner h1 {
  font-size: 30px;
  font-weight: 600;
}
#kurumsalbanner nav {
  font-size: 15px;
  font-weight: 400;
}
#kurumsalbanner nav a {
  color: #fff;
  text-decoration: none;
}
#kurumsalbanner .breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}

#kurumsal {
  padding: 50px 0;
}
#kurumsal h1 {
  position: relative;
  width: auto;
  font-size: 20px;
  font-weight: 500;
  color: #444;
  padding-bottom: 20px;
  margin-bottom: 10px;
}
#kurumsal h1::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  background: rgba(0, 0, 0, 0.75);
  width: 50px;
  height: 3px;
}
#kurumsal p {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 35px;
}
#kurumsal ul {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 35px;
  padding-block: 20px;
}
#kurumsal.vizyon, #kurumsal.misyon {
  background: #222;
  padding: 50px;
  border-radius: 0;
}
#kurumsal.vizyon h1, #kurumsal.misyon h1{
  color: #222
}
#kurumsal.vizyon h1::before, #kurumsal.misyon h1::before{
  background: #eee
}
#kurumsal.vizyon p, #kurumsal.misyon p{
  color: #333
}
#kurumsal .konular {
  gap: 50px;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
#kurumsal .konular .vizyon, #kurumsal .konular .misyon {
  display: flex;
  justify-content: flex-start;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
}
#kurumsal .konular .vizyon .izyon-content, #kurumsal .konular .misyon .izyon-content {
  background: rgba(245,245,245);
  padding: 50px;
}
#kurumsal .aboutswall {
  width: 300px;
  height: 100%;
  object-fit: cover;
}
#kurumsal .wall-wrap {
  background: #222;
  display: grid;
  place-items: center;
}
#kurumsal .tse {
  height: 50px;
}

#iletisim {
  padding-block: 50px;
}
#iletisim .container {
  margin-inline: auto;
  padding-inline: 20px;
}
#iletisim h1 {
  font-size: 28px;
  font-weight: 500;
}
#iletisim p.explain {
  font-size: 16px;
  font-weight: 400;
  color: #555;
}
#iletisim .iletisim-item {
  border: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px
}
#iletisim .iletisim-item i {
  font-size: 20px;
}
#iletisim .iletisim-item b {
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  margin: 0;
}
#iletisim .iletisim-item p {
  font-size: 15px;
  font-weight: 400;
  text-align: left;
  margin: 0;
}
#iletisim .iletisim-item a {
  background: rgb(245, 245, 245);
  width: 100%;
  text-decoration: none;
  color: #333;
  font-size: 15px;
  padding: 10px 30px;
  justify-self: flex-end;
  display: inline-block;
}
#iletisim .iletisim-item a:hover {
  background: rgb(235, 235, 235);
}
#iletisim table {
  margin: 20px 0;
}
#iletisim table tr > * {
  padding: 10px;
}
#iletisim table th {
  padding: 20px 10px;
  background: rgb(245, 245, 245);
}
#iletisim table img {
  width: auto;
  height: 50px;
  aspect-ratio: 1;
  object-fit: cover;
}

#urunbanner {
  background: url("../img/bannerslider4.jpg") center center/cover;
  background-blend-mode: multiply;
  width: 100%;
  height: 300px;
}

#urunliste {
  padding: 25px 0;
}
#urunliste .row {
  display: flex;
  flex-wrap: wrap;
}
#urunliste .kategoriler {
  background: #fff;
  border: 10px;
  border-radius: 10px;
  overflow: hidden;
}
#urunliste .kategoriler:not(:first-child) {
  margin-top: 25px;
}
#urunliste .kategoriler h3 {
  font-size: 18px;
  color: #222;
  line-height: 50px;
  padding: 5px 10px;
  margin: 0;
}
#urunliste h2 {
  font-size: 18px;
  color: #222;
  line-height: 20px;
  padding: 5px 0;
  margin: 10px 0 0;
}
#urunliste .explain {
  font-size: 14px;
  font-weight: 400;
  color: #555;
}
#urunliste ul {
  padding-left: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#urunliste ul li {
  cursor: pointer;
}
#urunliste ul li:hover {
  color: #000;
}
#urunliste ul li:focus {
  background: #333;
  color: #fff;
  box-shadow: 0 0 0 0;
}
#urunliste .hashkategori {
  background: rgb(245, 245, 245);
  width: 100%;
  padding: 10px 15px;
  font-size: 15px;
  font-weight: 400;
  color: #555;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
}
#urunliste .hashkategori span {
  width: 25px;
  height: 25px;
  background: #555;
  font-size: 12px;
  color: #fff;
  border-radius: 50px;
  display: grid;
  place-items: center;
}
#urunliste .point {
  display: flex;
  justify-content: space-between;
}
#urunliste #rangepoint {
  -webkit-appearance: none;
  width: 100%;
  height: 5px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
}
#urunliste #rangepoint::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 25px;
  background: var(--primary);
  border-radius: 10px;
  cursor: pointer;
}
#urunliste #rangepoint::-moz-range-thumb {
  width: 10px;
  height: 25px;
  background: var(--primary);
  border-radius: 10px;
  cursor: pointer;
}
#urunliste .mensei {
  display: grid;
}
#urunliste .searchbar {
  background: rgb(245, 245, 245);
  max-width: 310px;
  width: 100%;
  height: 45px;
  display: flex;
  border-radius: 10px;
}
#urunliste .searchbar input {
  background: transparent;
  width: calc(100% - 45px);
  height: 45px;
  padding: 0 10px;
  flex: 1 1;
}
#urunliste .searchbar button {
  background: transparent;
  width: 45px;
  height: 45px;
  flex: 0 1 45px;
}
#urunliste .filter-item {
  margin-block: 0 20px;
}
#urunliste .product-item {
  border-radius: 20px;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.15);
  transition: 0.3s ease-in-out;
  text-decoration: none;
  overflow: hidden;
  display: block;
}
#urunliste .product-item:hover {
  box-shadow: 3px 3px 20px 0 rgba(0, 0, 0, 0.15);
}
#urunliste .product-item img {
  width: 80%;
  height: 300px;
  border-radius: 0;
  object-fit: contain;
  padding: 20px;
  margin-inline: 10%;
}
#urunliste .product-item .product-content {
  background: #fff;
  padding: 25px 25px;
  border-radius: 0;
  text-align: center;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#urunliste .product-item .product-category {
  color: #999;
  font-size: 14px;
  border-radius: 5px;
}
#urunliste .product-item h5 {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  margin-block: 10px;
}
#urunliste .product-item p {
  width: 100%;
  font-size: 15px;
  text-align: center;
  font-weight: 400;
  color: #555;
  text-align: left;
}
#urunliste .product-item a {
  font-size: 15px;
  text-decoration: none;
}

#blogliste {
  padding: 25px 0;
}
#blogliste .row {
  display: flex;
  flex-wrap: wrap;
}
#blogliste aside.filter {
  position: sticky;
  top: 110px;
}
#blogliste .kategoriler {
  background: #fff;
  border: 10px;
  border-radius: 10px;
  overflow: hidden;
}
#blogliste .kategoriler h3 {
  font-size: 20px;
  color: #222;
  line-height: 50px;
  padding: 5px 10px;
  margin: 0;
}
#blogliste .kategoriler h4 {
  font-size: 18px;
  color: #222;
  line-height: 50px;
  padding: 5px 10px;
  margin: 0;
}
#blogliste .kategoriler h4:not(:first-child) {
  margin-top: 25px;
}
#blogliste .kategoriler .info {
  font-size: 15px;
  font-weight: 400;
  color: #777;
  line-height: 25px;
  margin: 0;
}
#blogliste .kategoriler .profil {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  object-fit: cover;
}
#blogliste .kategoriler .f-big {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}
#blogliste .kategoriler .f-small {
  font-size: 15px;
  font-weight: 400;
  color: #888;
  margin: 0;
}
#blogliste h2 {
  font-size: 18px;
  color: #222;
  line-height: 20px;
  padding: 5px 0;
  margin: 10px 0 0;
}
#blogliste .explain {
  font-size: 14px;
  font-weight: 400;
  color: #555;
}
#blogliste ul {
  padding-left: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#blogliste ul li {
  cursor: pointer;
}
#blogliste ul li:hover {
  color: #000;
}
#blogliste ul li:focus {
  background: #333;
  color: #fff;
  box-shadow: 0 0 0 0;
}
#blogliste .blogkategori {
  background: rgb(245, 245, 245);
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 400;
  color: #555;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-item: center;
}
#blogliste .blogkategori span {
  width: 25px;
  height: 25px;
  background: #555;
  font-size: 12px;
  color: #fff;
  border-radius: 50px;
  display: grid;
  place-items: center;
}
#blogliste .searchbar {
  background: rgb(245, 245, 245);
  max-width: 310px;
  width: 100%;
  height: 45px;
  display: flex;
  border-radius: 10px;
}
#blogliste .searchbar input {
  background: transparent;
  width: calc(100% - 45px);
  height: 45px;
  padding: 0 10px;
  flex: 1 1;
}
#blogliste .searchbar button {
  background: transparent;
  width: 45px;
  height: 45px;
  flex: 0 1 45px;
}
#blogliste .blog-item {
  border-radius: 0;
  text-decoration: none;
  box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease-in-out;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
#blogliste .blog-item:hover {
  box-shadow: 3px 3px 20px 0 rgba(0, 0, 0, 0.25);
}
#blogliste .blog-item img {
  max-width: 100%;
  width: 100%;
  height: 300px;
  margin-inline: auto;
  object-fit: cover;
}
#blogliste .blog-item .blog-content {
  background: #fff;
  padding: 20px;
  text-align: center;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#blogliste .blog-item .blog-category {
  background: rgb(245, 245, 245);
  color: #555;
  font-size: 14px;
  border-radius: 5px;
  padding: 5px 10px;
}
#blogliste .blog-item h5 {
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  margin-block: 10px;
}
#blogliste .blog-item p {
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  color: #555;
  text-align: left;
}
#blogliste .blog-item .more {
  color: #777;
  margin-left: auto;
}
#blogliste .blog-item a {
  font-size: 15px;
  text-decoration: none;
}
#blogliste .makaleresmi {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
}
#blogliste .makale {
  margin-top: 50px;
}
#blogliste .makale p {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}
#blogliste .yazar li {
  background: rgb(245, 245, 245);
  padding: 10px;
  border-radius: 10px;
}
#blogliste .yazar li .f-big {
  font-size: 14px;
}

#urundetay {
  padding: 50px 0;
}
#urundetay .urunslide {
  margin-bottom: 25px;
}
#urundetay .urunslide .owl-nav {
  position: absolute;
  top: calc(50% - 20px);
  left: 0;
  width: 100%;
  height: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}
#urundetay .urunslide .owl-next,
#urundetay .urunslide .owl-prev {
  background: transparent;
}
#urundetay .urunslide .owl-next i,
#urundetay .urunslide .owl-prev i {
  background-color: #fff;
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: #000;
  text-align: center;
  line-height: 40px;
  border-radius: 40px;
  transition: 0.2s ease-in-out;
  display: block;
}
#urundetay .urunslide .owl-next i:hover,
#urundetay .urunslide .owl-prev i:hover {
  transform: scale(1.2);
}
#urundetay .urunslide .owl-dots {
  transform: translateY(30px);
  margin: -25px 0 0 0;
  display: block;
}
#urundetay .urunslide .owl-dots .owl-dot span {
  background: #aaa;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  margin-block: 0;
  opacity: 0.5;
  transition: 0.2s;
  margin-top: 20px;
  width: 50px;
  height: 3px;
}
#urundetay .urunslide .owl-dots .owl-dot.active span {
  background: #333;
}
#urundetay .urun-item {
  width: 100%;
  max-height: 500px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 20px;
  object-fit: contain;
}
#urundetay .uruninfo .category {
  font-size: 15px;
  font-weight: 400;
  color: #777;
}
#urundetay .uruninfo .name {
  font-size: 25px;
  font-weight: 500;
  color: #333;
}
#urundetay .uruninfo .description, #urundetay .uruninfo ul {
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  color: #555;
}
#urundetay .uruninfo .detays article {
  display: flex;
  font-size: 15px;
  gap: 10px;
  line-height: 30px;
}
#urundetay .uruninfo .detays .sor {
  font-weight: 500;
  color: #222;
}
#urundetay .uruninfo .detays .cevap {
  font-weight: 400;
  color: #444;
  margin-left: 10px;
}
#urundetay .uruninfo .iletbtn .btn-danger {
  background: var(--primary);
  border: 0;
  border-radius: 10px;
  display: grid;
  place-items: center;
}
#urundetay .uruninfo .iletbtn button {
  min-height: 45px;
  border-radius: 0;
  padding-inline: 20px;
  border-radius: 10px;
}

#teklifpop {
  background: rgba(0, 0, 0, 0.9);
  position: fixed;
  inset: 0;
  z-index: 11;
  display: grid;
  place-items: center;
}
#teklifpop .form-label, #teklifpop .form-check-label {
  font-size: 15px;
  font-weight: 400;
  color: #000;
}
#teklifpop .input-group {
  background: rgb(255, 255, 255);
  border: 0;
  border-radius: 5px;
}
#teklifpop .input-group > * {
  background: transparent;
  border-radius: 0;
  border: 0;
  color: #333;
}
#teklifpop .input-group .inputGroupPrepend {
  width: 50px;
  height: 50px;
  border-right: 1px solid #ddd;
  display: grid;
  place-items: center;
}
#teklifpop select {
  background: rgb(255, 255, 255);
  border: 0;
  color: #333;
  height: 50px;
  border-radius: 5px;
}
#teklifpop select option {
  color: #000;
}
#teklifpop textarea {
  background: rgb(255, 255, 255);
  min-height: 100px;
  max-height: 200px;
  border: 0;
  color: #000;
  height: 100px;
  border-radius: 5px;
}
#teklifpop .btn-submit {
  background: var(--primary);
  color: #fff;
  padding: 15px 40px;
  border-radius: 5px;
  border: 0;
}

#hizmetbanner {
  width: 100%;
  color: #000;
  border-radius: 0;
  margin-top: 40px;
  border-radius: 0;
}

#hizmetbanner:not(.active) {
  display: none;
}

#hizmetbanner span {
  font-size: 30px;
  font-weight: 600;
}
#hizmetbanner nav {
  font-size: 15px;
  font-weight: 400;
}
#hizmetbanner nav a {
  color: #000;
  text-decoration: none;
}
#hizmetbanner .breadcrumb-item + .breadcrumb-item::before {
  color: #000;
}

#armatur {
  padding: 50px 0;
}
#armatur h1 {
  position: relative;
  width: auto;
  font-size: 20px;
  font-weight: 500;
  color: #111;
  padding-bottom: 20px;
  margin-bottom: 10px;
}
#armatur h1::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  background: rgba(0, 0, 0, 0.9);
  width: 50px;
  height: 3px;
}
#armatur p {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  color: #555;
  line-height: 35px;
}
#armatur ul, #armatur ol {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 35px;
  padding-block: 20px;
}
#armatur .yasal {
  background: rgb(213, 0, 0);
  color: #fff;
  padding: 30px;
  border-radius: 10px;
}
#armatur .yasal i {
  font-size: 50px;
}
#armatur .yasal p {
  color: #eee;
}
#armatur .yasal p b {
  color: #fff;
}
#armatur .aboutswall {
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: 0;
}
#armatur .wallwrap {
  display: grid;
  place-items: center;
}
#armatur .tse {
  height: 50px;
}
#armatur .product-wrap .product-item {
  background: #fff;
  max-width: 500px;
  border-radius: 0;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 1 1 250px;
  gap: 20px;
  padding: 20px;
  margin: 10px 0 10px 1px;
}
#armatur .product-wrap .product-item:hover {
  box-shadow: 3px 3px 20px 0 rgba(0, 0, 0, 0.25);
}
#armatur .product-wrap .product-item img {
  max-width: 100%;
  width: auto;
  height: 120px;
  padding-top: 30px;
  margin-bottom: 20px;
  object-fit: contain;
}
#armatur .product-wrap .product-item .product-content {
  text-align: center;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#armatur .product-wrap .product-item .product-category {
  color: #999;
  font-size: 14px;
  border-radius: 5px;
}
#armatur .product-wrap .product-item h5 {
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  margin-block: 10px;
}
#armatur .product-wrap .product-item p {
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  color: #555;
  text-align: left;
}
#armatur .product-wrap .product-item a {
  font-size: 15px;
  text-decoration: none;
}

#cookie-wrap {
  padding: 50px 0;
}
#cookie-wrap h1 {
  position: relative;
  width: auto;
  font-size: 20px;
  font-weight: 500;
  color: #111;
  padding-bottom: 20px;
  margin-bottom: 10px;
}
#cookie-wrap h1::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  background: rgba(0, 0, 0, 0.9);
  width: 50px;
  height: 3px;
}
#cookie-wrap p {
  font-size: 16px;
  font-weight: 400;
  color: #555;
  line-height: 35px;
}
#cookie-wrap p.lead {
  font-size: 20px;
  margin-top: 100px;
}

footer {
  background: #000;
  padding: 50px;
}
footer .container {
  margin-inline: auto;
  padding-inline: 20px;
  row-gap: 50px;
}
footer .container .footer-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 25px;
}
footer .container .logo {
  height: 50px;
  filter: contrast(0) brightness(5);
}
footer .container p {
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  color: #eee;
}
footer .container p.lead {
  width: auto;
  font-size: 16px;
  font-weight: bold;
  border-bottom: 3px solid rgb(186, 22, 23);
  padding-bottom: 15px;
  margin-bottom: 5px;
}
footer .container a {
  color: #fff;
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 15px;
  text-decoration: none;
}
footer .container a .bi {
  margin-right: 10px;
}
footer .container .tse {
  height: 50px;
}
footer .container .social-link {
  background: transparent;
  width: 40px;
  height: 40px;
  color: var(--primary);
  border-radius: 40px;
  box-shadow: 0 0 0 1px var(--primary);
  display: grid;
  place-items: center;
}
footer .container .social-link .bi {
  margin: 0;
}
footer .container .social-link:hover {
  background: var(--primary);
  color: #fff;
}
@media (max-width: 992px) {
  header #hamburger {
    display: grid;
  }
  header .logo {
    height: 40px;
  }
  header .nav {
    display: none;
  }
  .nav-drill {
    display: flex;
  }
  #newFooter {
    padding-inline: 15px;
  }
  #newFooter #emailWrapper {
    max-width: 240px;
  }
  .nav-is-toggled header #hamburger {
    color: #111 !important;
  }
  .nav-is-toggled header .contact .bi {
    color: var(--primary);
  }
  .nav-drill {
    display: flex;
  }
}
#bizeulasin {
  background: var(--primary) url("../img/vizyon2.jpg") center center/cover;
  background-blend-mode: multiply;
  padding: 0 0 50px;
  text-align: center;
  overflow-x: hidden;
  padding: 50px 0;
}
#bizeulasin h2 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin-block: 10px 20px;
}
#bizeulasin p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin: 0;
}
#bizeulasin .content-iletisim {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
#bizeulasin a {
  background: #111;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  padding: 15px 30px;
  border-radius: 10px;
  display: flex;
  gap: 20px;
  text-decoration: none;
}
#bizeulasin .goform {
  background: #fff;
  font-size: 16px;
  font-weight: 600;
  color: #111;
  padding: 15px 30px;
  border-radius: 10px;
  display: flex;
  gap: 20px;
  text-decoration: none;
}

#slogan .container {
  padding: 50px 20px;
  margin-inline: auto;
  align-items: center;
  color: #333;
}
#slogan .container h2 {
  --fontSizeH2: 30px;
  font-size: var(--fontSizeH2);
  font-weight: 300;
}
#slogan .container h2 span {
  font-size: calc(var(--fontSizeH2) + 5px);
}
#slogan .container p {
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
}
#slogan .container a {
  font-size: 16px;
  color: #333;
  text-decoration: none;
  display: flex;
  gap: 20px;
  transition: 0.2s ease-in-out;
}
#slogan .container a:hover {
  padding-left: 15px;
}

@keyframes cookie {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
#cookie {
  position: fixed;
  inset: auto 0 0;
  background: rgba(0, 0, 0, 0.85);
  width: 100%;
  z-index: 11;
  font-weight: 400;
  font-size: 15px;
  color: #fff;
  padding: 25px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  animation: cookie 1s linear;
}
#cookie .cook-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
#cookie .cook-wrap .infocook {
  color: #fff;
}
#cookie .cook-wrap .acceptcook {
  background: var(--primary);
  color: #fff;
  border-radius: 0;
  padding: 10px 20px;
}

@media (max-width: 768px) {
  header .search-wrap {
    display: none;
  }
  header #search-bar {
    display: grid;
  }
  footer .container {
    gap: 50px;
  }
  #slogan .container {
    row-gap: 50px;
  }
  #hizmetlerimiz {
    margin-top: 25px;
    padding-block: 25px;
    margin-bottom: 25px;
  }
  #hizmetlerimiz .container {
    padding-block: 0px;
  }
  #hizmetlerimiz .container .hizmet-item {
    height: 300px;
    padding: 30px;
  }
  #about .container {
    padding: 20px;
    gap: 30px;
  }
  #about .container .about-content {
    padding: 0;
  }
  #about .container .about-content h2 {
    font-size: 25px;
  }
  #about .container .about-wall .experience {
    padding: 10px 20px;
  }
  #about .container .about-wall .experience i {
    font-size: 30px;
  }
  #about .container .about-wall .experience .f-big {
    font-weight: 600;
  }
  #about .container .about-wall .experience .f-small {
    font-weight: 400;
  }
  #products {
    margin-top: 0;
  }
  #products .nav-pills {
    width: 100%;
  }
  iframe {
    height: auto;
    aspect-ratio: 1;
  }
  footer .container .footer-item {
    padding: 0;
  }
  #blog .blog-list .owl-nav {
    width: 100%;
    left: 0;
  }
  #kurumsal .aboutswall {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  #kurumsal .konular .vizyon .izyon-content, #kurumsal .konular .misyon .izyon-content {
    padding: 20px;
  }
}
@media (max-width: 576px) {
  #hizmetlerimiz,
  #products,
  #about,
  #referans,
  #blog {
    width: calc(100% - 40px);
    margin-inline: 20px;
    border-radius: 10px;
    padding-inline: 0;
  }

  #hizmetlerimiz .container,
  #products .container,
  #about .container,
  #referans .container,
  #blog .container{
    padding-inline: 0
  }

  #hizmetbanner, #kurumsalbanner {
    width: calc(100% - 20px);
    margin: 15px 10px 0;
  }
  #kurumsal {
    padding-top: 25px;
  }
  #hizmetlerimiz .hizmet-content .owl-nav {
    right: 0
  }
  #banner {
    padding: 0 10px;
  }
  #banner .owl-stage-outer {
    width: calc(100vw - 20px);
    margin-inline: 0;
  }
  #banner .owl-stage {
    margin-inline: auto;
  }
  #banner .owl-item {
    margin-block: 10px 25px;
  }
  #banner .banner-item {
    width: calc(100vw - 20px);
    height: 130px;
    aspect-ratio: 1;
    margin-inline: 0;
    box-shadow: 0 0 0 0;
  }
  #banner .owl-nav {
    display: none;
  }
}

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