*
{
  padding: 0;
  margin: 0;
}
html {
  scroll-behavior: smooth;
}
.lato-thin {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.lato-thin-italic {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}

body {
  background: #fff;
  color: #444;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h6 {
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}
#btn
{
  margin-left: 83.6%;
  margin-top: 15px;
  cursor: pointer;
  font-weight: bold;
  color: white;
  background-color:  #45adb3;
  padding: 20px 14px;
  border: none;
  box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
}
#btn:hover
{
  background-color: #026fdc;
  color: #f7f7f7;
  transition: 1s;
}

.back-to-top {
  position: fixed;
  display: none;
  background: #45adb3;
  color: #fff;
  padding: 6px 12px 9px 12px;
  font-size: 16px;
  border-radius: 2px;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
}

.back-to-top:focus {
  background: #000;
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: #000;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  height: 101px;
  transition: all 0.5s;
  z-index: 997;
  background: #fff;
  box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
}

#header #logo
{
  padding-top: 10px;
  width: 9%;
}

#header #logo img {
  width: 100%;
}

.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  padding: 30px 0;
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */

.sf-arrows .sf-with-ul {
  padding-right: 22px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 8px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */

#nav-menu-container {
  float: right;
  margin: 0;
}

/* Nav Meu Styling */

.nav-menu a {
  padding: 10px 8px;
  text-decoration: none;
  display: inline-block;
  color: #555;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 14px;
  outline: none;
}

.nav-menu li:hover > a,
.nav-menu .menu-active > a {
  color: #45adb3;
}

.nav-menu > li {
  margin-left: 10px;
}

.nav-menu ul {
  margin: 4px 0 0 0;
  padding: 10px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: #fff;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li:hover > a {
  color: #45adb3;
}

.nav-menu ul ul {
  margin: 0;
}

.nav-menu a::after
{
  content: '';
  position: absolute;
  top: 60%;
  left: 0px;
  bottom: 0px;
  height: 1px;  
  width: 0;
  background-color: #000;
  transition: width 0.4s ease;
}
.nav-menu a:hover::after {
  width: 100%;
}
#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 20px 20px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #555;
}
/* Mobile Nav Toggle */

#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(52, 59, 64, 0.9);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 16px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}

#mobile-nav ul li a:hover {
  color: #fff;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #45adb3;
}

#mobile-nav ul .menu-item-active {
  color: #45adb3;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(52, 59, 64, 0.9);
  display: none;
}


/* Mobile Nav body classes */

body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}



/* Urunler */

#urunler
{
  background-color: #f5f5f5;
  padding: 20px 14px;
}
#urunler-style
{
  display: flex;
  flex-direction: row;
  gap: 20px;
}
#urunler-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #dee2e6;
  background-color: white;
  width: 100%;
  height: 650px;
  padding: 10px 10px 20px 10px;
}

#urunler-container-img
{
  width: 100%;
  height: 400px;
}
#urunler-container-img img
{
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
} 
#urunler-btn
{
  bottom: 0;
  cursor: pointer;
  font-weight: bold;
  color: white;
  background-color:  #45adb3;
  border: none;
  width: 100%;
  height: 50px;
}
#urunler-btn:hover
{
  opacity: 0.8;
  transition: 1s;
}
/*Urunler */

#referanslar {
  padding: 30px 0;
}

#referanslar img {
  max-width: 100%;
  opacity: 0.5;
  transition: 0.3s;
  padding: 20px 10px;
}

#referanslar img:hover {
  opacity: 1;
}

#referanslar .owl-nav,
#referanslar .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#referanslar .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#referanslar .owl-dot.active {
  background-color: #45adb3;
}
/* İletişim */

#iletisim
{
  display: flex;
  flex: column;
  width: 100%;
  padding: 20px 14px;
}
.iframe-location
{
  width: 50%;
  padding-right: 10px;
}
iframe
{
  width: 100%;
}
.frames
{
  display: flex;
  flex-direction: row;
}
#iletisim-btn
{
  cursor: pointer;
  font-weight: bold;
  color: white;
  background-color:  #45adb3;
  padding: 20px 14px;
  border: none;
  box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
}
#iletisim-btn:hover
{
  background-color: #026fdc;
  color: black;
  transition: 0.5s;
} 

/* İletişim */
/*Footer */

