/* Responsive Css */

/* 1749px ve altı ekranlar için */
@media only screen and (max-width: 1749px) {
  /* Özel stiller eklenebilir */
}

/* 1499px ve altı ekranlar için */
@media only screen and (max-width: 1499px) {
  /* Özel stiller eklenebilir */
}

/* 1399px ve altı ekranlar için */
@media only screen and (max-width: 1399px) {
  /* Özel stiller eklenebilir */
}

/* 1299px ve altı ekranlar için */
@media only screen and (max-width: 1299px) {
  /* Özel stiller eklenebilir */
}

/* 1200px ve altı ekranlar için */
@media only screen and (max-width: 1200px) {
  .main-menu,
  .sticky-header,
  .main-header.style-one .outer-container:before,
  .main-header.header-style-two .header-top {
    display: none !important;
  }

  .menu-area .mobile-nav-toggler {
    display: block;
    padding: 10px;
  }

  .megamenu ul li:first-child {
    display: none;
  }
}

/* 991px ve altı ekranlar için */
@media only screen and (max-width: 991px) {
  .sec-title h2 br {
    display: none;
  }

  .main-footer .footer-widget {
    margin-bottom: 30px !important;
  }

  .main-footer .widget-section {
    padding-bottom: 70px;
  }

  .footer-bottom .bottom-inner {
    display: block;
    text-align: center;
  }

  .footer-bottom .bottom-inner .footer-nav li {
    float: none;
  }
}

/* 768px ve üstü ekranlar için */
@media only screen and (min-width: 768px) {
  .main-menu .navigation > li > ul,
  .main-menu .navigation > li > ul > li > ul,
  .main-menu .navigation > li > .megamenu {
    display: block !important;
    visibility: hidden;
    opacity: 0;
  }
}

/* 767px ve altı ekranlar için */
@media only screen and (max-width: 767px) {
  .sec-title h2 {
    font-size: 36px;
    line-height: 46px;
  }

  .sec-pad {
    padding: 64px 0 40px 0;
  }

  .sec-pad-2 {
    padding: 70px 0;
  }
  
  .logo img {
    max-width: 180px;
    height: auto;
  }
}

/* 599px ve altı ekranlar için */
@media only screen and (max-width: 599px) {
  .logo img {
    max-width: 160px;
  }
}

/* 499px ve altı ekranlar için */
@media only screen and (max-width: 499px) {
  .mobile-menu {
    width: 100%;
  }
  
  .logo img {
    max-width: 140px;
  }
}
