/* ==================================================
   Premium Corporate Header
================================================== */

.premium-site-header {
  --premium-dark: #111114;
  --premium-soft-dark: #1d1d1f;
  --premium-red: var(--gt-theme, #075eab);
  --premium-white: #ffffff;
  --premium-muted: #8b8b95;
  --premium-border: rgba(255, 255, 255, 0.14);

  position: relative;
  z-index: 9999;
  width: 100%;
  background:
    radial-gradient(circle at 12% 0%, rgba(7, 94, 171, 0.24), transparent 30%),
    linear-gradient(135deg, #111114 0%, #1b1b1f 48%, #101013 100%);
}

.premium-site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 90%);
  opacity: 0.45;
}

.premium-site-header .container-fluid {
  position: relative;
  z-index: 2;
  padding-left: 54px;
  padding-right: 54px;
}

/* Topline */
.premium-topline {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.premium-topline-inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.premium-topline-left,
.premium-topline-right,
.premium-socials {
  display: flex;
  align-items: center;
}

.premium-topline-left {
  gap: 22px;
  min-width: 0;
}

.premium-topline-left a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
}

.premium-topline-left a i {
  color: var(--premium-red);
  font-size: 13px;
}

.premium-topline-left a:hover {
  color: #ffffff;
}

.premium-topline-right {
  gap: 18px;
}

.premium-topline-right > span {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding-left: 16px;
}

.premium-topline-right > span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  background: var(--premium-red);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 5px rgba(7, 94, 171, 0.16);
}

.premium-socials {
  gap: 7px;
}

.premium-socials a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  font-size: 12px;
}

.premium-socials a:hover {
  background: var(--premium-red);
  border-color: var(--premium-red);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Main */
.premium-header-wrap {
  padding: 16px 0 22px;
}

.premium-header-shell {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 12px 16px 12px 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 26px;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
}

.premium-logo-area {
  display: inline-flex;
  align-items: center;
}

.premium-logo-box {
  position: relative;
  min-width: 215px;
  height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(17, 17, 20, 0.08);
}

.premium-logo-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 5px;
  background: var(--premium-red);
  border-radius: 0 99px 99px 0;
}

.premium-logo-box::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 72px;
  height: 72px;
  background: rgba(7, 94, 171, 0.09);
  border-radius: 50%;
}

.premium-logo-box img {
  position: relative;
  z-index: 2;
  width: 178px;
  max-height: 54px;
  object-fit: contain;
}

/* Nav */
.premium-nav {
  display: flex;
  justify-content: center;
}

.premium-nav ul {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding: 7px;
  background: #f5f5f6;
  border: 1px solid rgba(17, 17, 20, 0.06);
  border-radius: 999px;
}

.premium-nav ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.premium-nav ul li a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  color: #26262b;
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  border-radius: 999px;
  overflow: hidden;
}

.premium-nav ul li a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--premium-red);
  border-radius: inherit;
  transform: scale(0.72);
  opacity: 0;
  transition: all 0.32s ease;
}

.premium-nav ul li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 7px;
  width: 5px;
  height: 5px;
  background: #ffffff;
  border-radius: 50%;
  transform: translateX(-50%) translateY(12px);
  opacity: 0;
  transition: all 0.32s ease;
}

.premium-nav ul li a:hover {
  color: #ffffff;
}

.premium-nav ul li a:hover::before {
  transform: scale(1);
  opacity: 1;
}

.premium-nav ul li a:hover::after {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.premium-nav ul li a {
  z-index: 1;
}

.premium-nav ul li a > * {
  position: relative;
  z-index: 2;
}

/* Bu satır link metninin pseudo arkasında görünmesi için */
.premium-nav ul li a {
  isolation: isolate;
}

.premium-nav ul li a::before,
.premium-nav ul li a::after {
  z-index: -1;
}

/* Actions */
.premium-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.premium-phone {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 7px 16px 7px 7px;
  background: #111114;
  color: #ffffff;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(17, 17, 20, 0.18);
}

.premium-phone:hover {
  background: #202024;
  color: #ffffff;
  transform: translateY(-2px);
}

.premium-phone-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--premium-red);
  color: #ffffff;
  border-radius: 50%;
  font-size: 16px;
  box-shadow: 0 10px 22px rgba(7, 94, 171, 0.32);
}

.premium-phone small,
.premium-phone strong {
  display: block;
  line-height: 1.1;
}

.premium-phone small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 5px;
}