#footer
{
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background-color: #fcfcfc;
  display: flex;
  flex: column;
  width: 100%;
  padding: 20px 14px;
}
.footer-bilgi
{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.footer-left, .footer-right
{
  width: 50%;
}
.footer-logo {
  text-align: center;
  width: 100%;
  margin: auto;
}

.footer-logo img {
  width: 8%;
  display: inline-block; 
}
#footer-bottom
{
  padding: 4px 0;
}
.footer-links
{
  color: black;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.footer-links a:hover
{
  opacity: 0.4;
  
  transition: 0.4s;
}
/*Footer */
/*Footer Reverse*/
#footer-reverse
{
  background-color: #f5f5f5;
  padding: 30px 0;
}
.footer-reverse-btn
{
  cursor: pointer;
  font-weight: bold;
  color: white;
  background-color:  #45adb3;
  padding: 10px 14px;
  margin-top: 15px;
  border: none;
  width: 100%;
  box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
}
.footer-reverse-btn:hover
{
  opacity: 0.8;
  transition: 0.4s;
  color: black;
}
/*Footer Reverse*/
/* Hakkımızda */
#hakkimizda
{ 
  padding: 30px 0;
}
#hakkimizda h2
{
  border-bottom: 1px solid rgb(67, 66, 66);
}
.hakkimizda-leftside {
  display: none;
  margin-bottom: 14px;
  padding: 14px 10px;
  text-align: center;
  box-shadow: 0px 1px 1px 1px #ccc;
}

.hakkimizda-leftside li
{
  margin-bottom: 20px;
  list-style-type: none;
  color: #444;
}

/* Hakkımızda */
/* Ürünler Page */
.urunler {
  padding: 30px 0;
}
.urunler a
{
  margin-top: auto; /* Butonu en alta sabitler */
  align-self: center; /* Ortalar */
  width: 100%;
  color: white;
}
.urunler h2 {
  margin-left: 45px;
}

.urunler-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* Divler arası boşluk için */
  
}

.container-style {
  display: flex;
  flex-direction: column; /* Üst üste sıralanma */
  align-items: center; /* İçeriği ortalama */
  margin-left: 45px;
  margin-right: 15px;
  margin-top: 15px;
  border: 1px solid #dee2e6;
  background-color: white;
  width: 400px;
  height: auto; /* Yüksekliği içerik kadar yap */
  padding: 10px;
}

.container-img {
  width: 100%;
  height: 200px;
}

.container-img img {
  margin: auto;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

.container-text {
  margin-top: 10px; /* Yazının resimden sonra biraz boşluk bırakması için */
  text-align: center; /* Metni ortala */
}

#urunler-btn {
  margin-top: auto; /* Butonu en alta sabitler */
  align-self: center; /* Ortalar */
} 
/* Ürünler Page */
/* Media */
/* Genel */
@media (max-width: 768px) {
  #header #logo
  {
    padding: 23px 0;
  }
  #nav-menu-container {
    display: none !important;
  }

  #mobile-nav-toggle {
    padding: 15px 0;
    display: inline !important;
  } 
  #btn {
    margin-left: 0;
    width: 100%;
  }

  #urunler-style {
    flex-direction: column;
    gap: 10px;
  }

  #urunler-container {
    width: 100%;
  }

  .frames {
    flex-direction: column;
  }

  .iframe-location,
  .iframe-bilgi {
    width: 100%;
    padding: 0;
  }

  .footer-bilgi {
    flex-direction: column;
    gap: 20px;
  }

  .footer-logo img {
    width: 20%;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .hakkimizda-leftside
  {
    display: block;
  }
}

@media (max-width: 480px) {
  #urunler-container {
    padding: 10px;
  }

  #iletisim-btn {
    width: 100%;
  }

  .footer-logo img {
    width: 30%;
  }
}
@media (max-width: 425px)
{
  #header #logo
  {
    padding: 14px 0;
    width: 20%;
  }
}
@media (max-width: 375px)
{
  #header #logo
  {
    width: 20%;
  }
}
@media (max-width: 320px)
{
  #header #logo
  {
    width: 25%;
  }
}
@media (max-width: 425px)
{
  #header #logo
  {
    padding: 14px 0;
    width: 20%;
  }
}
@media (max-width: 375px)
{
  #header #logo
  {
    width: 20%;
  }
}
@media (max-width: 320px)
{
  #header #logo
  {
    width: 25%;
  }
} 