.premium-phone strong {
  color: #ffffff;
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

.premium-quote-btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  color: #ffffff;
  background:
    linear-gradient(135deg, var(--premium-red) 0%, #05457d 100%);
  border-radius: 999px;
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(7, 94, 171, 0.28);
}

.premium-quote-btn:hover {
  color: #ffffff;
  background:
    linear-gradient(135deg, #111114 0%, #29292f 100%);
  transform: translateY(-2px);
}

.premium-quote-btn i {
  transition: transform 0.3s ease;
}

.premium-quote-btn:hover i {
  transform: translateX(4px);
}

.premium-menu-toggle {
  width: 54px;
  height: 54px;
  display: none;
  align-items: center;
  justify-content: center;
  background: #111114;
  color: #ffffff;
  border-radius: 18px;
  font-size: 20px;
}

/* Sticky */
.premium-site-header.sticky,
.sticky.premium-site-header {
  position: fixed;
  top: 0;
  left: 0;
  animation: premiumHeaderDrop 0.35s ease;
}

.sticky.premium-site-header .premium-topline {
  display: none;
}

.sticky.premium-site-header .premium-header-wrap {
  padding: 10px 0;
}

.sticky.premium-site-header .premium-header-shell {
  min-height: 78px;
  border-radius: 0 0 24px 24px;
}

@keyframes premiumHeaderDrop {
  from {
    transform: translateY(-18px);
    opacity: 0.92;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 1599px) {
  .premium-site-header .container-fluid {
    padding-left: 34px;
    padding-right: 34px;
  }

  .premium-logo-box {
    min-width: 190px;
  }

  .premium-logo-box img {
    width: 158px;
  }

  .premium-nav ul li a {
    padding: 0 11px;
    font-size: 14px;
  }
}

@media (max-width: 1399px) {
  .premium-phone {
    display: none;
  }

  .premium-header-shell {
    gap: 18px;
  }
}

@media (max-width: 1199px) {
  .premium-header-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .premium-nav {
    display: none;
  }

  .premium-menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 991px) {
  .premium-topline-inner {
    min-height: auto;
    padding: 10px 0;
    flex-direction: column;
    justify-content: center;
  }

  .premium-topline-left {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .premium-topline-right {
    justify-content: center;
  }

  .premium-header-wrap {
    padding: 12px 0 16px;
  }
}

@media (max-width: 767px) {
  .premium-site-header .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }

  .premium-topline-left a {
    font-size: 12px;
  }

  .premium-topline-right > span {
    display: none;
  }

  .premium-header-shell {
    min-height: 74px;
    padding: 10px;
    border-radius: 20px;
  }

  .premium-logo-box {
    min-width: auto;
    height: 58px;
    padding: 9px 18px;
    border-radius: 16px;
  }

  .premium-logo-box img {
    width: 142px;
  }

  .premium-quote-btn {
    display: none;
  }

  .premium-menu-toggle {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .premium-socials {
    display: none;
  }

  .premium-topline-left {
    flex-direction: column;
    align-items: center;
  }

  .premium-header-shell {
    border-radius: 18px;
  }

  .premium-logo-box img {
    width: 130px;
  }
}















































.site-footer {
    position: relative;
    overflow: hidden;
    background: #071b35;
    color: #ffffff;
    padding: 90px 0 0;
}

.site-footer__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(28, 179, 198, .24), transparent 34%),
        radial-gradient(circle at bottom right, rgba(0, 98, 255, .22), transparent 38%),
        linear-gradient(135deg, #071b35 0%, #092445 45%, #03111f 100%);
    z-index: 0;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.site-footer__top {
    padding-bottom: 45px;
}

.footer-brand__logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 24px;
}

.footer-brand__logo img {
    max-width: 190px;
    height: auto;
}

.footer-brand__text {
    max-width: 430px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, .74);
    font-size: 15px;
    line-height: 1.8;
}

.footer-brand__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.footer-brand__badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .88);
    font-size: 13px;
}

.footer-brand__badges i {
    color: #2ed3c6;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    transition: all .25s ease;
}

.footer-social a:hover {
    background: #2ed3c6;
    color: #071b35;
    transform: translateY(-3px);
}

.footer-widget {
    height: 100%;
}

.footer-widget__title {
    position: relative;
    margin-bottom: 22px;
    padding-bottom: 12px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.footer-widget__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 3px;
    border-radius: 99px;
    background: linear-gradient(90deg, #2ed3c6, #2188ff);
}

.footer-widget__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget__list li {
    margin-bottom: 11px;
}

.footer-widget__list a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, .72);
    font-size: 15px;
    line-height: 1.5;
    transition: all .25s ease;
}

.footer-widget__list a::before {
    content: "\f105";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    margin-right: 8px;
    font-size: 12px;
    color: #2ed3c6;
    transition: all .25s ease;
}

.footer-widget__list a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-contact__list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.footer-contact__list li {
    display: flex;
    gap: 13px;
    margin-bottom: 16px;
}

.footer-contact__icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(46, 211, 198, .12);
    color: #2ed3c6;
}

.footer-contact__list a {
    color: rgba(255, 255, 255, .76);
    line-height: 1.6;
    transition: color .25s ease;
}

.footer-contact__list a:hover {
    color: #ffffff;
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    padding: 14px 18px;
    border-radius: 14px;
    background: #25d366;
    color: #ffffff;
    font-weight: 700;
    transition: all .25s ease;
}

.footer-whatsapp:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(37, 211, 102, .28);
}

.site-footer__middle {
    padding: 26px 0;
    border-top: 1px solid rgba(255, 255, 255, .10);
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 26px 30px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
}

.footer-cta h4 {
    margin: 0 0 7px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
}

.footer-cta p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
}

.footer-cta__button {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2ed3c6, #2188ff);
    color: #ffffff;
    font-weight: 700;
    transition: all .25s ease;
}

.footer-cta__button:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(33, 136, 255, .28);
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
}

.site-footer__bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .70);
    font-size: 14px;
}

.site-footer__legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.site-footer__legal a {
    color: rgba(255, 255, 255, .68);
    font-size: 14px;
    transition: color .25s ease;
}

.site-footer__legal a:hover {
    color: #ffffff;
}

.footer-agency img {
    width: 140px;
    height: auto;
}

@media (max-width: 991px) {
    .site-footer {
        padding-top: 70px;
    }

    .footer-cta,
    .site-footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-cta__button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .site-footer {
        padding-top: 55px;
    }

    .footer-cta {
        padding: 22px;
    }

    .footer-brand__logo img {
        max-width: 160px;
    }

    .footer-widget__title {
        font-size: 18px;
    }
}



































.logo img{
  width: 200px;
}
.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 25px;
}
.offcanvas__logo img{
  width: 200px;
}
.header-main .sidebar__toggle {
  margin-right: 20px;
}
.header-main .sidebar__toggle img {
  width: 30px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.header-1 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #1d1d1d;
}
h1, h2, h3, h4, h5, h6 {
    text-transform: unset;
}
.project-card-items-4 .project-thumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(225 28 37 / 50%);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.project-card-items-4 .project-thumb .project-content {
    position: absolute;
    left: 25px;
    z-index: 9;
    bottom: -25px;
    background: rgb(225 28 37 / 80%);
    padding: 15px 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}
.gt-content p{
  font-weight: 800;
  color: #000;
}

.sticky.header-3 .header-main .header-left .main-menu ul li a {
    color: #ffffff;
}
.sticky.header-3 .header-main .header-right .header-right-icon-item .content h6 {
    color: #ffffff;
}
.sticky.header-3 .header-main .header-right .header-right-icon-item .content h3 a {
    color: #ffffff;
}

.gt-breadcrumb-wrapper .gt-page-heading {
    position: relative;
    padding: 50px 0 50px;
    z-index: 9;
    text-align: center;
}
.gt-breadcrumb-wrapper .gt-page-heading h1 {
    color: var(--gt-white);
    font-size: 50px;
    position: relative;
    text-transform: uppercase;
    z-index: 9;
    font-weight: 800;
}



.top-header-mobile {
    background: #111;
    padding: 8px 0;
    font-size: 14px;
}

.top-header-mobile .top-header-mobile-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-header-mobile .header-left {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.top-header-mobile .header-left span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-header-mobile .header-left a {
    color: #fff;
    text-decoration: none;
}

.top-header-mobile .social-item {
    display: flex;
    gap: 12px;
}

.top-header-mobile .social-item a {
    color: #fff;
    transition: 0.3s;
}

.top-header-mobile .social-item a:hover {
    color: #ff6600;
}

/* 📱 Mobil Görünüm */
@media (max-width: 768px) {

    .top-header-mobile .top-header-mobile-wrapper {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .top-header-mobile .header-left {
        justify-content: center;
        gap: 12px;
    }

    .top-header-mobile .header-left span:nth-child(3) {
        display: none; /* Mobilde adresi gizler */
    }

    .top-header-mobile .social-item {
        justify-content: center;
    }
}




/*------------------- PAGE GALERİ -------------------*/
/* Galeri resimlerini sabitleme */
.page_galeri .image-item img {
    width: 100%;        /* Genişlik bulunduğu sütuna yayılsın */
    height: 250px;      /* Sabit yükseklik (İsteğe göre değiştirebilirsiniz) */
    object-fit: cover;  /* Resmi bozmadan kutuya sığdırır ve fazlalığı kırpar */
    object-position: center; /* Resmi ortalar */
    border-radius: 8px; /* İsterseniz köşeleri hafif yuvarlatabilirsiniz */
    transition: transform 0.3s ease; /* Hover efekti için yumuşatma */
}
/* Hover (Üzerine gelince) efekti */
.image-hover-zoom:hover img {
    transform: scale(1.05); /* Üzerine gelince hafif büyüme sağlar */
}
/* Mobilde resimlerin çok küçük kalmaması için ayar */
@media (max-width: 768px) {
    .page_galeri .image-item img {
        height: 200px;
    }
}


/*------------------- TOC -------------------*/
.widget-toc{
  background: #f5f5f5;
  border-radius: 10px;
  padding: 15px;
  border: 1px solid #ddd;
}
.widget-toc p{
  font-weight: bold;
}
.widget-toc ol{}
.widget-toc ol li a{
  font-weight: bold;
}





/*------------------- 2.1. Container -------------------*/
:root {
  --main-container: 90%;
  --container-gutters: 24px;
}

/* Medium Large devices */
@media (max-width: 1399px) {
  :root {
    --main-container: 1250px;
  }
}
@media only screen and (min-width: 1300px) {

  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .th-container {
    max-width: calc(var(--main-container) + var(--container-gutters));
    padding-left: calc(var(--container-gutters) / 2);
    padding-right: calc(var(--container-gutters) / 2);
  }
  /*
  .container-xxl.px-0,
  .container-xl.px-0,
  .container-lg.px-0,
  .container-md.px-0,
  .container-sm.px-0,
  .container.px-0 {
    max-width: var(--main-container);
  }
  */

}

@media only screen and (min-width: 1300px) {
  .th-container {
    --main-container: 1776px;
  }
}
@media only screen and (min-width: 1300px) {
  .th-container2 {
    --main-container: 1544px;
  }
}
@media only screen and (max-width: 1600px) {
  .container-fluid.px-0 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .container-fluid.px-0 .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
.container-gallery {
  max-width: 1840px;
}


.comment-section {
  max-width: 800px;
  margin: 2rem auto;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 15px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}
.comment-section .comment-box {
  background: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  transition: transform 0.2s;
  border: 1px solid #e9ecef;
}
.comment-section .comment-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.comment-section .user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.comment-section .comment-input {
  border-radius: 10px;
  padding: 15px 20px;
  border: 2px solid #e9ecef;
  transition: all 0.3s;
}
.comment-section .comment-input:focus {
  box-shadow: none;
  border-color: #86b7fe;
}
.comment-section .btn-comment {
  border-radius: 20px;
  padding: 8px 25px;
  background: #0d6efd;
  border: none;
  transition: all 0.3s;
}
.comment-section .btn-comment:hover {
  background: #0b5ed7;
  transform: translateY(-1px);
}
.comment-section .comment-actions {
  font-size: 0.9rem;
}
.comment-section .comment-actions a {
  color: #6c757d;
  text-decoration: none;
  margin-right: 15px;
  transition: color 0.2s;
}
.comment-section .comment-actions a:hover {
  color: #0d6efd;
}
.comment-section .comment-time {
  color: #adb5bd;
  font-size: 0.85rem;
}
.comment-section .reply-section {
  margin-left: 60px;
  border-left: 2px solid #e9ecef;
  padding-left: 20px;
}

.contact-links{}
.contact-links ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-links ul li{
  margin-bottom: 20px;
}
.contact-links ul li a{}
.contact-links ul li a .icon{
  display: inline-block;
  background: red;
  border-radius: 50%;
  color: #fff;
  line-height: 30px;
  font-size: 15px;
  width: 30px;
  height: 30px;
  text-align: center;
}
.contact-links ul li a .name{
  display: inline-block;
  color: #fff;
}
.contact-links ul li a .desc{
  display: inline-block;
  color: #fff;
  font-weight: bold;
}

.modal.lightbox img{
  margin: 0 !important;
  width: 100% !important;
}
.modal.lightbox .ratio.ratio-16x9{
  background-color: #00000000 !important;
}
.modal.lightbox .carousel-control-next, .carousel-control-prev {
  position: absolute;
  top: -100px;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2%;
  height: 100px !important;
  color: #fff;
  text-align: center;
  opacity: .5;
  transition: opacity .15s ease;
}
.modal.lightbox .carousel-control-next-icon {
  background-image: url('../img/icon_next.png');
}
.modal.lightbox .carousel-control-prev-icon {
  background-image: url('../img/icon_prev.png');
}
.modal.lightbox .modal-xl {
  max-width: 70%;
}


.goog-logo-link,
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.goog-te-gadget{
  font-size: 0 !important
}
#google_translate_element{
  /*
    position: absolute;
    top: -5px;
    right: -110px;
  */
  height: 35px;
      position: absolute;
    top: 8px;
}
#google_translate_element a{
    display: none !important;
}
.goog-te-combo{
  border: 1px solid;
  padding: 5px 0 5px 0;
  width: 100px;
}
.widget_breton_core_switcher{
  display: none;
}

.langs-select{
  float: right;
  margin-left: 20px;
  height: 30px;
  line-height: 27px;
}
.skiptranslate{
  display: none;
}
.lang_actives .boxed_wrapper{
  margin-top: -40px;
}
.lang_actives.lang_en .main-menu .navigation > li{
  margin: 0px 5px;
}
.lang_actives.lang_en .main-menu .navigation > li > a{
  font-size: 13px;
  font-weight: bold;
}


/* Button Animate */
.custom-btn {
  color: #fff;
  font-weight: bold;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
}
.btn-animate1 {
  border: none;
  background: rgb(195 0 0);
  background: linear-gradient(0deg, rgb(195 0 0) 0%, rgb(255 0 0) 100%);
  color: #fff;
  overflow: hidden;
}
.btn-animate1:hover {
  text-decoration: none;
  color: #fff;
}
.btn-animate1:before {
  position: absolute;
  content: '';
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  animation: shiny-btn1 3s ease-in-out infinite;
}
.btn-animate1:hover{
  opacity: .7;
}
.btn-animate1:active{
  box-shadow:  4px 4px 6px 0 rgba(255,255,255,.3),
              -4px -4px 6px 0 rgba(116, 125, 136, .2),
    inset -4px -4px 6px 0 rgba(255,255,255,.2),
    inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
}
@-webkit-keyframes shiny-btn1 {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

.trwpwhatsappballon {
    font-size: 14px;
    border-radius: 12px;
    border: 1px solid #fff;
    max-width: 250px;
    display: none;
}
.trwpwhatsapptitle {
    background-color: #22c15e;
    color: white;
    padding: 14px;
    border-radius: 12px 12px 0px 0px;
    text-align: center;
}
.trwpwhatsappmessage {
    padding: 16px 12px;
    background-color: white;
}
.trwpwhatsappinput {
    position: relative;
    background-color: white;
    border-radius: 0px 0px 12px 12px;
}
.trwpwhatsappinput input {
    width: 206px;
    border-radius: 10px;
    margin: 1px 1px 0px 10px;
    padding:10px;
    font-family: "Raleway", Arial, sans-serif;
    font-weight: 300;
    font-size: 13px;
    background-color: #efefef;
    border: 1px solid #d4d4d4;
}
.trwpwhatsappbutton {
    background-color: #22c15e;
    border-radius: 20px;
    padding: 8px 15px;
    cursor: pointer;
    color: #fff;
    max-width: 220px;
    margin-top: 10px;
    margin-bottom: 10px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.trwpwhatsappall {
    position: fixed;
    z-index: 9999999999999999999;
    bottom: 50px;
    right: 10px;
    font-family: "Raleway", Arial, sans-serif;
    font-weight: 300;
    font-size: 15px;
}
.trwpwhatsappsendbutton {
    color: #22c15e;
    cursor:pointer;
}
.trwpwhatsappsendbutton i{
    position: absolute;
    right: 10px;
}
.trwpwhatsappall button {border: none;}
.trwpwhatsappall button i {
    float: right;
    position: absolute;
    z-index: 999999999999;
    right: 10px;
    bottom: 15px;
    font-size: 18px !important;
    color: #000;
}
.trwpwhatsappall .kapat {
    position: absolute;
    right: 8px;
    top: 6px;
    font-size: 13px;
    border: 1px solid #fff;
    border-radius: 99px;
    padding: 2px 5px 2px 5px;
    color: white;
    font-size: 10px;
    cursor: pointer;
}



/* CSS Multiple Whatsapp Chat */
#whatsapp-chat a:link,
#whatsapp-chat a:visited {
  color: #444;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
#whatsapp-chat h1 {
  font-size: 20px;
  text-align: center;
  display: block;
  background: linear-gradient(to right top, #6f96f3, #164ed2);
  padding: 20px;
  color: #fff;
  border-radius: 50px;
}
#whatsapp-chat .whatsapp-name {
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 0;
  margin-bottom: 0;
  line-height: 0.5;
}
#whatsapp-chat {
  box-sizing: border-box !important;
  outline: none !important;
  position: fixed;
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
  bottom: 90px;
  right: 30px;
  overflow: hidden;
  z-index: 99;
  animation-name: showchat;
  animation-duration: 1s;
  transform: scale(1);
}
a.blantershow-chat {
  /*   background: #009688; */
  background: #fff;
  color: #404040;
  position: fixed;
  display: flex;
  font-weight: 400;
  justify-content: space-between;
  z-index: 98;
  bottom: 100px;
  right: 30px;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
}
a.blantershow-chat svg {
  transform: scale(1.2);
  margin: 0 0 0 0;
}
#whatsapp-chat .header-chat {
  /*   background: linear-gradient(to right top, #6f96f3, #164ed2); */
  background: #009688;
  background: #095e54;
  color: #fff;
  padding: 20px;
}
#whatsapp-chat .header-chat h3 {
  margin: 0 0 10px;
}
#whatsapp-chat .header-chat p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  color: #fff;
}
#whatsapp-chat .info-avatar {
  position: relative;
}
#whatsapp-chat .info-avatar img {
  border-radius: 100%;
  width: 50px;
  float: left;
  margin: 0 10px 0 0;
  background: #fff;
  height: auto;
  padding: 5px;
}
#whatsapp-chat a.informasi {
  padding: 20px;
  display: block;
  overflow: hidden;
  animation-name: showhide;
  animation-duration: 0.5s;
}
#whatsapp-chat a.informasi:hover {
  background: #f1f1f1;
}
#whatsapp-chat .info-chat span {
  display: block;
}
#whatsapp-chat #get-label,
#whatsapp-chat span.chat-label {
  font-size: 12px;
  color: #888;
}
#whatsapp-chat #get-nama,
#whatsapp-chat span.chat-nama {
  margin: 5px 0 0;
  font-size: 15px;
  font-weight: 700;
  color: #222;
}
#whatsapp-chat #get-label,
#whatsapp-chat #get-nama {
  color: #fff;
}
#whatsapp-chat span.my-number {
  display: none;
}
/* .blanter-msg {
  color: #444;
  padding: 20px;
  font-size: 12.5px;
  text-align: center;
  border-top: 1px solid #ddd;
} */
#whatsapp-chat textarea#chat-input {
  border: none;
  font-family: "Arial", sans-serif;
  width: 100%;
  height: 50px;
  outline: none;
  resize: none;
  padding: 10px;
  font-size: 14px;
}
#whatsapp-chat a#send-it {
  width: 40px;
  font-weight: 700;
  padding: 10px 0 0 5px;
  background: #095e54;
  border-radius: 0;
}
#whatsapp-chat a#send-it svg {
  fill: #fff;
  height: 24px;
  width: 24px;
}
#whatsapp-chat .first-msg {
  background: transparent;
  padding: 30px;
  text-align: center;
}
#whatsapp-chat .first-msg span {
  background: #e2e2e2;
  color: #333;
  font-size: 14.2px;
  line-height: 1.7;
  border-radius: 10px;
  padding: 15px 20px;
  display: inline-block;
}
#whatsapp-chat .start-chat .blanter-msg {
  display: flex;
}
#whatsapp-chat #get-number {
  display: none;
}
#whatsapp-chat a.close-chat {
  position: absolute;
  top: 5px;
  right: 15px;
  color: #fff;
  font-size: 30px;
}
@keyframes ZpjSY {
  0% {
    background-color: #b6b5ba;
  }
  15% {
    background-color: #111111;
  }
  25% {
    background-color: #b6b5ba;
  }
}
@keyframes hPhMsj {
  15% {
    background-color: #b6b5ba;
  }
  25% {
    background-color: #111111;
  }
  35% {
    background-color: #b6b5ba;
  }
}
@keyframes iUMejp {
  25% {
    background-color: #b6b5ba;
  }
  35% {
    background-color: #111111;
  }
  45% {
    background-color: #b6b5ba;
  }
}
@keyframes showhide {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
}
@keyframes showchat {
  from {
    transform: scale(0);
    opacity: 0;
  }
}
@media screen and (max-width: 480px) {
  #whatsapp-chat {
    width: auto;
    left: 5%;
    right: 5%;
    font-size: 80%;
  }
}
.whatsapp-chat-hide {
  display: none;
  animation-name: showhide;
  animation-duration: 0.5s;
  transform: scale(1);
  opacity: 1;
}
.whatsapp-chat-show {
  display: block;
  animation-name: showhide;
  animation-duration: 0.5s;
  transform: scale(1);
  opacity: 1;
}
#whatsapp-chat .whatsapp-message-container {
  display: flex;
  z-index: 1;
}
#whatsapp-chat .whatsapp-message {
  padding: 7px 14px 6px;
  background-color: white;
  border-radius: 0px 8px 8px;
  position: relative;
  transition: all 0.3s ease 0s;
  opacity: 0;
  transform-origin: center top 0px;
  z-index: 2;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
  margin-top: 4px;
  margin-left: -54px;
  max-width: calc(100% - 66px);
}
#whatsapp-chat .whatsapp-chat-body {
  padding: 20px 20px 20px 10px;
  background-color: #e6ddd4;
  position: relative;
}
#whatsapp-chat .whatsapp-chat-body::before {
  display: block;
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  z-index: 0;
  opacity: 0.08;
  background-image: url("https://elfsight.com/assets/chats/patterns/whatsapp.png");
}
#whatsapp-chat .dAbFpq {
  display: flex;
  z-index: 1;
}
#whatsapp-chat .eJJEeC {
  background-color: white;
  width: 52.5px;
  height: 32px;
  border-radius: 16px;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
  margin-left: 10px;
  opacity: 0;
  transition: all 0.1s ease 0s;
  z-index: 1;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
}
#whatsapp-chat .hFENyl {
  position: relative;
  display: flex;
}
#whatsapp-chat .ixsrax {
  height: 5px;
  width: 5px;
  margin: 0px 2px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  top: 0px;
  background-color: #9e9da2;
  animation-name: ZpjSY;
}
#whatsapp-chat .dRvxoz {
  height: 5px;
  width: 5px;
  margin: 0px 2px;
  background-color: #b6b5ba;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  top: 0px;
  animation-name: hPhMsj;
}
#whatsapp-chat .kAZgZq {
  padding: 7px 14px 6px;
  background-color: white;
  border-radius: 0px 8px 8px;
  position: relative;
  transition: all 0.3s ease 0s;
  opacity: 0;
  transform-origin: center top 0px;
  z-index: 2;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
  margin-top: 4px;
  margin-left: -54px;
  max-width: calc(100% - 40px);
}
#whatsapp-chat .kAZgZq::before {
  position: absolute;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAmCAMAAADp2asXAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAACQUExURUxpccPDw9ra2m9vbwAAAAAAADExMf///wAAABoaGk9PT7q6uqurqwsLCycnJz4+PtDQ0JycnIyMjPf3915eXvz8/E9PT/39/RMTE4CAgAAAAJqamv////////r6+u/v7yUlJeXl5f///5ycnOXl5XNzc/Hx8f///xUVFf///+zs7P///+bm5gAAAM7Ozv///2fVensAAAAvdFJOUwCow1cBCCnqAhNAnY0WIDW2f2/hSeo99g1lBYT87vDXG8/6d8oL4sgM5szrkgl660OiZwAAAHRJREFUKM/ty7cSggAABNFVUQFzwizmjPz/39k4YuFWtm55bw7eHR6ny63+alnswT3/rIDzUSC7CrAziPYCJCsB+gbVkgDtVIDh+DsE9OTBpCtAbSBAZSEQNgWIygJ0RgJMDWYNAdYbAeKtAHODlkHIv997AkLqIVOXVU84AAAAAElFTkSuQmCC");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  top: 0px;
  left: -12px;
  width: 12px;
  height: 19px;
}
#whatsapp-chat .bMIBDo {
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.4);
}
#whatsapp-chat .iSpIQi {
  font-size: 14px;
  line-height: 19px;
  margin-top: 4px;
  color: #111111;
}
#whatsapp-chat .iSpIQi {
  font-size: 14px;
  line-height: 19px;
  margin-top: 4px;
  color: #111111;
}
#whatsapp-chat .cqCDVm {
  text-align: right;
  margin-top: 4px;
  font-size: 12px;
  line-height: 16px;
  color: rgba(17, 17, 17, 0.5);
  margin-right: -8px;
  margin-bottom: -4px;
}


.btn_whatsapp {
    position: fixed;
    bottom: 20px;
    width: 60px;
    right: 90px;
}


@media (max-width: 992px){
  .mobilGizle{
    display: none !important;
  }
  .slideshow-container {
  }



}


@media (min-width: 992px) and (max-width: 1100px) {


}

@media (min-width: 1100px) and (max-width: 1200px) {


}

@media (min-width: 1200px) and (max-width: 1300px) {
  .header-right{
    display: none !important;
  }
  .mean__menu-wrapper{
    margin-left: 70px;
  }
  .header-main .main-menu ul li a {
    font-size: 13px;
    margin-right: 10px;
  }




}
@media (min-width: 1300px) and (max-width: 1400px) {
  .header-right{
    
  }
  .header__hamburger{
    display: none !important;
  }
  .mean__menu-wrapper{
    margin-left: 70px;
  }
  .header-main .main-menu ul li a {
    font-size: 11px;
    margin-right: 5px;
  }


}
@media (min-width: 1400px) and (max-width: 1500px) {
  .header-right{
    
  }
  .header__hamburger{
    display: none !important;
  }
  .mean__menu-wrapper{
    margin-left: 0px;
  }
  .header-main .main-menu ul li a {
    font-size: 12px;
    margin-right: 5px;
  }
  .header-1.header-3 .header-main .header-left .main-menu ul li {
    margin-inline-end: 0;
  }
}
@media (min-width: 1500px) and (max-width: 1600px) {
  .header-right{
    
  }
  .header__hamburger{
    display: none !important;
  }
  .mean__menu-wrapper{
    margin-left: 0px;
  }
  .header-main .main-menu ul li a {
    font-size: 13;
    margin-right: 10px;
  }
  .header-1.header-3 .header-main .header-left .main-menu ul li {
    margin-inline-end: 0;
  }

}
@media (min-width: 1600px) and (max-width: 1700px) {
  .header-right{
    
  }
  .header__hamburger{
    display: none !important;
  }
  .mean__menu-wrapper{
    margin-left: 0px;
  }
  .header-main .main-menu ul li a {
    font-size: 13px;
    margin-right: 10px;
  }
  .header-1.header-3 .header-main .header-left .main-menu ul li {
    margin-inline-end: 0;
  }
  .header-1.header-3 .header-main .header-left {
    gap: 90px;
  }

}
@media (min-width: 1700px) and (max-width: 1800px) {
  .header-right{
    
  }
  .header__hamburger{
    display: none !important;
  }
  .mean__menu-wrapper{
    margin-left: 0px;
  }
  .header-main .main-menu ul li a {
    font-size: 15px;
    margin-right: 10px;
  }
  .header-1.header-3 .header-main .header-left .main-menu ul li {
    margin-inline-end: 0;
  }
  .header-1.header-3 .header-main .header-left {
    gap: 90px;
  }

}
@media (min-width: 1800px) and (max-width: 999925px) {
  .header-right{
    
  }
  .header__hamburger{
    
  }
  .mean__menu-wrapper{
    margin-left: 0px;
  }
  .header-main .main-menu ul li a {
    font-size: 16px;
    margin-right: 15px;
  }
  .header-1.header-3 .header-main .header-left .main-menu ul li {
    margin-inline-end: 0;
  }
  .header-1.header-3 .header-main .header-left {
    gap: 130px;
  }

}
@media (min-width: 1750px) and (max-width: 999925px) {


}


/* 320 - 480 */
@media only screen and (min-device-width : 990px) and (max-device-width : 1200px) {


}
/* 320 - 480 */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {


}
/* 475 - 768 */
@media only screen and (min-device-width : 475px) and (max-device-width : 768px) {




}
/* 765 - 990 */
@media only screen and (min-device-width : 765px) and (max-device-width : 990px) {


}
/* 990 - 1300 */
@media only screen and (min-device-width : 990px) and (max-device-width : 1300px) {

}
